python-incremental: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017.02.x
Yegor Yefremov 2016-12-16 16:54:29 +01:00 committed by Thomas Petazzoni
parent c02278a426
commit 58444e8f8b
4 changed files with 24 additions and 0 deletions

View File

@ -693,6 +693,7 @@ menu "External python modules"
source "package/python-humanize/Config.in"
source "package/python-id3/Config.in"
source "package/python-idna/Config.in"
source "package/python-incremental/Config.in"
source "package/python-iniparse/Config.in"
source "package/python-iowait/Config.in"
source "package/python-ipaddr/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_INCREMENTAL
bool "python-incremental"
help
A library for versioning your Python projects.
https://github.com/hawkowl/incremental

View File

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/incremental/json, sha256 locally computed
md5 3fe6b3b1da1d26a48187fb27e969f072 incremental-16.10.1.tar.gz
sha256 14ad6b720ec47aad6c9caa83e47db1843e2b9b98742da5dda08e16a99f400342 incremental-16.10.1.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-incremental
#
################################################################################
PYTHON_INCREMENTAL_VERSION = 16.10.1
PYTHON_INCREMENTAL_SOURCE = incremental-$(PYTHON_INCREMENTAL_VERSION).tar.gz
PYTHON_INCREMENTAL_SITE = https://pypi.python.org/packages/da/b0/32233c9e84b0d44b39015fba8fec03e88053723c1b455925081dc6ccd9e7
PYTHON_INCREMENTAL_SETUP_TYPE = setuptools
PYTHON_INCREMENTAL_LICENSE = MIT
PYTHON_INCREMENTAL_LICENSE_FILES = LICENSE
$(eval $(python-package))