]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
gnulib: update local gnulib patches.
authorGary V. Vaughan <gary@gnu.org>
Sun, 16 Sep 2012 04:40:16 +0000 (11:40 +0700)
committerGary V. Vaughan <gary@gnu.org>
Sun, 16 Sep 2012 07:34:14 +0000 (14:34 +0700)
* gl/build-aux/announce-gen.diff: Remove hunks adopted upstream.
* gl/build-aux/do-release-commit-and-tag.diff: Refresh this patch
to match current gnulib.

Signed-off-by: Gary V. Vaughan <gary@gnu.org>
gl/build-aux/announce-gen.diff
gl/build-aux/do-release-commit-and-tag.diff

index 937918a38b183eee1870b22d368f0da2eaa2fba9..d39e8e29ffe2f4794eaf28997f115242243b9b08 100644 (file)
@@ -1,14 +1,5 @@
 --- gnulib/build-aux/announce-gen      2011-10-19 01:26:27.000000000 +0700
 +++ gl/build-aux/announce-gen  2011-10-19 16:54:12.000000000 +0700
-@@ -102,7 +102,7 @@
-   my %res;
-   foreach my $f (@file)
-     {
--      my $cmd = "du --human $f";
-+      my $cmd = "du -h $f";
-       my $t = `$cmd`;
-       # FIXME-someday: give a better diagnostic, a la $PROCESS_STATUS
-       $@
 @@ -449,7 +449,14 @@
  
  <\#secure method=pgpmime mode=sign>
index 9dfa795c9960c99f7043f605233dbddb9b8a7cae..0496beda0b525c08cdf524ca39fd1544fce88f20 100644 (file)
@@ -1,22 +1,22 @@
---- gnulib/build-aux/do-release-commit-and-tag 2011-10-19 22:37:21.000000000 +0700
-+++ gl/build-aux/do-release-commit-and-tag     2011-10-21 15:09:12.000000000 +0700
-@@ -74,6 +74,10 @@
-   esac
- }
+--- gnulib/build-aux/do-release-commit-and-tag 2012-09-16 10:56:58.000000000 +0700
++++ gl/build-aux/do-release-commit-and-tag     2012-09-16 11:01:14.000000000 +0700
+@@ -86,6 +86,10 @@
+ branch=$(git branch | sed -ne '/^\* /{s///;p;q;}')
+ builddir=.
  
 +for gsort in $SORT gsort sort; do
 +  echo 1|$gsort -V >/dev/null 2>/dev/null && break
 +done
 +
- branch=master
- case $1 in
-   --branch) shift; branch=$1; shift ;;
-@@ -95,7 +99,7 @@
+ while test $# != 0
+ do
+   # Handle --option=value by splitting apart and putting back on argv.
+@@ -125,7 +129,7 @@
    || die 'failed to determine previous version number from .prev-version'
  
  # Verify that $ver is sensible (> .prev-version).
 -case $(printf "$prev_ver\n$ver\n"|sort -V -u|tr '\n' ':') in
 +case $(printf "$prev_ver\n$ver\n"|$gsort -V -u|tr '\n' ':') in
    "$prev_ver:$ver:") ;;
-   *) die "invalid version: $ver";;
+   *) die "invalid version: $ver (<= $prev_ver)";;
  esac