python-visitor: new package

A tiny library to facilitate visitor implementation in Python

Signed-off-by: Adam Duskett <aduskett@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2018.05.x
Adam Duskett 2018-02-06 08:25:05 -05:00 committed by Thomas Petazzoni
parent 2609bc2e4e
commit 145d79732a
5 changed files with 26 additions and 0 deletions

View File

@ -55,6 +55,7 @@ F: package/python-flask-sqlalchemy/
F: package/python-mutagen/
F: package/python-psycopg2/
F: package/python-sqlalchemy/
F: package/python-visitor/
F: package/restorecond/
F: package/refpolicy/
F: package/selinux-python/

View File

@ -959,6 +959,7 @@ menu "External python modules"
source "package/python-urllib3/Config.in"
source "package/python-urwid/Config.in"
source "package/python-versiontools/Config.in"
source "package/python-visitor/Config.in"
source "package/python-watchdog/Config.in"
source "package/python-wcwidth/Config.in"
source "package/python-web2py/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_VISITOR
bool "python-visitor"
help
A tiny pythonic visitor implementation.
http://github.com/mbr/visitor

View File

@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/visitor/json, sha256 locally computed
md5 94a024ed0ec1b02b4497c15267d319ca visitor-0.1.3.tar.gz
sha256 2c737903b2b6864ebc6167eef7cf3b997126f1aa94bdf590f90f1436d23e480a visitor-0.1.3.tar.gz
sha256 184d1ebb65da97ada36447f3c028f2fd4890b874f17b18c023ce200dd96639af LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-visitor
#
################################################################################
PYTHON_VISITOR_VERSION = 0.1.3
PYTHON_VISITOR_SOURCE = visitor-$(PYTHON_VISITOR_VERSION).tar.gz
PYTHON_VISITOR_SITE = https://pypi.python.org/packages/d7/58/785fcd6de4210049da5fafe62301b197f044f3835393594be368547142b0
PYTHON_VISITOR_SETUP_TYPE = setuptools
PYTHON_VISITOR_LICENSE = MIT
PYTHON_VISITOR_LICENSE_FILES = LICENSE
$(eval $(python-package))