Initial commit

This commit is contained in:
Sofia Boldyreva 2025-01-29 17:36:21 +01:00
commit 126035779f
2 changed files with 40 additions and 0 deletions

16
config.yaml Normal file
View File

@ -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 to RPM_ARCHES"
- add_files:
- type: "patch"
name: "0001-Add-x86_64_v2-to-RPM_ARCHES.patch"
number: 1000

View File

@ -0,0 +1,24 @@
From 50a37f6071f870bb7abfdffa0807d96528ebb10f Mon Sep 17 00:00:00 2001
From: soksanichenko <soksanichenko@almalinux.org>
Date: Fri, 13 Sep 2024 09:31:21 +0300
Subject: [PATCH] Add x86_64_v2 to RPM_ARCHES
---
productmd/common.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/productmd/common.py b/productmd/common.py
index 10e573d..4be8584 100644
--- a/productmd/common.py
+++ b/productmd/common.py
@@ -70,7 +70,7 @@ RPM_ARCHES = [
"alphaev7", "alphapca56", "amd64", "arm64", "armhfp", "armv5tejl", "armv5tel", "armv6hl", "armv6l", "armv7hl",
"armv7hnl", "armv7l", "athlon", "geode", "i386", "i486", "i586", "i686", "ia32e", "ia64", "ppc", "ppc64",
"ppc64iseries", "ppc64le", "ppc64p7", "ppc64pseries", "s390", "s390x", "sh3", "sh4", "sh4a",
- "sparc", "sparc64", "sparc64v", "sparcv8", "sparcv9", "sparcv9v", "x86_64",
+ "sparc", "sparc64", "sparc64v", "sparcv8", "sparcv9", "sparcv9v", "x86_64", "x86_64_v2",
"src", "nosrc", "noarch",
]
--
2.39.3 (Apple Git-146)