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

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