From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1366297-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 18CAB15808B for <garchives@archives.gentoo.org>; Thu, 10 Feb 2022 09:54:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F0E8E08D3; Thu, 10 Feb 2022 09:54:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05175E08D3 for <gentoo-commits@lists.gentoo.org>; Thu, 10 Feb 2022 09:54:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A242343130 for <gentoo-commits@lists.gentoo.org>; Thu, 10 Feb 2022 09:54:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9084C287 for <gentoo-commits@lists.gentoo.org>; Thu, 10 Feb 2022 09:54:23 +0000 (UTC) From: "David Seifert" <soap@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, "David Seifert" <soap@gentoo.org> Message-ID: <1644486839.ef5429f4243a97439797a74dc22cbaf22458e5e1.soap@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.17.0.ebuild X-VCS-Directories: app-crypt/gpgme/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ef5429f4243a97439797a74dc22cbaf22458e5e1 X-VCS-Branch: master Date: Thu, 10 Feb 2022 09:54:23 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 626849f7-5fbc-4658-b580-d15d570f6618 X-Archives-Hash: f8d43bef6a3140d320669271e161a879 commit: ef5429f4243a97439797a74dc22cbaf22458e5e1 Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Thu Feb 10 09:53:59 2022 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Thu Feb 10 09:53:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef5429f4 app-crypt/gpgme: [QA] add die and use emake * `|| die` is also required for popd * python was being built without -jX or MAKEOPTS Signed-off-by: David Seifert <soap <AT> gentoo.org> app-crypt/gpgme/gpgme-1.17.0.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app-crypt/gpgme/gpgme-1.17.0.ebuild b/app-crypt/gpgme/gpgme-1.17.0.ebuild index c6303a56b2af..06d6ea0cfaa9 100644 --- a/app-crypt/gpgme/gpgme-1.17.0.ebuild +++ b/app-crypt/gpgme/gpgme-1.17.0.ebuild @@ -33,8 +33,8 @@ REQUIRED_USE="qt5? ( cxx ) python? ( ${PYTHON_REQUIRED_USE} )" do_python() { if use python; then pushd "lang/python" > /dev/null || die - top_builddir="../.." srcdir="." CPP=$(tc-getCPP) distutils-r1_src_${EBUILD_PHASE} - popd > /dev/null + top_builddir="../.." srcdir="." CPP="$(tc-getCPP)" distutils-r1_src_${EBUILD_PHASE} + popd > /dev/null || die fi } @@ -54,7 +54,7 @@ src_prepare() { # Make best effort to allow longer PORTAGE_TMPDIR # as usock limitation fails build/tests - ln -s "${P}" "${WORKDIR}/b" + ln -s "${P}" "${WORKDIR}/b" || die S="${WORKDIR}/b" } @@ -74,7 +74,7 @@ src_configure() { --enable-languages="${languages[*]}" \ $(use_enable static-libs static) - use python && make -C lang/python prepare + use python && emake -C lang/python prepare do_python }