diff options
author | John Helmert III <ajak@gentoo.org> | 2023-01-25 13:46:34 -0600 |
---|---|---|
committer | John Helmert III <ajak@gentoo.org> | 2023-01-25 13:46:52 -0600 |
commit | e1012aa8921b3a09f3730df4400d85106d3f65ad (patch) | |
tree | 8332cc8939a0c37181ef3f958720f83e7d80b98f /app-editors/vim/files | |
parent | dev-python/numpy: Remove old (diff) | |
download | gentoo-e1012aa8921b3a09f3730df4400d85106d3f65ad.tar.gz gentoo-e1012aa8921b3a09f3730df4400d85106d3f65ad.tar.bz2 gentoo-e1012aa8921b3a09f3730df4400d85106d3f65ad.zip |
app-editors/vim: drop 9.0.0099-r1, 9.0.0828-r1
Bug: https://bugs.gentoo.org/883681
Signed-off-by: John Helmert III <ajak@gentoo.org>
Diffstat (limited to 'app-editors/vim/files')
-rw-r--r-- | app-editors/vim/files/vim-0.0.0828-configure-clang16.patch | 28 | ||||
-rw-r--r-- | app-editors/vim/files/vim-9.0-fix-create-timer-for-cros-compiling.patch | 28 |
2 files changed, 0 insertions, 56 deletions
diff --git a/app-editors/vim/files/vim-0.0.0828-configure-clang16.patch b/app-editors/vim/files/vim-0.0.0828-configure-clang16.patch deleted file mode 100644 index e202a9dd3caa..000000000000 --- a/app-editors/vim/files/vim-0.0.0828-configure-clang16.patch +++ /dev/null @@ -1,28 +0,0 @@ -https://github.com/vim/vim/pull/11496 - -From 360b569f86b851c37e32b7cfaec079823188ff27 Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Fri, 4 Nov 2022 03:18:23 +0000 -Subject: [PATCH] configure.ac: Fix -Wimplicit-int - -Clang 16 makes -Wimplicit-int an error by default. Fixes errors like: -``` -error: type specifier missing, defaults to 'int'; ISO C99 and later do not support implicit int [-Werror,-Wimplicit-int] -``` - -We already use proper declarations with every other test anyway, so -let's be consistent. - -Signed-off-by: Sam James <sam@gentoo.org> ---- a/src/configure.ac -+++ b/src/configure.ac -@@ -3654,7 +3654,7 @@ dnl check if struct sigcontext is defined (used for SGI only) - AC_MSG_CHECKING(for struct sigcontext) - AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ - #include <signal.h> --test_sig() -+int test_sig() - { - struct sigcontext *scont; - scont = (struct sigcontext *)0; - diff --git a/app-editors/vim/files/vim-9.0-fix-create-timer-for-cros-compiling.patch b/app-editors/vim/files/vim-9.0-fix-create-timer-for-cros-compiling.patch deleted file mode 100644 index 5247a80754cc..000000000000 --- a/app-editors/vim/files/vim-9.0-fix-create-timer-for-cros-compiling.patch +++ /dev/null @@ -1,28 +0,0 @@ -From bba26c9ed9d4ddc82afd0343f145dc9e14b91498 Mon Sep 17 00:00:00 2001 -From: Varsha Teratipally <teratipally@google.com> -Date: Tue, 2 Aug 2022 22:18:29 +0000 -Subject: [PATCH] Configure check for timer_create may give wrong error. -Give a warning instead of an error - -Partial solution from github.com/vim/vim/commit/5f6cae8b8a49c435556e32f84d067cd0b4d28e4c - ---- - src/configure.ac | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/configure.ac b/src/configure.ac -index e8522ec05..41f41dee3 100644 ---- a/src/configure.ac -+++ b/src/configure.ac -@@ -3850,7 +3850,7 @@ static void set_flag(union sigval sv) {} - ])], - vim_cv_timer_create=yes, - vim_cv_timer_create=no), -- AC_MSG_ERROR(cross-compiling: please set 'vim_cv_timer_create') -+ AC_MSG_WARN(cross-compiling: please set 'vim_cv_timer_create') - )] - ) - --- - - |