Add buildroot 2018-02

This commit is contained in:
Pascal Vizeli
2018-03-17 23:47:00 +00:00
parent 3776c47f83
commit 67742041ad
10007 changed files with 405098 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
config BR2_PACKAGE_PYTHON_PATHLIB2
bool "python-pathlib2"
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_SCANDIR # runtime
help
Object-oriented filesystem paths.
The goal of pathlib2 is to provide a backport of standard
pathlib module which tracks the standard library module, so
all the newest features of the standard pathlib can be used
also on older Python versions.
https://pypi.python.org/pypi/pathlib2

View File

@@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/pathlib2/json, sha256 locally computed
md5 6c75bfde898b6c88627621a48ee8de14 pathlib2-2.2.1.tar.gz
sha256 ce9007df617ef6b7bd8a31cd2089ed0c1fed1f7c23cf2bf1ba140b3dd563175d pathlib2-2.2.1.tar.gz

View File

@@ -0,0 +1,14 @@
################################################################################
#
# python-pathlib2
#
################################################################################
PYTHON_PATHLIB2_VERSION = 2.2.1
PYTHON_PATHLIB2_SOURCE = pathlib2-$(PYTHON_PATHLIB2_VERSION).tar.gz
PYTHON_PATHLIB2_SITE = https://pypi.python.org/packages/ab/d8/ac7489d50146f29d0a14f65545698f4545d8a6b739b24b05859942048b56
PYTHON_PATHLIB2_LICENSE = MIT
PYTHON_PATHLIB2_LICENSE_FILES = LICENSE.rst
PYTHON_PATHLIB2_SETUP_TYPE = setuptools
$(eval $(python-package))