FYI: [PATCH] gnulib: update gnulib submodule.

2011-12-23 Thread Gary V. Vaughan
Pushed as obvious.

I have no idea how I ended up with a gnulib subproject that
looks for all the world like f51babfaf is a public commit, but
which at least 2 other folks cannot see, so updating to the
latest master.

Among others, this fixes the reference to a local commit.
* gnulib: Updated to todays master HEAD revision.

Signed-off-by: Gary V. Vaughan g...@gnu.org
---
 gnulib |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gnulib b/gnulib
index f51babf..576e46c 16
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit f51babfaf400eb509f854cad509f5e649b9182b1
+Subproject commit 576e46cb89ee781ec9f8352723b5dc96d3c7fd1f
-- 
1.7.8

Cheers,
-- 
Gary V. Vaughan (gary AT gnu DOT org)



FYI: [PATCH] gnulib: update gnulib submodule.

2011-12-23 Thread Gary V. Vaughan
Belay that, on my final pre-push `./bootstrap./configuremake all check`
it turns out that upstream README-release changed a colon into a period,
so our local gnulib-tool patch needed updating accordingly.  This is the
version of the patch I'm pushing.

Among others, this fixes the reference to a local commit.
* gnulib: Updated to todays master HEAD revision.
* gl/top/README-release.diff: Update to account for changes to
gnulib/top/README-release since the last gnulib update.

Signed-off-by: Gary V. Vaughan g...@gnu.org
---
 gl/top/README-release.diff |8 
 gnulib |2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/gl/top/README-release.diff b/gl/top/README-release.diff
index 9f89724..4cc43f3 100644
--- a/gl/top/README-release.diff
+++ b/gl/top/README-release.diff
@@ -1,5 +1,5 @@
 gnulib/top/README-release  2011-10-23 14:32:58.0 +0700
-+++ gl/top/README-release  2011-10-23 14:38:40.0 +0700
+--- gnulib/top/README-release  2011-12-24 08:28:59.0 +0700
 gl/top/README-release  2011-12-24 09:01:01.0 +0700
 @@ -1,5 +1,9 @@
  Here are most of the steps we (maintainers) follow when making a release.
  
@@ -10,11 +10,11 @@
  * start from a clean, up-to-date git directory.
  
  make -k maintainer-clean || { ./configure  make maintainer-clean; }
-@@ -18,12 +24,24 @@
+@@ -18,12 +22,24 @@
  
  http://hydra.nixos.org/jobset/gnu/@PACKAGE@-master
  
--* Run ./bootstrap  ./configure.  This downloads any new translations:
+-* Run ./bootstrap  ./configure.  This downloads any new translations.
 +* Double check that serial number updates in public m4 files weren't
 +  forgotten since last release (they should be updated in git along with
 +  commits that require it so that users can work with git snapshots).
diff --git a/gnulib b/gnulib
index f51babf..576e46c 16
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit f51babfaf400eb509f854cad509f5e649b9182b1
+Subproject commit 576e46cb89ee781ec9f8352723b5dc96d3c7fd1f
-- 
1.7.8

Cheers,
-- 
Gary V. Vaughan (gary AT gnu DOT org)



FYI: [PATCH] gnulib: update gnulib submodule.

2011-11-15 Thread Gary V. Vaughan
Applied as obvious, to collect some bug fixes and move one of
our local gnulib patches upstream where it belongs.

