Date: Sun, 21 Mar 2021 08:53:36 +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: r568909 - head/sysutils/angrysearch Message-ID: <202103210853.12L8rap1005194@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103210853.12L8rap1005194>