diff --git a/x11-fonts/py-axisregistry/Makefile b/x11-fonts/py-axisregistry/Makefile index 7b3f3cd8ec15..67ba0f8f3baa 100644 --- a/x11-fonts/py-axisregistry/Makefile +++ b/x11-fonts/py-axisregistry/Makefile @@ -1,23 +1,24 @@ # Created by: Po-Chuan Hsieh PORTNAME= axisregistry -PORTVERSION= 0.3.2 +PORTVERSION= 0.3.5 CATEGORIES= x11-fonts python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python API to access data from the Google Fonts variable fonts axis registry LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=4:devel/py-setuptools_scm@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}protobuf>=0,1:devel/py-protobuf@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}fonttools>=0:print/py-fonttools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}protobuf>=3.19.4,1:devel/py-protobuf@${PY_FLAVOR} USES= python:3.7+ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes .include diff --git a/x11-fonts/py-axisregistry/distinfo b/x11-fonts/py-axisregistry/distinfo index ba86dd7b8869..970fe859f610 100644 --- a/x11-fonts/py-axisregistry/distinfo +++ b/x11-fonts/py-axisregistry/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1656522328 -SHA256 (axisregistry-0.3.2.tar.gz) = df40ef873e3b10093a7e65ef78925adf64b0c2e566b2c3136e7afbd40c1b68d9 -SIZE (axisregistry-0.3.2.tar.gz) = 3497066 +TIMESTAMP = 1657199047 +SHA256 (axisregistry-0.3.5.tar.gz) = 052739df1624c71fd3e54db9737315c7932d6933644f90e534201a8bef9f9df3 +SIZE (axisregistry-0.3.5.tar.gz) = 3497370 diff --git a/x11-fonts/py-axisregistry/files/patch-setup.py b/x11-fonts/py-axisregistry/files/patch-setup.py index 2a5fdc277390..6e44de26ff06 100644 --- a/x11-fonts/py-axisregistry/files/patch-setup.py +++ b/x11-fonts/py-axisregistry/files/patch-setup.py @@ -1,10 +1,11 @@ ---- setup.py.orig 2022-06-23 17:45:59 UTC +--- setup.py.orig 2022-07-01 11:49:54 UTC +++ setup.py @@ -42,6 +42,6 @@ setup( "Programming Language :: Python :: 3", ], python_requires=">=3.7", - setup_requires=["setuptools_scm>=4,<6.1"], +- install_requires=["protobuf==3.19.4", "fonttools"], + setup_requires=["setuptools_scm>=4"], - install_requires=["protobuf"], ++ install_requires=["protobuf>=3.19.4", "fonttools"], )