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

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