author | Felix Yan
<felixonmars@archlinux.org> 2015-09-19 10:11:59 UTC |
committer | Felix Yan
<felixonmars@archlinux.org> 2015-09-19 10:11:59 UTC |
parent | b7a13963555cd1bb74ae268a515e19ca792d719c |
PKGBUILD | +5 | -2 |
diff --git a/PKGBUILD b/PKGBUILD index ea2381c..4b4c7b7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,12 +2,12 @@ pkgname=pyalpm pkgver=0.7 -pkgrel=2 +pkgrel=3 pkgdesc="Libalpm bindings for Python 3" arch=('i686' 'x86_64') url="http://projects.archlinux.org/users/remy/pyalpm.git/" license=('GPL') -depends=('python>=3.4' 'pacman>=4.2') +depends=('python>=3.5' 'pacman>=4.2') source=("https://sources.archlinux.org/other/pyalpm/$pkgname-$pkgver.tar.gz") sha1sums=('62fafb93d30c27b5a5a09df3e802d6e50fed9802') @@ -17,6 +17,9 @@ build() { # workaround Python packaging issue (FS#34658) export CFLAGS="$CFLAGS -Wno-format" + # workaround when building with Python 3.5 + sed -i "s/'-Werror',//" setup.py + python setup.py build }