pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-angr



Module Name:    pkgsrc
Committed By:   mef
Date:           Sun Jun  6 01:36:13 UTC 2021

Modified Files:
        pkgsrc/devel/py-angr: Makefile

Log Message:
(devel/py-angr) Fix build by adding LDFLAGS+=  rpath link to pyvex/lib

The error message was:

=> Checking file-check results for py38-angr-9.0.7491
=> Checking for non-existent script interpreters in py38-angr-9.0.7491
=> Checking file permissions in py38-angr-9.0.7491
=> Checking for missing run-time search paths in py38-angr-9.0.7491
ERROR: lib/python3.8/site-packages/angr/lib/angr_native.so: missing library: libpyvex.so
*** Error code 1


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-angr/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/py-angr/Makefile
diff -u pkgsrc/devel/py-angr/Makefile:1.8 pkgsrc/devel/py-angr/Makefile:1.9
--- pkgsrc/devel/py-angr/Makefile:1.8   Tue Sep 29 04:06:46 2020
+++ pkgsrc/devel/py-angr/Makefile       Sun Jun  6 01:36:13 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2020/09/29 04:06:46 khorben Exp $
+# $NetBSD: Makefile,v 1.9 2021/06/06 01:36:13 mef Exp $
 
 .include "version.mk"
 
@@ -32,6 +32,7 @@ USE_LANGUAGES+=       c c++
 USE_TOOLS+=    gmake
 
 MAKE_FLAGS+=   LIBDIR=${LIBDIR:Q}
+LDFLAGS+=      ${COMPILER_RPATH_FLAG}${PREFIX}/${PYSITELIB:Q}/pyvex/lib
 
 DEPENDS+=      ${PYPKGPREFIX}-CppHeaderParser-[0-9]*:../../devel/py-CppHeaderParser
 DEPENDS+=      ${PYPKGPREFIX}-archinfo>=${ANGR_VERSION}:../../devel/py-archinfo



Home | Main Index | Thread Index | Old Index