Among others, this fixes a bug in _build-aux expansion so that
`make syntax-check' works again.
* gnulib: Updated to todays master HEAD revision.
* gl/top/maint.mk.diff: Remove. This patch has been applied
upstream already.

Signed-off-by: Gary V. Vaughan g...@gnu.org
---
 gl/top/maint.mk.diff |   68 --
 gnulib   |2 +-
 2 files changed, 1 insertions(+), 69 deletions(-)
 delete mode 100644 gl/top/maint.mk.diff

diff --git a/gl/top/maint.mk.diff b/gl/top/maint.mk.diff
deleted file mode 100644
index 3edd298..000
--- a/gl/top/maint.mk.diff
+++ /dev/null
@@ -1,68 +0,0 @@
-diff --git a/top/maint.mk b/top/maint.mk
-index d51fec6..f6ad4f0 100644
 a/top/maint.mk
-+++ b/top/maint.mk
-@@ -21,9 +21,6 @@
- # ME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
- ME := maint.mk
- 
--# Override this in cfg.mk if you use a non-standard build-aux directory.
--build_aux ?= $(srcdir)/build-aux
--
- # Do not save the original name or timestamp in the .tar.gz file.
- # Use --rsyncable if available.
- gzip_rsyncable := \
-@@ -34,7 +31,7 @@ GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
- GIT = git
- VC = $(GIT)
- 
--VC_LIST = $(build_aux)/vc-list-files -C $(srcdir)
-+VC_LIST = $(srcdir)/$(_build-aux)/vc-list-files -C $(srcdir)
- 
- # You can override this variable in cfg.mk to set your own regexp
- # matching files to ignore.
-@@ -274,7 +271,7 @@ define _sc_search_regexp
- endef
- 
- sc_avoid_if_before_free:
--  @$(build_aux)/useless-if-before-free\
-+  @$(srcdir)/$(_build-aux)/useless-if-before-free \
-   $(useless_free_options) \
-   $$($(VC_LIST_EXCEPT) | grep -v useless-if-before-free)\
- { echo '$(ME): found useless if before free above' 12;  \
-@@ -1208,7 +1205,7 @@ else
- endif
- 
- announcement: NEWS ChangeLog $(rel-files)
--  @$(build_aux)/announce-gen  \
-+  @$(srcdir)/$(_build-aux)/announce-gen   \
-   --mail-headers='$(announcement_mail_headers_)'  \
-   --release-type=$(RELEASE_TYPE)  \
-   --package=$(PACKAGE)\
-@@ -1232,7 +1229,7 @@ upload_dest_dir_ ?= $(PACKAGE)
- emit_upload_commands:
-   @echo =
-   @echo =
--  @echo $(build_aux)/gnupload $(GNUPLOADFLAGS) \\
-+  @echo $(srcdir)/$(_build-aux)/gnupload $(GNUPLOADFLAGS) \\
-   @echo --to $(gnu_rel_host):$(upload_dest_dir_) \\
-   @echo   $(rel-files)
-   @echo '# send the ~/announce-$(my_distdir) e-mail'
-@@ -1327,7 +1324,7 @@ web-manual:
-   @test -z $(manual_title) \
-  { echo define manual_title in cfg.mk 12; exit 1; } || :
-   @cd '$(srcdir)/doc'; \
--$(SHELL) ../$(build_aux)/gendocs.sh $(gendocs_options_) \
-+$(SHELL) ../$(_build-aux)/gendocs.sh $(gendocs_options_) \
--o '$(abs_builddir)/doc/manual' \
---email $(PACKAGE_BUGREPORT) $(PACKAGE) \
-   $(PACKAGE_NAME) - $(manual_title)
-@@ -1392,7 +1389,7 @@ update-copyright-env ?=
- update-copyright:
-   grep -l -w Copyright \
- $$(export VC_LIST_EXCEPT_DEFAULT=COPYING  $(VC_LIST_EXCEPT)) \
--| $(update-copyright-env) xargs $(build_aux)/$@
-+| $(update-copyright-env) xargs $(srcdir)/$(_build-aux)/$@
- 
- # This tight_scope test is skipped with a warning if $(_gl_TS_headers) is not
- # overridden and $(_gl_TS_dir)/Makefile.am does not mention noinst_HEADERS.
diff --git a/gnulib b/gnulib
index 356e374..fb6de05 16
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit 356e3744fbe79b23e608b8f4ec1b8204986b8f8e
+Subproject commit fb6de052bace5b26346c1624b57d87326a97c7b6
-- 
1.7.7.3