diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2017-03-20 15:36:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-20 21:59:12 +0100 |
commit | 12fcd887c90fc58a8600ddd3131a3c3a7918dd71 (patch) | |
tree | bc1e6fa7e38e79e5f3d3e60257c0ad25bc7531cd /package/python-sortedcontainers | |
parent | 3a524e0a8e00765c8e0f55dbfbb60554c89c7ce8 (diff) | |
download | buildroot-12fcd887c90fc58a8600ddd3131a3c3a7918dd71.tar.gz buildroot-12fcd887c90fc58a8600ddd3131a3c3a7918dd71.zip |
python-sortedcontainers: new package
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python-sortedcontainers')
-rw-r--r-- | package/python-sortedcontainers/Config.in | 7 | ||||
-rw-r--r-- | package/python-sortedcontainers/python-sortedcontainers.hash | 3 | ||||
-rw-r--r-- | package/python-sortedcontainers/python-sortedcontainers.mk | 14 |
3 files changed, 24 insertions, 0 deletions
diff --git a/package/python-sortedcontainers/Config.in b/package/python-sortedcontainers/Config.in new file mode 100644 index 0000000000..43bd1b1c06 --- /dev/null +++ b/package/python-sortedcontainers/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_PYTHON_SORTEDCONTAINERS + bool "python-sortedcontainers" + help + Python Sorted Container Types: SortedList, SortedDict, and + SortedSet. + + http://www.grantjenks.com/docs/sortedcontainers/ diff --git a/package/python-sortedcontainers/python-sortedcontainers.hash b/package/python-sortedcontainers/python-sortedcontainers.hash new file mode 100644 index 0000000000..11fa076601 --- /dev/null +++ b/package/python-sortedcontainers/python-sortedcontainers.hash @@ -0,0 +1,3 @@ +# md5 from https://pypi.python.org/pypi/sortedcontainers/json, sha256 locally computed +md5 ad4f00e377ad934954ac90fcac0b185f sortedcontainers-1.5.7.tar.gz +sha256 0ff0442865e492bc50476b18000fb8400cf2472d14d21a92b27cd7c5184550ea sortedcontainers-1.5.7.tar.gz diff --git a/package/python-sortedcontainers/python-sortedcontainers.mk b/package/python-sortedcontainers/python-sortedcontainers.mk new file mode 100644 index 0000000000..99606816ab --- /dev/null +++ b/package/python-sortedcontainers/python-sortedcontainers.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# python-sortedcontainers +# +################################################################################ + +PYTHON_SORTEDCONTAINERS_VERSION = 1.5.7 +PYTHON_SORTEDCONTAINERS_SOURCE = sortedcontainers-$(PYTHON_SORTEDCONTAINERS_VERSION).tar.gz +PYTHON_SORTEDCONTAINERS_SITE = https://pypi.python.org/packages/8d/aa/5369362d730728639ba434318df26b5c554804578d1c48381367ea5377c6 +PYTHON_SORTEDCONTAINERS_SETUP_TYPE = setuptools +PYTHON_SORTEDCONTAINERS_LICENSE = Apache-2.0 +PYTHON_SORTEDCONTAINERS_LICENSE_FILES = LICENSE + +$(eval $(python-package)) |