diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2019-05-14 21:24:27 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2019-05-14 21:25:27 +0200 |
commit | 5e3e0e4d498631716669abe7e7685bdc481abca4 (patch) | |
tree | 2f7652d67d84d68c74efe9656681035a5fdd6c52 /dist-tools | |
parent | e166622afaaf78158a0a852ac445b8abd4b3f020 (diff) | |
download | fetchmail-5e3e0e4d498631716669abe7e7685bdc481abca4.tar.gz fetchmail-5e3e0e4d498631716669abe7e7685bdc481abca4.tar.bz2 fetchmail-5e3e0e4d498631716669abe7e7685bdc481abca4.zip |
Misc. updates to makerelease.pl.
Forgo .tar.bz2 files.
Diffstat (limited to 'dist-tools')
-rwxr-xr-x | dist-tools/makerelease.pl | 6 |
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"; |