diff options
author | Michał Górny <mgorny@gentoo.org> | 2013-01-20 23:42:48 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2013-01-20 23:42:48 +0000 |
commit | 5b111741fa6a0f05baf225b52e54f1a70cb309a4 (patch) | |
tree | 11fe4b72ff154bb4ef7287ad435a8a5ddc8a2d73 /eclass | |
parent | Compiles on ~arm, tested on mv78100. (diff) | |
download | historical-5b111741fa6a0f05baf225b52e54f1a70cb309a4.tar.gz historical-5b111741fa6a0f05baf225b52e54f1a70cb309a4.tar.bz2 historical-5b111741fa6a0f05baf225b52e54f1a70cb309a4.zip |
Enable EAPI=5.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/autotools-multilib.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 4b46ad97257b..c370cc3900d8 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.628 2013/01/20 21:41:08 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.629 2013/01/20 23:42:48 mgorny Exp $ + + 20 Jan 2013; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass: + Enable EAPI=5. 20 Jan 2013; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass: Do not redirect stderr of pushd&popd. Thanks to vapier for catching that. diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass index fe6372d42267..7c8697a611c8 100644 --- a/eclass/autotools-multilib.eclass +++ b/eclass/autotools-multilib.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.2 2012/12/01 16:26:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.3 2013/01/20 23:42:48 mgorny Exp $ # @ECLASS: autotools-multilib.eclass # @MAINTAINER: @@ -20,7 +20,7 @@ # it. case ${EAPI:-0} in - 2|3|4) ;; + 2|3|4|5) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |