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 B7EB9138334 for ; Tue, 25 Sep 2018 21:57:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B919DE0A6E; Tue, 25 Sep 2018 21:57:01 +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 8FC27E0A6E for ; Tue, 25 Sep 2018 21:57:01 +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 B36ED335C8F for ; Tue, 25 Sep 2018 21:56:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DB903D4 for ; Tue, 25 Sep 2018 21:56:58 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1537912608.3c9785170a03e3b1fe0600cf27d0c55e133d5776.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/portage/portage-2.3.50-r1.ebuild sys-apps/portage/portage-2.3.50-r2.ebuild X-VCS-Directories: sys-apps/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 3c9785170a03e3b1fe0600cf27d0c55e133d5776 X-VCS-Branch: master Date: Tue, 25 Sep 2018 21:56:58 +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: 9a2c3f83-24ec-4b2a-826b-898aa313a0b9 X-Archives-Hash: c6f22dfca0e7dd9a2f00925f351b8b35 commit: 3c9785170a03e3b1fe0600cf27d0c55e133d5776 Author: Zac Medico gentoo org> AuthorDate: Tue Sep 25 21:50:09 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Sep 25 21:56:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c978517 sys-apps/portage: 2.3.50-r2 revbump for bug 667072 Closes: https://bugs.gentoo.org/667072 Package-Manager: Portage-2.3.50, Repoman-2.3.10 Signed-off-by: Zac Medico gentoo.org> .../portage/{portage-2.3.50-r1.ebuild => portage-2.3.50-r2.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-apps/portage/portage-2.3.50-r1.ebuild b/sys-apps/portage/portage-2.3.50-r2.ebuild similarity index 96% rename from sys-apps/portage/portage-2.3.50-r1.ebuild rename to sys-apps/portage/portage-2.3.50-r2.ebuild index 1c6ba953d00..b7dec67420e 100644 --- a/sys-apps/portage/portage-2.3.50-r1.ebuild +++ b/sys-apps/portage/portage-2.3.50-r2.ebuild @@ -98,6 +98,11 @@ python_prepare_all() { # Apply fbc100e68802 for bug 667008 sed -i 's:\[\[ -z ${PORTAGE_COMPRESS} \]\] && exit 0:if [[ -z ${PORTAGE_COMPRESS} ]]; then\n\tfind "${ED}" -name '\''*.ecompress'\'' -delete\n\texit 0\nfi:' bin/ecompress || die + # Apply 8a1d36088aa5 for bug 667072 + sed -e 's:^find "${ED}" -name '\''\*.ecompress'\'' -delete -print0 [|]:find "${ED}" -name '\''*.ecompress'\'' -delete \\:' \ + -e 's:\t___parallel_xargs -0 "${PORTAGE_BIN_PATH}"/ecompress-file:\t-exec "${PORTAGE_BIN_PATH}"/ecompress-file {} +:' \ + -i bin/ecompress || die + if use gentoo-dev; then einfo "Disabling --dynamic-deps by default for gentoo-dev..." sed -e 's:\("--dynamic-deps", \)\("y"\):\1"n":' \