diff --git a/textproc/py-citeproc-py/Makefile b/textproc/py-citeproc-py/Makefile index 8796d16f6493..7c697de0a334 100644 --- a/textproc/py-citeproc-py/Makefile +++ b/textproc/py-citeproc-py/Makefile @@ -1,22 +1,22 @@ PORTNAME= citeproc-py -DISTVERSION= 0.6.0 -PORTREVISION= 3 +DISTVERSION= 0.10.3 CATEGORIES= textproc python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= citeproc_py-${DISTVERSION} MAINTAINER= yuri@FreeBSD.org COMMENT= Citation Style Language (CSL) processor for Python WWW= https://github.com/brechtm/citeproc-py LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rnc2rng>=2.6.1:textproc/py-rnc2rng@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml@${PY_FLAVOR} USES= python USE_PYTHON= distutils concurrent autoplist NO_ARCH= yes .include diff --git a/textproc/py-citeproc-py/distinfo b/textproc/py-citeproc-py/distinfo index 10031e714af8..d4c34ae61193 100644 --- a/textproc/py-citeproc-py/distinfo +++ b/textproc/py-citeproc-py/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1622618961 -SHA256 (citeproc-py-0.6.0.tar.gz) = d9e3a224f936fe2e5033b5d9ffdacab769cedb61d96c4e0cf2f0b488f1d24b4e -SIZE (citeproc-py-0.6.0.tar.gz) = 140624 +TIMESTAMP = 1785521887 +SHA256 (citeproc_py-0.10.3.tar.gz) = 2dc70697095eee1ba221b2cfe50767ff30e214ab40d3c918228b2abccd3a45c1 +SIZE (citeproc_py-0.10.3.tar.gz) = 268235 diff --git a/textproc/py-citeproc-py/files/patch-setup.py b/textproc/py-citeproc-py/files/patch-setup.py deleted file mode 100644 index 971a6cf5c233..000000000000 --- a/textproc/py-citeproc-py/files/patch-setup.py +++ /dev/null @@ -1,27 +0,0 @@ ---- setup.py.orig 2021-05-27 17:28:02 UTC -+++ setup.py -@@ -30,7 +30,7 @@ os.chdir(BASE_PATH) - # inspired by http://dcreager.net/2010/02/10/setuptools-git-version-numbers/ - try: - print('Attempting to get version number from git...') -- git = Popen(['git', 'describe', '--always', '--dirty'], -+ git = Popen(['/usr/bin/false', 'describe', '--always', '--dirty'], - stdout=PIPE, stderr=sys.stderr) - if git.wait() != 0: - raise OSError -@@ -85,14 +85,13 @@ setup( - name='citeproc-py', - version=__version__, - cmdclass = dict(build_py=custom_build_py, develop=custom_develop), -- packages=find_packages(), - package_data={PACKAGE: ['data/locales/*.xml', - 'data/locales/locales.json', - 'data/schema/*.rng', - 'data/styles/*.csl']}, - python_requires='>=3.6', - scripts=['bin/csl_unsorted'], -- setup_requires=['rnc2rng>=2.6.1,!=2.6.2'], -+ setup_requires=['rnc2rng'], - install_requires=['lxml'], - provides=[PACKAGE], - #test_suite='nose.collector',