From: Eric Edgar Date: Sun, 29 Jan 2006 14:42:17 +0000 (+0000) Subject: add grp/use to valid_values in the grp module X-Git-Tag: CATALYST_2_0_6_916~439 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=025324cf4bea16a7211ee39b15c5bcea25791e3a;p=catalyst.git add grp/use to valid_values in the grp module git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1055 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 218608c7..677d4e96 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.540 2006/01/29 08:32:05 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.541 2006/01/29 14:42:17 rocket Exp $ + + 29 Jan 2006; Eric Edgar modules/grp_target.py: + add grp/use to valid_values in the grp module 29 Jan 2006; Chris Gianelloni catalyst: This is 2.0_rc27. diff --git a/modules/grp_target.py b/modules/grp_target.py index f6dddd8d..b0300da1 100644 --- a/modules/grp_target.py +++ b/modules/grp_target.py @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/modules/grp_target.py,v 1.22 2005/12/05 18:13:12 rocket Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/modules/grp_target.py,v 1.23 2006/01/29 14:42:17 rocket Exp $ """ The builder class for GRP (Gentoo Reference Platform) builds. @@ -16,6 +16,7 @@ class grp_target(generic_stage_target): "rel_type","profile","snapshot","source_subpath"] self.valid_values=self.required_values[:] + self.valid_values.extend(["grp/use"]) if not addlargs.has_key("grp"): raise CatalystError,"Required value \"grp\" not specified in spec."