This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

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/enum34/json, sha256 locally computed
md5 5f13a0841a61f7fc295c514490d120d0 enum34-1.1.6.tar.gz
sha256 8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1 enum34-1.1.6.tar.gz

View File

@@ -0,0 +1,15 @@
################################################################################
#
# python-enum34
#
################################################################################
PYTHON_ENUM34_VERSION = 1.1.6
PYTHON_ENUM34_SOURCE = enum34-$(PYTHON_ENUM34_VERSION).tar.gz
PYTHON_ENUM34_SITE = https://pypi.python.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876
PYTHON_ENUM34_SETUP_TYPE = setuptools
PYTHON_ENUM34_LICENSE = BSD-3-Clause
PYTHON_ENUM34_LICENSE_FILES = enum/LICENSE
$(eval $(python-package))
$(eval $(host-python-package))