]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: shorten https://lists.gnu.org/archive/html/... links
authorJim Meyering <meyering@fb.com>
Mon, 6 Nov 2017 14:26:41 +0000 (06:26 -0800)
committerJim Meyering <meyering@fb.com>
Wed, 8 Nov 2017 04:16:13 +0000 (20:16 -0800)
Each /archive/html/ part can be replace with /r/.
Run this to induce the change:
git grep -l archive/html|xargs perl -pi -e 's,/archive/html/,/r/,g'
* TODO: Perform that substitution.
* bootstrap: Likewise.
* src/sort.c (sequential_sort): Likewise.
* src/tail.c (tail_file): Likewise.
* tests/misc/sort-merge-fdlimit.sh: Likewise.
* tests/misc/stty-row-col.sh: Likewise.
* tests/misc/unexpand.pl: Likewise.
* tests/rm/readdir-bug.sh: Likewise.
* tests/tail-2/inotify-rotate.sh: Likewise.

TODO
bootstrap
src/sort.c
src/tail.c
tests/misc/sort-merge-fdlimit.sh
tests/misc/stty-row-col.sh
tests/misc/unexpand.pl
tests/rm/readdir-bug.sh
tests/tail-2/inotify-rotate.sh

diff --git a/TODO b/TODO
index 9fcb3e84e35490e6baaec891eeb8ef702d9854e2..7199205c1c79be62779be4933762a46bae53f873 100644 (file)
--- a/TODO
+++ b/TODO
@@ -8,7 +8,7 @@ before embarking on a big project.
 Modify chmod so that it does not change an inode's st_ctime
   when the selected operation would have no other effect.
   First suggested by Hans Ecke <https://hans.ecke.ws> in
-    https://lists.gnu.org/archive/html/bug-coreutils/2004-09/msg00145.html
+    https://lists.gnu.org/r/bug-coreutils/2004-09/msg00145.html
   Discussed more recently on <https://bugs.debian.org/497514>.
 
 document the following in coreutils.texi:
@@ -52,7 +52,7 @@ Write an autoconf test to work around build failure in HPUX's 64-bit mode.
 See notes in README -- and remove them once there's a work-around.
 
 Integrate use of sendfile, suggested here:
-  https://lists.gnu.org/archive/html/bug-fileutils/2003-03/msg00030.html
+  https://lists.gnu.org/r/bug-fileutils/2003-03/msg00030.html
 I don't plan to do that, since a few tests demonstrate no significant benefit.
 
 printf: consider adapting builtins/printf.def from bash
@@ -86,7 +86,7 @@ sort: Investigate better sorting algorithms; see Knuth vol. 3.
   Mathematical Monthly 66 (1959), 387-389.
 
 shred: Update shred as described here to conform to DoD 5220 rules:
-https://lists.gnu.org/archive/html/bug-coreutils/2007-05/msg00075.html
+https://lists.gnu.org/r/bug-coreutils/2007-05/msg00075.html
 
 Remove suspicious uses of alloca (ones that may allocate more than
    about 4k)
index 85b85c530f97cc80ed62265a514c8470e9b5537e..03057c37887c92e34da0b474c3b4fd665b6afcf8 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -792,7 +792,7 @@ symlink_to_dir()
       # aren't confused into doing unnecessary builds.  Conversely, if the
       # existing symlink's timestamp is older than the source, make it afresh,
       # so that broken tools aren't confused into skipping needed builds.  See
-      # <https://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00326.html>.
+      # <https://lists.gnu.org/r/bug-gnulib/2011-05/msg00326.html>.
       test -h "$dst" &&
       src_ls=$(ls -diL "$src" 2>/dev/null) && set $src_ls && src_i=$1 &&
       dst_ls=$(ls -diL "$dst" 2>/dev/null) && set $dst_ls && dst_i=$1 &&
