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

Last change on this file since 665 was 665, checked in by Bruno Cornec, 15 years ago
  • Fix a bug where duplicates in VE and VM lists where handled twice leading to errors with patches applied also twice in the same distro. Also more efficient.
  • Property svn:executable set to *
File size: 79.2 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';
[331]13use Getopt::Long qw(:config auto_abbrev no_ignore_case);
[9]14use Data::Dumper;
15use English;
[16]16use File::Basename;
[26]17use File::Copy;
[395]18use File::stat;
19use File::Temp qw(tempdir);
[547]20use Time::localtime qw(localtime);
[13]21use POSIX qw(strftime);
[17]22use lib qw (lib);
[329]23use ProjectBuilder::Version;
[318]24use ProjectBuilder::Base;
[512]25use ProjectBuilder::Display;
[405]26use ProjectBuilder::Conf;
27use ProjectBuilder::Distribution;
28use ProjectBuilder::CMS;
[416]29use ProjectBuilder::Env;
[405]30use ProjectBuilder::Filter;
[473]31use ProjectBuilder::Changelog;
[477]32use Mail::Sendmail;
[473]33
[397]34# Global variables
[5]35my %opts; # CLI Options
[9]36my $action; # action to realize
[320]37my $test = "FALSE"; # Not used
38my $force = 0; # Force VE/VM rebuild
39my $option = ""; # Not used
40my @pkgs; # list of packages
[95]41my $pbtag; # Global Tag variable
42my $pbver; # Global Version variable
[141]43my $pbscript; # Name of the script
[77]44my %pbver; # per package
45my %pbtag; # per package
[53]46my $pbrev; # Global REVISION variable
[152]47my $pbaccount; # Login to use to connect to the VM
[162]48my $pbport; # Port to use to connect to the VM
[199]49my $newver; # New version to create
[331]50my $iso; # ISO image for the VM to create
[5]51
[320]52my @date = pb_get_date();
53my $pbdate = strftime("%Y-%m-%d", @date);
[5]54
[331]55=pod
56
57=head1 NAME
58
59pb, aka project-builder.org - builds packages for your projects
60
61=head1 DESCRIPTION
62
63pb helps you build various packages directly from your project sources.
64Those sources could be handled by a CMS (Configuration Management System)
[628]65such as Subversion, CVS, Mercurial... or being a simple reference to a compressed tar file.
[331]66It's based on a set of configuration files, a set of provided macros to help
67you keeping build files as generic as possible. For example, a single .spec
68file should be required to generate for all rpm based distributions, even
69if you could also have multiple .spec files if required.
70
71=head1 SYNOPSIS
72
[332]73pb [-vhq][-r pbroot][-p project][[-s script -a account -P port][-m mach-1[,...]]][-i iso] <action> [<pkg1> ...]
[331]74
[332]75pb [--verbose][--help][--man][--quiet][--revision pbroot][--project project][[--script script --account account --port port][--machine mach-1[,...]]][--iso iso] <action> [<pkg1> ...]
[331]76
77=head1 OPTIONS
78
79=over 4
80
81=item B<-v|--verbose>
82
83Print a brief help message and exits.
84
85=item B<-q|--quiet>
86
87Do not print any output.
88
89=item B<-h|--help>
90
91Print a brief help message and exits.
92
93=item B<--man>
94
95Prints the manual page and exits.
96
97=item B<-m|--machine machine1[,machine2,...]>
98
99Name of the Virtual Machines (VM) or Virtual Environments (VE) you want to build on (coma separated).
100All if none precised (or use the env variable PBV).
101
102=item B<-s|--script script>
103
104Name of the script you want to execute on the related VMs or VEs.
105
106=item B<-i|--iso iso_image>
107
108Name of the ISO image of the distribution you want to install on the related VMs.
109
110=item B<-a|--account account>
111
112Name of the account to use to connect on the related VMs.
113
114=item B<-P|--port port_number>
115
116Port number to use to connect on the related VMs.\n";
117
118=item B<-p|--project project_name>
119
120Name of the project you're working on (or use the env variable PBPROJ)
121
122=item B<-r|--revision revision>
123
124Path Name of the project revision under the CMS (or use the env variable PBROOT)
125
126=item B<-V|--version new_version>
127
128New version of the project to create based on the current one.
129
130=back
131
132=head1 ARGUMENTS
133
134<action> can be:
135
136=over 4
137
138=item B<cms2build>
139
140Create tar files for the project under your CMS.
[628]141CMS supported are SVN, CVS and Mercurial
[331]142parameters are packages to build
143if not using default list
144
145=item B<build2pkg>
146
147Create packages for your running distribution
148
149=item B<cms2pkg>
150
151cms2build + build2pkg
152
153=item B<build2ssh>
154
155Send the tar files to a SSH host
156
157=item B<cms2ssh>
158
159cms2build + build2ssh
160
161=item B<pkg2ssh>
162
163Send the packages built to a SSH host
164
165=item B<build2vm>
166
167Create packages in VMs, launching them if needed
168and send those packages to a SSH host once built
169VM type supported are QEMU
170
171=item B<build2ve>
172
173Create packages in VEs, creating it if needed
174and send those packages to a SSH host once built
175
176=item B<cms2vm>
177
178cms2build + build2vm
179
180=item B<cms2ve>
181
182cms2build + build2ve
183
184=item B<launchvm>
185
186Launch one virtual machine
187
188=item B<launchve>
189
190Launch one virtual environment
191
192=item B<script2vm>
193
194Launch one virtual machine if needed
195and executes a script on it
196
197=item B<script2ve>
198
199Execute a script in a virtual environment
200
201=item B<newvm>
202
203Create a new virtual machine
204
205=item B<newve>
206
207Create a new virtual environment
208
[346]209=item B<setupvm>
210
211Setup a virtual machine for pb usage
212
213=item B<setupve>
214
215Setup a virtual environment for pb usage
216
[331]217=item B<newver>
218
219Create a new version of the project derived
220from the current one
221
222=item B<newproj>
223
224Create a new project and a template set of
225configuration files under pbconf
226
[471]227=item B<announce>
228
229Announce the availability of the project through various means
230
[557]231=item B<web2ssh>
232
233Deliver the Web site content to the target server using ssh.
234
235=back
236
[331]237<pkgs> can be a list of packages, the keyword 'all' or nothing, in which case the default list of packages is taken (corresponding to the defpkgdir list of arguments in the configuration file).
238
239=head1 WEB SITES
240
241The main Web site of the project is available at L<http://www.project-builder.org/>. Bug reports should be filled using the trac instance of the project at L<http://trac.project-builder.org/>.
242
243=head1 USER MAILING LIST
244
245None exists for the moment.
246
247=head1 CONFIGURATION FILES
248
249Each pb user may have a configuration in F<$HOME/.pbrc>. The values in this file may overwrite any other configuration file value.
250
251Here is an example of such a configuration file:
252
253 #
254 # Define for each project the URL of its pbconf repository
255 # No default option allowed here as they need to be all different
256 #
257 # URL of the pbconf content
258 # This is the format of a classical URL with the extension of additional schema such as
259 # svn+ssh, cvs+ssh, ...
260 #
261 pbconfurl linuxcoe = cvs+ssh://:ext:bcornec@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe/pbconf
262
263 # This is normaly defined in the project's configuration file
264 # Url of the project
265 #
266 pburl linuxcoe = cvs+ssh://:ext:bcornec@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe
267
268 # All these URLs needs to be defined here as the are the entry point
269 # for how to build packages for the project
270 #
271 pbconfurl pb = svn+ssh://svn.project-builder.org/mondo/svn/pb/pbconf
272 pbconfurl mondorescue = svn+ssh://svn.project-builder.org/mondo/svn/project-builder/mondorescue/pbconf
273 pbconfurl collectl = svn+ssh://bruno@svn.mondorescue.org/mondo/svn/project-builder/collectl/pbconf
274 pbconfurl netperf = svn+ssh://svn.mondorescue.org/mondo/svn/project-builder/netperf/pbconf
275
276 # Under that dir will take place everything related to pb
277 # If you want to use VMs/chroot/..., then use $ENV{'HOME'} to make it portable
278 # to your VMs/chroot/...
279 # if not defined then /var/cache
280 pbdefdir default = $ENV{'HOME'}/project-builder
281 pbdefdir pb = $ENV{'HOME'}
282 pbdefdir linuxcoe = $ENV{'HOME'}/LinuxCOE/cvs
283 pbdefdir mondorescue = $ENV{'HOME'}/mondo/svn
284
285 # pbconfdir points to the directory where the CMS content of the pbconfurl is checked out
286 # If not defined, pbconfdir is under pbdefdir/pbproj/pbconf
287 pbconfdir linuxcoe = $ENV{'HOME'}/LinuxCOE/cvs/pbconf
288 pbconfdir mondorescue = $ENV{'HOME'}/mondo/svn/pbconf
289
290 # pbdir points to the directory where the CMS content of the pburl is checked out
291 # If not defined, pbdir is under pbdefdir/pbproj
292 # Only defined if we have access to the dev of the project
293 pbdir linuxcoe = $ENV{'HOME'}/LinuxCOE/cvs
294 pbdir mondorescue = $ENV{'HOME'}/mondo/svn
295
296 # -daemonize doesn't work with qemu 0.8.2
297 vmopt default = -m 384
298
299=head1 AUTHORS
300
301The Project-Builder.org team L<http://trac.project-builder.org/> lead by Bruno Cornec L<mailto:bruno@project-builder.org>.
302
303=head1 COPYRIGHT
304
305Project-Builder.org is distributed under the GPL v2.0 license
306described in the file C<COPYING> included with the distribution.
307
308=cut
309
310# ---------------------------------------------------------------------------
311
312# Old syntax
313#getopts('a:fhi:l:m:P:p:qr:s:vV:',\%opts);
314
[75]315my ($projectbuilderver,$projectbuilderrev) = pb_version_init();
[331]316
[397]317# Initialize the syntax string
318
319pb_syntax_init("pb (aka project-builder.org) Version $projectbuilderver-$projectbuilderrev\n");
320
[331]321GetOptions("help|?|h" => \$opts{'h'},
322 "man" => \$opts{'man'},
323 "verbose|v+" => \$opts{'v'},
324 "quiet|q" => \$opts{'q'},
325 "log-files|l=s" => \$opts{'l'},
326 "force|f" => \$opts{'f'},
327 "account|a=s" => \$opts{'a'},
328 "revision|r=s" => \$opts{'r'},
329 "script|s=s" => \$opts{'s'},
330 "machines|mock|m=s" => \$opts{'m'},
331 "port|P=i" => \$opts{'P'},
332 "project|p=s" => \$opts{'p'},
333 "iso|i=s" => \$opts{'i'},
334 "version|V=s" => \$opts{'V'},
335) || pb_syntax(-1,0);
336
[21]337if (defined $opts{'h'}) {
[331]338 pb_syntax(0,1);
[21]339}
[331]340if (defined $opts{'man'}) {
341 pb_syntax(0,2);
342}
[21]343if (defined $opts{'v'}) {
[495]344 $pbdebug = $opts{'v'};
[21]345}
[320]346if (defined $opts{'f'}) {
347 $force=1;
348}
[21]349if (defined $opts{'q'}) {
[495]350 $pbdebug=-1;
[21]351}
[22]352if (defined $opts{'l'}) {
[495]353 open(pbLOG,"> $opts{'l'}") || die "Unable to log to $opts{'l'}: $!";
354 $pbLOG = \*pbLOG;
355 $pbdebug = 0 if ($pbdebug == -1);
[22]356 }
[495]357pb_log_init($pbdebug, $pbLOG);
358pb_display_init("text","");
[315]359
[67]360# Handle root of the project if defined
361if (defined $opts{'r'}) {
[340]362 $ENV{'PBROOTDIR'} = $opts{'r'};
[67]363}
[91]364# Handle virtual machines if any
365if (defined $opts{'m'}) {
[320]366 $ENV{'PBV'} = $opts{'m'};
[91]367}
[141]368if (defined $opts{'s'}) {
369 $pbscript = $opts{'s'};
370}
[152]371if (defined $opts{'a'}) {
372 $pbaccount = $opts{'a'};
[347]373 die "option -a requires a -s script option" if (not defined $pbscript);
[152]374}
[162]375if (defined $opts{'P'}) {
376 $pbport = $opts{'P'};
377}
[199]378if (defined $opts{'V'}) {
379 $newver = $opts{'V'};
380}
[262]381if (defined $opts{'i'}) {
382 $iso = $opts{'i'};
383}
[108]384
385# Get Action
386$action = shift @ARGV;
[331]387die pb_syntax(-1,1) if (not defined $action);
[108]388
[314]389my ($filteredfiles, $supfiles, $defpkgdir, $extpkgdir);
[273]390my $pbinit = undef;
391$pbinit = 1 if ($action =~ /^newproj$/);
[108]392
[59]393# Handles project name if any
[108]394# And get global params
[353]395($filteredfiles, $supfiles, $defpkgdir, $extpkgdir) = pb_env_init($opts{'p'},$pbinit,$action);
[59]396
[315]397pb_log(0,"Project: $ENV{'PBPROJ'}\n");
398pb_log(0,"Action: $action\n");
[9]399
400# Act depending on action
401if ($action =~ /^cms2build$/) {
[77]402 pb_cms2build();
403} elsif ($action =~ /^build2pkg$/) {
404 pb_build2pkg();
405} elsif ($action =~ /^cms2pkg$/) {
406 pb_cms2build();
407 pb_build2pkg();
[88]408} elsif ($action =~ /^build2ssh$/) {
409 pb_build2ssh();
[220]410} elsif ($action =~ /^cms2ssh$/) {
411 pb_cms2build();
412 pb_build2ssh();
[88]413} elsif ($action =~ /^pkg2ssh$/) {
414 pb_pkg2ssh();
[320]415} elsif ($action =~ /^build2ve$/) {
416 pb_build2v("ve");
[91]417} elsif ($action =~ /^build2vm$/) {
[320]418 pb_build2v("vm");
419} elsif ($action =~ /^cms2ve$/) {
420 pb_cms2build();
421 pb_build2v("ve");
[91]422} elsif ($action =~ /^cms2vm$/) {
423 pb_cms2build();
[320]424 pb_build2v("vm");
[141]425} elsif ($action =~ /^launchvm$/) {
[320]426 pb_launchv("vm",$ENV{'PBV'},0);
427} elsif ($action =~ /^launchve$/) {
428 pb_launchv("ve",$ENV{'PBV'},0);
[142]429} elsif ($action =~ /^script2vm$/) {
[320]430 pb_script2v($pbscript,"vm");
431} elsif ($action =~ /^script2ve$/) {
432 pb_script2v($pbscript,"ve");
[199]433} elsif ($action =~ /^newver$/) {
434 pb_newver();
[320]435} elsif ($action =~ /^newve$/) {
436 pb_launchv("ve",$ENV{'PBV'},1);
[262]437} elsif ($action =~ /^newvm$/) {
[320]438 pb_launchv("vm",$ENV{'PBV'},1);
[346]439} elsif ($action =~ /^setupve$/) {
[353]440 pb_setup_v("ve");
[346]441} elsif ($action =~ /^setupvm$/) {
[353]442 pb_setup_v("vm");
[273]443} elsif ($action =~ /^newproj$/) {
444 # Nothing to do - already done in pb_env_init
[106]445} elsif ($action =~ /^clean$/) {
[471]446 # TBC
447} elsif ($action =~ /^announce$/) {
[498]448 # For announce only. Require avoids the systematic load of these modules
449 require DBI;
[557]450 require DBD::SQLite;
[498]451
[471]452 pb_announce();
[556]453} elsif ($action =~ /^web2ssh$/) {
[547]454 require DBI;
[557]455 require DBD::SQLite;
[547]456
[556]457 pb_cms2build("Web");
458 pb_send2target("Web");
[77]459} else {
[315]460 pb_log(0,"\'$action\' is not available\n");
[331]461 pb_syntax(-2,1);
[77]462}
463
464sub pb_cms2build {
465
[556]466 my $param = shift || undef;
467
468 my $pkg;
469 my @pkgs;
[557]470 my $webdir;
[556]471
[557]472 my %pkgs;
473 my %pb; # Structure to store conf info
474
[556]475 # If Website, then pkg is only the website
476 if ((defined $param) && ($param eq "Web")) {
[557]477 ($webdir) = pb_conf_get("webdir");
478 pb_log(2,"webdir: ".Dumper($webdir)."\n");
479 $pkgs[0] = $webdir->{$ENV{'PBPROJ'}};
[556]480 $extpkgdir = $webdir;
[557]481 pb_log(0,"Package: $pkgs[0]\n");
[556]482 } else {
483 $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
484 @pkgs = @$pkg;
485 }
486
[341]487 my ($scheme, $uri) = pb_cms_init($pbinit);
[331]488
[313]489 my ($pkgv, $pkgt) = pb_conf_get_if("pkgver","pkgtag");
[174]490
[429]491 # declare packager and repo for filtering
492 my ($tmp1, $tmp2) = pb_conf_get("pbpackager","pbrepo");
493 $ENV{'PBPACKAGER'} = $tmp1->{$ENV{'PBPROJ'}};
494 $ENV{'PBREPO'} = $tmp2->{$ENV{'PBPROJ'}};
[174]495
[27]496 foreach my $pbpkg (@pkgs) {
[115]497 $ENV{'PBPKG'} = $pbpkg;
[98]498 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
499 $pbver = $pkgv->{$pbpkg};
[9]500 } else {
[353]501 $pbver = $ENV{'PBPROJVER'};
[9]502 }
[98]503 if ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
504 $pbtag = $pkgt->{$pbpkg};
[9]505 } else {
[353]506 $pbtag = $ENV{'PBPROJTAG'};
[9]507 }
[95]508
[16]509 $pbrev = $ENV{'PBREVISION'};
[319]510 pb_log(0,"\n");
511 pb_log(0,"Management of $pbpkg $pbver-$pbtag (rev $pbrev)\n");
[9]512 die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
[539]513
[16]514 # Clean up dest if necessary. The export will recreate it
[27]515 my $dest = "$ENV{'PBDESTDIR'}/$pbpkg-$pbver";
[74]516 pb_rm_rf($dest) if (-d $dest);
[9]517
518 # Export CMS tree for the concerned package to dest
519 # And generate some additional files
520 $OUTPUT_AUTOFLUSH=1;
[29]521
[9]522 # computes in which dir we have to work
[113]523 my $dir = $defpkgdir->{$pbpkg};
524 $dir = $extpkgdir->{$pbpkg} if (not defined $dir);
[556]525 $dir = $webdir->{$ENV{'PBPROJ'}} if ((defined $param) && ($param eq "Web"));
[315]526 pb_log(2,"def:".Dumper($defpkgdir)." ext: ".Dumper($extpkgdir)." \n");
[9]527
[537]528 # Exporting content from CMS
529 my $preserve = pb_cms_export($uri,"$ENV{'PBDIR'}/$dir",$dest);
[315]530
[435]531 # Generated fake content for test versions to speed up stuff
532 my ($testver) = pb_conf_get_if("testver");
533 my $chglog;
[285]534
[448]535 # Get project info on authors and log file
536 $chglog = "$ENV{'PBROOTDIR'}/$pbpkg/pbcl";
537 $chglog = "$ENV{'PBROOTDIR'}/pbcl" if (! -f $chglog);
538 $chglog = undef if (! -f $chglog);
[285]539
[448]540 my $authors = "$ENV{'PBROOTDIR'}/$pbpkg/pbauthors";
541 $authors = "$ENV{'PBROOTDIR'}/pbauthors" if (! -f $authors);
542 $authors = "/dev/null" if (! -f $authors);
[435]543
[448]544 # Extract cms log history and store it
545 if ((defined $chglog) && (! -f "$dest/NEWS")) {
546 pb_log(2,"Generating NEWS file from $chglog\n");
547 copy($chglog,"$dest/NEWS") || die "Unable to create $dest/NEWS";
[285]548 }
[448]549 pb_cms_log($scheme,"$ENV{'PBDIR'}/$dir",$dest,$chglog,$authors,$testver);
[29]550
[21]551 my %build;
[435]552 my @pt;
553 my $tmpl = "";
[500]554 my %patches;
[91]555
[328]556 @pt = pb_conf_get_if("vmlist","velist");
[340]557 if (defined $pt[0]->{$ENV{'PBPROJ'}}) {
558 $tmpl .= $pt[0]->{$ENV{'PBPROJ'}};
559 }
560 if (defined $pt[1]->{$ENV{'PBPROJ'}}) {
[665]561 # the 2 lists need to be grouped with a ',' separated them
[340]562 if ($tmpl ne "") {
563 $tmpl .= ",";
564 }
565 $tmpl .= $pt[1]->{$ENV{'PBPROJ'}}
566 }
[556]567
[539]568 # Setup %pb structure to allow filtering later on, on files using that structure
[499]569 $pb{'tag'} = $pbtag;
570 $pb{'rev'} = $pbrev;
571 $pb{'ver'} = $pbver;
[540]572 $pb{'pkg'} = $pbpkg;
[499]573 $pb{'date'} = $pbdate;
574 $pb{'defpkgdir'} = $defpkgdir;
575 $pb{'extpkgdir'} = $extpkgdir;
576 $pb{'chglog'} = $chglog;
577 $pb{'packager'} = $ENV{'PBPACKAGER'};
578 $pb{'proj'} = $ENV{'PBPROJ'};
579 $pb{'repo'} = $ENV{'PBREPO'};
[500]580 $pb{'patches'} = \%patches;
581 pb_log(2,"DEBUG: pb: ".Dumper(%pb)."\n");
[556]582
583 # Do not do that for website
584 if ((not defined $param) || ($param ne "Web")) {
[665]585 my %virt;
586 # De-duplicate similar VM and VE
[556]587 foreach my $d (split(/,/,$tmpl)) {
[665]588 $virt{$d} = $d;
589 }
590
591 foreach my $d (keys %virt) {
[556]592 my ($name,$ver,$arch) = split(/-/,$d);
593 chomp($arch);
594 my ($ddir, $dver, $dfam);
[620]595 ($ddir, $dver, $dfam, $pb{'dtype'}, $pb{'suf'}, $pb{'upd'}) = pb_distro_init($name,$ver);
[556]596 pb_log(2,"DEBUG: distro tuple: ".Dumper($ddir, $dver, $dfam, $pb{'dtype'}, $pb{'suf'})."\n");
597 pb_log(2,"DEBUG Filtering PBDATE => $pbdate, PBTAG => $pbtag, PBVER => $pbver\n");
598
599 # We need to compute the real name of the package
600 my $pbrealpkg = pb_cms_get_real_pkg($pbpkg,$pb{'dtype'});
601 $pb{'realpkg'} = $pbrealpkg;
602 pb_log(1,"Virtual package $pbpkg has a real package name of $pbrealpkg on $ddir-$dver\n") if ($pbrealpkg ne $pbpkg);
603
604 # Filter build files from the less precise up to the most with overloading
605 # Filter all files found, keeping the name, and generating in dest
606
607 # Find all build files first relatively to PBROOTDIR
608 # Find also all specific files referenced in the .pb conf file
609 my %bfiles = ();
610 my %pkgfiles = ();
611 $build{"$ddir-$dver-$arch"} = "yes";
612
613 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pb{'dtype'}") {
614 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pb{'dtype'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
615 } elsif (-d "$ENV{'PBROOTDIR'}/$pbpkg/$dfam") {
616 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$dfam",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
617 } elsif (-d "$ENV{'PBROOTDIR'}/$pbpkg/$ddir") {
618 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$ddir",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
619 } elsif (-d "$ENV{'PBROOTDIR'}/$pbpkg/$ddir-$dver") {
620 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$ddir-$dver",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
621 } elsif (-d "$ENV{'PBROOTDIR'}/$pbpkg/$ddir-$dver-$arch") {
622 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$ddir-$dver-$arch",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
623 } else {
624 $build{"$ddir-$dver-$arch"} = "no";
[500]625 next;
626 }
[556]627 pb_log(2,"DEBUG bfiles: ".Dumper(\%bfiles)."\n");
628
629 # Get all filters to apply
630 my $ptr = pb_get_filters($pbpkg, $pb{'dtype'}, $dfam, $ddir, $dver);
631
632 # Prepare local patches for this distro - They are always applied first - May be a problem one day
633 foreach my $p (sort(<$ENV{'PBROOTDIR'}/$pbpkg/pbpatch/*>)) {
634 $patches{"$ddir-$dver-$arch"} .= "," if ((defined $patches{"$ddir-$dver-$arch"}) and ($p =~ /\.all$/));
635 $patches{"$ddir-$dver-$arch"} .= "file://$p" if ($p =~ /\.all$/);
636 $patches{"$ddir-$dver-$arch"} .= "," if ((defined $patches{"$ddir-$dver-$arch"}) and ($p =~ /\.$pb{'dtype'}$/));
637 $patches{"$ddir-$dver-$arch"} .= "file://$p" if ($p =~ /\.$pb{'dtype'}$/);
638 $patches{"$ddir-$dver-$arch"} .= "," if ((defined $patches{"$ddir-$dver-$arch"}) and ($p =~ /\.$dfam$/));
639 $patches{"$ddir-$dver-$arch"} .= "file://$p" if ($p =~ /\.$dfam$/);
640 $patches{"$ddir-$dver-$arch"} .= "," if ((defined $patches{"$ddir-$dver-$arch"}) and ($p =~ /\.$ddir$/));
641 $patches{"$ddir-$dver-$arch"} .= "file://$p" if ($p =~ /\.$ddir$/);
642 $patches{"$ddir-$dver-$arch"} .= "," if ((defined $patches{"$ddir-$dver-$arch"}) and ($p =~ /\.$ddir-$dver$/));
643 $patches{"$ddir-$dver-$arch"} .= "file://$p" if ($p =~ /\.$ddir-$dver$/);
644 $patches{"$ddir-$dver-$arch"} .= "," if ((defined $patches{"$ddir-$dver-$arch"}) and ($p =~ /\.$ddir-$dver-$arch$/));
645 $patches{"$ddir-$dver-$arch"} .= "file://$p" if ($p =~ /\.$ddir-$dver-$arch$/);
[500]646 }
[556]647
648 # Prepare also remote patches to be included - Applied after the local ones
649 foreach my $p ("all","$pb{'dtype'}","$dfam","$ddir","$ddir-$dver","$ddir-$dver-$arch") {
650 my $f = "$ENV{'PBROOTDIR'}/$pbpkg/pbextpatch.$p";
651 next if (not -f $f);
652 if (not open(PATCH,$f)) {
653 pb_display("Unable to open existing external patch file content $f\n");
654 next;
655 }
656 while (<PATCH>) {
657 chomp();
658 $patches{"$ddir-$dver-$arch"} .= "," if (defined $patches{"$ddir-$dver-$arch"});
659 $patches{"$ddir-$dver-$arch"} .= "$_";
660 }
661 close(PATCH);
[16]662 }
[556]663 pb_log(2,"DEBUG: pb->patches: ".Dumper($pb{'patches'})."\n");
664
665 # Apply now all the filters on all the files concerned
666 # destination dir depends on the type of file
667 if (defined $ptr) {
668 # For patch support
669 $pb{'tuple'} = "$ddir-$dver-$arch";
670 foreach my $f (values %bfiles,values %pkgfiles) {
671 pb_filter_file("$ENV{'PBROOTDIR'}/$f",$ptr,"$dest/pbconf/$ddir-$dver-$arch/".basename($f),\%pb);
672 }
673 }
[15]674 }
[556]675 my @found;
676 my @notfound;
677 foreach my $b (keys %build) {
678 push @found,$b if ($build{$b} =~ /yes/);
679 push @notfound,$b if ($build{$b} =~ /no/);
680 }
681 pb_log(0,"Build files generated for ".join(',',sort(@found))."\n");
682 pb_log(0,"No Build files found for ".join(',',sort(@notfound))."\n") if (@notfound);
683 pb_log(2,"DEBUG: patches: ".Dumper(%patches)."\n");
[18]684 }
[500]685
[236]686 # Get the generic filter (all.pbf) and
687 # apply those to the non-build files including those
688 # generated by pbinit if applicable
689
690 # Get only all.pbf filter
[357]691 my $ptr = pb_get_filters($pbpkg);
[236]692
693 my $liste ="";
694 if (defined $filteredfiles->{$pbpkg}) {
695 foreach my $f (split(/,/,$filteredfiles->{$pbpkg})) {
[499]696 pb_filter_file_inplace($ptr,"$dest/$f",\%pb);
[238]697 $liste = "$f $liste";
[236]698 }
699 }
[315]700 pb_log(2,"Files ".$liste."have been filtered\n");
[236]701
[556]702 # Do not do that for website
703 if ((not defined $param) || ($param ne "Web")) {
704 my %tmp;
705 # Filter potential patches (local + remote)
706 pb_log(0,"Delivering and compressing patches ");
707 foreach my $v (keys %patches) {
708 pb_mkdir_p("$dest/pbconf/$v/pbpatch");
709 foreach my $pf (split(/,/,$patches{$v})) {
710 my $pp = basename($pf);
711 pb_cms_export($pf,undef,"$dest/pbconf/$v/pbpatch");
712 pb_filter_file_inplace($ptr,"$dest/pbconf/$v/pbpatch/$pp",\%pb);
713 pb_system("gzip -9f $dest/pbconf/$v/pbpatch/$pp","","quiet");
714 $tmp{$pf} = "";
715 }
[500]716 }
[556]717 foreach my $v (keys %tmp) {
718 pb_log(0,"$v ");
719 }
720 pb_log(0,"\n");
721 } else {
722 # Instead call News generation
723 pb_web_news2html($dest);
[559]724 # And create an empty pbconf
725 pb_mkdir_p("$dest/pbconf");
[560]726 # And prepare the pbscript to execute remotely
727 open(SCRIPT,"> $ENV{'PBDESTDIR'}/pbscript") || die "Unable to create $ENV{'PBDESTDIR'}/pbscript";
728 print SCRIPT "#!/bin/bash\n";
729 print SCRIPT "#set -x\n";
730 print SCRIPT "echo ... Extracting Website content\n";
731 print SCRIPT "find . -type f | grep -Ev '^./$pbpkg-$pbver.tar.gz|^./pbscript' | xargs rm -f non-existent\n";
732 print SCRIPT "find * -type d -depth | xargs rmdir 2> /dev/null \n";
733 print SCRIPT "tar xfz $pbpkg-$pbver.tar.gz\n";
734 print SCRIPT "mv $pbpkg-$pbver/* .\n";
735 print SCRIPT "rm -f $pbpkg-$pbver.tar.gz\n";
736 print SCRIPT "rmdir $pbpkg-$pbver\n";
737 close(SCRIPT);
[499]738 }
739
[265]740 # Prepare the dest directory for archive
[340]741 if (-x "$ENV{'PBROOTDIR'}/$pbpkg/pbinit") {
[499]742 pb_filter_file("$ENV{'PBROOTDIR'}/$pbpkg/pbinit",$ptr,"$ENV{'PBTMP'}/pbinit",\%pb);
[266]743 chmod 0755,"$ENV{'PBTMP'}/pbinit";
[490]744 pb_system("cd $dest ; $ENV{'PBTMP'}/pbinit","Executing init script from $ENV{'PBROOTDIR'}/$pbpkg/pbinit","verbose");
[265]745 }
746
[18]747 # Archive dest dir
[69]748 chdir "$ENV{'PBDESTDIR'}" || die "Unable to change dir to $ENV{'PBDESTDIR'}";
[537]749 if (defined $preserve) {
750 # In that case we want to preserve the original tar file for checksum purposes
751 # The one created is btw equivalent in that case to this one
752 # Maybe check basename of both to be sure they are the same ?
753 pb_log(0,"Preserving original tar file ");
754 move("$preserve","$pbpkg-$pbver.tar.gz");
755 } else {
756 # Possibility to look at PBSRC to guess more the filename
757 pb_system("tar cfz $pbpkg-$pbver.tar.gz --exclude=$pbpkg-$pbver/pbconf $pbpkg-$pbver","Creating $pbpkg tar files compressed");
758 }
[344]759 pb_log(0,"Under $ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz\n");
[493]760 pb_system("tar cfz $pbpkg-$pbver.pbconf.tar.gz $pbpkg-$pbver/pbconf","Creating pbconf tar files compressed");
761 pb_log(0,"Under $ENV{'PBDESTDIR'}/$pbpkg-$pbver.pbconf.tar.gz\n");
[83]762
[357]763 # Keep track of version-tag per pkg
764 $pkgs{$pbpkg} = "$pbver-$pbtag";
[83]765
[288]766 # Final cleanup
767 pb_rm_rf($dest) if (-d $dest);
[9]768 }
[357]769
770 # Keep track of per package version
771 pb_log(2,"DEBUG pkgs: ".Dumper(%pkgs)."\n");
772 open(PKG,"> $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb") || die "Unable to create $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb";
[539]773 foreach my $pbpkg (keys %pkgs) {
[357]774 print PKG "pbpkg $pbpkg = $pkgs{$pbpkg}\n";
775 }
776 close(PKG);
777
778 # Keep track of what is generated by default
779 # We need to store the dir and info on version-tag
780 # Base our content on the existing .pb file
781 copy("$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb","$ENV{'PBDESTDIR'}/pbrc");
782 open(LAST,">> $ENV{'PBDESTDIR'}/pbrc") || die "Unable to create $ENV{'PBDESTDIR'}/pbrc";
783 print LAST "pbroot $ENV{'PBPROJ'} = $ENV{'PBROOTDIR'}\n";
784 print LAST "pbprojver $ENV{'PBPROJ'} = $ENV{'PBPROJVER'}\n";
785 print LAST "pbprojtag $ENV{'PBPROJ'} = $ENV{'PBPROJTAG'}\n";
786 print LAST "pbpackager $ENV{'PBPROJ'} = $ENV{'PBPACKAGER'}\n";
787 close(LAST);
[77]788}
[22]789
[77]790sub pb_build2pkg {
791
[22]792 # Get the running distro to build on
[620]793 my ($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd) = pb_distro_init();
794 pb_log(2,"DEBUG: distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd))."\n");
[22]795
[353]796 # Get list of packages to build
[83]797 # Get content saved in cms2build
[353]798 my $ptr = pb_get_pkg();
799 @pkgs = @$ptr;
800
[500]801 my $arch = pb_get_arch();
802
[353]803 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
[83]804 $pkg = { } if (not defined $pkg);
805
[25]806 chdir "$ENV{'PBBUILDDIR'}";
[126]807 my $made = ""; # pkgs made during build
[27]808 foreach my $pbpkg (@pkgs) {
[88]809 my $vertag = $pkg->{$pbpkg};
[77]810 # get the version of the current package - maybe different
811 ($pbver,$pbtag) = split(/-/,$vertag);
812
[27]813 my $src="$ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz";
[493]814 my $src2="$ENV{'PBDESTDIR'}/$pbpkg-$pbver.pbconf.tar.gz";
[315]815 pb_log(2,"Source file: $src\n");
[493]816 pb_log(2,"Pbconf file: $src2\n");
[25]817
[315]818 pb_log(2,"Working directory: $ENV{'PBBUILDDIR'}\n");
[25]819 if ($dtype eq "rpm") {
820 foreach my $d ('RPMS','SRPMS','SPECS','SOURCES','BUILD') {
[28]821 if (! -d "$ENV{'PBBUILDDIR'}/$d") {
[96]822 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$d") || die "Please ensure that you can write into $ENV{'PBBUILDDIR'} to create $d\nchown the $ENV{'PBBUILDDIR'} directory to your uid";
[28]823 }
[25]824 }
825
[315]826 # Remove in case a previous link/file was there
[301]827 unlink "$ENV{'PBBUILDDIR'}/SOURCES/".basename($src);
[188]828 symlink "$src","$ENV{'PBBUILDDIR'}/SOURCES/".basename($src) || die "Unable to symlink $src in $ENV{'PBBUILDDIR'}/SOURCES";
[25]829 # We need to first extract the spec file
[500]830 my @specfile = pb_extract_build_files($src2,"$pbpkg-$pbver/pbconf/$ddir-$dver-$arch/","$ENV{'PBBUILDDIR'}/SPECS","spec");
[25]831
[493]832 # We need to handle potential patches to upstream sources
[500]833 pb_extract_build_files($src2,"$pbpkg-$pbver/pbconf/$ddir-$dver-$arch/pbpatch/","$ENV{'PBBUILDDIR'}/SOURCES","patch");
[493]834
[315]835 pb_log(2,"specfile: ".Dumper(\@specfile)."\n");
[25]836 # set LANGUAGE to check for correct log messages
837 $ENV{'LANGUAGE'}="C";
[459]838 # Older Redhat use _target_platform in %configure incorrectly
839 my $specialdef = "";
840 if (($ddir eq "redhat") || (($ddir eq "rhel") && ($dver eq "2.1"))) {
841 $specialdef = "--define \'_target_platform \"\"\'";
842 }
[28]843 foreach my $f (@specfile) {
844 if ($f =~ /\.spec$/) {
[621]845 pb_distro_installdeps("$f",$dtype,$pbupd);
[483]846 pb_system("rpmbuild $specialdef --define \'packager $ENV{'PBPACKAGER'}\' --define \"_topdir $ENV{'PBBUILDDIR'}\" -ba $f","Building package with $f under $ENV{'PBBUILDDIR'}","verbose");
[28]847 last;
848 }
849 }
[540]850 # Get the name of the generated packages
851 open(LOG,"$ENV{'PBTMP'}/system.log") || die "Unable to open $ENV{'PBTMP'}/system.log";
852 while (<LOG>) {
[572]853 chomp($_);
[540]854 next if ($_ !~ /^Wrote:/);
855 s|.*/([S]*RPMS.*)|$1|;
[572]856 $made .=" $_";
[540]857 }
[541]858 close(LOG);
[540]859
[118]860 } elsif ($dtype eq "deb") {
[149]861 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
[274]862 pb_system("tar xfz $src","Extracting sources");
[493]863 pb_system("tar xfz $src2","Extracting pbconf");
[149]864
865 chdir "$pbpkg-$pbver" || die "Unable to chdir to $pbpkg-$pbver";
[310]866 pb_rm_rf("debian");
[500]867 symlink "pbconf/$ddir-$dver-$arch","debian" || die "Unable to symlink to pbconf/$ddir-$dver-$arch";
[199]868 chmod 0755,"debian/rules";
[544]869
[621]870 pb_distro_installdeps("debian/control",$dtype,$pbupd);
[544]871 pb_system("dpkg-buildpackage -us -uc -rfakeroot","Building package","verbose");
872 # Get the name of the generated packages
873 open(LOG,"$ENV{'PBTMP'}/system.log") || die "Unable to open $ENV{'PBTMP'}/system.log";
874 while (<LOG>) {
875 chomp();
876 my $tmp = $_;
[567]877 next if ($tmp !~ /^dpkg-deb.*:/);
[544]878 $tmp =~ s|.*../(.*)_(.*).deb.*|$1|;
879 $made="$made $tmp.dsc $tmp.tar.gz $tmp"."_*.deb $tmp"."_*.changes";
[448]880 }
[544]881 close(LOG);
[87]882 } elsif ($dtype eq "ebuild") {
[149]883 my @ebuildfile;
884 # For gentoo we need to take pb as subsystem name
[295]885 # We put every apps here under sys-apps. hope it's correct
[435]886 # We use pb's home dir in order to have a single OVERLAY line
[295]887 my $tmpd = "$ENV{'HOME'}/portage/pb/sys-apps/$pbpkg";
888 pb_mkdir_p($tmpd) if (! -d "$tmpd");
889 pb_mkdir_p("$ENV{'HOME'}/portage/distfiles") if (! -d "$ENV{'HOME'}/portage/distfiles");
[149]890
[295]891 # We need to first extract the ebuild file
[500]892 @ebuildfile = pb_extract_build_files($src2,"$pbpkg-$pbver/pbconf/$ddir-$dver-$arch/","$tmpd","ebuild");
[149]893
894 # Prepare the build env for gentoo
895 my $found = 0;
[295]896 my $pbbd = $ENV{'HOME'};
[150]897 $pbbd =~ s|/|\\/|g;
[295]898 if (-r "/etc/make.conf") {
899 open(MAKE,"/etc/make.conf");
900 while (<MAKE>) {
901 $found = 1 if (/$pbbd\/portage/);
902 }
903 close(MAKE);
[149]904 }
905 if ($found == 0) {
[295]906 pb_system("sudo sh -c 'echo PORTDIR_OVERLAY=\"$ENV{'HOME'}/portage\" >> /etc/make.conf'");
[149]907 }
[295]908 #$found = 0;
909 #if (-r "/etc/portage/package.keywords") {
910 #open(KEYW,"/etc/portage/package.keywords");
911 #while (<KEYW>) {
912 #$found = 1 if (/portage\/pb/);
913 #}
914 #close(KEYW);
915 #}
916 #if ($found == 0) {
917 #pb_system("sudo sh -c \"echo portage/pb >> /etc/portage/package.keywords\"");
918 #}
[149]919
920 # Build
921 foreach my $f (@ebuildfile) {
922 if ($f =~ /\.ebuild$/) {
[621]923 pb_distro_installdeps("$f",$dtype,$pbupd);
[295]924 move($f,"$tmpd/$pbpkg-$pbver.ebuild");
[529]925 pb_system("cd $tmpd ; ebuild $pbpkg-$pbver.ebuild clean ; ebuild $pbpkg-$pbver.ebuild digest ; ebuild $pbpkg-$pbver.ebuild package","verbose");
[295]926 # Now move it where pb expects it
927 pb_mkdir_p("$ENV{'PBBUILDDIR'}/portage/pb/sys-apps/$pbpkg");
928 move("$tmpd/$pbpkg-$pbver.ebuild","$ENV{'PBBUILDDIR'}/portage/pb/sys-apps/$pbpkg");
[149]929 }
930 }
931
[295]932 $made="$made portage/pb/sys-apps/$pbpkg/$pbpkg-$pbver.ebuild";
[437]933 } elsif ($dtype eq "tgz") {
934 # Slackware family
[435]935 $made="$made $pbpkg/$pbpkg-$pbver-*-$pbtag.tgz";
936
937 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
938 pb_system("tar xfz $src","Extracting sources");
[493]939 pb_system("tar xfz $src2","Extracting pbconf");
[435]940 chdir "$pbpkg-$pbver" || die "Unable to chdir to $pbpkg-$pbver";
[500]941 symlink "pbconf/$ddir-$dver-$arch","install" || die "Unable to symlink to pbconf/$ddir-$dver-$arch";
[435]942 if (-x "install/pbslack") {
[621]943 pb_distro_installdeps("./install/pbslack",$dtype,$pbupd);
[435]944 pb_system("./install/pbslack","Building package");
[529]945 pb_system("sudo /sbin/makepkg -p -l y -c y $pbpkg","Packaging $pbpkg","verbose");
[435]946 }
[87]947 } else {
[118]948 die "Unknown dtype format $dtype";
[87]949 }
950 }
[541]951 # Packages check if needed
952 if ($dtype eq "rpm") {
953 if (-f "/usr/bin/rpmlint") {
954 pb_system("rpmlint $made","Checking validity of rpms with rpmlint","verbose");
[572]955 } else {
956 pb_log(0,"rpm packages generated: $made\n");
[541]957 }
958 } elsif ($dtype eq "deb") {
[572]959 my $made2 = "";
[541]960 if (-f "/usr/bin/lintian") {
[545]961 foreach my $f (split(/ /,$made)) {
[611]962 $made2 .= "../$f " if ($f =~ /\.changes$/);
[545]963 }
964 pb_system("lintian $made2","Checking validity of debs with lintian","verbose");
[572]965 } else {
966 pb_log(0,"deb packages generated: $made2\n");
[541]967 }
968 } else {
[572]969 pb_log(0,"No check done for $dtype yet\n");
970 pb_log(0,"Packages generated: $made\n");
[541]971 }
972
[118]973 # Keep track of what is generated so that we can get them back from VMs
[353]974 open(KEEP,"> $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}") || die "Unable to create $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}";
[118]975 print KEEP "$made\n";
976 close(KEEP);
[87]977}
978
[88]979sub pb_build2ssh {
[320]980 pb_send2target("Sources");
[90]981}
[87]982
[90]983sub pb_pkg2ssh {
[320]984 pb_send2target("Packages");
[90]985}
986
[108]987# By default deliver to the the public site hosting the
[320]988# ftp structure (or whatever) or a VM/VE
989sub pb_send2target {
[90]990
991 my $cmt = shift;
[320]992 my $v = shift || undef;
[142]993 my $vmexist = shift || 0; # 0 is FALSE
[200]994 my $vmpid = shift || 0; # 0 is FALSE
[320]995
[444]996 pb_log(2,"DEBUG: pb_send2target($cmt,".Dumper($v).",$vmexist,$vmpid)\n");
[320]997 my $host = "sshhost";
998 my $login = "sshlogin";
999 my $dir = "sshdir";
1000 my $port = "sshport";
1001 my $conf = "sshconf";
1002 my $rebuild = "sshrebuild";
[415]1003 my $tmout = "vmtmout";
1004 my $path = "vmpath";
[348]1005 if (($cmt eq "vm") || ($cmt eq "Script")) {
[320]1006 $login = "vmlogin";
[322]1007 $dir = "pbdefdir";
[320]1008 $tmout = "vmtmout";
1009 $rebuild = "vmrebuild";
1010 # Specific VM
1011 $host = "vmhost";
1012 $port = "vmport";
1013 } elsif ($cmt eq "ve") {
1014 $login = "velogin";
[322]1015 $dir = "pbdefdir";
[320]1016 $tmout = "vetmout";
1017 # Specific VE
1018 $path = "vepath";
1019 $conf = "veconf";
1020 $rebuild = "verebuild";
[556]1021 } elsif ($cmt eq "Web") {
1022 $host = "websshhost";
1023 $login = "websshlogin";
1024 $dir = "websshdir";
1025 $port = "websshport";
[320]1026 }
[158]1027 my $cmd = "";
[471]1028 my $src = "";
1029 my ($odir,$over,$oarch) = (undef, undef, undef);
1030 my ($ddir, $dver, $dfam, $dtype, $pbsuf);
[90]1031
[471]1032 if ($cmt ne "Announce") {
1033 my $ptr = pb_get_pkg();
1034 @pkgs = @$ptr;
[87]1035
[471]1036 # Get the running distro to consider
1037 if (defined $v) {
1038 ($odir,$over,$oarch) = split(/-/,$v);
1039 }
[621]1040 ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init($odir,$over);
[471]1041 pb_log(2,"DEBUG: distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf))."\n");
[87]1042
[471]1043 # Get list of packages to build
1044 # Get content saved in cms2build
1045 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
1046 $pkg = { } if (not defined $pkg);
[87]1047
[471]1048 chdir "$ENV{'PBBUILDDIR'}";
1049 foreach my $pbpkg (@pkgs) {
1050 my $vertag = $pkg->{$pbpkg};
1051 # get the version of the current package - maybe different
1052 ($pbver,$pbtag) = split(/-/,$vertag);
[87]1053
[471]1054 if (($cmt eq "Sources") || ($cmt eq "vm") || ($cmt eq "ve")) {
[493]1055 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz $ENV{'PBDESTDIR'}/$pbpkg-$pbver.pbconf.tar.gz";
[471]1056 if ($cmd eq "") {
1057 $cmd = "ln -sf $pbpkg-$pbver.tar.gz $pbpkg-latest.tar.gz";
1058 } else {
1059 $cmd = "$cmd ; ln -sf $pbpkg-$pbver.tar.gz $pbpkg-latest.tar.gz";
1060 }
[560]1061 } elsif ($cmt eq "Web") {
1062 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver.tar.gz"
[166]1063 }
[118]1064 }
[471]1065 # Adds conf file for availability of conf elements
1066 pb_conf_add("$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb");
[118]1067 }
[417]1068
[320]1069 if (($cmt eq "vm") || ($cmt eq "ve")) {
[444]1070 $src="$src $ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb $ENV{'PBETC'} $ENV{'PBDESTDIR'}/pbrc $ENV{'PBDESTDIR'}/pbscript";
[560]1071 } elsif (($cmt eq "Script") || ($cmt eq "Web")) {
[492]1072 $src="$src $ENV{'PBDESTDIR'}/pbscript";
[560]1073 } elsif ($cmt eq "Announce") {
[471]1074 $src="$src $ENV{'PBTMP'}/pbscript";
[118]1075 } elsif ($cmt eq "Packages") {
1076 # Get package list from file made during build2pkg
[353]1077 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}";
[126]1078 $src = <KEEP>;
[118]1079 chomp($src);
1080 close(KEEP);
[444]1081 $src="$src $ENV{'PBBUILDDIR'}/pbscript" if ($cmt ne "Sources");
[87]1082 }
[320]1083 # Remove potential leading spaces (cause problem with basename)
[132]1084 $src =~ s/^ *//;
[129]1085 my $basesrc = "";
[131]1086 foreach my $i (split(/ +/,$src)) {
1087 $basesrc .= " ".basename($i);
[130]1088 }
[118]1089
[320]1090 pb_log(0,"Sources handled ($cmt): $src\n");
[355]1091 pb_log(2,"values: ".Dumper(($host,$login,$dir,$port,$tmout,$rebuild,$path,$conf))."\n");
[415]1092 my ($sshhost,$sshlogin,$sshdir,$sshport,$vtmout,$vepath) = pb_conf_get($host,$login,$dir,$port,$tmout,$path);
1093 my ($vrebuild,$veconf) = pb_conf_get_if($rebuild,$conf);
[320]1094 pb_log(2,"ssh: ".Dumper(($sshhost,$sshlogin,$sshdir,$sshport,$vtmout,$vrebuild,$vepath,$veconf))."\n");
1095 # Not mandatory
1096 my ($testver) = pb_conf_get_if("testver");
1097
1098 my $mac;
1099 # Useless for VE
1100 if ($cmt ne "ve") {
1101 $mac = "$sshlogin->{$ENV{'PBPROJ'}}\@$sshhost->{$ENV{'PBPROJ'}}";
1102 # Overwrite account value if passed as parameter
1103 $mac = "$pbaccount\@$sshhost->{$ENV{'PBPROJ'}}" if (defined $pbaccount);
[355]1104 pb_log(2, "DEBUG: pbaccount: $pbaccount => mac: $mac\n") if (defined $pbaccount);
[320]1105 }
1106
[108]1107 my $tdir;
[136]1108 my $bdir;
[142]1109 if (($cmt eq "Sources") || ($cmt eq "Script")) {
[471]1110 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/src";
[435]1111 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
1112 # This is a test pkg => target dir is under test
[471]1113 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/test/src";
[435]1114 }
[320]1115 } elsif (($cmt eq "vm") || ($cmt eq "ve")) {
1116 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/$ENV{'PBPROJ'}/delivery";
1117 $bdir = $sshdir->{$ENV{'PBPROJ'}}."/$ENV{'PBPROJ'}/build";
[136]1118 # Remove a potential $ENV{'HOME'} as bdir should be relative to pb's home
1119 $bdir =~ s|\$ENV.+\}/||;
[471]1120 } elsif ($cmt eq "Announce") {
1121 $tdir = "$sshdir->{$ENV{'PBPROJ'}}";
1122 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
1123 # This is a test pkg => target dir is under test
1124 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/test";
1125 }
[556]1126 } elsif ($cmt eq "Web") {
1127 $tdir = "$sshdir->{$ENV{'PBPROJ'}}";
1128 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
1129 # This is a test website => target dir is under test
[650]1130 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/../test";
[556]1131 }
[90]1132 } elsif ($cmt eq "Packages") {
[471]1133 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/$ddir/$dver";
[429]1134
[337]1135 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
[289]1136 # This is a test pkg => target dir is under test
[471]1137 $tdir = $sshdir->{$ENV{'PBPROJ'}}."/test/$ddir/$dver";
[291]1138 }
[429]1139
1140 my $repodir = $tdir;
1141 $repodir =~ s|^$sshdir->{$ENV{'PBPROJ'}}/||;
1142
1143 my ($pbrepo) = pb_conf_get("pbrepo");
1144
1145 # Repository management
[444]1146 open(PBS,"> $ENV{'PBBUILDDIR'}/pbscript") || die "Unable to create $ENV{'PBBUILDDIR'}/pbscript";
[429]1147 if ($dtype eq "rpm") {
1148 # Also make a pbscript to generate yum/urpmi bases
1149 print PBS << "EOF";
[433]1150#!/bin/bash
[429]1151# Prepare a script to ease yum setup
1152cat > $ENV{'PBPROJ'}.repo << EOT
1153[$ENV{'PBPROJ'}]
1154name=$ddir $dver - $ENV{'PBPROJ'} Vanilla Packages
[433]1155baseurl=$pbrepo->{$ENV{'PBPROJ'}}/$repodir
[429]1156enabled=1
1157gpgcheck=0
1158EOT
1159chmod 644 $ENV{'PBPROJ'}.repo
1160
1161# Clean up old repo content
1162rm -rf headers/ repodata/
1163# Create yum repo
1164yum-arch .
1165# Create repodata
1166createrepo .
1167EOF
1168 if ($dfam eq "md") {
1169 # For Mandriva add urpmi management
1170 print PBS << "EOF";
1171# Prepare a script to ease urpmi setup
1172cat > $ENV{'PBPROJ'}.addmedia << EOT
[433]1173urpmi.addmedia $ENV{'PBPROJ'} $pbrepo->{$ENV{'PBPROJ'}}/$repodir with hdlist.cz
[429]1174EOT
1175chmod 755 $ENV{'PBPROJ'}.addmedia
1176
1177# Clean up old repo content
[437]1178rm -f hdlist.cz synthesis.hdlist.cz
[429]1179# Create urpmi repo
1180genhdlist .
1181EOF
1182 }
[484]1183 if ($ddir eq "fedora") {
1184 # Extract the spec file to please Fedora maintainers :-(
1185 print PBS << "EOF";
1186for p in $basesrc; do
1187 echo \$p | grep -q 'src.rpm'
1188 if [ \$\? -eq 0 ]; then
1189 rpm2cpio \$p | cpio -ivdum --quiet '*.spec'
1190 fi
1191done
1192EOF
1193 }
[429]1194 } elsif ($dtype eq "deb") {
1195 # Also make a pbscript to generate apt bases
[460]1196 # Cf: http://www.debian.org/doc/manuals/repository-howto/repository-howto.fr.html
[465]1197 my $rpd = dirname("$pbrepo->{$ENV{'PBPROJ'}}/$repodir");
[460]1198 print PBS << "EOF";
[465]1199#!/bin/bash
1200# Prepare a script to ease apt setup
1201cat > $ENV{'PBPROJ'}.sources.list << EOT
1202deb $rpd $dver contrib
1203deb-src $rpd $dver contrib
[460]1204EOT
[465]1205chmod 644 $ENV{'PBPROJ'}.sources.list
[460]1206
1207# Prepare a script to create apt info file
[465]1208(cd .. ; for a in i386 amd64 ia64; do mkdir -p dists/$dver/contrib/binary-\$a; dpkg-scanpackages -a\$a $dver /dev/null | gzip -c9 > dists/$dver/contrib/binary-\$a/Packages.gz; done; mkdir -p dists/$dver/contrib/source; dpkg-scansources $dver /dev/null | gzip -c9 > dists/$dver/contrib/source/Sources.gz)
[484]1209#(cd .. ; rm -f dists/$dver/Release ; apt-ftparchive release dists/$dver > dists/$dver/Release; gpg --sign -ba -o dists/$dver/Release.gpg dists/$dver/Release)
[460]1210EOF
[586]1211 } elsif ($dtype eq "ebuild") {
1212 # make a pbscript to generate links to latest version
1213 print PBS << "EOF";
1214#!/bin/bash
1215# Prepare a script to create correct links
1216for p in $src; do
1217 echo \$p | grep -q '.ebuild'
1218 if [ \$\? -eq 0 ]; then
1219 j=`basename \$p`
1220 pp=`echo \$j | cut -d'-' -f1`
1221 ln -sf \$j \$pp.ebuild
1222 fi
1223done
1224EOF
[429]1225 }
1226 close(PBS);
[444]1227 chmod 0755,"$ENV{'PBBUILDDIR'}/pbscript";
[90]1228 } else {
1229 return;
[22]1230 }
[239]1231
[320]1232 # Useless for VE
1233 my $nport;
1234 if ($cmt ne "ve") {
1235 $nport = $sshport->{$ENV{'PBPROJ'}};
1236 $nport = "$pbport" if (defined $pbport);
1237 }
1238
[136]1239 # Remove a potential $ENV{'HOME'} as tdir should be relative to pb's home
[132]1240 $tdir =~ s|\$ENV.+\}/||;
1241
[320]1242 my $tm = $vtmout->{$ENV{'PBPROJ'}};
1243
1244 # ssh communication if not VE
[349]1245 # should use a hash instead...
[320]1246 my ($shcmd,$cpcmd,$cptarget,$cp2target);
1247 if ($cmt ne "ve") {
[347]1248 my $keyfile = pb_ssh_get(0);
[435]1249 $shcmd = "ssh -i $keyfile -q -o UserKnownHostsFile=/dev/null -p $nport $mac";
1250 $cpcmd = "scp -i $keyfile -p -o UserKnownHostsFile=/dev/null -P $nport";
[320]1251 $cptarget = "$mac:$tdir";
[351]1252 if ($cmt eq "vm") {
1253 $cp2target = "$mac:$bdir";
1254 }
[320]1255 } else {
1256 my $tp = $vepath->{$ENV{'PBPROJ'}};
1257 $shcmd = "sudo chroot $tp/$v /bin/su - $sshlogin->{$ENV{'PBPROJ'}} -c ";
1258 $cpcmd = "cp -a ";
1259 $cptarget = "$tp/$tdir";
1260 $cp2target = "$tp/$bdir";
1261 }
1262
[471]1263 my $logres = "";
1264 # Do not touch when just announcing
1265 if ($cmt ne "Announce") {
1266 pb_system("$shcmd \"mkdir -p $tdir ; cd $tdir ; echo \'for i in $basesrc; do if [ -f \$i ]; then rm -f \$i; fi; done\ ; $cmd' | bash\"","Preparing $tdir on $cptarget");
1267 } else {
1268 $logres = "> ";
1269 }
[320]1270 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $src $cptarget 2> /dev/null","$cmt delivery in $cptarget");
[444]1271
[320]1272 # For VE we need to change the owner manually - To be tested if needed
1273 #if ($cmt eq "ve") {
1274 #pb_system("cd $cptarget ; sudo chown -R $sshlogin->{$ENV{'PBPROJ'}} .","$cmt chown in $cptarget to $sshlogin->{$ENV{'PBPROJ'}}");
1275 #}
[492]1276 pb_system("$shcmd \"echo \'cd $tdir ; if [ -f pbscript ]; then ./pbscript; fi ; rm -f ./pbscript\' | bash\"","Executing pbscript on $cptarget if needed","verbose");
[320]1277 if (($cmt eq "vm") || ($cmt eq "ve")) {
[128]1278 # Get back info on pkg produced, compute their name and get them from the VM
[353]1279 pb_system("$cpcmd $cp2target/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'} $ENV{'PBBUILDDIR'} 2> /dev/null","Get package names in $cp2target");
1280 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}";
[118]1281 my $src = <KEEP>;
1282 chomp($src);
1283 close(KEEP);
[131]1284 $src =~ s/^ *//;
[136]1285 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$odir/$over");
[320]1286 # Change pgben to make the next send2target happy
[143]1287 my $made = "";
[353]1288 open(KEEP,"> $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}") || die "Unable to write $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}";
[136]1289 foreach my $p (split(/ +/,$src)) {
[139]1290 my $j = basename($p);
[320]1291 pb_system("$cpcmd $cp2target/\'$p\' $ENV{'PBBUILDDIR'}/$odir/$over 2> /dev/null","Package recovery of $j in $cp2target");
[572]1292 $made="$made $odir/$over/$j"; # if (($dtype ne "rpm") || ($j !~ /.src.rpm$/));
[136]1293 }
[143]1294 print KEEP "$made\n";
[139]1295 close(KEEP);
[320]1296 pb_system("$shcmd \"rm -rf $tdir $bdir\"","$cmt cleanup");
[355]1297
[623]1298 # Sign packages locally
1299 if ($dtype eq "rpm") {
[626]1300 #pb_system("rpm --addsign --define \'_signature gpg\' --define \'__gpg_sign_cmd /usr/bin/gpg --batch --no-verbose --no-armor --no-secmem-warning -u \"$ENV{'PBPACKAGER'}\" -sbo %{__signature_filename} %{__plaintext_filename} --use-agent\' $made","Signing RPM packages packages");
[623]1301 } elsif ($dtype eq "deb") {
[626]1302 #pb_system("debsign $made","Signing DEB packages");
[623]1303 } else {
1304 pb_log(0,"I don't know yet how to sign packages for type $dtype. Please give feedback to dev team");
1305 }
1306
[355]1307 # We want to send them to the ssh account so overwrite what has been done before
1308 undef $pbaccount;
[357]1309 pb_log(2,"Before sending pkgs, vmexist: $vmexist, vmpid: $vmpid\n");
[355]1310 pb_send2target("Packages",$odir."-".$over."-".$oarch,$vmexist,$vmpid);
[141]1311 pb_rm_rf("$ENV{'PBBUILDDIR'}/$odir");
[108]1312 }
[442]1313 pb_log(2,"Before halt, vmexist: $vmexist, vmpid: $vmpid\n");
1314 if ((! $vmexist) && (($cmt eq "vm") || ($cmt eq "Script"))) {
1315 pb_system("$shcmd \"sudo /sbin/halt -p \"; sleep $tm ; echo \'if [ -d /proc/$vmpid ]; then kill -9 $vmpid; fi \' | bash ; sleep 10","VM $v halt (pid $vmpid)");
1316 }
[9]1317}
[16]1318
[320]1319sub pb_script2v {
[142]1320 my $pbscript=shift;
[320]1321 my $vtype=shift;
[442]1322 my $force=shift || 0; # Force stop of VM. Default not
1323 my $vm1=shift || undef; # Only that VM to treat
1324 my $vm;
1325 my $all;
[141]1326
[442]1327 pb_log(2,"DEBUG: pb_script2v($pbscript,$vtype,$force,$vm1)\n");
[141]1328 # Prepare the script to be executed on the VM
1329 # in $ENV{'PBDESTDIR'}/pbscript
[142]1330 if ((defined $pbscript ) && ($pbscript ne "$ENV{'PBDESTDIR'}/pbscript")) {
1331 copy($pbscript,"$ENV{'PBDESTDIR'}/pbscript") || die "Unable to create $ENV{'PBDESTDIR'}/pbscript";
1332 chmod 0755,"$ENV{'PBDESTDIR'}/pbscript";
1333 }
[141]1334
[442]1335 if (not defined $vm1) {
1336 ($vm,$all) = pb_get_v($vtype);
1337 } else {
1338 @$vm = ($vm1);
1339 }
[320]1340 my ($vmexist,$vmpid) = (undef,undef);
[142]1341
[141]1342 foreach my $v (@$vm) {
[320]1343 # Launch the VM/VE
1344 if ($vtype eq "vm") {
1345 ($vmexist,$vmpid) = pb_launchv($vtype,$v,0);
[442]1346 pb_log(2,"DEBUG: After pb_launchv, vmexist: $vmexist, vmpid: $vmpid\n");
[141]1347
[320]1348 # Skip that VM if something went wrong
[442]1349 next if (($vmpid == 0) && ($vmexist == 0));
1350
1351 # If force stopping the VM then reset vmexist
1352 if ($force == 1) {
1353 $vmpid = $vmexist;
1354 $vmexist = 0;
1355 }
[320]1356 }
[274]1357
[142]1358 # Gather all required files to send them to the VM
[320]1359 # and launch the build through pbscript
[442]1360 pb_log(2,"DEBUG: Before send2target, vmexist: $vmexist, vmpid: $vmpid\n");
[320]1361 pb_send2target("Script","$v",$vmexist,$vmpid);
[169]1362
[142]1363 }
1364}
1365
[320]1366sub pb_launchv {
1367 my $vtype = shift;
1368 my $v = shift;
1369 my $create = shift || 0; # By default do not create a VM
[310]1370
[442]1371 pb_log(2,"DEBUG: pb_launchv($vtype,$v,$create)\n");
[320]1372 die "No VM/VE defined, unable to launch" if (not defined $v);
1373 # Keep only the first VM in case many were given
1374 $v =~ s/,.*//;
[310]1375
[500]1376 my $arch = pb_get_arch();
[310]1377
[320]1378 # Launch the VMs/VEs
1379 if ($vtype eq "vm") {
1380 die "-i iso parameter needed" if (((not defined $iso) || ($iso eq "")) && ($create != 0));
[310]1381
[415]1382 my ($ptr,$vmopt,$vmpath,$vmport,$vmtmout,$vmsize) = pb_conf_get("vmtype","vmopt","vmpath","vmport","vmtmout","vmsize");
[320]1383
1384 my $vmtype = $ptr->{$ENV{'PBPROJ'}};
1385 if (not defined $ENV{'PBVMOPT'}) {
1386 $ENV{'PBVMOPT'} = "";
[310]1387 }
[639]1388 # Save the current status for later restoration
1389 $ENV{'PBOLDVMOPT'} = $ENV{'PBVMOPT'};
[483]1390 # Set a default timeout of 2 minutes
1391 if (not defined $ENV{'PBVMTMOUT'}) {
1392 $ENV{'PBVMTMOUT'} = "120";
1393 }
1394 if (defined $vmopt->{$v}) {
1395 $ENV{'PBVMOPT'} .= " $vmopt->{$v}" if ($ENV{'PBVMOPT'} !~ / $vmopt->{$v}/);
1396 } elsif (defined $vmopt->{$ENV{'PBPROJ'}}) {
[320]1397 $ENV{'PBVMOPT'} .= " $vmopt->{$ENV{'PBPROJ'}}" if ($ENV{'PBVMOPT'} !~ / $vmopt->{$ENV{'PBPROJ'}}/);
1398 }
[483]1399 if (defined $vmtmout->{$v}) {
1400 $ENV{'PBVMTMOUT'} = $vmtmout->{$v};
1401 } elsif (defined $vmtmout->{$ENV{'PBPROJ'}}) {
1402 $ENV{'PBVMTMOUT'} = $vmtmout->{$ENV{'PBPROJ'}};
1403 }
[320]1404 my $nport = $vmport->{$ENV{'PBPROJ'}};
1405 $nport = "$pbport" if (defined $pbport);
1406
1407 my $cmd;
1408 my $vmcmd; # has to be used for pb_check_ps
1409 my $vmm; # has to be used for pb_check_ps
1410 if ($vmtype eq "qemu") {
1411 my $qemucmd32;
1412 my $qemucmd64;
1413 if ($arch eq "x86_64") {
1414 $qemucmd32 = "/usr/bin/qemu-system-i386";
1415 $qemucmd64 = "/usr/bin/qemu";
1416 } else {
1417 $qemucmd32 = "/usr/bin/qemu";
1418 $qemucmd64 = "/usr/bin/qemu-system-x86_64";
1419 }
1420 if ($v =~ /x86_64/) {
[557]1421 $vmcmd = "$qemucmd64";
1422 # Not needed with latest versions of qemu it seems
1423 #$vmcmd = "$qemucmd64 -no-kqemu";
1424 # This one may now be needed
1425 #$vmcmd = "$qemucmd64 -no-kvm";
[320]1426 } else {
1427 $vmcmd = "$qemucmd32";
1428 }
[641]1429 $vmm = "$vmpath->{$ENV{'PBPROJ'}}/$v.qemu";
1430 if ($create != 0) {
1431 $ENV{'PBVMOPT'} .= " -cdrom $iso -boot d";
1432 }
1433 $cmd = "$vmcmd $ENV{'PBVMOPT'} -redir tcp:$nport:10.0.2.15:22 $vmm"
[320]1434 } elsif ($vmtype eq "xen") {
1435 } elsif ($vmtype eq "vmware") {
[310]1436 } else {
[320]1437 die "VM of type $vmtype not supported. Report to the dev team";
[310]1438 }
[639]1439 # Restore the ENV VAR Value
[641]1440 $ENV{'PBVMOPT'} = $ENV{'PBOLDVMOPT'};
[639]1441
[320]1442 my ($tmpcmd,$void) = split(/ +/,$cmd);
1443 my $vmexist = pb_check_ps($tmpcmd,$vmm);
1444 my $vmpid = 0;
1445 if (! $vmexist) {
1446 if ($create != 0) {
[653]1447 die("Found an existing Virtual machine $vmm. Won't overwrite") if (-r $vmm);
[320]1448 if (($vmtype eq "qemu") || ($vmtype eq "xen")) {
1449 pb_system("/usr/bin/qemu-img create -f qcow2 $vmm $vmsize->{$ENV{'PBPROJ'}}","Creating the QEMU VM");
1450 } elsif ($vmtype eq "vmware") {
1451 } else {
1452 }
1453 }
1454 if (! -f "$vmm") {
1455 pb_log(0,"Unable to find VM $vmm\n");
1456 } else {
1457 pb_system("$cmd &","Launching the VM $vmm");
[483]1458 pb_system("sleep $ENV{'PBVMTMOUT'}","Waiting $ENV{'PBVMTMOUT'} s for VM $v to come up");
[320]1459 $vmpid = pb_check_ps($tmpcmd,$vmm);
[357]1460 pb_log(0,"VM $vmm launched (pid $vmpid)\n");
[320]1461 }
[310]1462 } else {
[320]1463 pb_log(0,"Found an existing VM $vmm (pid $vmexist)\n");
[310]1464 }
[442]1465 pb_log(2,"DEBUG: pb_launchv returns ($vmexist,$vmpid)\n");
[320]1466 return($vmexist,$vmpid);
1467 # VE here
[310]1468 } else {
[320]1469 # Get VE context
[658]1470 my ($ptr,$vetmout,$vepath,$verebuild,$veconf,$vepostinstall) = pb_conf_get("vetype","vetmout","vepath","verebuild","veconf");
1471 my ($veb4pi) = pb_conf_get_if("veb4pi");
[320]1472 my $vetype = $ptr->{$ENV{'PBPROJ'}};
[310]1473
[320]1474 # Get distro context
1475 my ($name,$ver,$darch) = split(/-/,$v);
1476 chomp($darch);
[621]1477 my ($ddir, $dver, $dfam, $dtype, $pbsuf) = pb_distro_init($name,$ver);
[142]1478
[320]1479 if ($vetype eq "chroot") {
1480 # Architecture consistency
1481 if ($arch ne $darch) {
1482 die "Unable to launch a VE of architecture $darch on a $arch platform" if (not (($darch eq "x86_64") && ($arch =~ /i?86/)));
1483 }
[142]1484
[320]1485 if (($create != 0) || ($verebuild->{$ENV{'PBPROJ'}} eq "true") || ($force == 1)) {
1486 # We have to rebuild the chroot
1487 if ($dtype eq "rpm") {
[657]1488 # This was originaly planed to be used with mock => rinse
1489 #pb_system("sudo /usr/sbin/mock --init --resultdir=\"/tmp\" --configdir=\"$veconf->{$ENV{'PBPROJ'}}\" -r $v","Creating the mock VE");
[320]1490 # Once setup we need to install some packages, the pb account, ...
[657]1491 #pb_system("sudo /usr/sbin/mock --install --configdir=\"$veconf->{$ENV{'PBPROJ'}}\" -r $v su","Configuring the mock VE");
[658]1492 my $post = "--before-post-install ";
1493 if (defined $veb4pi->{"$ddir-$dver-$darch"}) {
1494 $post .= $veb4pi->{"$ddir-$dver-$darch"};
1495 } elsif (defined $veb4pi->{"$ddir-$dver"}) {
1496 $post .= $veb4pi->{"$ddir-$dver"};
1497 } elsif (defined $veb4pi->{"$ddir"}) {
1498 $post .= $veb4pi->{"$ddir"};
1499 } elsif (defined $veb4pi->{"default"}) {
1500 $post .= $veb4pi->{"default"};
1501 } else {
1502 $post = "";
1503 }
1504 pb_system("sudo /usr/sbin/rinse --directory \"$vepath->{$ENV{'PBPROJ'}}/$ddir/$dver/$darch\" --arch \"$darch\" --distribution \"$ddir-$dver\" --config \"$veconf->{$ENV{'PBPROJ'}}\" $post","Creating the rinse VE for $ddir-$dver ($darch)", "verbose");
[320]1505 } elsif ($dtype eq "deb") {
1506 pb_system("","Creating the pbuilder VE");
1507 } elsif ($dtype eq "ebuild") {
1508 die "Please teach the dev team how to build gentoo chroot";
1509 } else {
1510 die "Unknown distribution type $dtype. Report to dev team";
1511 }
[310]1512 }
[320]1513 # Nothing more to do for VE. No real launch
[274]1514 } else {
[320]1515 die "VE of type $vetype not supported. Report to the dev team";
[262]1516 }
[141]1517 }
1518}
[142]1519
[639]1520# Return string for date synchro
1521sub pb_date_v {
1522
1523my $vtype = shift;
[652]1524my $v = shift;
[639]1525
1526my ($ntp) = pb_conf_get($vtype."ntp");
1527my $vntp = $ntp->{$ENV{'PBPROJ'}};
1528my $ntpline;
1529
1530if (defined $vntp) {
[652]1531 my ($ntpcmd) = pb_conf_get($vtype."ntpcmd");
1532 my $vntpcmd;
1533 if (defined $ntpcmd->{$v}) {
1534 $vntpcmd = $ntpcmd->{$v};
1535 } elsif (defined $vntpcmd->{$ENV{'PBPROJ'}}) {
1536 $vntpcmd = $ntpcmd->{$ENV{'PBPROJ'}};
1537 } else {
1538 $vntpcmd = "/bin/true";
1539 }
1540 $ntpline = "sudo $vntpcmd $vntp";
[639]1541} else {
1542 $ntpline = undef;
1543}
1544# Force new date to be in the future compared to the date
1545# of the host by adding 1 minute
1546my @date=pb_get_date();
1547$date[1]++;
1548my $upddate = strftime("%m%d%H%M%Y", @date);
1549my $dateline = "sudo date $upddate";
1550return($ntpline,$dateline);
1551}
1552
[320]1553sub pb_build2v {
[118]1554
[320]1555my $vtype = shift;
[142]1556
[320]1557my ($v,$all) = pb_get_v($vtype);
1558
1559# Send tar files when we do a global generation
1560pb_build2ssh() if ($all == 1);
1561
1562my ($vmexist,$vmpid) = (undef,undef);
1563
1564foreach my $v (@$v) {
[652]1565 # Prepare the script to be executed on the VM/VE
1566 # in $ENV{'PBDESTDIR'}/pbscript
1567 open(SCRIPT,"> $ENV{'PBDESTDIR'}/pbscript") || die "Unable to create $ENV{'PBDESTDIR'}/pbscript";
1568 print SCRIPT "#!/bin/bash\n";
1569 print SCRIPT "echo ... Execution needed\n";
1570 print SCRIPT "# This is in directory delivery\n";
1571 print SCRIPT "# Setup the variables required for building\n";
1572 print SCRIPT "export PBPROJ=$ENV{'PBPROJ'}\n";
1573 print SCRIPT "# Preparation for pb\n";
1574 print SCRIPT "mv .pbrc \$HOME\n";
1575 print SCRIPT "cd ..\n";
1576
1577 # Get list of packages to build and get some ENV vars as well
1578 my $ptr = pb_get_pkg();
1579 @pkgs = @$ptr;
1580 my $p = join(' ',@pkgs) if (@pkgs);
1581 print SCRIPT "export PBPROJVER=$ENV{'PBPROJVER'}\n";
1582 print SCRIPT "export PBPROJTAG=$ENV{'PBPROJTAG'}\n";
1583 print SCRIPT "export PBPACKAGER=\"$ENV{'PBPACKAGER'}\"\n";
1584
1585 my ($ntpline,$dateline) = pb_date_v($vtype,$v);
1586 print SCRIPT "# Time sync\n";
1587 if (defined $ntpline) {
1588 print SCRIPT "$ntpline\n";
1589 } else {
1590 print SCRIPT "$dateline\n";
1591 }
1592
1593 # Transmit the verbosity level to the virtual env/mach.
1594 my $verbose = "";
1595 my $i = 0; # minimal debug level
1596 while ($i lt $pbdebug) {
1597 $verbose .= "-v ";
1598 $i++;
1599 }
1600 # Quiet if asked to be so on the original system
1601 $verbose = "-q" if ($pbdebug eq -1);
1602
1603 print SCRIPT "# Build\n";
1604 print SCRIPT "echo Building packages on $vtype...\n";
1605 print SCRIPT "pb $verbose -p $ENV{'PBPROJ'} build2pkg $p\n";
1606 close(SCRIPT);
1607 chmod 0755,"$ENV{'PBDESTDIR'}/pbscript";
1608
[320]1609 if ($vtype eq "vm") {
[142]1610 # Launch the VM
[357]1611 ($vmexist,$vmpid) = pb_launchv($vtype,$v,0);
[118]1612
[274]1613 # Skip that VM if it something went wrong
1614 next if (($vmpid == 0) && ($vmexist == 0));
[658]1615 } else {
1616 # VE
1617 $vmexist = 0;
1618 $vmpid = 0;
[118]1619 }
[320]1620 # Gather all required files to send them to the VM/VE
[347]1621 # and launch the build through pbscript
[357]1622 pb_log(2,"Calling send2target $vtype,$v,$vmexist,$vmpid\n");
[320]1623 pb_send2target($vtype,"$v",$vmexist,$vmpid);
[105]1624}
[320]1625}
[105]1626
[262]1627
[199]1628sub pb_newver {
1629
[204]1630 die "-V Version parameter needed" if ((not defined $newver) || ($newver eq ""));
[340]1631
[366]1632 # Need this call for PBDIR
1633 my ($scheme2,$uri) = pb_cms_init($pbinit);
[361]1634
[415]1635 my ($pbconf) = pb_conf_get("pbconfurl");
[366]1636 $uri = $pbconf->{$ENV{'PBPROJ'}};
1637 my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
1638
[361]1639 # Checking CMS repositories status
[358]1640 my ($pburl) = pb_conf_get("pburl");
[366]1641 ($scheme2, $account, $host, $port, $path) = pb_get_uri($pburl->{$ENV{'PBPROJ'}});
[340]1642
1643 if ($scheme !~ /^svn/) {
[199]1644 die "Only SVN is supported at the moment";
1645 }
[483]1646
[358]1647 my $res = pb_cms_isdiff($scheme,$ENV{'PBROOTDIR'});
[361]1648 die "ERROR: No differences accepted in CMS for $ENV{'PBROOTDIR'} before creating a new version" if ($res != 0);
[358]1649
1650 $res = pb_cms_isdiff($scheme2,$ENV{'PBDIR'});
[361]1651 die "ERROR: No differences accepted in CMS for $ENV{'PBDIR'} before creating a new version" if ($res != 0);
[358]1652
1653 # Tree identical between PBCONFDIR and PBROOTDIR. The delta is what
1654 # we want to get for the root of the new URL
1655
1656 my $tmp = $ENV{'PBROOTDIR'};
1657 $tmp =~ s|^$ENV{'PBCONFDIR'}||;
1658
1659 my $newurl = "$uri/".dirname($tmp)."/$newver";
[366]1660 # Should probably use projver in the old file
1661 my $oldver= basename($tmp);
[361]1662
[366]1663 # Duplicate and extract project-builder part
[361]1664 pb_log(2,"Copying $uri/$tmp to $newurl\n");
[366]1665 pb_cms_copy($scheme,"$uri/$tmp",$newurl);
1666 pb_log(2,"Checkout $newurl to $ENV{'PBROOTDIR'}/../$newver\n");
[383]1667 pb_cms_up($scheme,"$ENV{'PBCONFDIR'}/..");
[361]1668
[366]1669 # Duplicate and extract project
1670 my $newurl2 = "$pburl->{$ENV{'PBPROJ'}}/".dirname($tmp)."/$newver";
1671
1672 pb_log(2,"Copying $pburl->{$ENV{'PBPROJ'}}/$tmp to $newurl2\n");
[632]1673 pb_cms_copy($scheme2,"$pburl->{$ENV{'PBPROJ'}}/$tmp",$newurl2);
[366]1674 pb_log(2,"Checkout $newurl2 to $ENV{'PBDIR'}/../$newver\n");
[632]1675 pb_cms_up($scheme2,"$ENV{'PBDIR'}/..");
[366]1676
[361]1677 # Update the .pb file
[358]1678 open(FILE,"$ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb") || die "Unable to open $ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb";
1679 open(OUT,"> $ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb.new") || die "Unable to write to $ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb.new";
[208]1680 while(<FILE>) {
[361]1681 s/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldver/projver $ENV{'PBPROJ'} = $newver/;
1682 pb_log(0,"Changing projver from $oldver to $newver in $ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb\n") if (/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldver/);
1683 s/^testver/#testver/;
1684 pb_log(0,"Commenting testver in $ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb\n") if (/^testver/);
[211]1685 print OUT $_;
[208]1686 }
1687 close(FILE);
[211]1688 close(OUT);
[358]1689 rename("$ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb.new","$ENV{'PBROOTDIR'}/../$newver/$ENV{'PBPROJ'}.pb");
[363]1690
[479]1691 # Checking pbcl files
1692 foreach my $f (<$ENV{'PBROOTDIR'}/*/pbcl>) {
[590]1693 # Compute new pbcl file
1694 my $f2 = $f;
1695 $f2 =~ s|$ENV{'PBROOTDIR'}|$ENV{'PBROOTDIR'}/../$newver/|;
[479]1696 open(PBCL,$f) || die "Unable to open $f";
1697 my $foundnew = 0;
1698 while (<PBCL>) {
1699 $foundnew = 1 if (/^$newver \(/);
1700 }
1701 close(PBCL);
[590]1702 open(OUT,"> $f2") || die "Unable to write to $f2: $!";
[479]1703 open(PBCL,$f) || die "Unable to open $f";
1704 while (<PBCL>) {
[480]1705 print OUT "$_" if (not /^$oldver \(/);
[479]1706 if ((/^$oldver \(/) && ($foundnew == 0)) {
1707 print OUT "$newver ($pbdate)\n";
1708 print OUT "- TBD\n";
1709 print OUT "\n";
[590]1710 pb_log(0,"WARNING: version $newver not found in $f so added to $f2...\n") if ($foundnew == 0);
[479]1711 }
1712 }
1713 close(OUT);
1714 close(PBCL);
1715 }
1716
[358]1717 pb_log(2,"Checkin $ENV{'PBROOTDIR'}/../$newver\n");
[452]1718 pb_cms_checkin($scheme,"$ENV{'PBROOTDIR'}/../$newver",undef);
[199]1719}
1720
[293]1721#
[320]1722# Return the list of VMs/VEs we are working on
[105]1723# $all is a flag to know if we return all of them
1724# or only some (if all we publish also tar files in addition to pkgs
1725#
[320]1726sub pb_get_v {
[91]1727
[320]1728my $vtype = shift;
1729my @v;
[105]1730my $all = 0;
[320]1731my $vlist;
1732my $pbv = 'PBV';
[91]1733
[320]1734if ($vtype eq "vm") {
1735 $vlist = "vmlist";
1736} elsif ($vtype eq "ve") {
1737 $vlist = "velist";
1738}
1739# Get VM/VE list
1740if ((not defined $ENV{$pbv}) || ($ENV{$pbv} =~ /^all$/)) {
1741 my ($ptr) = pb_conf_get($vlist);
1742 $ENV{$pbv} = $ptr->{$ENV{'PBPROJ'}};
[105]1743 $all = 1;
[91]1744}
[320]1745pb_log(2,"$vtype: $ENV{$pbv}\n");
1746@v = split(/,/,$ENV{$pbv});
1747return(\@v,$all);
[91]1748}
1749
[320]1750# Function to create a potentialy missing pb account on the VM/VE, and adds it to sudo
1751# Needs to use root account to connect to the VM/VE
1752# pb will take your local public SSH key to access
[346]1753# the pb account in the VM later on if needed
1754sub pb_setup_v {
[320]1755
1756my $vtype = shift;
1757
[353]1758my ($vm,$all) = pb_get_v($vtype);
1759
[346]1760# Script generated
1761my $pbscript = "$ENV{'PBDESTDIR'}/setupv";
[320]1762
[652]1763foreach my $v (@$vm) {
1764 # Deal with date sync.
1765 my ($ntpline,$dateline) = pb_date_v($vtype,$v);
[639]1766
[353]1767 # Name of the account to deal with for VM/VE
1768 # Do not use the one passed potentially with -a
1769 my ($pbac) = pb_conf_get($vtype."login");
[354]1770 my ($key,$zero0,$zero1,$zero2);
[639]1771 my ($vmexist,$vmpid);
[346]1772
[353]1773 if ($vtype eq "vm") {
1774 # Prepare the key to be used and transfered remotely
1775 my $keyfile = pb_ssh_get(1);
1776
[517]1777 my ($vmhost,$vmport,$vmntp) = pb_conf_get("vmhost","vmport","vmntp");
[353]1778 my $nport = $vmport->{$ENV{'PBPROJ'}};
1779 $nport = "$pbport" if (defined $pbport);
[347]1780
[353]1781 # Launch the VM
[357]1782 ($vmexist,$vmpid) = pb_launchv($vtype,$v,0);
[347]1783
[353]1784 # Skip that VM if something went wrong
[442]1785 next if (($vmpid == 0) && ($vmexist == 0));
[353]1786
[354]1787 # Store the pub key part in a variable
1788 open(FILE,"$keyfile.pub") || die "Unable to open $keyfile.pub";
1789 ($zero0,$zero1,$zero2) = split(/ /,<FILE>);
1790 close(FILE);
1791
1792 $key = "\Q$zero1";
1793
[498]1794 pb_system("cat $keyfile.pub | ssh -q -o UserKnownHostsFile=/dev/null -p $nport -i $keyfile root\@$vmhost->{$ENV{'PBPROJ'}} \"mkdir -p .ssh ; chmod 700 .ssh ; cat >> .ssh/authorized_keys ; chmod 600 .ssh/authorized_keys\"","Copying local keys to $vtype. This may require the root password");
[353]1795 # once this is done, we can do what we want on the VM remotely
1796 }
1797
1798 # Prepare the script to be executed on the VM/VE
1799 # in $ENV{'PBDESTDIR'}/setupv
1800
1801 open(SCRIPT,"> $pbscript") || die "Unable to create $pbscript";
1802 print SCRIPT << 'EOF';
[320]1803#!/usr/bin/perl -w
1804
[346]1805use strict;
1806use File::Copy;
1807
[517]1808# We should not need in this script more functions than what is provided
1809# by Base and Distribution to avoid problems at exec time.
1810# They are appended at the end.
1811
[495]1812our $pbdebug;
1813our $pbLOG;
1814our $pbsynmsg = "pbscript";
[498]1815our $pbdisplaytype = "text";
1816our $pblocale = "";
[495]1817pb_log_init($pbdebug, $pbLOG);
[427]1818pb_temp_init();
1819
[354]1820EOF
1821 if ($vtype eq "vm") {
1822 print SCRIPT << 'EOF';
1823# Removes duplicate in .ssh/authorized_keys of our key if needed
1824#
1825my $file1="$ENV{'HOME'}/.ssh/authorized_keys";
1826open(PBFILE,$file1) || die "Unable to open $file1";
1827open(PBOUT,"> $file1.new") || die "Unable to open $file1.new";
1828my $count = 0;
1829while (<PBFILE>) {
[517]1830
[354]1831EOF
1832 print SCRIPT << "EOF";
1833 if (/ $key /) {
1834 \$count++;
1835 }
1836print PBOUT \$_ if ((\$count <= 1) || (\$_ !~ / $key /));
1837}
1838close(PBFILE);
1839close(PBOUT);
1840rename("\$file1.new",\$file1);
1841chmod 0600,\$file1;
[517]1842
1843# Sync date
[354]1844EOF
[639]1845 if (defined $ntpline) {
[652]1846 print SCRIPT "system(\"$ntpline\");\n";
1847 } else {
1848 print SCRIPT "system(\"$dateline\");\n";
[639]1849 }
[354]1850 }
1851 print SCRIPT << 'EOF';
1852
1853# Adds $pbac->{$ENV{'PBPROJ'}} as an account if needed
1854#
[346]1855my $file="/etc/passwd";
[320]1856open(PBFILE,$file) || die "Unable to open $file";
1857my $found = 0;
1858while (<PBFILE>) {
[346]1859EOF
[353]1860 print SCRIPT << "EOF";
1861 \$found = 1 if (/^$pbac->{$ENV{'PBPROJ'}}:/);
[346]1862EOF
[353]1863 print SCRIPT << 'EOF';
[320]1864}
1865close(PBFILE);
1866
1867if ( $found == 0 ) {
1868 if ( ! -d "/home" ) {
[427]1869 pb_mkdir("/home");
[320]1870 }
[346]1871EOF
[353]1872 print SCRIPT << "EOF";
[427]1873pb_system("groupadd $pbac->{$ENV{'PBPROJ'}}","Adding group $pbac->{$ENV{'PBPROJ'}}");
1874pb_system("useradd $pbac->{$ENV{'PBPROJ'}} -g $pbac->{$ENV{'PBPROJ'}} -m -d /home/$pbac->{$ENV{'PBPROJ'}}","Adding user $pbac->{$ENV{'PBPROJ'}} (group $pbac->{$ENV{'PBPROJ'}} - home /home/$pbac->{$ENV{'PBPROJ'}}");
1875}
[661]1876EOF
[320]1877
[661]1878 if ($vtype eq "vm") {
1879 print SCRIPT << "EOF";
[354]1880# allow ssh entry to build
1881#
[427]1882mkdir "/home/$pbac->{$ENV{'PBPROJ'}}/.ssh",0700;
[347]1883# Allow those accessing root to access the build account
[427]1884copy("\$ENV{'HOME'}/.ssh/authorized_keys","/home/$pbac->{$ENV{'PBPROJ'}}/.ssh/authorized_keys");
[320]1885chmod 0600,".ssh/authorized_keys";
[427]1886pb_system("chown -R $pbac->{$ENV{'PBPROJ'}}:$pbac->{$ENV{'PBPROJ'}} /home/$pbac->{$ENV{'PBPROJ'}}/.ssh","Finish setting up the SSH env for $pbac->{$ENV{'PBPROJ'}}");
[320]1887
[346]1888EOF
[661]1889}
[353]1890 print SCRIPT << 'EOF';
[347]1891# No passwd for build account only keys
[320]1892$file="/etc/shadow";
1893open(PBFILE,$file) || die "Unable to open $file";
1894open(PBOUT,"> $file.new") || die "Unable to open $file.new";
1895while (<PBFILE>) {
[346]1896EOF
[353]1897 print SCRIPT << "EOF";
1898 s/^$pbac->{$ENV{'PBPROJ'}}:\!\!:/$pbac->{$ENV{'PBPROJ'}}:*:/;
1899 s/^$pbac->{$ENV{'PBPROJ'}}:\!:/$pbac->{$ENV{'PBPROJ'}}:*:/; #SLES 9 e.g.
[346]1900EOF
[353]1901 print SCRIPT << 'EOF';
[320]1902 print PBOUT $_;
1903}
1904close(PBFILE);
1905close(PBOUT);
1906rename("$file.new",$file);
1907chmod 0640,$file;
1908
[448]1909# Keep the VM in text mode
1910$file="/etc/inittab";
[450]1911if (-f $file) {
1912 open(PBFILE,$file) || die "Unable to open $file";
1913 open(PBOUT,"> $file.new") || die "Unable to open $file.new";
1914 while (<PBFILE>) {
1915 s/^(..):5:initdefault:$/$1:3:initdefault:/;
1916 print PBOUT $_;
1917 }
1918 close(PBFILE);
1919 close(PBOUT);
1920 rename("$file.new",$file);
1921 chmod 0640,$file;
[448]1922}
1923
[320]1924# pb has to be added to portage group on gentoo
1925
[346]1926# Adapt sudoers
1927$file="/etc/sudoers";
1928open(PBFILE,$file) || die "Unable to open $file";
1929open(PBOUT,"> $file.new") || die "Unable to open $file.new";
1930while (<PBFILE>) {
1931EOF
[353]1932 print SCRIPT << "EOF";
1933 next if (/^$pbac->{$ENV{'PBPROJ'}} /);
[346]1934EOF
[353]1935 print SCRIPT << 'EOF';
[346]1936 s/Defaults[ \t]+requiretty//;
1937 print PBOUT $_;
1938}
1939close(PBFILE);
1940EOF
[353]1941 print SCRIPT << "EOF";
1942# This is needed in order to be able to halt the machine from the $pbac->{$ENV{'PBPROJ'}} account at least
1943print PBOUT "$pbac->{$ENV{'PBPROJ'}} ALL=(ALL) NOPASSWD:ALL\n";
[346]1944EOF
[353]1945 print SCRIPT << 'EOF';
[346]1946close(PBOUT);
1947rename("$file.new",$file);
1948chmod 0440,$file;
1949
1950EOF
[353]1951
1952 my $SCRIPT = \*SCRIPT;
1953
1954 pb_install_deps($SCRIPT);
1955
1956 print SCRIPT << 'EOF';
[346]1957# Suse wants sudoers as 640
[528]1958if (($ddir eq "sles") || (($ddir eq "suse")) && ($dver =~ /10.[012]/)) {
[346]1959 chmod 0640,$file;
1960}
1961
[565]1962pb_system("rm -rf ProjectBuilder-* ; wget --passive-ftp ftp://ftp.mondorescue.org/src/ProjectBuilder-latest.tar.gz ; tar xvfz ProjectBuilder-latest.tar.gz ; cd ProjectBuilder-* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf ProjectBuilder-* ; rm -rf project-builder-* ; wget --passive-ftp ftp://ftp.mondorescue.org/src/project-builder-latest.tar.gz ; tar xvfz project-builder-latest.tar.gz ; cd project-builder-* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf project-builder-* ;","Building Project-Builder");
[358]1963system "pb 2>&1 | head -5";
[357]1964EOF
[517]1965 # Adds pb_distro_init from ProjectBuilder::Distribution and Base
[353]1966 foreach my $d (@INC) {
[405]1967 my @f = ("$d/ProjectBuilder/Base.pm","$d/ProjectBuilder/Distribution.pm");
1968 foreach my $f (@f) {
1969 if (-f "$f") {
1970 open(PBD,"$f") || die "Unable to open $f";
1971 while (<PBD>) {
[427]1972 next if (/^package/);
1973 next if (/^use Exporter/);
1974 next if (/^use ProjectBuilder::/);
1975 next if (/^our /);
[405]1976 print SCRIPT $_;
1977 }
1978 close(PBD);
[353]1979 }
[347]1980 }
1981 }
[353]1982 close(SCRIPT);
1983 chmod 0755,"$pbscript";
1984
[442]1985 # That build script needs to be run as root and force stop of VM at end
[353]1986 $pbaccount = "root";
[442]1987
1988 # Force shutdown of VM exept if it was already launched
1989 my $force = 0;
1990 if ((! $vmexist) && ($vtype eq "vm")) {
1991 $force = 1;
1992 }
1993
1994 pb_script2v($pbscript,$vtype,$force,$v);
[347]1995}
[353]1996return;
[346]1997}
1998
[347]1999sub pb_install_deps {
[346]2000
[348]2001my $SCRIPT = shift;
[346]2002
[348]2003print {$SCRIPT} << 'EOF';
[346]2004# We need to have that pb_distro_init function
[347]2005# Get it from Project-Builder::Distribution
[620]2006my ($ddir, $dver, $dfam, $dtype, $pbsuf, $pbupd) = pb_distro_init();
[320]2007print "distro tuple: ".join(',',($ddir, $dver, $dfam, $dtype, $pbsuf))."\n";
2008
2009# Get and install pb
[437]2010my $insdm = "rm -rf Date-Manip* ; wget http://search.cpan.org/CPAN/authors/id/S/SB/SBECK/Date-Manip-5.54.tar.gz ; tar xvfz Date-Manip-5.54.tar.gz ; cd Date-Manip* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf Date-Manip*";
[357]2011my $insmb = "rm -rf Module-Build* ; wget http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/Module-Build-0.2808.tar.gz ; tar xvfz Module-Build-0.2808.tar.gz ; cd Module-Build* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf Module-Build*";
[498]2012my $insfm = "rm -rf File-MimeInfo* ; wget http://search.cpan.org/CPAN/authors/id/P/PA/PARDUS/File-MimeInfo/File-MimeInfo-0.15.tar.gz ; tar xvfz File-MimeInfo-0.15.tar.gz ; cd File-MimeInfo* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf File-MimeInfo*";
[357]2013my $insfb = "rm -rf File-Basedir* ; wget http://search.cpan.org/CPAN/authors/id/P/PA/PARDUS/File-BaseDir-0.03.tar.gz ; tar xvfz File-BaseDir-0.03.tar.gz ; cd File-BaseDir* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf File-BaseDir*";
[498]2014my $insms = "rm -rf Mail-Sendmail* ; wget http://search.cpan.org/CPAN/authors/id/M/MI/MIVKOVIC/Mail-Sendmail-0.79.tar.gz ; tar xvfz Mail-Sendmail-0.79.tar.gz ; cd Mail-Sendmail* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf Mail-Sendmail*";
[507]2015my $inslg = "rm -rf gettext* ; wget http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.05.tar.gz ; tar xvfz gettext-1.05.tar.gz ; cd gettext* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf gettext*";
[427]2016my $cmtdm = "Installing Date-Manip perl module";
2017my $cmtmb = "Installing Module-Build perl module";
2018my $cmtfm = "Installing File-MimeInfo perl module";
2019my $cmtfb = "Installing File-Basedir perl module";
[498]2020my $cmtms = "Installing Perl-Sendmail perl module";
[619]2021my $cmtlg = "Installing Perl-gettext perl module";
[427]2022my $cmtall = "Installing required modules";
[357]2023
[320]2024if ( $ddir eq "fedora" ) {
[427]2025 pb_system("yum clean all","Cleaning yum env");
[619]2026 if ($dver == 4) {
[622]2027 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"rpm-build wget patch ntp sudo perl-DateManip perl-ExtUtils-MakeMaker"));
[427]2028 pb_system("$insmb","$cmtmb");
2029 pb_system("$insfm","$cmtfm");
2030 pb_system("$insfb","$cmtfb");
[517]2031 pb_system("$insms","$cmtms");
[507]2032 pb_system("$inslg","$cmtlg");
[517]2033 } else {
[622]2034 my $addp = "";
[619]2035 if ($dver > 9) {
[622]2036 $addp = "perl-gettext";
[619]2037 } else {
2038 pb_system("$inslg","$cmtlg");
2039 }
[622]2040 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"rpm-build wget patch ntp sudo perl-DateManip perl-ExtUtils-MakeMaker perl-File-MimeInfo perl-Mail-Sendmail $addp"));
[357]2041 }
2042} elsif (( $dfam eq "rh" ) || ($ddir eq "sles") || (($ddir eq "suse") && (($dver eq "10.1") || ($dver eq "10.0"))) || ($ddir eq "slackware")) {
[358]2043 # Suppose pkg are installed already as no online mirror available
[427]2044 pb_system("rpm -e lsb 2>&1 > /dev/null","Removing lsb package");
2045 pb_system("$insdm","$cmtdm");
2046 pb_system("$insmb","$cmtmb");
2047 pb_system("$insfm","$cmtfm");
2048 pb_system("$insfb","$cmtfb");
[498]2049 pb_system("$insms","$cmtms");
[507]2050 pb_system("$inslg","$cmtlg");
[320]2051} elsif ($ddir eq "suse") {
2052 # New OpenSuSE
[652]2053 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"make wget patch sudo ntp"));
[427]2054 pb_system("$insmb","$cmtmb");
2055 pb_system("$insfm","$cmtfm");
2056 pb_system("$insfb","$cmtfb");
[652]2057 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"perl-Date-Manip perl-File-HomeDir perl-Mail-Sendmail"));
2058 if ($dver < 11) {
2059 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"ntp"));
2060 } else {
2061 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"sntp"));
2062 }
[320]2063} elsif ( $dfam eq "md" ) {
[622]2064 my $addp = "";
[357]2065 if (($ddir eq "mandrake") && ($dver eq "10.1")) {
[427]2066 pb_system("$insdm","$cmtdm");
[507]2067 pb_system("$inslg","$cmtlg");
[357]2068 } else {
[622]2069 $addp ="perl-DateManip perl-Locale-gettext";
[357]2070 }
[622]2071 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"rpm-build wget sudo patch ntp-client perl-File-MimeInfo perl-Mail-Sendmail perl-Locale-gettext $addp"));
[320]2072} elsif ( $dfam eq "du" ) {
2073 if (( $dver eq "3.1" ) && ($ddir eq "debian")) {
[427]2074 pb_system("$insfb","$cmtfb");
2075 pb_system("$insfm","$cmtfm");
[622]2076 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"wget patch ssh sudo debian-builder dh-make fakeroot ntpdate libmodule-build-perl libdate-manip-perl libmail-sendmail-perl liblocale-gettext-perl"));
[320]2077 } else {
[622]2078 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"wget patch openssh-server dpkg-dev sudo debian-builder dh-make fakeroot ntpdate libfile-mimeinfo-perl libmodule-build-perl libdate-manip-perl libmail-sendmail-perl liblocale-gettext-perl"));
[320]2079 }
2080} elsif ( $dfam eq "gen" ) {
[427]2081 #system "emerge -u system";
[622]2082 pb_distro_installdeps(undef,$dtype,$pbupd,pb_distro_only_deps_needed($dtype,"wget sudo ntp DateManip File-MimeInfo Mail-Sendmail Locale-gettext"));
[320]2083} else {
[495]2084 pb_log(0,"No pkg to install\n");
[320]2085}
2086EOF
2087}
2088
[471]2089sub pb_announce {
2090
[473]2091 # Get all required parameters
[477]2092 my ($pbpackager,$pbrepo,$pbml,$pbsmtp) = pb_conf_get("pbpackager","pbrepo","pbml","pbsmtp");
[471]2093 my ($pkgv, $pkgt, $testver) = pb_conf_get_if("pkgver","pkgtag","testver");
2094 my $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
2095 my @pkgs = @$pkg;
2096 my %pkgs;
2097 my $first = 0;
2098
[473]2099 # Command to find packages on repo
[471]2100 my $findstr = "find . ";
[473]2101 # Generated announce files
2102 my @files;
[471]2103
2104 foreach my $pbpkg (@pkgs) {
2105 if ($first != 0) {
2106 $findstr .= "-o ";
2107 }
2108 $first++;
2109 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
2110 $pbver = $pkgv->{$pbpkg};
2111 } else {
2112 $pbver = $ENV{'PBPROJVER'};
2113 }
2114 if ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
2115 $pbtag = $pkgt->{$pbpkg};
2116 } else {
2117 $pbtag = $ENV{'PBPROJTAG'};
2118 }
2119
[547]2120 # TODO: use virtual/real names here now
[471]2121 $findstr .= "-name \'$pbpkg-$pbver-$pbtag\.*.rpm\' -o -name \'$pbpkg"."_$pbver*\.deb\' -o -name \'$pbpkg-$pbver\.ebuild\' ";
[473]2122
2123 my $chglog;
2124
2125 # Get project info on log file and generate tmp files used later on
2126 pb_cms_init($pbinit);
2127 $chglog = "$ENV{'PBROOTDIR'}/$pbpkg/pbcl";
2128 $chglog = "$ENV{'PBROOTDIR'}/pbcl" if (! -f $chglog);
2129 $chglog = undef if (! -f $chglog);
2130
2131 open(OUT,"> $ENV{'PBTMP'}/$pbpkg.ann") || die "Unable to create $ENV{'PBTMP'}/$pbpkg.ann: $!";
[585]2132 my %pb;
2133 $pb{'dtype'} = "announce";
2134 $pb{'realpkg'} = $pbpkg;
2135 $pb{'ver'} = $pbver;
2136 $pb{'tag'} = $pbtag;
2137 $pb{'suf'} = "N/A"; # Should not be empty even if unused
2138 $pb{'date'} = $pbdate;
2139 $pb{'chglog'} = $chglog;
2140 $pb{'packager'} = $pbpackager;
2141 $pb{'proj'} = $ENV{'PBPROJ'};
2142 $pb{'repo'} = $pbrepo;
2143 pb_changelog(\%pb,\*OUT,"yes");
[473]2144 close(OUT);
2145 push(@files,"$ENV{'PBTMP'}/$pbpkg.ann");
[471]2146 }
2147 $findstr .= " | grep -Ev \'src.rpm\'";
2148 if ((not defined $testver) || (not defined $testver->{$ENV{'PBPROJ'}}) || ($testver->{$ENV{'PBPROJ'}} !~ /true/i)) {
2149 $findstr .= " | grep -v ./test/";
2150 }
2151
2152 # Prepare the command to run and execute it
2153 open(PBS,"> $ENV{'PBTMP'}/pbscript") || die "Unable to create $ENV{'PBTMP'}/pbscript";
2154 print PBS "$findstr\n";
2155 close(PBS);
2156 chmod 0755,"$ENV{'PBTMP'}/pbscript";
2157 pb_send2target("Announce");
2158
[490]2159 # Get subject line
2160 my $sl = "Project $ENV{'PBPROJ'} version $ENV{'PBPROJVER'} is now available";
[495]2161 pb_log(0,"Please enter the title of your announce\n");
2162 pb_log(0,"(By default: $sl)\n");
[490]2163 my $sl2 = <STDIN>;
2164 $sl = $sl2 if ($sl2 !~ /^$/);
2165
[471]2166 # Prepare a template of announce
[473]2167 open(ANN,"> $ENV{'PBTMP'}/announce.html") || die "Unable to create $ENV{'PBTMP'}/announce.html: $!";
[471]2168 print ANN << "EOF";
[490]2169$sl</p>
[471]2170
[473]2171<p>The project team is happy to announce the availability of a newest version of $ENV{'PBPROJ'} $ENV{'PBPROJVER'}. Enjoy it as usual!</p>
[471]2172<p>
2173Now available at <a href="$pbrepo->{$ENV{'PBPROJ'}}">$pbrepo->{$ENV{'PBPROJ'}}</a>
2174</p>
2175<p>
2176EOF
2177 open(LOG,"$ENV{'PBTMP'}/system.log") || die "Unable to read $ENV{'PBTMP'}/system.log: $!";
[473]2178 my $col = 2;
2179 my $i = 1;
2180 print ANN << 'EOF';
2181<TABLE WIDTH="700" CELLPADDING="0" CELLSPACING="0" BORDER="0">
2182<TR>
2183EOF
[471]2184 while (<LOG>) {
[473]2185 print ANN "<TD>$_</TD>";
2186 $i++;
2187 if ($i > $col) {
2188 print ANN "</TR>\n<TR>";
2189 $i = 1;
2190 }
[471]2191 }
2192 close(LOG);
[473]2193 print ANN << "EOF";
2194</TR>
2195</TABLE>
2196</p>
[471]2197
[473]2198<p>As usual source packages are also available in the same directory.</p>
2199
2200<p>
2201Changes are :
2202</p>
2203<p>
2204EOF
2205 # Get each package changelog content
2206 foreach my $f (sort(@files)) {
2207 open(IN,"$f") || die "Unable to read $f:$!";
2208 while (<IN>) {
2209 print ANN $_;
2210 }
2211 close(IN);
2212 print ANN "</p><p>\n";
2213 }
2214 print ANN "</p>\n";
[471]2215 close(ANN);
[473]2216
2217 # Allow for modification
2218 pb_system("vi $ENV{'PBTMP'}/announce.html","Allowing modification of the announce","noredir");
2219
2220 # Store it in DB for external usage (Web pages generation)
2221 my $db = "$ENV{'PBCONFDIR'}/announces3.sql";
2222
2223 my $precmd = "";
2224 if (! -f $db) {
2225 $precmd = "CREATE TABLE announces (id INTEGER PRIMARY KEY AUTOINCREMENT, date DATE, announce VARCHAR[65535])";
2226 }
2227
2228 my $dbh = DBI->connect("dbi:SQLite:dbname=$db","","",
2229 { RaiseError => 1, AutoCommit => 1 })
2230 || die "Unable to connect to $db";
2231
2232 if ($precmd ne "") {
2233 my $sth = $dbh->prepare(qq{$precmd})
2234 || die "Unable to create table into $db";
2235 $sth->execute();
2236 }
2237
2238 # To read whole file
2239 local $/;
2240 open(ANN,"$ENV{'PBTMP'}/announce.html") || die "Unable to read $ENV{'PBTMP'}/announce.html: $!";
2241 my $announce = <ANN>;
2242 close(ANN);
2243
2244 pb_log(2,"INSERT INTO announces VALUES (NULL, $pbdate, $announce)");
2245 my $sth = $dbh->prepare(qq{INSERT INTO announces VALUES (NULL,?,?)})
2246 || die "Unable to insert into $db";
2247 $sth->execute($pbdate, $announce);
2248 $dbh->disconnect;
2249
2250 # Then deliver it on the Web
2251 # $TOOLHOME/livwww www
2252
2253 # Mail it to project's ML
2254 open(ML,"| w3m -dump -T text/html > $ENV{'PBTMP'}/announce.txt") || die "Unable to create $ENV{'PBTMP'}/announce.txt: $!";
2255 print ML << 'EOF';
2256<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
2257
2258<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="en" lang="en">
2259 <head>
2260 </head>
2261 <body>
2262 <p>
2263EOF
2264 open(ANN,"$ENV{'PBTMP'}/announce.html") || die "Unable to read $ENV{'PBTMP'}/announce.html: $!";
2265 while(<ANN>) {
2266 print ML $_;
2267 }
2268 print ML << 'EOF';
2269</body>
2270</html>
2271EOF
2272 close(ML);
2273
[477]2274 # To read whole file
2275 local $/;
2276 open(ANN,"$ENV{'PBTMP'}/announce.txt") || die "Unable to read $ENV{'PBTMP'}/announce.txt: $!";
2277 my $msg = <ANN>;
2278 close(ANN);
2279
2280 # Preparation of headers
2281
2282 my %mail = (
2283 To => $pbml->{$ENV{'PBPROJ'}},
2284 From => $pbpackager->{$ENV{'PBPROJ'}},
2285 Smtp => $pbsmtp->{$ENV{'PBPROJ'}},
2286 Body => $msg,
[490]2287 Subject => "[ANNOUNCE] $sl",
[477]2288 );
2289
2290 # Send mail
2291 sendmail(%mail) or die "Unable to send mail ($Mail::Sendmail::error): $Mail::Sendmail::log";
[471]2292}
2293
[547]2294#
2295# Creates a set of HTML file containing the news for the project
2296# based on what has been generated by the pb_announce function
2297#
2298sub pb_web_news2html {
2299
[556]2300 my $dest = shift || $ENV{'PBTMP'};
2301
[547]2302 # Get all required parameters
2303 my ($pkgv, $pkgt, $testver) = pb_conf_get_if("pkgver","pkgtag","testver");
2304
2305 # DB of announces for external usage (Web pages generation)
2306 my $db = "$ENV{'PBCONFDIR'}/announces3.sql";
2307
2308 my $dbh = DBI->connect("dbi:SQLite:dbname=$db","","",
2309 { RaiseError => 1, AutoCommit => 1 })
2310 || die "Unable to connect to $db";
2311 # For date handling
2312 $ENV{LANGUAGE}="C";
[559]2313 my $firstjan = strftime("%Y-%m-%d", 0, 0, 0, 1, 0, localtime->year(), 0, 0, -1);
2314 my $oldfirst = strftime("%Y-%m-%d", 0, 0, 0, 1, 0, localtime->year()-1, 0, 0, -1);
2315 pb_log(2,"firstjan: $firstjan, oldfirst: $oldfirst, pbdate:$pbdate\n");
[547]2316 my $all = $dbh->selectall_arrayref("SELECT id,date,announce FROM announces ORDER BY date DESC");
[556]2317 my %news;
2318 $news{"cy"} = ""; # current year's news
2319 $news{"ly"} = ""; # last year news
2320 $news{"py"} = ""; # previous years news
2321 $news{"fp"} = ""; # first page news
[547]2322 my $cpt = 4; # how many news for first page
2323 # Extract info from DB
2324 foreach my $row (@$all) {
2325 my ($id, $date, $announce) = @$row;
[559]2326 $news{"cy"} = $news{"cy"}."<p><B>$date</B> $announce\n" if ((($date cmp $pbdate) le 0) && (($firstjan cmp $date) le 0));
2327 $news{"ly"} = $news{"ly"}."<p><B>$date</B> $announce\n" if ((($date cmp $firstjan) le 0) && (($oldfirst cmp $date) le 0));
2328 $news{"py"} = $news{"py"}."<p><B>$date</B> $announce\n" if (($date cmp $oldfirst) le 0);
[556]2329 $news{"fp"} = $news{"fp"}."<p><B>$date</B> $announce\n" if ($cpt > 0);
[547]2330 $cpt--;
2331 }
[556]2332 pb_log(1,"news{fp}: ".$news{"fp"}."\n");
[547]2333 $dbh->disconnect;
[556]2334
2335 # Generate the HTML content
2336 foreach my $pref (keys %news) {
2337 open(NEWS,"> $dest/pb_web_$pref"."news.html") || die "Unable to create $dest/pb_web_$pref"."news.html: $!";
2338 print NEWS "$news{$pref}";
2339 close(NEWS);
2340 }
[547]2341}
2342
[556]2343
[347]2344# Return the SSH key file to use
2345# Potentially create it if needed
2346
2347sub pb_ssh_get {
2348
2349my $create = shift || 0; # Do not create keys by default
2350
2351# Check the SSH environment
2352my $keyfile = undef;
2353
2354# We have specific keys by default
2355$keyfile = "$ENV{'HOME'}/.ssh/pb_dsa";
[348]2356if (!(-e $keyfile) && ($create eq 1)) {
[347]2357 pb_system("ssh-keygen -q -b 1024 -N '' -f $keyfile -t dsa","Generating SSH keys for pb");
2358}
2359
2360$keyfile = "$ENV{'HOME'}/.ssh/id_rsa" if (-s "$ENV{'HOME'}/.ssh/id_rsa");
2361$keyfile = "$ENV{'HOME'}/.ssh/id_dsa" if (-s "$ENV{'HOME'}/.ssh/id_dsa");
2362$keyfile = "$ENV{'HOME'}/.ssh/pb_dsa" if (-s "$ENV{'HOME'}/.ssh/pb_dsa");
2363die "Unable to find your public ssh key under $keyfile" if (not defined $keyfile);
2364return($keyfile);
2365}
2366
2367
[145]2368# Returns the pid of a running VM command using a specific VM file
[142]2369sub pb_check_ps {
2370 my $vmcmd = shift;
2371 my $vmm = shift;
2372 my $vmexist = 0; # FALSE by default
2373
2374 open(PS, "ps auxhww|") || die "Unable to call ps";
2375 while (<PS>) {
2376 next if (! /$vmcmd/);
2377 next if (! /$vmm/);
2378 my ($void1, $void2);
2379 ($void1, $vmexist, $void2) = split(/ +/);
2380 last;
2381 }
2382 return($vmexist);
2383}
2384
2385
[77]2386sub pb_extract_build_files {
[25]2387
2388my $src=shift;
2389my $dir=shift;
[26]2390my $ddir=shift;
[500]2391my $mandatory=shift || "spec";
[28]2392my @files;
[25]2393
[500]2394my $flag = "mayfail" if ($mandatory eq "patch");
2395my $res;
2396
[188]2397if ($src =~ /tar\.gz$/) {
[500]2398 $res = pb_system("tar xfpz $src $dir","Extracting $mandatory files from $src",$flag);
[188]2399} elsif ($src =~ /tar\.bz2$/) {
[500]2400 $res = pb_system("tar xfpj $src $dir","Extracting $mandatory files from $src",$flag);
[188]2401} else {
2402 die "Unknown compression algorithm for $src";
2403}
[500]2404# If not mandatory return now
2405return() if (($res != 0) and ($mandatory eq "patch"));
[25]2406opendir(DIR,"$dir") || die "Unable to open directory $dir";
2407foreach my $f (readdir(DIR)) {
2408 next if ($f =~ /^\./);
[500]2409 # Skip potential patch dir
2410 next if ($f =~ /^pbpatch/);
[26]2411 move("$dir/$f","$ddir") || die "Unable to move $dir/$f to $ddir";
[315]2412 pb_log(2,"mv $dir/$f $ddir\n");
[28]2413 push @files,"$ddir/$f";
[25]2414}
2415closedir(DIR);
[26]2416# Not enough but still a first cleanup
[74]2417pb_rm_rf("$dir");
[28]2418return(@files);
[25]2419}
2420
[315]2421sub pb_list_bfiles {
2422
2423my $dir = shift;
2424my $pbpkg = shift;
2425my $bfiles = shift;
2426my $pkgfiles = shift;
2427my $supfiles = shift;
2428
2429opendir(BDIR,"$dir") || die "Unable to open dir $dir: $!";
2430foreach my $f (readdir(BDIR)) {
2431 next if ($f =~ /^\./);
2432 $bfiles->{$f} = "$dir/$f";
[340]2433 $bfiles->{$f} =~ s~$ENV{'PBROOTDIR'}~~;
[315]2434 if (defined $supfiles->{$pbpkg}) {
2435 $pkgfiles->{$f} = "$dir/$f" if ($f =~ /$supfiles->{$pbpkg}/);
2436 }
2437}
2438closedir(BDIR);
2439}
2440
[395]2441
2442#
2443# Return the list of packages we are working on in a non CMS action
2444#
2445sub pb_get_pkg {
2446
2447my @pkgs = ();
2448
2449my ($var) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
2450@pkgs = keys %$var;
2451
2452pb_log(0,"Packages: ".join(',',@pkgs)."\n");
2453return(\@pkgs);
2454}
2455
[500]2456# Which is our local arch ? (standardize on i386 for those platforms)
2457sub pb_get_arch {
2458
2459my $arch = `uname -m`;
2460chomp($arch);
2461$arch =~ s/i.86/i386/;
2462return($arch);
2463}
2464
[395]24651;
Note: See TracBrowser for help on using the repository browser.