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 8310C139694 for ; Fri, 21 Apr 2017 10:35:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BCC3E0CB9; Fri, 21 Apr 2017 10:35:06 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 56F5AE0CB9 for ; Fri, 21 Apr 2017 10:35:06 +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 8EC3C33BE1A for ; Fri, 21 Apr 2017 10:35:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0182173EF for ; Fri, 21 Apr 2017 10:35:03 +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: <1492770811.e84f62972cbd20ed83db1726eca62ca304a67ed8.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: e84f62972cbd20ed83db1726eca62ca304a67ed8 X-VCS-Branch: master Date: Fri, 21 Apr 2017 10:35:03 +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: 90ffbaf5-261e-4d17-8bc7-08558a2be934 X-Archives-Hash: 5c694d27fd38d2cc06b349e29ffd8115 commit: e84f62972cbd20ed83db1726eca62ca304a67ed8 Author: Kent Fredric gentoo org> AuthorDate: Fri Apr 21 10:33:31 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Fri Apr 21 10:33:31 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84f6297 dev-lang/perl: Stop treating minor devrels as ABI compatible Development releases of Perl are not ABI-intercompatible with each other, regardless of *actual* ABI compat, as Perl itself enforces minor-version breaks in XS code. Hence, this commit: 1. Ensures that development releases use the full 5.xx.yyy for the subslot 2. Ensures the arch-abi-path from older 5.ODD series is not shared with newer 5.ODD Package-Manager: Portage-2.3.4, Repoman-2.3.2 dev-lang/perl/perl-5.26.9999.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-lang/perl/perl-5.26.9999.ebuild b/dev-lang/perl/perl-5.26.9999.ebuild index 66819aba418..6fcefc8a381 100644 --- a/dev-lang/perl/perl-5.26.9999.ebuild +++ b/dev-lang/perl/perl-5.26.9999.ebuild @@ -15,19 +15,22 @@ if [[ "${PV##*.}" == "9999" ]]; then # Include more versions for blead releases # for circular reasons # Greatest first, don't include yourself - PERL_BIN_OLDVERSEN="5.25.11" + PERL_BIN_OLDVERSEN="" PERL_OLDVERSEN="5.25.11 5.24.2 5.24.1 5.24.0 5.22.3 5.22.2 5.22.1 5.22.0" DIST_VERSION=5.25.12 SHORT_PV="${DIST_VERSION%.*}" + # 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 - PERL_BIN_OLDVERSEN="5.25.11" + PERL_BIN_OLDVERSEN="" # Compat reasons PERL_OLDVERSEN="5.25.11" # 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*}" @@ -46,7 +49,7 @@ SRC_URI=" HOMEPAGE="http://www.perl.org/" LICENSE="|| ( Artistic GPL-1+ )" -SLOT="0/${SHORT_PV}" +SLOT="0/${SUBSLOT}" if [[ "${PV##*.}" != "9999" ]]; then KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"