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