pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: wiz
Date: Tue Oct 21 07:53:10 UTC 2025
Modified Files:
pkgsrc/devel/boost-headers: Makefile
pkgsrc/meta-pkgs/boost: distinfo
Added Files:
pkgsrc/meta-pkgs/boost/patches:
patch-boost_dll_detail_posix_program__location__impl.hpp
Log Message:
boost-headers: fix a bug in the dll module
Fixes the build of uhd.
Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 pkgsrc/devel/boost-headers/Makefile
cvs rdiff -u -r1.157 -r1.158 pkgsrc/meta-pkgs/boost/distinfo
cvs rdiff -u -r0 -r1.1 \
pkgsrc/meta-pkgs/boost/patches/patch-boost_dll_detail_posix_program__location__impl.hpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/boost-headers/Makefile
diff -u pkgsrc/devel/boost-headers/Makefile:1.70 pkgsrc/devel/boost-headers/Makefile:1.71
--- pkgsrc/devel/boost-headers/Makefile:1.70 Sat Sep 27 06:54:04 2025
+++ pkgsrc/devel/boost-headers/Makefile Tue Oct 21 07:53:10 2025
@@ -1,9 +1,11 @@
-# $NetBSD: Makefile,v 1.70 2025/09/27 06:54:04 adam Exp $
+# $NetBSD: Makefile,v 1.71 2025/10/21 07:53:10 wiz Exp $
BOOST_PACKAGE= headers
BOOST_COMMENT= (build-time headers)
BOOST_CONFIG= generate
+PKGREVISION= 1
+
.include "../../meta-pkgs/boost/Makefile.common"
BJAM_ARGS+= --without-\*
Index: pkgsrc/meta-pkgs/boost/distinfo
diff -u pkgsrc/meta-pkgs/boost/distinfo:1.157 pkgsrc/meta-pkgs/boost/distinfo:1.158
--- pkgsrc/meta-pkgs/boost/distinfo:1.157 Sat Sep 27 06:54:03 2025
+++ pkgsrc/meta-pkgs/boost/distinfo Tue Oct 21 07:53:10 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.157 2025/09/27 06:54:03 adam Exp $
+$NetBSD: distinfo,v 1.158 2025/10/21 07:53:10 wiz Exp $
BLAKE2s (boost_1_89_0.tar.bz2) = 4463aaf9d80b5ede6a9fbac6edf7d5f81d4bc636893f6742f6ddd8b31876004b
SHA512 (boost_1_89_0.tar.bz2) = 5153fe92372c40afb400482c5dcb6043d3f64ad58b8e579d8f8a9a9c3dc66737a567ad8ccaa45c49ea02166ef9283c4904700d25971742d9b5fdf39b21fb2aa7
@@ -13,6 +13,7 @@ SHA1 (patch-boost_config_stdlib_libcpp.h
SHA1 (patch-boost_config_stdlib_libstdcpp3.hpp) = 52ebedd5e80b3a8c257eccb28cd2db76cb1ca01e
SHA1 (patch-boost_core_noncopyable.hpp) = 63a3c2fc0bc85af77ff8bc17ad3a21ef0bc398c1
SHA1 (patch-boost_core_uncaught__exceptions.hpp) = eba82062750f4e09bcef467476e8c4abd125f7b6
+SHA1 (patch-boost_dll_detail_posix_program__location__impl.hpp) = 4a5b062bf32a35b1525bad505d425be6f4aaa03e
SHA1 (patch-boost_math_tools_config.hpp) = 1b467a38081fe5e2e3004bca9a6aec7106edb006
SHA1 (patch-boost_math_tools_promotion.hpp) = d1079940594f7ffe7e70db6f61bba633b8fb31e5
SHA1 (patch-boost_numeric_ublas_storage.hpp) = 282b5a3b5d09216ded14fae166169d64db72590e
Added files:
Index: pkgsrc/meta-pkgs/boost/patches/patch-boost_dll_detail_posix_program__location__impl.hpp
diff -u /dev/null pkgsrc/meta-pkgs/boost/patches/patch-boost_dll_detail_posix_program__location__impl.hpp:1.1
--- /dev/null Tue Oct 21 07:53:10 2025
+++ pkgsrc/meta-pkgs/boost/patches/patch-boost_dll_detail_posix_program__location__impl.hpp Tue Oct 21 07:53:10 2025
@@ -0,0 +1,18 @@
+$NetBSD: patch-boost_dll_detail_posix_program__location__impl.hpp,v 1.1 2025/10/21 07:53:10 wiz Exp $
+
+Fix build error in this file.
+
+--- boost/dll/detail/posix/program_location_impl.hpp.orig 2025-10-21 07:45:26.595305483 +0000
++++ boost/dll/detail/posix/program_location_impl.hpp
+@@ -100,7 +100,10 @@ namespace boost { namespace dll { namesp
+
+ namespace boost { namespace dll { namespace detail {
+ inline boost::dll::fs::path program_location_impl(std::error_code &ec) {
+- return boost::dll::fs::read_symlink("/proc/curproc/exe", ec);
++ boost::dll::fs::error_code fs_errc;
++ auto result = boost::dll::fs::read_symlink("/proc/curproc/exe", fs_errc);
++ ec = fs_errc;
++ return result;
+ }
+ }}} // namespace boost::dll::detail
+
Home |
Main Index |
Thread Index |
Old Index