diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-03-31 16:26:04 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-03-31 16:26:54 +0200 |
commit | 941a93d17164f2ee21c93472dbddcff8677df0ed (patch) | |
tree | 1a78d94cbf3c71566cf4fcb9f69fbb4c4c88ae99 /pcr/python-bundlewrap | |
parent | 135593d3bb1b79f3770b7f341247bd5d638f207f (diff) | |
download | abslibre-941a93d17164f2ee21c93472dbddcff8677df0ed.tar.gz abslibre-941a93d17164f2ee21c93472dbddcff8677df0ed.tar.bz2 abslibre-941a93d17164f2ee21c93472dbddcff8677df0ed.zip |
pcr: Add bundlewrap
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/python-bundlewrap')
-rw-r--r-- | pcr/python-bundlewrap/PKGBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pcr/python-bundlewrap/PKGBUILD b/pcr/python-bundlewrap/PKGBUILD new file mode 100644 index 000000000..8ce6023b7 --- /dev/null +++ b/pcr/python-bundlewrap/PKGBUILD @@ -0,0 +1,24 @@ +# Contributor: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> +pkgname=python-bundlewrap +_pkgname=bundlewrap +pkgver=3.6.1 +pkgrel=1 +pkgdesc="Agent-less configuration management" +arch=('any') +url='https://bundlewrap.org/' +license=('GPLv3') +depends=('python-cryptography' + 'python-jinja' + 'python-mako' + 'python-passlib' + 'python-pyaml' + 'python-requests' + 'python-six') +options=(!emptydirs) +source=("https://files.pythonhosted.org/packages/00/a6/677563dc39553b116b528c96d94e3e17ec1218d415e5337dc50f0ee924f4/${_pkgname}-${pkgver}.tar.gz") +sha256sums=('8c33bbf69750f75a9240c8e9d6bbfb9b6db8c3c62f8527481df0d8bf8c6bbadb') + +package() { + cd "$srcdir/bundlewrap-$pkgver" + python3 setup.py install --root="$pkgdir/" --optimize=1 +} |