diff options
author | 2013-04-23 19:16:00 +0000 | |
---|---|---|
committer | 2013-04-23 19:16:00 +0000 | |
commit | d7825318472e6c3f72fcc14117262d5a15f4d35b (patch) | |
tree | 7ade1c58e73bc66087d7d2c3c53207ea6f920da4 /eclass/autotools.eclass | |
parent | Version bump, drop old (diff) | |
download | historical-d7825318472e6c3f72fcc14117262d5a15f4d35b.tar.gz historical-d7825318472e6c3f72fcc14117262d5a15f4d35b.tar.bz2 historical-d7825318472e6c3f72fcc14117262d5a15f4d35b.zip |
add automake-1.13 to the acceptable dependency list #465732 by Arfrever Frehtes Taifersar Arahesis
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 88ca9bc560e4..1bbb0b56cec7 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.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/autotools.eclass,v 1.152 2013/04/15 21:46:44 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.153 2013/04/23 19:16:00 vapier Exp $ # @ECLASS: autotools.eclass # @MAINTAINER: @@ -38,12 +38,15 @@ inherit libtool multiprocessing # @DESCRIPTION: # CONSTANT! # The latest major version/slot of automake available on each arch. #312315 +# We should list both the latest stable, and the latest unstable. #465732 +# This way the stable builds will still work, but the unstable are allowed +# to build & test things for us ahead of time (if they have it installed). # If a newer slot is stable on any arch, and is NOT reflected in this list, # then circular dependencies may arise during emerge @system bootstraps. # Do NOT change this variable in your ebuilds! # If you want to force a newer minor version, you can specify the correct # WANT value by using a colon: <PV>:<WANT_AUTOMAKE> -_LATEST_AUTOMAKE=( 1.12:1.12 ) +_LATEST_AUTOMAKE=( 1.12:1.12 1.13:1.13 ) _automake_atom="sys-devel/automake" _autoconf_atom="sys-devel/autoconf" |