Author: thoger
Update of /cvs/fedora/fedora-security/tools/lib/Libexig In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv1357/tools/lib/Libexig
Modified Files: Fedora.pm Log Message: F9 is almost out but still no F9 component, hence change wording of rawhide bugs (temporarily)
Index: Fedora.pm =================================================================== RCS file: /cvs/fedora/fedora-security/tools/lib/Libexig/Fedora.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Fedora.pm 14 Jan 2008 16:33:12 -0000 1.3 +++ Fedora.pm 9 May 2008 09:26:15 -0000 1.4 @@ -104,8 +104,10 @@
my $comment_rawhide = "\n". - 'Please close this bug with RAWHIDE (referencing appropriate N-V-R in '. - 'Fixed In field if possible) once is it fixed in devel branch. '. +# 'Please close this bug with RAWHIDE (referencing appropriate N-V-R in '. +# 'Fixed In field if possible) once is it fixed in devel branch. '. + 'Please note it's currently not possible to file bugs against F9, '. + 'so please make sure to fix in both rawhide and upcoming F9. '. 'Do *not* include the bug id of this bug in the RPM changelog and the '. 'commit message.'. "\n\n"; @@ -113,7 +115,7 @@ my %priorities = ( 'urgent', => 4, 'high', => 3, - 'medium', => 2, + 'medium', => 2, 'low' => 1, );
@@ -242,6 +244,23 @@
$bugzilla->add_comment ($bug_id, $tr_comment); } + # XXX temporary until F9 BZ component is created + else { + my $tr_comment = + 'You can eventually use the following link to '. + 'create the update request for upcoming Fedora 9: '."\n". + 'https://admin.fedoraproject.org/updates/new/'. + '?request=Stable'. + '&type=security'. + '&release=Fedora%209'. + '&bugs='.$bug_id; + + foreach my $bug (@{$parent_bugs}) { + $tr_comment .= ','.$bug; + } + + $bugzilla->add_comment ($bug_id, $tr_comment); + }
$bugzilla->add_blockers ($bug_id, $parent_bugs); $comment .= $bug->{'version'}.": bug #$bug_id\n";
security-commits@lists.fedoraproject.org