summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2024-11-14 11:23:52 +0100
committerRemi Collet <remi@php.net>2024-11-14 11:23:52 +0100
commit1fac4889af774ccf06b5f62a5101861d2fc4d333 (patch)
treefd10aa30903a37c41f64ba335d7823d33c273a90
parente7da2c4a0bafecb5ea974bb83f7d37350c7fb59a (diff)
EL-10 base config
-rw-r--r--el10a.cfg5
-rw-r--r--el10a.tpl118
-rw-r--r--el10x.cfg5
-rw-r--r--el10x.tpl122
4 files changed, 250 insertions, 0 deletions
diff --git a/el10a.cfg b/el10a.cfg
new file mode 100644
index 0000000..9d3d747
--- /dev/null
+++ b/el10a.cfg
@@ -0,0 +1,5 @@
+include('el10a.tpl')
+
+config_opts['root'] = 'el10a'
+config_opts['resultdir'] = "/var/lib/mock/el10a"
+
diff --git a/el10a.tpl b/el10a.tpl
new file mode 100644
index 0000000..79aadef
--- /dev/null
+++ b/el10a.tpl
@@ -0,0 +1,118 @@
+include('vendor.tpl')
+
+config_opts['target_arch'] = 'aarch64'
+#config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
+config_opts['chroot_setup_cmd'] = 'install bash bzip2 coreutils cpio diffutils redhat-release findutils gawk gcc grep gzip info make patch redhat-rpm-config rpm-build sed shadow-utils tar unzip util-linux which xz remi-crypto-legacy'
+config_opts['dist'] = 'el10' # only useful for --resultdir variable subst
+config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
+config_opts['releasever'] = '10'
+config_opts['package_manager'] = 'dnf'
+
+config_opts['plugin_conf']['ccache_enable'] = False
+config_opts['plugin_conf']['ccache_opts']['max_cache_size'] = '1G'
+config_opts['plugin_conf']['ccache_opts']['dir'] = "/dev/shm/ccache.el10x/"
+
+config_opts['basedir'] = '/dev/shm/'
+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['macros']['%_topdir']="/builddir/build"
+config_opts['macros']['%_smp_mflags']="-j24"
+config_opts['macros']['%dist']=".el10.remi"
+config_opts['macros']['%rhel']="10"
+config_opts['macros']['%_with_ibase']="1"
+config_opts['macros']['%_with_oci8']="1"
+config_opts['macros']['%_without_zts']="1"
+config_opts['macros']['%runselftest']="1"
+
+config_opts['environment']['ACCEPT_EULA'] = 'Y'
+
+#config_opts['module_enable'] = ['php:remi-8.3']
+
+config_opts['yum.conf'] = """
+[main]
+keepcache=1
+debuglevel=2
+reposdir=/dev/null
+logfile=/var/log/yum.log
+retries=20
+obsoletes=1
+gpgcheck=0
+assumeyes=1
+metadata_expire=90000
+fastestmirror=1
+max_parallel_downloads=6
+modules=1
+module_hotfixes=1
+module_platform_id=platform:el10
+
+# repos
+[rhel-10-baseos]
+name=rhel-10-baseos
+baseurl=file:/mnt/rhel-10-aarch64/BaseOS/
+enabled=1
+
+[rhel-10-appstream]
+name=rhel-10-appstream
+baseurl=file:/mnt/rhel-10-aarch64/AppStream/
+enabled=1
+## excludepkgs=php*
+
+[epel]
+name=epel
+#mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-10&arch=aarch64
+metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-10&arch=aarch64
+#baseurl=https://dl.fedoraproject.org/pub/epel/10/Everything/aarch64/
+exclude=epel-rpm-macros
+enabled=1
+
+[epel-testing]
+name=epel
+mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel10&arch=aarch64
+exclude=epel-rpm-macros
+enabled=0
+
+[remi]
+name=remi public
+baseurl=http://remi/repo/enterprise/10/remi/aarch64/
+enabled=1
+metadata_expire=30
+
+[remi-modular]
+name=remi modular
+baseurl=http://remi/repo/enterprise/10/modular/aarch64/
+enabled=1
+metadata_expire=30
+
+[remi-priv]
+name=remi prive
+baseurl=file:/home/remi/priv/el10.aarch64/
+enabled=1
+metadata_expire=30
+
+[remi-debuginfo]
+name=remi-debuginfo
+baseurl=file:/home/rpmbuild/site/rpms/enterprise/10/debug-remi/x86_64/
+enabled=0
+
+[result-el10a]
+name=result-el10a
+baseurl=file:/var/lib/mock/el10a/
+metadata_expire=30
+skip_if_unavailable=True
+enabled=1
+
+[msprod]
+name=msprod
+baseurl=https://packages.microsoft.com/rhel/10/prod/
+enabled=0
+includepkgs=msodbcsql18
+
+[stream]
+name=CentOS 10 Stream
+baseurl=https://mirror.stream.centos.org/10-stream/AppStream/aarch64/os/
+enabled=0
+"""
diff --git a/el10x.cfg b/el10x.cfg
new file mode 100644
index 0000000..9a93343
--- /dev/null
+++ b/el10x.cfg
@@ -0,0 +1,5 @@
+include('el10x.tpl')
+
+config_opts['root'] = 'el10x'
+config_opts['resultdir'] = "/var/lib/mock/el10x"
+
diff --git a/el10x.tpl b/el10x.tpl
new file mode 100644
index 0000000..256ea68
--- /dev/null
+++ b/el10x.tpl
@@ -0,0 +1,122 @@
+include('vendor.tpl')
+
+config_opts['target_arch'] = 'x86_64'
+#config_opts['chroot_setup_cmd'] = 'install @buildsys-build'
+config_opts['chroot_setup_cmd'] = 'install bash bzip2 coreutils cpio diffutils redhat-release findutils gawk gcc grep gzip info make patch redhat-rpm-config rpm-build sed shadow-utils tar unzip util-linux which xz remi-crypto-legacy'
+config_opts['dist'] = 'el10' # only useful for --resultdir variable subst
+config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
+config_opts['releasever'] = '10'
+config_opts['package_manager'] = 'dnf'
+
+config_opts['plugin_conf']['ccache_enable'] = False
+config_opts['plugin_conf']['ccache_opts']['max_cache_size'] = '1G'
+config_opts['plugin_conf']['ccache_opts']['dir'] = "/dev/shm/ccache.el10x/"
+
+config_opts['basedir'] = '/dev/shm/'
+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['macros']['%_topdir']="/builddir/build"
+config_opts['macros']['%_smp_mflags']="-j15"
+config_opts['macros']['%dist']=".el10.remi"
+config_opts['macros']['%rhel']="10"
+config_opts['macros']['%_with_ibase']="1"
+config_opts['macros']['%_with_oci8']="1"
+config_opts['macros']['%runselftest']="1"
+
+config_opts['environment']['ACCEPT_EULA'] = 'Y'
+
+#config_opts['module_enable'] = ['php:remi-8.3']
+
+config_opts['yum.conf'] = """
+[main]
+keepcache=1
+debuglevel=2
+reposdir=/dev/null
+logfile=/var/log/yum.log
+retries=20
+obsoletes=1
+gpgcheck=0
+assumeyes=1
+metadata_expire=90000
+fastestmirror=1
+max_parallel_downloads=6
+modules=1
+module_hotfixes=1
+module_platform_id=platform:el10
+
+# repos
+[rhel-10-baseos]
+name=rhel-10-baseos
+baseurl=file:/mnt/rhel-10-x86_64/BaseOS/
+enabled=1
+
+[rhel-10-appstream]
+name=rhel-10-appstream
+baseurl=file:/mnt/rhel-10-x86_64/AppStream/
+enabled=1
+
+[epel]
+name=epel
+#mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=epel-10&arch=x86_64
+metalink=https://mirrors.fedoraproject.org/metalink?repo=epel-10&arch=x86_64
+#baseurl=https://dl.fedoraproject.org/pub/epel/10/Everything/x86_64/
+exclude=epel-rpm-macros
+enabled=1
+
+[epel-testing]
+name=epel-testing
+mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel10&arch=x86_64
+exclude=epel-rpm-macros
+enabled=0
+
+[remi]
+name=remi public
+baseurl=file:/home/rpmbuild/site/rpms/enterprise/10/remi/x86_64/
+enabled=1
+metadata_expire=30
+
+[remi-modular]
+name=remi modular
+baseurl=file:/home/rpmbuild/site/rpms/enterprise/10/modular/x86_64/
+enabled=1
+metadata_expire=30
+
+[remi-priv]
+name=remi prive
+baseurl=file:/home/rpmbuild/site/rpms/priv/x86_64/
+enabled=1
+metadata_expire=30
+
+[remi-priv-el10]
+name=remi prive el10
+baseurl=file:/home/rpmbuild/site/rpms/priv/el10.x86_64/
+enabled=1
+metadata_expire=30
+
+[remi-debuginfo]
+name=remi-debuginfo
+baseurl=file:/home/rpmbuild/site/rpms/enterprise/10/debug-remi/x86_64/
+enabled=0
+
+[result-el10x]
+name=result-el10x
+baseurl=file:/var/lib/mock/el10x/
+metadata_expire=30
+skip_if_unavailable=True
+enabled=1
+
+[msprod]
+name=msprod
+baseurl=https://packages.microsoft.com/rhel/10/prod/
+enabled=0
+includepkgs=msodbcsql18
+
+[stream]
+name=CentOS 10 Stream
+baseurl=https://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/
+enabled=0
+"""