pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/py-boost
Module Name: pkgsrc
Committed By: riastradh
Date: Sun Jan 26 06:47:38 UTC 2025
Modified Files:
pkgsrc/devel/py-boost: Makefile
Log Message:
devel/py-boost: Need boost-libs to satisfy REQUIRES dependencies.
Resolves:
=> Checking for missing run-time search paths in py313-boost-1.87.0nb1
ERROR: lib/libboost_numpy313.so.1.87.0: missing library: libboost_container.so.1.87.0
ERROR: lib/libboost_numpy313.so.1.87.0: missing library: libboost_graph.so.1.87.0
ERROR: lib/libboost_python313.so.1.87.0: missing library: libboost_graph.so.1.87.0
ERROR: lib/libboost_python313.so.1.87.0: missing library: libboost_container.so.1.87.0
*** Error code 1
It's kind of kooky that we build boost-graph and boost-container as
part of the boost-python build, and then delete them, instead of
reusing them from boost-libs, but finding a way to do that will
require wading into the boost build system. So let's just try to
make sure they're available for REQUIRES/PROVIDES analysis.
Adding this dependency is unlikely to be onerous -- applications
using boost-python are almost certainly going to need the rest of
boost anyway (and they already needed it for boost-graph and
boost-container!).
To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/py-boost/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-boost/Makefile
diff -u pkgsrc/devel/py-boost/Makefile:1.25 pkgsrc/devel/py-boost/Makefile:1.26
--- pkgsrc/devel/py-boost/Makefile:1.25 Thu Jan 23 19:37:41 2025
+++ pkgsrc/devel/py-boost/Makefile Sun Jan 26 06:47:38 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2025/01/23 19:37:41 riastradh Exp $
+# $NetBSD: Makefile,v 1.26 2025/01/26 06:47:38 riastradh Exp $
BOOST_PACKAGE= python
BOOST_COMMENT= (Boost.Python binary library)
@@ -50,6 +50,8 @@ post-install:
${RM} -f ${DESTDIR}${PREFIX}/lib/libboost_*container.*
${RM} -f ${DESTDIR}${PREFIX}/lib/libboost_*graph.*
+BUILDLINK_API_DEPENDS.boost-libs+= boost-libs-${BOOST_VERSION}{,nb[0-9]*}
+.include "../../devel/boost-libs/buildlink3.mk"
.include "../../devel/py-boost-cmake/buildlink3.mk"
.include "../../math/py-numpy/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Home |
Main Index |
Thread Index |
Old Index