diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-09-19 18:17:12 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-09-19 18:17:12 +0000 |
commit | ba0c227629469b18881b2c3b6f7d2e0f6bf74581 (patch) | |
tree | 107f794665e638b9bba4dc0a8993586d88834a18 /eclass | |
parent | Remove obsolete mask of www-apps/swish-e (diff) | |
download | gentoo-2-ba0c227629469b18881b2c3b6f7d2e0f6bf74581.tar.gz gentoo-2-ba0c227629469b18881b2c3b6f7d2e0f6bf74581.tar.bz2 gentoo-2-ba0c227629469b18881b2c3b6f7d2e0f6bf74581.zip |
Remove support for EAPI 1, 2, 3 in perl-module.eclass (no packages left in the tree)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/perl-module.eclass | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index fa697982f427..b0f0a4a3a3ba 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -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.1372 2014/09/17 10:21:37 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1373 2014/09/19 18:17:12 dilfridge Exp $ + + 19 Sep 2014; Andreas K. Huettel <dilfridge@gentoo.org> perl-module.eclass: + Remove support for EAPI 1, 2, 3 in perl-module.eclass (no packages left in + the tree) 17 Sep 2014; Justin Lecher <jlec@gentoo.org> cuda.eclass: nvcc always needs tp know the compiler location diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 321d18a64eff..c826e3de3ba6 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -1,6 +1,6 @@ -# 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-module.eclass,v 1.139 2014/03/30 19:25:14 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.140 2014/09/19 18:17:12 dilfridge Exp $ # @ECLASS: perl-module.eclass # @MAINTAINER: @@ -18,10 +18,10 @@ inherit eutils multiprocessing unpacker PERL_EXPF="src_unpack src_compile src_test src_install" case "${EAPI:-0}" in - 0|1) + 0) PERL_EXPF+=" pkg_setup pkg_preinst pkg_postinst pkg_prerm pkg_postrm" ;; - 2|3|4|5) + 4|5) PERL_EXPF+=" src_prepare src_configure" [[ ${CATEGORY} == "perl-core" ]] && \ PERL_EXPF+=" pkg_postinst pkg_postrm" |