diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2016-10-17 15:20:29 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2016-10-17 15:23:13 +0200 |
commit | 37188603b52a3dac23df229ada82c7da0c3d9c00 (patch) | |
tree | f7df7af7edcd8ca49fe1354883537013d020319f | |
parent | 85866796a40923708f6b868c32ddc2f2f4417d1d (diff) | |
download | aur-37188603b52a3dac23df229ada82c7da0c3d9c00.tar.gz aur-37188603b52a3dac23df229ada82c7da0c3d9c00.tar.xz |
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-x | aurweb/scripts/aurblup.py (renamed from scripts/aurblup.py) | 0 | ||||
-rwxr-xr-x | aurweb/scripts/mkpkglists.py (renamed from scripts/mkpkglists.py) | 0 | ||||
-rwxr-xr-x | aurweb/scripts/notify.py (renamed from scripts/notify.py) | 0 | ||||
-rwxr-xr-x | aurweb/scripts/pkgmaint.py (renamed from scripts/pkgmaint.py) | 0 | ||||
-rwxr-xr-x | aurweb/scripts/popupdate.py (renamed from scripts/popupdate.py) | 0 | ||||
-rwxr-xr-x | aurweb/scripts/tuvotereminder.py (renamed from scripts/tuvotereminder.py) | 0 | ||||
-rw-r--r-- | setup.py | 6 | ||||
-rw-r--r-- | upgrading/4.4.1.txt | 3 |
9 files changed, 9 insertions, 0 deletions
diff --git a/scripts/__init__.py b/aurweb/scripts/__init__.py index e69de29b..e69de29b 100644 --- a/scripts/__init__.py +++ b/aurweb/scripts/__init__.py diff --git a/scripts/aurblup.py b/aurweb/scripts/aurblup.py index 1b6de2f0..1b6de2f0 100755 --- a/scripts/aurblup.py +++ b/aurweb/scripts/aurblup.py diff --git a/scripts/mkpkglists.py b/aurweb/scripts/mkpkglists.py index 8a0f2e9d..8a0f2e9d 100755 --- a/scripts/mkpkglists.py +++ b/aurweb/scripts/mkpkglists.py diff --git a/scripts/notify.py b/aurweb/scripts/notify.py index ddd6e49b..ddd6e49b 100755 --- a/scripts/notify.py +++ b/aurweb/scripts/notify.py diff --git a/scripts/pkgmaint.py b/aurweb/scripts/pkgmaint.py index 3ad9ed8d..3ad9ed8d 100755 --- a/scripts/pkgmaint.py +++ b/aurweb/scripts/pkgmaint.py diff --git a/scripts/popupdate.py b/aurweb/scripts/popupdate.py index 58cd0185..58cd0185 100755 --- a/scripts/popupdate.py +++ b/aurweb/scripts/popupdate.py diff --git a/scripts/tuvotereminder.py b/aurweb/scripts/tuvotereminder.py index 97b1d12e..97b1d12e 100755 --- a/scripts/tuvotereminder.py +++ b/aurweb/scripts/tuvotereminder.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 b06696e0..726f9e2b 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`. |