aboutsummaryrefslogtreecommitdiffstats
path: root/dist-tools/makerelease.pl
diff options
context:
space:
mode:
Diffstat (limited to 'dist-tools/makerelease.pl')
-rwxr-xr-xdist-tools/makerelease.pl6
1 files changed, 2 insertions, 4 deletions
diff --git a/dist-tools/makerelease.pl b/dist-tools/makerelease.pl
index 1cb686e8..f270f3de 100755
--- a/dist-tools/makerelease.pl
+++ b/dist-tools/makerelease.pl
@@ -8,7 +8,6 @@
my $project = "fetchmail";
my $website = "http://sourceforge.net/projects/$project";
my $mailfrom = "<$project-devel\@lists.sourceforge.net> (Fetchmail Development Team)";
-my $distsufx = '.tar.bz2';
my $xzsufx = '.tar.xz';
# ---------------------------------------------------------------------
@@ -128,7 +127,7 @@ The $version release of $project is now available at the usual locations,
including <$website>.
The source archive is available at:
-<$website/$project-$version$distsufx>
+<$website/$project-$version$xzsufx>
Here are the release notes:
@@ -184,7 +183,6 @@ if ($diffs) {
unlink("$tmp/$project.DIFFS.$$");
print "### Signing tarballs...\n";
-system("cd autobuild && gpg -ba --sign $project-$version$distsufx");
system("cd autobuild && gpg -ba --sign $project-$version$xzsufx");
print "### Extracting release notes...\n";
@@ -196,7 +194,7 @@ print "=== local\n";
system("cp", "autobuild/$project-$version$xzsufx", "autobuild/$project-$version$xzsufx.asc", "$ENV{HOME}/public_html/fetchmail/") and die "Cannot upload to \$HOME/public_html/fetchmail/: $!";
print "=== sourceforge \n";
-system("rsync -acvHP autobuild/$project-$version$xzsufx autobuild/$project-$version$xzsufx.asc autobuild/README m-a\@frs.sourceforge.net:/home/frs/project/fetchmail/branch_6.3/");
+system("rsync -acvHP autobuild/$project-$version$xzsufx autobuild/$project-$version$xzsufx.asc autobuild/README m-a\@frs.sourceforge.net:/home/frs/project/fetchmail/branch_6.4/");
unlink 'autobuild/README' or die "cannot unlink autobuild/README: $!";
print "=== Done - please review final tasks\n";