summaryrefslogtreecommitdiff
path: root/pcr/python-bundlewrap
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/python-bundlewrap')
-rw-r--r--pcr/python-bundlewrap/PKGBUILD17
1 files changed, 11 insertions, 6 deletions
diff --git a/pcr/python-bundlewrap/PKGBUILD b/pcr/python-bundlewrap/PKGBUILD
index 8ce6023b7..13f10fb1d 100644
--- a/pcr/python-bundlewrap/PKGBUILD
+++ b/pcr/python-bundlewrap/PKGBUILD
@@ -1,12 +1,12 @@
# Contributor: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
pkgname=python-bundlewrap
_pkgname=bundlewrap
-pkgver=3.6.1
+pkgver=3.7.0
pkgrel=1
pkgdesc="Agent-less configuration management"
arch=('any')
url='https://bundlewrap.org/'
-license=('GPLv3')
+license=('GPL3')
depends=('python-cryptography'
'python-jinja'
'python-mako'
@@ -15,10 +15,15 @@ depends=('python-cryptography'
'python-requests'
'python-six')
options=(!emptydirs)
-source=("https://files.pythonhosted.org/packages/00/a6/677563dc39553b116b528c96d94e3e17ec1218d415e5337dc50f0ee924f4/${_pkgname}-${pkgver}.tar.gz")
-sha256sums=('8c33bbf69750f75a9240c8e9d6bbfb9b6db8c3c62f8527481df0d8bf8c6bbadb')
+source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
+sha256sums=('3e6557dcb18f248dbf3384d73e75eeb1673601cd26a1797df3c570bff0197c81')
-package() {
+build(){
cd "$srcdir/bundlewrap-$pkgver"
- python3 setup.py install --root="$pkgdir/" --optimize=1
+ python3 setup.py build
+}
+
+package(){
+ cd "$srcdir/bundlewrap-$pkgver"
+ python3 setup.py install --root="$pkgdir/" --optimize=1 --skip-build
}