Project Info Name.......: gnu-hello
Description: GNU Hello


gnu-hello       
Info
Commit...:30f96d707bc0c3db3a31e460a65326258a95c5c8
Author...:Sami Kerola
Committer:Sami Kerola
Date.....:Wed Sep 27 21:33:29 2017 +0100
Parents..:4339e6dd3c49742640c9a833bd978ab2000d5e9d

Message
maint: prefer https URLs

* all: Use HTTP over Transport Layer Security.

Changes
diff --git a/Makefile.am b/Makefile.am
line changes: +1/-1
index 579d01a..fa36d0d
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,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/>.
 
 # Find gnulib headers.
 ACLOCAL_AMFLAGS = -I m4

diff --git a/README b/README
line changes: +6/-6
index 9b65b26..5fe0e2d
--- a/README
+++ b/README
@@ -11,12 +11,12 @@ package, showing practices that may be useful for GNU projects.
 See the files ./INSTALL* for building and installation instructions.
 
 Primary distribution point: ftp://ftp.gnu.org/gnu/hello/
- automatic redirection: http://ftpmirror.gnu.org/hello
- list of mirrors for manual selection: http://www.gnu.org/prep/ftp.html
+ automatic redirection: https://ftpmirror.gnu.org/hello
+ list of mirrors for manual selection: https://www.gnu.org/prep/ftp.html
 
-Home page: http://www.gnu.org/software/hello/
+Home page: https://www.gnu.org/software/hello/
 
-Developer page: http://savannah.gnu.org/projects/hello/
+Developer page: https://savannah.gnu.org/projects/hello/
 - please file bug reports, patches and feature requests here if
   possible (otherwise, feel free to use the mailing list)
 - significant contributions require a copyright assignment to the Free
@@ -25,9 +25,9 @@ Developer page: http://savannah.gnu.org/projects/hello/
 
 Mailing list: bug-hello@gnu.org
 - please use this list for all discussion
-- archived at: http://lists.gnu.org/pipermail/bug-hello
+- archived at: https://lists.gnu.org/pipermail/bug-hello
 - anyone is welcome to join the list; to do so, visit
-  http://lists.gnu.org/mailman/listinfo/bug-hello
+  https://lists.gnu.org/mailman/listinfo/bug-hello
 
 Bug reports:
  Please include enough information for the maintainers to reproduce the

diff --git a/README-dev b/README-dev
line changes: +1/-1
index 1910f38..c906f55
--- a/README-dev
+++ b/README-dev
@@ -39,7 +39,7 @@ follows:
 Gnulib
 ------
 
