Changeset 1181 in ProjectBuilder for devel/pb-modules
- Timestamp:
- Feb 12, 2011, 1:56:42 AM (14 years ago)
- Location:
- devel/pb-modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb-modules/etc/pb.conf
r1179 r1181 322 322 # URL of the directory containing the packages mentioned in rbsmindep. 323 323 # You can use some rpmbootstrap variables here: 324 # $ ddir: name of the distribution325 # $ dver: version of the distribution326 # $ darch: architecture of the distribution324 # $pbos->{'name'}: name of the distribution 325 # $pbos->{'version'}: version of the distribution 326 # $pbos->{'arch'}: architecture of the distribution 327 327 # You need an http based mirror for the moment 328 #rbsmirrorsrv fedora = http://download.fedora.redhat.com/pub/fedora/linux/releases/$ dver/Everything/$darch/os/Packages/329 rbsmirrorsrv fedora = http://mirrors.kernel.org/fedora/releases/$ dver/Fedora/$darch/os/Packages330 rbsmirrorsrv centos-4 = http://mirrors.kernel.org/centos/4.8/os/$ darch/CentOS/RPMS331 rbsmirrorsrv centos-5 = http://mirrors.kernel.org/centos/5.5/os/$ darch/CentOS328 #rbsmirrorsrv fedora = http://download.fedora.redhat.com/pub/fedora/linux/releases/$pbos->{'version'}/Everything/$pbos->{'arch'}/os/Packages/ 329 rbsmirrorsrv fedora = http://mirrors.kernel.org/fedora/releases/$pbos->{'version'}/Fedora/$pbos->{'arch'}/os/Packages 330 rbsmirrorsrv centos-4 = http://mirrors.kernel.org/centos/4.8/os/$pbos->{'arch'}/CentOS/RPMS 331 rbsmirrorsrv centos-5 = http://mirrors.kernel.org/centos/5.5/os/$pbos->{'arch'}/CentOS 332 332 rbsmirrorsrv centos-5-ia64 = http://dev.centos.org/~z00dax/ia64/c5-wip/ia64/RPMS/ 333 333 #rbsmirrorsrv rhel = 334 # darch== i586 for i386 repo335 rbsmirrorsrv opensuse = http://mirrors.kernel.org/opensuse/distribution/$ dver/repo/oss/suse/$darch/336 # darch== i586 for i386 repo337 rbsmirrorsrv mandriva = http://mirrors.kernel.org/mandriva/Mandrakelinux/official/$ dver/$darch/media/main/release/334 # pbos->{'arch'} == i586 for i386 repo 335 rbsmirrorsrv opensuse = http://mirrors.kernel.org/opensuse/distribution/$pbos->{'version'}/repo/oss/suse/$pbos->{'arch'}/ 336 # pbos->{'arch'} == i586 for i386 repo 337 rbsmirrorsrv mandriva = http://mirrors.kernel.org/mandriva/Mandrakelinux/official/$pbos->{'version'}/$pbos->{'arch'}/media/main/release/ 338 338 #rbsmirrorsrv debian = http://ftp.us.debian.org/debian/ 339 339 #rbsmirrorsrv ubuntu = http://us.releases.ubuntu.com/releases/ … … 470 470 ospkg default = project-builder 471 471 # Where is the associated repo 472 osrepo rpm = ftp://ftp.project-builder.org/$ ddir/$dver/pb.repo472 osrepo rpm = ftp://ftp.project-builder.org/$pbos->{'name'}/$pbos->{'version'}/pb.repo 473 473 474 474 # Number of process in // for pb -
devel/pb-modules/lib/ProjectBuilder/Distribution.pm
r1177 r1181 541 541 if ($param =~ /[^\\]\$/) { 542 542 pb_log(3,"Expanding variable on $param\n"); 543 eval { $param =~ s/(\$\w+ )/$1/eeg };543 eval { $param =~ s/(\$\w+->{\'\w+\'})/$1/eeg }; 544 544 } 545 545 push @param,$param;
Note:
See TracChangeset
for help on using the changeset viewer.