Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Mar 2021 08:47:18 +0000 (UTC)
From:      Kai Knoblich <kai@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r568908 - head/net/nsscache
Message-ID:  <202103210847.12L8lIrx099320@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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} \



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