- Timestamp:
- Oct 27, 2007, 7:10:45 PM (18 years ago)
- Location:
- devel
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/ChangeLog
r259 r265 4 4 5 5 0.8.9 (2007-10-25) 6 - Fix a bug for support of PBLOG = no 6 - Fix a bug for support of PBLOG = no (Bruno Cornec) 7 7 8 8 0.8.8 (2007-10-25) 9 - Add correct support for PBLOG = no 9 - Add correct support for PBLOG = no (Bruno Cornec) 10 10 11 11 0.8.7 (2007-10-23) 12 - Fix #2 12 - Fix #2 (Bruno Cornec) 13 13 14 14 0.8.6 (2007-10-22) 15 - Add Debian build support 16 - New filtering rules 17 - Add flat support to svn and cvs 18 - Fix #4 15 - Add Debian build support (Bruno Cornec) 16 - New filtering rules (Bruno Cornec) 17 - Add flat support to svn and cvs (Bruno Cornec) 18 - Fix #4 (Bruno Cornec) 19 19 20 20 0.8.5 (2007-10-16) 21 - First public version 21 - First public version (Bruno Cornec) 22 22 23 23 0.5 (2007-07-26) 24 - Creation of the project based on mondorescue build tools 24 - Creation of the project based on mondorescue build tools (Bruno Cornec) -
devel/pb/bin/pb
r262 r265 254 254 next; 255 255 } 256 $bfiles{"pbinit"} = "$pbpkg/pbinit"; 256 257 print $LOG "DEBUG bfiles: ".Dumper(\%bfiles)."\n" if ($debug >= 1); 257 258 … … 277 278 print $LOG "No Build files found for ".join(',',@notfound)."\n"; 278 279 } 279 # Prepare the dest directory for archive280 if (-x "$ENV{'PBCONF'}/$pbpkg/pbinit") {281 #pb_system("cd $dest ; $ENV{'PBCONF'}/$pbpkg/pbinit","Executing init script $ENV{'PBCONF'}/$pbpkg/pbinit");282 print $LOG "Executing init script $ENV{'PBCONF'}/$pbpkg/pbinit\n";283 system("cd $dest ; $ENV{'PBCONF'}/$pbpkg/pbinit");284 }285 286 280 # Get the generic filter (all.pbf) and 287 281 # apply those to the non-build files including those … … 299 293 } 300 294 print $LOG "Files ".$liste."have been filtered\n"; 295 296 # Prepare the dest directory for archive 297 if (-x "$ENV{'PBCONF'}/$pbpkg/pbinit") { 298 pb_system("cd $dest ; $ENV{'PBCONF'}/$pbpkg/pbinit","Executing init script $ENV{'PBCONF'}/$pbpkg/pbinit"); 299 } 301 300 302 301 # Archive dest dir -
devel/pb/lib/ProjectBuilder/Base.pm
r262 r265 239 239 $p1 = $ptr1[$i]; 240 240 $p2 = $ptr2[$i]; 241 die "No $param[$i] defined for $ENV{'PBPROJ'}" if ((not defined @ptr1) && (not defined@ptr2));241 die "No $param[$i] defined for $ENV{'PBPROJ'}" if ((not @ptr1) && (not @ptr2)); 242 242 die "No $param[$i] defined for $ENV{'PBPROJ'}" if ((not defined $p1) && (not defined $p2)); 243 243 # Always try to take the param from the home dir conf file in priority -
devel/pb/lib/ProjectBuilder/Distribution.pm
r226 r265 176 176 # renamed to /etc/debian_version.sav as there is no way to distinguish 177 177 # Ubuntu 6.06 from debian testing otherwise 178 # Same is true for Ubuntu 7.10 :-( 178 179 'ubuntu' => '.*Ubuntu.*\nDISTRIB_RELEASE=(.+)', 179 180 # Not tested -
devel/pbconf/pb.pb
r253 r265 32 32 # a QEMU rhel_3 here means that the VM will be named rhel_3.qemu 33 33 # 34 vmlist pb = 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 34 vmlist pb = 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 35 35 36 36 # … … 53 53 vmopt pb = -m 384 -daemonize 54 54 vmpath pb = /users/qemu 55 vmsize pb = 5G 55 56 56 57 #
Note:
See TracChangeset
for help on using the changeset viewer.