From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BFC6138359 for ; Tue, 1 Sep 2020 10:43:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED317E0A49; Tue, 1 Sep 2020 10:43:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D362FE0A49 for ; Tue, 1 Sep 2020 10:43:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FE0233FA71 for ; Tue, 1 Sep 2020 10:43:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BFAF33B for ; Tue, 1 Sep 2020 10:43:46 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1598957015.48ce504c726b6796a20fefac6b1f6d3c1803adbd.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libieee1284/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libieee1284/libieee1284-0.2.11-r7.ebuild X-VCS-Directories: sys-libs/libieee1284/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 48ce504c726b6796a20fefac6b1f6d3c1803adbd X-VCS-Branch: master Date: Tue, 1 Sep 2020 10:43:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f0825528-6d56-42d7-a70d-85a9e9b181bb X-Archives-Hash: 94d895b30bab3652d51b7a3207283f5a commit: 48ce504c726b6796a20fefac6b1f6d3c1803adbd Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Sep 1 10:30:35 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Sep 1 10:43:35 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48ce504c sys-libs/libieee1284: migrate to EAPI=7 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Thomas Deutschmann gentoo.org> sys-libs/libieee1284/libieee1284-0.2.11-r7.ebuild | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/sys-libs/libieee1284/libieee1284-0.2.11-r7.ebuild b/sys-libs/libieee1284/libieee1284-0.2.11-r7.ebuild index 9cb0704f1c1..6966e3e27a5 100644 --- a/sys-libs/libieee1284/libieee1284-0.2.11-r7.ebuild +++ b/sys-libs/libieee1284/libieee1284-0.2.11-r7.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="7" PYTHON_COMPAT=( python2_7 ) @@ -17,25 +17,29 @@ KEYWORDS="amd64 ppc x86" IUSE="doc python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" -RDEPEND=" - python? ( ${PYTHON_DEPS} )" -DEPEND="${RDEPEND} - doc? ( +BDEPEND="doc? ( app-text/docbook-sgml-utils >=app-text/docbook-sgml-dtd-4.1 app-text/docbook-dsssl-stylesheets dev-perl/XML-RegExp )" +DEPEND="python? ( ${PYTHON_DEPS} )" + +RDEPEND="${DEPEND}" + pkg_setup() { use python && python-single-r1_pkg_setup } multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - --enable-shared \ - $(use_enable static-libs static) \ + local myeconfargs=( + --enable-shared + $(use_enable static-libs static) $(multilib_native_use_with python) + ) + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" } multilib_src_install_all() { @@ -43,6 +47,6 @@ multilib_src_install_all() { dodoc doc/interface* if ! use static-libs; then - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die fi }