Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libxslt/
Date: Fri, 25 Sep 2015 07:11:33
Message-Id: 1443165083.5e7adc3a3a77baf560c1954fa00d05cc9aa5f263.jlec@gentoo
1 commit: 5e7adc3a3a77baf560c1954fa00d05cc9aa5f263
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 06:53:36 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 07:11:23 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7adc3a
7
8 dev-libs/libxslt: Fix QA issues
9
10 Parallel functions in python eclasses are deprecated
11 configure.in is deprecated
12
13 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=555212
14
15 Package-Manager: portage-2.2.21
16 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
17
18 dev-libs/libxslt/libxslt-1.1.28-r4.ebuild | 4 +++-
19 1 file changed, 3 insertions(+), 1 deletion(-)
20
21 diff --git a/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild b/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild
22 index a2af700..a9578e3 100644
23 --- a/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild
24 +++ b/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild
25 @@ -50,6 +50,8 @@ src_prepare() {
26 # https://bugs.gentoo.org/show_bug.cgi?id=518728
27 epatch "${FILESDIR}"/${PN}-1.1.28-AC_PATH_TOOL.patch
28
29 + mv configure.{in,ac} || die
30 +
31 eautoreconf
32 # If eautoreconf'd with new autoconf, then epunt_cxx is not necessary
33 # and it is propably otherwise too if upstream generated with new
34 @@ -79,7 +81,7 @@ multilib_src_configure() {
35 libxslt_configure --without-python # build python bindings separately
36
37 if multilib_is_native_abi && use python; then
38 - python_parallel_foreach_impl libxslt_py_configure
39 + python_foreach_impl libxslt_py_configure
40 fi
41 }