python-automat: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
[Arnout: properly wrapped Config.in help text]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Yegor Yefremov 2017-08-02 07:57:25 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 800b808bad
commit 9d6b907a4b
4 changed files with 28 additions and 0 deletions

View File

@ -694,6 +694,7 @@ menu "External python modules"
source "package/python-asn1crypto/Config.in"
source "package/python-attrs/Config.in"
source "package/python-autobahn/Config.in"
source "package/python-automat/Config.in"
source "package/python-babel/Config.in"
source "package/python-backports-abc/Config.in"
source "package/python-backports-shutil-get-terminal-size/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_AUTOMAT
bool "python-automat"
select BR2_PACKAGE_PYTHON_ATTRS # runtime
select BR2_PACKAGE_PYTHON_SIX # runtime
help
Self-service finite-state machines for the programmer on the
go.
https://github.com/glyph/Automat

View File

@ -0,0 +1,3 @@
# md5 from https://pypi.python.org/pypi/automat/json, sha256 locally computed
md5 ad7bba58d262d8956d732330cb5ef53d Automat-0.6.0.tar.gz
sha256 3c1fd04ecf08ac87b4dd3feae409542e9bf7827257097b2b6ed5692f69d6f6a8 Automat-0.6.0.tar.gz

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-automat
#
################################################################################
PYTHON_AUTOMAT_VERSION = 0.6.0
PYTHON_AUTOMAT_SOURCE = Automat-$(PYTHON_AUTOMAT_VERSION).tar.gz
PYTHON_AUTOMAT_SITE = https://pypi.python.org/packages/de/05/b8e453085cf8a7f27bb1226596f4ccf5cc9e758377d60284f990bbdc592c
PYTHON_AUTOMAT_SETUP_TYPE = setuptools
PYTHON_AUTOMAT_LICENSE = MIT
PYTHON_AUTOMAT_LICENSE_FILES = LICENSE
PYTHON_AUTOMAT_DEPENDENCIES = host-python-m2r host-python-setuptools-scm
$(eval $(python-package))