svn commit: r568909 - head/sysutils/angrysearch

Kai Knoblich kai at FreeBSD.org
Sun Mar 21 08:53:36 UTC 2021


Author: kai
Date: Sun Mar 21 08:53:35 2021
New Revision: 568909
URL: https://svnweb.freebsd.org/changeset/ports/568909

Log:
  sysutils/angrysearch: 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 databases/py-sqlite3
    instead of the actual .so file itself.
  
  PR:		254425
  Approved by:	danfe (maintainer)

Modified:
  head/sysutils/angrysearch/Makefile

Modified: head/sysutils/angrysearch/Makefile
==============================================================================
--- head/sysutils/angrysearch/Makefile	Sun Mar 21 08:47:17 2021	(r568908)
+++ head/sysutils/angrysearch/Makefile	Sun Mar 21 08:53:35 2021	(r568909)
@@ -12,7 +12,7 @@ COMMENT=	Quick search GUI tool for Unix-like systems
 LICENSE=	GPLv2
 
 RUN_DEPENDS=	xdg-open:devel/xdg-utils \
-		${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so:databases/py-sqlite3@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR}
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	DoTheEvo


More information about the svn-ports-head mailing list