pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/mongodb3



Module Name:    pkgsrc
Committed By:   nia
Date:           Sun Aug  4 10:11:11 UTC 2024

Modified Files:
        pkgsrc/databases/mongodb3: distinfo
Added Files:
        pkgsrc/databases/mongodb3/patches:
            patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp

Log Message:
mongodb3: Work around a bug in NetBSD 9 and prior where GCC was shipped
without the experimental headers.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/mongodb3/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/databases/mongodb3/patches/patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp

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

Modified files:

Index: pkgsrc/databases/mongodb3/distinfo
diff -u pkgsrc/databases/mongodb3/distinfo:1.15 pkgsrc/databases/mongodb3/distinfo:1.16
--- pkgsrc/databases/mongodb3/distinfo:1.15     Mon Jul 24 18:43:46 2023
+++ pkgsrc/databases/mongodb3/distinfo  Sun Aug  4 10:11:10 2024
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.15 2023/07/24 18:43:46 wiz Exp $
+$NetBSD: distinfo,v 1.16 2024/08/04 10:11:10 nia Exp $
 
 BLAKE2s (mongodb-src-r3.4.24.tar.gz) = 157cc185a10426e31470a7fd97922bdc13ea9d19e85e98b5fcc0075e997d1e9a
 SHA512 (mongodb-src-r3.4.24.tar.gz) = c19d5215f514ad0c1bd33f17f9d79198e07657260c0a8399c9a84bbf274ec4f6e61a94b36bb132e93a46e96ee8b4d994a1bed70b2d26f906ffe8e78343394226
@@ -23,6 +23,7 @@ SHA1 (patch-src_third__party_IntelRDFPMa
 SHA1 (patch-src_third__party_IntelRDFPMathLib20U1_LIBRARY_src_bid__functions.h) = d3a85d3a3b33691466c65cdf51c56f221429aea9
 SHA1 (patch-src_third__party_IntelRDFPMathLib20U1_SConscript) = e87f507c4585050bed5ff47fb1a07113d5690fd5
 SHA1 (patch-src_third__party_asio-master_asio_include_asio_detail_impl_kqueue__reactor.ipp) = b942286acd85ca8cf5fd03bc9f70a5dff0943243
+SHA1 (patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp) = 2ac04cee8f9d521404489abb114f3c634f49cbe2
 SHA1 (patch-src_third__party_mozjs-38_platform_x86__64_netbsd_build_js-confdefs.h) = c2ad1041b5c1ff9fac9085d2a8963781f51873a8
 SHA1 (patch-src_third__party_mozjs-38_platform_x86__64_netbsd_include_js-config.h) = 7ddbb4e3bf4126a1be2195acc82ff859e8130a01
 SHA1 (patch-src_third__party_s2_base_port.h) = 892ce91b5aaa432f34e1e7c169b7fd6eea2a3e94

Added files:

Index: pkgsrc/databases/mongodb3/patches/patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp
diff -u /dev/null pkgsrc/databases/mongodb3/patches/patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp:1.1
--- /dev/null   Sun Aug  4 10:11:11 2024
+++ pkgsrc/databases/mongodb3/patches/patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp      Sun Aug  4 10:11:11 2024
@@ -0,0 +1,16 @@
+$NetBSD: patch-src_third__party_asio-master_asio_include_asio_detail_string__view.hpp,v 1.1 2024/08/04 10:11:11 nia Exp $
+
+Work around a bug in NetBSD 9 and prior where GCC was shipped without
+the experimental headers.
+
+--- src/third_party/asio-master/asio/include/asio/detail/string_view.hpp.orig  2024-08-04 10:09:11.263644509 +0000
++++ src/third_party/asio-master/asio/include/asio/detail/string_view.hpp
+@@ -19,7 +19,7 @@
+ 
+ #if defined(ASIO_HAS_STD_STRING_VIEW)
+ 
+-#if defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW)
++#if defined(ASIO_HAS_STD_EXPERIMENTAL_STRING_VIEW) && !defined(__NetBSD__)
+ # include <experimental/string_view>
+ #else // defined(ASIO_HAS_EXPERIMENTAL_STRING_VIEW)
+ # include <string_view>



Home | Main Index | Thread Index | Old Index