[cpp-linbuild] branch main updated: Implement support for Rocky Linux 10

John W. O'Brien john at saltant.com
Sat Jun 14 15:41:00 UTC 2025


This is an automated email from the git hooks/post-receive script.

obrienjw pushed a commit to branch main
in repository cpp-linbuild.

View the commit online:
http://git.shibboleth.net/view/?p=cpp-linbuild.git;a=commit;h=179ba961a219aaa53de4b4de65ba949ea6b7ad8c

The following commit(s) were added to refs/heads/main by this push:
     new 179ba96  Implement support for Rocky Linux 10
179ba96 is described below

commit 179ba961a219aaa53de4b4de65ba949ea6b7ad8c
Author: John W. O'Brien <john at saltant.com>
AuthorDate: Sat Jun 14 15:12:57 2025 +0000

    Implement support for Rocky Linux 10
---
 Makefile                         |  3 ++-
 os/rockylinux10/image/Dockerfile | 25 +++++++++++++++++++++++++
 os/rockylinux10/image/local.repo |  5 +++++
 3 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 8882c9e..bb696d3 100644
--- a/Makefile
+++ b/Makefile
@@ -178,7 +178,8 @@ PLATFORMS=\
 	centos7 \
 	centos8 \
 	rockylinux8 \
-	rockylinux9
+	rockylinux9 \
+	rockylinux10
 
 # Red Hat Enterprise Linux (RHEL) builds, which run inside
 # Universal Base Image (UBI) containers, can only be performed
diff --git a/os/rockylinux10/image/Dockerfile b/os/rockylinux10/image/Dockerfile
new file mode 100644
index 0000000..6c4f163
--- /dev/null
+++ b/os/rockylinux10/image/Dockerfile
@@ -0,0 +1,25 @@
+FROM docker.io/rockylinux/rockylinux:10.0.20250606
+
+COPY *.repo /etc/yum.repos.d/
+
+RUN yum -y update \
+    && yum -y install --enablerepo crb \
+        autoconf automake boost-devel curl-devel doxygen \
+        gcc-c++ gdb git groff httpd-devel \
+        libtool make openldap-devel openssl-devel \
+        pkgconfig rpm-build stunnel systemd-devel unixODBC-devel \
+        zlib-devel createrepo_c yum-utils \
+    && yum clean all
+
+# internal and external are w.r.t. a container, where external locations
+# are expected to be mounted and pre-populated with required inputs
+ENV BUILD_BASE=/opt/build
+ENV INT_BASE=${BUILD_BASE}/internal
+ENV EXT_BASE=${BUILD_BASE}/external
+
+RUN mkdir -p \
+    ${INT_BASE}/{BUILD,BUILDROOT} \
+    ${EXT_BASE}/{in,out} \
+    && ln -s ${EXT_BASE}/in/macros/macros.shibboleth /etc/rpm/
+
+WORKDIR ${EXT_BASE}/in/SPECS
diff --git a/os/rockylinux10/image/local.repo b/os/rockylinux10/image/local.repo
new file mode 100644
index 0000000..abe1732
--- /dev/null
+++ b/os/rockylinux10/image/local.repo
@@ -0,0 +1,5 @@
+[local]
+name=Local Shibboleth-SP Build Repo
+baseurl=file:///opt/build/external/out/RPMS/$basearch/
+gpgcheck=0
+enabled=0

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list