diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-07-11 18:10:59 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2020-07-11 18:10:59 +0000 |
commit | ff5bf8c5b45dd35b7b9afdf2ef0ebacf014a25b6 (patch) | |
tree | 77531c15bcb780dffbe6722d7ffb050b6b5047a5 /security | |
parent | Add MYSQL and POSTGRESQL options (diff) |
Fix RUN_DEPENDS
- Bump PORTREVISION for dependency change
devel/py-importlib-metadata is not required for python 3.8+.
Notes
Notes:
svn path=/head/; revision=542025
Diffstat (limited to 'security')
-rw-r--r-- | security/py-signedjson/Makefile | 10 | ||||
-rw-r--r-- | security/py-signedjson/files/patch-setup.py | 13 | ||||
-rw-r--r-- | security/py-signedjson/files/patch-signedjson-__init__.py | 16 |
3 files changed, 37 insertions, 2 deletions
diff --git a/security/py-signedjson/Makefile b/security/py-signedjson/Makefile index e4f3b5ffaeb3..285afd149b0f 100644 --- a/security/py-signedjson/Makefile +++ b/security/py-signedjson/Makefile @@ -3,6 +3,7 @@ PORTNAME= signedjson PORTVERSION= 1.1.1 +PORTREVISION= 1 CATEGORIES= security devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,7 +16,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}canonicaljson>=1.0.0:devel/py-canonicaljson@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=0:devel/py-importlib-metadata@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pynacl>=0.3.0:security/py-pynacl@${PY_FLAVOR} \ ${PY_TYPING} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.5:devel/py-typing-extensions@${PY_FLAVOR} \ @@ -27,7 +27,13 @@ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes +.include <bsd.port.pre.mk> + +.if ${PYTHON_REL} < 3800 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=0:devel/py-importlib-metadata@${PY_FLAVOR} +.endif + do-test: @(cd ${WRKSRC} && ${PYTHON_CMD} -m pytest tests) -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/security/py-signedjson/files/patch-setup.py b/security/py-signedjson/files/patch-setup.py new file mode 100644 index 000000000000..d66a932f919f --- /dev/null +++ b/security/py-signedjson/files/patch-setup.py @@ -0,0 +1,13 @@ +Obtained from: https://github.com/matrix-org/python-signedjson/commit/c40c83f844fee3c1c7b0c5d1508f87052334b4e5 + +--- setup.py.orig 2020-03-27 19:41:34 UTC ++++ setup.py +@@ -41,7 +41,7 @@ setup( + "pynacl>=0.3.0", + "typing_extensions>=3.5", + 'typing>=3.5;python_version<"3.5"', +- "importlib_metadata", ++ 'importlib_metadata;python_version<"3.8"', + ], + long_description=read_file(("README.rst",)), + keywords="json", diff --git a/security/py-signedjson/files/patch-signedjson-__init__.py b/security/py-signedjson/files/patch-signedjson-__init__.py new file mode 100644 index 000000000000..039fce0399ed --- /dev/null +++ b/security/py-signedjson/files/patch-signedjson-__init__.py @@ -0,0 +1,16 @@ +Obtained from: https://github.com/matrix-org/python-signedjson/commit/c40c83f844fee3c1c7b0c5d1508f87052334b4e5 + +--- signedjson/__init__.py.orig 2020-03-27 19:41:34 UTC ++++ signedjson/__init__.py +@@ -12,7 +12,10 @@ + # See the License for the specific language governing permissions and + # limitations under the License. + +-from importlib_metadata import version, PackageNotFoundError ++try: ++ from importlib.metadata import version, PackageNotFoundError ++except ImportError: # pragma: nocover ++ from importlib_metadata import version, PackageNotFoundError + + try: + __version__ = version(__name__) |