From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 897C41381F3 for ; Tue, 23 Apr 2013 19:16:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14B2AE0A8B; Tue, 23 Apr 2013 19:16:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A5356E0A8B for ; Tue, 23 Apr 2013 19:16:03 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B0D6333DE62 for ; Tue, 23 Apr 2013 19:16:02 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 9A6372171D; Tue, 23 Apr 2013 19:16:00 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: autotools.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: autotools.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130423191600.9A6372171D@flycatcher.gentoo.org> Date: Tue, 23 Apr 2013 19:16:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7bfa9799-44cf-4c05-b01e-30c5196f1184 X-Archives-Hash: 1acde5ed542ba39c01a5f2868b9581d1 vapier 13/04/23 19:16:00 Modified: autotools.eclass Log: add automake-1.13 to the acceptable dependency list #465732 by Arfrever Frehtes Taifersar Arahesis Revision Changes Path 1.153 eclass/autotools.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.153&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.153&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.152&r2=1.153 Index: autotools.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v retrieving revision 1.152 retrieving revision 1.153 diff -u -r1.152 -r1.153 --- autotools.eclass 15 Apr 2013 21:46:44 -0000 1.152 +++ autotools.eclass 23 Apr 2013 19:16:00 -0000 1.153 @@ -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 @@ # @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: : -_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"