summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Haustein <mario.haustein@hrz.tu-chemnitz.de>2024-11-24 17:56:24 +0100
committerEli Schwartz <eschwartz@gentoo.org>2024-11-29 16:12:18 -0500
commitd607b72dc84720a1d39c50b10702bc84ba7c14b9 (patch)
tree05535fa05821db55722925e9c73cf926e1fb4d0b /dev-libs/capstone/files
parentdev-libs/capstone: drop 6.0.0_alpha1 (diff)
downloadgentoo-d607b72dc84720a1d39c50b10702bc84ba7c14b9.tar.gz
gentoo-d607b72dc84720a1d39c50b10702bc84ba7c14b9.tar.bz2
gentoo-d607b72dc84720a1d39c50b10702bc84ba7c14b9.zip
dev-libs/capstone: drop 5.0.1
Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/39452 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'dev-libs/capstone/files')
-rw-r--r--dev-libs/capstone/files/capstone-5.0.2-tests.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-libs/capstone/files/capstone-5.0.2-tests.patch b/dev-libs/capstone/files/capstone-5.0.2-tests.patch
deleted file mode 100644
index 37ec431fb70b..000000000000
--- a/dev-libs/capstone/files/capstone-5.0.2-tests.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-From b77714b446e93a0ab997b125ef1fb3ad9bc4bb9b Mon Sep 17 00:00:00 2001
-From: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
-Date: Wed, 14 Aug 2024 23:28:45 +0200
-Subject: [PATCH] Fix 'make check' for python tests
-Upstream: https://github.com/capstone-engine/capstone/pull/2439
-
---- a/bindings/python/Makefile
-+++ b/bindings/python/Makefile
-@@ -41,7 +41,7 @@ TESTS += test_lite.py test_iter.py test_customized_mnem.py test_alpha.py
- check:
- @for t in $(TESTS); do \
- echo Check $$t ... ; \
-- ./$$t > /dev/null; \
-+ ./tests/$$t > /dev/null; \
- if [ $$? -eq 0 ]; then echo OK; else echo FAILED; exit 1; fi \
- done
-