Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge
@ 2019-10-11  8:35 Asaf Kahlon
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2 Asaf Kahlon
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Asaf Kahlon @ 2019-10-11  8:35 UTC (permalink / raw)
  To: buildroot

Backport of functools.lru_cache from Python 3.3.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/Config.in                                 |  1 +
 .../Config.in                                     |  7 +++++++
 .../python-backports-functools-lru-cache.hash     |  5 +++++
 .../python-backports-functools-lru-cache.mk       | 15 +++++++++++++++
 4 files changed, 28 insertions(+)
 create mode 100644 package/python-backports-functools-lru-cache/Config.in
 create mode 100644 package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.hash
 create mode 100644 package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.mk

diff --git a/package/Config.in b/package/Config.in
index c3faa20d88..77c231d4c0 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -840,6 +840,7 @@ menu "External python modules"
 	source "package/python-babel/Config.in"
 	source "package/python-backcall/Config.in"
 	source "package/python-backports-abc/Config.in"
+	source "package/python-backports-functools-lru-cache/Config.in"
 	source "package/python-backports-shutil-get-terminal-size/Config.in"
 	source "package/python-backports-ssl-match-hostname/Config.in"
 	source "package/python-bcrypt/Config.in"
diff --git a/package/python-backports-functools-lru-cache/Config.in b/package/python-backports-functools-lru-cache/Config.in
new file mode 100644
index 0000000000..a5b7771e4d
--- /dev/null
+++ b/package/python-backports-functools-lru-cache/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE
+	bool "python-backports-functools-lru-cache"
+	depends on BR2_PACKAGE_PYTHON
+	help
+	  Backport of functools.lru_cache from Python 3.3
+
+	  https://github.com/jaraco/backports.functools_lru_cache
diff --git a/package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.hash b/package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.hash
new file mode 100644
index 0000000000..3db4aec1fb
--- /dev/null
+++ b/package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.hash
@@ -0,0 +1,5 @@
+# md5, sha256 from https://pypi.org/pypi/backports.functools_lru_cache/json
+md5	20f53f54cd3f04b3346ce75a54959754  backports.functools_lru_cache-1.5.tar.gz
+sha256	9d98697f088eb1b0fa451391f91afb5e3ebde16bbdb272819fd091151fda4f1a  backports.functools_lru_cache-1.5.tar.gz
+# Localy computed sha256 checksumms
+sha256	a55e2ffe9b44998e621d51d8c094bed09acc4b5236ee73d7df395a33ba3c18fd  LICENSE
diff --git a/package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.mk b/package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.mk
new file mode 100644
index 0000000000..334d6d8c49
--- /dev/null
+++ b/package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# python-backports-functools-lru-cache
+#
+################################################################################
+
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_VERSION = 1.5
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_SOURCE = backports.functools_lru_cache-$(PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_VERSION).tar.gz
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_SITE = https://files.pythonhosted.org/packages/57/d4/156eb5fbb08d2e85ab0a632e2bebdad355798dece07d4752f66a8d02d1ea
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_SETUP_TYPE = setuptools
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_DEPENDENCIES = host-python-setuptools-scm
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_LICENSE = MIT
+PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE_LICENSE_FILES = LICENSE
+
+$(eval $(python-package))
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2
  2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
@ 2019-10-11  8:35 ` Asaf Kahlon
  2019-10-12 14:17   ` Thomas Petazzoni
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-h2: bump to version 3.1.1 Asaf Kahlon
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 11+ messages in thread
From: Asaf Kahlon @ 2019-10-11  8:35 UTC (permalink / raw)
  To: buildroot

Also add hash for license file.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-cssutils/python-cssutils.hash | 8 +++++---
 package/python-cssutils/python-cssutils.mk   | 4 ++--
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/package/python-cssutils/python-cssutils.hash b/package/python-cssutils/python-cssutils.hash
index 7b188bcd43..393daffb8b 100644
--- a/package/python-cssutils/python-cssutils.hash
+++ b/package/python-cssutils/python-cssutils.hash
@@ -1,3 +1,5 @@
-# md5 from https://pypi.python.org/pypi/cssutils/json, sha256 locally computed
-md5	7fcdf2c3e9f053136af1990146eb361d  cssutils-1.0.1.tar.gz
-sha256	d8a18b2848ea1011750231f1dd64fe9053dbec1be0b37563c582561e7a529063  cssutils-1.0.1.tar.gz
+# md5, sha256 from https://pypi.org/pypi/cssutils/json
+md5	dc66d96c2d78f1687f59ac412fe9d318  cssutils-1.0.2.tar.gz
+sha256	a2fcf06467553038e98fea9cfe36af2bf14063eb147a70958cfcaa8f5786acaf  cssutils-1.0.2.tar.gz
+# Locally computed sha256 checksums
+sha256	03c570a068086ee577dcd795519ea93462b2ed2fcb6dcc4dfce56a71a2fd6e5a  COPYING.LESSER
diff --git a/package/python-cssutils/python-cssutils.mk b/package/python-cssutils/python-cssutils.mk
index 3aa96f47d0..513c3a87de 100644
--- a/package/python-cssutils/python-cssutils.mk
+++ b/package/python-cssutils/python-cssutils.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_CSSUTILS_VERSION = 1.0.1
+PYTHON_CSSUTILS_VERSION = 1.0.2
 PYTHON_CSSUTILS_SOURCE = cssutils-$(PYTHON_CSSUTILS_VERSION).tar.gz
