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 0CF76138330 for ; Thu, 24 May 2018 21:17:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05C23E08C0; Thu, 24 May 2018 21:17:30 +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 D41B2E08C0 for ; Thu, 24 May 2018 21:17:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B13B6335C29 for ; Thu, 24 May 2018 21:17:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D8F727A for ; Thu, 24 May 2018 21:17:26 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527196635.12c6a016b19d4aa539bcea43702f3cda97cab2d3.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/pass/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/pass/pass-1.7.1.ebuild X-VCS-Directories: app-admin/pass/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 12c6a016b19d4aa539bcea43702f3cda97cab2d3 X-VCS-Branch: master Date: Thu, 24 May 2018 21:17:26 +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: a561a4c9-73ce-41e1-919e-bb0c3c52a220 X-Archives-Hash: a2822f79f476fadc9c64e4c45fa5b053 commit: 12c6a016b19d4aa539bcea43702f3cda97cab2d3 Author: Daniel Mueller posteo net> AuthorDate: Thu Dec 14 21:47:44 2017 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu May 24 21:17:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12c6a016 app-admin/pass: Apply user patches The app-admin/pass ebuild does not apply any user patches currently. This change bumps the EAPI to version 6 and causes the ebuild to invoke default (and with that eapply_user) in the src_prepare phase, fixing this behavior. Closes: https://github.com/gentoo/gentoo/pull/6549 app-admin/pass/pass-1.7.1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-admin/pass/pass-1.7.1.ebuild b/app-admin/pass/pass-1.7.1.ebuild index 710fc5a1d86..47767213280 100644 --- a/app-admin/pass/pass-1.7.1.ebuild +++ b/app-admin/pass/pass-1.7.1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit bash-completion-r1 elisp-common @@ -30,6 +30,8 @@ RDEPEND=" S="${WORKDIR}/password-store-${PV}" src_prepare() { + default + use elibc_Darwin || return # use coreutils' sed -i -e 's/openssl base64/base64/g' src/platform/darwin.sh || die