libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] maint: ship .xz, not .lzma


From: Eric Blake
Subject: [PATCH] maint: ship .xz, not .lzma
Date: Tue, 14 Sep 2010 07:58:50 -0600

* configure.ac (AM_INIT_AUTOMAKE): Prefer better file format.
* Makefile.maint (git-release, git-dist, prev-tarball)
(new-tarball, diffs): Use correct extension.
* HACKING: Update instructions.
* .gitignore: Ignore .xz files.

Signed-off-by: Eric Blake <address@hidden>
---

> > I'm fine with, if you also adjust HACKING, .gitignore, Makefile.maint.
> No objections.

This is what I'm pushing.

 .gitignore     |    1 +
 ChangeLog      |    9 +++++++++
 Makefile.maint |   18 +++++++++---------
 configure.ac   |    2 +-
 4 files changed, 20 insertions(+), 10 deletions(-)

diff --git a/.gitignore b/.gitignore
index bc71270..17050be 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,6 +43,7 @@ libtool
 libtool-*.tar.bz2
 libtool-*.tar.gz
 libtool-*.tar.lzma
+libtool-*.tar.xz
 libtoolize
 libtoolize.in
 manual.html
diff --git a/ChangeLog b/ChangeLog
index 39c3e7a..543623f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-14  Eric Blake  <address@hidden>
+
+       maint: ship .xz, not .lzma
+       * configure.ac (AM_INIT_AUTOMAKE): Prefer better file format.
+       * Makefile.maint (git-release, git-dist, prev-tarball)
+       (new-tarball, diffs): Use correct extension.
+       * HACKING: Update instructions.
+       * .gitignore: Ignore .xz files.
+
 2010-09-13  Ralf Wildenhues  <address@hidden>

        doc: avoid long lines in input and output, indexing fixes.
diff --git a/Makefile.maint b/Makefile.maint
index 784b155..e176713 100644
--- a/Makefile.maint
+++ b/Makefile.maint
@@ -1,6 +1,6 @@
 ## Makefile.maint -- Makefile rules for libtool maintainers -*-Makefile-*-
 ##
-##   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+##   Copyright (C) 2004, 2005, 2010 Free Software Foundation, Inc.
 ##   Written by Scott James Remnant, 2004
 ##
 ##   This file is part of GNU Libtool.
@@ -39,11 +39,11 @@ TEXI2HTML = texi2html
 .PHONY: git-release
 git-release: version-check prev-tarball check-news fetch git-dist diffs 
web-manual
        @tarname="$(PACKAGE)-$(VERSION).tar.gz"; \
-       lzmaname="$(PACKAGE)-$(VERSION).tar.lzma"; \
+       xzname="$(PACKAGE)-$(VERSION).tar.xz"; \
        diffname="$(PACKAGE)-$(LASTRELEASE)-$(VERSION).diff.gz"; \
        echo " *** Upload $$tarname, $$tarname.sig,";\
-       echo " *** $$tarname.directive.asc, $$lzmaname,";\
-       echo " *** $$lzmaname.sig, $$lzmaname.directive.asc,";\
+       echo " *** $$tarname.directive.asc, $$xzname,";\
+       echo " *** $$xzname.sig, $$xzname.directive.asc,";\
        echo " *** $$diffname, $$diffname.sig";\
        echo " ***  and $$diffname.directive.asc to either"; \
        echo " *** /incoming/alpha or /incoming/ftp on ftp-upload.gnu.org."
@@ -134,7 +134,7 @@ git-dist: check-news check-commit
        cd $(srcdir) \
          && $(GIT) tag -s "v$(VERSION)"
 ## Generate signatures and directives for FSF ftp-upload:
-       for suffix in gz lzma; do \
+       for suffix in gz xz; do \
          ofile="$(PACKAGE)-$(VERSION).tar.$$suffix"; \
          $(GPG) --detach-sign $$ofile \
          && echo "version: 1.1" > $$ofile.directive \
@@ -151,7 +151,7 @@ prev-tarball:
                then echo "LASTRELEASE is not set"; exit 1; fi
        @ofile="$(PACKAGE)-$(LASTRELEASE).tar.gz"; \
        if test -f $$ofile; then :; \
-       else ofile="$(PACKAGE)-$(LASTRELEASE).tar.lzma"; \
+       else ofile="$(PACKAGE)-$(LASTRELEASE).tar.xz"; \
           if test -f $$ofile; then :; \
           else echo "Cannot make diffs without $$ofile"; exit 1; fi; fi

@@ -160,7 +160,7 @@ new-tarball:
 ## Make sure we have the new release tarball in the tree.
        @ofile="$(PACKAGE)-$(VERSION).tar.gz"; \
        if test -f $$ofile; then :; \
-       else ofile="$(PACKAGE)-$(VERSION).tar.lzma"; \
+       else ofile="$(PACKAGE)-$(VERSION).tar.xz"; \
           if test -f $$ofile; then :; \
           else echo "Cannot make diffs without $$ofile"; exit 1; fi; fi

@@ -179,8 +179,8 @@ diffs: prev-tarball new-tarball
        ntar="../$(PACKAGE)-$(VERSION).tar"; \
        test -f "$$otar.gz" && otar="$$otar.gz" && ounpack="gzip"; \
        test -f "$$ntar.gz" && ntar="$$ntar.gz" && nunpack="gzip"; \
-       test -f "$$otar.lzma" && otar="$$otar.lzma" && ounpack="lzma"; \
-       test -f "$$ntar.lzma" && ntar="$$ntar.lzma" && nunpack="zlma"; \
+       test -f "$$otar.xz" && otar="$$otar.xz" && ounpack="xz"; \
+       test -f "$$ntar.xz" && ntar="$$ntar.xz" && nunpack="xz"; \
        $$ounpack -c -d "$$otar" | tar xf - \
        && $$nunpack -c -d "$$ntar" | tar xf - \
        && $(DIFF) $(DIFF_OPTIONS) \
diff --git a/configure.ac b/configure.ac
index d36adde..0fcf109 100644
--- a/configure.ac
+++ b/configure.ac
@@ -127,7 +127,7 @@ AC_SUBST([package_revision])
 dnl These are bootstrap requirements! Once built, libtool may work with
 dnl much older releases of autoconf and automake.  See release notes.
 dnl 1.11 is needed for color-tests, 1.11.1 fixes a security issue.
-AM_INIT_AUTOMAKE([1.11.1 gnu subdir-objects dist-lzma color-tests 
parallel-tests])
+AM_INIT_AUTOMAKE([1.11.1 gnu subdir-objects dist-xz color-tests 
parallel-tests])


 ## ------------------------- ##
-- 
1.7.2.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]