From: Karl Berry Date: Wed, 3 Jul 2024 15:33:59 +0000 (-0700) Subject: doc: tweak announce-gen invocation HACKING. X-Git-Tag: v1.17~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9314b5cf665c74f5faec7949563123e55dd8c4d2;p=thirdparty%2Fautomake.git doc: tweak announce-gen invocation HACKING. * HACKING: generalize gnulib/build-aux/announce-gen invocation. --- diff --git a/HACKING b/HACKING index 737af6d13..085ebcee5 100644 --- a/HACKING +++ b/HACKING @@ -544,13 +544,16 @@ * Create the automated part of the announcement with the announce-gen script that is part of gnulib: + pkg=automake prever=1.16.92 newver=1.16.94 - gpgkey=0x7FD9FCCB000BEEEE # gpg --fingerprint - $gnulib/build-aux/announce-gen --release-type=alpha \ - --package-name=automake --previous-version=$prever \ + reltype=alpha # or beta or stable + host=`if test $reltype = stable; then echo ftp; else echo alpha; fi` + gpgkey=0x... # gpg --fingerprint + $gnulib/build-aux/announce-gen --release-type=$reltype \ + --package-name=$pkg --previous-version=$prever \ --current-version=$newver --gpg-key-id=$gpgkey \ - --url-directory=https://alpha.gnu.org/gnu/automake + --url-directory=https://$host.gnu.org/gnu/$pkg and merge this with the just-written announcement file. * Run "make git-tag-release".