From 4737cb4f2ccabe4e5ac69150c8c2394fbc32b4d0 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Added --dryrun and --chain options. --- smock/smock.pl | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 57 insertions(+), 3 deletions(-) diff --git a/smock/smock.pl b/smock/smock.pl index 0833b68..a6d15af 100755 --- a/smock/smock.pl +++ b/smock/smock.pl @@ -27,6 +27,8 @@ use File::Temp qw(tempfile); my @arches = (); my @distros = (); my $localrepo = $ENV{HOME} . "/public_html/smock/yum"; +my $dryrun = 0; +my $chain = 0; my $help = 0; my $man = 0; @@ -34,6 +36,8 @@ GetOptions ( "arch=s" => \@arches, "distro=s" => \@distros, "localrepo=s" => \$localrepo, + "dryrun" => \$dryrun, + "chain" => \$chain, "help|?" => \$help, "man" => \$man ) or pod2usage (2); @@ -87,6 +91,17 @@ You can list this option several times to build several distributions. Local repository. Defaults to C<$HOME/public_html/smock/yum> +=item B<--dryrun> + +Don't run any commands, just print the packages in the order +in which they must be built. + +=item B<--chain> + +Don't run any commands, just print the packages in the correct +format for chain building. See: +L + =back =cut @@ -202,9 +217,48 @@ close $fh; my @buildorder = get_lines "tsort $filename"; -#foreach (@buildorder) { -# print "$_\n"; -#} +# With --chain flag we print the packages in groups for chain building. + +if ($chain) { + my %group = (); + my $name; + + print 'make chain-build CHAIN="'; + + foreach $name (@buildorder) { + my @br = @{$srpms{$name}->{buildrequires}}; + + # If a BR occurs within the current group, then start the next group. + my $occurs = 0; + foreach (@br) { + if (exists $group{$_}) { + $occurs = 1; + last; + } + } + + if ($occurs) { + %group = (); + print ": "; + } + + $group{$name} = 1; + print "$name "; + } + print "\"\n"; + + exit 0 +} + +# With --dryrun flag we just print the packages in build order then exit. + +if ($dryrun) { + foreach (@buildorder) { + print "$_\n"; + } + + exit 0 +} # Now we can build each SRPM. -- 1.8.3.1