summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-09-06 22:40:42 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-09-07 02:43:31 -0700
commit5a82c74822d3272df2f5929133680478c0cfb4bd (patch)
tree85871266212f0119b41ec966fec52e164edf41ba /scripts
parent1b7f04070bd94f259e2ed24d6fb76309d64fb164 (diff)
downloadglibc-5a82c74822d3272df2f5929133680478c0cfb4bd.tar.gz
glibc-5a82c74822d3272df2f5929133680478c0cfb4bd.tar.xz
glibc-5a82c74822d3272df2f5929133680478c0cfb4bd.zip
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:

sed -ri '
  s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
  s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
  $(find $(git ls-files) -prune -type f \
      ! -name '*.po' \
      ! -name 'ChangeLog*' \
      ! -path COPYING ! -path COPYING.LIB \
      ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
      ! -path manual/texinfo.tex ! -path scripts/config.guess \
      ! -path scripts/config.sub ! -path scripts/install-sh \
      ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
      ! -path INSTALL ! -path  locale/programs/charmap-kw.h \
      ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
      ! '(' -name configure \
            -execdir test -f configure.ac -o -f configure.in ';' ')' \
      ! '(' -name preconfigure \
            -execdir test -f preconfigure.ac ';' ')' \
      -print)

and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:

  chmod a+x sysdeps/unix/sysv/linux/riscv/configure
  # Omit irrelevant whitespace and comment-only changes,
  # perhaps from a slightly-different Autoconf version.
  git checkout -f \
    sysdeps/csky/configure \
    sysdeps/hppa/configure \
    sysdeps/riscv/configure \
    sysdeps/unix/sysv/linux/csky/configure
  # Omit changes that caused a pre-commit check to fail like this:
  # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
  git checkout -f \
    sysdeps/powerpc/powerpc64/ppc-mcount.S \
    sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
  # Omit change that caused a pre-commit check to fail like this:
  # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
  git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
Diffstat (limited to 'scripts')
-rw-r--r--scripts/backport-support.sh2
-rwxr-xr-xscripts/build-many-glibcs.py2
-rwxr-xr-xscripts/check-c++-types.sh2
-rw-r--r--scripts/check-initfini.awk2
-rw-r--r--scripts/check-installed-headers.sh2
-rwxr-xr-xscripts/check-local-headers.sh2
-rwxr-xr-xscripts/check-obsolete-constructs.py2
-rw-r--r--scripts/check-wrapper-headers.py2
-rwxr-xr-xscripts/cross-test-ssh.sh2
-rwxr-xr-xscripts/evaluate-test.sh2
-rw-r--r--scripts/gen-as-const.py2
-rw-r--r--scripts/gen-rrtypes.py2
-rw-r--r--scripts/glibcextract.py2
-rwxr-xr-xscripts/list-fixed-bugs.py2
-rwxr-xr-xscripts/merge-test-results.sh2
-rwxr-xr-xscripts/rellns-sh2
-rwxr-xr-xscripts/test-installation.pl2
-rw-r--r--scripts/test_printers_common.py2
-rw-r--r--scripts/test_printers_exceptions.py2
-rw-r--r--scripts/update-abilist.sh2
-rwxr-xr-xscripts/update-copyrights2
21 files changed, 21 insertions, 21 deletions
diff --git a/scripts/backport-support.sh b/scripts/backport-support.sh
index f0f14f4b58..57af3d98db 100644
--- a/scripts/backport-support.sh
+++ b/scripts/backport-support.sh
@@ -15,7 +15,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # This script does not backport the Makefile tweaks outside the
 # support/ directory (which need to be backported separately), or the
diff --git a/scripts/build-many-glibcs.py b/scripts/build-many-glibcs.py
index aa6884e046..cc14c7da54 100755
--- a/scripts/build-many-glibcs.py
+++ b/scripts/build-many-glibcs.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 """Build many configurations of glibc.
 
diff --git a/scripts/check-c++-types.sh b/scripts/check-c++-types.sh
index a8f3cfff7b..782017c848 100755
--- a/scripts/check-c++-types.sh
+++ b/scripts/check-c++-types.sh
@@ -14,7 +14,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # This script creates a list of data types where each type is followed
 # by the C++ mangled name for that type.  That list is then compared
diff --git a/scripts/check-initfini.awk b/scripts/check-initfini.awk
index f0b1794133..1a0457eb56 100644
--- a/scripts/check-initfini.awk
+++ b/scripts/check-initfini.awk
@@ -13,7 +13,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # This awk script expects to get command-line files that are each
 # the output of 'readelf -W --dyn-syms' on a single shared object.
diff --git a/scripts/check-installed-headers.sh b/scripts/check-installed-headers.sh
index ef6ed94a2e..a204ee2e70 100644
--- a/scripts/check-installed-headers.sh
+++ b/scripts/check-installed-headers.sh
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # For each installed header, confirm that it's possible to compile a
 # file that includes that header and does nothing else, in several
diff --git a/scripts/check-local-headers.sh b/scripts/check-local-headers.sh
index 5f022f38dd..960bf60df9 100755
--- a/scripts/check-local-headers.sh
+++ b/scripts/check-local-headers.sh
@@ -14,7 +14,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 #
 includedir="$1"
 objpfx="$2"
diff --git a/scripts/check-obsolete-constructs.py b/scripts/check-obsolete-constructs.py
index 89d21dea6e..c1a522ee4d 100755
--- a/scripts/check-obsolete-constructs.py
+++ b/scripts/check-obsolete-constructs.py
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 """Verifies that installed headers do not use any obsolete constructs:
  * legacy BSD typedefs superseded by <stdint.h>:
