diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2020-01-20 23:46:44 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2020-01-20 23:48:37 +0100 |
commit | e454f7daa314286d265b1aa6abcc3a39b41f68b7 (patch) | |
tree | 1bd9b4e87dbe5b1e1fadccfda435e6094ba7dc86 /dist-tools | |
parent | a83bb4d0148cf269c06239c30f4edd25ec3fe95e (diff) | |
download | fetchmail-e454f7daa314286d265b1aa6abcc3a39b41f68b7.tar.gz fetchmail-e454f7daa314286d265b1aa6abcc3a39b41f68b7.tar.bz2 fetchmail-e454f7daa314286d265b1aa6abcc3a39b41f68b7.zip |
Commit what has gone into 6.4.2-rc1.
Diffstat (limited to 'dist-tools')
-rwxr-xr-x | dist-tools/makerelease.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dist-tools/makerelease.pl b/dist-tools/makerelease.pl index ac8f42e6..61a48ddb 100755 --- a/dist-tools/makerelease.pl +++ b/dist-tools/makerelease.pl @@ -9,6 +9,7 @@ my $project = "fetchmail"; my $website = "http://sourceforge.net/projects/$project"; my $mailfrom = "<$project-devel\@lists.sourceforge.net> (Fetchmail Development Team)"; my $xzsufx = '.tar.xz'; +my $lzsufx = '.tar.lz'; # --------------------------------------------------------------------- @@ -128,6 +129,7 @@ including <$website>. The source archive is available at: <$website/$project-$version$xzsufx> +<$website/$project-$version$lzsufx> Here are the release notes: @@ -183,7 +185,7 @@ if ($diffs) { unlink("$tmp/$project.DIFFS.$$"); print "### Signing tarballs...\n"; -system("cd autobuild && gpg -ba --sign $project-$version$xzsufx"); +system("cd autobuild && gpg -ba --sign $project-$version$xzsufx && gpg -ba --sign $project-$version$lzsufx"); print "### Extracting release notes...\n"; makerelnotes('NEWS', 'autobuild/README'); @@ -194,7 +196,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.4/"); +system("rsync -acvHP autobuild/$project-$version$xzsufx autobuild/$project-$version$xzsufx.asc autobuild/$project-$version$lzsufx autobuild/$project-$version$lzsufx.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"; |