]> Pileus Git - ~andy/fetchmail/blobdiff - makerelease
BSDI port tweak.
[~andy/fetchmail] / makerelease
index 55e0e86c199716068eba18ce3cfeae933da6ed9c..da16eb63a800c2747d5028ea175132a555429487 100755 (executable)
@@ -4,6 +4,8 @@
 # Dumps a release notice and diffs as a MIME multipart message 
 # in RELEASE_NOTES
 #
+$timezone = "-0500";
+
 $version=`grep 'VERSION *=' Makefile.in`;
 $version =~ /VERSION *= *(.*)/;
 $version = $1;
@@ -38,28 +40,6 @@ if (system("su -c 'make >/dev/null' esr")) {
        die("Compilation failure\n");
 }
 
-# Update the Debian logfile
-open(DEBLOG, "debian/changelog");
-$firstline = <DEBLOG>;
-close(DEBLOG);
-$firstline =~ /fetchmail \(*([^-]*)/;
-$logvers = $1;
-if ($version eq $logvers) {
-    print "No change to Debian logfile...\n";
-} else {
-    print "Updating the Debian logfile ($logvers -> $version)...\n";
-    open(DEBLOG, ">>debian/changelog");
-    print DEBLOG <<EOF;
-fetchmail (${version}-1) unstable; urgency=low
-
-  * new upstream version
-  
--- Eric S. Raymond <esr\@ccil.org>  ${date}
-  
-EOF
-    close(DEBLOG);
-}
-
 print "Building the distribution...\n";
 if (system("su -c 'make dist >/dev/null' esr")) {
        die("Distribution-build failure\n");
@@ -132,6 +112,9 @@ unlink("DIFFS.$$");
 print "Building index page...\n";
 system("rm -f index.html; indexgen.sh");
 
+print "Making activity graph...";
+growthplot;
+
 print "Done\n";
 
 # makerelease ends here