[Buildroot] [PATCH v2 1/3] python-singledispatch: new package

yegorslists at googlemail.com yegorslists at googlemail.com
Wed Dec 16 07:36:10 UTC 2015


From: Yegor Yefremov <yegorslists at googlemail.com>

This library brings functools.singledispatch from Python 3.4
to Python 2.7.x.

Signed-off-by: Yegor Yefremov <yegorslists at googlemail.com>
---
Changes:
	v2: make the patch a part of the Tornado update series

 package/Config.in                                        |  1 +
 package/python-singledispatch/Config.in                  |  8 ++++++++
 package/python-singledispatch/python-singledispatch.hash |  3 +++
 package/python-singledispatch/python-singledispatch.mk   | 14 ++++++++++++++
 4 files changed, 26 insertions(+)
 create mode 100644 package/python-singledispatch/Config.in
 create mode 100644 package/python-singledispatch/python-singledispatch.hash
 create mode 100644 package/python-singledispatch/python-singledispatch.mk

diff --git a/package/Config.in b/package/Config.in
index 5393959..1f5a590 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -673,6 +673,7 @@ menu "External python modules"
 	source "package/python-serial/Config.in"
 	source "package/python-setuptools/Config.in"
 	source "package/python-simplejson/Config.in"
+	source "package/python-singledispatch/Config.in"
 	source "package/python-sip/Config.in"
 	source "package/python-six/Config.in"
 	source "package/python-spidev/Config.in"
diff --git a/package/python-singledispatch/Config.in b/package/python-singledispatch/Config.in
new file mode 100644
index 0000000..192e516
--- /dev/null
+++ b/package/python-singledispatch/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_PYTHON_SINGLEDISPATCH
+	bool "python-singledispatch"
+	depends on BR2_PACKAGE_PYTHON
+	help
+	  This library brings functools.singledispatch from
+	  Python 3.4 to Python 2.6-3.3
+
+	  https://pypi.python.org/pypi/singledispatch
diff --git a/package/python-singledispatch/python-singledispatch.hash b/package/python-singledispatch/python-singledispatch.hash
new file mode 100644
index 0000000..8a96d21
--- /dev/null
+++ b/package/python-singledispatch/python-singledispatch.hash
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=af2fc6a3d6cc5a02d0bf54d909785fcb, sha256 locally computed
+md5     af2fc6a3d6cc5a02d0bf54d909785fcb singledispatch-3.4.0.3.tar.gz
+sha256  5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c  singledispatch-3.4.0.3.tar.gz
diff --git a/package/python-singledispatch/python-singledispatch.mk b/package/python-singledispatch/python-singledispatch.mk
new file mode 100644
index 0000000..7e1d5ac
--- /dev/null
+++ b/package/python-singledispatch/python-singledispatch.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-singledispatch
+#
+################################################################################
+
+PYTHON_SINGLEDISPATCH_VERSION = 3.4.0.3
+PYTHON_SINGLEDISPATCH_SOURCE = singledispatch-$(PYTHON_SINGLEDISPATCH_VERSION).tar.gz
+PYTHON_SINGLEDISPATCH_SITE = https://pypi.python.org/packages/source/s/singledispatch
+PYTHON_SINGLEDISPATCH_LICENSE = MIT
+PYTHON_SINGLEDISPATCH_LICENSE_FILES = setup.py
+PYTHON_SINGLEDISPATCH_SETUP_TYPE = setuptools
+
+$(eval $(python-package))
-- 
2.1.4



More information about the buildroot mailing list