Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1
@ 2016-09-14 10:36 yegorslists at googlemail.com
  2016-09-14 10:36 ` [Buildroot] [PATCH 2/2] python-pyusb: bump to version 1.0.0 yegorslists at googlemail.com
  2016-09-14 19:48 ` [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1 Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: yegorslists at googlemail.com @ 2016-09-14 10:36 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Remove upstream patch.
---
 ...re-backports.ssl_match_hostname-on-Python.patch | 37 ----------------------
 package/python-tornado/python-tornado.hash         |  6 ++--
 package/python-tornado/python-tornado.mk           |  4 +--
 3 files changed, 5 insertions(+), 42 deletions(-)
 delete mode 100644 package/python-tornado/0001-Don-t-require-backports.ssl_match_hostname-on-Python.patch

diff --git a/package/python-tornado/0001-Don-t-require-backports.ssl_match_hostname-on-Python.patch b/package/python-tornado/0001-Don-t-require-backports.ssl_match_hostname-on-Python.patch
deleted file mode 100644
index d5702e8..0000000
--- a/package/python-tornado/0001-Don-t-require-backports.ssl_match_hostname-on-Python.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 785fe675d5602e51a559b06861d543c7d37a380c Mon Sep 17 00:00:00 2001
-From: Yegor Yefremov <yegorslists@googlemail.com>
-Date: Wed, 4 May 2016 09:26:22 +0200
-Subject: [PATCH] Don't require backports.ssl_match_hostname on Python 2.7.9
- and newer
-
-As Python 3.2 support was dropped one can check 2.7.x dependency only.
-
-Tornado running on Python 2.7.9+ doesn't need this backported package,
-but some Python packages like circus check package dependencies at
-runtime and insist on having backports.ssl_match_hostname installed,
-though they don't even use this particular feature.
-
-So checking for exact version makes life of package maintainer easier
-especially on embedded Linux distributions like Buildroot.
-
-Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
----
- setup.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/setup.py b/setup.py
-index c13eeed..0c24e70 100644
---- a/setup.py
-+++ b/setup.py
-@@ -129,7 +129,7 @@ if setuptools is not None:
-     if sys.version_info < (2, 7):
-         # Only needed indirectly, for singledispatch.
-         install_requires.append('ordereddict')
--    if sys.version_info < (3, 2):
-+    if sys.version_info < (2, 7, 9):
-         install_requires.append('backports.ssl_match_hostname')
-     if sys.version_info < (3, 4):
-         install_requires.append('singledispatch')
--- 
-2.8.1
-
diff --git a/package/python-tornado/python-tornado.hash b/package/python-tornado/python-tornado.hash
index e0f3c39..27385a5 100644
--- a/package/python-tornado/python-tornado.hash
+++ b/package/python-tornado/python-tornado.hash
@@ -1,3 +1,3 @@
-# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=c548d7b77a11d523c3d7255bd7fd6df8, sha256 locally computed
-md5     d13a99dc0b60ba69f5f8ec1235e5b232 tornado-4.3.tar.gz
-sha256  c9c2d32593d16eedf2cec1b6a41893626a2649b40b21ca9c4cac4243bde2efbf  tornado-4.3.tar.gz
+# md5 from https://pypi.python.org/pypi/tornado/json, sha256 locally computed
+md5     fff8a7d7f580b04bacc2ffe7ddf41133 tornado-4.4.1.tar.gz
+sha256  371d0cf3d56c47accc66116a77ad558d76eebaa8458a6b677af71ca606522146  tornado-4.4.1.tar.gz
diff --git a/package/python-tornado/python-tornado.mk b/package/python-tornado/python-tornado.mk
index 64809b7..98d42b5 100644
--- a/package/python-tornado/python-tornado.mk
+++ b/package/python-tornado/python-tornado.mk
@@ -4,9 +4,9 @@
 #
 ################################################################################
 
-PYTHON_TORNADO_VERSION = 4.3
+PYTHON_TORNADO_VERSION = 4.4.1
 PYTHON_TORNADO_SOURCE = tornado-$(PYTHON_TORNADO_VERSION).tar.gz
-PYTHON_TORNADO_SITE = https://pypi.python.org/packages/source/t/tornado
+PYTHON_TORNADO_SITE = https://pypi.python.org/packages/96/5d/ff472313e8f337d5acda5d56e6ea79a43583cc8771b34c85a1f458e197c3
 PYTHON_TORNADO_LICENSE = Apache-2.0
 PYTHON_TORNADO_SETUP_TYPE = setuptools
 
-- 
2.1.4

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

* [Buildroot] [PATCH 2/2] python-pyusb: bump to version 1.0.0
  2016-09-14 10:36 [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1 yegorslists at googlemail.com
@ 2016-09-14 10:36 ` yegorslists at googlemail.com
  2016-09-14 19:50   ` Peter Korsgaard
  2016-09-14 19:48 ` [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1 Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: yegorslists at googlemail.com @ 2016-09-14 10:36 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Remove dependency on Python 2 only.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/python-pyusb/Config.in         | 2 --
 package/python-pyusb/python-pyusb.hash | 5 +++--
 package/python-pyusb/python-pyusb.mk   | 5 +++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/package/python-pyusb/Config.in b/package/python-pyusb/Config.in
index de5b487..1f97979 100644
--- a/package/python-pyusb/Config.in
+++ b/package/python-pyusb/Config.in
@@ -1,6 +1,5 @@
 config BR2_PACKAGE_PYTHON_PYUSB
 	bool "python-pyusb"
-	depends on BR2_PACKAGE_PYTHON
 	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
 	select BR2_PACKAGE_LIBUSB
 	help
@@ -10,5 +9,4 @@ config BR2_PACKAGE_PYTHON_PYUSB
 	  http://sourceforge.net/apps/trac/pyusb/
 
 comment "python-pyusb needs a toolchain w/ threads"
-	depends on BR2_PACKAGE_PYTHON
 	depends on !BR2_TOOLCHAIN_HAS_THREADS
diff --git a/package/python-pyusb/python-pyusb.hash b/package/python-pyusb/python-pyusb.hash
index 3524ca9..098d08f 100644
--- a/package/python-pyusb/python-pyusb.hash
+++ b/package/python-pyusb/python-pyusb.hash
@@ -1,2 +1,3 @@
-# locally computed
-sha256  14ec66077bdcd6f1aa9e892a0a35a54bb3c1ec56aa740ead64349c18f0186d19  python-pyusb-1.0.0b2.tar.gz
+# md5 from https://pypi.python.org/pypi/pyusb/json, sha256 locally computed
+md5     c8a571bfdba778555156af3facaea6fc PyUSB-1.0.0.tar.gz
+sha256  5b34ffa74ac34f330bff949c94ee00ec4a9d147234db17ee2eed2a67c0275368  PyUSB-1.0.0.tar.gz
diff --git a/package/python-pyusb/python-pyusb.mk b/package/python-pyusb/python-pyusb.mk
index ae69026..cfdef53 100644
--- a/package/python-pyusb/python-pyusb.mk
+++ b/package/python-pyusb/python-pyusb.mk
@@ -4,8 +4,9 @@
 #
 ################################################################################
 
-PYTHON_PYUSB_VERSION = 1.0.0b2
-PYTHON_PYUSB_SITE = $(call github,walac,pyusb,$(PYTHON_PYUSB_VERSION))
+PYTHON_PYUSB_VERSION = 1.0.0
+PYTHON_PYUSB_SOURCE = PyUSB-$(PYTHON_PYUSB_VERSION).tar.gz
+PYTHON_PYUSB_SITE = https://pypi.python.org/packages/8a/19/66fb48a4905e472f5dfeda3a1bafac369fbf6d6fc5cf55b780864962652d
 PYTHON_PYUSB_LICENSE = BSD-3c
 PYTHON_PYUSB_LICENSE_FILES = LICENSE
 PYTHON_PYUSB_SETUP_TYPE = distutils
-- 
2.1.4

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

* [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1
  2016-09-14 10:36 [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1 yegorslists at googlemail.com
  2016-09-14 10:36 ` [Buildroot] [PATCH 2/2] python-pyusb: bump to version 1.0.0 yegorslists at googlemail.com
@ 2016-09-14 19:48 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-09-14 19:48 UTC (permalink / raw)
  To: buildroot

>>>>> "yegorslists" == yegorslists  <yegorslists@googlemail.com> writes:

 > From: Yegor Yefremov <yegorslists@googlemail.com>
 > Remove upstream patch.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] python-pyusb: bump to version 1.0.0
  2016-09-14 10:36 ` [Buildroot] [PATCH 2/2] python-pyusb: bump to version 1.0.0 yegorslists at googlemail.com
@ 2016-09-14 19:50   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-09-14 19:50 UTC (permalink / raw)
  To: buildroot

>>>>> "yegorslists" == yegorslists  <yegorslists@googlemail.com> writes:

 > From: Yegor Yefremov <yegorslists@googlemail.com>
 > Remove dependency on Python 2 only.

 > Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-09-14 19:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-14 10:36 [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1 yegorslists at googlemail.com
2016-09-14 10:36 ` [Buildroot] [PATCH 2/2] python-pyusb: bump to version 1.0.0 yegorslists at googlemail.com
2016-09-14 19:50   ` Peter Korsgaard
2016-09-14 19:48 ` [Buildroot] [PATCH 1/2] python-tornado: bump to version 4.4.1 Peter Korsgaard

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