Mercurial > hg > octave-kai > gnulib-hg
comparison MODULES.html.sh @ 17389:1d9362a18c34
Assume gnulib is checked out from Git, not CVS
In fact, access to the gnulib repository through CVS has been disabled,
or more precisely, got broken and was never restored; see:
<http://lists.gnu.org/archive/html/bug-gnulib/2013-05/msg00008.html>
Note that support for CVS is not removed completely and unthinkingly
by this change: only support for CVS checkouts of gnulib itself is
removed. For example, the 'bootstrap' script still cater to .cvsingore
files and CVS directories, for the benefit of those poor gnulib clients
still stuck with CVS. Ditto for the 'gnulib-tool' script itself.
* gnulib-tool: Simplify accordingly.
* posix-modules: Likewise.
* MODULES.html.sh: Likewise.
* doc/gnulib.texi: No longer mention the decommissioned CVS gnulib
repository.
* doc/gnulib-intro.texi: Likewise.
* doc/gnulib-readme.texi: Likewise.
* doc/gnulib-tool.texi: In the examples and explanations, refer to a
sample '.gitignore' file rather than a sample '.cvsignore'.
* NEWS: Update.
* m4/extensions.m4: While at it, remove a comment mistakenly referring
to "CVS Autoconf" rather than "git Autoconf".
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Acked-by: Paul Eggert <eggert@cs.ucla.edu>
author | Stefano Lattarini <stefano.lattarini@gmail.com> |
---|---|
date | Sat, 04 May 2013 10:30:14 +0200 |
parents | 8108e0239bb6 |
children |
comparison
equal
deleted
inserted
replaced
17388:3c592b4deb04 | 17389:1d9362a18c34 |
---|---|
3613 done | 3613 done |
3614 func_end_table | 3614 func_end_table |
3615 | 3615 |
3616 fi | 3616 fi |
3617 | 3617 |
3618 { find lib -type f -print; find m4 -type f -print; } | LC_ALL=C sort | sed -e '/\/\./d' -e /CVS/d -e /README/d -e /ChangeLog/d -e /Makefile/d -e /TODO/d -e '/tags$/d' -e '/TAGS$/d' -e '/~$/d' > "$tmp/all-files" | 3618 { find lib -type f -print; find m4 -type f -print; } | LC_ALL=C sort | sed -e '/\/\./d' -e /README/d -e /ChangeLog/d -e /Makefile/d -e /TODO/d -e '/tags$/d' -e '/TAGS$/d' -e '/~$/d' > "$tmp/all-files" |
3619 missed_files=`for file in $seen_files; do echo $file; done \ | 3619 missed_files=`for file in $seen_files; do echo $file; done \ |
3620 | LC_ALL=C sort -u \ | 3620 | LC_ALL=C sort -u \ |
3621 | LC_ALL=C join -v 2 - "$tmp/all-files"` | 3621 | LC_ALL=C join -v 2 - "$tmp/all-files"` |
3622 | 3622 |
3623 if test -n "$missed_files"; then | 3623 if test -n "$missed_files"; then |