From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-836798-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 19D61139BC6 for <garchives@archives.gentoo.org>; Fri, 25 Sep 2015 07:11:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 199CC21C006; Fri, 25 Sep 2015 07:11:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABB4F21C001 for <gentoo-commits@lists.gentoo.org>; Fri, 25 Sep 2015 07:11:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 898D1340A02 for <gentoo-commits@lists.gentoo.org>; Fri, 25 Sep 2015 07:11:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E006D237 for <gentoo-commits@lists.gentoo.org>; Fri, 25 Sep 2015 07:11:26 +0000 (UTC) From: "Justin Lecher" <jlec@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" <jlec@gentoo.org> Message-ID: <1443165083.5e7adc3a3a77baf560c1954fa00d05cc9aa5f263.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libxslt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libxslt/libxslt-1.1.28-r4.ebuild X-VCS-Directories: dev-libs/libxslt/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 5e7adc3a3a77baf560c1954fa00d05cc9aa5f263 X-VCS-Branch: master Date: Fri, 25 Sep 2015 07:11:26 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ca67604e-9802-49a2-a930-f29eff833cf0 X-Archives-Hash: c69371e0feabf4208e0aa20830dd989e commit: 5e7adc3a3a77baf560c1954fa00d05cc9aa5f263 Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Fri Sep 25 06:53:36 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Fri Sep 25 07:11:23 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7adc3a 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 <AT> gentoo.org> dev-libs/libxslt/libxslt-1.1.28-r4.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild b/dev-libs/libxslt/libxslt-1.1.28-r4.ebuild index a2af700..a9578e3 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 }