diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-06-17 19:13:17 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-06-17 19:13:17 +0000 |
commit | e666dfdfd12c3711deeb304f965eb4a2fb95c95d (patch) | |
tree | a79d9a8d3634882517dd6c6810f0aa3100fb08bd /eclass | |
parent | Apply libav patch to build with libav9. Fixes bug#443196. (diff) | |
download | gentoo-2-e666dfdfd12c3711deeb304f965eb4a2fb95c95d.tar.gz gentoo-2-e666dfdfd12c3711deeb304f965eb4a2fb95c95d.tar.bz2 gentoo-2-e666dfdfd12c3711deeb304f965eb4a2fb95c95d.zip |
Allow eapi4 (#473610)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/multilib-minimal.eclass | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index d53dd1b301ad..406298146db1 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.858 2013/06/17 07:57:30 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.859 2013/06/17 19:13:17 pacho Exp $ + + 17 Jun 2013; Pacho Ramos <pacho@gentoo.org> multilib-minimal.eclass: + Allow eapi4 (#473610) 17 Jun 2013; Tim Harder <radhermit@gentoo.org> vim-plugin.eclass: Update default VIM_PLUGIN_VIM_VERSION to 7.3. diff --git a/eclass/multilib-minimal.eclass b/eclass/multilib-minimal.eclass index c2407d38a815..277ea8a20e54 100644 --- a/eclass/multilib-minimal.eclass +++ b/eclass/multilib-minimal.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-minimal.eclass,v 1.3 2013/05/04 20:06:42 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-minimal.eclass,v 1.4 2013/06/17 19:13:17 pacho Exp $ # @ECLASS: multilib-minimal.eclass # @MAINTAINER: @@ -23,9 +23,9 @@ # If you need generic install rules, use multilib_src_install_all function. -# EAPI=5 is required for meaningful MULTILIB_USEDEP. +# EAPI=4 is required for meaningful MULTILIB_USEDEP. case ${EAPI:-0} in - 5) ;; + 4|5) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |