diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2017-08-02 07:57:25 +0200 |
---|---|---|
committer | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2017-08-13 17:32:11 +0200 |
commit | 9d6b907a4b463d73af3b43ae19e0d508c1d1b3c6 (patch) | |
tree | 5747b9a8e648cac3023d4fc19f9fb8523c0f7ddd /package/python-automat | |
parent | 800b808bad629c27df900bfee76367b478d6d2fe (diff) | |
download | buildroot-9d6b907a4b463d73af3b43ae19e0d508c1d1b3c6.tar.gz buildroot-9d6b907a4b463d73af3b43ae19e0d508c1d1b3c6.zip |
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>
Diffstat (limited to 'package/python-automat')
-rw-r--r-- | package/python-automat/Config.in | 9 | ||||
-rw-r--r-- | package/python-automat/python-automat.hash | 3 | ||||
-rw-r--r-- | package/python-automat/python-automat.mk | 15 |
3 files changed, 27 insertions, 0 deletions
diff --git a/package/python-automat/Config.in b/package/python-automat/Config.in new file mode 100644 index 0000000000..ee02d22b5b --- /dev/null +++ b/package/python-automat/Config.in @@ -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 diff --git a/package/python-automat/python-automat.hash b/package/python-automat/python-automat.hash new file mode 100644 index 0000000000..c0e3505234 --- /dev/null +++ b/package/python-automat/python-automat.hash @@ -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 diff --git a/package/python-automat/python-automat.mk b/package/python-automat/python-automat.mk new file mode 100644 index 0000000000..96a4f51506 --- /dev/null +++ b/package/python-automat/python-automat.mk @@ -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)) |