diff options
author | Remi Collet <remi@remirepo.net> | 2020-02-14 10:02:37 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2020-02-14 10:02:37 +0100 |
commit | 251a02134dab563a958fac258b1a8dae271260f6 (patch) | |
tree | 264ea46eaf204b54c9eea88c61eca31c1e69ccf8 /el6x.tpl | |
parent | 4dd7b10c62622fed92ae47abc67dfab874c6a6da (diff) |
cleanup EL6 configuration files
Diffstat (limited to 'el6x.tpl')
-rw-r--r-- | el6x.tpl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/el6x.tpl b/el6x.tpl new file mode 100644 index 0000000..26184e0 --- /dev/null +++ b/el6x.tpl @@ -0,0 +1,31 @@ +config_opts['root'] = 'el6x' +config_opts['target_arch'] = 'x86_64' +config_opts['chroot_setup_cmd'] = 'install @buildsys-build ccache autoconf268' +config_opts['dist'] = 'el6' # only useful for --resultdir variable subst +config_opts['use_nspawn'] = False + +config_opts['plugin_conf']['ccache_enable'] = True +config_opts['plugin_conf']['ccache_opts']['max_cache_size'] = '1G' +config_opts['plugin_conf']['ccache_opts']['dir'] = "/dev/shm/ccache.el6x/" + +config_opts['basedir'] = '/dev/shm/' +config_opts['resultdir'] = "/var/lib/mock/el6x" +config_opts['cleanup_on_success'] = True +config_opts['cleanup_on_failure'] = False + +config_opts['createrepo_on_rpms'] = True +config_opts['createrepo_command'] = '/usr/bin/createrepo -d -q -x *.src.rpm' + +config_opts['package_manager'] = 'yum' +config_opts['use_bootstrap'] = True + +config_opts['macros']['%_smp_mflags']="-j10" +config_opts['macros']['%vendor']="Remi Collet" +config_opts['macros']['%packager']="https://blog.remirepo.net/" +config_opts['macros']['%bugurl']="https://forum.remirepo.net/" +config_opts['macros']['%dist']=".el6.remi" +config_opts['macros']['%rhel']="6" +config_opts['macros']['%_with_ibase']="1" +config_opts['macros']['%_with_oci8']="1" +config_opts['macros']['%runselftest']="1" + |