Risposte:
OpenSUSE Build System supporta più distribuzioni e supporta l'ambiente che descrivi, un ambiente sandbox per garantire che le build siano coerenti e affidabili:
È inoltre possibile installare OpenSUSE Build System come dispositivo. Questa è un'immagine VM Linux autonoma (sono supportate le versioni VMware, QEmu o ISO) che contiene l'intero stack per configurare le proprie farm di build:
mach supporta RHEL con un file di configurazione appropriato, ad esempio:
V = '5Server' # distro version
VS = '5' # 'short' version
A = 'i386' # architecture
AS = '' # 'short' version of arch
DIST = 'rhel-%s-%s' % (V, A)
### RHEL flavours
yumsources[DIST] = {
'os': rhelyum + '/%s/%s/os' % (V, A),
'updates': rhelyum + '/%s/%s/updates' % (V, A),
}
# RHEL
packages['%s' % DIST] = {
'dir': DIST,
'minimal': 'bash glibc redhat-release',
'base': 'coreutils findutils openssh-server',
'build': 'dev redhat-rpm-config rpm-build make gcc gcc-c++ tar gzip ' +
'patch unzip bzip2 diffutils cpio elfutils which',
}
sourceslist['%s' % DIST] = {
DIST: ('os', 'updates', )
}
config['%s' % DIST] = {
'runuser': '/sbin/runuser',
'macros': { 'dist': '.el' + VS, 'rhel': VS, 'redhat': VS},
}
aliases['%s' % DIST] = ('el' + VS + AS, )
Se vuoi andare fino in fondo, puoi configurare Koji , che usa Mock (dalla risposta di cdgagne) come uno dei suoi componenti. Koji è ciò che costruisce Fedora ed è scaricabile gratuitamente dal suo sito Web. Dopo tutto, Fedora gestisce Koji su RHEL, quindi dovrebbe andare bene per i tuoi scopi.