dev-python/pygpgme: Cleanup src_prepare
authorMike Gilbert <floppym@gentoo.org>
Sat, 23 Jan 2016 20:44:58 +0000 (15:44 -0500)
committerMike Gilbert <floppym@gentoo.org>
Sat, 23 Jan 2016 20:45:48 +0000 (15:45 -0500)
The sed for tests is pointless since we don't run the tests.
The sed for gpgme.h is better handled by calling gpgme-config.

Package-Manager: portage-2.2.27_p49

dev-python/pygpgme/pygpgme-0.3-r1.ebuild

index 8510bb2e486570691e6c8d6952f9777e1b0d037b..21d2f54559cda2259c2ab26d97d1e867bde4fc74 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
-inherit distutils-r1
+inherit distutils-r1 flag-o-matic
 
 DESCRIPTION="A Python wrapper for the GPGME library"
 HOMEPAGE="https://launchpad.net/pygpgme"
@@ -20,14 +20,6 @@ IUSE=""
 DEPEND="app-crypt/gpgme"
 RDEPEND="${DEPEND}"
 
-python_prepare_all() {
-       sed \
-               -e 's/#include <gpgme\.h>/#include <gpgme\/gpgme\.h>/' \
-               -i "${S}/src/pygpgme.h" || die
-       sed \
-               -e 's/suite.addTest(tests.test_sign_verify.test_suite())/#\0/' \
-               -e 's/suite.addTest(tests.test_encrypt_decrypt.test_suite())/#\0/' \
-               -e 's/suite.addTest(tests.test_passphrase.test_suite())/#\0/' \
-               -i "${S}/tests/__init__.py" || die
-       distutils-r1_python_prepare_all
+python_configure_all() {
+       append-cflags $(gpgme-config --cflags)
 }