All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/vim: use LICENSE file
@ 2021-10-26 16:30 Fabrice Fontaine
  2021-10-26 16:30 ` [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2021-10-26 16:30 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Use LICENSE file which is available since version 8.2.0105 and
https://github.com/vim/vim/commit/c838626fea42ed5924ee6084d87d1b37b2d7b0ff

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/vim/vim.hash | 1 +
 package/vim/vim.mk   | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/vim/vim.hash b/package/vim/vim.hash
index ce04e5cf5d..8dad275f49 100644
--- a/package/vim/vim.hash
+++ b/package/vim/vim.hash
@@ -1,3 +1,4 @@
 # Locally computed
 sha256  12cce47b81e12779b7d58faf879633be1b668f54a5417a5a24adac50413b3b3c  vim-8.2.3432.tar.gz
+sha256  0bcab3b635dd39208c42b496568d1e8171dad247cf3da5bab3d750c9d5883499  LICENSE
 sha256  96970b67f9cb38b0e759946cff22562a3c4b11ce78f62f2117d5e7ecded9ab4d  README.txt
diff --git a/package/vim/vim.mk b/package/vim/vim.mk
index f1ed3c342d..a94dab4bd7 100644
--- a/package/vim/vim.mk
+++ b/package/vim/vim.mk
@@ -22,7 +22,7 @@ VIM_CONF_ENV = \
 # GUI/X11 headers leak from the host so forcibly disable them
 VIM_CONF_OPTS = --with-tlib=ncurses --enable-gui=no --without-x
 VIM_LICENSE = Charityware
-VIM_LICENSE_FILES = README.txt
+VIM_LICENSE_FILES = LICENSE README.txt
 VIM_CPE_ID_VENDOR = vim
 
 ifeq ($(BR2_PACKAGE_ACL),y)
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565
  2021-10-26 16:30 [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Fabrice Fontaine
@ 2021-10-26 16:30 ` Fabrice Fontaine
  2021-10-26 18:36   ` Peter Korsgaard
  2021-10-27 10:04   ` Peter Korsgaard
  2021-10-26 18:36 ` [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Peter Korsgaard
  2021-10-27 10:04 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2021-10-26 16:30 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

Fix CVE-2021-3872: vim is vulnerable to Heap-based Buffer Overflow
Fix CVE-2021-3875: vim is vulnerable to Heap-based Buffer Overflow

https://github.com/vim/vim/compare/v8.2.3432...v8.2.3565

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/vim/vim.hash | 2 +-
 package/vim/vim.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/vim/vim.hash b/package/vim/vim.hash
index 8dad275f49..bbe65c4dda 100644
--- a/package/vim/vim.hash
+++ b/package/vim/vim.hash
@@ -1,4 +1,4 @@
 # Locally computed
-sha256  12cce47b81e12779b7d58faf879633be1b668f54a5417a5a24adac50413b3b3c  vim-8.2.3432.tar.gz
+sha256  ac2264c45684218232ec49a6ae8b88b9a68312b664b93b811868d24c39d8dc11  vim-8.2.3565.tar.gz
 sha256  0bcab3b635dd39208c42b496568d1e8171dad247cf3da5bab3d750c9d5883499  LICENSE
 sha256  96970b67f9cb38b0e759946cff22562a3c4b11ce78f62f2117d5e7ecded9ab4d  README.txt
diff --git a/package/vim/vim.mk b/package/vim/vim.mk
index a94dab4bd7..960759aab4 100644
--- a/package/vim/vim.mk
+++ b/package/vim/vim.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-VIM_VERSION = 8.2.3432
+VIM_VERSION = 8.2.3565
 VIM_SITE = $(call github,vim,vim,v$(VIM_VERSION))
 VIM_DEPENDENCIES = ncurses $(TARGET_NLS_DEPENDENCIES)
 VIM_SUBDIR = src
-- 
2.33.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Buildroot] [PATCH 1/2] package/vim: use LICENSE file
  2021-10-26 16:30 [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Fabrice Fontaine
  2021-10-26 16:30 ` [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565 Fabrice Fontaine
@ 2021-10-26 18:36 ` Peter Korsgaard
  2021-10-27 10:04 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2021-10-26 18:36 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Use LICENSE file which is available since version 8.2.0105 and
 > https://github.com/vim/vim/commit/c838626fea42ed5924ee6084d87d1b37b2d7b0ff

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565
  2021-10-26 16:30 ` [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565 Fabrice Fontaine
@ 2021-10-26 18:36   ` Peter Korsgaard
  2021-10-27 10:04   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2021-10-26 18:36 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fix CVE-2021-3872: vim is vulnerable to Heap-based Buffer Overflow
 > Fix CVE-2021-3875: vim is vulnerable to Heap-based Buffer Overflow

 > https://github.com/vim/vim/compare/v8.2.3432...v8.2.3565

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Buildroot] [PATCH 1/2] package/vim: use LICENSE file
  2021-10-26 16:30 [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Fabrice Fontaine
  2021-10-26 16:30 ` [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565 Fabrice Fontaine
  2021-10-26 18:36 ` [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Peter Korsgaard
@ 2021-10-27 10:04 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2021-10-27 10:04 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Use LICENSE file which is available since version 8.2.0105 and
 > https://github.com/vim/vim/commit/c838626fea42ed5924ee6084d87d1b37b2d7b0ff

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2021.02.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565
  2021-10-26 16:30 ` [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565 Fabrice Fontaine
  2021-10-26 18:36   ` Peter Korsgaard
@ 2021-10-27 10:04   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2021-10-27 10:04 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Fix CVE-2021-3872: vim is vulnerable to Heap-based Buffer Overflow
 > Fix CVE-2021-3875: vim is vulnerable to Heap-based Buffer Overflow

 > https://github.com/vim/vim/compare/v8.2.3432...v8.2.3565

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2021.02.x and 2021.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-27 10:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-26 16:30 [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Fabrice Fontaine
2021-10-26 16:30 ` [Buildroot] [PATCH 2/2] package/vim: security bump to version 8.2.3565 Fabrice Fontaine
2021-10-26 18:36   ` Peter Korsgaard
2021-10-27 10:04   ` Peter Korsgaard
2021-10-26 18:36 ` [Buildroot] [PATCH 1/2] package/vim: use LICENSE file Peter Korsgaard
2021-10-27 10:04 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.