Move buildroot to bsp directory.

This commit is contained in:
2016-11-16 22:05:33 +01:00
parent 317c040ea8
commit 807ab03547
7408 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_ENUM
bool "python-enum"
depends on BR2_PACKAGE_PYTHON
help
Robust enumerated type support in Python
An enumeration object is an immutable sequence object built
from a sequence of strings. Each value is also available as
an attribute. Such values are constant. Comparisons and
enumeration are supported.
https://pypi.python.org/pypi/enum

View File

@@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=ce75c7c3c86741175a84456cc5bd531e, sha256 locally computed
md5 ce75c7c3c86741175a84456cc5bd531e enum-0.4.4.tar.gz
sha256 9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff enum-0.4.4.tar.gz

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-enum
#
################################################################################
PYTHON_ENUM_VERSION = 0.4.4
PYTHON_ENUM_SOURCE = enum-$(PYTHON_ENUM_VERSION).tar.gz
PYTHON_ENUM_SITE = http://pypi.python.org/packages/source/e/enum
PYTHON_ENUM_SETUP_TYPE = setuptools
PYTHON_ENUM_LICENSE = GPLv2+ or Python software foundation license v2
PYTHON_ENUM_LICENSE_FILES = LICENSE.GPL LICENSE.PSF
$(eval $(python-package))