summaryrefslogtreecommitdiff
path: root/maintMakefile
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2016-10-23 16:34:55 -0400
committerPaul Smith <psmith@gnu.org>2016-12-25 18:18:03 -0500
commit8d0aff7e814e02d131050ff1c89e7b3dd332f81e (patch)
tree7d49b5fae011fd42f5cbb4b31b0db057bb2e91b2 /maintMakefile
parentbc9d72beb0cb00e73afff1fa386a0ea9e2e32280 (diff)
downloadmake-git-8d0aff7e814e02d131050ff1c89e7b3dd332f81e.tar.gz
* maintMakefile: Update default GPG ID for new key.
Diffstat (limited to 'maintMakefile')
-rw-r--r--maintMakefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/maintMakefile b/maintMakefile
index c5978046..a275b88c 100644
--- a/maintMakefile
+++ b/maintMakefile
@@ -5,7 +5,7 @@
BUGLIST := bug-make@gnu.org
# These are related to my personal setup.
-GPG_FINGERPRINT := 6338B6D4
+GPG_KEYID := 80CB727A20C79BB2
# SRCROOTDIR is just a handy location to keep source files in
SRCROOTDIR ?= $(HOME)/src
@@ -390,7 +390,7 @@ tag-release:
(*.*.9*) message=" candidate" ;; \
(*) message= ;; \
esac; \
- $(GIT) tag -m "GNU Make release$$message $(VERSION)" -u '$(GPG_FINGERPRINT)' '$(VERSION)'
+ $(GIT) tag -m "GNU Make release$$message $(VERSION)" -u '$(GPG_KEYID)' '$(VERSION)'
## ------------------------- ##
@@ -402,7 +402,7 @@ tag-release:
# you're SOL! :)
GPG = gpg
-GPGFLAGS = -u $(GPG_FINGERPRINT)
+GPGFLAGS = -u $(GPG_KEYID)
DIST_ARCHIVES_SIG = $(addsuffix .sig,$(DIST_ARCHIVES))
DIST_ARCHIVES_DIRECTIVE = $(addsuffix .directive.asc,$(DIST_ARCHIVES))
@@ -416,9 +416,9 @@ distsign: $(DIST_ARCHIVES_SIG) $(DIST_ARCHIVES_DIRECTIVE)
$(GPG) $(GPGFLAGS) -o "$@" -b "$<"
%.directive.asc: %
- @echo "Creating directive file '$@':"
+ @echo "Creating signed directive file '$@':"
@( \
- echo 'version: 1.1'; \
+ echo 'version: 1.2'; \
echo 'directory: make'; \
echo 'filename: $*'; \
echo 'comment: Official upload of GNU make version $(VERSION)'; \