- Timestamp:
- Jul 12, 2009, 3:49:49 PM (16 years ago)
- Location:
- projects/netperf/pbconf/2.4.5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
projects/netperf/pbconf/2.4.5/netperf.pb
r824 r825 21 21 pbwf netperf = 1 22 22 23 # Repository for netperf 23 24 pbrepo netperf = ftp://ftp.project-builder.org/ 24 25 # … … 27 28 pbpackager netperf = Bruno Cornec <bruno@project-builder.org> 28 29 # 29 30 # For delivery to a machine by SSH (potentially the FTP server)31 # Needs hostname, account and directory32 #33 sshhost netperf = www.project-builder.org34 sshlogin netperf = pb35 sshdir netperf = /mondo/ftp36 sshport netperf = 2237 38 #39 # For Virtual machines management40 # Naming convention to follow: distribution name (as per ProjectBuilder::Distribution)41 # followed by '-' and by release number42 # followed by '-' and by architecture43 # a .vmtype extension will be added to the resulting string44 # a QEMU rhel-3-i286 here means that the VM will be named rhel-3-i386.qemu45 #46 vmlist netperf = mandrake-10.1-i386,mandrake-10.2-i386,mandriva-2006.0-i386,mandriva-2007.0-i386,mandriva-2007.1-i386,mandriva-2008.0-i386,redhat-7.3-i386,redhat-9-i386,fedora-4-i386,fedora-5-i386,fedora-6-i386,fedora-7-i386,fedora-8-i386,rhel-3-i386,rhel-4-i386,rhel-5-i386,suse-10.0-i386,suse-10.1-i386,suse-10.2-i386,suse-10.3-i386,sles-9-i386,sles-10-i386,gentoo-nover-i386,debian-3.1-i386,debian-4.0-i386,ubuntu-6.06-i386,ubuntu-7.04-i386,ubuntu-7.10-i386,mandriva-2007.0-x86_64,mandriva-2007.1-x86_64,mandriva-2008.0-x86_64,fedora-6-x86_64,fedora-7-x86_64,fedora-8-x86_64,rhel-4-x86_64,rhel-5-x86_64,suse-10.2-x86_64,suse-10.3-x86_64,sles-10-x86_64,gentoo-nover-x86_64,debian-4.0-x86_64,ubuntu-7.04-x86_64,ubuntu-7.10-x86_6447 48 #49 # Valid values for vmtype are50 # qemu, (vmware, xen, ... TBD)51 vmtype netperf = qemu52 53 # Hash for VM stuff on vmtype54 #vmntp default = pool.ntp.org55 56 # We suppose we can commmunicate with the VM through SSH57 vmhost netperf = localhost58 vmlogin netperf = pb59 vmport netperf = 222260 61 # Timeout to wait when VM is launched/stopped62 vmtmout default = 12063 64 # per VMs needed paramaters65 vmopt netperf = -m 384 -daemonize66 vmpath netperf = /users/qemu67 vmsize netperf = 5G68 69 #70 # For Virtual environment management71 # Naming convention to follow: distribution name (as per ProjectBuilder::Distribution)72 # followed by '-' and by release number73 # followed by '-' and by architecture74 # a .vetype extension will be added to the resulting string75 # a chroot rhel-3-i286 here means that the VE will be named rhel-3-i386.chroot76 #77 #velist netperf = fedora-7-i38678 79 # VE params80 #vetype netperf = chroot81 #ventp default = pool.ntp.org82 #velogin netperf = pb83 #vepath netperf = /var/lib/mock84 #veconf netperf = /etc/mock85 #verebuild netperf = false86 30 87 31 # -
projects/netperf/pbconf/2.4.5/pbfilter/all.pbf
r384 r825 7 7 filter PBSRC = ftp://ftp.netperf.org/netperf/%{name}-%{version}.tar.gz 8 8 9 # PBVER is replaced by the version ($pb verin code)10 filter PBVER = $pb ver9 # PBVER is replaced by the version ($pb->{'ver'} in code) 10 filter PBVER = $pb->{'ver'} 11 11 12 # PBDATE is replaced by the date ($pb datein code)13 filter PBDATE = $pb date12 # PBDATE is replaced by the date ($pb->{'date'} in code) 13 filter PBDATE = $pb->{'date'} 14 14 15 15 # PBLOG is replaced by the changelog if value is yes 16 16 filter PBLOG = yes 17 17 18 # PBTAG is replaced by the tag ($pb tagin code)19 filter PBTAG = $pb tag18 # PBTAG is replaced by the tag ($pb->{'tag'} in code) 19 filter PBTAG = $pb->{'tag'} 20 20 21 # PBREV is replaced by the revision ($pb revin code)22 filter PBREV = $pb rev21 # PBREV is replaced by the revision ($pb->{'rev'} in code) 22 filter PBREV = $pb->{'rev'} 23 23 24 # PBPKG is replaced by the package name ($pb pkgin code)25 filter PBPKG = $pb pkg24 # PBPKG is replaced by the package name ($pb->{'pkg'} in code) 25 filter PBPKG = $pb->{'pkg'} 26 26 27 # PBPACKAGER is replaced by the packager name ($pb packagerin code)28 filter PBPACKAGER = $pb packager27 # PBPACKAGER is replaced by the packager name ($pb->{'packager'} in code) 28 filter PBPACKAGER = $pb->{'packager'} 29 29 30 30 # PBDESC contains the description of the package -
projects/netperf/pbconf/2.4.5/pbfilter/rpm.pbf
r384 r825 16 16 filter PBDEP = 17 17 18 # PBSUF is replaced by the package suffix ($pb sufin code)19 filter PBSUF = $pb suf18 # PBSUF is replaced by the package suffix ($pb->{'suf'} in code) 19 filter PBSUF = $pb->{'suf'} 20 20 21 21 # PBOBS is replaced by the Obsolete line
Note:
See TracChangeset
for help on using the changeset viewer.