summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2016-10-17 15:20:29 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2016-10-17 15:23:13 +0200
commit37188603b52a3dac23df229ada82c7da0c3d9c00 (patch)
treef7df7af7edcd8ca49fe1354883537013d020319f
parent85866796a40923708f6b868c32ddc2f2f4417d1d (diff)
Make maintenance scripts installable
Add wrappers for the maintenance scripts to the setuptools configuration. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--aurweb/scripts/__init__.py (renamed from scripts/__init__.py)0
-rwxr-xr-xaurweb/scripts/aurblup.py (renamed from scripts/aurblup.py)0
-rwxr-xr-xaurweb/scripts/mkpkglists.py (renamed from scripts/mkpkglists.py)0
-rwxr-xr-xaurweb/scripts/notify.py (renamed from scripts/notify.py)0
-rwxr-xr-xaurweb/scripts/pkgmaint.py (renamed from scripts/pkgmaint.py)0
-rwxr-xr-xaurweb/scripts/popupdate.py (renamed from scripts/popupdate.py)0
-rwxr-xr-xaurweb/scripts/tuvotereminder.py (renamed from scripts/tuvotereminder.py)0
-rw-r--r--setup.py6
-rw-r--r--upgrading/4.4.1.txt3
9 files changed, 9 insertions, 0 deletions
diff --git a/scripts/__init__.py b/aurweb/scripts/__init__.py
index e69de29..e69de29 100644
--- a/scripts/__init__.py
+++ b/aurweb/scripts/__init__.py
diff --git a/scripts/aurblup.py b/aurweb/scripts/aurblup.py
index 1b6de2f..1b6de2f 100755
--- a/scripts/aurblup.py
+++ b/aurweb/scripts/aurblup.py
diff --git a/scripts/mkpkglists.py b/aurweb/scripts/mkpkglists.py
index 8a0f2e9..8a0f2e9 100755
--- a/scripts/mkpkglists.py
+++ b/aurweb/scripts/mkpkglists.py
diff --git a/scripts/notify.py b/aurweb/scripts/notify.py
index ddd6e49..ddd6e49 100755
--- a/scripts/notify.py
+++ b/aurweb/scripts/notify.py
diff --git a/scripts/pkgmaint.py b/aurweb/scripts/pkgmaint.py
index 3ad9ed8..3ad9ed8 100755
--- a/scripts/pkgmaint.py
+++ b/aurweb/scripts/pkgmaint.py
diff --git a/scripts/popupdate.py b/aurweb/scripts/popupdate.py
index 58cd018..58cd018 100755
--- a/scripts/popupdate.py
+++ b/aurweb/scripts/popupdate.py
diff --git a/scripts/tuvotereminder.py b/aurweb/scripts/tuvotereminder.py
index 97b1d12..97b1d12 100755
--- a/scripts/tuvotereminder.py
+++ b/aurweb/scripts/tuvotereminder.py
diff --git a/setup.py b/setup.py
index b64e71c..99dbfed 100644
--- a/setup.py
+++ b/setup.py
@@ -22,6 +22,12 @@ setup(
'aurweb-git-auth = aurweb.git.auth:main',
'aurweb-git-serve = aurweb.git.serve:main',
'aurweb-git-update = aurweb.git.update:main',
+ 'aurweb-aurblup = aurweb.scripts.aurblup:main',
+ 'aurweb-mkpkglists = aurweb.scripts.mkpkglists:main',
+ 'aurweb-notify = aurweb.scripts.notify:main',
+ 'aurweb-pkgmaint = aurweb.scripts.pkgmaint:main',
+ 'aurweb-popupdate = aurweb.scripts.popupdate:main',
+ 'aurweb-tuvotereminder = aurweb.scripts.tuvotereminder:main',
],
},
)
diff --git a/upgrading/4.4.1.txt b/upgrading/4.4.1.txt
index b06696e..726f9e2 100644
--- a/upgrading/4.4.1.txt
+++ b/upgrading/4.4.1.txt
@@ -1,3 +1,6 @@
1. The default configuration file search path now points to /etc/aurweb/config.
Make sure you copy your aurweb configuration to the new location before
upgrading.
+
+2. The maintenance scripts have been prefixed by "aurweb-" and can now be
+ installed using `python3 setup.py install`.