svn commit: r568908 - head/net/nsscache

Kai Knoblich kai at FreeBSD.org
Sun Mar 21 08:47:18 UTC 2021


Author: kai
Date: Sun Mar 21 08:47:17 2021
New Revision: 568908
URL: https://svnweb.freebsd.org/changeset/ports/568908

Log:
  net/nsscache: Adjust RUN_DEPENDS for Python 3.8.7 and onward
  
  * Since Python 3.8.7 (and also 3.9.2), .so files get an extension, e.g.
    ".cpython-38.so" if built with Python 3.8.
  
    Thus check for the presence of the package from ftp/py-pycurl instead of
    the actual .so file itself.
  
  PR:		254424
  Approved by:	kbowling (maintainer)

Modified:
  head/net/nsscache/Makefile

Modified: head/net/nsscache/Makefile
==============================================================================
--- head/net/nsscache/Makefile	Sun Mar 21 08:34:45 2021	(r568907)
+++ head/net/nsscache/Makefile	Sun Mar 21 08:47:17 2021	(r568908)
@@ -15,7 +15,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}boto3>0:www/py-boto3@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}bsddb3>0:databases/py-bsddb3@${PY_FLAVOR} \
-		${PYTHON_SITELIBDIR}/pycurl.so:ftp/py-pycurl@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pycurl>0:ftp/py-pycurl@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}ldap>0:net/py-ldap@${PY_FLAVOR}
 TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \


More information about the svn-ports-head mailing list