pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/pax-utils



Module Name:    pkgsrc
Committed By:   fcambus
Date:           Thu Feb  9 17:14:35 UTC 2023

Modified Files:
        pkgsrc/devel/pax-utils: Makefile

Log Message:
pax-utils: use the sh implementation for lddtree.

It's a bit slower, but the Python implementation can't find libraries
on NetBSD so it doesn't work properly. As an upside, we can drop
the dependency on Python and devel/py-pyelftools.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/pax-utils/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/pax-utils/Makefile
diff -u pkgsrc/devel/pax-utils/Makefile:1.8 pkgsrc/devel/pax-utils/Makefile:1.9
--- pkgsrc/devel/pax-utils/Makefile:1.8 Tue Jan 31 14:44:50 2023
+++ pkgsrc/devel/pax-utils/Makefile     Thu Feb  9 17:14:35 2023
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2023/01/31 14:44:50 fcambus Exp $
+# $NetBSD: Makefile,v 1.9 2023/02/09 17:14:35 fcambus Exp $
 
 DISTNAME=      pax-utils-1.3.7
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    devel
 MASTER_SITES=  https://dev.gentoo.org/~sam/distfiles/app-misc/pax-utils/
 EXTRACT_SUFX=  .tar.xz
@@ -13,10 +13,9 @@ LICENSE=     gnu-gpl-v2
 
 USE_TOOLS+=            bash:run gmake gsed
 REPLACE_BASH+=         symtree.sh
-REPLACE_PYTHON+=       lddtree.py
+REPLACE_BASH+=         lddtree.sh
 
-DEPENDS+=      ${PYPKGPREFIX}-pyelftools-[0-9]*:../../devel/py-pyelftools
+MESON_ARGS=    -Dlddtree_implementation=sh
 
 .include "../../devel/meson/build.mk"
-.include "../../lang/python/application.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index