-PYTHON_CSSUTILS_SITE = https://pypi.python.org/packages/22/de/6b03e0088baf0299ab7d2e95a9e26c2092e9cb3855876b958b6a62175ca2
+PYTHON_CSSUTILS_SITE = https://files.pythonhosted.org/packages/5c/0b/c5f29d29c037e97043770b5e7c740b6252993e4b57f029b3cd03c78ddfec
 PYTHON_CSSUTILS_LICENSE = LGPL-3.0+
 PYTHON_CSSUTILS_LICENSE_FILES = COPYING.LESSER
 PYTHON_CSSUTILS_SETUP_TYPE = setuptools
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-h2: bump to version 3.1.1
  2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2 Asaf Kahlon
@ 2019-10-11  8:35 ` Asaf Kahlon
  2019-10-12 14:17   ` Thomas Petazzoni
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-subprocess32: bump to version 3.5.4 Asaf Kahlon
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 11+ messages in thread
From: Asaf Kahlon @ 2019-10-11  8:35 UTC (permalink / raw)
  To: buildroot

Also add hash for license file.

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-h2/python-h2.hash | 8 +++++---
 package/python-h2/python-h2.mk   | 4 ++--
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/package/python-h2/python-h2.hash b/package/python-h2/python-h2.hash
index e34f7beb90..1d5df8878d 100644
--- a/package/python-h2/python-h2.hash
+++ b/package/python-h2/python-h2.hash
@@ -1,3 +1,5 @@
-# md5 from https://pypi.python.org/pypi/h2/json, sha256 locally computed
-md5	586686662928c2851eb0f1fe99bf279d  h2-3.0.1.tar.gz
-sha256	b2962f883fa392a23cbfcc4ad03c335bcc661be0cf9627657b589f0df2206e64  h2-3.0.1.tar.gz
+# md5, sha256 from https://pypi.org/pypi/h2/json
+md5	950b5a62a2a608dc4547a01edf99aa8f  h2-3.1.1.tar.gz
+sha256	b8a32bd282594424c0ac55845377eea13fa54fe4a8db012f3a198ed923dc3ab4  h2-3.1.1.tar.gz
+# Locally computed sha256 checksums
+sha256	663f9253e13519b82ab4a6b1caab6bed05aada70517f28cd0254be8a9fa19ed6  LICENSE
diff --git a/package/python-h2/python-h2.mk b/package/python-h2/python-h2.mk
index 37f0156458..0043ee2d50 100644
--- a/package/python-h2/python-h2.mk
+++ b/package/python-h2/python-h2.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_H2_VERSION = 3.0.1
+PYTHON_H2_VERSION = 3.1.1
 PYTHON_H2_SOURCE = h2-$(PYTHON_H2_VERSION).tar.gz
-PYTHON_H2_SITE = https://pypi.python.org/packages/3c/86/aebb88df3c87255cfd0ffd338608fbfb34d1c850750a486e7f05b013e5a3
+PYTHON_H2_SITE = https://files.pythonhosted.org/packages/56/73/0bc3a2f4238bdfbd9b0dc41a972fb558d96e8580ef2a37129ee5a54fa04e
 PYTHON_H2_SETUP_TYPE = setuptools
 PYTHON_H2_LICENSE = MIT
 PYTHON_H2_LICENSE_FILES = LICENSE
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-subprocess32: bump to version 3.5.4
  2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2 Asaf Kahlon
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-h2: bump to version 3.1.1 Asaf Kahlon
@ 2019-10-11  8:35 ` Asaf Kahlon
  2019-10-12 14:17   ` Thomas Petazzoni
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-ubjson: bump to version 0.14.0 Asaf Kahlon
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 11+ messages in thread
From: Asaf Kahlon @ 2019-10-11  8:35 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-subprocess32/python-subprocess32.hash | 4 ++--
 package/python-subprocess32/python-subprocess32.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/python-subprocess32/python-subprocess32.hash b/package/python-subprocess32/python-subprocess32.hash
