From ee554a14c1b2b2d9da6601d3d425346250170ac9 Mon Sep 17 00:00:00 2001 From: Sofia Boldyreva Date: Mon, 27 Jan 2025 19:49:10 +0100 Subject: [PATCH] Initial commit --- config.yaml | 16 ++++++++++++++++ files/0001-Add-x86_64_v2-support.patch | 23 +++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 config.yaml create mode 100644 files/0001-Add-x86_64_v2-support.patch diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..057ffdf --- /dev/null +++ b/config.yaml @@ -0,0 +1,16 @@ +actions: + + - modify_release: + - suffix: ".alma.1" + enabled: true + + - changelog_entry: + - name: "Eduard Abdullin" + email: "eabdullin@almalinux.org" + line: + - "Add x86_64_v2 support" + + - add_files: + - type: "patch" + name: "0001-Add-x86_64_v2-support.patch" + number: 1000 diff --git a/files/0001-Add-x86_64_v2-support.patch b/files/0001-Add-x86_64_v2-support.patch new file mode 100644 index 0000000..4782bf2 --- /dev/null +++ b/files/0001-Add-x86_64_v2-support.patch @@ -0,0 +1,23 @@ +From ac5808bd2045da5fd0af937fb84755d75e155a92 Mon Sep 17 00:00:00 2001 +From: soksanichenko +Date: Fri, 13 Sep 2024 09:24:59 +0300 +Subject: [PATCH] Add x86_64_v2 support + +--- + src/pylorax/treebuilder.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/pylorax/treebuilder.py b/src/pylorax/treebuilder.py +index 2c6b5d8..47f8747 100644 +--- a/src/pylorax/treebuilder.py ++++ b/src/pylorax/treebuilder.py +@@ -36,6 +36,7 @@ from pylorax.executils import runcmd, runcmd_output, execWithCapture + + templatemap = { + 'x86_64': 'x86.tmpl', ++ 'x86_64_v2': 'x86_v2.tmpl', + 'ppc64le': 'ppc64le.tmpl', + 's390x': 's390.tmpl', + 'aarch64': 'aarch64.tmpl', +-- +2.39.3 (Apple Git-146)