All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency
@ 2021-04-10 12:26 Fabrice Fontaine
  2021-04-10 12:26 ` [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2021-04-10 12:26 UTC (permalink / raw)
  To: buildroot

chardet is a mandatory runtime dependency since version 0.8.2 and
https://github.com/thombashi/mbstrdecoder/commit/e9344a0916f65d143c51e0680c30db4ae7690ccf

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/python-mbstrdecoder/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/python-mbstrdecoder/Config.in b/package/python-mbstrdecoder/Config.in
index 8982814cea..5ba3a19cc4 100644
--- a/package/python-mbstrdecoder/Config.in
+++ b/package/python-mbstrdecoder/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_PYTHON_MBSTRDECODER
 	bool "python-mbstrdecoder"
 	depends on BR2_PACKAGE_PYTHON3
+	select BR2_PACKAGE_PYTHON_CHARDET # runtime
 	help
 	  multi-byte character string decoder.
 
-- 
2.30.2

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

* [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1
  2021-04-10 12:26 [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Fabrice Fontaine
@ 2021-04-10 12:26 ` Fabrice Fontaine
  2021-04-26 14:05   ` Peter Korsgaard
  2021-04-21 20:43 ` [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Thomas Petazzoni
  2021-04-26 14:04 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2021-04-10 12:26 UTC (permalink / raw)
  To: buildroot

https://github.com/thombashi/mbstrdecoder/releases/tag/v1.0.1

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

diff --git a/package/python-mbstrdecoder/python-mbstrdecoder.hash b/package/python-mbstrdecoder/python-mbstrdecoder.hash
index f8103b0add..296930f607 100644
--- a/package/python-mbstrdecoder/python-mbstrdecoder.hash
+++ b/package/python-mbstrdecoder/python-mbstrdecoder.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/mbstrdecoder/json
-md5  3ab822b853bfd2f08e35ba85c1ac2e2e  mbstrdecoder-1.0.0.tar.gz
-sha256  9df7778c0c051c98f6b5a848909202e5cd423c9692665b20d1a9bd0f771b8235  mbstrdecoder-1.0.0.tar.gz
+md5  aa377cfa117318583dffa1fd96123bdf  mbstrdecoder-1.0.1.tar.gz
+sha256  f895e1fb97496855ab5e43de99588787169c01f782c71625142d1a62729e9f9d  mbstrdecoder-1.0.1.tar.gz
 # Locally computed sha256 checksums
 sha256  7588265082eed5e9f4afd5090c57e610b740ec547b16aaaab739ba07c5eefb15  LICENSE
diff --git a/package/python-mbstrdecoder/python-mbstrdecoder.mk b/package/python-mbstrdecoder/python-mbstrdecoder.mk
index 4a768ef695..6474324b78 100644
--- a/package/python-mbstrdecoder/python-mbstrdecoder.mk
+++ b/package/python-mbstrdecoder/python-mbstrdecoder.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_MBSTRDECODER_VERSION = 1.0.0
+PYTHON_MBSTRDECODER_VERSION = 1.0.1
 PYTHON_MBSTRDECODER_SOURCE = mbstrdecoder-$(PYTHON_MBSTRDECODER_VERSION).tar.gz
-PYTHON_MBSTRDECODER_SITE = https://files.pythonhosted.org/packages/5e/05/7dd1704e3e1522757708f59e727b540a6e5032ba6bb20e73851da7111b11
+PYTHON_MBSTRDECODER_SITE = https://files.pythonhosted.org/packages/b7/3b/2524dd4771dfca572269036fb08356715cb78a1c1c2a4dae3a810a86b777
 PYTHON_MBSTRDECODER_SETUP_TYPE = setuptools
 PYTHON_MBSTRDECODER_LICENSE = MIT
 PYTHON_MBSTRDECODER_LICENSE_FILES = LICENSE
-- 
2.30.2

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

* [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency
  2021-04-10 12:26 [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Fabrice Fontaine
  2021-04-10 12:26 ` [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1 Fabrice Fontaine
@ 2021-04-21 20:43 ` Thomas Petazzoni
  2021-04-26 14:04 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2021-04-21 20:43 UTC (permalink / raw)
  To: buildroot

On Sat, 10 Apr 2021 14:26:17 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> chardet is a mandatory runtime dependency since version 0.8.2 and
> https://github.com/thombashi/mbstrdecoder/commit/e9344a0916f65d143c51e0680c30db4ae7690ccf
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/python-mbstrdecoder/Config.in | 1 +
>  1 file changed, 1 insertion(+)

Both applied. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency
  2021-04-10 12:26 [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Fabrice Fontaine
  2021-04-10 12:26 ` [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1 Fabrice Fontaine
  2021-04-21 20:43 ` [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Thomas Petazzoni
@ 2021-04-26 14:04 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-04-26 14:04 UTC (permalink / raw)
  To: buildroot

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

 > chardet is a mandatory runtime dependency since version 0.8.2 and
 > https://github.com/thombashi/mbstrdecoder/commit/e9344a0916f65d143c51e0680c30db4ae7690ccf

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

Committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1
  2021-04-10 12:26 ` [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1 Fabrice Fontaine
@ 2021-04-26 14:05   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2021-04-26 14:05 UTC (permalink / raw)
  To: buildroot

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

 > https://github.com/thombashi/mbstrdecoder/releases/tag/v1.0.1
 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

This seems to only include a bugfix for chardet >= 4 (which is the
version we use), so committed to 2021.02.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2021-04-26 14:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-10 12:26 [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Fabrice Fontaine
2021-04-10 12:26 ` [Buildroot] [PATCH 2/2] package/python-mbstrdecoder: bump to version 1.0.1 Fabrice Fontaine
2021-04-26 14:05   ` Peter Korsgaard
2021-04-21 20:43 ` [Buildroot] [PATCH 1/2] package/python-mbstrdecoder: add python-chardet dependency Thomas Petazzoni
2021-04-26 14: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.