index e96505d3d4..65d18763d1 100644
--- a/package/python-subprocess32/python-subprocess32.hash
+++ b/package/python-subprocess32/python-subprocess32.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/subprocess32/json
-md5	afa0510115f483d668e25aa30502d9bc  subprocess32-3.5.3.tar.gz
-sha256	6bc82992316eef3ccff319b5033809801c0c3372709c5f6985299c88ac7225c3  subprocess32-3.5.3.tar.gz
+md5	748844d560be5f0c707931cba1cdb48b  subprocess32-3.5.4.tar.gz
+sha256	eb2937c80497978d181efa1b839ec2d9622cf9600a039a79d0e108d1f9aec79d  subprocess32-3.5.4.tar.gz
 # Locally computed sha256 checksums
 sha256	826b43437249d39422642f695154d064da64de92eb1476048a615f50bc1beb4a  LICENSE
diff --git a/package/python-subprocess32/python-subprocess32.mk b/package/python-subprocess32/python-subprocess32.mk
index d6c57fb8bd..ee591e6a6b 100644
--- a/package/python-subprocess32/python-subprocess32.mk
+++ b/package/python-subprocess32/python-subprocess32.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_SUBPROCESS32_VERSION = 3.5.3
+PYTHON_SUBPROCESS32_VERSION = 3.5.4
 PYTHON_SUBPROCESS32_SOURCE = subprocess32-$(PYTHON_SUBPROCESS32_VERSION).tar.gz
