summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-03-17 13:21:20 +0100
committerConrad Kostecki <conikost@gentoo.org>2024-03-18 21:00:21 +0100
commitf7647c1638ac2ecbb7a2ca48a6755cfb53b33549 (patch)
treef7d81fd3e426e61ecf6b6358a86f35c7345d6790 /dev-lang/moarvm
parentdev-java/commons-httpclient: remove unused patch(es) (diff)
downloadgentoo-f7647c1638ac2ecbb7a2ca48a6755cfb53b33549.tar.gz
gentoo-f7647c1638ac2ecbb7a2ca48a6755cfb53b33549.tar.bz2
gentoo-f7647c1638ac2ecbb7a2ca48a6755cfb53b33549.zip
dev-lang/moarvm: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-lang/moarvm')
-rw-r--r--dev-lang/moarvm/files/moarvm-2023.02-fix-build-clang16.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-lang/moarvm/files/moarvm-2023.02-fix-build-clang16.patch b/dev-lang/moarvm/files/moarvm-2023.02-fix-build-clang16.patch
deleted file mode 100644
index 9f8a60672ee2..000000000000
--- a/dev-lang/moarvm/files/moarvm-2023.02-fix-build-clang16.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Bug: https://bugs.gentoo.org/881335
-Upstream PR: https://github.com/MoarVM/MoarVM/pull/1764
---- a/src/6model/containers.c
-+++ b/src/6model/containers.c
-@@ -114,7 +114,7 @@ static const MVMContainerSpec code_pair_spec = {
- code_pair_fetch_s,
- code_pair_store,
- code_pair_store_i,
-- code_pair_store_i, /* FIXME need a code_pair_store_u but lacking tests showing this need */
-+ (void *)code_pair_store_i, /* FIXME need a code_pair_store_u but lacking tests showing this need */
- code_pair_store_n,
- code_pair_store_s,
- code_pair_store,
-@@ -371,7 +371,7 @@ static const MVMContainerSpec value_desc_cont_spec = {
- value_desc_cont_fetch_s,
- value_desc_cont_store,
- value_desc_cont_store_i,
-- value_desc_cont_store_i, /* FIXME need a value_desc_cont_store_u but lacking tests showing this need */
-+ (void *)value_desc_cont_store_i, /* FIXME need a value_desc_cont_store_u but lacking tests showing this need */
- value_desc_cont_store_n,
- value_desc_cont_store_s,
- value_desc_cont_store_unchecked,