diff options
-rw-r--r-- | .gitignore | 9 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | capstone.spec | 10 |
3 files changed, 22 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..01f0400 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +clog +package-*.xml +*.tgz +*.tar.bz2 +*.tar.gz +*.tar.xz +*.tar.xz.asc +*.src.rpm +*/*rpm diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91b0fd5 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../../common/Makefile + diff --git a/capstone.spec b/capstone.spec index 7ba4de2..278fd41 100644 --- a/capstone.spec +++ b/capstone.spec @@ -1,6 +1,11 @@ +# Imported from RHEL-9 +# rebuild with lower release to allow installation on UBI9 where missing +# EL-9 user will use official version in AppStream +# See https://github.com/remicollet/remirepo/issues/264 + Name: capstone Version: 4.0.2 -Release: 10%{?dist} +Release: 0.10%{?dist} Summary: A lightweight multi-platform, multi-architecture disassembly framework %global gituser aquynh @@ -232,6 +237,9 @@ make check LD_LIBRARY_PATH="`pwd`" %{_javadir}/ %changelog +* Thu Aug 8 2024 Remi Collet <remi@remirepo.net> - 4.0.2-0.10 +- build with lower version for UBI9 users + * Fri Sep 02 2022 Miroslav Rezanina <mrezanin@redhat.com> - 4.0.2-10 - Import to CentOS 9 Stream / RHEL 9 |