From 404295945338957d9a80eaa874eb850d1e689be7 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Thu, 8 Sep 2011 22:43:49 +0000 Subject: ctanupload (8sep11) git-svn-id: svn://tug.org/texlive/trunk@23874 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/scripts/ctanupload/ctanupload.pl | 138 ++++++++++++++++----- 1 file changed, 108 insertions(+), 30 deletions(-) (limited to 'Master/texmf-dist/scripts') diff --git a/Master/texmf-dist/scripts/ctanupload/ctanupload.pl b/Master/texmf-dist/scripts/ctanupload/ctanupload.pl index 70bb018217e..4c3939b3440 100755 --- a/Master/texmf-dist/scripts/ctanupload/ctanupload.pl +++ b/Master/texmf-dist/scripts/ctanupload/ctanupload.pl @@ -10,16 +10,19 @@ sub fromenv; sub load_data; sub save_data; -my $VERSION = 'v1.1'; +my $VERSION = 'v1.2 from 2011/09/08'; my %CTAN_SERVERURLS = ( dante => 'http://dante.ctan.org/upload.html', - de => 'http://dante.ctan.org/upload.html', uktug => 'http://www.tex.ac.uk/upload/', - 'uk-tug' => 'http://www.tex.ac.uk/upload/', - uk => 'http://www.tex.ac.uk/upload/', - cambridge => 'http://www.tex.ac.uk/upload/', ); -my $CTAN_URL = $CTAN_SERVERURLS{dante}; +my %CTAN_SERVERALIASES = ( + de => 'dante', + 'uk-tug' => 'uktug', + uk => 'uktug', + cambridge => 'uktug', +); + +my $CTAN_URL; my @FIELDS = qw(contribution version name email summary directory DoNotAnnounce announce notes license freeversion file); my @REQUIRED = qw(contribution version name email summary license file); @@ -35,7 +38,7 @@ my %FIELDS_DESC = ( directory => 'Suggested CTAN directory', DoNotAnnounce => 'No need to announce this update', announce => 'Short description for announcement', - notes => 'Optional notes to the CTAN maintainers', + notes => 'Optional notes to the CTAN maintainers (DANTE only)', license => 'License type', freeversion => 'Which free license', file => 'File to upload', @@ -72,6 +75,9 @@ my $QUIET = 0; my $ASK = 1; my $FORCE = 0; my $PROMPT = -t STDIN ? 1 : 0; +my $LOG = 0; + +my $LOGFILE = $ENV{CTANUPLOAD_LOGFILE}; sub usage { my $warn = shift; @@ -89,16 +95,19 @@ Arguments can also be given using the CTANUPLOAD environment variable which are explicit arguments will overwrite them. Options: - -h Print this help and exit. + -p Prompt for missing values. (default if run in terminal) + -P Do not prompt for missing values. (default if not run in terminal) -y Do not ask for confirmation, but submit immediately. - -u CTAN URL to upload to. + -u CTAN URL to upload to (defaults to CTAN_URL environment variable or random if not set) -U CTAN server to upload to, either 'dante' or 'uktug'. -F Read data from file -f Force upload even if input seems incorrect (unknown license etc.). - -p Prompt for missing values. (default if run in terminal) - -P Do not prompt for missing values. (default if not run in terminal) -v Verbose mode. -q Quiet mode. + -l Write log file. + -L Do not write log file. (default) + -o Define log file. (still requires -l) + -h Print this help and exit. -V Print version number. The following fields exists and can be given as @@ -124,10 +133,18 @@ EOT exit ($warn ? 1 : 0); } +if (exists $ENV{CTAN_URL}) { + unshift @ARGV, ('-u', $ENV{'CTAN_URL'}); +} +elsif (exists $ENV{CTAN_SERVER}) { + unshift @ARGV, ('-U', $ENV{'CTAN_SERVER'}); +} + if (exists $ENV{'CTANUPLOAD'}) { unshift @ARGV, (split /\s+/, $ENV{'CTANUPLOAD'}); } + while (my $arg = shift @ARGV) { if ($arg =~ /^--(.*?)(?:=(.*))?$/) { my $name = $1; @@ -186,11 +203,21 @@ while (my $arg = shift @ARGV) { } elsif ($char eq 'U') { my $server = lc shift @ARGV; + $server = $CTAN_SERVERALIASES{$server} || $server; if (not exists $CTAN_SERVERURLS{ $server }) { die "Error: Unknown CTAN server '$server'.\n"; } $CTAN_URL = $CTAN_SERVERURLS{ $server }; } + elsif ($char eq 'l') { + $LOG = 1; + } + elsif ($char eq 'L') { + $LOG = 0; + } + elsif ($char eq 'o') { + $LOGFILE = shift @ARGV; + } elsif ($char eq 'V') { print STDERR "ctanupload script $VERSION.\n"; exit (0); @@ -213,6 +240,7 @@ if ($PROMPT) { my $input = ''; if ($field eq 'notes' || $field eq 'announce') { next if $field eq 'announce' and $FIELDS{DoNotAnnounce}; + next if $field eq 'notes' and $CTAN_URL ne $CTAN_SERVERURLS{dante}; print "\u$FIELDS_DESC{$field}: (press CTRL-Z (Windows) or CTRL-D (Linux) to stop)\n"; while () { $input .= $_; @@ -260,42 +288,60 @@ if ($PROMPT) { } } -my $abort = 0; +my $abort = ''; foreach my $required (@REQUIRED) { if (!length $FIELDS{$required}) { - print "Required field '$required' is missing!\n"; - $abort++; + $abort .= "Required field '$required' is missing!\n"; } } if (not exists $LICENSES{ $FIELDS{license} }) { - print "Unknown license type '$FIELDS{license}'!\n"; - $abort++ if not $FORCE; + $abort .= "Unknown license type '$FIELDS{license}'!\n" + if not $FORCE; } if ($FIELDS{license} ne 'free') { $FIELDS{freeversion} = '-not-selected-'; } elsif (!$FIELDS{freeversion}) { - print "Required field 'freeversion' is missing!\n"; - $abort++; + $abort .= "Required field 'freeversion' is missing!\n"; } elsif (not exists $FREEVERSIONS{ $FIELDS{freeversion} }) { - print "Unknown free license '$FIELDS{freeversion}'!\n"; - $abort++ if not $FORCE; + $abort .= "Unknown free license '$FIELDS{freeversion}'!\n" + if not $FORCE; } if ($FIELDS{file} && ! -f $FIELDS{file}) { - print "File '$FIELDS{file}' not found!\n"; - $abort++; + $abort .= "File '$FIELDS{file}' not found!\n"; } + +if ($LOG) { + my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); + my $DATE = sprintf ('%04d-%02d-%02d %02d:%02d:%02d', $year+1900, $mon+1, $mday, $hour, $min, $sec); + if (!$LOGFILE) { + $LOGFILE = 'ctanupload-' . $FIELDS{contribution} . " $DATE.log"; + $LOGFILE =~ tr/: /-_/; + } + save_data($LOGFILE, 1, "# $DATE"); + if (!open (LOG, '>>', $LOGFILE)) { + warn "Couldn't open logfile '$LOGFILE'.\n"; + $LOG = 0; + } +} + if ($abort) { - print "Aborting!\n"; + print $abort, "Aborting!\n"; + if ($LOG) { + $abort =~ s/\n/\n# /gms; + print LOG "# $abort\n# Aborting!\n"; + } exit (2); } my $DoNotAnnounce; if ($FIELDS{DoNotAnnounce}) { $FIELDS{DoNotAnnounce} = 'No'; + $FIELDS{to_announce} = 'Yes'; $DoNotAnnounce = '[x]'; } else { $FIELDS{DoNotAnnounce} = undef; + $FIELDS{to_announce} = undef; $DoNotAnnounce = '[ ]'; } @@ -303,6 +349,10 @@ if (!$FIELDS{directory}) { $FIELDS{directory} = '/macros/latex/contrib/' . $FIELDS{contribution}; } + +$CTAN_URL = (values %CTAN_SERVERURLS)[int rand scalar values %CTAN_SERVERURLS] + if not defined $CTAN_URL; + print "\nThe following data will be submitted to CTAN ($CTAN_URL):\n"; foreach my $field (@FIELDS) { @@ -316,10 +366,19 @@ foreach my $field (@FIELDS) { print "$FIELDS_DESC{$field}: $FREEVERSIONS{$FIELDS{$field}}\n"; } else { - print "$FIELDS_DESC{$field}: $FIELDS{$field}\n"; + print "$FIELDS_DESC{$field}: ", $FIELDS{$field} || '', "\n"; } } +eval { + my $file = $FIELDS{file}; + die if not -f $file; + print "\n$file (", (-s $file), "):\n"; + if ($file =~ /\.tar\.gz$/) { + system ('tar', 'tzvf', $file); + } +}; + if ($ASK) { print "\nUpload? [(y/N/(e)dit/(s)ave] "; my $response = lc ; @@ -344,10 +403,12 @@ if ($ASK) { my $file = 'ctanupload.dat'; save_data($file); print "Data was stored in file '$file'.\n"; + print LOG "\n# Data was stored in file '$file'.\n" if $LOG; exit (2); } else { print "\nUpload aborted!\n"; + print LOG "\n# Upload aborted!\n" if $LOG; exit (1); } } @@ -366,13 +427,11 @@ $mech->submit_form( ); if ($mech->success()) { - print "Upload successfull!\n"; -} -else { print "Upload failed: ", $mech->response()->message(), "\n"; } print "\nResponse:\n"; +print LOG "\n# Response:\n" if $LOG; eval { use HTML::TreeBuilder; use HTML::FormatText; @@ -381,13 +440,17 @@ eval { my @response = split /\n/, $formatter->format($tree); local $, = "\n"; print @response[3..$#response-3]; + local $, = "\n# "; + print LOG '', @response[3..$#response-3] if $LOG; } or do { print "Can't display HTML response, storing reponse if log file 'ctanupload_response.html'\n"; - open (LOG, '>', 'ctanupload_response.html'); - print LOG $mech->content(); - close (LOG); + open (HLOG, '>', 'ctanupload_response.html'); + print HLOG $mech->content(); + close (HLOG); }; +print "\n"; +close LOG if $LOG; exit (0); @@ -404,6 +467,7 @@ sub load_data { open (my $load, '<', $file) or die "Couldn't open data file '$file'!\n"; LOAD_LOOP: while (my $line = <$load>) { + next if ($line =~ /^\s*(#|$)/); if ($line =~ /^([a-z]+)\s*=\s*(.*)$/i) { my ($name,$value) = ($1,$2); if (!exists $FIELDS{$name}) { @@ -414,6 +478,7 @@ sub load_data { if ($name eq 'announce' || $name eq 'notes') { $FIELDS{$name} .= "\n"; while ($line = <$load>) { + next if ($line =~ /^\s*#/); last if ($line =~ /^[a-z]+\s*=/i); $FIELDS{$name} .= $line; } @@ -431,8 +496,11 @@ sub load_data { sub save_data { my $file = shift; + my $storefileinfo = shift; + my $header = shift; $file = 'ctanupload.dat' if not defined $file; open (my $save, '>', $file) or do { warn "Couldn't save data to file '$file'!\n"; return; }; + print {$save} "$header\n" if $header; foreach my $field (@FIELDS) { if ($field eq 'DoNotAnnounce') { print {$save} "$field = ", $FIELDS{DoNotAnnounce} ? '1' : '0', "\n"; @@ -441,6 +509,16 @@ sub save_data { print {$save} "$field = ", $FIELDS{$field} || '', "\n"; } } + if ($storefileinfo && -f $FIELDS{file}) { + my $file = $FIELDS{file}; + print {$save} "\n# $file (", (-s $file), "):\n"; + if ($file =~ /\.tar\.gz$/) { + open (my $TAR, '-|', "tar tzvf $file"); + print {$save} map { "# $_" } <$TAR>; + print {$save} "\n"; + close ($TAR); + } + } close ($save); return; } -- cgit v1.2.3