All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency
@ 2021-04-25  9:29 Fabrice Fontaine
  2021-04-25  9:29 ` [Buildroot] [PATCH 2/2] package/python-dataproperty: bump to version 0.50.1 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2021-04-25  9:29 UTC (permalink / raw)
  To: buildroot

python-six is not a dependency since drop of python 2 in version 0.47.0:
https://github.com/thombashi/DataProperty/commit/d3fdde41af0151e2f04a3a79bea1fb33a28a98f7

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

diff --git a/package/python-dataproperty/Config.in b/package/python-dataproperty/Config.in
index 2c5da40ff2..3de9cc685e 100644
--- a/package/python-dataproperty/Config.in
+++ b/package/python-dataproperty/Config.in
@@ -1,8 +1,7 @@
 config BR2_PACKAGE_PYTHON_DATAPROPERTY
 	bool "python-dataproperty"
-	depends on BR2_PACKAGE_PYTHON3 # python-mbstrdecoder
+	depends on BR2_PACKAGE_PYTHON3
 	select BR2_PACKAGE_PYTHON_MBSTRDECODER # runtime
-	select BR2_PACKAGE_PYTHON_SIX # runtime
 	select BR2_PACKAGE_PYTHON_TYPEPY # runtime
 	help
 	  Python library for extract property from data.
-- 
2.30.2

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

* [Buildroot] [PATCH 2/2] package/python-dataproperty: bump to version 0.50.1
  2021-04-25  9:29 [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Fabrice Fontaine
@ 2021-04-25  9:29 ` Fabrice Fontaine
  2021-06-14 20:30 ` [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Arnout Vandecappelle
  2021-06-21 19:46 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2021-04-25  9:29 UTC (permalink / raw)
  To: buildroot

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

diff --git a/package/python-dataproperty/python-dataproperty.hash b/package/python-dataproperty/python-dataproperty.hash
index bd23c461b1..4ea9ddddbc 100644
--- a/package/python-dataproperty/python-dataproperty.hash
+++ b/package/python-dataproperty/python-dataproperty.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/dataproperty/json
-md5  14a3e13d611d063df43304c3adeb6d12  DataProperty-0.48.1.tar.gz
-sha256  96bd47c14b4aaba4780d77fa4d2c876cf35eb6848ab1df1a6338447b6c2c10e4  DataProperty-0.48.1.tar.gz
+md5  edd3352ecd0ec124e8227a5c4db61b98  DataProperty-0.50.1.tar.gz
+sha256  cad9080e5d1bac85a3bd33a016743537370d524ae683b012345ed9b5b7715f6b  DataProperty-0.50.1.tar.gz
 # Locally computed sha256 checksums
 sha256  a93d75bcb0774e2990106380cadad6dcb2de193c55d435ffc56ba345a08b1dc2  LICENSE
diff --git a/package/python-dataproperty/python-dataproperty.mk b/package/python-dataproperty/python-dataproperty.mk
index 33e07bc676..b89ff83f1c 100644
--- a/package/python-dataproperty/python-dataproperty.mk
+++ b/package/python-dataproperty/python-dataproperty.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_DATAPROPERTY_VERSION = 0.48.1
+PYTHON_DATAPROPERTY_VERSION = 0.50.1
 PYTHON_DATAPROPERTY_SOURCE = DataProperty-$(PYTHON_DATAPROPERTY_VERSION).tar.gz
-PYTHON_DATAPROPERTY_SITE = https://files.pythonhosted.org/packages/2e/b5/d644919656adf4e7ae94b5479a3fec7497060c89292c335b27e59d66706f
+PYTHON_DATAPROPERTY_SITE = https://files.pythonhosted.org/packages/8f/8c/e9f2a862ff561ef32d64cc45d296e7c25479941c90d81a238a3233019a05
 PYTHON_DATAPROPERTY_SETUP_TYPE = setuptools
 PYTHON_DATAPROPERTY_LICENSE = MIT
 PYTHON_DATAPROPERTY_LICENSE_FILES = LICENSE
-- 
2.30.2

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

* [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency
  2021-04-25  9:29 [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Fabrice Fontaine
  2021-04-25  9:29 ` [Buildroot] [PATCH 2/2] package/python-dataproperty: bump to version 0.50.1 Fabrice Fontaine
@ 2021-06-14 20:30 ` Arnout Vandecappelle
  2021-06-21 19:46 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2021-06-14 20:30 UTC (permalink / raw)
  To: buildroot



On 25/04/2021 11:29, Fabrice Fontaine wrote:
> python-six is not a dependency since drop of python 2 in version 0.47.0:
> https://github.com/thombashi/DataProperty/commit/d3fdde41af0151e2f04a3a79bea1fb33a28a98f7
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

 Both applied ot master, thanks.

 Regards,
 Arnout

> ---
>  package/python-dataproperty/Config.in | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/package/python-dataproperty/Config.in b/package/python-dataproperty/Config.in
> index 2c5da40ff2..3de9cc685e 100644
> --- a/package/python-dataproperty/Config.in
> +++ b/package/python-dataproperty/Config.in
> @@ -1,8 +1,7 @@
>  config BR2_PACKAGE_PYTHON_DATAPROPERTY
>  	bool "python-dataproperty"
> -	depends on BR2_PACKAGE_PYTHON3 # python-mbstrdecoder
> +	depends on BR2_PACKAGE_PYTHON3
>  	select BR2_PACKAGE_PYTHON_MBSTRDECODER # runtime
> -	select BR2_PACKAGE_PYTHON_SIX # runtime
>  	select BR2_PACKAGE_PYTHON_TYPEPY # runtime
>  	help
>  	  Python library for extract property from data.
> 

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

* [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency
  2021-04-25  9:29 [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Fabrice Fontaine
  2021-04-25  9:29 ` [Buildroot] [PATCH 2/2] package/python-dataproperty: bump to version 0.50.1 Fabrice Fontaine
  2021-06-14 20:30 ` [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Arnout Vandecappelle
@ 2021-06-21 19:46 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2021-06-21 19:46 UTC (permalink / raw)
  To: buildroot

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

 > python-six is not a dependency since drop of python 2 in version 0.47.0:
 > https://github.com/thombashi/DataProperty/commit/d3fdde41af0151e2f04a3a79bea1fb33a28a98f7

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

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

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2021-06-21 19:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-25  9:29 [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Fabrice Fontaine
2021-04-25  9:29 ` [Buildroot] [PATCH 2/2] package/python-dataproperty: bump to version 0.50.1 Fabrice Fontaine
2021-06-14 20:30 ` [Buildroot] [PATCH 1/2] package/python-dataproperty: drop python-six dependency Arnout Vandecappelle
2021-06-21 19:46 ` 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.