index 8f16ec41dff601e6d51105189cc0faefe616938c..4b6b61fcdfbac8b73d1eca90b11dafbe5cc9caea 100644 (file)
@@ -3193,7 +3193,7 @@ sequential_sort (struct line *restrict lines, size_t nlines,
   if (nlines == 2)
     {
       /* Declare 'swap' as int, not bool, to work around a bug
-        <https://lists.gnu.org/archive/html/bug-coreutils/2005-10/msg00086.html>
+        <https://lists.gnu.org/r/bug-coreutils/2005-10/msg00086.html>
          in the IBM xlc 6.0.0.0 compiler in 64-bit mode.  */
       int swap = (0 < compare (&lines[-1], &lines[-2]));
       if (to_temp)
index 1c7418d343e7f1bde1900f63d6d5d7c7229fe28e..a195443d8620e18bd35e15649850e7b295dd20d0 100644 (file)
@@ -2027,7 +2027,7 @@ tail_file (struct File_spec *f, uintmax_t n_units)
             {
               /* Note: we must use read_pos here, not stats.st_size,
                  to avoid a race condition described by Ken Raeburn:
-       https://lists.gnu.org/archive/html/bug-textutils/2003-05/msg00007.html */
+       https://lists.gnu.org/r/bug-textutils/2003-05/msg00007.html */
               record_open_fd (f, fd, read_pos, &stats, (is_stdin ? -1 : 1));
               f->remote = fremote (fd, pretty_name (f));
             }
index d9d45cd3d1585ad151960a78aca2a202efcba4b8..e30b66cd6d383dafd467ed54a5a9c8bdb48b34b5 100755 (executable)
@@ -57,7 +57,7 @@ done
 # ordinary redirection on the 'sort' command.  This is intended to
 # work around bugs in OpenBSD /bin/sh, and some other sh variants,
 # that squirrel away file descriptors before closing them; see
-# <https://lists.gnu.org/archive/html/bug-tar/2010-10/msg00075.html>.
+# <https://lists.gnu.org/r/bug-tar/2010-10/msg00075.html>.
 # This test finds the bug only with shells that do not close FDs on
 # exec, and will miss the bug (if present) on other shells, but it's
 # not easy to fix this without running afoul of the OpenBSD-like sh bugs.
index f0b0de11ced016031cde3e79c37ff24e92cdd981..877d0d81c7f20ee960befb04351b03f0a2e630f4 100755 (executable)
@@ -23,7 +23,7 @@ export COLUMNS
 
 # Make sure we get English-language behavior.
 # See the report about a possibly-related Solaris problem by Alexandre Peshansky
-# <https://lists.gnu.org/archive/html/bug-coreutils/2004-10/msg00035.html>.
+# <https://lists.gnu.org/r/bug-coreutils/2004-10/msg00035.html>.
 # Currently stty isn't localized, but it might be in the future.
 LC_ALL=C
 export LC_ALL
index c5ddaa24ba8613cca87962157007e974869230e7..cc70cdfdcf2becec10a251a4c4b2283bed6e7ea3 100755 (executable)
@@ -121,8 +121,8 @@ my @Tests =
      # and to be consistent in output with older versions, we output
      # a '\t' rather than a space for the second tab position.
      # For more detailed comparison with other implementations see:
-     # https://lists.gnu.org/archive/html/coreutils/2016-06/msg00015.html
-     # https://lists.gnu.org/archive/html/coreutils/2016-07/msg00011.html
+     # https://lists.gnu.org/r/coreutils/2016-06/msg00015.html
+     # https://lists.gnu.org/r/coreutils/2016-07/msg00011.html
      ['ts1', '-t8,9', {IN=>"x\t \t y\n"},    {OUT=>"x\t\t\t y\n"}],
      # There is no ambiguity here. This should always be the output.
      ['ts2', '-t5,8', {IN=>"x\t \t y\n"},    {OUT=>"x\t\t y\n"}],
index b782e603f9d20b25d0579e350457c828bd9c8488..28f547e85b45d1b5fb65b7e023984790ac400a45 100755 (executable)
@@ -23,7 +23,7 @@ print_ver_ rm
 # Create a directory containing many files.
 # What counts is a combination of the number of files and
 # the lengths of their names.  For details, see
-# https://lists.gnu.org/archive/html/bug-coreutils/2006-09/msg00326.html
+# https://lists.gnu.org/r/bug-coreutils/2006-09/msg00326.html
 mkdir b || framework_failure_
 cd b || framework_failure_
 for i in $(seq 1 250); do
index 4b4cff271fafdd0087a739f42c852df5716546ed..d25bf9104952e555bb3d47e24e7aab4089b20359 100755 (executable)
@@ -48,7 +48,7 @@ fastpoll='-s.1 --max-unchanged-stats=1'
 
 # Perform at least this many iterations, because on multi-core systems
 # the offending sequence of events can be surprisingly uncommon.
-# See: https://lists.gnu.org/archive/html/bug-coreutils/2009-11/msg00213.html
+# See: https://lists.gnu.org/r/bug-coreutils/2009-11/msg00213.html
 for i in $(seq 50); do
     echo $i
     rm -f k x out