diff --git a/devel/py-hypothesmith/Makefile b/devel/py-hypothesmith/Makefile index 519a5ff6566b..2890ce0caa10 100644 --- a/devel/py-hypothesmith/Makefile +++ b/devel/py-hypothesmith/Makefile @@ -1,22 +1,23 @@ PORTNAME= hypothesmith PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= amdmi3@FreeBSD.org COMMENT= Hypothesis strategies for generating Python programs LICENSE= MPL20 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hypothesis>=0:devel/py-hypothesis@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lark-parser>=0:devel/py-lark-parser@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lark>=0:devel/py-lark@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}libcst>=0:devel/py-libcst@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}black>=0:devel/py-black@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}parso>=0:textproc/py-parso@${PY_FLAVOR} USES= python:3.7+ pytest USE_PYTHON= autoplist distutils NO_ARCH= yes .include diff --git a/devel/py-hypothesmith/files/patch-setup.py b/devel/py-hypothesmith/files/patch-setup.py new file mode 100644 index 000000000000..19b719957672 --- /dev/null +++ b/devel/py-hypothesmith/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2021-11-27 08:58:08 UTC ++++ setup.py +@@ -32,7 +32,7 @@ setuptools.setup( + license="MPL 2.0", + description="Hypothesis strategies for generating Python programs, something like CSmith", + zip_safe=False, +- install_requires=["hypothesis>=5.41.0", "lark-parser>=0.7.2", "libcst>=0.3.8"], ++ install_requires=["hypothesis>=5.41.0", "lark>=0.7.2", "libcst>=0.3.8"], + python_requires=">=3.6", + classifiers=[ + "Development Status :: 4 - Beta",