From: Gary V. Vaughan Date: Fri, 4 Jun 2010 20:56:43 +0000 (+0700) Subject: Update generated upload directive file format to v1.1. X-Git-Tag: v2.2.10~18 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=695c5ee50d2ee6c8943f14c2bd252a6f269abf11;p=thirdparty%2Flibtool.git Update generated upload directive file format to v1.1. * Makefile.maint (git-dist, diffs): Update to generate v1.1 format directive files for ftp://ftp-upload.gnu.org/incoming/ftp. --- diff --git a/ChangeLog b/ChangeLog index ad9eb4012..7a0472c9d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-05 Gary V. Vaughan + Update generated upload directive file format to v1.1. + * Makefile.maint (git-dist, diffs): Update to generate v1.1 format + directive files for ftp://ftp-upload.gnu.org/incoming/ftp. + Fix web manual generation details in release instructions. * HACKING (Release Procedure): Move the instruction for generating web manuals for a new release to before the instruction that bumps diff --git a/Makefile.maint b/Makefile.maint index 70b740517..70d881049 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -177,7 +177,9 @@ git-dist: check-news check-commit for suffix in gz lzma; do \ ofile="$(PACKAGE)-$(VERSION).tar.$$suffix"; \ $(GPG) --detach-sign $$ofile \ - && echo "directory: libtool" > $$ofile.directive \ + && echo "version: 1.1" > $$ofile.directive \ + && echo "directory: libtool" >> $$ofile.directive \ + && echo "filename: $$ofile" >> $$ofile.directive \ && $(GPG) --clearsign $$ofile.directive \ && rm -f $$ofile.directive; \ done @@ -225,7 +227,9 @@ diffs: prev-tarball new-tarball $(PACKAGE)-$(LASTRELEASE) $(PACKAGE)-$(VERSION) \ | GZIP=$(GZIP_ENV) gzip -c > $$ofile \ && $(GPG) --detach-sign $$ofile \ - && echo "directory: libtool" > $$ofile.directive \ + && echo "version: 1.1" > $$ofile.directive \ + && echo "directory: libtool" >> $$ofile.directive \ + && echo "filename: $$ofile" |sed 's,: \.\./,: ,' >> $$ofile.directive \ && $(GPG) --clearsign $$ofile.directive \ && rm -f $$ofile.directive