diff options
author | 2012-12-06 08:19:42 +0000 | |
---|---|---|
committer | 2012-12-06 08:19:42 +0000 | |
commit | 48fc6bd84276f3c7c3ad3adbd71f5ec030388931 (patch) | |
tree | d912c27ca4de7144846d728aa93e4c0f60fb234f /eclass | |
parent | Stable amd64 ppc and x86. Needs to go stable, severe bugs. (diff) | |
download | gentoo-2-48fc6bd84276f3c7c3ad3adbd71f5ec030388931.tar.gz gentoo-2-48fc6bd84276f3c7c3ad3adbd71f5ec030388931.tar.bz2 gentoo-2-48fc6bd84276f3c7c3ad3adbd71f5ec030388931.zip |
Sort this eapi case stuff.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/waf-utils.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index dad20c654df9..9747904e139f 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.544 2012/12/05 19:41:21 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.545 2012/12/06 08:19:42 scarabeus Exp $ + + 06 Dec 2012; Tomáš Chvátal <scarabeus@gentoo.org> waf-utils.eclass: + Sort this eapi case stuff. 05 Dec 2012; Justin Lecher <jlec@gentoo.org> intel-sdp.eclass: Add EAPI=5 support; add check for presents of license; handle docs, examples diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass index 9048c45ac95a..e06d78893662 100644 --- a/eclass/waf-utils.eclass +++ b/eclass/waf-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.15 2012/11/29 17:56:39 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.16 2012/12/06 08:19:42 scarabeus Exp $ # @ECLASS: waf-utils.eclass # @MAINTAINER: @@ -18,7 +18,7 @@ inherit base eutils multilib toolchain-funcs multiprocessing case ${EAPI:-0} in - 4|5|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; + 3|4|5) EXPORT_FUNCTIONS src_configure src_compile src_install ;; *) die "EAPI=${EAPI} is not supported" ;; esac |