]> git.sur5r.net Git - bacula/bacula/commitdiff
update changelog
authorEric Bollengier <eric@eb.homelinux.org>
Wed, 3 Aug 2011 09:13:35 +0000 (11:13 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:29 +0000 (14:49 +0200)
bacula/ChangeLog
bacula/release/git2changelog.pl

index 0fb8c2023cd9c822c002e678ce0359beafe17a3f..94bc69e0fa5c3d835d234585b15be6cf066a03c6 100644 (file)
@@ -1,7 +1,18 @@
               Changelog on version 5.2.0
 
 Bug fixes
-1389 1444 1448 1466 1467 1468 1476 1481 1486 1488 1493 1494 1497 1499 1501 1502 1504 1509 1511 1513 1516 1524 1526 1527 1532 1536 1538 1541 1542 1549 1551 1553 1554 1558 1559 1560 1564 1567 1568 1569 1571 1574 1577 1581 1582 1584 1587 1594 1595 1600 1601 1603 1604 1606 1608 1610 1612 1623 1624 1633 1643 1648 1655 1661 1666 1669 1672 1675 1684 1685 1695 1696 1699 1700 1703 1735 
+1389 1444 1448 1466 1467 1468 1476 1481 1486 1488 1493 1494 1497 1499 1501 1502 1504 1509 1511 1513 1516 1524 1526 1527 1532 1536 1538 1541 1542 1549 1551 1553 1554 1558 1559 1560 1564 1567 1568 1569 1571 1574 1577 1581 1582 1584 1587 1594 1595 1600 1601 1603 1604 1606 1608 1610 1612 1623 1624 1633 1643 1648 1655 1661 1666 1669 1672 1675 1684 1685 1695 1696 1699 1700 1703 1735 1664 1741 1749
+
+08Jul11
+ - Fix libtool definition and make the helper script executable.
+ - Use a helper script to link the correct database backend.
+ - Sync libtool to 2.4 version.
+ - Fix #1741 about possible problems with fnmatch
+
+07Jul11
+ - Add missing stream in bscan, fix #1749
+ - Change intmax_t to int64_t to fix #1664
+ - Fix compilation with gcc 4.6.1
 
 06Jul11
 - Add mutex priority check for changer mutex
index 379e2a4bd713cc0a8ff9875b5f768216457b8acc..6b8b74c96ecfec32880754dc0b52028611cad2ab 100755 (executable)
@@ -13,6 +13,8 @@ use strict;
 use POSIX q/strftime/;
 
 my $d='';
+my $cur;
+my %elt;
 my $last_txt='';
 my %bugs;
 my $refs = shift || '';
@@ -24,6 +26,8 @@ while (my $l = <FP>) {
     next if ($l =~ /(tweak|typo|cleanup|regress:|again|.gitignore|fix compilation|technotes)/ixs);
     next if ($l =~ /update (version|technotes|kernstodo|projects|releasenotes|version|home|release|todo|notes|changelog|tpl|configure)/i);
 
+    next if ($l =~ /bacula-web:/);
+
     if ($for_bweb) {
         next if ($l !~ /bweb/ixs);
         $l =~ s/bweb: *//ig;
@@ -42,6 +46,7 @@ while (my $l = <FP>) {
     if ($l =~ /(\d+): (.+)/) {
         # use date as 01Jan70
         my $dnow = strftime('%d%b%y', localtime($1));
+        my $cur = strftime('%Y%m%d', localtime($1));
         my $txt = $2;
 
         # avoid identical multiple commit message
@@ -54,10 +59,12 @@ while (my $l = <FP>) {
 
         # if we are the same day, just add entry
         if ($dnow ne $d) {
-            print "\n$dnow\n";
             $d = $dnow;
+            if (!exists $elt{$cur}) {
+                push @{$elt{$cur}}, "\n\n$dnow";
+            }
         }
-        print "- $txt\n";
+        push @{$elt{$cur}},  " - $txt";
 
     } else {
         print STDERR "invalid format: $l\n";
@@ -66,5 +73,9 @@ while (my $l = <FP>) {
 
 close(FP);
 
-print "\nBug fixes\n";
+foreach my $d (sort {$b <=> $a} keys %elt) {
+    print join("\n", @{$elt{$d}});
+}
+
+print "\n\nBug fixes\n";
 print join(" ", sort keys %bugs), "\n";