svn commit: r545852 - in head/devel/py-astroid: . files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Aug 23 19:36:03 UTC 2020


Author: sunpoet
Date: Sun Aug 23 19:35:57 2020
New Revision: 545852
URL: https://svnweb.freebsd.org/changeset/ports/545852

Log:
  Fix build with py-lazy-object-proxy 1.5.0 update
  
  - Bump PORTREVISION for package change

Modified:
  head/devel/py-astroid/Makefile
  head/devel/py-astroid/files/patch-astroid-__pkginfo__.py

Modified: head/devel/py-astroid/Makefile
==============================================================================
--- head/devel/py-astroid/Makefile	Sun Aug 23 19:35:52 2020	(r545851)
+++ head/devel/py-astroid/Makefile	Sun Aug 23 19:35:57 2020	(r545852)
@@ -2,6 +2,7 @@
 
 PORTNAME=	astroid
 PORTVERSION=	2.4.2
+PORTREVISION=	1
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -12,15 +13,15 @@ COMMENT=	Abstract syntax tree for Python with inferenc
 LICENSE=	LGPL21
 LICENSE_FILE=	${WRKSRC}/COPYING.LESSER
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lazy-object-proxy>=1.4<1.5:devel/py-lazy-object-proxy@${PY_FLAVOR} \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}lazy-object-proxy>=1.4:devel/py-lazy-object-proxy@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>=1.12<2:devel/py-six@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}typed-ast>=1.4.0<1.5:devel/py-typed-ast@${PY_FLAVOR} \
 		${PY_TYPING} \
-		${PYTHON_PKGNAMEPREFIX}wrapt>=1.11<1.13:devel/py-wrapt@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}wrapt>=1.11<2:devel/py-wrapt@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
 
 USES=		python:3.5+
-USE_PYTHON=	autoplist distutils
+USE_PYTHON=	autoplist concurrent distutils
 
 NO_ARCH=	yes
 

Modified: head/devel/py-astroid/files/patch-astroid-__pkginfo__.py
==============================================================================
--- head/devel/py-astroid/files/patch-astroid-__pkginfo__.py	Sun Aug 23 19:35:52 2020	(r545851)
+++ head/devel/py-astroid/files/patch-astroid-__pkginfo__.py	Sun Aug 23 19:35:57 2020	(r545852)
@@ -1,11 +1,11 @@
---- astroid/__pkginfo__.py.orig	2020-04-27 09:43:18 UTC
+--- astroid/__pkginfo__.py.orig	2020-06-08 06:51:41 UTC
 +++ astroid/__pkginfo__.py
-@@ -28,7 +28,7 @@ extras_require = {}
+@@ -26,7 +26,7 @@ numversion = tuple(int(elem) for elem in version.split
+ 
+ extras_require = {}
  install_requires = [
-     "lazy_object_proxy==1.4.*",
+-    "lazy_object_proxy==1.4.*",
++    "lazy_object_proxy>=1.4",
      "six~=1.12",
--    "wrapt~=1.11",
-+    "wrapt>=1.11.0,<1.13",
+     "wrapt~=1.11",
      'typed-ast>=1.4.0,<1.5;implementation_name== "cpython" and python_version<"3.8"',
- ]
- 


More information about the svn-ports-head mailing list