This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: SC decision on version numbering: 4.0


On Sep 9, 2004, at 2:48 PM, Joseph S. Myers wrote:
branching.html lists all the places that need changing for new major
versions

http://gcc.gnu.org/branching.html


16. Update the email parsing script to handle bugs against the new versions. The script is in CVS at wwwdocs/bugzilla/contrib/bug_email.pl. Search for an existing version (like "3.3"), and update both places it occurs to handle the new version through copy and paste.

Doing diffs in wwwdocs/bugzilla/contrib:
*** ./bug_email.pl.~1~  Thu Aug 26 10:19:45 2004
--- ./bug_email.pl      Thu Sep  9 15:06:34 2004
*************** sub writeBugIntoDB
*** 302,309 ****
      my($version) = "";
      my($release) = $fields{"Release"};
      if ($release ne "") {
!           if ($release =~ /.*3\.5\.0.*/o) {
!           $version = "3.5.0";
      }
      elsif ($release =~ /.*3\.4\.3.*/o) {
            $version = "3.4.3";
--- 302,312 ----
      my($version) = "";
      my($release) = $fields{"Release"};
      if ($release ne "") {
!           if ($release =~ /.*4\.0\.0.*/o) {
!           $version = "4.0.0";
!     }
!     elsif ($release =~ /.*3\.5\.0.*/o) {
!           $version = "4.0.0";
      }
      elsif ($release =~ /.*3\.4\.3.*/o) {
            $version = "3.4.3";
--------------

Ok?

I ask because I wasn't sure if we should leave 3.5.0 in here, or remove it entirely.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]