[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] 01/02: doc: tweak announce-gen invocation HACKING.
From: |
Karl Berry |
Subject: |
[automake-commit] 01/02: doc: tweak announce-gen invocation HACKING. |
Date: |
Mon, 08 Jul 2024 13:18:34 -0400 |
karl pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=9314b5cf665c74f5faec7949563123e55dd8c4d2
commit 9314b5cf665c74f5faec7949563123e55dd8c4d2
Author: Karl Berry <karl@freefriends.org>
AuthorDate: Wed Jul 3 08:33:59 2024 -0700
doc: tweak announce-gen invocation HACKING.
* HACKING: generalize gnulib/build-aux/announce-gen invocation.
---
HACKING | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
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".