python-enum34: new package

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Peter Korsgaard 2014-12-02 15:57:32 +01:00 committed by Thomas Petazzoni
parent 6ce7cf7f75
commit a255774480
4 changed files with 30 additions and 0 deletions

View File

@ -492,6 +492,7 @@ menu "external python modules"
source "package/python-daemon/Config.in"
source "package/python-dialog/Config.in"
source "package/python-dpkt/Config.in"
source "package/python-enum34/Config.in"
source "package/python-flask/Config.in"
source "package/python-flup/Config.in"
source "package/python-gobject/Config.in"

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_ENUM34
bool "python-enum34"
depends on BR2_PACKAGE_PYTHON
help
Python 3.4 Enum backported to 2.x.
An enumeration is a set of symbolic names (members) bound to
unique, constant values. Within an enumeration, the members
can be compared by identity, and the enumeration itself can
be iterated over.
https://pypi.python.org/pypi/enum34

View File

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=ac80f432ac9373e7d162834b264034b6, sha256 locally computed
md5 ac80f432ac9373e7d162834b264034b6 enum34-1.0.4.tar.gz
sha256 d3c19f26a6a34629c18c775f59dfc5dd595764c722b57a2da56ebfb69b94e447 enum34-1.0.4.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-enum34
#
################################################################################
PYTHON_ENUM34_VERSION = 1.0.4
PYTHON_ENUM34_SOURCE =enum34-$(PYTHON_ENUM34_VERSION).tar.gz
PYTHON_ENUM34_SITE = http://pypi.python.org/packages/source/e/enum34
PYTHON_ENUM34_SETUP_TYPE = distutils
PYTHON_ENUM34_LICENSE = BSD-3c
PYTHON_ENUM34_LICENSE_FILES = enum/LICENSE
$(eval $(python-package))