diff --git a/scripts/check-wrapper-headers.py b/scripts/check-wrapper-headers.py
index bae99c14c7..84e0891e67 100644
--- a/scripts/check-wrapper-headers.py
+++ b/scripts/check-wrapper-headers.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # Non-sysdeps subdirectories are not on the C include path, so
 # installed headers need to have a sysdep wrapper header.
diff --git a/scripts/cross-test-ssh.sh b/scripts/cross-test-ssh.sh
index b855e52782..6654495de9 100755
--- a/scripts/cross-test-ssh.sh
+++ b/scripts/cross-test-ssh.sh
@@ -15,7 +15,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # usage: cross-test-ssh.sh [--ssh SSH] HOST COMMAND ...
 # Run with --help flag to get more detailed help.
diff --git a/scripts/evaluate-test.sh b/scripts/evaluate-test.sh
index 7bb8642129..5ca0c8822e 100755
--- a/scripts/evaluate-test.sh
+++ b/scripts/evaluate-test.sh
@@ -15,7 +15,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # usage: evaluate-test.sh test_name rc xfail stop_on_failure
 
diff --git a/scripts/gen-as-const.py b/scripts/gen-as-const.py
index 9d72381954..8a34ffdcb8 100644
--- a/scripts/gen-as-const.py
+++ b/scripts/gen-as-const.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # The input to this script looks like:
 #       #cpp-directive ...
diff --git a/scripts/gen-rrtypes.py b/scripts/gen-rrtypes.py
index 897018b7b3..4c78175a3c 100644
--- a/scripts/gen-rrtypes.py
+++ b/scripts/gen-rrtypes.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 """Generate DNS RR type constants for resolv header files.
 
diff --git a/scripts/glibcextract.py b/scripts/glibcextract.py
index 0ae1371a48..42051ed2da 100644
--- a/scripts/glibcextract.py
+++ b/scripts/glibcextract.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 import os.path
 import re
diff --git a/scripts/list-fixed-bugs.py b/scripts/list-fixed-bugs.py
index c3513ebe14..a47b55b793 100755
--- a/scripts/list-fixed-bugs.py
+++ b/scripts/list-fixed-bugs.py
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 """List fixed bugs for the NEWS file.
 
diff --git a/scripts/merge-test-results.sh b/scripts/merge-test-results.sh
index 919bbae253..dd5d5f0199 100755
--- a/scripts/merge-test-results.sh
+++ b/scripts/merge-test-results.sh
@@ -15,7 +15,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # usage: merge-test-results.sh -s objpfx subdir test-name...
 # (subdirectory tests; empty subdir at top level), or
diff --git a/scripts/rellns-sh b/scripts/rellns-sh
index a61f595ede..ac5ee980c6 100755
--- a/scripts/rellns-sh
+++ b/scripts/rellns-sh
@@ -14,7 +14,7 @@
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, see <http://www.gnu.org/licenses/>.
+# along with this program; if not, see <https://www.gnu.org/licenses/>.
 
 # With -p, instead of creating the link print the computed relative link
 # name.
diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
index a1fe9add32..eda150461f 100755
--- a/scripts/test-installation.pl
+++ b/scripts/test-installation.pl
@@ -15,7 +15,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 
 $PACKAGE = "libc";
diff --git a/scripts/test_printers_common.py b/scripts/test_printers_common.py
index b2bd4ba1cc..bea973c129 100644
--- a/scripts/test_printers_common.py
+++ b/scripts/test_printers_common.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 """These tests require PExpect 4.0 or newer.
 
diff --git a/scripts/test_printers_exceptions.py b/scripts/test_printers_exceptions.py
index d056301a68..4c774dd511 100644
--- a/scripts/test_printers_exceptions.py
+++ b/scripts/test_printers_exceptions.py
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 class NoLineError(Exception):
     """Custom exception to indicate that a test file doesn't contain
diff --git a/scripts/update-abilist.sh b/scripts/update-abilist.sh
index 0077160dcf..56482bf9d1 100644
--- a/scripts/update-abilist.sh
+++ b/scripts/update-abilist.sh
@@ -15,7 +15,7 @@
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 set -e
 export LC_ALL=C
diff --git a/scripts/update-copyrights b/scripts/update-copyrights
index f6db61c0f0..39991a5bf2 100755
--- a/scripts/update-copyrights
+++ b/scripts/update-copyrights
@@ -15,7 +15,7 @@
 
 # You should have received a copy of the GNU Lesser General Public
 # License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
 
 # Run this script with the first argument being the location of
 # gnulib's update-copyright script.  Any other arguments are ignored.