diff options
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/perl-app.eclass | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 3bbbe0271c05..258f4efa283f 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1399 2014/11/01 23:39:05 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1400 2014/11/02 00:45:43 dilfridge Exp $ + + 02 Nov 2014; Andreas K. Huettel <dilfridge@gentoo.org> perl-app.eclass: + Remove handling of EAPI=0,1,2 since that codepath cannot run anymore anyway 01 Nov 2014; Davide Pesavento <pesa@gentoo.org> qmake-utils.eclass: eqmake4(): support new qmake install location (patch by mgorny). diff --git a/eclass/perl-app.eclass b/eclass/perl-app.eclass index a0ce4f01d455..7ce8ac43da1f 100644 --- a/eclass/perl-app.eclass +++ b/eclass/perl-app.eclass @@ -1,6 +1,6 @@ # 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.14 2014/10/15 17:51:03 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-app.eclass,v 1.15 2014/11/02 00:45:43 dilfridge Exp $ # Author: Michael Cummings <mcummings@gentoo.org> # Maintained by the Perl herd <perl@gentoo.org> @@ -9,11 +9,6 @@ : ${GENTOO_DEPEND_ON_PERL_SUBSLOT:="no"} inherit perl-module -case "${EAPI:-0}" in - 0|1) EXPORT_FUNCTIONS src_compile ;; - 2) EXPORT_FUNCTIONS src_configure src_compile ;; -esac - perl-app_src_prep() { perl-app_src_configure } |