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 26D89138330 for ; Sat, 24 Sep 2016 06:23:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA2DAE0A69; Sat, 24 Sep 2016 06:23:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 358CEE0A69 for ; Sat, 24 Sep 2016 06:23:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DD574340A35 for ; Sat, 24 Sep 2016 06:23:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15CD82481 for ; Sat, 24 Sep 2016 06:23:25 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1474698180.0824a358659678c52ada46bc9bb44af359586a96.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/gpgme/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/gpgme/gpgme-1.7.0.ebuild X-VCS-Directories: app-crypt/gpgme/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: 0824a358659678c52ada46bc9bb44af359586a96 X-VCS-Branch: master Date: Sat, 24 Sep 2016 06:23:25 +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-Archives-Salt: 638fee76-e2db-44cb-af8f-e4f0767e0f65 X-Archives-Hash: 24323121fdc26bef4c9a7b0c9d9d394d commit: 0824a358659678c52ada46bc9bb44af359586a96 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Sep 24 06:22:37 2016 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Sep 24 06:23:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0824a358 app-crypt/gpgme: even simpler distutils usage Package-Manager: portage-2.2.28 app-crypt/gpgme/gpgme-1.7.0.ebuild | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/app-crypt/gpgme/gpgme-1.7.0.ebuild b/app-crypt/gpgme/gpgme-1.7.0.ebuild index 7ea80be..2ffe8f3 100644 --- a/app-crypt/gpgme/gpgme-1.7.0.ebuild +++ b/app-crypt/gpgme/gpgme-1.7.0.ebuild @@ -45,7 +45,7 @@ PATCHES=( do_python() { if use python; then pushd lang/python > /dev/null || die - binary_builddir="${S}" distutils-r1_src_${EBUILD_PHASE} + distutils-r1_src_${EBUILD_PHASE} popd > /dev/null fi } @@ -71,20 +71,13 @@ src_configure() { --enable-languages="${languages[*]}" \ $(use_enable static-libs static) - python_conf() { - econf --enable-languages= - } - use python && python_foreach_impl python_conf + use python && make -C lang/python prepare + do_python } src_compile() { default - - python_build() { - make -C lang/python prepare - } - use python && python_foreach_impl python_build do_python }