-This distribution also uses Gnulib (http://www.gnu.org/software/gnulib)
+This distribution also uses Gnulib (https://www.gnu.org/software/gnulib)
 to share common files, stored as a submodule in git.
 
 

diff --git a/TODO b/TODO
line changes: +1/-1
index 8e8fb63..c768e83
--- a/TODO
+++ b/TODO
@@ -3,7 +3,7 @@ GNU hello --- TODO
 Todo:
 
     * submit a new hello.pot, see
-      http://translationproject.org/html/maintainers.html
+      https://translationproject.org/html/maintainers.html
     * update copyright every January 1st, use 'make update-copyright'
 
 end of file TODO

diff --git a/bootstrap b/bootstrap
line changes: +5/-5
index 932ff85..85b85c5
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Print a version string.
-scriptversion=2017-01-09.19; # UTC
+scriptversion=2017-09-19.08; # UTC
 
 # Bootstrap this package from checked-out sources.
 
@@ -17,7 +17,7 @@ scriptversion=2017-01-09.19; # UTC
 # 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/>.
 
 # Originally written by Paul Eggert.  The canonical version of this
 # script is maintained as build-aux/bootstrap in gnulib, however, to
@@ -141,7 +141,7 @@ po_download_command_format=\
 # Fallback for downloading .po files (if rsync fails).
 po_download_command_format2=\
 "wget --mirror -nd -q -np -A.po -P '%s' \
- http://translationproject.org/latest/%s/"
+ https://translationproject.org/latest/%s/"
 
 # Prefer a non-empty tarname (4th argument of AC_INIT if given), else
 # fall back to the package name (1st argument with munging)
@@ -699,7 +699,7 @@ download_po_files() {
   echo "$me: getting translations into $subdir for $domain..."
   cmd=$(printf "$po_download_command_format" "$domain" "$subdir")
   eval "$cmd" && return
-  # Fallback to HTTP.
+  # Fallback to HTTPS.
   cmd=$(printf "$po_download_command_format2" "$subdir" "$domain")
   eval "$cmd"
 }
@@ -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
-      # <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00326.html>.
+      # <https://lists.gnu.org/archive/html/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 &&

diff --git a/bootstrap.conf b/bootstrap.conf
line changes: +1/-1
index 262b373..085339d
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -13,7 +13,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/>.
 
 
 # gnulib modules used by this package.

diff --git a/cfg.mk b/cfg.mk
line changes: +1/-1
index bb61590..4053051
--- a/cfg.mk
+++ b/cfg.mk
@@ -13,7 +13,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/>.
 
 GNULIB_SRCDIR ?= $(srcdir)/gnulib
 gnulib_dir = $(GNULIB_SRCDIR)

diff --git a/configure.ac b/configure.ac
line changes: +1/-1
index 053a747..5c3959e
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@ dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 AC_INIT([GNU Hello],
 	[m4_esyscmd([build-aux/git-version-gen .tarball-version])],
 	[bug-hello@gnu.org], [],
-	[http://www.gnu.org/software/hello/])
+	[https://www.gnu.org/software/hello/])
 
 dnl Must come before AM_INIT_AUTOMAKE.
 AC_CONFIG_AUX_DIR([build-aux])

diff --git a/doc/hello.texi b/doc/hello.texi
line changes: +3/-3
index 9f535b0..cb66ffa
--- a/doc/hello.texi
+++ b/doc/hello.texi
@@ -72,7 +72,7 @@ which prints a friendly greeting (and serves as an example GNU package).
 @cindex overview
 
 The GNU @command{hello} program
-(@url{http://www.gnu.org/software/hello/}) produces a familiar,
+(@url{https://www.gnu.org/software/hello/}) produces a familiar,
 friendly greeting.  It allows nonprogrammers to use a classic computer
 science tool which would otherwise be unavailable to them.  Because it
 is protected by the GNU General Public License, users are free (in
@@ -144,7 +144,7 @@ HTML, PDF, DVI, plain text, XML, and other formats.
 
 GNU Hello is implemented in C@.  The GNU Gettext distribution contains
 ``hello world'' examples in many other programming languages; see the
-Gettext home page at @url{http://www.gnu.org/software/gettext/}.
+Gettext home page at @url{https://www.gnu.org/software/gettext/}.
 
 @cindex @file{Makefile.am} targets
 The top-level @file{Makefile.am} in Hello also contains a few special
@@ -162,7 +162,7 @@ messages.
 
 @item wwwdoc
 Sample procedure for updating the manual on the GNU web site, in this
-case @url{http://www.gnu.org/software/hello/manual/}.
+case @url{https://www.gnu.org/software/hello/manual/}.
 @end table
 
 @cindex authors

diff --git a/doc/local.mk b/doc/local.mk
line changes: +1/-1
index 0ff87f4..d23779c
--- a/doc/local.mk
+++ b/doc/local.mk
@@ -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/>.
 
 info_TEXINFOS = doc/hello.texi
 

diff --git a/man/hello.x b/man/hello.x
line changes: +1/-1
index 27f197b..0fd51a2
--- a/man/hello.x
+++ b/man/hello.x
@@ -2,7 +2,7 @@
 hello - friendly greeting program
 [ADDITIONAL INFORMATION]
 See
-.UR http://git.savannah.gnu.org/cgit/hello.git/tree/man/hello.x
+.UR https://git.savannah.gnu.org/cgit/hello.git/tree/man/hello.x
 man/hello.x
 .UE
 how to add addtional information to a manual page.

diff --git a/scripts/git-hooks/commit-msg b/scripts/git-hooks/commit-msg
line changes: +2/-2
index 2735b66..fee0c68
--- a/scripts/git-hooks/commit-msg
+++ b/scripts/git-hooks/commit-msg
@@ -117,10 +117,10 @@ sub check_msg($$)
 
   my $buf = join ("\n", @line) . "\n";
   $buf =~ m!https?://bugzilla\.redhat\.com/show_bug\.cgi\?id=(\d+)!s
-    and return "use shorter http://bugzilla.redhat.com/$1";
+    and return "use shorter https://bugzilla.redhat.com/$1";
 
   $buf =~ m!https?://debbugs\.gnu\.org/(?:cgi/bugreport\.cgi\?bug=)?(\d+)!s
-    and return "use shorter http://bugs.gnu.org/$1";
+    and return "use shorter https://debbugs.gnu.org/$1";
 
   $buf =~ /^ *Signed-off-by:/mi
     and return q(do not use "Signed-off-by:");

diff --git a/src/hello.c b/src/hello.c
line changes: +7/-7
index dd277d5..ae0ac35
--- a/src/hello.c
+++ b/src/hello.c
@@ -13,7 +13,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/>.  */
 
 #include <config.h>
 
@@ -152,11 +152,11 @@ print_help (FILE *restrict out)
   if (lc_messages && STRNCMP_LIT (lc_messages, "en_"))
     {
       /* TRANSLATORS: Replace LANG_CODE in this URL with your language code
-	 <http://translationproject.org/team/LANG_CODE.html> to form one of
-	 the URLs at http://translationproject.org/team/.  Otherwise, replace
+	 <https://translationproject.org/team/LANG_CODE.html> to form one of
+	 the URLs at https://translationproject.org/team/.  Otherwise, replace
 	 the entire URL with your translation team's email address.  */
       fprintf (out, _("Report %s translation bugs to "
-		"<http://translationproject.org/team/>\n"), PACKAGE_NAME);
+		"<https://translationproject.org/team/>\n"), PACKAGE_NAME);
     }
 #ifdef PACKAGE_PACKAGER_BUG_REPORTS
   fprintf (out, _("Report %s bugs to: %s\n"), PACKAGE_PACKAGER,
@@ -165,10 +165,10 @@ print_help (FILE *restrict out)
 #ifdef PACKAGE_URL
   fprintf (out, _("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
 #else
-  fprintf (out, _("%s home page: <http://www.gnu.org/software/%s/>\n"),
+  fprintf (out, _("%s home page: <https://www.gnu.org/software/%s/>\n"),
 	  PACKAGE_NAME, PACKAGE);
 #endif
-  fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>\n"),
+  fputs (_("General help using GNU software: <https://www.gnu.org/gethelp/>\n"),
 	 out);
   exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
 }
@@ -189,7 +189,7 @@ print_version (void)
      year comes around.  */
   printf (_("\
 Copyright (C) %d Free Software Foundation, Inc.\n\
-License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
+License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>\n\
 This is free software: you are free to change and redistribute it.\n\
 There is NO WARRANTY, to the extent permitted by law.\n"), COPYRIGHT_YEAR);
 }

diff --git a/src/system.h b/src/system.h
line changes: +1/-1
index 87d2b17..48d6f37
--- a/src/system.h
+++ b/src/system.h
@@ -13,7 +13,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/>.  */
 
 #ifndef HELLO_SYSTEM_H
 # define HELLO_SYSTEM_H

This website is licensed under AGPL-3.0. Feel free to copy!