| 1 | #!/usr/bin/perl -w
|
|---|
| 2 | #
|
|---|
| 3 | # Project Builder main application
|
|---|
| 4 | #
|
|---|
| 5 | # $Id$
|
|---|
| 6 | #
|
|---|
| 7 | # Copyright B. Cornec 2007
|
|---|
| 8 | # Provided under the GPL v2
|
|---|
| 9 |
|
|---|
| 10 | # Syntax: see at end
|
|---|
| 11 |
|
|---|
| 12 | use strict 'vars';
|
|---|
| 13 | use Getopt::Std;
|
|---|
| 14 | use Data::Dumper;
|
|---|
| 15 | use English;
|
|---|
| 16 | use AppConfig qw(:argcount :expand);
|
|---|
| 17 | use File::Basename;
|
|---|
| 18 | use Time::localtime qw(localtime);
|
|---|
| 19 | use POSIX qw(strftime);
|
|---|
| 20 |
|
|---|
| 21 | use vars qw (%defpkgdir %extpkgdir %version %confparam %filteredfiles $debug $LOG);
|
|---|
| 22 | %extpkgdir = ();
|
|---|
| 23 | %filteredfiles = ();
|
|---|
| 24 | $debug = 0; # Debug level
|
|---|
| 25 | $LOG = *STDOUT; # Where to log
|
|---|
| 26 | use lib qw (lib);
|
|---|
| 27 | use common qw (env_init);
|
|---|
| 28 | use pb qw (pb_init);
|
|---|
| 29 | use distro qw (distro_init);
|
|---|
| 30 | use cms;
|
|---|
| 31 | use changelog qw (changelog);
|
|---|
| 32 |
|
|---|
| 33 | my %opts; # CLI Options
|
|---|
| 34 | my $action; # action to realize
|
|---|
| 35 | my $test = "FALSE";
|
|---|
| 36 | my $option = "";
|
|---|
| 37 | my @pkgs;
|
|---|
| 38 | my $pbtag; # Global TAG variable
|
|---|
| 39 | my $pbver; # Global VERSION variable
|
|---|
| 40 | my $pbrev; # GLOBAL REVISION variable
|
|---|
| 41 | my @date=(localtime->sec(), localtime->min(), localtime->hour(), localtime->mday(), localtime->mon(), localtime->year(), localtime->wday(), localtime->yday(), localtime->isdst());
|
|---|
| 42 | my $pbdate = strftime("%Y-%m-%d", @date);
|
|---|
| 43 |
|
|---|
| 44 | getopts('hl:p:qtv',\%opts);
|
|---|
| 45 |
|
|---|
| 46 | if (defined $opts{'h'}) {
|
|---|
| 47 | syntax();
|
|---|
| 48 | exit(0);
|
|---|
| 49 | }
|
|---|
| 50 | if (defined $opts{'v'}) {
|
|---|
| 51 | $debug++;
|
|---|
| 52 | }
|
|---|
| 53 | if (defined $opts{'q'}) {
|
|---|
| 54 | $debug=-1;
|
|---|
| 55 | }
|
|---|
| 56 | if (defined $opts{'l'}) {
|
|---|
| 57 | open(LOG,"> $opts{'l'}") || die "Unable to log to $opts{'l'}: $!";
|
|---|
| 58 | $LOG = *LOG;
|
|---|
| 59 | $debug = 0 if ($debug == -1);
|
|---|
| 60 | }
|
|---|
| 61 | # Handles project name if any
|
|---|
| 62 | if (defined $opts{'p'}) {
|
|---|
| 63 | $ENV{'PBPROJ'} = env_init($opts{'p'});
|
|---|
| 64 | } else {
|
|---|
| 65 | $ENV{'PBPROJ'} = env_init();
|
|---|
| 66 | }
|
|---|
| 67 | # Handles test option
|
|---|
| 68 | if (defined $opts{'t'}) {
|
|---|
| 69 | $test = "TRUE";
|
|---|
| 70 | # Works only for SVN
|
|---|
| 71 | $option = "-r BASE";
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | # Get Action
|
|---|
| 75 | $action = shift @ARGV;
|
|---|
| 76 | die syntax() if (not defined $action);
|
|---|
| 77 |
|
|---|
| 78 | print $LOG "Project $ENV{'PBPROJ'}\n" if ($debug >= 0);
|
|---|
| 79 | print $LOG "Action: $action\n" if ($debug >= 0);
|
|---|
| 80 |
|
|---|
| 81 | # Act depending on action
|
|---|
| 82 | if ($action =~ /^cms2build$/) {
|
|---|
| 83 | my $ptr = get_pkg();
|
|---|
| 84 | @pkgs = @$ptr;
|
|---|
| 85 | cms_init();
|
|---|
| 86 |
|
|---|
| 87 | foreach my $pkg (@pkgs) {
|
|---|
| 88 | if (-f "$ENV{'PBROOT'}/$pkg/VERSION") {
|
|---|
| 89 | open(V,"$ENV{'PBROOT'}/$pkg/VERSION") || die "Unable to open $ENV{'PBROOT'}/$pkg/VERSION";
|
|---|
| 90 | $pbver = <V>;
|
|---|
| 91 | chomp($pbver);
|
|---|
| 92 | close(V);
|
|---|
| 93 | } else {
|
|---|
| 94 | $pbver = $ENV{'PBVER'};
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | if (-f "$ENV{'PBROOT'}/$pkg/TAG") {
|
|---|
| 98 | open(T,"$ENV{'PBROOT'}/$pkg/TAG") || die "Unable to open $ENV{'PBROOT'}/$pkg/TAG";
|
|---|
| 99 | $pbtag = <T>;
|
|---|
| 100 | chomp($pbtag);
|
|---|
| 101 | close(T);
|
|---|
| 102 | } else {
|
|---|
| 103 | $pbtag = $ENV{'PBTAG'};
|
|---|
| 104 | }
|
|---|
| 105 | $pbrev = $ENV{'PBREVISION'};
|
|---|
| 106 | print $LOG "\n" if ($debug >= 0);
|
|---|
| 107 | print $LOG "Management of $pkg $pbver-$pbtag (rev $pbrev)\n" if ($debug >= 0);
|
|---|
| 108 | die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
|
|---|
| 109 | # Clean up dest if necessary. The export will recreate it
|
|---|
| 110 | my $dest = "$ENV{'PBDESTDIR'}/$pkg-$pbver";
|
|---|
| 111 | pbrm_rf($dest) if (-d $dest);
|
|---|
| 112 |
|
|---|
| 113 | # Export CMS tree for the concerned package to dest
|
|---|
| 114 | # And generate some additional files
|
|---|
| 115 | $OUTPUT_AUTOFLUSH=1;
|
|---|
| 116 | print $LOG "$ENV{'PBCMSEXP'} of $pkg..." if ($debug >= 0);
|
|---|
| 117 | # computes in which dir we have to work
|
|---|
| 118 | my $dir = $defpkgdir{$pkg};
|
|---|
| 119 | $dir = $extpkgdir{$pkg} if (not defined $dir);
|
|---|
| 120 | system("$ENV{'PBCMSEXP'} $option $ENV{'PBROOT'}/$dir $dest 1>/dev/null");
|
|---|
| 121 | if ($? == -1) {
|
|---|
| 122 | print $LOG "failed to execute: $!\n" if ($debug >= 0);
|
|---|
| 123 | } elsif ($? & 127) {
|
|---|
| 124 | printf $LOG "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without' if ($debug >= 0);
|
|---|
| 125 | } else {
|
|---|
| 126 | print $LOG " OK\n" if ($debug >= 0);
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| 129 | # Creates a REVISION file
|
|---|
| 130 | open(R,"> $dest/REVISION") || die "Unable to create $dest/REVISION";
|
|---|
| 131 | print R "$pbrev\n";
|
|---|
| 132 | close(R);
|
|---|
| 133 |
|
|---|
| 134 | # Extract cms log history and store it
|
|---|
| 135 | system("$ENV{'PBCMSLOG'} $option $ENV{'PBROOT'}/$dir > $dest/$ENV{'PBCMSLOGFILE'}");
|
|---|
| 136 | print $LOG "$ENV{'PBCMSLOG'} of $pkg..." if ($debug >= 0);
|
|---|
| 137 | if ($? == -1) {
|
|---|
| 138 | print $LOG "failed to execute: $!\n" if ($debug >= 0);
|
|---|
| 139 | } elsif ($? & 127) {
|
|---|
| 140 | printf $LOG "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without' if ($debug >= 0);
|
|---|
| 141 | } else {
|
|---|
| 142 | print $LOG " OK\n" if ($debug >= 0);
|
|---|
| 143 | }
|
|---|
| 144 | my %build;
|
|---|
| 145 | open(D,"$ENV{'PBCONF'}/DISTROS") || die "Unable to find $ENV{'PBCONF'}/DISTROS\n";
|
|---|
| 146 | while (<D>) {
|
|---|
| 147 | my $d = $_;
|
|---|
| 148 | my ($dir,$ver) = split(/_/,$d);
|
|---|
| 149 | chomp($ver);
|
|---|
| 150 | my ($ddir, $dver, $dfam, $dtype, $dsuf) = distro_init($dir,$ver);
|
|---|
| 151 | print $LOG "DEBUG: distro tuple: ".Dumper($ddir, $dver, $dfam, $dtype, $dsuf)."\n" if ($debug >= 1);
|
|---|
| 152 | print $LOG "DEBUG Filtering PBDATE => $pbdate, PBTAG => $pbtag, PBVER => $pbver\n" if ($debug >= 1);
|
|---|
| 153 |
|
|---|
| 154 | # Filter build files from the less precise up to the most with overloading
|
|---|
| 155 | # Filter all files found, keeping the name, and generating in dest
|
|---|
| 156 |
|
|---|
| 157 | # Find all build files first relatively to PBROOT
|
|---|
| 158 | my %bfiles;
|
|---|
| 159 | print $LOG "DEBUG dir: $ENV{'PBCONF'}/$pkg\n" if ($debug >= 1);
|
|---|
| 160 | $build{"$ddir-$dver"} = "yes";
|
|---|
| 161 | if (-d "$ENV{'PBCONF'}/$pkg/$dtype") {
|
|---|
| 162 | opendir(BDIR,"$ENV{'PBCONF'}/$pkg/$dtype") || die "Unable to open dir $ENV{'PBCONF'}/$pkg/$dtype: $!";
|
|---|
| 163 | foreach my $f (readdir(BDIR)) {
|
|---|
| 164 | next if ($f =~ /^\./);
|
|---|
| 165 | $bfiles{$f} = "$ENV{'PBCONF'}/$pkg/$dtype/$f";
|
|---|
| 166 | $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
|
|---|
| 167 | }
|
|---|
| 168 | closedir(BDIR);
|
|---|
| 169 | } elsif (-d "$ENV{'PBCONF'}/$pkg/$dfam") {
|
|---|
| 170 | opendir(BDIR,"$ENV{'PBCONF'}/$pkg/$dfam") || die "Unable to open dir $ENV{'PBCONF'}/$pkg/$dfam: $!";
|
|---|
| 171 | foreach my $f (readdir(BDIR)) {
|
|---|
| 172 | next if ($f =~ /^\./);
|
|---|
| 173 | $bfiles{$f} = "$ENV{'PBCONF'}/$pkg/$dfam/$f";
|
|---|
| 174 | $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
|
|---|
| 175 | }
|
|---|
| 176 | closedir(BDIR);
|
|---|
| 177 | } elsif (-d "$ENV{'PBCONF'}/$pkg/$ddir") {
|
|---|
| 178 | opendir(BDIR,"$ENV{'PBCONF'}/$pkg/$ddir") || die "Unable to open dir $ENV{'PBCONF'}/$pkg/$ddir: $!";
|
|---|
| 179 | foreach my $f (readdir(BDIR)) {
|
|---|
| 180 | next if ($f =~ /^\./);
|
|---|
| 181 | $bfiles{$f} = "$ENV{'PBCONF'}/$pkg/$ddir/$f";
|
|---|
| 182 | $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
|
|---|
| 183 | }
|
|---|
| 184 | closedir(BDIR);
|
|---|
| 185 | } elsif (-d "$ENV{'PBCONF'}/$pkg/$ddir-$dver") {
|
|---|
| 186 | opendir(BDIR,"$ENV{'PBCONF'}/$pkg/$ddir-$dver") || die "Unable to open dir $ENV{'PBCONF'}/$pkg/$ddir-$dver: $!";
|
|---|
| 187 | foreach my $f (readdir(BDIR)) {
|
|---|
| 188 | next if ($f =~ /^\./);
|
|---|
| 189 | $bfiles{$f} = "$ENV{'PBCONF'}/$pkg/$ddir-$dver/$f";
|
|---|
| 190 | $bfiles{$f} =~ s~$ENV{'PBROOT'}~~;
|
|---|
| 191 | }
|
|---|
| 192 | closedir(BDIR);
|
|---|
| 193 | } else {
|
|---|
| 194 | $build{"$ddir-$dver"} = "no";
|
|---|
| 195 | next;
|
|---|
| 196 | }
|
|---|
| 197 | print $LOG "DEBUG bfiles: ".Dumper(\%bfiles)."\n" if ($debug >= 1);
|
|---|
| 198 |
|
|---|
| 199 | # Get all filters to apply
|
|---|
| 200 | # They're cumulative from less specific to most specific
|
|---|
| 201 | # suffix is .pbf
|
|---|
| 202 | my @ffiles;
|
|---|
| 203 | my ($ffile0, $ffile1, $ffile2, $ffile3);
|
|---|
| 204 | if (-d "$ENV{'PBCONF'}/$pkg/pbfilter") {
|
|---|
| 205 | $ffile0 = "$ENV{'PBCONF'}/$pkg/pbfilter/$dtype.pbf" if (-f "$ENV{'PBCONF'}/$pkg/pbfilter/$dtype.pbf");
|
|---|
| 206 | $ffile1 = "$ENV{'PBCONF'}/$pkg/pbfilter/$dfam.pbf" if (-f "$ENV{'PBCONF'}/$pkg/pbfilter/$dfam.pbf");
|
|---|
| 207 | $ffile2 = "$ENV{'PBCONF'}/$pkg/pbfilter/$ddir.pbf" if (-f "$ENV{'PBCONF'}/$pkg/pbfilter/$ddir.pbf");
|
|---|
| 208 | $ffile3 = "$ENV{'PBCONF'}/$pkg/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBCONF'}/$pkg/pbfilter/$ddir-$dver.pbf");
|
|---|
| 209 | push @ffiles,$ffile0 if (defined $ffile0);
|
|---|
| 210 | push @ffiles,$ffile1 if (defined $ffile1);
|
|---|
| 211 | push @ffiles,$ffile2 if (defined $ffile2);
|
|---|
| 212 | push @ffiles,$ffile3 if (defined $ffile3);
|
|---|
| 213 | }
|
|---|
| 214 | my $config = AppConfig->new({
|
|---|
| 215 | # Auto Create variables mentioned in Conf file
|
|---|
| 216 | CREATE => 1,
|
|---|
| 217 | DEBUG => 0,
|
|---|
| 218 | GLOBAL => {
|
|---|
| 219 | # Each conf item is a hash
|
|---|
| 220 | ARGCOUNT => AppConfig::ARGCOUNT_HASH
|
|---|
| 221 | }
|
|---|
| 222 | });
|
|---|
| 223 | my $ptr;
|
|---|
| 224 | if (@ffiles) {
|
|---|
| 225 | print $LOG "DEBUG ffiles: ".Dumper(\@ffiles)."\n" if ($debug >= 1);
|
|---|
| 226 | $config->file(@ffiles);
|
|---|
| 227 | $ptr = $config->get("filter");
|
|---|
| 228 | print $LOG "DEBUG f:".Dumper($ptr)."\n" if ($debug >= 1);
|
|---|
| 229 | } else {
|
|---|
| 230 | $ptr = { };
|
|---|
| 231 | }
|
|---|
| 232 |
|
|---|
| 233 | # Apply now all the filters on all the files concerned
|
|---|
| 234 | # All files are relative to PBROOT
|
|---|
| 235 | # destination dir depends on the type of file
|
|---|
| 236 | if (defined $ptr) {
|
|---|
| 237 | foreach my $f (values %bfiles) {
|
|---|
| 238 | filter_file($f,$ptr,"$dest/pbconf/$ddir-$dver/".basename($f),$pkg,$dtype,$dsuf);
|
|---|
| 239 | }
|
|---|
| 240 | foreach my $f (keys %filteredfiles) {
|
|---|
| 241 | filter_file($f,$ptr,"$dest/$f",$pkg,$dtype,$dsuf);
|
|---|
| 242 | }
|
|---|
| 243 | }
|
|---|
| 244 | }
|
|---|
| 245 | if ($debug >= 0) {
|
|---|
| 246 | my @found;
|
|---|
| 247 | my @notfound;
|
|---|
| 248 | foreach my $b (keys %build) {
|
|---|
| 249 | push @found,$b if ($build{$b} =~ /yes/);
|
|---|
| 250 | push @notfound,$b if ($build{$b} =~ /no/);
|
|---|
| 251 | }
|
|---|
| 252 | print $LOG "Build files generated for ".join(',',@found)."\n";
|
|---|
| 253 | print $LOG "No Build files found for ".join(',',@notfound)."\n";
|
|---|
| 254 | }
|
|---|
| 255 | close(D);
|
|---|
| 256 | # Prepare the dest directory for archive
|
|---|
| 257 | if (-x "$ENV{'PBCONF'}/$pkg/pbpkginit") {
|
|---|
| 258 | print $LOG " Executing $ENV{'PBCONF'}/$pkg/pbinit...\n" if ($debug >= 0);
|
|---|
| 259 | system("cd $dest ; $ENV{'PBCONF'}/$pkg/pbinit");
|
|---|
| 260 | if ($? == -1) {
|
|---|
| 261 | print $LOG "failed to execute: $!\n" if ($debug >= 0);
|
|---|
| 262 | } elsif ($? & 127) {
|
|---|
| 263 | printf $LOG "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without' if ($debug >= 0);
|
|---|
| 264 | } else {
|
|---|
| 265 | print $LOG " OK\n" if ($debug >= 0);
|
|---|
| 266 | }
|
|---|
| 267 | }
|
|---|
| 268 | # Archive dest dir
|
|---|
| 269 | chdir "$ENV{'PBDESTDIR'}";
|
|---|
| 270 | print $LOG "Creating $pkg tar files (gzip... " if ($debug >= 0);
|
|---|
| 271 | # Possibility to look at PBSRC to guess more the filename
|
|---|
| 272 | system("tar cfphz $pkg-$pbver.tar.gz $pkg-$pbver");
|
|---|
| 273 | if ($? == -1) {
|
|---|
| 274 | print $LOG "failed to execute: $!\n" if ($debug >= 0);
|
|---|
| 275 | } elsif ($? & 127) {
|
|---|
| 276 | printf $LOG "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without' if ($debug >= 0);
|
|---|
| 277 | } else {
|
|---|
| 278 | print $LOG " OK)\n" if ($debug >= 0);
|
|---|
| 279 | print $LOG "Under $ENV{'PBDESTDIR'}/$pkg-$pbver.tar.gz\n" if ($debug >= 0);
|
|---|
| 280 | # Keep track of what is generated for build2pkg default
|
|---|
| 281 | open(LAST,"> $ENV{'PBDESTDIR'}/LAST") || die "Unable to create $ENV{'PBDESTDIR'}/LAST";
|
|---|
| 282 | print LAST "$pbver-$pbtag\n";
|
|---|
| 283 | close(LAST);
|
|---|
| 284 | }
|
|---|
| 285 | }
|
|---|
| 286 | } elsif ($action =~ /^build2pkg$/) {
|
|---|
| 287 | # Check whether we have a specific version to build
|
|---|
| 288 | my $vertag = shift @ARGV;
|
|---|
| 289 | if (not defined $vertag) {
|
|---|
| 290 | open(LAST,"$ENV{'PBDESTDIR'}/LAST") || die "Unable to open $ENV{'PBDESTDIR'}/LAST\nYou may want to precise as parameter version-tag";
|
|---|
| 291 | $vertag = <LAST>;
|
|---|
| 292 | chomp($vertag);
|
|---|
| 293 | close(LAST);
|
|---|
| 294 | }
|
|---|
| 295 | ($pbver,$pbtag) = split(/-/,$vertag);
|
|---|
| 296 |
|
|---|
| 297 | # Get list of packages to build
|
|---|
| 298 | my $ptr = get_pkg();
|
|---|
| 299 | @pkgs = @$ptr;
|
|---|
| 300 |
|
|---|
| 301 | # Get the running distro to build on
|
|---|
| 302 | my ($ddir, $dver, $dfam, $dtype, $dsuf) = distro_init();
|
|---|
| 303 | print $LOG "DEBUG: distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $dsuf))."\n" if ($debug >= 1);
|
|---|
| 304 |
|
|---|
| 305 | chdir "$ENV{'PBBUILDDIR'}";
|
|---|
| 306 | foreach my $pkg (@pkgs) {
|
|---|
| 307 | my $src="$ENV{'PBDESTDIR'}/$pkg-$pbver.tar.gz";
|
|---|
| 308 | print $LOG "Handling source file $src\n" if ($debug >= 0);
|
|---|
| 309 |
|
|---|
| 310 | if ($dtype eq "rpm") {
|
|---|
| 311 | # rpm has its own standard build directory
|
|---|
| 312 | $ENV{'PBBUILDDIR'}=`rpmquery --eval '%{_topdir}' 2> /dev/null`;
|
|---|
| 313 | chdir "$ENV{'PBBUILDDIR'}";
|
|---|
| 314 | foreach my $d ('RPMS','SRPMS','SPECS','SOURCES','BUILD') {
|
|---|
| 315 | pbmkdir_p($d) if (! -d $d) || die "Please ensure that you can write into $ENV{'PBBUILDDIR'}\nSolution: setup _topdir in your ~/.rpmmacros or\nchown the $ENV{'PBBUILDDIR'} directory to your uid";
|
|---|
| 316 | }
|
|---|
| 317 |
|
|---|
| 318 | # We need to first extract the spec file
|
|---|
| 319 | print $LOG "Extracting spec file\n" if ($debug >= 0);
|
|---|
| 320 | symlink $src,"SOURCES/" || die "Unable to symlink $src in SOURCES";;
|
|---|
| 321 | chdir "SPECS";
|
|---|
| 322 | extract_build_files($src,"$pkg-$pbver/pbconf/$ddir-$dver/");
|
|---|
| 323 |
|
|---|
| 324 | # set LANGUAGE to check for correct log messages
|
|---|
| 325 | $ENV{'LANGUAGE'}="C";
|
|---|
| 326 | system("rpmbuild -ba *.spec 2>&1 | tee ");
|
|---|
| 327 |
|
|---|
| 328 | } elsif ($dtype eq "tgz") {
|
|---|
| 329 | pbmkdir_p("$ENV{'PBBUILDDIR'}/install") if (! -d "$ENV{'PBBUILDDIR'}/install");
|
|---|
| 330 | } elsif ($dtype eq "ebuild") {
|
|---|
| 331 | pbmkdir_p("$ENV{'PBBUILDDIR'}/portage") if (! -d "$ENV{'PBBUILDDIR'}/portage");
|
|---|
| 332 | } else {
|
|---|
| 333 | }
|
|---|
| 334 | }
|
|---|
| 335 | } else {
|
|---|
| 336 | print $LOG "'$action' is not available\n";
|
|---|
| 337 | syntax();
|
|---|
| 338 | }
|
|---|
| 339 |
|
|---|
| 340 | # Function which applies filter on files
|
|---|
| 341 | sub filter_file {
|
|---|
| 342 |
|
|---|
| 343 | my $f=shift;
|
|---|
| 344 | my $ptr=shift;
|
|---|
| 345 | my %filter=%$ptr;
|
|---|
| 346 | my $destfile=shift;
|
|---|
| 347 | my $pkg=shift;
|
|---|
| 348 | my $dtype=shift;
|
|---|
| 349 | my $dsuf=shift;
|
|---|
| 350 |
|
|---|
| 351 | print $LOG "DEBUG: From $f to $destfile\n" if ($debug >= 1);
|
|---|
| 352 | pbmkdir_p(dirname($destfile)) if (! -d dirname($destfile));
|
|---|
| 353 | open(DEST,"> $destfile") || die "Unable to create $destfile";
|
|---|
| 354 | open(FILE,"$ENV{'PBROOT'}/$f") || die "Unable to open $f: $!";
|
|---|
| 355 | while (<FILE>) {
|
|---|
| 356 | my $line = $_;
|
|---|
| 357 | foreach my $s (keys %filter) {
|
|---|
| 358 | # Process single variables
|
|---|
| 359 | print $LOG "DEBUG filter{$s}: $filter{$s}\n" if ($debug > 1);
|
|---|
| 360 | my $tmp = $filter{$s};
|
|---|
| 361 | next if (not defined $tmp);
|
|---|
| 362 | # Expand variables if any single one found
|
|---|
| 363 | if ($tmp =~ /\$/) {
|
|---|
| 364 | eval { $tmp =~ s/(\$\w+)/$1/eeg };
|
|---|
| 365 | # special case for ChangeLog
|
|---|
| 366 | } elsif (($tmp =~ /^yes$/) && ($s =~ /^PBLOG$/) && ($line =~ /^PBLOG$/)) {
|
|---|
| 367 | my $p = $defpkgdir{$pkg};
|
|---|
| 368 | $p = $extpkgdir{$pkg} if (not defined $p);
|
|---|
| 369 | changelog($dtype, $pkg, $pbtag, $dsuf, $p, \*DEST);
|
|---|
| 370 | $tmp = "";
|
|---|
| 371 | }
|
|---|
| 372 | $line =~ s|$s|$tmp|;
|
|---|
| 373 | }
|
|---|
| 374 | print DEST $line;
|
|---|
| 375 | }
|
|---|
| 376 | close(FILE);
|
|---|
| 377 | close(DEST);
|
|---|
| 378 | }
|
|---|
| 379 |
|
|---|
| 380 | sub get_pkg {
|
|---|
| 381 |
|
|---|
| 382 | my @pkgs;
|
|---|
| 383 |
|
|---|
| 384 | # Get packages list
|
|---|
| 385 | if (not defined $ARGV[0]) {
|
|---|
| 386 | @pkgs = keys %defpkgdir;
|
|---|
| 387 | } elsif ($ARGV[0] =~ /^all$/) {
|
|---|
| 388 | @pkgs = keys %defpkgdir;
|
|---|
| 389 | if (defined %extpkgdir) {
|
|---|
| 390 | my $k = keys %extpkgdir;
|
|---|
| 391 | if (defined $k) {
|
|---|
| 392 | push(@pkgs, keys %extpkgdir);
|
|---|
| 393 | }
|
|---|
| 394 | }
|
|---|
| 395 | } else {
|
|---|
| 396 | @pkgs = @ARGV;
|
|---|
| 397 | }
|
|---|
| 398 | print $LOG "Packages: ".join(',',@pkgs)."\n" if ($debug >= 0);
|
|---|
| 399 | return(\@pkgs);
|
|---|
| 400 | }
|
|---|
| 401 |
|
|---|
| 402 | sub extract_build_files {
|
|---|
| 403 |
|
|---|
| 404 | my $src=shift;
|
|---|
| 405 | my $dir=shift;
|
|---|
| 406 |
|
|---|
| 407 | system("tar xfz $src $dir >/dev/null");
|
|---|
| 408 | if ($? == -1) {
|
|---|
| 409 | print $LOG "failed to execute: $!\n" if ($debug >= 0);
|
|---|
| 410 | } elsif ($? & 127) {
|
|---|
| 411 | printf $LOG "child died with signal %d, %s coredump\n", ($? & 127), ($? & 128) ? 'with' : 'without' if ($debug >= 0);
|
|---|
| 412 | } else {
|
|---|
| 413 | print $LOG " OK\n" if ($debug >= 0);
|
|---|
| 414 | }
|
|---|
| 415 | opendir(DIR,"$dir") || die "Unable to open directory $dir";
|
|---|
| 416 | foreach my $f (readdir(DIR)) {
|
|---|
| 417 | next if ($f =~ /^\./);
|
|---|
| 418 | rename("$dir/$f",".");
|
|---|
| 419 | }
|
|---|
| 420 | closedir(DIR);
|
|---|
| 421 | pbrm_rf("$dir");
|
|---|
| 422 | }
|
|---|
| 423 |
|
|---|
| 424 | sub syntax {
|
|---|
| 425 |
|
|---|
| 426 | print "Syntax: pb [-vhqt][-p project] <action> [<params>...]\n";
|
|---|
| 427 | print "\n";
|
|---|
| 428 | print "-h : This help file\n";
|
|---|
| 429 | print "-q : Quiet mode\n";
|
|---|
| 430 | print "-t : Test mode (not done yet)\n";
|
|---|
| 431 | print "-v : Verbose mode\n";
|
|---|
| 432 | print "\n";
|
|---|
| 433 | print "-p project : Name of the project you're working on\n";
|
|---|
| 434 | print " (or use the env variable PBPROJ) \n";
|
|---|
| 435 | print "\n";
|
|---|
| 436 | print "<action> can be:\n";
|
|---|
| 437 | print "\n";
|
|---|
| 438 | print "\tcms2build: Create a tar file of the project under your CMS\n";
|
|---|
| 439 | print "\t CMS supported are SVN and CVS\n";
|
|---|
| 440 | print "\t parameters are packages to build\n";
|
|---|
| 441 | print "\t if not using default list\n";
|
|---|
| 442 | print "\n";
|
|---|
| 443 | print "\tbuild2pkg: Create packages for your running distribution \n";
|
|---|
| 444 | print "\t first parameter is version-tag to build\n";
|
|---|
| 445 | print "\t if not using default version-tag\n";
|
|---|
| 446 | print "\t following parameters are packages to build\n";
|
|---|
| 447 | print "\t if not using default list\n";
|
|---|
| 448 | print "\n";
|
|---|
| 449 | print "\n";
|
|---|
| 450 | }
|
|---|