Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2020-03-22 17:01:47 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2020-03-22 17:01:47 +0100
commitea5b58ba93c55e016182778ac179e3d01ee7dcc8 (patch)
tree736cbd53a0b9dd89669d2214ee3d35bf6b14dd49
parentaaa291d7cabbdc4f61b76c2ebfd14a2a0ce0a6e0 (diff)
community/helm: removed, is now helm-synth
-rw-r--r--community/helm/PKGBUILD10
-rw-r--r--community/helm/helm-0.9.0-sigemptyset-glibc-2.26.patch15
2 files changed, 0 insertions, 25 deletions
diff --git a/community/helm/PKGBUILD b/community/helm/PKGBUILD
deleted file mode 100644
index 727d65f8..00000000
--- a/community/helm/PKGBUILD
+++ /dev/null
@@ -1,10 +0,0 @@
-# reported upstream, see https://github.com/mtytel/helm/issues/190
-source+=('helm-0.9.0-sigemptyset-glibc-2.26.patch')
-sha512sums+=('7786c0fdf6ec0cfdb2e7344742327454e9ab82e83e43cb6492d3b6fd047f0070b8da23055d9d9df2fc325ce440b1b51ef8919fb9749cab3d6800946cebf03ab8')
-
-eval "$(
- declare -f prepare | \
- sed '
- /cd/ a patch -Np1 -i "${srcdir}"/helm-0.9.0-sigemptyset-glibc-2.26.patch
- '
-)"
diff --git a/community/helm/helm-0.9.0-sigemptyset-glibc-2.26.patch b/community/helm/helm-0.9.0-sigemptyset-glibc-2.26.patch
deleted file mode 100644
index ec41602d..00000000
--- a/community/helm/helm-0.9.0-sigemptyset-glibc-2.26.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -rauN helm-0.9.0/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c helm-0.9.0-sigemptyset-glibc-2.26-patch/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c
---- helm-0.9.0/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c 2017-07-08 23:40:42.000000000 +0200
-+++ helm-0.9.0-sigemptyset-glibc-2.26-patch/JUCE/modules/juce_audio_formats/codecs/flac/libFLAC/cpu.c 2018-03-15 20:47:50.816542352 +0100
-@@ -244,11 +244,7 @@
- struct sigaction sigill_save;
- struct sigaction sigill_sse;
- sigill_sse.sa_sigaction = sigill_handler_sse_os;
-- #ifdef __ANDROID__
- sigemptyset (&sigill_sse.sa_mask);
-- #else
-- __sigemptyset(&sigill_sse.sa_mask);
-- #endif
- sigill_sse.sa_flags = SA_SIGINFO | SA_RESETHAND; /* SA_RESETHAND just in case our SIGILL return jump breaks, so we don't get stuck in a loop */
- if(0 == sigaction(SIGILL, &sigill_sse, &sigill_save))
- {