Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/vim-core/files/
Date: Wed, 01 Feb 2023 01:18:11
Message-Id: 1675213990.8218305dc9dc0468081f5e0a503ed890a301c8ab.conikost@gentoo
1 commit: 8218305dc9dc0468081f5e0a503ed890a301c8ab
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Mon Jan 30 19:10:01 2023 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 01:13:10 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8218305d
7
8 app-editors/vim-core: remove unused patch
9
10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
11 Closes: https://github.com/gentoo/gentoo/pull/29345
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 ...m-9.0-fix-create-timer-for-cros-compiling.patch | 28 ----------------------
15 1 file changed, 28 deletions(-)
16
17 diff --git a/app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch b/app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch
18 deleted file mode 100644
19 index 5247a80754cc..000000000000
20 --- a/app-editors/vim-core/files/vim-9.0-fix-create-timer-for-cros-compiling.patch
21 +++ /dev/null
22 @@ -1,28 +0,0 @@
23 -From bba26c9ed9d4ddc82afd0343f145dc9e14b91498 Mon Sep 17 00:00:00 2001
24 -From: Varsha Teratipally <teratipally@××××××.com>
25 -Date: Tue, 2 Aug 2022 22:18:29 +0000
26 -Subject: [PATCH] Configure check for timer_create may give wrong error.
27 -Give a warning instead of an error
28 -
29 -Partial solution from github.com/vim/vim/commit/5f6cae8b8a49c435556e32f84d067cd0b4d28e4c
30 -
31 ----
32 - src/configure.ac | 2 +-
33 - 1 file changed, 1 insertion(+), 1 deletion(-)
34 -
35 -diff --git a/src/configure.ac b/src/configure.ac
36 -index e8522ec05..41f41dee3 100644
37 ---- a/src/configure.ac
38 -+++ b/src/configure.ac
39 -@@ -3850,7 +3850,7 @@ static void set_flag(union sigval sv) {}
40 - ])],
41 - vim_cv_timer_create=yes,
42 - vim_cv_timer_create=no),
43 -- AC_MSG_ERROR(cross-compiling: please set 'vim_cv_timer_create')
44 -+ AC_MSG_WARN(cross-compiling: please set 'vim_cv_timer_create')
45 - )]
46 - )
47 -
48 ---
49 -
50 -