Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Oct 2022 02:25:39 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d3b1466f4e98 - main - devel/py-openapi-core: Update to 0.15.0
Message-ID:  <202210030225.2932Pdhk098311@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d3b1466f4e98def7415433d3a082fcfff6394efb

commit d3b1466f4e98def7415433d3a082fcfff6394efb
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-10-03 02:15:01 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-10-03 02:15:01 +0000

    devel/py-openapi-core: Update to 0.15.0
    
    Changes:        https://github.com/p1c2u/openapi-core/releases
---
 devel/py-openapi-core/Makefile             | 17 ++++++++---------
 devel/py-openapi-core/distinfo             |  6 +++---
 devel/py-openapi-core/files/patch-dictpath | 29 -----------------------------
 3 files changed, 11 insertions(+), 41 deletions(-)

diff --git a/devel/py-openapi-core/Makefile b/devel/py-openapi-core/Makefile
index ae99358665c5..413937e1b963 100644
--- a/devel/py-openapi-core/Makefile
+++ b/devel/py-openapi-core/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	openapi-core
-PORTVERSION=	0.14.5
+PORTVERSION=	0.15.0
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -11,17 +11,16 @@ WWW=		https://github.com/p1c2u/openapi-core
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}attrs>=0:devel/py-attrs@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}isodate>=0:devel/py-isodate@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}lazy-object-proxy>=0:devel/py-lazy-object-proxy@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}isodate>=0:devel/py-isodate@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}more-itertools>=0:devel/py-more-itertools@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}openapi-schema-validator02>=0<0.3.0:devel/py-openapi-schema-validator02@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}openapi-spec-validator04>=0<0.5.0:devel/py-openapi-spec-validator04@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}openapi-schema-validator02>=0.2.0<0.3.0:devel/py-openapi-schema-validator02@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}openapi-spec-validator04>=0.4.0<0.5.0:devel/py-openapi-spec-validator04@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}parse>=0:textproc/py-parse@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}pathable>=0:devel/py-pathable@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}pathable>=0.4.0<0.5.0:devel/py-pathable@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.3.0<5.0.0:devel/py-typing-extensions@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}werkzeug>=0:www/py-werkzeug@${PY_FLAVOR}
 
-USES=		python:3.5+
+USES=		python:3.7+
 USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes
diff --git a/devel/py-openapi-core/distinfo b/devel/py-openapi-core/distinfo
index 935f1d38beea..b668b4d3f7de 100644
--- a/devel/py-openapi-core/distinfo
+++ b/devel/py-openapi-core/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1662212160
-SHA256 (openapi-core-0.14.5.tar.gz) = 4b1dd7a21a9545f8a3a932240e2cc9a53f564d080f462d0f8953eb272b77df0c
-SIZE (openapi-core-0.14.5.tar.gz) = 25924
+TIMESTAMP = 1663672842
+SHA256 (openapi-core-0.15.0.tar.gz) = bb386117ce860ad0471c3d31180e20baf3ae53530f250ced6e78bacf96706dff
+SIZE (openapi-core-0.15.0.tar.gz) = 32588
diff --git a/devel/py-openapi-core/files/patch-dictpath b/devel/py-openapi-core/files/patch-dictpath
deleted file mode 100644
index 756ac5c1dbbb..000000000000
--- a/devel/py-openapi-core/files/patch-dictpath
+++ /dev/null
@@ -1,29 +0,0 @@
---- openapi_core/spec/accessors.py.orig	2022-09-02 20:04:02 UTC
-+++ openapi_core/spec/accessors.py
-@@ -1,6 +1,6 @@
- from contextlib import contextmanager
- 
--from dictpath.accessors import DictOrListAccessor
-+from pathable.accessors import DictOrListAccessor
- 
- 
- class SpecAccessor(DictOrListAccessor):
---- openapi_core/spec/paths.py.orig	2022-09-02 20:04:02 UTC
-+++ openapi_core/spec/paths.py
-@@ -1,4 +1,4 @@
--from dictpath.paths import AccessorPath
-+from pathable.paths import AccessorPath
- 
- from openapi_core.spec.accessors import SpecAccessor
- 
---- setup.cfg.orig	2022-09-02 20:04:16 UTC
-+++ setup.cfg
-@@ -27,7 +27,7 @@ setup_requires = 
- 	setuptools
- install_requires = 
- 	isodate
--	dictpath
-+	pathable
- 	openapi-spec-validator < 0.5.0
- 	openapi-schema-validator < 0.3.0
- 	six



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202210030225.2932Pdhk098311>