All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0
@ 2023-06-11 23:36 Grzegorz Blach
  2023-06-11 23:36 ` [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40 Grzegorz Blach
                   ` (5 more replies)
  0 siblings, 6 replies; 15+ messages in thread
From: Grzegorz Blach @ 2023-06-11 23:36 UTC (permalink / raw)
  To: buildroot; +Cc: Grzegorz Blach

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 ...1-configure-ac-fix-cross-compilation.patch | 88 -------------------
 ...s-tools-fix-build-error-on-lz4-1-9-4.patch | 34 -------
 package/f2fs-tools/f2fs-tools.hash            |  2 +-
 package/f2fs-tools/f2fs-tools.mk              |  2 +-
 4 files changed, 2 insertions(+), 124 deletions(-)
 delete mode 100644 package/f2fs-tools/0001-configure-ac-fix-cross-compilation.patch
 delete mode 100644 package/f2fs-tools/0002-f2fs-tools-fix-build-error-on-lz4-1-9-4.patch

diff --git a/package/f2fs-tools/0001-configure-ac-fix-cross-compilation.patch b/package/f2fs-tools/0001-configure-ac-fix-cross-compilation.patch
deleted file mode 100644
index 0e3d4da191..0000000000
--- a/package/f2fs-tools/0001-configure-ac-fix-cross-compilation.patch
+++ /dev/null
@@ -1,88 +0,0 @@
-From 32e7d272344024c216f155c3463dd2d548f3fafd Mon Sep 17 00:00:00 2001
-From: Nick Hainke <vincent@systemli.org>
-Date: Mon, 4 Jul 2022 11:29:19 +0200
-Subject: configure.ac: fix cross compilation
-
-AC_CHECK_LIB seems to not work correctly with OpenWrt. Add possibility
-to disable lz4 and lzo2 manually.
-
-Fixes errors in the form of:
-  Package f2fsck is missing dependencies for the following libraries:
-  liblz4.so.1
-  liblzo2.so.2
-
-Signed-off-by: Nick Hainke <vincent@systemli.org>
-Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-[Retrieved from:
-https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/commit/?id=32e7d272344024c216f155c3463dd2d548f3fafd]
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- configure.ac | 44 ++++++++++++++++++++++++++++++++++----------
- 1 file changed, 34 insertions(+), 10 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index ea39461..dbe9ad3 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -50,6 +50,18 @@ AC_ARG_WITH([blkid],
- 	[],
- 	[with_blkid=check])
- 
-+AC_ARG_WITH([lzo2],
-+	[AS_HELP_STRING([--without-lzo2],
-+	  [Ignore presence of liblzo2 and disable lzo2 support])],
-+	[],
-+	[with_lzo2=check])
-+
-+AC_ARG_WITH([lz4],
-+	[AS_HELP_STRING([--without-lz4],
-+	  [Ignore presence of liblz4 and disable lz4 support])],
-+	[],
-+	[with_lz4=check])
-+
- # Checks for programs.
- AC_PROG_CC
- AM_PROG_AR
-@@ -71,17 +83,29 @@ AS_IF([test "x$with_blkid" != xno],
-         fi
- 	], -lblkid)])
- 
--AC_CHECK_LIB([lzo2], [main],
--	[AC_SUBST([liblzo2_LIBS], ["-llzo2"])
--		AC_DEFINE([HAVE_LIBLZO2], [1],
--		[Define if you have liblzo2])
--	], [], [])
-+AS_IF([test "x$with_lzo2" != xno],
-+	[AC_CHECK_LIB([lzo2], [main],
-+		[AC_SUBST([liblzo2_LIBS], ["-llzo2"])
-+			AC_DEFINE([HAVE_LIBLZO2], [1],
-+			[Define if you have liblzo2])
-+		],
-+		[if test "x$with_lzo2" != xcheck; then
-+			AC_MSG_FAILURE(
-+                [--with-lzo2 was given, but test for lzo2 failed])
-+        fi
-+	], -llzo2)])
- 
--AC_CHECK_LIB([lz4], [main],
--	[AC_SUBST([liblz4_LIBS], ["-llz4"])
--		AC_DEFINE([HAVE_LIBLZ4], [1],
--		[Define if you have liblz4])
--	], [], [])
-+AS_IF([test "x$with_lz4" != xno],
-+	[AC_CHECK_LIB([lz4], [main],
-+		[AC_SUBST([liblz4_LIBS], ["-llz4"])
-+			AC_DEFINE([HAVE_LIBLZ4], [1],
-+			[Define if you have liblz4])
-+		],
-+		[if test "x$with_lz4" != xcheck; then
-+			AC_MSG_FAILURE(
-+                [--with-lz4 was given, but test for lz4 failed])
-+        fi
-+	], -llz4)])
- 
- AS_IF([test "x$with_selinux" != xno],
- 	[AC_CHECK_LIB([selinux], [getcon],
--- 
-cgit 
-
diff --git a/package/f2fs-tools/0002-f2fs-tools-fix-build-error-on-lz4-1-9-4.patch b/package/f2fs-tools/0002-f2fs-tools-fix-build-error-on-lz4-1-9-4.patch
deleted file mode 100644
index b43def6bb7..0000000000
--- a/package/f2fs-tools/0002-f2fs-tools-fix-build-error-on-lz4-1-9-4.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 19f77c6f6277a274434d6d8883f50e7955c6a8db Mon Sep 17 00:00:00 2001
-From: Jaegeuk Kim <jaegeuk@kernel.org>
-Date: Mon, 29 Aug 2022 11:03:35 -0700
-Subject: f2fs-tools: fix build error on lz4-1.9.4
-
-LZ4_STREAMSIZE_U64 is undefined in new lz4 lib.
-
-Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-[Retrieved from:
-https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/commit/?id=19f77c6f6277a274434d6d8883f50e7955c6a8db]
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
----
- fsck/compress.c | 5 +----
- 1 file changed, 1 insertion(+), 4 deletions(-)
-
-diff --git a/fsck/compress.c b/fsck/compress.c
-index b413492..b15f0a4 100644
---- a/fsck/compress.c
-+++ b/fsck/compress.c
-@@ -32,10 +32,7 @@
- #ifdef HAVE_LIBLZ4
- #define LZ4_MEMORY_USAGE		14
- #define LZ4_MAX_INPUT_SIZE		0x7E000000 /* 2 113 929 216 bytes */
--#ifndef LZ4_STREAMSIZE
--#define LZ4_STREAMSIZE			(LZ4_STREAMSIZE_U64 * sizeof(long long))
--#endif
--#define LZ4_MEM_COMPRESS		LZ4_STREAMSIZE
-+#define LZ4_MEM_COMPRESS		sizeof(LZ4_stream_t)
- #define LZ4_ACCELERATION_DEFAULT	1
- #define LZ4_WORK_SIZE			ALIGN_UP(LZ4_MEM_COMPRESS, 8)
- #endif
--- 
-cgit 
-
diff --git a/package/f2fs-tools/f2fs-tools.hash b/package/f2fs-tools/f2fs-tools.hash
index 8d5ff31f0d..d1f183afff 100644
--- a/package/f2fs-tools/f2fs-tools.hash
+++ b/package/f2fs-tools/f2fs-tools.hash
@@ -1,3 +1,3 @@
 # Locally computed
-sha256  147d471040b44900283ce2c935f1d35d13d7f40008e7cb8fab2b69f54da01a4f  f2fs-tools-1.15.0.tar.gz
+sha256  208c7a07e95383fbd7b466b5681590789dcb41f41bf197369c41a95383b57c5e  f2fs-tools-1.16.0.tar.gz
 sha256  662abb3a8a80b36ae7036c289dd1e03b361ee5dd2e6fd5211d0d8d029146449f  COPYING
diff --git a/package/f2fs-tools/f2fs-tools.mk b/package/f2fs-tools/f2fs-tools.mk
index f94244f2ad..a92ab4fe3e 100644
--- a/package/f2fs-tools/f2fs-tools.mk
+++ b/package/f2fs-tools/f2fs-tools.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-F2FS_TOOLS_VERSION = 1.15.0
+F2FS_TOOLS_VERSION = 1.16.0
 F2FS_TOOLS_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot
 F2FS_TOOLS_CONF_ENV = ac_cv_file__git=no
 F2FS_TOOLS_DEPENDENCIES = host-pkgconf util-linux
-- 
2.34.1

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

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

* [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40
  2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
@ 2023-06-11 23:36 ` Grzegorz Blach
  2023-06-15  6:46   ` Peter Korsgaard
  2023-06-11 23:36 ` [Buildroot] [PATCH 3/6] package/python-hiredis: bump to version 2.2.3 Grzegorz Blach
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Grzegorz Blach @ 2023-06-11 23:36 UTC (permalink / raw)
  To: buildroot; +Cc: Grzegorz Blach

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 package/graphicsmagick/graphicsmagick.hash | 2 +-
 package/graphicsmagick/graphicsmagick.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/graphicsmagick/graphicsmagick.hash b/package/graphicsmagick/graphicsmagick.hash
index 80130da5d6..a894aedf11 100644
--- a/package/graphicsmagick/graphicsmagick.hash
+++ b/package/graphicsmagick/graphicsmagick.hash
@@ -1,3 +1,3 @@
 # Locally computed:
-sha256  d60cd9db59351d2b9cb19beb443170acaa28f073d13d258f67b3627635e32675  GraphicsMagick-1.3.38.tar.xz
+sha256  97dc1a9d4e89c77b25a3b24505e7ff1653b88f9bfe31f189ce10804b8efa7746  GraphicsMagick-1.3.40.tar.xz
 sha256  0a20e661de942ebe115a354d0ec6d1d42b93856ea765f813f350a5ce5024cdb7  Copyright.txt
diff --git a/package/graphicsmagick/graphicsmagick.mk b/package/graphicsmagick/graphicsmagick.mk
index dbaa8ddf70..76b826ceef 100644
--- a/package/graphicsmagick/graphicsmagick.mk
+++ b/package/graphicsmagick/graphicsmagick.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-GRAPHICSMAGICK_VERSION = 1.3.38
+GRAPHICSMAGICK_VERSION = 1.3.40
 GRAPHICSMAGICK_SOURCE = GraphicsMagick-$(GRAPHICSMAGICK_VERSION).tar.xz
 GRAPHICSMAGICK_SITE = https://downloads.sourceforge.net/project/graphicsmagick/graphicsmagick/$(GRAPHICSMAGICK_VERSION)
 GRAPHICSMAGICK_LICENSE = MIT
-- 
2.34.1

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

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

* [Buildroot] [PATCH 3/6] package/python-hiredis: bump to version 2.2.3
  2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
  2023-06-11 23:36 ` [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40 Grzegorz Blach
@ 2023-06-11 23:36 ` Grzegorz Blach
  2023-07-12 20:57   ` Thomas Petazzoni via buildroot
  2023-06-11 23:36 ` [Buildroot] [PATCH 4/6] package/python-pyjwt: bump to version 2.7.0 Grzegorz Blach
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Grzegorz Blach @ 2023-06-11 23:36 UTC (permalink / raw)
  To: buildroot; +Cc: Grzegorz Blach, Asaf Kahlon

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 ...0001-setup.py-fix-build-with-gcc-4.8.patch | 43 -------------------
 package/python-hiredis/python-hiredis.hash    |  4 +-
 package/python-hiredis/python-hiredis.mk      |  4 +-
 3 files changed, 4 insertions(+), 47 deletions(-)
 delete mode 100644 package/python-hiredis/0001-setup.py-fix-build-with-gcc-4.8.patch

diff --git a/package/python-hiredis/0001-setup.py-fix-build-with-gcc-4.8.patch b/package/python-hiredis/0001-setup.py-fix-build-with-gcc-4.8.patch
deleted file mode 100644
index 93f9440a74..0000000000
--- a/package/python-hiredis/0001-setup.py-fix-build-with-gcc-4.8.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 204898e28c7650089bf664eea8adfc16a22ba4f4 Mon Sep 17 00:00:00 2001
-From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-Date: Tue, 6 Apr 2021 10:37:49 +0200
-Subject: [PATCH] setup.py: fix build with gcc 4.8
-
-Fix the following build failure on gcc 4.8 which is raised since version
-2.0.0 and
-https://github.com/redis/hiredis-py/commit/9084152f624e8e593b4e86ddf8bd13329fdfc043:
-
-vendor/hiredis/read.c: In function 'redisReaderFree':
-vendor/hiredis/read.c:646:9: error: 'for' loop initial declarations are only allowed in C99 mode
-         for (int i = 0; i < r->tasks; i++) {
-         ^
-vendor/hiredis/read.c:646:9: note: use option -std=c99 or -std=gnu99 to compile your code
-
-This build failure is raised because hiredis source code is built
-without C99:
-https://github.com/redis/hiredis/commit/13a35bdb64615e381c5e1151cdd4e78bba71a6db
-
-Fixes:
- - http://autobuild.buildroot.org/results/04cbcddf6d83ebad8c98400754f9445375e9e489
-
-Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
-[Upstream status: https://github.com/redis/hiredis-py/pull/110]
----
- setup.py | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/setup.py b/setup.py
-index d83153b..1f623c9 100755
---- a/setup.py
-+++ b/setup.py
-@@ -13,6 +13,7 @@ def version():
- ext = Extension("hiredis.hiredis",
-   sources=sorted(glob.glob("src/*.c") +
-                  ["vendor/hiredis/%s.c" % src for src in ("alloc", "read", "sds")]),
-+  extra_compile_args=["-std=c99"],
-   include_dirs=["vendor"])
- 
- setup(
--- 
-2.30.2
-
diff --git a/package/python-hiredis/python-hiredis.hash b/package/python-hiredis/python-hiredis.hash
index 2e73d2f37b..5eaeab6d2a 100644
--- a/package/python-hiredis/python-hiredis.hash
+++ b/package/python-hiredis/python-hiredis.hash
@@ -1,6 +1,6 @@
 # md5, sha256 from https://pypi.org/pypi/hiredis/json
-md5  0ab76a8b29deb737c9bfc7f631969e38  hiredis-2.0.0.tar.gz
-sha256  81d6d8e39695f2c37954d1011c0480ef7cf444d4e3ae24bc5e89ee5de360139a  hiredis-2.0.0.tar.gz
+md5  670a932c2972cbd88f910c2b29f85c3c  hiredis-2.2.3.tar.gz
+sha256  e75163773a309e56a9b58165cf5a50e0f84b755f6ff863b2c01a38918fe92daa  hiredis-2.2.3.tar.gz
 # Locally computed sha256 checksums
 sha256  70edfa6d3e11f9d7497c2c2f298d06f33b11d10f37f76605102c5ab3b1f28262  COPYING
 sha256  dca05ce8fc87a8261783b4aed0deef8becc9350b6aa770bc714d0c1833b896eb  vendor/hiredis/COPYING
diff --git a/package/python-hiredis/python-hiredis.mk b/package/python-hiredis/python-hiredis.mk
index 55f9a09f55..f99a2f7c65 100644
--- a/package/python-hiredis/python-hiredis.mk
+++ b/package/python-hiredis/python-hiredis.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_HIREDIS_VERSION = 2.0.0
+PYTHON_HIREDIS_VERSION = 2.2.3
 PYTHON_HIREDIS_SOURCE = hiredis-$(PYTHON_HIREDIS_VERSION).tar.gz
-PYTHON_HIREDIS_SITE = https://files.pythonhosted.org/packages/0c/39/eae11344d69ba435ec13d6bcc1a9eea3d2278324506fcd0e52d1ed8958c8
+PYTHON_HIREDIS_SITE = https://files.pythonhosted.org/packages/b0/04/dab6792584fc548803ffa50b5bb2b99f01d3ab04d7c7f64e85f1a22fb847
 PYTHON_HIREDIS_SETUP_TYPE = setuptools
 PYTHON_HIREDIS_LICENSE = BSD-3-Clause
 PYTHON_HIREDIS_LICENSE_FILES = COPYING vendor/hiredis/COPYING
-- 
2.34.1

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

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

* [Buildroot] [PATCH 4/6] package/python-pyjwt: bump to version 2.7.0
  2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
  2023-06-11 23:36 ` [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40 Grzegorz Blach
  2023-06-11 23:36 ` [Buildroot] [PATCH 3/6] package/python-hiredis: bump to version 2.2.3 Grzegorz Blach
@ 2023-06-11 23:36 ` Grzegorz Blach
  2023-07-12 21:00   ` Thomas Petazzoni via buildroot
  2023-06-11 23:36 ` [Buildroot] [PATCH 5/6] package/python-redis: bump to version 4.5.5 Grzegorz Blach
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 15+ messages in thread
From: Grzegorz Blach @ 2023-06-11 23:36 UTC (permalink / raw)
  To: buildroot; +Cc: Grzegorz Blach, Asaf Kahlon

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 package/python-pyjwt/python-pyjwt.hash | 4 ++--
 package/python-pyjwt/python-pyjwt.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/python-pyjwt/python-pyjwt.hash b/package/python-pyjwt/python-pyjwt.hash
index cc64be6cca..249f0e478e 100644
--- a/package/python-pyjwt/python-pyjwt.hash
+++ b/package/python-pyjwt/python-pyjwt.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/PyJWT/json
-md5  aeed6d3a581ae383b2288a2079fa562d  PyJWT-2.6.0.tar.gz
-sha256  69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd  PyJWT-2.6.0.tar.gz
+md5  228adbf1f9d2bcd42bbfb6d3b43dc48a  PyJWT-2.7.0.tar.gz
+sha256  bd6ca4a3c4285c1a2d4349e5a035fdf8fb94e04ccd0fcbe6ba289dae9cc3e074  PyJWT-2.7.0.tar.gz
 # Locally computed sha256 checksums
 sha256  797a7a20231d4c433e9f1911db1731d06b5828b98f499819a034f7c0f56f5ce5  LICENSE
diff --git a/package/python-pyjwt/python-pyjwt.mk b/package/python-pyjwt/python-pyjwt.mk
index fe4eeff38a..982bc758df 100644
--- a/package/python-pyjwt/python-pyjwt.mk
+++ b/package/python-pyjwt/python-pyjwt.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_PYJWT_VERSION = 2.6.0
+PYTHON_PYJWT_VERSION = 2.7.0
 PYTHON_PYJWT_SOURCE = PyJWT-$(PYTHON_PYJWT_VERSION).tar.gz
-PYTHON_PYJWT_SITE = https://files.pythonhosted.org/packages/75/65/db64904a7f23e12dbf0565b53de01db04d848a497c6c9b87e102f74c9304
+PYTHON_PYJWT_SITE = https://files.pythonhosted.org/packages/e0/f0/9804c72e9a314360c135f42c434eb42eaabb5e7ebad760cbd8fc7023be38
 PYTHON_PYJWT_SETUP_TYPE = setuptools
 PYTHON_PYJWT_LICENSE = MIT
 PYTHON_PYJWT_LICENSE_FILES = LICENSE
-- 
2.34.1

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

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

* [Buildroot] [PATCH 5/6] package/python-redis: bump to version 4.5.5
  2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
                   ` (2 preceding siblings ...)
  2023-06-11 23:36 ` [Buildroot] [PATCH 4/6] package/python-pyjwt: bump to version 2.7.0 Grzegorz Blach
@ 2023-06-11 23:36 ` Grzegorz Blach
  2023-07-12 21:01   ` Thomas Petazzoni via buildroot
  2023-06-11 23:36 ` [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0 Grzegorz Blach
  2023-06-15  6:44 ` [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Peter Korsgaard
  5 siblings, 1 reply; 15+ messages in thread
From: Grzegorz Blach @ 2023-06-11 23:36 UTC (permalink / raw)
  To: buildroot; +Cc: Grzegorz Blach, Asaf Kahlon

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 package/python-redis/python-redis.hash | 4 ++--
 package/python-redis/python-redis.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/python-redis/python-redis.hash b/package/python-redis/python-redis.hash
index 209ff35b78..e27f87bd50 100644
--- a/package/python-redis/python-redis.hash
+++ b/package/python-redis/python-redis.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/redis/json
-md5  4ab691af57ac346c2e630ce2787a424f  redis-4.4.0.tar.gz
-sha256  7b8c87d19c45d3f1271b124858d2a5c13160c4e74d4835e28273400fa34d5228  redis-4.4.0.tar.gz
+md5  ad365234df634680d15294ddc87c42de  redis-4.5.5.tar.gz
+sha256  dc87a0bdef6c8bfe1ef1e1c40be7034390c2ae02d92dcd0c7ca1729443899880  redis-4.5.5.tar.gz
 # Locally computed sha256 checksums
 sha256  7801a39e3a1aec58a7ea7c9f4dc1238cf0922c36a1fc8eff0bb7d684ff6dd354  LICENSE
diff --git a/package/python-redis/python-redis.mk b/package/python-redis/python-redis.mk
index bbbd6f1df2..186702dc83 100644
--- a/package/python-redis/python-redis.mk
+++ b/package/python-redis/python-redis.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_REDIS_VERSION = 4.4.0
+PYTHON_REDIS_VERSION = 4.5.5
 PYTHON_REDIS_SOURCE = redis-$(PYTHON_REDIS_VERSION).tar.gz
-PYTHON_REDIS_SITE = https://files.pythonhosted.org/packages/7a/05/671367bb466b3301bc4543fdad6ac107214ca327c8d97165b30246d87e88
+PYTHON_REDIS_SITE = https://files.pythonhosted.org/packages/53/30/128c5599bc3fa61488866be0228326b3e486be34480126f70e572043adf8
 PYTHON_REDIS_SETUP_TYPE = setuptools
 PYTHON_REDIS_LICENSE = MIT
 PYTHON_REDIS_LICENSE_FILES = LICENSE
-- 
2.34.1

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

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

* [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0
  2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
                   ` (3 preceding siblings ...)
  2023-06-11 23:36 ` [Buildroot] [PATCH 5/6] package/python-redis: bump to version 4.5.5 Grzegorz Blach
@ 2023-06-11 23:36 ` Grzegorz Blach
  2023-07-12 21:02   ` Thomas Petazzoni via buildroot
  2023-06-15  6:44 ` [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Peter Korsgaard
  5 siblings, 1 reply; 15+ messages in thread
From: Grzegorz Blach @ 2023-06-11 23:36 UTC (permalink / raw)
  To: buildroot; +Cc: Grzegorz Blach, Asaf Kahlon

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
---
 package/python-rpi-ws281x/python-rpi-ws281x.hash | 4 ++--
 package/python-rpi-ws281x/python-rpi-ws281x.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/python-rpi-ws281x/python-rpi-ws281x.hash b/package/python-rpi-ws281x/python-rpi-ws281x.hash
index ffdd826b6f..42bc205523 100644
--- a/package/python-rpi-ws281x/python-rpi-ws281x.hash
+++ b/package/python-rpi-ws281x/python-rpi-ws281x.hash
@@ -1,6 +1,6 @@
 # md5, sha256 from https://pypi.org/pypi/rpi-ws281x/json
-md5  016e1f03f9168ef03d4baf074aa60f03  rpi_ws281x-4.3.4.tar.gz
-sha256  072eff1787e579d1710381b27c467709e3aab28ac579c7a47d7cc87398496f28  rpi_ws281x-4.3.4.tar.gz
+md5  9c87b5bedba0a48bb97e9953378dfb78  rpi_ws281x-5.0.0.tar.gz
+sha256  00ce6db771436b778d0930245cf8ea2aae11008cc5fd67d57789c5422af3ee55  rpi_ws281x-5.0.0.tar.gz
 # Locally computed sha256 checksums
 sha256  7bbf6337c1eee7169579e6acd398f31ea274dfa3a1689ab7e654ca3585d5a8a9  LICENSE
 sha256  7bbf6337c1eee7169579e6acd398f31ea274dfa3a1689ab7e654ca3585d5a8a9  lib/LICENSE
diff --git a/package/python-rpi-ws281x/python-rpi-ws281x.mk b/package/python-rpi-ws281x/python-rpi-ws281x.mk
index 73befeb56e..610467b160 100644
--- a/package/python-rpi-ws281x/python-rpi-ws281x.mk
+++ b/package/python-rpi-ws281x/python-rpi-ws281x.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_RPI_WS281X_VERSION = 4.3.4
+PYTHON_RPI_WS281X_VERSION = 5.0.0
 PYTHON_RPI_WS281X_SOURCE = rpi_ws281x-$(PYTHON_RPI_WS281X_VERSION).tar.gz
-PYTHON_RPI_WS281X_SITE = https://files.pythonhosted.org/packages/e2/d4/75fcc4f3412b9b16e39e6cd6156f2e171fe7b2e79057be17d1acf38fded4
+PYTHON_RPI_WS281X_SITE = https://files.pythonhosted.org/packages/c0/1e/642208a685c5e96d38323f42c75d9b24f95e2d1b8390dd104e04a712f29e
 PYTHON_RPI_WS281X_SETUP_TYPE = setuptools
 PYTHON_RPI_WS281X_LICENSE = BSD-2-Clause
 PYTHON_RPI_WS281X_LICENSE_FILES = LICENSE lib/LICENSE
-- 
2.34.1

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

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

* Re: [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0
  2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
                   ` (4 preceding siblings ...)
  2023-06-11 23:36 ` [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0 Grzegorz Blach
@ 2023-06-15  6:44 ` Peter Korsgaard
  5 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2023-06-15  6:44 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: buildroot

>>>>> "Grzegorz" == Grzegorz Blach <grzegorz@blach.pl> writes:

 > Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>

Committed after extending the commit message with a note about the 2
patches now being upstream and removed those two patches from
.checkpackageignore - Thanks.

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

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

* Re: [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40
  2023-06-11 23:36 ` [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40 Grzegorz Blach
@ 2023-06-15  6:46   ` Peter Korsgaard
  2023-06-16  8:36     ` Peter Korsgaard
  0 siblings, 1 reply; 15+ messages in thread
From: Peter Korsgaard @ 2023-06-15  6:46 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: buildroot

>>>>> "Grzegorz" == Grzegorz Blach <grzegorz@blach.pl> writes:

 > Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>

The changelog mentions security fixes in 1.3.39 and 1.3.40, so I've
adjusted the commit message to mention that this is a security bump
extended with the details from the changelog and committed, thanks.

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

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

* Re: [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40
  2023-06-15  6:46   ` Peter Korsgaard
@ 2023-06-16  8:36     ` Peter Korsgaard
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Korsgaard @ 2023-06-16  8:36 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: buildroot

>>>>> "Peter" == Peter Korsgaard <peter@korsgaard.com> writes:

>>>>> "Grzegorz" == Grzegorz Blach <grzegorz@blach.pl> writes:
 >> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>

 > The changelog mentions security fixes in 1.3.39 and 1.3.40, so I've
 > adjusted the commit message to mention that this is a security bump
 > extended with the details from the changelog and committed, thanks.

Committed to 2023.02.x and 2023.05.x, thanks.

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

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

* Re: [Buildroot] [PATCH 3/6] package/python-hiredis: bump to version 2.2.3
  2023-06-11 23:36 ` [Buildroot] [PATCH 3/6] package/python-hiredis: bump to version 2.2.3 Grzegorz Blach
@ 2023-07-12 20:57   ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-12 20:57 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: Asaf Kahlon, buildroot

On Mon, 12 Jun 2023 01:36:16 +0200
Grzegorz Blach <grzegorz@blach.pl> wrote:

> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
> ---
>  ...0001-setup.py-fix-build-with-gcc-4.8.patch | 43 -------------------
>  package/python-hiredis/python-hiredis.hash    |  4 +-
>  package/python-hiredis/python-hiredis.mk      |  4 +-
>  3 files changed, 4 insertions(+), 47 deletions(-)
>  delete mode 100644 package/python-hiredis/0001-setup.py-fix-build-with-gcc-4.8.patch

I applied this patch, but there were several issues with it:

(1) It was breaking "make legal-info". Indeed the COPYRIGHT file has
    been removed, and replaced by a LICENSE file, with different
    contents. This required changing the .mk file and .hash file

(2) The commit log was not mentioning was the patch was removed

(3) The .checkpackageignore file was not updated to account for the
    removal of the patch.

I've addressed all 3 issues, and applied!

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 4/6] package/python-pyjwt: bump to version 2.7.0
  2023-06-11 23:36 ` [Buildroot] [PATCH 4/6] package/python-pyjwt: bump to version 2.7.0 Grzegorz Blach
@ 2023-07-12 21:00   ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-12 21:00 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: Asaf Kahlon, buildroot

On Mon, 12 Jun 2023 01:36:17 +0200
Grzegorz Blach <grzegorz@blach.pl> wrote:

> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
> ---
>  package/python-pyjwt/python-pyjwt.hash | 4 ++--
>  package/python-pyjwt/python-pyjwt.mk   | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 5/6] package/python-redis: bump to version 4.5.5
  2023-06-11 23:36 ` [Buildroot] [PATCH 5/6] package/python-redis: bump to version 4.5.5 Grzegorz Blach
@ 2023-07-12 21:01   ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-12 21:01 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: Asaf Kahlon, buildroot

On Mon, 12 Jun 2023 01:36:18 +0200
Grzegorz Blach <grzegorz@blach.pl> wrote:

> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
> ---
>  package/python-redis/python-redis.hash | 4 ++--
>  package/python-redis/python-redis.mk   | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0
  2023-06-11 23:36 ` [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0 Grzegorz Blach
@ 2023-07-12 21:02   ` Thomas Petazzoni via buildroot
  2023-07-13  3:24     ` Baruch Siach via buildroot
  0 siblings, 1 reply; 15+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-12 21:02 UTC (permalink / raw)
  To: Grzegorz Blach; +Cc: Asaf Kahlon, buildroot

On Mon, 12 Jun 2023 01:36:19 +0200
Grzegorz Blach <grzegorz@blach.pl> wrote:

> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
> ---
>  package/python-rpi-ws281x/python-rpi-ws281x.hash | 4 ++--
>  package/python-rpi-ws281x/python-rpi-ws281x.mk   | 4 ++--
>  2 files changed, 4 insertions(+), 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0
  2023-07-12 21:02   ` Thomas Petazzoni via buildroot
@ 2023-07-13  3:24     ` Baruch Siach via buildroot
  2023-07-16 21:38       ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 15+ messages in thread
From: Baruch Siach via buildroot @ 2023-07-13  3:24 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: Grzegorz Blach, Asaf Kahlon, buildroot

Hi Thomas,

On Wed, Jul 12 2023, Thomas Petazzoni via buildroot wrote:
> On Mon, 12 Jun 2023 01:36:19 +0200
> Grzegorz Blach <grzegorz@blach.pl> wrote:
>
>> Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
>> ---
>>  package/python-rpi-ws281x/python-rpi-ws281x.hash | 4 ++--
>>  package/python-rpi-ws281x/python-rpi-ws281x.mk   | 4 ++--
>>  2 files changed, 4 insertions(+), 4 deletions(-)
>
> Applied to master, thanks.

Not in current master as of commit 587d392df7d1
("support/testing/tests/package/test_shadow: fix flake8 warning").

baruch

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0
  2023-07-13  3:24     ` Baruch Siach via buildroot
@ 2023-07-16 21:38       ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 15+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-16 21:38 UTC (permalink / raw)
  To: Baruch Siach; +Cc: Grzegorz Blach, Asaf Kahlon, buildroot

On Thu, 13 Jul 2023 06:24:08 +0300
Baruch Siach <baruch@tkos.co.il> wrote:

> Not in current master as of commit 587d392df7d1
> ("support/testing/tests/package/test_shadow: fix flake8 warning").

Indeed! Thanks a lot for spotting this mistake, I've now pushed the
commit.

Best regards,

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-07-16 21:38 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-11 23:36 [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 Grzegorz Blach
2023-06-11 23:36 ` [Buildroot] [PATCH 2/6] package/graphicsmagick: bump to version 1.3.40 Grzegorz Blach
2023-06-15  6:46   ` Peter Korsgaard
2023-06-16  8:36     ` Peter Korsgaard
2023-06-11 23:36 ` [Buildroot] [PATCH 3/6] package/python-hiredis: bump to version 2.2.3 Grzegorz Blach
2023-07-12 20:57   ` Thomas Petazzoni via buildroot
2023-06-11 23:36 ` [Buildroot] [PATCH 4/6] package/python-pyjwt: bump to version 2.7.0 Grzegorz Blach
2023-07-12 21:00   ` Thomas Petazzoni via buildroot
2023-06-11 23:36 ` [Buildroot] [PATCH 5/6] package/python-redis: bump to version 4.5.5 Grzegorz Blach
2023-07-12 21:01   ` Thomas Petazzoni via buildroot
2023-06-11 23:36 ` [Buildroot] [PATCH 6/6] package/python-rpi-ws281x: bump to version 5.0.0 Grzegorz Blach
2023-07-12 21:02   ` Thomas Petazzoni via buildroot
2023-07-13  3:24     ` Baruch Siach via buildroot
2023-07-16 21:38       ` Thomas Petazzoni via buildroot
2023-06-15  6:44 ` [Buildroot] [PATCH 1/6] package/f2fs-tools: bump to version 1.16.0 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.