Add AlmaLinux runners
This commit is contained in:
parent
a45260a5fc
commit
7b66e9611a
139
SOURCES/almalinux_runners.patch
Normal file
139
SOURCES/almalinux_runners.patch
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
diff -aruN osbuild-53/runners/org.osbuild.almalinux86 osbuild-53_alma/runners/org.osbuild.almalinux86
|
||||||
|
--- osbuild-53/runners/org.osbuild.almalinux86 1970-01-01 02:00:00.000000000 +0200
|
||||||
|
+++ osbuild-53_alma/runners/org.osbuild.almalinux86 2022-03-24 02:05:32.000000000 +0300
|
||||||
|
@@ -0,0 +1,83 @@
|
||||||
|
+#!/usr/libexec/platform-python
|
||||||
|
+
|
||||||
|
+import os
|
||||||
|
+import platform
|
||||||
|
+import subprocess
|
||||||
|
+import sys
|
||||||
|
+
|
||||||
|
+import osbuild.api
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def quirks():
|
||||||
|
+ # Platform specific quirks
|
||||||
|
+ env = os.environ.copy()
|
||||||
|
+
|
||||||
|
+ if platform.machine() == "aarch64":
|
||||||
|
+ # Work around a bug in qemu-img on aarch64 that can lead to qemu-img
|
||||||
|
+ # hangs when more then one coroutine is use (which is the default)
|
||||||
|
+ # See https://bugs.launchpad.net/qemu/+bug/1805256
|
||||||
|
+ env["OSBUILD_QEMU_IMG_COROUTINES"] = "1"
|
||||||
|
+
|
||||||
|
+ return env
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def ldconfig():
|
||||||
|
+ # ld.so.conf must exist, or `ldconfig` throws a warning
|
||||||
|
+ subprocess.run(["touch", "/etc/ld.so.conf"], check=True)
|
||||||
|
+ subprocess.run(["ldconfig"], check=True)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def sysusers():
|
||||||
|
+ try:
|
||||||
|
+ subprocess.run(["systemd-sysusers"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, check=True)
|
||||||
|
+ except subprocess.CalledProcessError as error:
|
||||||
|
+ sys.stderr.write(error.stdout)
|
||||||
|
+ sys.exit(1)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def tmpfiles():
|
||||||
|
+ # Allow systemd-tmpfiles to return non-0. Some packages want to create
|
||||||
|
+ # directories owned by users that are not set up with systemd-sysusers.
|
||||||
|
+ subprocess.run(["systemd-tmpfiles", "--create"], check=False)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def nsswitch():
|
||||||
|
+ # the default behavior is fine, but using nss-resolve does not
|
||||||
|
+ # necessarily work in a non-booted container, so make sure that
|
||||||
|
+ # is not configured.
|
||||||
|
+ try:
|
||||||
|
+ os.remove("/etc/nsswitch.conf")
|
||||||
|
+ except FileNotFoundError:
|
||||||
|
+ pass
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def python_alternatives():
|
||||||
|
+ """/usr/bin/python3 is a symlink to /etc/alternatives/python3, which points
|
||||||
|
+ to /usr/bin/python3.6 by default. Recreate the link in /etc, so that
|
||||||
|
+ shebang lines in stages and assemblers work.
|
||||||
|
+ """
|
||||||
|
+ os.makedirs("/etc/alternatives", exist_ok=True)
|
||||||
|
+ try:
|
||||||
|
+ os.symlink("/usr/bin/python3.6", "/etc/alternatives/python3")
|
||||||
|
+ except FileExistsError:
|
||||||
|
+ pass
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def main():
|
||||||
|
+ with osbuild.api.exception_handler():
|
||||||
|
+ ldconfig()
|
||||||
|
+ sysusers()
|
||||||
|
+ tmpfiles()
|
||||||
|
+ nsswitch()
|
||||||
|
+ python_alternatives()
|
||||||
|
+
|
||||||
|
+ env = quirks()
|
||||||
|
+
|
||||||
|
+ r = subprocess.run(sys.argv[1:],
|
||||||
|
+ env=env,
|
||||||
|
+ check=False)
|
||||||
|
+ sys.exit(r.returncode)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+if __name__ == "__main__":
|
||||||
|
+ main()
|
||||||
|
diff -aruN osbuild-53/runners/org.osbuild.almalinux90 osbuild-53_alma/runners/org.osbuild.almalinux90
|
||||||
|
--- osbuild-53/runners/org.osbuild.almalinux90 1970-01-01 02:00:00.000000000 +0200
|
||||||
|
+++ osbuild-53_alma/runners/org.osbuild.almalinux90 2022-03-24 02:05:32.000000000 +0300
|
||||||
|
@@ -0,0 +1,48 @@
|
||||||
|
+#!/usr/bin/python3
|
||||||
|
+
|
||||||
|
+import os
|
||||||
|
+import subprocess
|
||||||
|
+import sys
|
||||||
|
+
|
||||||
|
+import osbuild.api
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def ldconfig():
|
||||||
|
+ # ld.so.conf must exist, or `ldconfig` throws a warning
|
||||||
|
+ subprocess.run(["touch", "/etc/ld.so.conf"], check=True)
|
||||||
|
+ subprocess.run(["ldconfig"], check=True)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def sysusers():
|
||||||
|
+ try:
|
||||||
|
+ subprocess.run(["systemd-sysusers"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, check=True)
|
||||||
|
+ except subprocess.CalledProcessError as error:
|
||||||
|
+ sys.stderr.write(error.stdout)
|
||||||
|
+ sys.exit(1)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def tmpfiles():
|
||||||
|
+ # Allow systemd-tmpfiles to return non-0. Some packages want to create
|
||||||
|
+ # directories owned by users that are not set up with systemd-sysusers.
|
||||||
|
+ subprocess.run(["systemd-tmpfiles", "--create"], check=False)
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+def nsswitch():
|
||||||
|
+ # the default behavior is fine, but using nss-resolve does not
|
||||||
|
+ # necessarily work in a non-booted container, so make sure that
|
||||||
|
+ # is not configured.
|
||||||
|
+ try:
|
||||||
|
+ os.remove("/etc/nsswitch.conf")
|
||||||
|
+ except FileNotFoundError:
|
||||||
|
+ pass
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+if __name__ == "__main__":
|
||||||
|
+ with osbuild.api.exception_handler():
|
||||||
|
+ ldconfig()
|
||||||
|
+ sysusers()
|
||||||
|
+ tmpfiles()
|
||||||
|
+ nsswitch()
|
||||||
|
+
|
||||||
|
+ r = subprocess.run(sys.argv[1:], check=False)
|
||||||
|
+ sys.exit(r.returncode)
|
@ -9,7 +9,7 @@ Version: 53
|
|||||||
%global pkgdir %{_prefix}/lib/%{pypi_name}
|
%global pkgdir %{_prefix}/lib/%{pypi_name}
|
||||||
|
|
||||||
Name: %{pypi_name}
|
Name: %{pypi_name}
|
||||||
Release: 2%{?dist}
|
Release: 2%{?dist}.alma
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
|
|
||||||
URL: %{forgeurl}
|
URL: %{forgeurl}
|
||||||
@ -18,6 +18,9 @@ Source0: %{forgesource}
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Summary: A build system for OS images
|
Summary: A build system for OS images
|
||||||
|
|
||||||
|
# AlmaLinux patch
|
||||||
|
Patch10000: almlainux_runners.patch
|
||||||
|
|
||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-docutils
|
BuildRequires: python3-docutils
|
||||||
@ -121,6 +124,9 @@ manifests and osbuild.
|
|||||||
%prep
|
%prep
|
||||||
%forgesetup
|
%forgesetup
|
||||||
|
|
||||||
|
# AlmaLinux patch
|
||||||
|
%patch10000 -p1 -b .runners
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
make man
|
make man
|
||||||
@ -248,6 +254,9 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 05 2022 Eduard Abdullin <eabdullin@almalinux.org> - 53-2.alma
|
||||||
|
- Add AlmaLinux runners
|
||||||
|
|
||||||
* Thu Mar 24 2022 Ondřej Budai <ondrej@budai.cz> - 53-2
|
* Thu Mar 24 2022 Ondřej Budai <ondrej@budai.cz> - 53-2
|
||||||
- Bump release field in order to resolve conflict with 8.7's version of osbuild
|
- Bump release field in order to resolve conflict with 8.7's version of osbuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user