svn commit: r566802 - head/archivers/py-borgbackup

Dimitry Andric dim at FreeBSD.org
Sun Feb 28 19:51:25 UTC 2021


Author: dim (src committer)
Date: Sun Feb 28 19:51:24 2021
New Revision: 566802
URL: https://svnweb.freebsd.org/changeset/ports/566802

Log:
  Fix run-depends check for py-llfuse after shared libs naming change
  
  Newer python versions (after 3.8.7) have changed the names of extension
  shared libraries from ".so" to e.g. ".cpython-38.so". So for the FUSE
  option, now check for the py-llfuse package instead of the dynamic
  library llfuse.so.
  
  Approved by:    jjuanino at gmail.com (maintainer)
  PR:             253907
  MFH:            2021Q

Modified:
  head/archivers/py-borgbackup/Makefile

Modified: head/archivers/py-borgbackup/Makefile
==============================================================================
--- head/archivers/py-borgbackup/Makefile	Sun Feb 28 19:32:25 2021	(r566801)
+++ head/archivers/py-borgbackup/Makefile	Sun Feb 28 19:51:24 2021	(r566802)
@@ -3,6 +3,7 @@
 
 PORTNAME=	borgbackup
 DISTVERSION=	1.1.15
+PORTREVISION=	1
 CATEGORIES=	archivers python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -25,7 +26,7 @@ OPTIONS_DEFINE=		FUSE
 OPTIONS_DEFAULT=	FUSE
 
 FUSE_DESC=	Support to mount locally borg backup files
-FUSE_RUN_DEPENDS=	${PYTHONPREFIX_SITELIBDIR}/llfuse.so:devel/py-llfuse@${PY_FLAVOR}
+FUSE_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}llfuse>0:devel/py-llfuse@${PY_FLAVOR}
 
 post-install:
 	@${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/borg/ -name "*.so" \


More information about the svn-ports-all mailing list