diff --git a/textproc/py-pybtex/Makefile b/textproc/py-pybtex/Makefile index 9629b39dd3df..326e3c2f356f 100644 --- a/textproc/py-pybtex/Makefile +++ b/textproc/py-pybtex/Makefile @@ -1,24 +1,25 @@ # Created by: Po-Chuan Hsieh PORTNAME= pybtex PORTVERSION= 0.24.0 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= BibTeX-compatible bibliography processor in Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}latexcodec>=1.0.4:textproc/py-latexcodec@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=3.01:devel/py-yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} USES= python:3.6+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include diff --git a/textproc/py-pybtex/files/patch-setup.py b/textproc/py-pybtex/files/patch-setup.py new file mode 100644 index 000000000000..83eeab858264 --- /dev/null +++ b/textproc/py-pybtex/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2021-01-17 19:26:34 UTC ++++ setup.py +@@ -92,7 +92,7 @@ setup( + install_requires=install_requires, + extras_require=extras_require, + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*', +- packages=find_packages(exclude=['docs']), ++ packages=find_packages(exclude=['docs', 'tests*']), + include_package_data=True, + cmdclass={'sdist': Sdist}, + entry_points={