4 # This script expects the directory ~/samba-rsync-ftp to exist and to be a
5 # copy of the /home/ftp/pub/rsync dir on samba.org. It also requires a
6 # pristine CVS checkout of rsync (don't use your normal rsync build dir
7 # unless you're 100% sure that there are not unchecked-in changes).
9 # If this is run with -ctu, it will make an updated "nightly" tar file in
10 # the nightly dir. It will also remove any old tar files, regenerate the
11 # HTML man pages in the nightly dir, and then rsync the changes to the
17 # Choose any dir where a pristine rsync has been checked out of CVS.
18 our $unpacked = $ENV{HOME
} . '/release/nightly';
19 # Where the local copy of /home/ftp/pub/rsync/nightly should be updated.
20 our $nightly = $ENV{HOME
} . '/samba-rsync-ftp/nightly';
21 our $nightly_symlink = "$nightly/rsync-HEAD.tar.gz";
23 our($cvs_update, $make_tar, $upload, $help_opt);
24 &Getopt
::Long
::Configure
('bundling');
25 &usage
if !&GetOptions
(
26 'cvs-update|c' => \
$cvs_update,
27 'make-tar|t' => \
$make_tar,
28 'upload|u' => \
$upload,
29 'help|h' => \
$help_opt,
32 our $name = time2str
('rsync-HEAD-%Y%m%d-%H%M%Z', time, 'GMT');
33 our $ztoday = time2str
('%d %b %Y', time);
36 chdir($unpacked) or die $!;
39 print "Updating from cvs...\n";
40 system 'cvs -q up' and die $!;
44 print "Generating list of active CVS files...\n";
46 open(CVS
, '-|', 'cvs status 2>&1') or die $!;
48 if (/^cvs status: Examining (.*)/) {
55 } elsif (/^File: (.*?)\s+Status: (.*)/ && $1 ne '.cvsignore') {
56 push(@files, $dir . $1);
57 if ($2 ne 'Up-to-date') {
58 print "*** Not up-to-date: $dir$1\n";
64 print "Creating $unpacked/$name.tar.gz\n";
65 chdir('..') or die $!;
66 rename($unpacked, $name) or die $!;
67 open(TAR
, '|-', "fakeroot tar --files-from=- --no-recursion --mode=g-w -czf $nightly/$name.tar.gz $name") or die $!;
69 print TAR
"$name/$_\n";
72 rename($name, $unpacked) or die $!;
73 unlink($nightly_symlink);
74 symlink("$name.tar.gz", $nightly_symlink);
77 chdir($nightly) or die $!;
79 foreach my $fn (qw( rsync.yo rsyncd.conf.yo )) {
81 $html_fn =~ s/\.yo/.html/;
83 open(IN
, '<', "$unpacked/$fn") or die $!;
84 undef $/; $_ = <IN>; $/ = "\n";
87 s/^(manpage\([^)]+\)\(\d+\)\()[^)]+(\).*)/$1$today$2/m;
88 #s/^(This man ?page is current for version) \S+ (of rsync)/$1 $version $2/m;
90 open(OUT
, '>', $fn) or die $!;
94 system "yodl2html -o $html_fn $fn";
100 open(PIPE
, '-|', 'ls -1t rsync-HEAD-*') or die $!;
112 if (defined $ENV{RSYNC_PARTIAL_DIR
}) {
113 $opt = " -f 'R $ENV{RSYNC_PARTIAL_DIR}'";
115 system "rsync$opt -aviHP --delete-after . samba.org:/home/ftp/pub/rsync/nightly";
123 Usage: nightly-rsync [OPTIONS]
125 -c, --cvs-update update $unpacked via CVS.
126 -t, --make-tar create a new tar file in $nightly
127 -u, --upload upload the revised nightly dir to samba.org
128 -h, --help display this help