| 1 | #!/usr/bin/perl -w
|
|---|
| 2 | #
|
|---|
| 3 | # Base subroutines for the Project-Builder project
|
|---|
| 4 | #
|
|---|
| 5 | # $Id$
|
|---|
| 6 | #
|
|---|
| 7 |
|
|---|
| 8 | package ProjectBuilder::Base;
|
|---|
| 9 |
|
|---|
| 10 | use strict;
|
|---|
| 11 | use lib qw (lib);
|
|---|
| 12 | use File::Basename;
|
|---|
| 13 | use File::Path;
|
|---|
| 14 | use File::stat;
|
|---|
| 15 | use File::Copy;
|
|---|
| 16 | use File::Temp qw(tempdir);
|
|---|
| 17 | use Data::Dumper;
|
|---|
| 18 | use POSIX qw(strftime);
|
|---|
| 19 | use Time::localtime qw(localtime);
|
|---|
| 20 | use Date::Manip;
|
|---|
| 21 | use English;
|
|---|
| 22 |
|
|---|
| 23 | # Inherit from the "Exporter" module which handles exporting functions.
|
|---|
| 24 |
|
|---|
| 25 | use Exporter;
|
|---|
| 26 |
|
|---|
| 27 | # Export, by default, all the functions into the namespace of
|
|---|
| 28 | # any code which uses this module.
|
|---|
| 29 |
|
|---|
| 30 | our $debug = 0;
|
|---|
| 31 | our $LOG = \*STDOUT;
|
|---|
| 32 |
|
|---|
| 33 | our @ISA = qw(Exporter);
|
|---|
| 34 | our @EXPORT = qw(pb_env_init pb_conf_read pb_conf_read_if pb_conf_get pb_conf_get_if pb_cms_init pb_mkdir_p pb_system pb_rm_rf pb_get_filters pb_filter_file pb_filter_file_pb pb_filter_file_inplace pb_cms_export pb_cms_log pb_cms_isdiff pb_cms_copy pb_cms_checkout pb_get_date pb_log pb_log_init pb_get_pkg pb_cms_compliant pb_get_uri pb_cms_get_uri $debug $LOG);
|
|---|
| 35 |
|
|---|
| 36 | $ENV{'PBETC'} = "$ENV{'HOME'}/.pbrc";
|
|---|
| 37 |
|
|---|
| 38 | sub pb_env_init {
|
|---|
| 39 |
|
|---|
| 40 | my $proj=shift || undef;
|
|---|
| 41 | my $pbinit=shift || undef;
|
|---|
| 42 | my $ver;
|
|---|
| 43 | my $tag;
|
|---|
| 44 |
|
|---|
| 45 | #
|
|---|
| 46 | # Check project name
|
|---|
| 47 | # Could be with env var PBPROJ
|
|---|
| 48 | # or option -p
|
|---|
| 49 | # if not define take the first in conf file
|
|---|
| 50 | #
|
|---|
| 51 | if ((defined $ENV{'PBPROJ'}) &&
|
|---|
| 52 | (not (defined $proj))) {
|
|---|
| 53 | $proj = $ENV{'PBPROJ'};
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | #
|
|---|
| 57 | # We get the pbconf file for that project
|
|---|
| 58 | # and use its content
|
|---|
| 59 | #
|
|---|
| 60 | my ($pbconf) = pb_conf_read("$ENV{'PBETC'}","pbconfurl");
|
|---|
| 61 | pb_log(2,"DEBUG pbconfurl: ".Dumper($pbconf)."\n");
|
|---|
| 62 |
|
|---|
| 63 | my %pbconf = %$pbconf;
|
|---|
| 64 | if (not defined $proj) {
|
|---|
| 65 | # Take the first as the default project
|
|---|
| 66 | $proj = (keys %pbconf)[0];
|
|---|
| 67 | if (defined $proj) {
|
|---|
| 68 | pb_log(0,"WARNING: using $proj as default project as none has been specified\n");
|
|---|
| 69 | pb_log(0," Please either create a pbconfurl reference for project $proj in $ENV{'PBETC'}\n");
|
|---|
| 70 | pb_log(0," or call pb with the -p project option or use the env var PBPROJ\n");
|
|---|
| 71 | pb_log(0," if you want to use another project\n");
|
|---|
| 72 | }
|
|---|
| 73 | }
|
|---|
| 74 | die "No project defined - use env var PBPROJ or -p proj or a pbconfurl entry in $ENV{'PBETC'}" if (not (defined $proj));
|
|---|
| 75 |
|
|---|
| 76 | # That's always the environment variable that will be used
|
|---|
| 77 | $ENV{'PBPROJ'} = $proj;
|
|---|
| 78 | pb_log(2,"PBPROJ: $ENV{'PBPROJ'}\n");
|
|---|
| 79 |
|
|---|
| 80 | if (not defined ($pbconf{$ENV{'PBPROJ'}})) {
|
|---|
| 81 | die "Please create a pbconfurl reference for project $ENV{'PBPROJ'} in $ENV{'PBETC'}\n";
|
|---|
| 82 | }
|
|---|
| 83 |
|
|---|
| 84 | #
|
|---|
| 85 | # Detect the root dir for hosting all the content generated with pb
|
|---|
| 86 | #
|
|---|
| 87 | # Tree will look like this:
|
|---|
| 88 | #
|
|---|
| 89 | # maint pbdefdir PBDEFDIR dev dir (optional)
|
|---|
| 90 | # | |
|
|---|
| 91 | # ------------------------ --------------------
|
|---|
| 92 | # | | | |
|
|---|
| 93 | # pbproj1 pbproj2 PBPROJ pbproj1 pbproj2
|
|---|
| 94 | # | |
|
|---|
| 95 | # --------------------------------------------- ----------
|
|---|
| 96 | # * * * | | | * *
|
|---|
| 97 | # tag dev pbconf ... build delivery PBCONF dev tag
|
|---|
| 98 | # | | | PBDESTDIR |
|
|---|
| 99 | # --- ------ pbrc PBBUILDDIR -------
|
|---|
| 100 | # | | | | |
|
|---|
| 101 | # 1.1 dev tag PBROOT 1.0 1.1 PBDIR
|
|---|
| 102 | # |
|
|---|
| 103 | # -------
|
|---|
| 104 | # | |
|
|---|
| 105 | # 1.0 1.1
|
|---|
| 106 | # |
|
|---|
| 107 | # ----------------------------------
|
|---|
| 108 | # | | | |
|
|---|
| 109 | # pkg1 pbproj1.pb pbfilter pbcl
|
|---|
| 110 | # |
|
|---|
| 111 | # -----------------
|
|---|
| 112 | # | | |
|
|---|
| 113 | # rpm deb pbfilter
|
|---|
| 114 | #
|
|---|
| 115 | #
|
|---|
| 116 | # (*) By default, if no relocation in .pbrc, dev dir is taken in the maint pbdefdir (when appropriate)
|
|---|
| 117 | # Names under a pbproj and the corresponding pbconf should be similar
|
|---|
| 118 | #
|
|---|
| 119 |
|
|---|
| 120 | my ($pbdefdir) = pb_conf_get_if("pbdefdir");
|
|---|
| 121 | my %pbdefdir = %$pbdefdir;
|
|---|
| 122 |
|
|---|
| 123 | if (not defined $ENV{'PBDEFDIR'}) {
|
|---|
| 124 | if ((not defined $pbdefdir) || (not defined $pbdefdir{$ENV{'PBPROJ'}})) {
|
|---|
| 125 | pb_log(0,"WARNING: no pbdefdir defined, using /var/cache\n");
|
|---|
| 126 | pb_log(0," Please create a pbdefdir reference for project $ENV{'PBPROJ'} in $ENV{'PBETC'}\n");
|
|---|
| 127 | pb_log(0," if you want to use another directory\n");
|
|---|
| 128 | $ENV{'PBDEFDIR'} = "/var/cache";
|
|---|
| 129 | } else {
|
|---|
| 130 | # That's always the environment variable that will be used
|
|---|
| 131 | $ENV{'PBDEFDIR'} = $pbdefdir{$ENV{'PBPROJ'}};
|
|---|
| 132 | }
|
|---|
| 133 | }
|
|---|
| 134 | # Expand potential env variable in it
|
|---|
| 135 | eval { $ENV{'PBDEFDIR'} =~ s/(\$ENV.+\})/$1/eeg };
|
|---|
| 136 |
|
|---|
| 137 | pb_log(2,"PBDEFDIR: $ENV{'PBDEFDIR'}\n");
|
|---|
| 138 | #
|
|---|
| 139 | # Set delivery directory
|
|---|
| 140 | #
|
|---|
| 141 | $ENV{'PBDESTDIR'}="$ENV{'PBDEFDIR'}/$ENV{'PBPROJ'}/delivery";
|
|---|
| 142 |
|
|---|
| 143 | pb_log(2,"PBDESTDIR: $ENV{'PBDESTDIR'}\n");
|
|---|
| 144 | #
|
|---|
| 145 | # Removes all directory existing below the delivery dir
|
|---|
| 146 | # as they are temp dir only
|
|---|
| 147 | # Files stay and have to be cleaned up manually if needed
|
|---|
| 148 | # those files serves as communication channels between pb phases
|
|---|
| 149 | # Removing them prevents a following phase to detect what has been done before
|
|---|
| 150 | #
|
|---|
| 151 | if (-d $ENV{'PBDESTDIR'}) {
|
|---|
| 152 | opendir(DIR,$ENV{'PBDESTDIR'}) || die "Unable to open directory $ENV{'PBDESTDIR'}: $!";
|
|---|
| 153 | foreach my $d (readdir(DIR)) {
|
|---|
| 154 | next if ($d =~ /^\./);
|
|---|
| 155 | next if (-f "$ENV{'PBDESTDIR'}/$d");
|
|---|
| 156 | pb_rm_rf("$ENV{'PBDESTDIR'}/$d") if (-d "$ENV{'PBDESTDIR'}/$d");
|
|---|
| 157 | }
|
|---|
| 158 | closedir(DIR);
|
|---|
| 159 | }
|
|---|
| 160 | if (! -d "$ENV{'PBDESTDIR'}") {
|
|---|
| 161 | pb_mkdir_p($ENV{'PBDESTDIR'}) || die "Unable to recursively create $ENV{'PBDESTDIR'}";
|
|---|
| 162 | }
|
|---|
| 163 |
|
|---|
| 164 | #
|
|---|
| 165 | # Set build directory
|
|---|
| 166 | #
|
|---|
| 167 | $ENV{'PBBUILDDIR'}="$ENV{'PBDEFDIR'}/$ENV{'PBPROJ'}/build";
|
|---|
| 168 | if (! -d "$ENV{'PBBUILDDIR'}") {
|
|---|
| 169 | pb_mkdir_p($ENV{'PBBUILDDIR'}) || die "Unable to recursively create $ENV{'PBBUILDDIR'}";
|
|---|
| 170 | }
|
|---|
| 171 |
|
|---|
| 172 | pb_log(2,"PBBUILDDIR: $ENV{'PBBUILDDIR'}\n");
|
|---|
| 173 | #
|
|---|
| 174 | # Set temp directory
|
|---|
| 175 | #
|
|---|
| 176 | if (not defined $ENV{'TMPDIR'}) {
|
|---|
| 177 | $ENV{'TMPDIR'}="/tmp";
|
|---|
| 178 | }
|
|---|
| 179 | $ENV{'PBTMP'} = tempdir( "pb.XXXXXXXXXX", DIR => $ENV{'TMPDIR'}, CLEANUP => 1 );
|
|---|
| 180 | pb_log(2,"PBTMP: $ENV{'PBTMP'}\n");
|
|---|
| 181 |
|
|---|
| 182 | #
|
|---|
| 183 | # The following part is only useful when in cms2build
|
|---|
| 184 | # In VMs/VEs we want to skip that by providing a good PBCONF env var.
|
|---|
| 185 | # return values in that case are useless
|
|---|
| 186 | #
|
|---|
| 187 | return if (defined $ENV{'PBCONF'});
|
|---|
| 188 |
|
|---|
| 189 | #
|
|---|
| 190 | # Check pbconf cms compliance
|
|---|
| 191 | #
|
|---|
| 192 | pb_cms_compliant("pbconfdir",'PBCONF',"$ENV{'PBDEFDIR'}/$ENV{'PBPROJ'}/pbconf",$pbconf{$ENV{'PBPROJ'}},$pbinit);
|
|---|
| 193 |
|
|---|
| 194 | # Check where is our PBROOT (release tag name can't be guessed the first time)
|
|---|
| 195 | #
|
|---|
| 196 | if (not defined $ENV{'PBROOT'}) {
|
|---|
| 197 | if (! -f ("$ENV{'PBDESTDIR'}/pbrc")) {
|
|---|
| 198 | opendir(DIR,$ENV{'PBCONF'}) || die "Unable to open directory $ENV{'PBCONF'}: $!";
|
|---|
| 199 | my $maxmtime = 0;
|
|---|
| 200 | foreach my $d (readdir(DIR)) {
|
|---|
| 201 | pb_log(3,"Looking at \'$d\'...");
|
|---|
| 202 | next if ($d =~ /^\./);
|
|---|
| 203 | next if (! -d "$ENV{'PBCONF'}/$d");
|
|---|
| 204 | my $s = stat("$ENV{'PBCONF'}/$d");
|
|---|
| 205 | next if (not defined $s);
|
|---|
| 206 | pb_log(3,"KEEP\n");
|
|---|
| 207 | # Keep the most recent
|
|---|
| 208 | pb_log(2," $s->mtime\n");
|
|---|
| 209 | if ($s->mtime > $maxmtime) {
|
|---|
| 210 | $ENV{'PBROOT'} = "$ENV{'PBCONF'}/$d";
|
|---|
| 211 | $maxmtime = $s->mtime;
|
|---|
| 212 | }
|
|---|
| 213 | }
|
|---|
| 214 | closedir(DIR);
|
|---|
| 215 | die "No directory found under $ENV{'PBCONF'}" if (not defined $ENV{'PBROOT'});
|
|---|
| 216 | pb_log(0,"WARNING: no pbroot defined, using $ENV{'PBROOT'}\n");
|
|---|
| 217 | pb_log(0," Please use -r release if you want to use another release\n");
|
|---|
| 218 | } else {
|
|---|
| 219 | my ($pbroot) = pb_conf_read_if("$ENV{'PBDESTDIR'}/pbrc","pbroot");
|
|---|
| 220 | # That's always the environment variable that will be used
|
|---|
| 221 | die "Please remove inconsistent $ENV{'PBDESTDIR'}/pbrc" if ((not defined $pbroot) || (not defined $pbroot->{$ENV{'PBPROJ'}}));
|
|---|
| 222 | $ENV{'PBROOT'} = $pbroot->{$ENV{'PBPROJ'}};
|
|---|
| 223 | }
|
|---|
| 224 | } else {
|
|---|
| 225 | # transform in full path if relative
|
|---|
| 226 | $ENV{'PBROOT'} = "$ENV{'PBCONF'}/$ENV{'PBROOT'}" if ($ENV{'PBROOT'} !~ /^\//);
|
|---|
| 227 | die "$ENV{'PBROOT'} is not a directory" if (not -d $ENV{'PBROOT'});
|
|---|
| 228 | }
|
|---|
| 229 |
|
|---|
| 230 | my %version = ();
|
|---|
| 231 | my %defpkgdir = ();
|
|---|
| 232 | my %extpkgdir = ();
|
|---|
| 233 | my %filteredfiles = ();
|
|---|
| 234 | my %supfiles = ();
|
|---|
| 235 |
|
|---|
| 236 | if ((-f "$ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb") and (not defined $pbinit)) {
|
|---|
| 237 | # List of pkg to build by default (mandatory)
|
|---|
| 238 | my ($defpkgdir,$pbpackager) = pb_conf_get("defpkgdir","pbpackager");
|
|---|
| 239 | # List of additional pkg to build when all is called (optional)
|
|---|
| 240 | # Valid version names (optional)
|
|---|
| 241 | # List of files to filter (optional)
|
|---|
| 242 | # Project version and tag (optional)
|
|---|
| 243 | my ($extpkgdir, $version, $filteredfiles, $supfiles, $pkgv, $pkgt) = pb_conf_get_if("extpkgdir","version","filteredfiles","supfiles","projver","projtag");
|
|---|
| 244 | pb_log(2,"DEBUG: defpkgdir: ".Dumper($defpkgdir)."\n");
|
|---|
| 245 | pb_log(2,"DEBUG: extpkgdir: ".Dumper($extpkgdir)."\n");
|
|---|
| 246 | pb_log(2,"DEBUG: version: ".Dumper($version)."\n");
|
|---|
| 247 | pb_log(2,"DEBUG: filteredfiles: ".Dumper($filteredfiles)."\n");
|
|---|
| 248 | pb_log(2,"DEBUG: supfiles: ".Dumper($supfiles)."\n");
|
|---|
| 249 | # Global
|
|---|
| 250 | %defpkgdir = %$defpkgdir;
|
|---|
| 251 | %extpkgdir = %$extpkgdir if (defined $extpkgdir);
|
|---|
| 252 | %version = %$version if (defined $version);
|
|---|
| 253 | %filteredfiles = %$filteredfiles if (defined $filteredfiles);
|
|---|
| 254 | %supfiles = %$supfiles if (defined $supfiles);
|
|---|
| 255 | #
|
|---|
| 256 | # Get global Version/Tag
|
|---|
| 257 | #
|
|---|
| 258 | if (not defined $ENV{'PBVER'}) {
|
|---|
| 259 | if ((defined $pkgv) && (defined $pkgv->{$ENV{'PBPROJ'}})) {
|
|---|
| 260 | $ENV{'PBVER'}=$pkgv->{$ENV{'PBPROJ'}};
|
|---|
| 261 | } else {
|
|---|
| 262 | die "No projver found in $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb";
|
|---|
| 263 | }
|
|---|
| 264 | }
|
|---|
| 265 | die "Invalid version name $ENV{'PBVER'} in $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb" if (($ENV{'PBVER'} !~ /[0-9.]+/) && (not defined $version) && ($ENV{'PBVER'} =~ /$version{$ENV{'PBPROJ'}}/));
|
|---|
| 266 |
|
|---|
| 267 | if (not defined $ENV{'PBTAG'}) {
|
|---|
| 268 | if ((defined $pkgt) && (defined $pkgt->{$ENV{'PBPROJ'}})) {
|
|---|
| 269 | $ENV{'PBTAG'}=$pkgt->{$ENV{'PBPROJ'}};
|
|---|
| 270 | } else {
|
|---|
| 271 | die "No projtag found in $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb";
|
|---|
| 272 | }
|
|---|
| 273 | }
|
|---|
| 274 | die "Invalid tag name $ENV{'PBTAG'} in $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb" if ($ENV{'PBTAG'} !~ /[0-9.]+/);
|
|---|
| 275 |
|
|---|
| 276 |
|
|---|
| 277 | if (not defined $ENV{'PBPACKAGER'}) {
|
|---|
| 278 | if ((defined $pbpackager) && (defined $pbpackager->{$ENV{'PBPROJ'}})) {
|
|---|
| 279 | $ENV{'PBPACKAGER'}=$pbpackager->{$ENV{'PBPROJ'}};
|
|---|
| 280 | } else {
|
|---|
| 281 | die "No pbpackager found in $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb";
|
|---|
| 282 | }
|
|---|
| 283 | }
|
|---|
| 284 | } else {
|
|---|
| 285 | if (defined $pbinit) {
|
|---|
| 286 | my $ptr = pb_get_pkg();
|
|---|
| 287 | my @pkgs = @$ptr;
|
|---|
| 288 | @pkgs = ("pkg1") if (not @pkgs);
|
|---|
| 289 |
|
|---|
| 290 | open(CONF,"> $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb") || die "Unable to create $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb";
|
|---|
| 291 | print CONF << "EOF";
|
|---|
| 292 | #
|
|---|
| 293 | # Project Builder configuration file
|
|---|
| 294 | # For project $ENV{'PBPROJ'}
|
|---|
| 295 | #
|
|---|
| 296 | # \$Id\$
|
|---|
| 297 | #
|
|---|
| 298 |
|
|---|
| 299 | #
|
|---|
| 300 | # What is the project URL
|
|---|
| 301 | #
|
|---|
| 302 | #pbproj $ENV{'PBPROJ'} = svn://svn.$ENV{'PBPROJ'}.org/$ENV{'PBPROJ'}/devel
|
|---|
| 303 | #pbproj $ENV{'PBPROJ'} = svn://svn+ssh.$ENV{'PBPROJ'}.org/$ENV{'PBPROJ'}/devel
|
|---|
| 304 | #pbproj $ENV{'PBPROJ'} = cvs://cvs.$ENV{'PBPROJ'}.org/$ENV{'PBPROJ'}/devel
|
|---|
| 305 | #pbproj $ENV{'PBPROJ'} = http://www.$ENV{'PBPROJ'}.org/src/$ENV{'PBPROJ'}-devel.tar.gz
|
|---|
| 306 | #pbproj $ENV{'PBPROJ'} = ftp://ftp.$ENV{'PBPROJ'}.org/src/$ENV{'PBPROJ'}-devel.tar.gz
|
|---|
| 307 | #pbproj $ENV{'PBPROJ'} = file:///src/$ENV{'PBPROJ'}-devel.tar.gz
|
|---|
| 308 | #pbproj $ENV{'PBPROJ'} = dir:///src/$ENV{'PBPROJ'}-devel
|
|---|
| 309 |
|
|---|
| 310 | #
|
|---|
| 311 | # Packager label
|
|---|
| 312 | #
|
|---|
| 313 | #pbpackager $ENV{'PBPROJ'} = "William Porte <bill\@$ENV{'PBPROJ'}.org>"
|
|---|
| 314 | #
|
|---|
| 315 |
|
|---|
| 316 | # For delivery to a machine by SSH (potentially the FTP server)
|
|---|
| 317 | # Needs hostname, account and directory
|
|---|
| 318 | #
|
|---|
| 319 | #sshhost $ENV{'PBPROJ'} = www.$ENV{'PBPROJ'}.org
|
|---|
| 320 | #sshlogin $ENV{'PBPROJ'} = bill
|
|---|
| 321 | #sshdir $ENV{'PBPROJ'} = /$ENV{'PBPROJ'}/ftp
|
|---|
| 322 | #sshport $ENV{'PBPROJ'} = 22
|
|---|
| 323 |
|
|---|
| 324 | #
|
|---|
| 325 | # For Virtual machines management
|
|---|
| 326 | # Naming convention to follow: distribution name (as per ProjectBuilder::Distribution)
|
|---|
| 327 | # followed by '_' and by release number
|
|---|
| 328 | # a .vmtype extension will be added to the resulting string
|
|---|
| 329 | # a QEMU rhel_3 here means that the VM will be named rhel_3.qemu
|
|---|
| 330 | #
|
|---|
| 331 | #vmlist $ENV{'PBPROJ'} = mandrake_10.1,mandrake_10.2,mandriva_2006.0,mandriva_2007.0,mandriva_2007.1,mandriva_2008.0,redhat_7.3,redhat_9,fedora_4,fedora_5,fedora_6,fedora_7,rhel_3,rhel_4,rhel_5,suse_10.0,suse_10.1,suse_10.2,suse_10.3,sles_9,sles_10,gentoo_nover,debian_3.1,debian_4.0,ubuntu_6.06,ubuntu_7.04,ubuntu_7.10
|
|---|
| 332 |
|
|---|
| 333 | #
|
|---|
| 334 | # Valid values for vmtype are
|
|---|
| 335 | # qemu, (vmware, xen, ... TBD)
|
|---|
| 336 | #vmtype $ENV{'PBPROJ'} = qemu
|
|---|
| 337 |
|
|---|
| 338 | # Hash for VM stuff on vmtype
|
|---|
| 339 | #vmntp default = pool.ntp.org
|
|---|
| 340 |
|
|---|
| 341 | # We suppose we can commmunicate with the VM through SSH
|
|---|
| 342 | #vmhost $ENV{'PBPROJ'} = localhost
|
|---|
| 343 | #vmlogin $ENV{'PBPROJ'} = pb
|
|---|
| 344 | #vmport $ENV{'PBPROJ'} = 2222
|
|---|
| 345 |
|
|---|
| 346 | # Timeout to wait when VM is launched/stopped
|
|---|
| 347 | #vmtmout default = 120
|
|---|
| 348 |
|
|---|
| 349 | # per VMs needed paramaters
|
|---|
| 350 | #vmopt $ENV{'PBPROJ'} = -m 384 -daemonize
|
|---|
| 351 | #vmpath $ENV{'PBPROJ'} = /home/qemu
|
|---|
| 352 | #vmsize $ENV{'PBPROJ'} = 5G
|
|---|
| 353 |
|
|---|
| 354 | #
|
|---|
| 355 | # Global version/tag for the project
|
|---|
| 356 | #
|
|---|
| 357 | #projver $ENV{'PBPROJ'} = devel
|
|---|
| 358 | #projtag $ENV{'PBPROJ'} = 1
|
|---|
| 359 |
|
|---|
| 360 | # Hash of valid version names
|
|---|
| 361 | #version $ENV{'PBPROJ'} = devel,stable
|
|---|
| 362 |
|
|---|
| 363 | # Adapt to your needs:
|
|---|
| 364 | # Optional if you need to overwrite the global values above
|
|---|
| 365 | #
|
|---|
| 366 | EOF
|
|---|
| 367 |
|
|---|
| 368 | foreach my $pp (@pkgs) {
|
|---|
| 369 | print CONF << "EOF";
|
|---|
| 370 | #pkgver $pp = stable
|
|---|
| 371 | #pkgtag $pp = 3
|
|---|
| 372 | EOF
|
|---|
| 373 | }
|
|---|
| 374 | foreach my $pp (@pkgs) {
|
|---|
| 375 | print CONF << "EOF";
|
|---|
| 376 | # Hash of default package/package directory
|
|---|
| 377 | #defpkgdir $pp = dir-$pp
|
|---|
| 378 | EOF
|
|---|
| 379 | }
|
|---|
| 380 |
|
|---|
| 381 | print CONF << "EOF";
|
|---|
| 382 | # Hash of additional package/package directory
|
|---|
| 383 | #extpkgdir minor-pkg = dir-minor-pkg
|
|---|
| 384 |
|
|---|
| 385 | # List of files per pkg on which to apply filters
|
|---|
| 386 | # Files are mentioned relatively to pbroot/defpkgdir
|
|---|
| 387 | EOF
|
|---|
| 388 | foreach my $pp (@pkgs) {
|
|---|
| 389 | print CONF << "EOF";
|
|---|
| 390 | #filteredfiles $pp = Makefile.PL,configure.in,install.sh,$pp.8
|
|---|
| 391 | #supfiles $pp = $pp.init
|
|---|
| 392 | EOF
|
|---|
| 393 | }
|
|---|
| 394 | close(CONF);
|
|---|
| 395 | pb_mkdir_p("$ENV{'PBROOT'}/pbfilter") || die "Unable to create $ENV{'PBROOT'}/pbfilter";
|
|---|
| 396 | open(CONF,"> $ENV{'PBROOT'}/pbfilter/all.pbf") || die "Unable to create $ENV{'PBROOT'}/pbfilter/all.pbf";
|
|---|
| 397 | print CONF << "EOF";
|
|---|
| 398 | #
|
|---|
| 399 | # \$Id\$
|
|---|
| 400 | #
|
|---|
| 401 | # Filter for all files
|
|---|
| 402 | #
|
|---|
| 403 | # PBSRC is replaced by the source package format
|
|---|
| 404 | #filter PBSRC = ftp://ftp.$ENV{'PBPROJ'}.org/src/%{name}-%{version}.tar.gz
|
|---|
| 405 |
|
|---|
| 406 | # PBVER is replaced by the version (\$pbver in code)
|
|---|
| 407 | #filter PBVER = \$pbver
|
|---|
| 408 |
|
|---|
| 409 | # PBDATE is replaced by the date (\$pbdate in code)
|
|---|
| 410 | #filter PBDATE = \$pbdate
|
|---|
| 411 |
|
|---|
| 412 | # PBLOG is replaced by the changelog if value is yes
|
|---|
| 413 | #filter PBLOG = yes
|
|---|
| 414 |
|
|---|
| 415 | # PBTAG is replaced by the tag (\$pbtag in code)
|
|---|
| 416 | #filter PBTAG = \$pbtag
|
|---|
| 417 |
|
|---|
| 418 | # PBREV is replaced by the revision (\$pbrev in code)
|
|---|
| 419 | #filter PBREV = \$pbrev
|
|---|
| 420 |
|
|---|
| 421 | # PBPKG is replaced by the package name (\$pbpkg in code)
|
|---|
| 422 | #filter PBPKG = \$pbpkg
|
|---|
| 423 |
|
|---|
| 424 | # PBPACKAGER is replaced by the packager name (\$pbpackager in code)
|
|---|
| 425 | #filter PBPACKAGER = \$pbpackager
|
|---|
| 426 |
|
|---|
| 427 | # PBDESC contains the description of the package
|
|---|
| 428 | #filter PBDESC = "Bla-Bla"
|
|---|
| 429 |
|
|---|
| 430 | # PBURL contains the URL of the Web site of the project
|
|---|
| 431 | #filter PBURL = http://www.$ENV{'PBPROJ'}.org
|
|---|
| 432 | EOF
|
|---|
| 433 | close(CONF);
|
|---|
| 434 | open(CONF,"> $ENV{'PBROOT'}/pbfilter/rpm.pbf") || die "Unable to create $ENV{'PBROOT'}/pbfilter/rpm.pbf";
|
|---|
| 435 | print CONF << "EOF";
|
|---|
| 436 | #
|
|---|
| 437 | # \$Id\$
|
|---|
| 438 | #
|
|---|
| 439 | # Filter for rpm build
|
|---|
| 440 | #
|
|---|
| 441 |
|
|---|
| 442 | # PBGRP is replaced by the RPM group of apps
|
|---|
| 443 | # Cf: http://fedoraproject.org/wiki/RPMGroups
|
|---|
| 444 | #filter PBGRP = Applications/Archiving
|
|---|
| 445 |
|
|---|
| 446 | # PBLIC is replaced by the license of the application
|
|---|
| 447 | # Cf: http://fedoraproject.org/wiki/Licensing
|
|---|
| 448 | #filter PBLIC = GPL
|
|---|
| 449 |
|
|---|
| 450 | # PBDEP is replaced by the list of dependencies
|
|---|
| 451 | #filter PBDEP =
|
|---|
| 452 |
|
|---|
| 453 | # PBSUF is replaced by the package name (\$pbpkg in code)
|
|---|
| 454 | #filter PBSUF = \$pbsuf
|
|---|
| 455 |
|
|---|
| 456 | # PBOBS is replaced by the Obsolete line
|
|---|
| 457 | #filter PBOBS =
|
|---|
| 458 |
|
|---|
| 459 | EOF
|
|---|
| 460 | close(CONF);
|
|---|
| 461 | open(CONF,"> $ENV{'PBROOT'}/pbfilter/deb.pbf") || die "Unable to create $ENV{'PBROOT'}/pbfilter/deb.pbf";
|
|---|
| 462 | print CONF << "EOF";
|
|---|
| 463 | #
|
|---|
| 464 | # \$Id\$
|
|---|
| 465 | #
|
|---|
| 466 | # Filter for debian build
|
|---|
| 467 | #
|
|---|
| 468 | # PBGRP is replaced by the group of apps
|
|---|
| 469 | #filter PBGRP = utils
|
|---|
| 470 |
|
|---|
| 471 | # PBLIC is replaced by the license of the application
|
|---|
| 472 | # Cf:
|
|---|
| 473 | #filter PBLIC = GPL
|
|---|
| 474 |
|
|---|
| 475 | # PBVER is replaced by the version (\$pbver in code)
|
|---|
| 476 | #filter PBVER = \$pbver
|
|---|
| 477 |
|
|---|
| 478 | # PBDEP is replaced by the list of dependencies
|
|---|
| 479 | #filter PBDEP =
|
|---|
| 480 |
|
|---|
| 481 | # PBSUG is replaced by the list of suggestions
|
|---|
| 482 | #filter PBSUG =
|
|---|
| 483 |
|
|---|
| 484 | # PBREC is replaced by the list of recommandations
|
|---|
| 485 | #filter PBREC =
|
|---|
| 486 |
|
|---|
| 487 | # PBLOG is replaced by the changelog if value is yes
|
|---|
| 488 | #filter PBLOG = yes
|
|---|
| 489 |
|
|---|
| 490 | # PBPKG is replaced by the package name (\$pbpkg in code)
|
|---|
| 491 | #filter PBPKG = \$pbpkg
|
|---|
| 492 |
|
|---|
| 493 | # PBPACKAGER is replaced by the packager name (\$pbpackager in code)
|
|---|
| 494 | #filter PBPACKAGER = \$pbpackager
|
|---|
| 495 |
|
|---|
| 496 | EOF
|
|---|
| 497 | close(CONF);
|
|---|
| 498 | open(CONF,"> $ENV{'PBROOT'}/pbfilter/md.pbf") || die "Unable to create $ENV{'PBROOT'}/pbfilter/md.pbf";
|
|---|
| 499 | print CONF << "EOF";
|
|---|
| 500 | # Specific group for Mandriva for $ENV{'PBPROJ'}
|
|---|
| 501 | # Cf: http://wiki.mandriva.com/en/Development/Packaging/Groups
|
|---|
| 502 | filter PBGRP = Archiving/Backup
|
|---|
| 503 |
|
|---|
| 504 | # PBLIC is replaced by the license of the application
|
|---|
| 505 | # Cf: http://wiki.mandriva.com/en/Development/Packaging/Licenses
|
|---|
| 506 | #filter PBLIC = GPL
|
|---|
| 507 |
|
|---|
| 508 | EOF
|
|---|
| 509 | close(CONF);
|
|---|
| 510 | open(CONF,"> $ENV{'PBROOT'}/pbfilter/novell.pbf") || die "Unable to create $ENV{'PBROOT'}/pbfilter/novell.pbf";
|
|---|
| 511 | print CONF << "EOF";
|
|---|
| 512 | # Specific group for SuSE for $ENV{'PBPROJ'}
|
|---|
| 513 | # Cf: http://en.opensuse.org/SUSE_Package_Conventions/RPM_Groups
|
|---|
| 514 | filter PBGRP = Productivity/Archiving/Backup
|
|---|
| 515 |
|
|---|
| 516 | # PBLIC is replaced by the license of the application
|
|---|
| 517 | # Cf: http://en.opensuse.org/Packaging/SUSE_Package_Conventions/RPM_Style#1.6._License_Tag
|
|---|
| 518 | #filter PBLIC = GPL
|
|---|
| 519 |
|
|---|
| 520 | EOF
|
|---|
| 521 | close(CONF);
|
|---|
| 522 | foreach my $pp (@pkgs) {
|
|---|
| 523 | pb_mkdir_p("$ENV{'PBROOT'}/$pp/deb") || die "Unable to create $ENV{'PBROOT'}/$pp/deb";
|
|---|
| 524 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/control") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/control";
|
|---|
| 525 | print CONF << "EOF";
|
|---|
| 526 | Source: PBPKG
|
|---|
| 527 | Section: PBGRP
|
|---|
| 528 | Priority: optional
|
|---|
| 529 | Maintainer: PBPACKAGER
|
|---|
| 530 | Build-Depends: debhelper (>= 4.2.20), PBDEP
|
|---|
| 531 | Standards-Version: 3.6.1
|
|---|
| 532 |
|
|---|
| 533 | Package: PBPKG
|
|---|
| 534 | Architecture: amd64 i386 ia64
|
|---|
| 535 | Section: PBGRP
|
|---|
| 536 | Priority: optional
|
|---|
| 537 | Depends: \${shlibs:Depends}, \${misc:Depends}, PBDEP
|
|---|
| 538 | Recommends: PBREC
|
|---|
| 539 | Suggests: PBSUG
|
|---|
| 540 | Description:
|
|---|
| 541 | PBDESC
|
|---|
| 542 | .
|
|---|
| 543 | Homepage: PBURL
|
|---|
| 544 |
|
|---|
| 545 | EOF
|
|---|
| 546 | close(CONF);
|
|---|
| 547 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/copyright") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/copyright";
|
|---|
| 548 | print CONF << "EOF";
|
|---|
| 549 | This package is debianized by PBPACKAGER
|
|---|
| 550 | `date`
|
|---|
| 551 |
|
|---|
| 552 | The current upstream source was downloaded from
|
|---|
| 553 | ftp://ftp.$ENV{'PBPROJ'}.org/src/.
|
|---|
| 554 |
|
|---|
| 555 | Upstream Authors: Put their name here
|
|---|
| 556 |
|
|---|
| 557 | Copyright:
|
|---|
| 558 |
|
|---|
| 559 | This package is free software; you can redistribute it and/or modify
|
|---|
| 560 | it under the terms of the GNU General Public License as published by
|
|---|
| 561 | the Free Software Foundation; version 2 dated June, 1991.
|
|---|
| 562 |
|
|---|
| 563 | This package is distributed in the hope that it will be useful,
|
|---|
| 564 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 565 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 566 | GNU General Public License for more details.
|
|---|
| 567 |
|
|---|
| 568 | You should have received a copy of the GNU General Public License
|
|---|
| 569 | along with this package; if not, write to the Free Software
|
|---|
| 570 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
|
|---|
| 571 | MA 02110-1301, USA.
|
|---|
| 572 |
|
|---|
| 573 | On Debian systems, the complete text of the GNU General
|
|---|
| 574 | Public License can be found in /usr/share/common-licenses/GPL.
|
|---|
| 575 |
|
|---|
| 576 | EOF
|
|---|
| 577 | close(CONF);
|
|---|
| 578 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/changelog") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/changelog";
|
|---|
| 579 | print CONF << "EOF";
|
|---|
| 580 | PBLOG
|
|---|
| 581 | EOF
|
|---|
| 582 | close(CONF);
|
|---|
| 583 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/compat") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/compat";
|
|---|
| 584 | print CONF << "EOF";
|
|---|
| 585 | 4
|
|---|
| 586 | EOF
|
|---|
| 587 | close(CONF);
|
|---|
| 588 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/pkg1.dirs") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/$pp.dirs";
|
|---|
| 589 | print CONF << "EOF";
|
|---|
| 590 | EOF
|
|---|
| 591 | close(CONF);
|
|---|
| 592 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/$pp.docs") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/$pp.docs";
|
|---|
| 593 | print CONF << "EOF";
|
|---|
| 594 | INSTALL
|
|---|
| 595 | COPYING
|
|---|
| 596 | AUTHORS
|
|---|
| 597 | NEWS
|
|---|
| 598 | README
|
|---|
| 599 | EOF
|
|---|
| 600 | close(CONF);
|
|---|
| 601 | open(CONF,"> $ENV{'PBROOT'}/$pp/deb/rules") || die "Unable to create $ENV{'PBROOT'}/$pp/deb/rules";
|
|---|
| 602 | print CONF << 'EOF';
|
|---|
| 603 | #!/usr/bin/make -f
|
|---|
| 604 | # -*- makefile -*-
|
|---|
| 605 | # Sample debian/rules that uses debhelper.
|
|---|
| 606 | # GNU copyright 1997 to 1999 by Joey Hess.
|
|---|
| 607 | #
|
|---|
| 608 | # $Id$
|
|---|
| 609 | #
|
|---|
| 610 |
|
|---|
| 611 | # Uncomment this to turn on verbose mode.
|
|---|
| 612 | #export DH_VERBOSE=1
|
|---|
| 613 |
|
|---|
| 614 | # Define package name variable for a one-stop change.
|
|---|
| 615 | PACKAGE_NAME = PBPKG
|
|---|
| 616 |
|
|---|
| 617 | # These are used for cross-compiling and for saving the configure script
|
|---|
| 618 | # from having to guess our platform (since we know it already)
|
|---|
| 619 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|---|
| 620 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|---|
| 621 |
|
|---|
| 622 | CFLAGS = -Wall -g
|
|---|
| 623 |
|
|---|
| 624 | ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|---|
| 625 | CFLAGS += -O0
|
|---|
| 626 | else
|
|---|
| 627 | CFLAGS += -O2
|
|---|
| 628 | endif
|
|---|
| 629 | ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
|
|---|
| 630 | INSTALL_PROGRAM += -s
|
|---|
| 631 | endif
|
|---|
| 632 | config.status: configure
|
|---|
| 633 | dh_testdir
|
|---|
| 634 |
|
|---|
| 635 | # Configure the package.
|
|---|
| 636 | CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr
|
|---|
| 637 | --mandir=\$${prefix}/share/man
|
|---|
| 638 |
|
|---|
| 639 | # Build both architecture dependent and independent
|
|---|
| 640 | build: build-arch build-indep
|
|---|
| 641 |
|
|---|
| 642 | # Build architecture dependent
|
|---|
| 643 | build-arch: build-arch-stamp
|
|---|
| 644 |
|
|---|
| 645 | build-arch-stamp: config.status
|
|---|
| 646 | dh_testdir
|
|---|
| 647 |
|
|---|
| 648 | # Compile the package.
|
|---|
| 649 | $(MAKE)
|
|---|
| 650 |
|
|---|
| 651 | touch build-stamp
|
|---|
| 652 |
|
|---|
| 653 | # Build architecture independent
|
|---|
| 654 | build-indep: build-indep-stamp
|
|---|
| 655 |
|
|---|
| 656 | build-indep-stamp: config.status
|
|---|
| 657 | # Nothing to do, the only indep item is the manual which is available as html in original source
|
|---|
| 658 | touch build-indep-stamp
|
|---|
| 659 |
|
|---|
| 660 | # Clean up
|
|---|
| 661 | clean:
|
|---|
| 662 | dh_testdir
|
|---|
| 663 | dh_testroot
|
|---|
| 664 | rm -f build-arch-stamp build-indep-stamp #CONFIGURE-STAMP#
|
|---|
| 665 | # Clean temporary document directory
|
|---|
| 666 | rm -rf debian/doc-temp
|
|---|
| 667 | # Clean up.
|
|---|
| 668 | -$(MAKE) distclean
|
|---|
| 669 | rm -f config.log
|
|---|
| 670 | ifneq "$(wildcard /usr/share/misc/config.sub)" ""
|
|---|
| 671 | cp -f /usr/share/misc/config.sub config.sub
|
|---|
| 672 | endif
|
|---|
| 673 | ifneq "$(wildcard /usr/share/misc/config.guess)" ""
|
|---|
| 674 | cp -f /usr/share/misc/config.guess config.guess
|
|---|
| 675 | endif
|
|---|
| 676 |
|
|---|
| 677 | dh_clean
|
|---|
| 678 |
|
|---|
| 679 | # Install architecture dependent and independent
|
|---|
| 680 | install: install-arch install-indep
|
|---|
| 681 |
|
|---|
| 682 | # Install architecture dependent
|
|---|
| 683 | install-arch: build-arch
|
|---|
| 684 | dh_testdir
|
|---|
| 685 | dh_testroot
|
|---|
| 686 | dh_clean -k -s
|
|---|
| 687 | dh_installdirs -s
|
|---|
| 688 |
|
|---|
| 689 | # Install the package files into build directory:
|
|---|
| 690 | # - start with upstream make install
|
|---|
| 691 | $(MAKE) install prefix=$(CURDIR)/debian/$(PACKAGE_NAME)/usr mandir=$(CURDIR)/debian/$(PACKAGE_NAME)/us
|
|---|
| 692 | r/share/man
|
|---|
| 693 | # - copy html manual to temporary location for renaming
|
|---|
| 694 | mkdir -p debian/doc-temp
|
|---|
| 695 | dh_install -s
|
|---|
| 696 |
|
|---|
| 697 | # Install architecture independent
|
|---|
| 698 | install-indep: build-indep
|
|---|
| 699 | dh_testdir
|
|---|
| 700 | dh_testroot
|
|---|
| 701 | dh_clean -k -i
|
|---|
| 702 | dh_installdirs -i
|
|---|
| 703 | dh_install -i
|
|---|
| 704 |
|
|---|
| 705 | # Must not depend on anything. This is to be called by
|
|---|
| 706 | # binary-arch/binary-indep
|
|---|
| 707 | # in another 'make' thread.
|
|---|
| 708 | binary-common:
|
|---|
| 709 | dh_testdir
|
|---|
| 710 | dh_testroot
|
|---|
| 711 | dh_installchangelogs ChangeLog
|
|---|
| 712 | dh_installdocs
|
|---|
| 713 | dh_installman
|
|---|
| 714 | dh_link
|
|---|
| 715 | dh_strip
|
|---|
| 716 | dh_compress
|
|---|
| 717 | dh_fixperms
|
|---|
| 718 | dh_installdeb
|
|---|
| 719 | dh_shlibdeps
|
|---|
| 720 | dh_gencontrol
|
|---|
| 721 | dh_md5sums
|
|---|
| 722 | dh_builddeb
|
|---|
| 723 |
|
|---|
| 724 | # Build architecture independant packages using the common target.
|
|---|
| 725 | binary-indep: build-indep install-indep
|
|---|
| 726 | $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
|
|---|
| 727 |
|
|---|
| 728 | # Build architecture dependant packages using the common target.
|
|---|
| 729 | binary-arch: build-arch install-arch
|
|---|
| 730 | $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common
|
|---|
| 731 |
|
|---|
| 732 | # Build architecture depdendent and independent packages
|
|---|
| 733 | binary: binary-arch binary-indep
|
|---|
| 734 | .PHONY: clean binary
|
|---|
| 735 |
|
|---|
| 736 | EOF
|
|---|
| 737 | close(CONF);
|
|---|
| 738 | pb_mkdir_p("$ENV{'PBROOT'}/$pp/rpm") || die "Unable to create $ENV{'PBROOT'}/$pp/rpm";
|
|---|
| 739 | open(CONF,"> $ENV{'PBROOT'}/$pp/rpm/$pp.spec") || die "Unable to create $ENV{'PBROOT'}/$pp/rpm/$pp.spec";
|
|---|
| 740 | print CONF << 'EOF';
|
|---|
| 741 | #
|
|---|
| 742 | # $Id$
|
|---|
| 743 | #
|
|---|
| 744 |
|
|---|
| 745 | Summary: bla-bla
|
|---|
| 746 | Summary(fr): french bla-bla
|
|---|
| 747 |
|
|---|
| 748 | Name: PBPKG
|
|---|
| 749 | Version: PBVER
|
|---|
| 750 | Release: PBTAGPBSUF
|
|---|
| 751 | License: PBLIC
|
|---|
| 752 | Group: PBGRP
|
|---|
| 753 | Url: PBURL
|
|---|
| 754 | Source: PBSRC
|
|---|
| 755 | BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -u -n)
|
|---|
| 756 | Requires: PBDEP
|
|---|
| 757 |
|
|---|
| 758 | %description
|
|---|
| 759 | PBDESC
|
|---|
| 760 |
|
|---|
| 761 | %description -l fr
|
|---|
| 762 | french desc
|
|---|
| 763 |
|
|---|
| 764 | %prep
|
|---|
| 765 | %setup -q
|
|---|
| 766 |
|
|---|
| 767 | %build
|
|---|
| 768 | %configure
|
|---|
| 769 | make %{?_smp_mflags}
|
|---|
| 770 |
|
|---|
| 771 | %install
|
|---|
| 772 | %{__rm} -rf $RPM_BUILD_ROOT
|
|---|
| 773 | make DESTDIR=$RPM_BUILD_ROOT install
|
|---|
| 774 |
|
|---|
| 775 | %clean
|
|---|
| 776 | %{__rm} -rf $RPM_BUILD_ROOT
|
|---|
| 777 |
|
|---|
| 778 | %files
|
|---|
| 779 | %defattr(-,root,root)
|
|---|
| 780 | %doc ChangeLog
|
|---|
| 781 | %doc INSTALL COPYING README AUTHORS NEWS
|
|---|
| 782 |
|
|---|
| 783 | %changelog
|
|---|
| 784 | PBLOG
|
|---|
| 785 |
|
|---|
| 786 | EOF
|
|---|
| 787 | close(CONF);
|
|---|
| 788 | pb_mkdir_p("$ENV{'PBROOT'}/$pp/pbfilter") || die "Unable to create $ENV{'PBROOT'}/$pp/pbfilter";
|
|---|
| 789 |
|
|---|
| 790 | pb_log(0,"\nDo not to forget to commit the pbconf directory in your CMS if needed\n");
|
|---|
| 791 | }
|
|---|
| 792 | } else {
|
|---|
| 793 | die "Unable to open $ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb";
|
|---|
| 794 | }
|
|---|
| 795 | }
|
|---|
| 796 | umask 0022;
|
|---|
| 797 | return(\%filteredfiles, \%supfiles, \%defpkgdir, \%extpkgdir);
|
|---|
| 798 | }
|
|---|
| 799 |
|
|---|
| 800 | # Internal mkdir -p function
|
|---|
| 801 | sub pb_mkdir_p {
|
|---|
| 802 | my @dir = @_;
|
|---|
| 803 | my $ret = mkpath(@dir, 0, 0755);
|
|---|
| 804 | return($ret);
|
|---|
| 805 | }
|
|---|
| 806 |
|
|---|
| 807 | # Internal rm -rf function
|
|---|
| 808 | sub pb_rm_rf {
|
|---|
| 809 | my @dir = @_;
|
|---|
| 810 | my $ret = rmtree(@dir, 0, 0);
|
|---|
| 811 | return($ret);
|
|---|
| 812 | }
|
|---|
| 813 |
|
|---|
| 814 | # Internal system function
|
|---|
| 815 | sub pb_system {
|
|---|
| 816 |
|
|---|
| 817 | my $cmd=shift;
|
|---|
| 818 | my $cmt=shift || $cmd;
|
|---|
| 819 |
|
|---|
| 820 | pb_log(0,"$cmt... ");
|
|---|
| 821 | #system("$cmd 2>&1 > $ENV{'PBTMP'}/system.log");
|
|---|
| 822 | system($cmd);
|
|---|
| 823 | if ($? == -1) {
|
|---|
| 824 | pb_log(0,"failed to execute ($cmd) : $!\n");
|
|---|
| 825 | pb_display_file("$ENV{'PBTMP'}/system.log");
|
|---|
| 826 | } elsif ($? & 127) {
|
|---|
| 827 | pb_log(0, "child ($cmd) died with signal ".($? & 127).", ".($? & 128) ? 'with' : 'without'." coredump\n");
|
|---|
| 828 | pb_display_file("$ENV{'PBTMP'}/system.log");
|
|---|
| 829 | } elsif ($? == 0) {
|
|---|
| 830 | pb_log(0,"OK\n");
|
|---|
| 831 | } else {
|
|---|
| 832 | pb_log(0, "child ($cmd) exited with value ".($? >> 8)."\n");
|
|---|
| 833 | pb_display_file("$ENV{'PBTMP'}/system.log");
|
|---|
| 834 | }
|
|---|
| 835 | }
|
|---|
| 836 |
|
|---|
| 837 | sub pb_display_file {
|
|---|
| 838 |
|
|---|
| 839 | my $file=shift;
|
|---|
| 840 |
|
|---|
| 841 | return if (not -f $file);
|
|---|
| 842 | open(FILE,"$file");
|
|---|
| 843 | while (<FILE>) {
|
|---|
| 844 | print $_;
|
|---|
| 845 | }
|
|---|
| 846 | close(FILE);
|
|---|
| 847 | }
|
|---|
| 848 |
|
|---|
| 849 | # Function which returns a pointer on a table
|
|---|
| 850 | # corresponding to a set of values queried in the conf file
|
|---|
| 851 | # and test the returned vaue as they need to exist in that case
|
|---|
| 852 | sub pb_conf_get {
|
|---|
| 853 |
|
|---|
| 854 | my @param = @_;
|
|---|
| 855 | my @return = pb_conf_get_if(@param);
|
|---|
| 856 |
|
|---|
| 857 | die "No params found for $ENV{'PBPROJ'}" if (not @return);
|
|---|
| 858 |
|
|---|
| 859 | foreach my $i (0..$#param) {
|
|---|
| 860 | die "No $param[$i] defined for $ENV{'PBPROJ'}" if (not defined $return[$i]);
|
|---|
| 861 | }
|
|---|
| 862 | return(@return);
|
|---|
| 863 | }
|
|---|
| 864 |
|
|---|
| 865 | # Function which returns a pointer on a table
|
|---|
| 866 | # corresponding to a set of values queried in the conf file
|
|---|
| 867 | # Those value may be undef if they do not exist
|
|---|
| 868 | sub pb_conf_get_if {
|
|---|
| 869 |
|
|---|
| 870 | my @param = @_;
|
|---|
| 871 |
|
|---|
| 872 | # Everything is returned via ptr1
|
|---|
| 873 | my @ptr1 = ();
|
|---|
| 874 | my @ptr2 = ();
|
|---|
| 875 | @ptr1 = pb_conf_read_if("$ENV{'PBETC'}", @param) if (defined $ENV{'PBETC'});
|
|---|
| 876 | @ptr2 = pb_conf_read_if("$ENV{'PBROOT'}/$ENV{'PBPROJ'}.pb", @param) if ((defined $ENV{'PBROOT'}) and (defined $ENV{'PBPROJ'}));
|
|---|
| 877 |
|
|---|
| 878 | my $p1;
|
|---|
| 879 | my $p2;
|
|---|
| 880 |
|
|---|
| 881 | pb_log(2,"DEBUG: param1: ".Dumper(@ptr1)."\n");
|
|---|
| 882 | pb_log(2,"DEBUG: param2: ".Dumper(@ptr2)."\n");
|
|---|
| 883 |
|
|---|
| 884 | foreach my $i (0..$#param) {
|
|---|
| 885 | $p1 = $ptr1[$i];
|
|---|
| 886 | $p2 = $ptr2[$i];
|
|---|
| 887 | # Always try to take the param from the home dir conf file in priority
|
|---|
| 888 | # in order to mask what could be defined under the CMS to allow for overloading
|
|---|
| 889 | if (not defined $p2) {
|
|---|
| 890 | # No ref in CMS project conf file so use the home dir one.
|
|---|
| 891 | $p1->{$ENV{'PBPROJ'}} = $p1->{'default'} if ((not defined $p1->{$ENV{'PBPROJ'}}) && (defined $p1->{'default'}));
|
|---|
| 892 | } else {
|
|---|
| 893 | # Ref found in CMS project conf file
|
|---|
| 894 | if (not defined $p1) {
|
|---|
| 895 | # No ref in home dir project conf file so use the CMS one.
|
|---|
| 896 | $p2->{$ENV{'PBPROJ'}} = $p2->{'default'} if ((not defined $p2->{$ENV{'PBPROJ'}}) && (defined $p2->{'default'}));
|
|---|
| 897 | $p1 = $p2;
|
|---|
| 898 | } else {
|
|---|
| 899 | # Both are defined - handling the overloading
|
|---|
| 900 | if (not defined $p1->{'default'}) {
|
|---|
| 901 | if (defined $p2->{'default'}) {
|
|---|
| 902 | $p1->{'default'} = $p2->{'default'};
|
|---|
| 903 | }
|
|---|
| 904 | }
|
|---|
| 905 |
|
|---|
| 906 | if (not defined $p1->{$ENV{'PBPROJ'}}) {
|
|---|
| 907 | if (defined $p2->{$ENV{'PBPROJ'}}) {
|
|---|
| 908 | $p1->{$ENV{'PBPROJ'}} = $p2->{$ENV{'PBPROJ'}} if (defined $p2->{$ENV{'PBPROJ'}});
|
|---|
| 909 | } else {
|
|---|
| 910 | $p1->{$ENV{'PBPROJ'}} = $p1->{'default'} if (defined $p1->{'default'});
|
|---|
| 911 | }
|
|---|
| 912 | }
|
|---|
| 913 | # Now copy back into p1 all p2 content which doesn't exist in p1
|
|---|
| 914 | # p1 content (local) always has priority over p2 (project)
|
|---|
| 915 | foreach my $k (keys %$p2) {
|
|---|
| 916 | $p1->{$k} = $p2->{$k} if (not defined $p1->{$k});
|
|---|
| 917 | }
|
|---|
| 918 | }
|
|---|
| 919 | }
|
|---|
| 920 | $ptr1[$i] = $p1;
|
|---|
| 921 | pb_log(2,"DEBUG: param ptr1: ".Dumper(@ptr1)."\n");
|
|---|
| 922 | }
|
|---|
| 923 | return(@ptr1);
|
|---|
| 924 | }
|
|---|
| 925 |
|
|---|
| 926 | # Function which returns a pointer on a hash
|
|---|
| 927 | # corresponding to a declaration (arg2) in a conf file (arg1)
|
|---|
| 928 | # if that conf file doesn't exist returns undef
|
|---|
| 929 | sub pb_conf_read_if {
|
|---|
| 930 |
|
|---|
| 931 | my $conffile = shift;
|
|---|
| 932 | my @param = @_;
|
|---|
| 933 |
|
|---|
| 934 | open(CONF,$conffile) || return((undef));
|
|---|
| 935 | close(CONF);
|
|---|
| 936 | return(pb_conf_read($conffile,@param));
|
|---|
| 937 | }
|
|---|
| 938 |
|
|---|
| 939 | # Function which returns a pointer on a hash
|
|---|
| 940 | # corresponding to a declaration (arg2) in a conf file (arg1)
|
|---|
| 941 | sub pb_conf_read {
|
|---|
| 942 |
|
|---|
| 943 | my $conffile = shift;
|
|---|
| 944 | my @param = @_;
|
|---|
| 945 | my $trace;
|
|---|
| 946 | my @ptr;
|
|---|
| 947 | my %h;
|
|---|
| 948 |
|
|---|
| 949 | open(CONF,$conffile) || die "Unable to open $conffile";
|
|---|
| 950 | while(<CONF>) {
|
|---|
| 951 | if (/^\s*([A-z0-9-_]+)\s+([[A-z0-9-_]+)\s*=\s*(.+)$/) {
|
|---|
| 952 | pb_log(3,"DEBUG: 1:$1 2:$2 3:$3\n");
|
|---|
| 953 | $h{$1}{$2}=$3;
|
|---|
| 954 | }
|
|---|
| 955 | }
|
|---|
| 956 | close(CONF);
|
|---|
| 957 |
|
|---|
| 958 | for my $param (@param) {
|
|---|
| 959 | push @ptr,$h{$param};
|
|---|
| 960 | }
|
|---|
| 961 | return(@ptr);
|
|---|
| 962 | }
|
|---|
| 963 |
|
|---|
| 964 | # Analyze a url passed and return protocol, account, password, server, port, path
|
|---|
| 965 | sub pb_get_uri {
|
|---|
| 966 |
|
|---|
| 967 | my $uri = shift || undef;
|
|---|
| 968 |
|
|---|
| 969 | pb_log(2,"DEBUG: uri:$uri\n");
|
|---|
| 970 | # A URL has the format protocol://[ac@]host[:port][path[?query][#fragment]].
|
|---|
| 971 | # Cf man URI
|
|---|
| 972 | my ($scheme, $authority, $path, $query, $fragment) =
|
|---|
| 973 | $uri =~ m|(?:([^:/?#]+):)?(?://([^/?#]*))?([^?#]*)(?:\?([^#]*))?(?:#(.*))?| if (defined $uri);
|
|---|
| 974 | my ($account,$host,$port) = $authority =~ m|(?:([^\@]+)\@)?([^:]+)(:(?:[0-9]+))?| if (defined $authority);
|
|---|
| 975 |
|
|---|
| 976 | $scheme = "" if (not defined $scheme);
|
|---|
| 977 | $authority = "" if (not defined $authority);
|
|---|
| 978 | $path = "" if (not defined $path);
|
|---|
| 979 | $account = "" if (not defined $account);
|
|---|
| 980 | $host = "" if (not defined $host);
|
|---|
| 981 | $port = "" if (not defined $port);
|
|---|
| 982 |
|
|---|
| 983 | pb_log(2,"DEBUG: scheme:$scheme ac:$account host:$host port:$port path:$path\n");
|
|---|
| 984 | return($scheme, $account, $host, $port, $path);
|
|---|
| 985 | }
|
|---|
| 986 |
|
|---|
| 987 |
|
|---|
| 988 | # Setup environment for CMS system for URL passed
|
|---|
| 989 | sub pb_cms_init {
|
|---|
| 990 |
|
|---|
| 991 | my $scheme = shift || undef;
|
|---|
| 992 |
|
|---|
| 993 | if ($scheme =~ /^svn/) {
|
|---|
| 994 | # svnversion more precise than svn info
|
|---|
| 995 | my $tmp = `(cd "$ENV{'PBDIR'}" ; svnversion .)`;
|
|---|
| 996 | chomp($tmp);
|
|---|
| 997 | $ENV{'PBREVISION'}=$tmp;
|
|---|
| 998 | $ENV{'PBCMSLOGFILE'}="svn.log";
|
|---|
| 999 | } elsif (($scheme eq "file") || ($scheme eq "ftp") || ($scheme eq "http")) {
|
|---|
| 1000 | $ENV{'PBREVISION'}="flat";
|
|---|
| 1001 | $ENV{'PBCMSLOGFILE'}="flat.log";
|
|---|
| 1002 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1003 | # Way too slow
|
|---|
| 1004 | #$ENV{'PBREVISION'}=`(cd "$ENV{'PBROOT'}" ; cvs rannotate -f . 2>&1 | awk '{print \$1}' | grep -E '^[0-9]' | cut -d. -f2 |sort -nu | tail -1)`;
|
|---|
| 1005 | #chomp($ENV{'PBREVISION'});
|
|---|
| 1006 | $ENV{'PBREVISION'}="cvs";
|
|---|
| 1007 | $ENV{'PBCMSLOGFILE'}="cvs.log";
|
|---|
| 1008 | $ENV{'CVS_RSH'} = "ssh" if ($scheme =~ /ssh/);
|
|---|
| 1009 | } else {
|
|---|
| 1010 | die "cms $scheme unknown";
|
|---|
| 1011 | }
|
|---|
| 1012 | }
|
|---|
| 1013 |
|
|---|
| 1014 | sub pb_get_date {
|
|---|
| 1015 |
|
|---|
| 1016 | return(localtime->sec(), localtime->min(), localtime->hour(), localtime->mday(), localtime->mon(), localtime->year(), localtime->wday(), localtime->yday(), localtime->isdst());
|
|---|
| 1017 | }
|
|---|
| 1018 |
|
|---|
| 1019 | sub pb_cms_export {
|
|---|
| 1020 |
|
|---|
| 1021 | my $uri = shift;
|
|---|
| 1022 | my $source = shift;
|
|---|
| 1023 | my $destdir = shift;
|
|---|
| 1024 | my $tmp;
|
|---|
| 1025 | my $tmp1;
|
|---|
| 1026 |
|
|---|
| 1027 | my @date = pb_get_date();
|
|---|
| 1028 | # If it's not flat, then we have a real uri as source
|
|---|
| 1029 | my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
|
|---|
| 1030 |
|
|---|
| 1031 | if ($scheme =~ /^svn/) {
|
|---|
| 1032 | if (-d $source) {
|
|---|
| 1033 | $tmp = $destdir;
|
|---|
| 1034 | } else {
|
|---|
| 1035 | $tmp = "$destdir/".basename($source);
|
|---|
| 1036 | pb_mkdir_p($tmp);
|
|---|
| 1037 | }
|
|---|
| 1038 | pb_system("svn export $source $tmp","Exporting $source from SVN to $tmp");
|
|---|
| 1039 | } elsif ($scheme eq "dir") {
|
|---|
| 1040 | pb_system("cp -a $path $destdir","Copying $uri from DIR to $destdir");
|
|---|
| 1041 | } elsif (($scheme eq "http") || ($scheme eq "ftp")) {
|
|---|
| 1042 | my $f = basename($path);
|
|---|
| 1043 | unlink "$ENV{'PBTMP'}/$f";
|
|---|
| 1044 | if (-x "/usr/bin/wget") {
|
|---|
| 1045 | pb_system("/usr/bin/wget -nv -O $ENV{'PBTMP'}/$f $uri"," ");
|
|---|
| 1046 | } elsif (-x "/usr/bin/curl") {
|
|---|
| 1047 | pb_system("/usr/bin/curl $uri -o $ENV{'PBTMP'}/$f","Downloading $uri with curl to $ENV{'PBTMP'}/$f\n");
|
|---|
| 1048 | } else {
|
|---|
| 1049 | die "Unable to download $uri.\nNo wget/curl available, please install one of those";
|
|---|
| 1050 | }
|
|---|
| 1051 | pb_cms_export("file://$ENV{'PBTMP'}/$f",$source,$destdir);
|
|---|
| 1052 | } elsif ($scheme eq "file") {
|
|---|
| 1053 | use File::MimeInfo;
|
|---|
| 1054 | my $mm = mimetype($path);
|
|---|
| 1055 | pb_log(2,"mimetype: $mm\n");
|
|---|
| 1056 | pb_mkdir_p($destdir);
|
|---|
| 1057 |
|
|---|
| 1058 | if ($mm =~ /\/x-bzip-compressed-tar$/) {
|
|---|
| 1059 | # tar+bzip2
|
|---|
| 1060 | pb_system("cd $destdir ; tar xfj $path","Extracting $path in $destdir");
|
|---|
| 1061 | } elsif ($mm =~ /\/x-lzma-compressed-tar$/) {
|
|---|
| 1062 | # tar+lzma
|
|---|
| 1063 | pb_system("cd $destdir ; tar xfY $path","Extracting $path in $destdir");
|
|---|
| 1064 | } elsif ($mm =~ /\/x-compressed-tar$/) {
|
|---|
| 1065 | # tar+gzip
|
|---|
| 1066 | pb_system("cd $destdir ; tar xfz $path","Extracting $path in $destdir");
|
|---|
| 1067 | } elsif ($mm =~ /\/x-tar$/) {
|
|---|
| 1068 | # tar
|
|---|
| 1069 | pb_system("cd $destdir ; tar xf $path","Extracting $path in $destdir");
|
|---|
| 1070 | } elsif ($mm =~ /\/zip$/) {
|
|---|
| 1071 | # zip
|
|---|
| 1072 | pb_system("cd $destdir ; unzip $path","Extracting $path in $destdir");
|
|---|
| 1073 | }
|
|---|
| 1074 | # Maybe we created an extra level of dir under destdir
|
|---|
| 1075 | opendir(DIR,$destdir) || die "Unable to open $destdir";
|
|---|
| 1076 | my $cnt = 0;
|
|---|
| 1077 | my $d0;
|
|---|
| 1078 | foreach my $d (readdir(DIR)) {
|
|---|
| 1079 | pb_log(3,"Looking at \'$d\'...");
|
|---|
| 1080 | next if ($d =~ /^\./);
|
|---|
| 1081 | $cnt++;
|
|---|
| 1082 | $d0 = $d;
|
|---|
| 1083 | }
|
|---|
| 1084 | closedir(DIR);
|
|---|
| 1085 | # Fix that by moving everything below that extra dir under destdir
|
|---|
| 1086 | # and remove the extra dir
|
|---|
| 1087 | if ($cnt == 1) {
|
|---|
| 1088 | pb_system("cd $destdir/$d0 ; mv * .??* .. 2>/dev/null");
|
|---|
| 1089 | pb_rm_rf("$destdir/$d0");
|
|---|
| 1090 | }
|
|---|
| 1091 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1092 | # CVS needs a relative path !
|
|---|
| 1093 | my $dir=dirname($destdir);
|
|---|
| 1094 | my $base=basename($destdir);
|
|---|
| 1095 | # CVS also needs a modules name not a dir
|
|---|
| 1096 | if (-d $source) {
|
|---|
| 1097 | $tmp1 = $source;
|
|---|
| 1098 | $tmp1 =~ s|$ENV{'PBROOT'}/||;
|
|---|
| 1099 | $tmp1 =~ s|$ENV{'PBDIR'}/||;
|
|---|
| 1100 | } else {
|
|---|
| 1101 | $tmp1 = dirname($source);
|
|---|
| 1102 | $tmp1 =~ s|$ENV{'PBROOT'}/||;
|
|---|
| 1103 | $tmp1 =~ s|$ENV{'PBDIR'}/||;
|
|---|
| 1104 | $tmp1 = $tmp1."/".basename($source);
|
|---|
| 1105 | }
|
|---|
| 1106 | my $pbdate = strftime("%Y-%m-%d %H:%M:%S", @date);
|
|---|
| 1107 | pb_system("cd $dir ; cvs -d $account\@$host:$path export -D \"$pbdate\" -d $base $tmp1","Exporting $source from CVS to $destdir");
|
|---|
| 1108 | } else {
|
|---|
| 1109 | die "cms $scheme unknown";
|
|---|
| 1110 | }
|
|---|
| 1111 | }
|
|---|
| 1112 |
|
|---|
| 1113 |
|
|---|
| 1114 | sub pb_create_authors {
|
|---|
| 1115 |
|
|---|
| 1116 | my $authors=shift;
|
|---|
| 1117 | my $dest=shift;
|
|---|
| 1118 | my $scheme=shift;
|
|---|
| 1119 |
|
|---|
| 1120 | return if ($authors eq "/dev/null");
|
|---|
| 1121 | open(SAUTH,$authors) || die "Unable to open $authors";
|
|---|
| 1122 | # Save a potentially existing AUTHORS file and write instead toi AUTHORS.pb
|
|---|
| 1123 | my $ext = "";
|
|---|
| 1124 | if (-f "$dest/AUTHORS") {
|
|---|
| 1125 | $ext = ".pb";
|
|---|
| 1126 | }
|
|---|
| 1127 | open(DAUTH,"> $dest/AUTHORS$ext") || die "Unable to create $dest/AUTHORS$ext";
|
|---|
| 1128 | print DAUTH "Authors of the project are:\n";
|
|---|
| 1129 | print DAUTH "===========================\n";
|
|---|
| 1130 | while (<SAUTH>) {
|
|---|
| 1131 | my ($nick,$gcos) = split(/:/);
|
|---|
| 1132 | chomp($gcos);
|
|---|
| 1133 | print DAUTH "$gcos";
|
|---|
| 1134 | if (defined $scheme) {
|
|---|
| 1135 | # Do not give a scheme for flat types
|
|---|
| 1136 | my $endstr="";
|
|---|
| 1137 | if ("$ENV{'PBREVISION'}" ne "flat") {
|
|---|
| 1138 | $endstr = " under $scheme";
|
|---|
| 1139 | }
|
|---|
| 1140 | print DAUTH " ($nick$endstr)\n";
|
|---|
| 1141 | } else {
|
|---|
| 1142 | print DAUTH "\n";
|
|---|
| 1143 | }
|
|---|
| 1144 | }
|
|---|
| 1145 | close(DAUTH);
|
|---|
| 1146 | close(SAUTH);
|
|---|
| 1147 | }
|
|---|
| 1148 |
|
|---|
| 1149 | sub pb_cms_log {
|
|---|
| 1150 |
|
|---|
| 1151 | my $scheme = shift;
|
|---|
| 1152 | my $pkgdir = shift;
|
|---|
| 1153 | my $dest = shift;
|
|---|
| 1154 | my $chglog = shift;
|
|---|
| 1155 | my $authors = shift;
|
|---|
| 1156 |
|
|---|
| 1157 | pb_create_authors($authors,$dest,$scheme);
|
|---|
| 1158 |
|
|---|
| 1159 | if ($scheme =~ /^svn/) {
|
|---|
| 1160 | if (! -f "$dest/ChangeLog") {
|
|---|
| 1161 | if (-x "/usr/bin/svn2cl") {
|
|---|
| 1162 | # In case we have no network, just create an empty one before to allow correct build
|
|---|
| 1163 | open(CL,"> $dest/ChangeLog") || die "Unable to create $dest/ChangeLog";
|
|---|
| 1164 | close(CL);
|
|---|
| 1165 | pb_system("/usr/bin/svn2cl --group-by-day --authors=$authors -i -o $dest/ChangeLog $pkgdir","Generating ChangeLog from SVN with svn2cl");
|
|---|
| 1166 | } else {
|
|---|
| 1167 | # To be written from pbcl
|
|---|
| 1168 | pb_system("svn log -v $pkgdir > $dest/$ENV{'PBCMSLOGFILE'}","Extracting log info from SVN");
|
|---|
| 1169 | }
|
|---|
| 1170 | }
|
|---|
| 1171 | } elsif (($scheme eq "file") || ($scheme eq "dir") || ($scheme eq "http") || ($scheme eq "ftp")) {
|
|---|
| 1172 | if (! -f "$dest/ChangeLog") {
|
|---|
| 1173 | pb_system("echo ChangeLog for $pkgdir > $dest/ChangeLog","Empty ChangeLog file created");
|
|---|
| 1174 | }
|
|---|
| 1175 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1176 | my $tmp=basename($pkgdir);
|
|---|
| 1177 | # CVS needs a relative path !
|
|---|
| 1178 | if (! -f "$dest/ChangeLog") {
|
|---|
| 1179 | if (-x "/usr/bin/cvs2cl") {
|
|---|
| 1180 | # In case we have no network, just create an empty one before to allow correct build
|
|---|
| 1181 | open(CL,"> $dest/ChangeLog") || die "Unable to create $dest/ChangeLog";
|
|---|
| 1182 | close(CL);
|
|---|
| 1183 | pb_system("/usr/bin/cvs2cl --group-by-day -U $authors -f $dest/ChangeLog $pkgdir","Generating ChangeLog from CVS with cvs2cl");
|
|---|
| 1184 | } else {
|
|---|
| 1185 | # To be written from pbcl
|
|---|
| 1186 | pb_system("cvs log $tmp > $dest/$ENV{'PBCMSLOGFILE'}","Extracting log info from CVS");
|
|---|
| 1187 | }
|
|---|
| 1188 | }
|
|---|
| 1189 | } else {
|
|---|
| 1190 | die "cms $scheme unknown";
|
|---|
| 1191 | }
|
|---|
| 1192 | }
|
|---|
| 1193 |
|
|---|
| 1194 | sub pb_cms_get_uri {
|
|---|
| 1195 |
|
|---|
| 1196 | my $scheme = shift;
|
|---|
| 1197 | my $dir = shift;
|
|---|
| 1198 |
|
|---|
| 1199 | my $res = "";
|
|---|
| 1200 | my $void = "";
|
|---|
| 1201 |
|
|---|
| 1202 | if ($scheme =~ /^svn/) {
|
|---|
| 1203 | open(PIPE,"LANGUAGE=C svn info $dir |") || return("");
|
|---|
| 1204 | while (<PIPE>) {
|
|---|
| 1205 | ($void,$res) = split(/^URL:/) if (/^URL:/);
|
|---|
| 1206 | }
|
|---|
| 1207 | $res =~ s/^\s*//;
|
|---|
| 1208 | close(PIPE);
|
|---|
| 1209 | chomp($res);
|
|---|
| 1210 | } elsif ($scheme eq "flat") {
|
|---|
| 1211 | $res = "flat";
|
|---|
| 1212 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1213 | # This path is always the root path of CVS, but we may be below
|
|---|
| 1214 | open(FILE,"$dir/CVS/Root") || die "$dir isn't CVS controlled";
|
|---|
| 1215 | $res = <FILE>;
|
|---|
| 1216 | chomp($res);
|
|---|
| 1217 | close(FILE);
|
|---|
| 1218 | # Find where we are in the tree
|
|---|
| 1219 | my $rdir = $dir;
|
|---|
| 1220 | while ((! -d "$rdir/CVSROOT") && ($rdir ne "/")) {
|
|---|
| 1221 | $rdir = dirname($rdir);
|
|---|
| 1222 | }
|
|---|
| 1223 | die "Unable to find a CVSROOT dir in the parents of $dir" if (! -d "$rdir/CVSROOT");
|
|---|
| 1224 | #compute our place under that root dir - should be a relative path
|
|---|
| 1225 | $dir =~ s|^$rdir||;
|
|---|
| 1226 | my $suffix = "";
|
|---|
| 1227 | $suffix = "$dir" if ($dir ne "");
|
|---|
| 1228 |
|
|---|
| 1229 | my $prefix = "";
|
|---|
| 1230 | if ($scheme =~ /ssh/) {
|
|---|
| 1231 | $prefix = "cvs+ssh://";
|
|---|
| 1232 | } else {
|
|---|
| 1233 | $prefix = "cvs://";
|
|---|
| 1234 | }
|
|---|
| 1235 | $res = $prefix.$res.$suffix;
|
|---|
| 1236 | } else {
|
|---|
| 1237 | die "cms $scheme unknown";
|
|---|
| 1238 | }
|
|---|
| 1239 | pb_log(2,"Found CMS info: $res\n");
|
|---|
| 1240 | return($res);
|
|---|
| 1241 | }
|
|---|
| 1242 |
|
|---|
| 1243 | sub pb_cms_copy {
|
|---|
| 1244 | my $scheme = shift;
|
|---|
| 1245 | my $oldurl = shift;
|
|---|
| 1246 | my $newurl = shift;
|
|---|
| 1247 |
|
|---|
| 1248 | if ($scheme =~ /^svn/) {
|
|---|
| 1249 | pb_system("svn copy -m \"Creation of $newurl from $oldurl\" $oldurl $newurl","Copying $oldurl to $newurl ");
|
|---|
| 1250 | } elsif ($scheme eq "flat") {
|
|---|
| 1251 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1252 | } else {
|
|---|
| 1253 | die "cms $scheme unknown";
|
|---|
| 1254 | }
|
|---|
| 1255 | }
|
|---|
| 1256 |
|
|---|
| 1257 | sub pb_cms_checkout {
|
|---|
| 1258 | my $scheme = shift;
|
|---|
| 1259 | my $url = shift;
|
|---|
| 1260 | my $destination = shift;
|
|---|
| 1261 |
|
|---|
| 1262 | if ($scheme =~ /^svn/) {
|
|---|
| 1263 | pb_system("svn co $url $destination","Checking out $url to $destination ");
|
|---|
| 1264 | } elsif ($scheme eq "flat") {
|
|---|
| 1265 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1266 | } else {
|
|---|
| 1267 | die "cms $scheme unknown";
|
|---|
| 1268 | }
|
|---|
| 1269 | }
|
|---|
| 1270 |
|
|---|
| 1271 | sub pb_cms_checkin {
|
|---|
| 1272 | my $scheme = shift;
|
|---|
| 1273 | my $dir = shift;
|
|---|
| 1274 |
|
|---|
| 1275 | my $ver = basename($dir);
|
|---|
| 1276 | if ($scheme =~ /^svn/) {
|
|---|
| 1277 | pb_system("svn ci -m \"Updated to $ver\" $dir","Checking in $dir");
|
|---|
| 1278 | pb_system("svn up $dir","Updating $dir");
|
|---|
| 1279 | } elsif ($scheme eq "flat") {
|
|---|
| 1280 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1281 | } else {
|
|---|
| 1282 | die "cms $scheme unknown";
|
|---|
| 1283 | }
|
|---|
| 1284 | }
|
|---|
| 1285 |
|
|---|
| 1286 | sub pb_cms_isdiff {
|
|---|
| 1287 | my $scheme = shift;
|
|---|
| 1288 |
|
|---|
| 1289 | if ($scheme =~ /^svn/) {
|
|---|
| 1290 | open(PIPE,"svn diff $ENV{'PBROOT'} |") || die "Unable to get svn diff from $ENV{'PBROOT'}";
|
|---|
| 1291 | my $l = 0;
|
|---|
| 1292 | while (<PIPE>) {
|
|---|
| 1293 | $l++;
|
|---|
| 1294 | }
|
|---|
| 1295 | return($l);
|
|---|
| 1296 | } elsif ($scheme eq "flat") {
|
|---|
| 1297 | } elsif ($scheme =~ /^cvs/) {
|
|---|
| 1298 | } else {
|
|---|
| 1299 | die "cms $scheme unknown";
|
|---|
| 1300 | }
|
|---|
| 1301 | }
|
|---|
| 1302 |
|
|---|
| 1303 | # Get all filters to apply
|
|---|
| 1304 | # They're cumulative from less specific to most specific
|
|---|
| 1305 | # suffix is .pbf
|
|---|
| 1306 |
|
|---|
| 1307 | sub pb_get_filters {
|
|---|
| 1308 |
|
|---|
| 1309 | my @ffiles;
|
|---|
| 1310 | my ($ffile00, $ffile0, $ffile1, $ffile2, $ffile3);
|
|---|
| 1311 | my ($mfile00, $mfile0, $mfile1, $mfile2, $mfile3);
|
|---|
| 1312 | my $pbpkg = shift || die "No package specified";
|
|---|
| 1313 | my $dtype = shift || "";
|
|---|
| 1314 | my $dfam = shift || "";
|
|---|
| 1315 | my $ddir = shift || "";
|
|---|
| 1316 | my $dver = shift || "";
|
|---|
| 1317 | my $ptr; # returned value pointer on the hash of filters
|
|---|
| 1318 | my %ptr;
|
|---|
| 1319 | my %h;
|
|---|
| 1320 |
|
|---|
| 1321 | # Global filter files first, then package specificities
|
|---|
| 1322 | if (-d "$ENV{'PBROOT'}/pbfilter") {
|
|---|
| 1323 | $mfile00 = "$ENV{'PBROOT'}/pbfilter/all.pbf" if (-f "$ENV{'PBROOT'}/pbfilter/all.pbf");
|
|---|
| 1324 | $mfile0 = "$ENV{'PBROOT'}/pbfilter/$dtype.pbf" if (-f "$ENV{'PBROOT'}/pbfilter/$dtype.pbf");
|
|---|
| 1325 | $mfile1 = "$ENV{'PBROOT'}/pbfilter/$dfam.pbf" if (-f "$ENV{'PBROOT'}/pbfilter/$dfam.pbf");
|
|---|
| 1326 | $mfile2 = "$ENV{'PBROOT'}/pbfilter/$ddir.pbf" if (-f "$ENV{'PBROOT'}/pbfilter/$ddir.pbf");
|
|---|
| 1327 | $mfile3 = "$ENV{'PBROOT'}/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBROOT'}/pbfilter/$ddir-$dver.pbf");
|
|---|
| 1328 |
|
|---|
| 1329 | push @ffiles,$mfile00 if (defined $mfile00);
|
|---|
| 1330 | push @ffiles,$mfile0 if (defined $mfile0);
|
|---|
| 1331 | push @ffiles,$mfile1 if (defined $mfile1);
|
|---|
| 1332 | push @ffiles,$mfile2 if (defined $mfile2);
|
|---|
| 1333 | push @ffiles,$mfile3 if (defined $mfile3);
|
|---|
| 1334 | }
|
|---|
| 1335 |
|
|---|
| 1336 | if (-d "$ENV{'PBROOT'}/$pbpkg/pbfilter") {
|
|---|
| 1337 | $ffile00 = "$ENV{'PBROOT'}/$pbpkg/pbfilter/all.pbf" if (-f "$ENV{'PBROOT'}/$pbpkg/pbfilter/all.pbf");
|
|---|
| 1338 | $ffile0 = "$ENV{'PBROOT'}/$pbpkg/pbfilter/$dtype.pbf" if (-f "$ENV{'PBROOT'}/$pbpkg/pbfilter/$dtype.pbf");
|
|---|
| 1339 | $ffile1 = "$ENV{'PBROOT'}/$pbpkg/pbfilter/$dfam.pbf" if (-f "$ENV{'PBROOT'}/$pbpkg/pbfilter/$dfam.pbf");
|
|---|
| 1340 | $ffile2 = "$ENV{'PBROOT'}/$pbpkg/pbfilter/$ddir.pbf" if (-f "$ENV{'PBROOT'}/$pbpkg/pbfilter/$ddir.pbf");
|
|---|
| 1341 | $ffile3 = "$ENV{'PBROOT'}/$pbpkg/pbfilter/$ddir-$dver.pbf" if (-f "$ENV{'PBROOT'}/$pbpkg/pbfilter/$ddir-$dver.pbf");
|
|---|
| 1342 |
|
|---|
| 1343 | push @ffiles,$ffile00 if (defined $ffile00);
|
|---|
| 1344 | push @ffiles,$ffile0 if (defined $ffile0);
|
|---|
| 1345 | push @ffiles,$ffile1 if (defined $ffile1);
|
|---|
| 1346 | push @ffiles,$ffile2 if (defined $ffile2);
|
|---|
| 1347 | push @ffiles,$ffile3 if (defined $ffile3);
|
|---|
| 1348 | }
|
|---|
| 1349 | if (@ffiles) {
|
|---|
| 1350 | pb_log(2,"DEBUG ffiles: ".Dumper(\@ffiles)."\n");
|
|---|
| 1351 |
|
|---|
| 1352 | foreach my $f (@ffiles) {
|
|---|
| 1353 | open(CONF,$f) || next;
|
|---|
| 1354 | while(<CONF>) {
|
|---|
| 1355 | if (/^\s*([A-z0-9-_]+)\s+([[A-z0-9-_]+)\s*=\s*(.+)$/) {
|
|---|
| 1356 | $h{$1}{$2}=$3;
|
|---|
| 1357 | }
|
|---|
| 1358 | }
|
|---|
| 1359 | close(CONF);
|
|---|
| 1360 |
|
|---|
| 1361 | $ptr = $h{"filter"};
|
|---|
| 1362 | pb_log(2,"DEBUG f:".Dumper($ptr)."\n");
|
|---|
| 1363 | }
|
|---|
| 1364 | } else {
|
|---|
| 1365 | $ptr = { };
|
|---|
| 1366 | }
|
|---|
| 1367 | %ptr = %$ptr;
|
|---|
| 1368 | return(\%ptr);
|
|---|
| 1369 | }
|
|---|
| 1370 |
|
|---|
| 1371 | # Function which applies filter on pb build files
|
|---|
| 1372 | sub pb_filter_file_pb {
|
|---|
| 1373 |
|
|---|
| 1374 | my $f=shift;
|
|---|
| 1375 | my $ptr=shift;
|
|---|
| 1376 | my %filter=%$ptr;
|
|---|
| 1377 | my $destfile=shift;
|
|---|
| 1378 | my $dtype=shift;
|
|---|
| 1379 | my $pbsuf=shift;
|
|---|
| 1380 | my $pbproj=shift;
|
|---|
| 1381 | my $pbpkg=shift;
|
|---|
| 1382 | my $pbver=shift;
|
|---|
| 1383 | my $pbtag=shift;
|
|---|
| 1384 | my $pbrev=shift;
|
|---|
| 1385 | my $pbdate=shift;
|
|---|
| 1386 | my $defpkgdir = shift;
|
|---|
| 1387 | my $extpkgdir = shift;
|
|---|
| 1388 | my $pbpackager = shift;
|
|---|
| 1389 | my $chglog = shift || undef;
|
|---|
| 1390 |
|
|---|
| 1391 | pb_log(2,"DEBUG: From $f to $destfile\n");
|
|---|
| 1392 | pb_mkdir_p(dirname($destfile)) if (! -d dirname($destfile));
|
|---|
| 1393 | open(DEST,"> $destfile") || die "Unable to create $destfile";
|
|---|
| 1394 | open(FILE,"$f") || die "Unable to open $f: $!";
|
|---|
| 1395 | while (<FILE>) {
|
|---|
| 1396 | my $line = $_;
|
|---|
| 1397 | foreach my $s (keys %filter) {
|
|---|
| 1398 | # Process single variables
|
|---|
| 1399 | pb_log(2,"DEBUG filter{$s}: $filter{$s}\n");
|
|---|
| 1400 | my $tmp = $filter{$s};
|
|---|
| 1401 | next if (not defined $tmp);
|
|---|
| 1402 | # Expand variables if any single one found
|
|---|
| 1403 | pb_log(2,"DEBUG tmp: $tmp\n");
|
|---|
| 1404 | if ($tmp =~ /\$/) {
|
|---|
| 1405 | eval { $tmp =~ s/(\$\w+)/$1/eeg };
|
|---|
| 1406 | # special case for ChangeLog only for pb
|
|---|
| 1407 | } elsif (($s =~ /^PBLOG$/) && ($line =~ /^PBLOG$/)) {
|
|---|
| 1408 | my $p = $defpkgdir->{$pbpkg};
|
|---|
| 1409 | $p = $extpkgdir->{$pbpkg} if (not defined $p);
|
|---|
| 1410 | pb_changelog($dtype, $pbpkg, $pbver, $pbtag, $pbsuf, $p, \*DEST, $tmp, $chglog);
|
|---|
| 1411 | $tmp = "";
|
|---|
| 1412 | }
|
|---|
| 1413 | $line =~ s|$s|$tmp|;
|
|---|
| 1414 | }
|
|---|
| 1415 | print DEST $line;
|
|---|
| 1416 | }
|
|---|
| 1417 | close(FILE);
|
|---|
| 1418 | close(DEST);
|
|---|
| 1419 | }
|
|---|
| 1420 |
|
|---|
| 1421 | # Function which applies filter on files (external call)
|
|---|
| 1422 | sub pb_filter_file_inplace {
|
|---|
| 1423 |
|
|---|
| 1424 | my $ptr=shift;
|
|---|
| 1425 | my %filter=%$ptr;
|
|---|
| 1426 | my $destfile=shift;
|
|---|
| 1427 | my $pbproj=shift;
|
|---|
| 1428 | my $pbpkg=shift;
|
|---|
| 1429 | my $pbver=shift;
|
|---|
| 1430 | my $pbtag=shift;
|
|---|
| 1431 | my $pbrev=shift;
|
|---|
| 1432 | my $pbdate=shift;
|
|---|
| 1433 | my $pbpackager=shift;
|
|---|
| 1434 |
|
|---|
| 1435 | my $cp = "$ENV{'PBTMP'}/".basename($destfile);
|
|---|
| 1436 | copy($destfile,$cp) || die "Unable to create $cp";
|
|---|
| 1437 |
|
|---|
| 1438 | pb_filter_file($cp,$ptr,$destfile,$pbproj,$pbpkg,$pbver,$pbtag,$pbrev,$pbdate,$pbpackager);
|
|---|
| 1439 | unlink $cp;
|
|---|
| 1440 | }
|
|---|
| 1441 |
|
|---|
| 1442 | # Function which applies filter on files (external call)
|
|---|
| 1443 | sub pb_filter_file {
|
|---|
| 1444 |
|
|---|
| 1445 | my $f=shift;
|
|---|
| 1446 | my $ptr=shift;
|
|---|
| 1447 | my %filter=%$ptr;
|
|---|
| 1448 | my $destfile=shift;
|
|---|
| 1449 | my $pbproj=shift;
|
|---|
| 1450 | my $pbpkg=shift;
|
|---|
| 1451 | my $pbver=shift;
|
|---|
| 1452 | my $pbtag=shift;
|
|---|
| 1453 | my $pbrev=shift;
|
|---|
| 1454 | my $pbdate=shift;
|
|---|
| 1455 | my $pbpackager=shift;
|
|---|
| 1456 |
|
|---|
| 1457 | pb_log(2,"DEBUG: From $f to $destfile\n");
|
|---|
| 1458 | pb_mkdir_p(dirname($destfile)) if (! -d dirname($destfile));
|
|---|
| 1459 | open(DEST,"> $destfile") || die "Unable to create $destfile";
|
|---|
| 1460 | open(FILE,"$f") || die "Unable to open $f: $!";
|
|---|
| 1461 | while (<FILE>) {
|
|---|
| 1462 | my $line = $_;
|
|---|
| 1463 | foreach my $s (keys %filter) {
|
|---|
| 1464 | # Process single variables
|
|---|
| 1465 | pb_log(2,"DEBUG filter{$s}: $filter{$s}\n");
|
|---|
| 1466 | my $tmp = $filter{$s};
|
|---|
| 1467 | next if (not defined $tmp);
|
|---|
| 1468 | # Expand variables if any single one found
|
|---|
| 1469 | if ($tmp =~ /\$/) {
|
|---|
| 1470 | eval { $tmp =~ s/(\$\w+)/$1/eeg };
|
|---|
| 1471 | }
|
|---|
| 1472 | $line =~ s|$s|$tmp|;
|
|---|
| 1473 | }
|
|---|
| 1474 | print DEST $line;
|
|---|
| 1475 | }
|
|---|
| 1476 | close(FILE);
|
|---|
| 1477 | close(DEST);
|
|---|
| 1478 | }
|
|---|
| 1479 |
|
|---|
| 1480 | sub pb_log_init {
|
|---|
| 1481 |
|
|---|
| 1482 | $debug = shift || 0;
|
|---|
| 1483 | $LOG = shift || \*STDOUT;
|
|---|
| 1484 |
|
|---|
| 1485 | }
|
|---|
| 1486 |
|
|---|
| 1487 | sub pb_log {
|
|---|
| 1488 |
|
|---|
| 1489 | my $dlevel = shift;
|
|---|
| 1490 | my $msg = shift;
|
|---|
| 1491 |
|
|---|
| 1492 | print $LOG "$msg" if ($dlevel <= $debug);
|
|---|
| 1493 | }
|
|---|
| 1494 |
|
|---|
| 1495 | #
|
|---|
| 1496 | # Return the list of packages we are working on
|
|---|
| 1497 | #
|
|---|
| 1498 | sub pb_get_pkg {
|
|---|
| 1499 |
|
|---|
| 1500 | my @pkgs = ();
|
|---|
| 1501 | my $defpkgdir = shift || undef;
|
|---|
| 1502 | my $extpkgdir = shift || undef;
|
|---|
| 1503 |
|
|---|
| 1504 | # Get packages list
|
|---|
| 1505 | if (not defined $ARGV[0]) {
|
|---|
| 1506 | @pkgs = keys %$defpkgdir if (defined $defpkgdir);
|
|---|
| 1507 | } elsif ($ARGV[0] =~ /^all$/) {
|
|---|
| 1508 | @pkgs = keys %$defpkgdir if (defined $defpkgdir);
|
|---|
| 1509 | push(@pkgs, keys %$extpkgdir) if (defined $extpkgdir);
|
|---|
| 1510 | } else {
|
|---|
| 1511 | @pkgs = @ARGV;
|
|---|
| 1512 | }
|
|---|
| 1513 | pb_log(0,"Packages: ".join(',',@pkgs)."\n");
|
|---|
| 1514 | return(\@pkgs);
|
|---|
| 1515 | }
|
|---|
| 1516 |
|
|---|
| 1517 | sub pb_cms_compliant {
|
|---|
| 1518 |
|
|---|
| 1519 | my $param = shift;
|
|---|
| 1520 | my $envar = shift;
|
|---|
| 1521 | my $defdir = shift;
|
|---|
| 1522 | my $uri = shift;
|
|---|
| 1523 | my $pbinit = shift;
|
|---|
| 1524 | #
|
|---|
| 1525 | # Check pbconf/project cms compliance
|
|---|
| 1526 | #
|
|---|
| 1527 |
|
|---|
| 1528 | my ($pdir) = pb_conf_get_if($param);
|
|---|
| 1529 | my %pdir = %$pdir;
|
|---|
| 1530 |
|
|---|
| 1531 | if ((defined $pdir) && (defined $pdir{$ENV{'PBPROJ'}})) {
|
|---|
| 1532 | # That's always the environment variable that will be used
|
|---|
| 1533 | $ENV{$envar} = $pdir{$ENV{'PBPROJ'}};
|
|---|
| 1534 | } else {
|
|---|
| 1535 | pb_log(0,"WARNING: no $param defined, using $defdir\n");
|
|---|
| 1536 | pb_log(0," Please create a $param reference for project $ENV{'PBPROJ'} in $ENV{'PBETC'}\n");
|
|---|
| 1537 | pb_log(0," if you want to use another directory\n");
|
|---|
| 1538 | $ENV{$envar} = "$defdir";
|
|---|
| 1539 | }
|
|---|
| 1540 |
|
|---|
| 1541 | # Expand potential env variable in it
|
|---|
| 1542 | eval { $ENV{$envar} =~ s/(\$ENV.+\})/$1/eeg };
|
|---|
| 1543 | pb_log(2,"$envar: $ENV{$envar}\n");
|
|---|
| 1544 |
|
|---|
| 1545 | my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
|
|---|
| 1546 |
|
|---|
| 1547 | if ((! -d "$ENV{$envar}") || (defined $pbinit)) {
|
|---|
| 1548 | pb_log(1,"Checking out $uri\n");
|
|---|
| 1549 | pb_cms_checkout($scheme,$uri,$ENV{$envar});
|
|---|
| 1550 | } else {
|
|---|
| 1551 | pb_log(1,"$uri found locally, checking content\n");
|
|---|
| 1552 | my $cmsurl = pb_cms_get_uri($scheme,$ENV{$envar});
|
|---|
| 1553 | my ($scheme2, $account2, $host2, $port2, $path2) = pb_get_uri($cmsurl);
|
|---|
| 1554 | if ($cmsurl ne $uri) {
|
|---|
| 1555 | # The local content doesn't correpond to the repository
|
|---|
| 1556 | pb_log(0,"ERROR: Inconsistency detected:\n");
|
|---|
| 1557 | pb_log(0," * $ENV{$envar} refers to $cmsurl but\n");
|
|---|
| 1558 | pb_log(0," * $ENV{'PBETC'} refers to $uri\n");
|
|---|
| 1559 | die "Project $ENV{'PBPROJ'} is not Project-Builder compliant.";
|
|---|
| 1560 | } else {
|
|---|
| 1561 | pb_log(1,"Content correct - doing nothing - you may want to update your repository however\n");
|
|---|
| 1562 | # they match - do nothing - there may be local changes
|
|---|
| 1563 | }
|
|---|
| 1564 | }
|
|---|
| 1565 | }
|
|---|
| 1566 |
|
|---|
| 1567 | sub pb_changelog {
|
|---|
| 1568 |
|
|---|
| 1569 | my $dtype = shift;
|
|---|
| 1570 | my $pkg = shift;
|
|---|
| 1571 | my $pbver = shift;
|
|---|
| 1572 | my $pbtag = shift;
|
|---|
| 1573 | my $dsuf = shift;
|
|---|
| 1574 | my $path = shift;
|
|---|
| 1575 | my $OUTPUT = shift;
|
|---|
| 1576 | my $doit = shift;
|
|---|
| 1577 | my $chglog = shift || undef;
|
|---|
| 1578 |
|
|---|
| 1579 | my $log = "";
|
|---|
| 1580 |
|
|---|
| 1581 | # For date handling
|
|---|
| 1582 | $ENV{LANG}="C";
|
|---|
| 1583 |
|
|---|
| 1584 | if ((not (defined $dtype)) || ($dtype eq "") ||
|
|---|
| 1585 | (not (defined $pkg)) || ($pkg eq "") ||
|
|---|
| 1586 | (not (defined $pbver)) || ($pbver eq "") ||
|
|---|
| 1587 | (not (defined $pbtag)) || ($pbtag eq "") ||
|
|---|
| 1588 | (not (defined $dsuf)) || ($dsuf eq "") ||
|
|---|
| 1589 | (not (defined $path)) || ($path eq "") ||
|
|---|
| 1590 | (not (defined $OUTPUT)) || ($OUTPUT eq "") ||
|
|---|
| 1591 | (not (defined $doit)) || ($doit eq "")) {
|
|---|
| 1592 | print $OUTPUT "\n";
|
|---|
| 1593 | return;
|
|---|
| 1594 | }
|
|---|
| 1595 |
|
|---|
| 1596 | if (((not defined $chglog) || (! -f $chglog)) && ($doit eq "yes")) {
|
|---|
| 1597 | #pb_log(2,"No ChangeLog file ($chglog) for $pkg\n";
|
|---|
| 1598 | print $OUTPUT "\n";
|
|---|
| 1599 | return;
|
|---|
| 1600 | }
|
|---|
| 1601 |
|
|---|
| 1602 | my $date;
|
|---|
| 1603 | my $ndate;
|
|---|
| 1604 | my $n2date;
|
|---|
| 1605 | my $ver;
|
|---|
| 1606 | my $ver2;
|
|---|
| 1607 | my ($packager) = pb_conf_get("pbpackager");
|
|---|
| 1608 |
|
|---|
| 1609 | # If we don't need to do it, or don't have it fake something
|
|---|
| 1610 | if (((not defined $chglog) || (! -f $chglog)) && ($doit ne "yes")) {
|
|---|
| 1611 | my @date=(localtime->sec(), localtime->min(), localtime->hour(), localtime->mday(), localtime->mon(), localtime->year(), localtime->wday(), localtime->yday(), localtime->isdst());
|
|---|
| 1612 | $date = strftime("%Y-%m-%d", @date);
|
|---|
| 1613 | $ndate = UnixDate($date,"%a", "%b", "%d", "%Y");
|
|---|
| 1614 | $n2date = &UnixDate($date,"%a, %d %b %Y %H:%M:%S %z");
|
|---|
| 1615 | if (($dtype eq "rpm") || ($dtype eq "fc")) {
|
|---|
| 1616 | $ver2 = "$pbver-$pbtag$dsuf";
|
|---|
| 1617 | print $OUTPUT "* $ndate $packager->{$ENV{'PBPROJ'}} $ver2\n";
|
|---|
| 1618 | print $OUTPUT "- Updated to $pbver\n";
|
|---|
| 1619 | }
|
|---|
| 1620 | if ($dtype eq "deb") {
|
|---|
| 1621 | print $OUTPUT "$pkg ($pbver) unstable; urgency=low\n";
|
|---|
| 1622 | print $OUTPUT "\n";
|
|---|
| 1623 | print $OUTPUT " -- $packager->{$ENV{'PBPROJ'}} $n2date\n\n\n";
|
|---|
| 1624 | }
|
|---|
| 1625 | return;
|
|---|
| 1626 | }
|
|---|
| 1627 |
|
|---|
| 1628 | open(INPUT,"$chglog") || die "Unable to open $chglog (read)";
|
|---|
| 1629 |
|
|---|
| 1630 | # Skip first 4 lines
|
|---|
| 1631 | my $tmp = <INPUT>;
|
|---|
| 1632 | $tmp = <INPUT>;
|
|---|
| 1633 | $tmp = <INPUT>;
|
|---|
| 1634 | if ($dtype eq "announce") {
|
|---|
| 1635 | print $OUTPUT $tmp;
|
|---|
| 1636 | }
|
|---|
| 1637 | $tmp = <INPUT>;
|
|---|
| 1638 | if ($dtype eq "announce") {
|
|---|
| 1639 | print $OUTPUT $tmp;
|
|---|
| 1640 | }
|
|---|
| 1641 |
|
|---|
| 1642 | my $first=1;
|
|---|
| 1643 |
|
|---|
| 1644 | # Handle each block separated by newline
|
|---|
| 1645 | while (<INPUT>) {
|
|---|
| 1646 | ($ver, $date) = split(/ /);
|
|---|
| 1647 | $ver =~ s/^v//;
|
|---|
| 1648 | chomp($date);
|
|---|
| 1649 | $date =~ s/\(([0-9-]+)\)/$1/;
|
|---|
| 1650 | #pb_log(2,"**$date**\n";
|
|---|
| 1651 | $ndate = UnixDate($date,"%a", "%b", "%d", "%Y");
|
|---|
| 1652 | $n2date = &UnixDate($date,"%a, %d %b %Y %H:%M:%S %z");
|
|---|
| 1653 | #pb_log(2,"**$ndate**\n";
|
|---|
| 1654 |
|
|---|
| 1655 | if (($dtype eq "rpm") || ($dtype eq "fc")) {
|
|---|
| 1656 | if ($ver !~ /-/) {
|
|---|
| 1657 | if ($first eq 1) {
|
|---|
| 1658 | $ver2 = "$ver-$pbtag$dsuf";
|
|---|
| 1659 | $first=0;
|
|---|
| 1660 | } else {
|
|---|
| 1661 | $ver2 = "$ver-1$dsuf";
|
|---|
| 1662 | }
|
|---|
| 1663 | } else {
|
|---|
| 1664 | $ver2 = "$ver$dsuf";
|
|---|
| 1665 | }
|
|---|
| 1666 | print $OUTPUT "* $ndate $packager->{$ENV{'PBPROJ'}} $ver2\n";
|
|---|
| 1667 | print $OUTPUT "- Updated to $ver\n";
|
|---|
| 1668 | }
|
|---|
| 1669 | if ($dtype eq "deb") {
|
|---|
| 1670 | print $OUTPUT "$pkg ($ver) unstable; urgency=low\n";
|
|---|
| 1671 | print $OUTPUT "\n";
|
|---|
| 1672 | }
|
|---|
| 1673 |
|
|---|
| 1674 | $tmp = <INPUT>;
|
|---|
| 1675 | while ($tmp !~ /^$/) {
|
|---|
| 1676 | if ($dtype eq "deb") {
|
|---|
| 1677 | $tmp =~ s/^- //;
|
|---|
| 1678 | print $OUTPUT " * $tmp";
|
|---|
| 1679 | } elsif ($dtype eq "rpm") {
|
|---|
| 1680 | print $OUTPUT "$tmp";
|
|---|
| 1681 | } else {
|
|---|
| 1682 | print $OUTPUT "$tmp";
|
|---|
| 1683 | }
|
|---|
| 1684 | last if (eof(INPUT));
|
|---|
| 1685 | $tmp = <INPUT>;
|
|---|
| 1686 | }
|
|---|
| 1687 | print $OUTPUT "\n";
|
|---|
| 1688 |
|
|---|
| 1689 | if ($dtype eq "deb") {
|
|---|
| 1690 | # Cf: http://www.debian.org/doc/debian-policy/ch-source.html#s-dpkgchangelog
|
|---|
| 1691 | print $OUTPUT " -- $packager->{$ENV{'PBPROJ'}} $n2date\n\n\n";
|
|---|
| 1692 | }
|
|---|
| 1693 |
|
|---|
| 1694 | last if (eof(INPUT));
|
|---|
| 1695 | last if ($dtype eq "announce");
|
|---|
| 1696 | }
|
|---|
| 1697 | close(INPUT);
|
|---|
| 1698 | }
|
|---|
| 1699 | 1;
|
|---|