2 # Sign files and upload them.
4 scriptversion=2009-12-21.21; # UTC
6 # Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3, or (at your option)
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # Originally written by Alexandre Duret-Lutz <adl@gnu.org>.
25 GPG='gpg --batch --no-tty'
35 usage="Usage: $0 [OPTIONS]... [COMMAND] FILES... [[COMMAND] FILES...]
37 Sign all FILES, and upload them to selected destinations, according to
38 <http://www.gnu.org/prep/maintain/html_node/Automated-FTP-Uploads.html>.
41 --delete delete FILES from destination
42 --symlink create symbolic links
43 --rmsymlink remove symbolic links
44 -- treat the remaining arguments as files to upload
47 --help print this help text and exit
48 --to DEST specify one destination for FILES
49 (multiple --to options are allowed)
50 --user NAME sign with key NAME
51 --symlink-regex[=EXPR] use sed script EXPR to compute symbolic link names
52 --dry-run do nothing, show what would have been done
53 --version output version information and exit
55 If --symlink-regex is given without EXPR, then the link target name
56 is created by replacing the version information with \`-latest', e.g.:
58 foo-1.3.4.tar.gz -> foo-latest.tar.gz
60 Recognized destinations are:
61 alpha.gnu.org:DIRECTORY
62 savannah.gnu.org:DIRECTORY
63 savannah.nongnu.org:DIRECTORY
65 build directive files and upload files by FTP
66 download.gnu.org.ua:{alpha|ftp}/DIRECTORY
67 build directive files and upload files by SFTP
68 [user@]host:DIRECTORY upload files with scp
70 Options and commands are applied in order. If the file $conffile exists
71 in the current working directory, its contents are prepended to the
72 actual command line options. Use this to keep your defaults. Comments
73 (#) and empty lines in $conffile are allowed.
76 1. Upload foobar-1.0.tar.gz to ftp.gnu.org:
77 gnupload --to ftp.gnu.org:foobar foobar-1.0.tar.gz
79 2. Upload foobar-1.0.tar.gz and foobar-1.0.tar.xz to ftp.gnu.org:
80 gnupload --to ftp.gnu.org:foobar foobar-1.0.tar.gz foobar-1.0.tar.xz
82 3. Same as above, and also create symbolic links to foobar-latest.tar.*:
83 gnupload --to ftp.gnu.org:foobar \\
85 foobar-1.0.tar.gz foobar-1.0.tar.xz
87 4. Upload foobar-0.9.90.tar.gz to two sites:
88 gnupload --to alpha.gnu.org:foobar \\
89 --to sources.redhat.com:~ftp/pub/foobar \\
92 5. Delete oopsbar-0.9.91.tar.gz and upload foobar-0.9.91.tar.gz
93 (the -- terminates the list of files to delete):
94 gnupload --to alpha.gnu.org:foobar \\
95 --to sources.redhat.com:~ftp/pub/foobar \\
96 --delete oopsbar-0.9.91.tar.gz \\
97 -- foobar-0.9.91.tar.gz
99 gnupload uses the ncftpput program to do the transfers; if you don't
100 happen to have an ncftp package installed, the ncftpput-ftp script in
101 the build-aux/ directory of the gnulib package
102 (http://savannah.gnu.org/projects/gnulib) may serve as a replacement.
104 Report bugs to <bug-automake@gnu.org>.
105 Send patches to <automake-patches@gnu.org>."
107 # Read local configuration file
108 if test -r "$conffile"; then
109 echo "$0: Reading configuration file $conffile"
110 eval set x "`sed 's/#.*$//;/^$/d' \"$conffile\" | tr '\012\015' ' '` \"\$@\""
114 while test -n "$1"; do
124 if test -z "$2"; then
125 echo "$0: Missing argument for --to" 1>&2
133 if test -z "$2"; then
134 echo "$0: Missing argument for --user" 1>&2
137 GPG="$GPG --local-user $2"
142 collect_var=delete_files
145 collect_var=delete_symlinks
148 symlink_expr=`expr "$1" : '[^=]*=\(.*\)'`
151 symlink_expr='s|-[0-9][0-9\.]*\(-[0-9][0-9]*\)\{0,1\}\.|-latest.|'
154 collect_var=symlink_files
160 echo "gnupload $scriptversion"
168 echo "$0: Unknown option \`$1', try \`$0 --help'" 1>&2
174 if test -z "$collect_var"; then
177 eval "$collect_var=\"\$$collect_var $1\""
193 if test -z "$to"; then
194 echo "$0: Missing destination sites" >&2
198 if test -n "$symlink_files"; then
199 x=`echo "$symlink_files" | sed 's/[^ ]//g;s/ //g'`
200 if test -n "$x"; then
201 echo "$0: Odd number of symlink arguments" >&2
207 if test -z "${symlink_files}${delete_files}${delete_symlinks}"; then
208 echo "$0: No file to upload" 1>&2
212 # Make sure all files exist. We don't want to ask
213 # for the passphrase if the script will fail.
216 if test ! -f $file; then
217 echo "$0: Cannot find \`$file'" 1>&2
219 elif test -n "$symlink_expr"; then
220 linkname=`echo $file | sed "$symlink_expr"`
221 if test -z "$linkname"; then
222 echo "$0: symlink expression produces empty results" >&2
224 elif test "$linkname" = $file; then
225 echo "$0: symlink expression does not alter file name" >&2
232 # Make sure passphrase is not exported in the environment.
235 # Reset PATH to be sure that echo is a built-in. We will later use
236 # `echo $passphrase' to output the passphrase, so it is important that
237 # it is a built-in (third-party programs tend to appear in `ps'
238 # listings with their arguments...).
239 # Remember this script runs with `set -e', so if echo is not built-in
241 PATH=/empty echo -n "Enter GPG passphrase: "
247 if test $# -ne 0; then
250 echo "Signing $file..."
252 echo "$passphrase" | $dbg $GPG --passphrase-fd 0 -ba -o $file.sig $file
257 # mkdirective DESTDIR BASE FILE STMT
258 # Arguments: See upload, below
262 if test -n "$3"; then
267 cat >${2}.directive<<EOF
270 comment: gnupload v. $scriptversion$stmt
273 echo "File ${2}.directive:"
275 echo "File ${2}.directive:" | sed 's/./-/g'
283 echo "symlink: $1 $2"
289 # upload DEST DESTDIR BASE FILE STMT FILES
291 # DEST Destination site;
292 # DESTDIR Destination directory;
293 # BASE Base name for the directive file;
294 # FILE Name of the file to distribute (may be empty);
295 # STMT Additional statements for the directive file;
296 # FILES List of files to upload.
306 rm -f $base.directive $base.directive.asc
309 mkdirective "$destdir" "$base" "$file" "$stmt"
310 echo "$passphrase" | $dbg $GPG --passphrase-fd 0 --clearsign $base.directive
311 $dbg ncftpput ftp-upload.gnu.org /incoming/alpha $files $base.directive.asc
314 mkdirective "$destdir" "$base" "$file" "$stmt"
315 echo "$passphrase" | $dbg $GPG --passphrase-fd 0 --clearsign $base.directive
316 $dbg ncftpput ftp-upload.gnu.org /incoming/ftp $files $base.directive.asc
319 if test -z "$files"; then
320 echo "$0: warning: standalone directives not applicable for $dest" >&2
322 $dbg ncftpput savannah.gnu.org /incoming/savannah/$destdir $files
324 savannah.nongnu.org:*)
325 if test -z "$files"; then
326 echo "$0: warning: standalone directives not applicable for $dest" >&2
328 $dbg ncftpput savannah.nongnu.org /incoming/savannah/$destdir $files
330 download.gnu.org.ua:alpha/*|download.gnu.org.ua:ftp/*)
331 destdir_p1=`echo "$destdir" | sed 's,^[^/]*/,,'`
332 destdir_topdir=`echo "$destdir" | sed 's,/.*,,'`
333 mkdirective "$destdir_p1" "$base" "$file" "$stmt"
334 echo "$passphrase" | $dbg $GPG --passphrase-fd 0 --clearsign $base.directive
335 for f in $files $base.directive.asc
338 done | $dbg sftp -b - puszcza.gnu.org.ua:/incoming/$destdir_topdir
341 dest_host=`echo "$dest" | sed 's,:.*,,'`
342 mkdirective "$destdir" "$base" "$file" "$stmt"
343 echo "$passphrase" | $dbg $GPG --passphrase-fd 0 --clearsign $base.directive
344 $dbg cp $files $base.directive.asc $dest_host
347 if test -z "$files"; then
348 echo "$0: warning: standalone directives not applicable for $dest" >&2
350 $dbg scp $files $dest
353 rm -f $base.directive $base.directive.asc
357 # Process any standalone directives
359 if test -n "$symlink_files"; then
361 `mksymlink $symlink_files`"
364 for file in $delete_files
370 for file in $delete_symlinks
376 if test -n "$stmt"; then
379 destdir=`echo $dest | sed 's/[^:]*://'`
380 upload "$dest" "$destdir" "`hostname`-$$" "" "$stmt"
384 # Process actual uploads
389 echo "Uploading $file to $dest..."
391 files="$file $file.sig"
392 destdir=`echo $dest | sed 's/[^:]*://'`
393 if test -n "$symlink_expr"; then
394 linkname=`echo $file | sed "$symlink_expr"`
396 symlink: $file $linkname
397 symlink: $file.sig $linkname.sig"
399 upload "$dest" "$destdir" "$file" "$file" "$stmt" "$files"
406 # eval: (add-hook 'write-file-hooks 'time-stamp)
407 # time-stamp-start: "scriptversion="
408 # time-stamp-format: "%:y-%02m-%02d.%02H"
409 # time-stamp-time-zone: "UTC"
410 # time-stamp-end: "; # UTC"