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 3CAF1139694 for ; Sun, 21 May 2017 15:05:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C5CA21C095; Sun, 21 May 2017 15:05:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 695A421C095 for ; Sun, 21 May 2017 15:05:13 +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 CC8753416B5 for ; Sun, 21 May 2017 15:05:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4340E745C for ; Sun, 21 May 2017 15:05:10 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1495379098.b57e85b8819e26f2f4514b5c1df9d3ec4fcc22fd.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/perl/perl-5.26.9999.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: b57e85b8819e26f2f4514b5c1df9d3ec4fcc22fd X-VCS-Branch: master Date: Sun, 21 May 2017 15:05:10 +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: 0643e93c-be53-46a1-bca7-06d6e310a025 X-Archives-Hash: a340d2c9180504cc149bcb7d43344bc5 commit: b57e85b8819e26f2f4514b5c1df9d3ec4fcc22fd Author: Kent Fredric gentoo org> AuthorDate: Sun May 21 13:24:16 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Sun May 21 15:04:58 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b57e85b8 dev-lang/perl: Ensure PATCH_BASE is common between -9999 and not This is because we don't need to update the patches as often as perl updates, because the patch set tends to be portable across versions. This prevents us from needing a new patch tarball simply because we changed version. Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-lang/perl/perl-5.26.9999.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-lang/perl/perl-5.26.9999.ebuild b/dev-lang/perl/perl-5.26.9999.ebuild index c2fddc553e7..908abf6dd82 100644 --- a/dev-lang/perl/perl-5.26.9999.ebuild +++ b/dev-lang/perl/perl-5.26.9999.ebuild @@ -7,6 +7,7 @@ inherit eutils alternatives flag-o-matic toolchain-funcs multilib multiprocessin PATCH_VER=1 CROSS_VER=1.1.4 +PATCH_BASE="perl-5.25.11-patches-${PATCH_VER}" DIST_AUTHOR=XSAWYERX @@ -21,14 +22,12 @@ if [[ "${PV##*.}" == "9999" ]]; then # Devel Releases are not ABI-intercompatible SUBSLOT="${DIST_VERSION}" MY_P="perl-${DIST_VERSION/_rc/-RC}" - PATCH_BASE="perl-5.25.11-patches-${PATCH_VER}" MY_PV="${DIST_VERSION%_rc*}" else # First 2 digits only SHORT_PV="${PV%.*}" SUBSLOT="${SHORT_PV}" MY_P="perl-${PV/_rc/-RC}" - PATCH_BASE="${MY_P}-patches-${PATCH_VER}" MY_PV="${PV%_rc*}" fi