[Rt-commit] rt branch, 4.2/clearsign-snapshots, created. rt-4.1.6-156-g54ade43
Kevin Falcone
falcone at bestpractical.com
Mon Feb 11 12:46:59 EST 2013
The branch, 4.2/clearsign-snapshots has been created
at 54ade43f2979385098de02a6291111576c4293d0 (commit)
- Log -----------------------------------------------------------------
commit 54ade43f2979385098de02a6291111576c4293d0
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Mon Feb 11 12:43:03 2013 -0500
Switch to ascii armored sig files
Many years ago my gpg was defaulting to unarmored .sig files, but that's
not as friendly as the armored .asc files. We've been meaning to change
for a while but wanted to keep to my de-facto standard in 3.8 and 4.0.
4.2 seems like a good place to switch.
diff --git a/Makefile.in b/Makefile.in
index 9e2da11..52e6e3a 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -525,7 +525,7 @@ build-snapshot:
rm -fr "$(SNAPSHOT)/"
clearsign-snapshot:
- gpg --no-armor --detach-sign "$(SNAPSHOT).tar.gz"
+ gpg --armor --detach-sign "$(SNAPSHOT).tar.gz"
build-third-party:
git archive --prefix "$(SNAPSHOT)/$(THIRD_PARTY)" HEAD:$(THIRD_PARTY) \
@@ -533,7 +533,7 @@ build-third-party:
rm -rf "$(SNAPSHOT)/$(THIRD_PARTY)"
clearsign-third-party:
- gpg --no-armor --detach-sign "$(SNAPSHOT)-third-party-source.tar.gz"
+ gpg --armor --detach-sign "$(SNAPSHOT)-third-party-source.tar.gz"
snapshot-shasums:
sha1sum $(SNAPSHOT)*.tar.gz*
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list