summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--el7x81.cfg112
-rw-r--r--el8x81.cfg31
-rw-r--r--fc33x81.cfg11
-rw-r--r--fc34x81.cfg11
4 files changed, 165 insertions, 0 deletions
diff --git a/el7x81.cfg b/el7x81.cfg
new file mode 100644
index 0000000..d4dca12
--- /dev/null
+++ b/el7x81.cfg
@@ -0,0 +1,112 @@
+include('el7x.tpl')
+
+config_opts['macros']['%dtsversion']="10"
+config_opts['macros']['%dtsenable']="source /opt/rh/devtoolset-10/enable"
+config_opts['macros']['%dtsprefix']="devtoolset-10-"
+
+config_opts['yum.conf'] = """
+[main]
+cachedir=/var/cache/yum
+debuglevel=1
+reposdir=/dev/null
+logfile=/var/log/yum.log
+retries=20
+obsoletes=1
+gpgcheck=0
+assumeyes=1
+syslog_ident=mock
+syslog_device=
+
+# repos
+[rhel-7]
+name=rhel-7
+baseurl=file:///mnt/rhel-7-x86_64/
+enabled=1
+exclude=libicu-devel
+
+[rc]
+name=rc
+baseurl=http://ftp.redhat.com/redhat/rhel/rc/7/Server/x86_64/os/
+enabled=0
+
+[rc-optional]
+name=rc-optional
+baseurl=http://ftp.redhat.com/redhat/rhel/rc/7/Server-optional/x86_64/os/
+enabled=0
+
+[centos-base]
+name=BaseOS
+mirrorlist=http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os
+enabled=0
+
+[centos-updates]
+name=updates
+mirrorlist=http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=updates
+enabled=0
+
+[epel]
+name=epel
+mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-7&arch=x86_64
+exclude=epel-rpm-macros
+enabled=1
+
+[epel-testing]
+name=epel-testing
+mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel6&arch=x86_64
+enabled=0
+
+[remi]
+name=remi public
+baseurl=file:///home/rpmbuild/site/rpms/enterprise/7/remi/x86_64/
+enabled=1
+exclude=php-pecl-* libicu-last-devel
+
+[remi-test]
+name=remi test
+baseurl=file:///home/rpmbuild/site/rpms/enterprise/7/test/x86_64/
+enabled=0
+
+[remi-php81]
+name=remi php81
+baseurl=file:///home/rpmbuild/site/rpms/enterprise/7/php81/x86_64/
+enabled=1
+
+[remi-priv]
+name=remi prive
+baseurl=file:///home/rpmbuild/site/rpms/priv/el7.x86_64/
+enabled=1
+
+[rpmfusion-free]
+name=rpmfusion-free
+mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=free-el-6&arch=x86_64
+enabled=0
+
+[rpmfusion-free-updates]
+name=rpmfusion-free-updates
+mirrorlist=http://mirrors.rpmfusion.org/mirrorlist?repo=free-el-updates-released-6&arch=x86_64
+enabled=0
+
+[local]
+name=local
+baseurl=http://kojipkgs.fedoraproject.org/repos/dist-6E-epel-build/latest/x86_64/
+cost=2000
+enabled=0
+
+[result]
+name=result
+baseurl=file:///var/lib/mock/el7x/
+enabled=1
+
+[centos-sclo-rh]
+name=CentOS-7 - SCLo rh
+baseurl=http://mirror.centos.org/centos/7/sclo/$basearch/rh/
+enabled=0
+
+[msprod]
+name=msprod
+baseurl=https://packages.microsoft.com/rhel/7/prod/
+enabled=0
+includepkgs=msodbcsql17
+
+"""
+
diff --git a/el8x81.cfg b/el8x81.cfg
new file mode 100644
index 0000000..ae969ec
--- /dev/null
+++ b/el8x81.cfg
@@ -0,0 +1,31 @@
+import datetime;
+
+include('el8x.tpl')
+
+config_opts['root'] = 'el8x81'
+config_opts['resultdir'] = "/var/lib/mock/el8x81"
+
+config_opts['module_enable'] = ['varnish:6', 'postgresql:10', 'python27:2.7', 'python36:3.6', 'virt:rhel', 'httpd:2.4', 'nginx:1.14', 'php:remi-8.1', 'redis:remi-6.0']
+
+nn = datetime.datetime.now().strftime("%Y%m%d%H%M%S");
+config_opts['macros']['%_module_build']="1"
+config_opts['macros']['%_module_name']="php"
+config_opts['macros']['%_module_stream']="remi-8.1"
+config_opts['macros']['%_module_version']="80200" + nn;
+config_opts['macros']['%_module_context']="00000000"
+config_opts['macros']['%modularitylabel']="%{_module_name}:%{_module_stream}:%{_module_version}:%{_module_context}"
+
+config_opts['yum.conf'] += """
+[remi-php81]
+name=remi php81
+baseurl=file:/home/rpmbuild/site/rpms/enterprise/8/php81/x86_64/
+enabled=0
+metadata_expire=15
+
+[result-el8x81]
+name=result-el8x
+baseurl=file:/var/lib/mock/el8x81/
+metadata_expire=15
+enabled=1
+
+"""
diff --git a/fc33x81.cfg b/fc33x81.cfg
new file mode 100644
index 0000000..282a6e4
--- /dev/null
+++ b/fc33x81.cfg
@@ -0,0 +1,11 @@
+include('fc33x.tpl')
+
+config_opts['yum.conf'] += """
+[remi-php81]
+name=remi php81
+baseurl=file:/home/rpmbuild/site/rpms/fedora/33/php81/x86_64/
+enabled=1
+metadata_expire=1
+
+"""
+
diff --git a/fc34x81.cfg b/fc34x81.cfg
new file mode 100644
index 0000000..9b358d7
--- /dev/null
+++ b/fc34x81.cfg
@@ -0,0 +1,11 @@
+include('fc34x.tpl')
+
+config_opts['yum.conf'] += """
+[remi-php81]
+name=remi php81
+baseurl=file:/home/rpmbuild/site/rpms/fedora/34/php81/x86_64/
+enabled=1
+metadata_expire=1
+
+"""
+