Commit a2557744 authored by Peter Korsgaard's avatar Peter Korsgaard Committed by Thomas Petazzoni
Browse files
parent 6ce7cf7f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+12 −0
Original line number Diff line number Diff line
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
+3 −0
Original line number Diff line number Diff line
# 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
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))