automake-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-75-gc32780


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, branch-1-10, updated. Release-1-10-75-gc32780b
Date: Sat, 19 Jan 2008 09:36:42 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=c32780b2231ce92f8664db360619a922e908b931

The branch, branch-1-10 has been updated
       via  c32780b2231ce92f8664db360619a922e908b931 (commit)
       via  d11924a9eb86589c9a928b12e1e2dbe362262b43 (commit)
       via  3aad94f9b8978f561457f05750c74d9b83e23775 (commit)
      from  cd760e6354424e3ea17d905e3f051b0c690f0f8a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c32780b2231ce92f8664db360619a922e908b931
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Nov 12 09:49:50 2006 +0000

    * lib/gnupload: Revert last change.  Add pointer to upload
    instructions of the GNU Maintenance Instructions.
    Suggestion by Karl Berry.

commit d11924a9eb86589c9a928b12e1e2dbe362262b43
Author: Ralf Wildenhues <address@hidden>
Date:   Wed Nov 8 18:58:16 2006 +0000

    * lib/gnupload: Add missing 'gnu' to example URL.
    Report by Karl Berry.

commit 3aad94f9b8978f561457f05750c74d9b83e23775
Author: Ralf Wildenhues <address@hidden>
Date:   Sat Jun 30 09:23:12 2007 +0000

    * lib/gnupload: Fix shell portability issues with for loops.
    Report by Karl Berry.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog    |   12 ++++++++++++
 lib/gnupload |   13 +++++++------
 2 files changed, 19 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index be8660a..d797bfa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2008-01-19  Ralf Wildenhues  <address@hidden>
+
+       * lib/gnupload: Revert last change.  Add pointer to upload
+       instructions of the GNU Maintenance Instructions.
+       Suggestion by Karl Berry.
+
+       * lib/gnupload: Add missing 'gnu' to example URL.
+       Report by Karl Berry.
+
+       * lib/gnupload: Fix shell portability issues with for loops.
+       Report by Karl Berry.
+
 2008-01-19  Jim Meyering  <address@hidden>
 
        * lib/gnupload (GPG): Don't use an absolute path.
diff --git a/lib/gnupload b/lib/gnupload
index fae3677..a8900b7 100755
--- a/lib/gnupload
+++ b/lib/gnupload
@@ -3,7 +3,7 @@
 
 scriptversion=2007-12-18.17
 
-# Copyright (C) 2004, 2005, 2006  Free Software Foundation
+# Copyright (C) 2004, 2005, 2006, 2007  Free Software Foundation
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -29,7 +29,8 @@ to=
 
 usage="Usage: $0 [OPTIONS]... FILES...
 
-Sign all FILES, and upload them to selected destinations.
+Sign all FILES, and upload them to selected destinations, according to
+<http://www.gnu.org/prep/maintain/html_node/Automated-FTP-Uploads.html>.
 
 Options:
   --help                   print this help text and exit
@@ -101,7 +102,7 @@ fi
 
 # Make sure all files exist.  We don't want to ask
 # for the passphrase if the script will fail.
-for file;
+for file
 do
   if test ! -f $file; then
     echo "$0: Cannot find \`$file'" 1>&2
@@ -126,16 +127,16 @@ read -r passphrase
 stty echo
 echo
 
-for file;
+for file
 do
   echo "Signing $file..."
   rm -f $file.sig
   echo $passphrase | $GPG --passphrase-fd 0 -ba -o $file.sig $file
 done
 
-for dest in $to;
+for dest in $to
 do
-  for file;
+  for file
   do
     echo "Uploading $file to $dest..."
     files="$file $file.sig"


hooks/post-receive
--
GNU Automake




reply via email to

[Prev in Thread] Current Thread [Next in Thread]