1 | # $Id$
|
---|
2 | #
|
---|
3 | # Main configuration file for project-builder.org
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Define Operating systems
|
---|
8 | #
|
---|
9 |
|
---|
10 | #
|
---|
11 | # For the following keys osrelfile and osrelambfile:
|
---|
12 | # The left member is the key that will be used overall as the OS name
|
---|
13 | # The right member is the name of the file that has to be looked at to get OS info
|
---|
14 | #
|
---|
15 | # It should be noted that the list of all OS is the result of gathering
|
---|
16 | # all the keys from osrelfile and osrelambfile, and the values of osrelambfile
|
---|
17 | #
|
---|
18 |
|
---|
19 | #
|
---|
20 | # The following conf info are for pb_distro_get (man ProjectBuilder::Distribution)
|
---|
21 | #
|
---|
22 | # Those definitions are non-ambiguous (the file only exists for that OS)
|
---|
23 | #
|
---|
24 | # Tested
|
---|
25 | #
|
---|
26 | # Gentoo >= 1.6
|
---|
27 | osrelfile gentoo = /etc/gentoo-release
|
---|
28 |
|
---|
29 | # Slackware >= 10.2
|
---|
30 | osrelfile slackware = /etc/slackware-version
|
---|
31 |
|
---|
32 | # Mandriva >=2006.0
|
---|
33 | osrelfile mandriva = /etc/mandriva-release
|
---|
34 |
|
---|
35 | # Mandrake = 10.2
|
---|
36 | osrelfile mandrakelinux = /etc/mandrakelinux-release
|
---|
37 |
|
---|
38 | # Fedora >= 4
|
---|
39 | osrelfile fedora = /etc/fedora-release
|
---|
40 |
|
---|
41 | # VMWare >= 3
|
---|
42 | osrelfile vmware = /etc/vmware-release
|
---|
43 |
|
---|
44 | # SLES - Doesn't exist as of 10
|
---|
45 | osrelfile sles = /etc/sles-release
|
---|
46 |
|
---|
47 | # Asianux >= 2.2
|
---|
48 | osrelfile asianux = /etc/asianux-release
|
---|
49 |
|
---|
50 | # Solaris 10
|
---|
51 | osrelfile solaris = /etc/release
|
---|
52 |
|
---|
53 | #
|
---|
54 | # Untested
|
---|
55 | #
|
---|
56 | osrelfile knoppix = /etc/knoppix_version
|
---|
57 | osrelfile yellowdog = /etc/yellowdog-release
|
---|
58 | osrelfile esmith = /etc/e-smith-release
|
---|
59 | osrelfile turbolinux = /etc/turbolinux-release
|
---|
60 | osrelfile blackcat = /etc/blackcat-release
|
---|
61 | osrelfile aurox = /etc/aurox-release
|
---|
62 | osrelfile annvix = /etc/annvix-release
|
---|
63 | osrelfile cobalt = /etc/cobalt-release
|
---|
64 | osrelfile redflag = /etc/redflag-release
|
---|
65 | osrelfile ark = /etc/ark-release
|
---|
66 | osrelfile pld = /etc/pld-release
|
---|
67 | osrelfile nld = /etc/nld-release
|
---|
68 | osrelfile lfs = /etc/lfs-release
|
---|
69 | osrelfile mk = /etc/mk-release
|
---|
70 | osrelfile conectiva = /etc/conectiva-release
|
---|
71 | osrelfile immunix = /etc/immunix-release
|
---|
72 | osrelfile tinysofa = /etc/tinysofa-release
|
---|
73 | osrelfile trustix = /etc/trustix-release
|
---|
74 | osrelfile adamantix = /etc/adamantix_version
|
---|
75 | osrelfile yoper = /etc/yoper-release
|
---|
76 | osrelfile arch = /etc/arch-release
|
---|
77 | osrelfile libranet = /etc/libranet_version
|
---|
78 | osrelfile valinux = /etc/va-release
|
---|
79 | osrelfile yellowdog = /etc/yellowdog-release
|
---|
80 | osrelfile ultrapenguin = /etc/ultrapenguin-release
|
---|
81 |
|
---|
82 | #
|
---|
83 | # Here are the ambiguous file association
|
---|
84 | # E.g. the file /etc/redhat-release is found on multiple distro such as redhat, rhel, centos, mandrake, vmware
|
---|
85 | #
|
---|
86 |
|
---|
87 | # Mandrake <= 10.1
|
---|
88 | osrelambfile mandrake = /etc/mandrake-release
|
---|
89 |
|
---|
90 | # Debian >= 3.1
|
---|
91 | osrelambfile debian = /etc/debian_version
|
---|
92 |
|
---|
93 | # SuSE >= 10.0
|
---|
94 | osrelambfile suse = /etc/SuSE-release
|
---|
95 |
|
---|
96 | # RedHat >= 7.3
|
---|
97 | osrelambfile redhat = /etc/redhat-release
|
---|
98 |
|
---|
99 | # LSB
|
---|
100 | osrelambfile lsb = /etc/lsb-release
|
---|
101 |
|
---|
102 | #
|
---|
103 | # Here is the association between the key and all the OS usig the same file
|
---|
104 | # The key mentioned here should be the same as the previous ones
|
---|
105 | #
|
---|
106 | osambiguous mandrake = mandrake,mandrakelinux
|
---|
107 | osambiguous debian = debian,ubuntu
|
---|
108 | osambiguous suse = suse,sles,opensuse
|
---|
109 | osambiguous redhat = redhat,rhel,centos,mandrake,vmware
|
---|
110 | osambiguous lsb = ubuntu,lsb
|
---|
111 |
|
---|
112 | #
|
---|
113 | # The next key give the Regular Expression that is used when parsing the previous file
|
---|
114 | # to find the version needed in it
|
---|
115 | #
|
---|
116 | osrelexpr gentoo = .* version (.+)
|
---|
117 | osrelexpr slackware = S[^ ]* (.+)$
|
---|
118 | osrelexpr mandriva = Mandr[^ ]* [^ ]* release (.+) \(
|
---|
119 | osrelexpr mandrake = Mandr[^ ]* release (.+) \(
|
---|
120 | osrelexpr mandrakelinux = Mandrakelinux release (.+) \(
|
---|
121 | osrelexpr fedora = Fedora .*release (\d+) \(
|
---|
122 | osrelexpr vmware = VMware ESX Server (\d+) \(
|
---|
123 | osrelexpr rhel = Red Hat (?:Enterprise Linux|Linux Advanced Server) .*release ([0-9.]+).* \(
|
---|
124 | osrelexpr centos = .*CentOS .*release ([0-9]).*
|
---|
125 | osrelexpr redhat = Red Hat Linux release (.+) \(
|
---|
126 | osrelexpr sles = SUSE .* Enterprise Server (\d+) \(
|
---|
127 | osrelexpr suse = SUSE LINUX (\d.+) \(
|
---|
128 | osrelexpr opensuse = openSUSE (\d.+) \(
|
---|
129 | osrelexpr asianux = Asianux (?:Server|release) ([0-9]).* \(
|
---|
130 | osrelexpr lsb = .*\nDISTRIB_ID=LSBSI\nDISTRIB_RELEASE=(.+)
|
---|
131 | osrelexpr ubuntu = .*Ubuntu.*\nDISTRIB_RELEASE=(.+)
|
---|
132 | osrelexpr debian = (\d+\.\d+)
|
---|
133 | osrelexpr solaris = Solaris (\d+)
|
---|
134 |
|
---|
135 | #
|
---|
136 | # The following conf info are for pb_distro_init (man ProjectBuilder::Distribution)
|
---|
137 | #
|
---|
138 | # Ganularity is the following:
|
---|
139 | #
|
---|
140 | # ostype
|
---|
141 | # osfamily
|
---|
142 | # os
|
---|
143 | # os-ver
|
---|
144 | # os-ver-arch
|
---|
145 |
|
---|
146 | # Group OS by family to handle common actions more easily (filtering, install command, ...)
|
---|
147 | # Key is osname, Value is osfamily
|
---|
148 | osfamily debian = du
|
---|
149 | osfamily ubuntu = du
|
---|
150 | osfamily gentoo = gen
|
---|
151 | osfamily slackware = slack
|
---|
152 | osfamily suse = novell
|
---|
153 | osfamily opensuse = novell
|
---|
154 | osfamily sles = novell
|
---|
155 | osfamily redhat = rh
|
---|
156 | osfamily rhel = rh
|
---|
157 | osfamily fedora = rh
|
---|
158 | osfamily vmware = rh
|
---|
159 | osfamily asianux = rh
|
---|
160 | osfamily centos = rh
|
---|
161 | osfamily mandrake = md
|
---|
162 | osfamily mandrakelinux = md
|
---|
163 | osfamily mandriva = md
|
---|
164 | osfamily lsb = rh
|
---|
165 | osfamily freebsd = bsd
|
---|
166 | osfamily solaris = sol
|
---|
167 |
|
---|
168 | # Group family by build types
|
---|
169 | # Key is osfamily, Value is build type
|
---|
170 | ostype du = deb
|
---|
171 | ostype slack = tgz
|
---|
172 | ostype gen = ebuild
|
---|
173 | ostype novell = rpm
|
---|
174 | ostype rh = rpm
|
---|
175 | ostype md = rpm
|
---|
176 | ostype bsd = port
|
---|
177 | ostype sol = pkg
|
---|
178 |
|
---|
179 | # From the most generic to the most specialized, in term of granularity,
|
---|
180 | # give the command to use to install on the OS
|
---|
181 | # If none is given, no install can takes place
|
---|
182 | # key depends on granularity, value is install command
|
---|
183 |
|
---|
184 | # Chaining the commands allow to only test for what is able to be installed,
|
---|
185 | # not the update of the repo which may well be unaccessible if too old
|
---|
186 | osupd du = sudo apt-get update ; sudo apt-get -y install
|
---|
187 | osupd gen = sudo emerge
|
---|
188 | osupd rpm = sudo yum clean all; sudo yum -y update ; sudo yum -y install
|
---|
189 | osupd rhel-2.1 = sudo up2date -y
|
---|
190 | osupd rhel-3 = sudo up2date -y
|
---|
191 | osupd rhel-4 = sudo up2date -y
|
---|
192 | osupd md = sudo urpmi.update -a ; sudo urpmi --auto
|
---|
193 | osupd novell = export TERM=linux ; export PATH=\$PATH:/sbin:/usr/sbin ; sudo yast2 -i
|
---|
194 | osupd opensuse-10.2 = sudo yes | zypper install
|
---|
195 | osupd opensuse = sudo zypper -n install
|
---|
196 | osupd sol = sudo pkgadd -d
|
---|
197 | osupd lsb = /bin/true
|
---|
198 |
|
---|
199 | # From the most generic to the most specialized, in term of granularity,
|
---|
200 | # give the suffix for the packages created
|
---|
201 | # If none is given, the suffix will be a concatenation of
|
---|
202 | # .osname and version
|
---|
203 | # osname being as defined upper as the keys of osrelfile and osrelambfile
|
---|
204 | # depends on granularity, value is install command
|
---|
205 |
|
---|
206 | ossuffix slackware = slack
|
---|
207 | ossuffix asianux = asx
|
---|
208 | ossuffix fedora = fc
|
---|
209 | ossuffix vmware = vmw
|
---|
210 | ossuffix mandrake = mdk
|
---|
211 | ossuffix mandriva = mdv
|
---|
212 | ossuffix lsb = lsb
|
---|
213 | #ossuffix rhel = rhel
|
---|
214 | #ossuffix centos = el
|
---|
215 |
|
---|
216 | # For that OS no need to keep the version
|
---|
217 | # Key depends on granularity, value is boolean
|
---|
218 | osnover gentoo = true
|
---|
219 |
|
---|
220 | # For that OS no need to keep the . in the version release
|
---|
221 | # Key depends on granularity, value is boolean
|
---|
222 | #osremovedotinver mandrake = true
|
---|
223 | osremovedotinver redhat = true
|
---|
224 |
|
---|
225 | # These deps are needed before setupvm|ve can be run.
|
---|
226 | # Install them with your distribution in VM or automatically in VE
|
---|
227 | osmindep default = perl,sudo,wget,tar,make,gzip
|
---|
228 |
|
---|
229 | # These deps are needed for rpmbootstrap to install a base distribution
|
---|
230 | # Originally reuse from rinse conf files
|
---|
231 | rbsmindep fedora-4 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libtermcap,libxml2,libxml2-python,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,zlib
|
---|
232 | #
|
---|
233 | rbsmindep fedora-5 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,zlib
|
---|
234 | #
|
---|
235 | rbsmindep fedora-6 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
236 | #
|
---|
237 | rbsmindep fedora-7 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-libs,python-numeric,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
238 | #
|
---|
239 | rbsmindep fedora-8 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-libs,python-numeric,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
240 | #
|
---|
241 | rbsmindep fedora-9 = MAKEDEV,ConsoleKit-libs,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,coreutils,cpio,cracklib,cracklib-dicts,crontabs,cyrus-sasl-lib,db4,dbus,dbus-libs,device-mapper,device-mapper-libs,dhclient,dirmngr,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,event-compat-sysv,expat,fedora-release,fedora-release-notes,filesystem,findutils,gamin,gawk,gdbm,glib2,glibc,glibc-common,gnupg2,gpgme,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libcap,libcurl,libgcc,libgcrypt,libgpg-error,libidn,libksba,libselinux,libsepol,libstdc++,libsysfs,libusb,libvolume_id,libxml2,linux-atm-libs,logrotate,mingetty,module-init-tools,ncurses,ncurses-base,ncurses-libs,net-tools,nspr,nss,openldap,openssl,pam,pcre,pinentry,popt,procps,psmisc,pth,pygpgme,python,python-iniparse,python-libs,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,rsyslog,sed,setup,shadow-utils,sqlite,sysvinit-tools,tzdata,udev,upstart,util-linux-ng,vim-minimal,yum,yum-metadata-parser,zlib
|
---|
242 | rbsmindep fedora-10 = MAKEDEV,ConsoleKit-libs,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,compat-db45,coreutils,cpio,cracklib,cracklib-dicts,crontabs,cyrus-sasl-lib,db4,dbus,dbus-libs,device-mapper,device-mapper-libs,dhclient,dirmngr,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,fedora-release,fedora-release-notes,file,file-libs,filesystem,findutils,gamin,gawk,gdbm,glib2,glibc,glibc-common,gnupg2,gpgme,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libcap,libcurl,libgcc,libgcrypt,libgpg-error,libidn,libksba,libselinux,libsepol,libstdc++,libusb,libvolume_id,libxml2,linux-atm-libs,logrotate,lua,mingetty,module-init-tools,ncurses,ncurses-base,ncurses-libs,net-tools,nspr,nss,openldap,openssl,pam,passwd,pcre,pinentry,popt,procps,psmisc,pth,pygpgme,python,python-iniparse,python-libs,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,rsyslog,sed,setup,shadow-utils,sqlite,sysvinit-tools,tzdata,udev,upstart,util-linux-ng,vim-minimal,yum,yum-metadata-parser,zlib
|
---|
243 | #
|
---|
244 | rbsmindep fedora-11 = MAKEDEV,ConsoleKit-libs,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,compat-db45,coreutils,cpio,cracklib,cracklib-dicts,crontabs,cyrus-sasl-lib,db4,dbus,dbus-libs,device-mapper,device-mapper-libs,dhclient,dirmngr,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,fedora-release,fedora-release-notes,file,file-libs,filesystem,findutils,gamin,gawk,gdbm,glib2,glibc,glibc-common,gnupg2,gpgme,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libblkid,libcap,libcom_err,libcurl,libgcc,libgcrypt,libgpg-error,libidn,libksba,libselinux,libsepol,libstdc++,libusb,libvolume_id,libxml2,linux-atm-libs,logrotate,lua,mingetty,module-init-tools,ncurses,ncurses-base,ncurses-libs,net-tools,nspr,nss,openldap,openssl,pam,passwd,pcre,pinentry,popt,procps,psmisc,pth,pygpgme,python,python-iniparse,python-libs,python-pycurl,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,rsyslog,sed,setup,shadow-utils,sqlite,sysvinit-tools,tzdata,udev,upstart,util-linux-ng,vim-minimal,xz-libs,yum,yum-metadata-parser,zlib
|
---|
245 | #
|
---|
246 | rbsmindep fedora-12 = MAKEDEV,ConsoleKit-libs,audit-libs,basesystem,bash,bzip2-libs,chkconfig,coreutils,cpio,cracklib,cracklib-dicts,crontabs,cyrus-sasl-lib,db4,dbus,dbus-libs,device-mapper,device-mapper-libs,dhclient,dirmngr,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,fedora-release,fedora-release-notes,file,file-libs,filesystem,findutils,gamin,gawk,gdbm,glib2,glibc,glibc-common,gnupg2,gpgme,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libcap,libcom_err,libcurl,libgcc,libgcrypt,libgpg-error,libidn,libksba,libselinux,libsepol,libssh2,libstdc++,libusb,libxml2,linux-atm-libs,logrotate,lua,mingetty,module-init-tools,ncurses,ncurses-base,ncurses-libs,net-tools,nspr,nss,nss-softokn,nss-softokn-freebl,nss-util,openldap,openssl,pam,passwd,pcre,pinentry,popt,procps,psmisc,pth,pygpgme,python,python-iniparse,python-libs,python-pycurl,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,rsyslog,sed,setup,shadow-utils,sqlite,sysvinit-tools,tzdata,udev,upstart,util-linux-ng,vim-minimal,xz-libs,yum,yum-metadata-parser,zlib
|
---|
247 | #
|
---|
248 | rbsmindep centos-4 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,centos-release,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libtermcap,libxml2,libxml2-python,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
249 | #
|
---|
250 | rbsmindep rhel-4 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-sqlite,python-urlgrabber,readline,redhat-release,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
251 | #
|
---|
252 | rbsmindep centos-5 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,centos-release,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,nss,nspr,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-iniparse,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
253 | rbsmindep centos-5-ia64 = MAKEDEV,SysVinit,audit-libs,bash,beecrypt,bzip2-libs,centos-release,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,nss,nspr,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-sqlite,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
254 | #
|
---|
255 | rbsmindep rhel-5 = MAKEDEV,SysVinit,audit-libs,basesystem,bash,beecrypt,bzip2-libs,coreutils,cracklib,cracklib-dicts,db4,device-mapper,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,filesystem,findutils,gawk,gdbm,glib2,glibc,glibc-common,grep,info,initscripts,iproute,iputils,krb5-libs,libacl,libattr,libcap,libgcc,libidn,libselinux,libsepol,libstdc++,libsysfs,libtermcap,libxml2,libxml2-python,mcstrans,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,nss,nspr,openssl,pam,pcre,popt,procps,psmisc,python,python-elementtree,python-iniparse,python-sqlite,python-urlgrabber,readline,redhat-release,rpm,rpm-libs,rpm-python,sed,setup,shadow-utils,sqlite,sysklogd,termcap,tzdata,udev,util-linux,yum,yum-metadata-parser,zlib
|
---|
256 | #
|
---|
257 | rbsmindep opensuse-10.1 = aaa_base,audit-libs,bash,boost,bzip2,coreutils,cpio,cracklib,curl,cyrus-sasl,db,dbus-1,dbus-1-glib,device-mapper,diffutils,dirmngr,e2fsprogs,ethtool,expat,filesystem,fillup,findutils,gawk,gdbm,glib2,glibc,gpg2,grep,gzip,hal,info,insserv,krb5,libacl,libattr,libcom_err,libicu,libgcc,libgcrypt,libgpg-error,libidn,libksba,libnscd,libreiserfs,libstdc++,libusb,libxcrypt,libxml2,libxml2-python,libzio,libzypp,mingetty,module-init-tools,ncurses,neon,net-tools,openldap2-client,openslp,pam,pam-modules,parted,pciutils,pcre,perl,permissions,pinentry,pmtools,popt,procps,psmisc,pwdutils,python,python-elementtree,python-sqlite,python-urlgrabber,rpm,rpm-python,sed,setserial,sqlite,suse-release,sysvinit,termcap,udev,util-linux,yum,zlib
|
---|
258 | #
|
---|
259 | rbsmindep opensuse-10.2 = PolicyKit,aaa_base,aaa_skel,audit-libs,bash,boost,bzip2,coreutils,cpio,cracklib,curl,cyrus-sasl,db,dbus-1,dbus-1-glib,device-mapper,diffutils,dirmngr,e2fsprogs,ethtool,expat,filesystem,fillup,findutils,gawk,gdbm,glib2,glibc,gpg,gpg2,grep,gzip,hal,info,insserv,keyutils-libs,krb5,libacl,libattr,libcom_err,libicu,libgcc41,libgcrypt,libgpg-error,libidn,libksba,libnscd,libreiserfs,libstdc++41,libusb,libvolume_id,libxcrypt,libxml2,libxml2-python,libzio,libzypp,logrotate,mingetty,mktemp,module-init-tools,ncurses,neon,net-tools,openSUSE-release,openldap2-client,openslp,pam,pam-config,pam-modules,parted,pciutils,pcre,perl,permissions,pinentry,pm-utils,pmtools,popt,procps,psmisc,pwdutils,python,python-urlgrabber,rpm,rpm-python,sed,setserial,sqlite,strace,sysvinit,termcap,udev,util-linux,zlib,zypper
|
---|
260 | #
|
---|
261 | rbsmindep opensuse-10.3 = ConsoleKit,cracklib-dict-small,PolicyKit,aaa_base,audit-libs,bash,boost,bzip2,coreutils,cpio,cracklib,cyrus-sasl,dbus-1,dbus-1-glib,device-mapper,diffutils,dirmngr,e2fsprogs,ethtool,expat,filesystem,fillup,findutils,gawk,gdbm,glib2,glib2-lang,glibc,gpg2,grep,gzip,hal,info,insserv,keyutils-libs,krb5,libacl,libattr,libbz2-1,libcom_err2,libicu,libcurl4,libdb-4_5,libexpat1,libgcc42,libgcrypt,libgpg-error,libidn,libksba,libnscd,libopenssl0_9_8,libreadline5,libreiserfs,libstdc++42,libusb,libuuid1,libvolume_id,libxcrypt,libxml2,libxml2-python,libzio,libzypp,mingetty,module-init-tools,ncurses,neon,net-tools,openSUSE-release,openldap2-client,openslp,pam,pam-config,pam-modules,parted,pciutils,pcre,perl-base,permissions,pinentry,pm-utils,pmtools,popt,procps,psmisc,pth,pwdutils,python,python-urlgrabber,rpm,rpm-python,sed,setserial,sqlite,sysvinit,termcap,udev,util-linux,zlib,zypper
|
---|
262 | #
|
---|
263 | rbsmindep opensuse-11.0 = ConsoleKit,cracklib-dict-small,PolicyKit,aaa_base,audit-libs,bash,bzip2,coreutils,coreutils-lang,cpio,cpio-lang,cracklib,cyrus-sasl,dbus-1,dbus-1-glib,device-mapper,diffutils,dirmngr,e2fsprogs,ethtool,expat,filesystem,fillup,findutils,gawk,gdbm,glib2,glib2-branding-upstream,glib2-lang,glibc,gpg2,gpg2-lang,grep,gzip,hal,info,insserv,keyutils-libs,krb5,libacl,libattr,libbz2-1,libcom_err2,libcurl4,libdb-4_5,libexpat1,libgcc43,libgcrypt11,libglib-2_0-0,libgobject-2_0-0,libgthread-2_0-0,libgpg-error0,libidn,libksba,libncurses5,libnscd,libopenssl0_9_8,libreadline5,libreiserfs,libstdc++43,libusb,libuuid1,libvolume_id,libxcrypt,libxml2,libxml2-python,libzio,libzypp,login,mingetty,module-init-tools,ncurses-utils,neon,net-tools,openSUSE-release,openldap2-client,openslp,pam,pam-config,pam-modules,parted,pciutils,pcre,perl-base,permissions,pinentry,pm-utils,pmtools,popt,procps,psmisc,pth,pwdutils,python,python-urlgrabber,rpm,rpm-python,satsolver-tools,sed,setserial,sysvinit,termcap,terminfo-base,udev,util-linux,uuid-runtime,zlib,zypper
|
---|
264 | #
|
---|
265 | rbsmindep opensuse-11.1 = ConsoleKit,cracklib-dict-small,PolicyKit,aaa_base,audit-libs,bash,boost-license,bzip2,coreutils,coreutils-lang,cpio,cpio-lang,cracklib,cyrus-sasl,dbus-1,dbus-1-glib,device-mapper,diffutils,dirmngr,e2fsprogs,ethtool,expat,filesystem,fillup,findutils,gawk,gdbm,glib2,glib2-branding-upstream,glib2-lang,glibc,gpg2,gpg2-lang,grep,gzip,hal,info,insserv,keyutils-libs,krb5,libacl,libattr,libboost_signals1_36_0,libbz2-1,libcom_err2,libcurl4,libdb-4_5,libexpat1,libgcc43,libgcrypt11,libglib-2_0-0,libgobject-2_0-0,libgthread-2_0-0,libgpg-error0,libidn,libksba,libldap-2_4-2,libncurses5,libnscd,libopenssl0_9_8,libreadline5,libreiserfs,libselinux1,libsepol1,libsmbios2,libstdc++43,libusb-0_1-4,libuuid1,libvolume_id1,libxcrypt,libxml2,libxml2-python,libzio,libzypp,login,mingetty,module-init-tools,ncurses-utils,neon,net-tools,openSUSE-release,openSUSE-release-ftp,openslp,pam,pam-config,pam-modules,parted,pciutils,pcre,perl-base,permissions,pinentry,pm-utils,pmtools,popt,procps,psmisc,pth,pwdutils,python,python-urlgrabber,rpm,rpm-python,satsolver-tools,sed,setserial,sysvinit,termcap,terminfo-base,udev,util-linux,uuid-runtime,zlib,zypper
|
---|
266 | #
|
---|
267 | rbsmindep opensuse-11.2 = ConsoleKit,cracklib-dict-small,PolicyKit,aaa_base,audit-libs,bash,boost-license,bzip2,coreutils,coreutils-lang,cpio,cpio-lang,cracklib,cyrus-sasl,dbus-1,dbus-1-glib,device-mapper,diffutils,dirmngr,e2fsprogs,ethtool,expat,filesystem,fillup,findutils,gawk,gdbm,glib2,glib2-branding-upstream,glib2-lang,glibc,gpg2,gpg2-lang,grep,gzip,hal,info,insserv,keyutils-libs,krb5,libacl,libattr,libboost_signals1_36_0,libbz2-1,libcom_err2,libcurl4,libdb-4_5,libexpat1,libgcc43,libgcrypt11,libglib-2_0-0,libgobject-2_0-0,libgthread-2_0-0,libgpg-error0,libidn,libksba,libldap-2_4-2,libncurses5,libnscd,libopenssl0_9_8,libreadline5,libreiserfs,libselinux1,libsepol1,libsmbios2,libstdc++43,libusb-0_1-4,libuuid1,libvolume_id1,libxcrypt,libxml2,libxml2-python,libzio,libzypp,login,mingetty,module-init-tools,ncurses-utils,neon,net-tools,openSUSE-release,openSUSE-release-ftp,openslp,pam,pam-config,pam-modules,parted,pciutils,pcre,perl-base,permissions,pinentry,pm-utils,pmtools,popt,procps,psmisc,pth,pwdutils,python,python-urlgrabber,rpm,rpm-python,satsolver-tools,sed,setserial,sysvinit,termcap,terminfo-base,udev,util-linux,uuid-runtime,zlib,zypper
|
---|
268 | #
|
---|
269 | rbsmindep mandriva-2009.1-i386 = MAKEDEV,ConsoleKit-libs,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,compat-db45,coreutils,cpio,cracklib,cracklib-dicts,crontabs,cyrus-sasl-lib,db4,dbus,dbus-libs,device-mapper,device-mapper-libs,dhclient,dirmngr,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,file,file-libs,filesystem,findutils,gamin,gawk,gdbm,glib2,glibc,glibc-common,gnupg2,gpgme,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,libacl,libattr,libcap,libcurl,libgcc,libgcrypt,libgpg-error,libidn,libksba,liblzma,libselinux,libsepol,libstdc++,libusb,libvolume_id,libxml2,linux-atm-libs,logrotate,lua,mandriva-release-common,mingetty,module-init-tools,ncurses,ncurses-base,ncurses-libs,net-tools,nspr,nss,openldap,openssl,pam,passwd,pcre,pinentry,popt,procps,psmisc,pth,pygpgme,python,python-iniparse,python-libs,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,rsyslog,sed,setup,shadow-utils,sqlite,sysvinit-tools,tzdata,udev,upstart,urpmi,util-linux-ng,vim-minimal,zlib
|
---|
270 | rbsmindep mandriva-2009.1-x86_64 = MAKEDEV,ConsoleKit-libs,audit-libs,basesystem,bash,beecrypt,bzip2-libs,chkconfig,compat-db45,coreutils,cpio,cracklib,cracklib-dicts,crontabs,cyrus-sasl-lib,db4,dbus,dbus-libs,device-mapper,device-mapper-libs,dhclient,dirmngr,e2fsprogs,e2fsprogs-libs,elfutils-libelf,ethtool,expat,file,file-libs,filesystem,findutils,gamin,gawk,gdbm,glib2,glibc,glibc-common,gnupg2,gpgme,grep,info,initscripts,iproute,iputils,keyutils-libs,krb5-libs,lib64acl,lib64attr,lib64cap,lib64curl,lib64gcc,lib64gcrypt,lib64gpg-error,lib64idn,lib64ksba,lib64lzma,lib64selinux,lib64sepol,lib64stdc++,lib64usb,lib64volume_id,lib64xml2,linux-atm-libs,logrotate,lua,mandriva-release-common,mingetty,module-init-tools,ncurses,ncurses-base,ncurses-libs,net-tools,nspr,nss,openldap,openssl,pam,passwd,pcre,pinentry,popt,procps,psmisc,pth,pygpgme,python,python-iniparse,python-libs,python-urlgrabber,readline,rpm,rpm-libs,rpm-python,rsyslog,sed,setup,shadow-utils,sqlite,sysvinit-tools,tzdata,udev,upstart,urpmi,util-linux-ng,vim-minimal,zlib
|
---|
271 | #
|
---|
272 | rbsmindep mandriva-2010.0-x86_64 = basesystem,bash,chkconfig,coreutils,cpio,cracklib,cracklib-dicts,crontabs,curl,dbus,dhcp-client,dirmngr,e2fsprogs,ethtool,expat,file,filesystem,findutils,gamin,gawk,glibc,gnupg2,grep,info,initscripts,iputils,lib64acl1,lib64attr1,lib64blkid1,lib64bzip2_1,lib64cap2,lib64curl4,lib64db4.7,lib64elfutils1,lib64ext2fs2,lib64gcrypt11,lib64gpg-error0,lib64idn11,lib64krb53,lib64ksba8,lib64ldap2.4_2,lib64lua5.1,lib64lzma2,lib64magic1,lib64ncurses5,lib64nspr4,lib64nss3,lib64openssl0.9.8,lib64popt0,lib64readline6,lib64rpm4.6,lib64sasl2,lib64sqlite3_0,lib64ssh2_1,lib64termcap2,lib64usb1.0_0,lib64uuid1,lib64xml2_2,libgcc1,logrotate,lua,mandriva-release-common,meta-task,mingetty,module-init-tools,ncurses,net-tools,nss,openldap,openssl,pam,passwd,pcre,perl,perl-base,perl-Config-IniFiles,perl-Locale-gettext,perl-MDV-Distribconf,perl-URPM,procps,psmisc,python,rpm,sed,setup,shadow-utils,sysvinit-tools,udev,urpmi,util-linux-ng,vim-minimal,zlib1
|
---|
273 | rbsmindep mandriva-2010.0-i386 = basesystem,bash,chkconfig,coreutils,cpio,cracklib,cracklib-dicts,crontabs,curl,dbus,dhcp-client,dirmngr,e2fsprogs,ethtool,expat,file,filesystem,findutils,gamin,gawk,glibc,gnupg2,grep,info,initscripts,iputils,libacl1,libattr1,libblkid1,libbzip2_1,libcap2,libcurl4,libdb4.7,libelfutils1,libext2fs2,libgcc1,libgcrypt11,libgpg-error0,libidn11,libkrb53,libksba8,libldap2.4_2,liblua5.1,liblzma2,libmagic1,libncurses5,libnspr4,libnss3,libopenssl0.9.8,libpopt0,libreadline6,librpm4.6,libsasl2,libsqlite3_0,libssh2_1,libstdc++6,libtermcap2,libusb1.0_0,libuuid1,libxml2_2,logrotate,lua,mandriva-release-common,meta-task,mingetty,module-init-tools,ncurses,net-tools,nss,openldap,openssl,pam,passwd,pcre,perl,perl-base,perl-Config-IniFiles,perl-Locale-gettext,perl-MDV-Distribconf,perl-URPM,procps,psmisc,python,rpm,sed,setup,shadow-utils,sysvinit-tools,udev,urpmi,util-linux-ng,vim-minimal,zlib1
|
---|
274 |
|
---|
275 | # Where to store packages downloaded temporarily by rpmbootstrap
|
---|
276 | rbscachedir default = /var/cache/rpmbootstrap
|
---|
277 |
|
---|
278 | # Options to pass to rpmbootstrap command. By default keep downloaded packages
|
---|
279 | rbsopt rpmbootstrap = -k
|
---|
280 | rbsopt devbootstrap = --keep-debootstrap-dir
|
---|
281 |
|
---|
282 | # URL of the directory containing the packages mentioned in rbsmindep.
|
---|
283 | # You can use some rpmbootstrap variables here:
|
---|
284 | # $ddir: name of the distribution
|
---|
285 | # $dver: version of the distribution
|
---|
286 | # $darch: architecture of the distribution
|
---|
287 | rbsmirrorsrv fedora = http://mirrors.kernel.org/fedora/releases/$dver/Fedora/$darch/os/Packages
|
---|
288 | rbsmirrorsrv centos-4 = http://mirrors.kernel.org/centos/4.8/os/$darch/CentOS/RPMS
|
---|
289 | rbsmirrorsrv centos-5 = http://mirrors.kernel.org/centos/5.5/os/$darch/CentOS
|
---|
290 | rbsmirrorsrv centos-5-ia64 = http://dev.centos.org/~z00dax/ia64/c5-wip/ia64/RPMS/
|
---|
291 | #rbsmirrorsrv rhel =
|
---|
292 | # darch == i586 for i386 repo
|
---|
293 | rbsmirrorsrv opensuse = http://mirrors.kernel.org/opensuse/distribution/$dver/repo/oss/suse/$darch/
|
---|
294 | # darch == i586 for i386 repo
|
---|
295 | rbsmirrorsrv mandriva = http://mirrors.kernel.org/mandriva/Mandrakelinux/official/$dver/$darch/media/main/release/
|
---|
296 |
|
---|
297 | # pb install dependencies per distro
|
---|
298 | # osperldep gives perl file dependecies to get from CPAN
|
---|
299 | # ospkgdep gives distribution package dependencies
|
---|
300 | #
|
---|
301 | # Asianux - Module-Build first for processing as needed by others
|
---|
302 | osperldep asianux = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
303 | ospkgdep asianux = wget,make,perl-Date-Manip,perl-ExtUtils-MakeMaker,rpm-build,patch,ntp,diffutils
|
---|
304 | # Fedora - Module-Build first for processing as needed by others
|
---|
305 | osperldep fedora = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail,Date-Manip
|
---|
306 | ospkgdep fedora = wget,make,perl-ExtUtils-MakeMaker,rpm-build,patch,ntp,diffutils
|
---|
307 | # fprintd-pam
|
---|
308 | # Slack - Module-Build first for processing as needed by others
|
---|
309 | osperldep tgz = Module-Build,Date-Manip,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
310 | ospkgdep tgz = wget,make,ntp,patch
|
---|
311 | # RHEL
|
---|
312 | osperldep rhel-4 = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
313 | ospkgdep rhel-4 = wget,make,ntp,patch,perl-DateManip,rpm-build,diffutils
|
---|
314 | # Tested
|
---|
315 | osperldep centos-4 = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
316 | ospkgdep centos-4 = wget,make,ntp,patch,perl-DateManip,rpm-build,diffutils
|
---|
317 | # Tested
|
---|
318 | osperldep rhel-5 = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
319 | ospkgdep rhel-5 = wget,make,ntp,patch,perl-DateManip,rpm-build,diffutils
|
---|
320 | osperldep centos-5 = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
321 | ospkgdep centos-5 = wget,make,ntp,patch,perl-DateManip,rpm-build,diffutils
|
---|
322 | osperldep rhel-3 = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
323 | ospkgdep rhel-3 = wget,make,ntp,patch,perl-DateManip,diffutils
|
---|
324 | osperldep centos-3 = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
325 | ospkgdep centos-3 = wget,make,ntp,patch,perl-DateManip,diffutils
|
---|
326 | # Old RedHat - Module-Build first for processing as needed by others
|
---|
327 | osperldep redhat = Module-Build,Date-Manip,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
328 | ospkgdep redhat = wget,make,ntp,patch,diffutils
|
---|
329 | # Old SuSE - Module-Build first for processing as needed by others
|
---|
330 | osperldep suse = Module-Build,Date-Manip,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
331 | ospkgdep suse = wget,make,ntp,patch,diffutils
|
---|
332 | # New OpenSuSE - Module-Build first for processing as needed by others
|
---|
333 | osperldep opensuse = Module-Build,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
334 | ospkgdep opensuse = wget,make,ntp,patch,perl-Date-Manip,perl-File-HomeDir,diffutils
|
---|
335 | # Mdv
|
---|
336 | osperldep mandrake-10.1 = Date-Manip
|
---|
337 | ospkgdep mandrake-10.1 = rpm-build,wget,patch,make,ntp-client,perl-File-MimeInfo,perl-Mail-Sendmail ,diffutils
|
---|
338 | osperldep md =
|
---|
339 | ospkgdep md = rpm-build,wget,patch,make,ntp-client,perl-File-MimeInfo,perl-File-BaseDir,perl-Mail-Sendmail,perl-Date-Manip,diffutils
|
---|
340 | # LSB
|
---|
341 | osperldep lsb = Module-Build,Date-Manip,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
342 | ospkgdep lsb =
|
---|
343 | # Debian
|
---|
344 | osperldep debian-3.1 = File-MimeInfo,File-BaseDir
|
---|
345 | ospkgdep debian-3.1 = wget,patch,dpkg-dev,make,debian-builder,dh-make,fakeroot,ntpdate,libmodule-build-perl,libdate-manip-perl,libmail-sendmail-perl,diff
|
---|
346 | osperldep deb =
|
---|
347 | ospkgdep deb = wget,patch,dpkg-dev,make,debian-builder,dh-make,fakeroot,ntpdate,libfile-mimeinfo-perl,libmodule-build-perl,libdate-manip-perl,libmail-sendmail-perl,diff
|
---|
348 | # Gentoo
|
---|
349 | osperldep gen =
|
---|
350 | ospkgdep gen = wget,ntp,make,patch,DateManip,File-MimeInfo,Mail-Sendmail
|
---|
351 | # Solaris - Module-Build first for processing as needed by others
|
---|
352 | osperldep pkg = Module-Build,Date-Manip,File-MimeInfo,File-BaseDir,Mail-Sendmail
|
---|
353 | # Should be installaed manually first for the moment
|
---|
354 | #ospkgdep pkg = wget,make,perl
|
---|
355 | # And also need ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/sudo-1.7.2p1-sol10-sparc-local.gz ftp://ftp.sunfreeware.com/pub/freeware/sparc/10/make-3.81-sol10-sparc-local.gz ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libintl-3.4.0-sol10-x86-local.gz ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libiconv-1.9.2-sol10-x86-local.gz ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libgcc-3.4.6-sol10-x86-local.gz
|
---|
356 |
|
---|
357 | # Version of the perl module as found on CPAN
|
---|
358 | # http://search.cpan.org/CPAN/modules/by-module
|
---|
359 | osperlver Date-Manip = 5.56
|
---|
360 | osperlver Module-Build = 0.3607
|
---|
361 | osperlver File-MimeInfo = 0.15
|
---|
362 | osperlver File-BaseDir = 0.03
|
---|
363 | osperlver Mail-Sendmail = 0.79
|
---|
364 |
|
---|
365 | # Code name for debian/ubuntu distro
|
---|
366 | # used by debootstrap
|
---|
367 | # Cf: http://www.debian.org/releases/
|
---|
368 | # and https://wiki.ubuntu.com/DevelopmentCodeNames
|
---|
369 | oscodename debian-3.1 = sarge
|
---|
370 | oscodename debian-4.0 = etch
|
---|
371 | oscodename debian-5.0 = lenny
|
---|
372 | oscodename ubuntu-6.06 = dapper
|
---|
373 | oscodename ubuntu-7.04 = feisty
|
---|
374 | oscodename ubuntu-7.10 = gutsy
|
---|
375 | oscodename ubuntu-8.04 = hardy
|
---|
376 | oscodename ubuntu-8.10 = intrepid
|
---|
377 | oscodename ubuntu-9.04 = jaunty
|
---|
378 | oscodename ubuntu-9.10 = karmic
|
---|
379 | oscodename ubuntu-10.04 = lucid
|
---|
380 | oscodename ubuntu-10.10 = maverick
|
---|
381 |
|
---|
382 | # Commands needed on the underlying system
|
---|
383 | oscmd pb = tar,chmod,ls
|
---|
384 | oscmdopt pb = rpmbuild,dpkg-buildpackage,rpm,dpkg,wget,sudo,apt-get,mv,gzip,ebuild,makepkg,pkgmk,pkgtrans,rm,rpmlint,lintian,chroot,schroot,cp,chown,debsign,qemu-img,qemu,kvm,rpmbootstrap,rinse,mock,debootstrap,mkdir,cat,ssh,scp,yum,bash,make,vi,ssh-keygen,svn,hg,cvs,git,svk,svn2cl,cvs2cl,urpmi
|
---|
385 | oscmd rpmbootstrap = rpm,rpm2cpio,wget
|
---|
386 | #oscmdopt rpmbootstrap =
|
---|
387 | #
|
---|