-PYTHON_SUBPROCESS32_SITE = https://files.pythonhosted.org/packages/be/2b/beeba583e9877e64db10b52a96915afc0feabf7144dcbf2a0d0ea68bf73d
+PYTHON_SUBPROCESS32_SITE = https://files.pythonhosted.org/packages/32/c8/564be4d12629b912ea431f1a50eb8b3b9d00f1a0b1ceff17f266be190007
 PYTHON_SUBPROCESS32_SETUP_TYPE = setuptools
 PYTHON_SUBPROCESS32_LICENSE = Python-2.0
 PYTHON_SUBPROCESS32_LICENSE_FILES = LICENSE
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-ubjson: bump to version 0.14.0
  2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
                   ` (2 preceding siblings ...)
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-subprocess32: bump to version 3.5.4 Asaf Kahlon
@ 2019-10-11  8:35 ` Asaf Kahlon
  2019-10-12 14:17   ` Thomas Petazzoni
  2019-10-11  8:35 ` [Buildroot] [PATCH 2/2] package/python-arrow: bump to version 0.15.2 Asaf Kahlon
  2019-10-12 20:04 ` [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Thomas Petazzoni
  5 siblings, 1 reply; 11+ messages in thread
From: Asaf Kahlon @ 2019-10-11  8:35 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-ubjson/python-ubjson.hash | 4 ++--
 package/python-ubjson/python-ubjson.mk   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/package/python-ubjson/python-ubjson.hash b/package/python-ubjson/python-ubjson.hash
index f93ae1acde..a7e954ce5d 100644
--- a/package/python-ubjson/python-ubjson.hash
+++ b/package/python-ubjson/python-ubjson.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/py-ubjson/json
-md5	5dbbecd3dbecd744e45f27f14e2da5e1  py-ubjson-0.12.0.tar.gz
-sha256	b796cb5077a06c932f0d148f4eef4ce0f045a05cb14393177a6d034be9f8e364  py-ubjson-0.12.0.tar.gz
+md5	26c07be8e4c9f2b0ee7c42a9aca118ed  py-ubjson-0.14.0.tar.gz
+sha256	f742c87bccc8653329d3f79b8b3f40d44d11d17cce7f6d7025a73c52ebf91c66  py-ubjson-0.14.0.tar.gz
 # Locally computed sha256 checksums
 sha256	ca182abcb84ad9984c9af2e30cb70c4fe0e1772674355207e8fcdb85e8c5e75f  LICENSE
diff --git a/package/python-ubjson/python-ubjson.mk b/package/python-ubjson/python-ubjson.mk
index 477cc400c8..58bba2ac74 100644
--- a/package/python-ubjson/python-ubjson.mk
+++ b/package/python-ubjson/python-ubjson.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_UBJSON_VERSION = 0.12.0
+PYTHON_UBJSON_VERSION = 0.14.0
 PYTHON_UBJSON_SOURCE = py-ubjson-$(PYTHON_UBJSON_VERSION).tar.gz
-PYTHON_UBJSON_SITE = https://files.pythonhosted.org/packages/68/9c/a6c34e565351f0b04bcf6835e38bc4bd0647269dc48670e12eb99a3f5ef5
+PYTHON_UBJSON_SITE = https://files.pythonhosted.org/packages/10/31/0d8297c33d681aafa3fe900ca072a96d5acb97e79082fbb593e835376c93
 PYTHON_UBJSON_LICENSE = Apache-2.0
 PYTHON_UBJSON_LICENSE_FILES = LICENSE
 PYTHON_UBJSON_SETUP_TYPE = setuptools
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] package/python-arrow: bump to version 0.15.2
  2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
                   ` (3 preceding siblings ...)
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-ubjson: bump to version 0.14.0 Asaf Kahlon
@ 2019-10-11  8:35 ` Asaf Kahlon
  2019-10-12 20:04 ` [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Thomas Petazzoni
  5 siblings, 0 replies; 11+ messages in thread
From: Asaf Kahlon @ 2019-10-11  8:35 UTC (permalink / raw)
  To: buildroot

* Update dependency list.
* Add hash for license file.
* Remove docs/_themes/COPYING.txt from _LICENSE_FILES (the whole
  _themes directory was removed)

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
---
 package/python-arrow/Config.in         | 2 ++
 package/python-arrow/python-arrow.hash | 8 +++++---
 package/python-arrow/python-arrow.mk   | 6 +++---
 3 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/package/python-arrow/Config.in b/package/python-arrow/Config.in
index 244956879c..1458556830 100644
--- a/package/python-arrow/Config.in
+++ b/package/python-arrow/Config.in
@@ -1,6 +1,8 @@
 config BR2_PACKAGE_PYTHON_ARROW
 	bool "python-arrow"
 	select BR2_PACKAGE_PYTHON_DATEUTIL # runtime
+	select BR2_PACKAGE_PYTHON_BACKPORTS_FUNCTOOLS_LRU_CACHE \
+	       if BR2_PACKAGE_PYTHON # runtime
 	help
 	  Better dates and times for Python.
 
diff --git a/package/python-arrow/python-arrow.hash b/package/python-arrow/python-arrow.hash
index 0b5076aa96..90e0533232 100644
--- a/package/python-arrow/python-arrow.hash
+++ b/package/python-arrow/python-arrow.hash
@@ -1,3 +1,5 @@
-# md5 from https://pypi.python.org/pypi/arrow/json, sha256 locally computed
-md5	5d00592200050ad58284d45a4ee147c6  arrow-0.10.0.tar.gz
-sha256	805906f09445afc1f0fc80187db8fe07670e3b25cdafa09b8d8ac264a8c0c722  arrow-0.10.0.tar.gz
+# md5, sha256 from https://pypi.org/pypi/arrow/json
+md5	554f18b0e23182ee0e8cb2a882d2f607  arrow-0.15.2.tar.gz
+sha256	10257c5daba1a88db34afa284823382f4963feca7733b9107956bed041aff24f  arrow-0.15.2.tar.gz
+# Locally computed sha256 checksums
+sha256	a4b7601be50569c2c96a9818fc809b0149410c84c99714d60c9d4fb0ae861fa2  LICENSE
diff --git a/package/python-arrow/python-arrow.mk b/package/python-arrow/python-arrow.mk
index 6e2e331e3c..f8326288b2 100644
--- a/package/python-arrow/python-arrow.mk
+++ b/package/python-arrow/python-arrow.mk
@@ -4,11 +4,11 @@
 #
 ################################################################################
 
-PYTHON_ARROW_VERSION = 0.10.0
+PYTHON_ARROW_VERSION = 0.15.2
 PYTHON_ARROW_SOURCE = arrow-$(PYTHON_ARROW_VERSION).tar.gz
-PYTHON_ARROW_SITE = https://pypi.python.org/packages/54/db/76459c4dd3561bbe682619a5c576ff30c42e37c2e01900ed30a501957150
+PYTHON_ARROW_SITE = https://files.pythonhosted.org/packages/43/0e/47416c54ad7742981bf77fdfc405987551ab14b181a6140c8cd2a5823872
 PYTHON_ARROW_SETUP_TYPE = setuptools
 PYTHON_ARROW_LICENSE = Apache-2.0
-PYTHON_ARROW_LICENSE_FILES = LICENSE docs/_themes/COPYING.txt
+PYTHON_ARROW_LICENSE_FILES = LICENSE
 
 $(eval $(python-package))
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2 Asaf Kahlon
@ 2019-10-12 14:17   ` Thomas Petazzoni
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2019-10-12 14:17 UTC (permalink / raw)
  To: buildroot

On Fri, 11 Oct 2019 11:35:23 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Also add hash for license file.
> 
> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/python-cssutils/python-cssutils.hash | 8 +++++---
>  package/python-cssutils/python-cssutils.mk   | 4 ++--
>  2 files changed, 7 insertions(+), 5 deletions(-)

Applied to master, thanks.

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

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

* [Buildroot] [PATCH 1/1] package/python-h2: bump to version 3.1.1
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-h2: bump to version 3.1.1 Asaf Kahlon
@ 2019-10-12 14:17   ` Thomas Petazzoni
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2019-10-12 14:17 UTC (permalink / raw)
  To: buildroot

On Fri, 11 Oct 2019 11:35:24 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Also add hash for license file.
> 
> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/python-h2/python-h2.hash | 8 +++++---
>  package/python-h2/python-h2.mk   | 4 ++--
>  2 files changed, 7 insertions(+), 5 deletions(-)

Applied to master, thanks.

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

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

* [Buildroot] [PATCH 1/1] package/python-subprocess32: bump to version 3.5.4
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-subprocess32: bump to version 3.5.4 Asaf Kahlon
@ 2019-10-12 14:17   ` Thomas Petazzoni
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2019-10-12 14:17 UTC (permalink / raw)
  To: buildroot

On Fri, 11 Oct 2019 11:35:25 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/python-subprocess32/python-subprocess32.hash | 4 ++--
>  package/python-subprocess32/python-subprocess32.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

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

* [Buildroot] [PATCH 1/1] package/python-ubjson: bump to version 0.14.0
  2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-ubjson: bump to version 0.14.0 Asaf Kahlon
@ 2019-10-12 14:17   ` Thomas Petazzoni
  0 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2019-10-12 14:17 UTC (permalink / raw)
  To: buildroot

On Fri, 11 Oct 2019 11:35:26 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/python-ubjson/python-ubjson.hash | 4 ++--
>  package/python-ubjson/python-ubjson.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

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

* [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge
  2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
                   ` (4 preceding siblings ...)
  2019-10-11  8:35 ` [Buildroot] [PATCH 2/2] package/python-arrow: bump to version 0.15.2 Asaf Kahlon
@ 2019-10-12 20:04 ` Thomas Petazzoni
  5 siblings, 0 replies; 11+ messages in thread
From: Thomas Petazzoni @ 2019-10-12 20:04 UTC (permalink / raw)
  To: buildroot

On Fri, 11 Oct 2019 11:35:22 +0300
Asaf Kahlon <asafka7@gmail.com> wrote:

> Backport of functools.lru_cache from Python 3.3.
> 
> Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
> ---
>  package/Config.in                                 |  1 +
>  .../Config.in                                     |  7 +++++++
>  .../python-backports-functools-lru-cache.hash     |  5 +++++
>  .../python-backports-functools-lru-cache.mk       | 15 +++++++++++++++
>  4 files changed, 28 insertions(+)
>  create mode 100644 package/python-backports-functools-lru-cache/Config.in
>  create mode 100644 package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.hash
>  create mode 100644 package/python-backports-functools-lru-cache/python-backports-functools-lru-cache.mk

Both patches applied to master. Thanks!

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

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

end of thread, other threads:[~2019-10-12 20:04 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-11  8:35 [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Asaf Kahlon
2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-cssutils: bump to version 1.0.2 Asaf Kahlon
2019-10-12 14:17   ` Thomas Petazzoni
2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-h2: bump to version 3.1.1 Asaf Kahlon
2019-10-12 14:17   ` Thomas Petazzoni
2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-subprocess32: bump to version 3.5.4 Asaf Kahlon
2019-10-12 14:17   ` Thomas Petazzoni
2019-10-11  8:35 ` [Buildroot] [PATCH 1/1] package/python-ubjson: bump to version 0.14.0 Asaf Kahlon
2019-10-12 14:17   ` Thomas Petazzoni
2019-10-11  8:35 ` [Buildroot] [PATCH 2/2] package/python-arrow: bump to version 0.15.2 Asaf Kahlon
2019-10-12 20:04 ` [Buildroot] [PATCH 1/2] package/python-backports-functools-lru-cache: new pacakge Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox