diff options
author | bill-auger <mr.j.spam.me@gmail.com> | 2018-09-12 08:25:54 +0000 |
---|---|---|
committer | bill-auger <mr.j.spam.me@gmail.com> | 2018-09-30 04:27:49 -0400 |
commit | 60149d4be1633dd72cba35fcfc29bcf9f117e6fd (patch) | |
tree | 3b6c121600f41edbe42ccc971d130cf69197c7e7 /pcr-testing/python-mailman-hyperkitty-plugin/PKGBUILD | |
parent | 4e8a56f5ba2fb21332825f6f00cc84725a9268b2 (diff) | |
download | abslibre-60149d4be1633dd72cba35fcfc29bcf9f117e6fd.tar.gz abslibre-60149d4be1633dd72cba35fcfc29bcf9f117e6fd.tar.bz2 abslibre-60149d4be1633dd72cba35fcfc29bcf9f117e6fd.zip |
add 'mailman3'
Diffstat (limited to 'pcr-testing/python-mailman-hyperkitty-plugin/PKGBUILD')
-rw-r--r-- | pcr-testing/python-mailman-hyperkitty-plugin/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pcr-testing/python-mailman-hyperkitty-plugin/PKGBUILD b/pcr-testing/python-mailman-hyperkitty-plugin/PKGBUILD new file mode 100644 index 000000000..24fb78252 --- /dev/null +++ b/pcr-testing/python-mailman-hyperkitty-plugin/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: bill-auger <bill-auger@programmer.net> +# Maintainer (AUR): Simon Hanna <simon dot hanna AT serve-me DOT info> + +pkgname=('python-mailman-hyperkitty-plugin') +pkgver=1.1.0 +pkgrel=1 +pkgdesc="Hyperkitty archive plugin for mailman" +arch=(any) +url=https://gitlab.com/mailman/mailman-hyperkitty +license=('GPL') +options=(!emptydirs) + +makedepends=('python-setuptools') +depends=('mailman-core' 'python-setuptools' 'python-requests') + +_upstream_name='mailman-hyperkitty' +_release="${_upstream_name}-v${pkgver}" +source=(https://gitlab.com/mailman/${_upstream_name}/-/archive/v${pkgver}/${_release}.tar.gz) +sha256sums=('b3a32e66961571c3b68f536cf50dbd186620577dd16024e67d299a0857e1d40d') + + +package() +{ + cd "$srcdir/${_release}" + + python setup.py install --root="${pkgdir}/" --optimize=1 +} |