git » pyalpm.git » commit 4fc2325

Add workaround for FS#34658 (CFLAGS+=-Wno-format)

author Rémy Oudompheng
2013-04-15 06:34:53 UTC
committer Rémy Oudompheng
2013-04-15 06:34:53 UTC
parent 52178c1b03667cac90234401043378ee92d24b19

Add workaround for FS#34658 (CFLAGS+=-Wno-format)

Fix incorrect warnings from new pacman.conf options (FS#34591)

PKGBUILD +6 -2

diff --git a/PKGBUILD b/PKGBUILD
index c27973c..5ee861f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer : Rémy Oudompheng <remy@archlinux.org>
 
 pkgname=pyalpm
-pkgver=0.6
+pkgver=0.6.1
 pkgrel=1
 pkgdesc="Libalpm bindings for Python 3"
 arch=('i686' 'x86_64')
@@ -9,10 +9,14 @@ url="http://projects.archlinux.org/users/remy/pyalpm.git/"
 license=('GPL')
 depends=('python>=3.2' 'pacman>=4.1')
 source=("ftp://ftp.archlinux.org/other/pyalpm/$pkgname-$pkgver.tar.gz")
-md5sums=('614fa9f8a5c7cef0828b4f6306ef92f2')
+md5sums=('7310508a3b009705b77dd1d93b3012d9')
 
 build() {
   cd ${srcdir}/${pkgname}-${pkgver}
+
+  # workaround Python packaging issue (FS#34658)
+  export CFLAGS="$CFLAGS -Wno-format"
+
   python setup.py build
 }