libtool-commit
[Top][All Lists]
Advanced

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

[SCM] GNU Libtool branch, master, updated. v2.2.10-181-g3f74c1e


From: Eric Blake
Subject: [SCM] GNU Libtool branch, master, updated. v2.2.10-181-g3f74c1e
Date: Tue, 14 Sep 2010 14:02:14 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Libtool".

The branch, master has been updated
       via  3f74c1edc6ba4c4718a9a5e5e5c30bd0c9fd97e3 (commit)
      from  fdba1e5c9130004d943157cd5d6e7e1b3855d8bd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3f74c1edc6ba4c4718a9a5e5e5c30bd0c9fd97e3
Author: Eric Blake <address@hidden>
Date:   Mon Sep 13 15:33:13 2010 -0600

    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.
    
    Signed-off-by: Eric Blake <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 .gitignore     |    1 +
 ChangeLog      |    9 +++++++++
 HACKING        |    2 +-
 Makefile.maint |   18 +++++++++---------
 configure.ac   |    2 +-
 5 files changed, 21 insertions(+), 11 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/HACKING b/HACKING
index e9184f2..d36b7f0 100644
--- a/HACKING
+++ b/HACKING
@@ -602,7 +602,7 @@ or obtained by writing to the Free Software Foundation, 
Inc.,
   (esp. bug-libtool) for outstanding bug reports also in the list of
   pending moderation requests.
 
-* Make sure you have wget, lzma, and autobuild installed.  aclocal should be
+* Make sure you have wget, xz, and autobuild installed.  aclocal should be
   able to find autobuild.m4; or you can install it into the tree with
          aclocal -I libltdl/m4 --install
 
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])
 
 
 ## ------------------------- ##


hooks/post-receive
-- 
GNU Libtool



reply via email to

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