diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-25 08:53:36 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-25 09:11:23 +0200 |
commit | 5e7adc3a3a77baf560c1954fa00d05cc9aa5f263 (patch) | |
tree | e13b818228f90d03aef6ab0ae3cc51b4ae84ab5a /dev-libs/libxslt | |
parent | dev-python/lxml: Drop optional runtime deps and add optfeature (diff) | |
download | gentoo-5e7adc3a3a77baf560c1954fa00d05cc9aa5f263.tar.gz gentoo-5e7adc3a3a77baf560c1954fa00d05cc9aa5f263.tar.bz2 gentoo-5e7adc3a3a77baf560c1954fa00d05cc9aa5f263.zip |
dev-libs/libxslt: Fix QA issues
Parallel functions in python eclasses are deprecated
configure.in is deprecated
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=555212
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'dev-libs/libxslt')
-rw-r--r-- | dev-libs/libxslt/libxslt-1.1.28-r4.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild b/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild index a2af700a8b8a..a9578e3efa93 100644 --- a/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild +++ b/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild @@ -50,6 +50,8 @@ src_prepare() { # https://bugs.gentoo.org/show_bug.cgi?id=518728 epatch "${FILESDIR}"/${PN}-1.1.28-AC_PATH_TOOL.patch + mv configure.{in,ac} || die + eautoreconf # If eautoreconf'd with new autoconf, then epunt_cxx is not necessary # and it is propably otherwise too if upstream generated with new @@ -79,7 +81,7 @@ multilib_src_configure() { libxslt_configure --without-python # build python bindings separately if multilib_is_native_abi && use python; then - python_parallel_foreach_impl libxslt_py_configure + python_foreach_impl libxslt_py_configure fi } |