git » pyalpm.git » commit 0228aba

Update to pyalpm 0.8

author Rémy Oudompheng
2016-01-31 19:44:35 UTC
committer Rémy Oudompheng
2016-01-31 19:44:35 UTC
parent 0de5a95554dc10cdd5b99abc4987ed5a873dd5ce

Update to pyalpm 0.8

PKGBUILD +3 -10

diff --git a/PKGBUILD b/PKGBUILD
index 4b4c7b7..1e851e1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,25 +1,18 @@
 # Maintainer : Rémy Oudompheng <remy@archlinux.org>
 
 pkgname=pyalpm
-pkgver=0.7
-pkgrel=3
+pkgver=0.8
+pkgrel=1
 pkgdesc="Libalpm bindings for Python 3"
 arch=('i686' 'x86_64')
 url="http://projects.archlinux.org/users/remy/pyalpm.git/"
 license=('GPL')
 depends=('python>=3.5' 'pacman>=4.2')
 source=("https://sources.archlinux.org/other/pyalpm/$pkgname-$pkgver.tar.gz")
-sha1sums=('62fafb93d30c27b5a5a09df3e802d6e50fed9802')
+sha1sums=('b153afc02b7034158558536c4092a302af8030c3')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
-
-  # 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
 }