diff --git a/devel/py-asttokens/Makefile b/devel/py-asttokens/Makefile index 3e3f0764eae2..ab07d3b56e5d 100644 --- a/devel/py-asttokens/Makefile +++ b/devel/py-asttokens/Makefile @@ -1,30 +1,22 @@ PORTNAME= asttokens -PORTVERSION= 2.0.5 +PORTVERSION= 2.0.6 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Annotate AST trees with source code positions LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid>0:devel/py-astroid@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}astroid253>=0:devel/py-astroid253@${PY_FLAVOR} USES= python:3.6+ pytest USE_PYTHON= autoplist distutils PYTEST_ARGS= --ignore=tests/testdata NO_ARCH= yes -PYTEST_BROKEN_TESTS= test_async_def test_decorators test_fixture10 \ - test_fixture11 test_fixture13 test_fixture3 \ - test_fixture4 test_fixture5 test_fixture7 \ - test_fixture8 test_fixture9 test_fstrings \ - test_mark_tokens_simple test_print_function \ - test_slices test_splat test_sys_modules \ - test_tuples test_assignment_expressions - .include diff --git a/devel/py-asttokens/distinfo b/devel/py-asttokens/distinfo index 7c6dbedf2e41..038f8674eea8 100644 --- a/devel/py-asttokens/distinfo +++ b/devel/py-asttokens/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1618922662 -SHA256 (asttokens-2.0.5.tar.gz) = 9a54c114f02c7a9480d56550932546a3f1fe71d8a02f1bc7ccd0ee3ee35cf4d5 -SIZE (asttokens-2.0.5.tar.gz) = 50218 +TIMESTAMP = 1659977060 +SHA256 (asttokens-2.0.6.tar.gz) = eb1dcb2c4b7ae8267f70e2220a935521972443ebacbdeab08596934b76104d93 +SIZE (asttokens-2.0.6.tar.gz) = 53740 diff --git a/devel/py-asttokens/pkg-descr b/devel/py-asttokens/pkg-descr index 8ae1c115cb04..81ea095df48d 100644 --- a/devel/py-asttokens/pkg-descr +++ b/devel/py-asttokens/pkg-descr @@ -1,9 +1,10 @@ The asttokens module annotates Python abstract syntax trees (ASTs) with the positions of tokens and text in the source code that generated them. It makes it possible for tools that work with logical AST nodes to find the particular text that resulted in those nodes, for example for automated refactoring or highlighting. WWW: https://pypi.org/project/asttokens/ +WWW: https://github.com/gristlabs/asttokens