diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-05-11 06:29:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-05-11 06:29:09 +0000 |
commit | 647f0330075cc9547050b5890d6047063cd91661 (patch) | |
tree | 855474dfbba147a2d6985edd4f501b81fd291cad /makerelease | |
parent | 43952b1d94d2ed564137f8541f35e2aeabe49808 (diff) | |
download | fetchmail-647f0330075cc9547050b5890d6047063cd91661.tar.gz fetchmail-647f0330075cc9547050b5890d6047063cd91661.tar.bz2 fetchmail-647f0330075cc9547050b5890d6047063cd91661.zip |
No more changelog updates.
svn path=/trunk/; revision=2473
Diffstat (limited to 'makerelease')
-rwxr-xr-x | makerelease | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/makerelease b/makerelease index 5b520840..cb86f101 100755 --- a/makerelease +++ b/makerelease @@ -50,35 +50,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 { - $date = &rfc822date(); - print "Updating the Debian logfile ($logvers -> $version)...\n"; - open(DEBLOG, "<debian/changelog"); - open(TMP, ">mkr$$.tmp") || die("Error opening temp file\n"); - print TMP <<EOF; -fetchmail (${version}-1) unstable; urgency=low - - * new upstream version - - -- Eric S. Raymond <esr\@thyrsus.com> ${date} - -EOF - while (<DEBLOG>) { - print TMP $_; - } - close(TMP); - close(DEBLOG); - system("mv mkr$$.tmp debian/changelog"); -} - print "Building the distribution...\n"; if (system("su -c 'make dist >/dev/null' esr")) { die("Distribution-build failure\n"); |