axs 14/10/15 17:51:03 Modified: ChangeLog perl-app.eclass Log: Allow ebuild to override GENTOO_DEPEND_ON_PERL_SUBSLOT in perl-app.eclass if necessary
Revision Changes Path 1.1386 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1386&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1386&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1385&r2=1.1386 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1385 retrieving revision 1.1386 diff -u -r1.1385 -r1.1386 --- ChangeLog 15 Oct 2014 13:44:24 -0000 1.1385 +++ ChangeLog 15 Oct 2014 17:51:03 -0000 1.1386 @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1385 2014/10/15 13:44:24 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1386 2014/10/15 17:51:03 axs Exp $ + + 15 Oct 2014; Ian Stakenvicius (_AxS_) <[email protected]> perl-app.eclass: + Allow ebuild to override GENTOO_DEPEND_ON_PERL_SUBSLOT in perl-app.eclass if + necessary 15 Oct 2014; Michael Palimaka <[email protected]> cmake-utils.eclass: Introduce comment_add_subdirectory function. Make EAPI check more technically 1.14 eclass/perl-app.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-app.eclass?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-app.eclass?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/perl-app.eclass?r1=1.13&r2=1.14 Index: perl-app.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- perl-app.eclass 29 Dec 2013 21:39:51 -0000 1.13 +++ perl-app.eclass 15 Oct 2014 17:51:03 -0000 1.14 @@ -1,11 +1,12 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.13 2013/12/29 21:39:51 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.14 2014/10/15 17:51:03 axs Exp $ # Author: Michael Cummings <[email protected]> # Maintained by the Perl herd <[email protected]> -GENTOO_DEPEND_ON_PERL_SUBSLOT="no" +# If the ebuild doesn't override this, ensure we do not depend on the perl subslot value +: ${GENTOO_DEPEND_ON_PERL_SUBSLOT:="no"} inherit perl-module case "${EAPI:-0}" in
