source: ProjectBuilder/devel/pb/bin/pb@ 55

Last change on this file since 55 was 55, checked in by Bruno Cornec, 17 years ago

was Still not good

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