pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/libpqxx



Module Name:    pkgsrc
Committed By:   prlw1
Date:           Thu Jan  4 21:35:41 UTC 2024

Modified Files:
        pkgsrc/databases/libpqxx: Makefile PLIST distinfo

Log Message:
Update libpqxx to 7.8.1

Note: given the previous choice to use
USE_CXX_FEATURES+=      c++17
don't attempt to use with a program using e.g. -std=c++20

7.8.1
 - Regenerate build files. Should fix ARM Mac build. (#715)
 - Reinstate `<ciso646>` that MSVC can't live with or without. (#713)
7.8.0
 - Streaming large data sets now benchmarks faster than similar C/libpq code!
 - New `array` class for easier parsing of SQL arrays.
 - Deprecating `stream_from`.  Use `transaction_base::stream()`.
 - Use `array_parser` only on comma-separated types, i.e. most of them. (#590)
 - Bumping requirements versions: need postgres 10.
 - Fix `array_parser` bug when parsing semicolon in an unquoted string.
 - Make some `zview` constructors `noexcept` if `string_view` does it.
 - Handle result status code for starting streaming replication.  (#631)
 - Faster text decoding and escaping in data streaming.  (#601)
 - Deprecate `basic_fieldstream` and `fieldstream`.
 - Deprecate `<<` operator inserting a field into an `ostream`.
 - New string conversion fields: `converts_to_string` & `converts_from_string`.
 - Ran `autoupdate` (because the autotools told me to).
 - Documentation tweak. (#584)
 - Typo in README.md. (#586)
 - Support `std::optional<std::string_view>` etc. in `stream_to`. (#596)
 - Remove support for single-quoted array/composite elements.  No such thing!
 - Optimise out a kink in composite field parser.
 - Work around build warning in MinGW: include `winsock2.h` before `windows.h`.
 - Drop some redundant encoding groups.
 - If CMake can't find libpq, fall back to pkg-config. (#664)
 - Work around spurious compile error on g++ pre-gcc-10. (#665)
 - Include `<pqxx/range>` and `<pqxx/time>` headers in `<pqxx/pqxx>`. (#667)
 - Don't use `std::function` as deleter for smart pointers.
 - Work around gcc compile error with regex + address sanitizer + analyzers.
 - Fix "double free" on exit when built as shared library on Debian. (#681)
 - Stop including `<ciso646>`; should be built into compilers. (#680)
 - New `broken_connection` exception subclass: `protocol_violation`. (#686)
 - Retired unused `blob_already_exists` exception class. (#686)
 - Support for `PQinitOpenSSL()`. (#678)
 - Slightly more helpful error for unsupported conversions. (#695)
 - Replace some C++ feature tests with C++20 feature macros.
 - Support moving of `stream_to`. (#706)
 - Incorporate `source_location` in exceptions.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 pkgsrc/databases/libpqxx/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/databases/libpqxx/PLIST
cvs rdiff -u -r1.16 -r1.17 pkgsrc/databases/libpqxx/distinfo

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

Modified files:

Index: pkgsrc/databases/libpqxx/Makefile
diff -u pkgsrc/databases/libpqxx/Makefile:1.42 pkgsrc/databases/libpqxx/Makefile:1.43
--- pkgsrc/databases/libpqxx/Makefile:1.42      Thu Sep 21 09:22:28 2023
+++ pkgsrc/databases/libpqxx/Makefile   Thu Jan  4 21:35:41 2024
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.42 2023/09/21 09:22:28 vins Exp $
+# $NetBSD: Makefile,v 1.43 2024/01/04 21:35:41 prlw1 Exp $
 
-DISTNAME=              libpqxx-7.7.4
-PKGREVISION=           1
+DISTNAME=              libpqxx-7.8.1
 CATEGORIES=            databases
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=jtv/}
 GITHUB_PROJECT=                libpqxx

Index: pkgsrc/databases/libpqxx/PLIST
diff -u pkgsrc/databases/libpqxx/PLIST:1.10 pkgsrc/databases/libpqxx/PLIST:1.11
--- pkgsrc/databases/libpqxx/PLIST:1.10 Thu Dec 29 22:24:48 2022
+++ pkgsrc/databases/libpqxx/PLIST      Thu Jan  4 21:35:41 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2022/12/29 22:24:48 prlw1 Exp $
+@comment $NetBSD: PLIST,v 1.11 2024/01/04 21:35:41 prlw1 Exp $
 include/pqxx/array
 include/pqxx/array.hxx
 include/pqxx/binarystring
@@ -24,6 +24,7 @@ include/pqxx/internal/array-composite.hx
 include/pqxx/internal/callgate.hxx
 include/pqxx/internal/concat.hxx
 include/pqxx/internal/conversions.hxx
+include/pqxx/internal/cxx-features.hxx
 include/pqxx/internal/encoding_group.hxx
 include/pqxx/internal/encodings.hxx
 include/pqxx/internal/gates/connection-errorhandler.hxx
@@ -31,6 +32,8 @@ include/pqxx/internal/gates/connection-l
 include/pqxx/internal/gates/connection-notification_receiver.hxx
 include/pqxx/internal/gates/connection-pipeline.hxx
 include/pqxx/internal/gates/connection-sql_cursor.hxx
+include/pqxx/internal/gates/connection-stream_from.hxx
+include/pqxx/internal/gates/connection-stream_to.hxx
 include/pqxx/internal/gates/connection-transaction.hxx
 include/pqxx/internal/gates/errorhandler-connection.hxx
 include/pqxx/internal/gates/icursor_iterator-icursorstream.hxx
@@ -51,6 +54,8 @@ include/pqxx/internal/result_iterator.hx
 include/pqxx/internal/sql_cursor.hxx
 include/pqxx/internal/statement_parameters.hxx
 include/pqxx/internal/stream_iterator.hxx
+include/pqxx/internal/stream_query.hxx
+include/pqxx/internal/stream_query_impl.hxx
 include/pqxx/internal/wait.hxx
 include/pqxx/isolation
 include/pqxx/isolation.hxx
@@ -145,236 +150,250 @@ ${PLIST.doc}share/doc/libpqxx/a00110_sou
 ${PLIST.doc}share/doc/libpqxx/a00113_source.html
 ${PLIST.doc}share/doc/libpqxx/a00116_source.html
 ${PLIST.doc}share/doc/libpqxx/a00119_source.html
-${PLIST.doc}share/doc/libpqxx/a00122_source.html
-${PLIST.doc}share/doc/libpqxx/a00125_source.html
-${PLIST.doc}share/doc/libpqxx/a00200_source.html
+${PLIST.doc}share/doc/libpqxx/a00194_source.html
+${PLIST.doc}share/doc/libpqxx/a00239.html
+${PLIST.doc}share/doc/libpqxx/a00240.html
+${PLIST.doc}share/doc/libpqxx/a00241.html
+${PLIST.doc}share/doc/libpqxx/a00242.html
+${PLIST.doc}share/doc/libpqxx/a00243.html
+${PLIST.doc}share/doc/libpqxx/a00244.html
 ${PLIST.doc}share/doc/libpqxx/a00245.html
 ${PLIST.doc}share/doc/libpqxx/a00246.html
 ${PLIST.doc}share/doc/libpqxx/a00247.html
 ${PLIST.doc}share/doc/libpqxx/a00248.html
-${PLIST.doc}share/doc/libpqxx/a00249.html
 ${PLIST.doc}share/doc/libpqxx/a00250.html
 ${PLIST.doc}share/doc/libpqxx/a00251.html
 ${PLIST.doc}share/doc/libpqxx/a00252.html
 ${PLIST.doc}share/doc/libpqxx/a00253.html
 ${PLIST.doc}share/doc/libpqxx/a00254.html
-${PLIST.doc}share/doc/libpqxx/a00256.html
-${PLIST.doc}share/doc/libpqxx/a00257.html
-${PLIST.doc}share/doc/libpqxx/a00258.html
-${PLIST.doc}share/doc/libpqxx/a00259.html
-${PLIST.doc}share/doc/libpqxx/a01089.html
-${PLIST.doc}share/doc/libpqxx/a01092.html
-${PLIST.doc}share/doc/libpqxx/a01093.html
-${PLIST.doc}share/doc/libpqxx/a01096.html
-${PLIST.doc}share/doc/libpqxx/a01097.html
-${PLIST.doc}share/doc/libpqxx/a01100.html
-${PLIST.doc}share/doc/libpqxx/a01101.html
-${PLIST.doc}share/doc/libpqxx/a01104.html
-${PLIST.doc}share/doc/libpqxx/a01105.html
-${PLIST.doc}share/doc/libpqxx/a01108.html
-${PLIST.doc}share/doc/libpqxx/a01109.html
-${PLIST.doc}share/doc/libpqxx/a01112.html
-${PLIST.doc}share/doc/libpqxx/a01113.html
-${PLIST.doc}share/doc/libpqxx/a01116.html
-${PLIST.doc}share/doc/libpqxx/a01117.html
-${PLIST.doc}share/doc/libpqxx/a01120.html
-${PLIST.doc}share/doc/libpqxx/a01121.html
-${PLIST.doc}share/doc/libpqxx/a01124.html
-${PLIST.doc}share/doc/libpqxx/a01125.html
-${PLIST.doc}share/doc/libpqxx/a01128.html
-${PLIST.doc}share/doc/libpqxx/a01129.html
-${PLIST.doc}share/doc/libpqxx/a01132.html
-${PLIST.doc}share/doc/libpqxx/a01133.html
-${PLIST.doc}share/doc/libpqxx/a01136.html
-${PLIST.doc}share/doc/libpqxx/a01137.html
-${PLIST.doc}share/doc/libpqxx/a01140.html
-${PLIST.doc}share/doc/libpqxx/a01141.html
-${PLIST.doc}share/doc/libpqxx/a01144.html
-${PLIST.doc}share/doc/libpqxx/a01145.html
-${PLIST.doc}share/doc/libpqxx/a01148.html
-${PLIST.doc}share/doc/libpqxx/a01149.html
-${PLIST.doc}share/doc/libpqxx/a01152.html
-${PLIST.doc}share/doc/libpqxx/a01153.html
-${PLIST.doc}share/doc/libpqxx/a01156.html
-${PLIST.doc}share/doc/libpqxx/a01157.html
-${PLIST.doc}share/doc/libpqxx/a01160.html
-${PLIST.doc}share/doc/libpqxx/a01161.html
-${PLIST.doc}share/doc/libpqxx/a01164.html
-${PLIST.doc}share/doc/libpqxx/a01165.html
-${PLIST.doc}share/doc/libpqxx/a01168.html
-${PLIST.doc}share/doc/libpqxx/a01169.html
-${PLIST.doc}share/doc/libpqxx/a01172.html
-${PLIST.doc}share/doc/libpqxx/a01173.html
-${PLIST.doc}share/doc/libpqxx/a01176.html
-${PLIST.doc}share/doc/libpqxx/a01177.html
-${PLIST.doc}share/doc/libpqxx/a01180.html
-${PLIST.doc}share/doc/libpqxx/a01181.html
-${PLIST.doc}share/doc/libpqxx/a01184.html
-${PLIST.doc}share/doc/libpqxx/a01185.html
-${PLIST.doc}share/doc/libpqxx/a01188.html
-${PLIST.doc}share/doc/libpqxx/a01189.html
-${PLIST.doc}share/doc/libpqxx/a01192.html
-${PLIST.doc}share/doc/libpqxx/a01193.html
-${PLIST.doc}share/doc/libpqxx/a01196.html
-${PLIST.doc}share/doc/libpqxx/a01197.html
-${PLIST.doc}share/doc/libpqxx/a01200.html
-${PLIST.doc}share/doc/libpqxx/a01201.html
-${PLIST.doc}share/doc/libpqxx/a01204.html
-${PLIST.doc}share/doc/libpqxx/a01205.html
-${PLIST.doc}share/doc/libpqxx/a01208.html
-${PLIST.doc}share/doc/libpqxx/a01209.html
-${PLIST.doc}share/doc/libpqxx/a01212.html
-${PLIST.doc}share/doc/libpqxx/a01213.html
-${PLIST.doc}share/doc/libpqxx/a01216.html
-${PLIST.doc}share/doc/libpqxx/a01217.html
-${PLIST.doc}share/doc/libpqxx/a01220.html
-${PLIST.doc}share/doc/libpqxx/a01221.html
-${PLIST.doc}share/doc/libpqxx/a01224.html
-${PLIST.doc}share/doc/libpqxx/a01225.html
-${PLIST.doc}share/doc/libpqxx/a01228.html
-${PLIST.doc}share/doc/libpqxx/a01229.html
-${PLIST.doc}share/doc/libpqxx/a01232.html
-${PLIST.doc}share/doc/libpqxx/a01233.html
-${PLIST.doc}share/doc/libpqxx/a01236.html
-${PLIST.doc}share/doc/libpqxx/a01237.html
-${PLIST.doc}share/doc/libpqxx/a01240.html
-${PLIST.doc}share/doc/libpqxx/a01241.html
-${PLIST.doc}share/doc/libpqxx/a01244.html
-${PLIST.doc}share/doc/libpqxx/a01245.html
-${PLIST.doc}share/doc/libpqxx/a01248.html
-${PLIST.doc}share/doc/libpqxx/a01249.html
-${PLIST.doc}share/doc/libpqxx/a01252.html
-${PLIST.doc}share/doc/libpqxx/a01253.html
-${PLIST.doc}share/doc/libpqxx/a01256.html
-${PLIST.doc}share/doc/libpqxx/a01257.html
-${PLIST.doc}share/doc/libpqxx/a01260.html
-${PLIST.doc}share/doc/libpqxx/a01261.html
-${PLIST.doc}share/doc/libpqxx/a01264.html
-${PLIST.doc}share/doc/libpqxx/a01265.html
-${PLIST.doc}share/doc/libpqxx/a01268.html
-${PLIST.doc}share/doc/libpqxx/a01269.html
-${PLIST.doc}share/doc/libpqxx/a01272.html
-${PLIST.doc}share/doc/libpqxx/a01273.html
-${PLIST.doc}share/doc/libpqxx/a01276.html
-${PLIST.doc}share/doc/libpqxx/a01277.html
-${PLIST.doc}share/doc/libpqxx/a01280.html
-${PLIST.doc}share/doc/libpqxx/a01281.html
-${PLIST.doc}share/doc/libpqxx/a01284.html
-${PLIST.doc}share/doc/libpqxx/a01285.html
-${PLIST.doc}share/doc/libpqxx/a01288.html
-${PLIST.doc}share/doc/libpqxx/a01289.html
-${PLIST.doc}share/doc/libpqxx/a01292.html
-${PLIST.doc}share/doc/libpqxx/a01293.html
-${PLIST.doc}share/doc/libpqxx/a01296.html
-${PLIST.doc}share/doc/libpqxx/a01297.html
-${PLIST.doc}share/doc/libpqxx/a01300.html
-${PLIST.doc}share/doc/libpqxx/a01301.html
-${PLIST.doc}share/doc/libpqxx/a01304.html
-${PLIST.doc}share/doc/libpqxx/a01305.html
-${PLIST.doc}share/doc/libpqxx/a01308.html
-${PLIST.doc}share/doc/libpqxx/a01309.html
-${PLIST.doc}share/doc/libpqxx/a01312.html
-${PLIST.doc}share/doc/libpqxx/a01313.html
-${PLIST.doc}share/doc/libpqxx/a01316.html
-${PLIST.doc}share/doc/libpqxx/a01317.html
-${PLIST.doc}share/doc/libpqxx/a01320.html
-${PLIST.doc}share/doc/libpqxx/a01321.html
-${PLIST.doc}share/doc/libpqxx/a01324.html
-${PLIST.doc}share/doc/libpqxx/a01325.html
-${PLIST.doc}share/doc/libpqxx/a01328.html
-${PLIST.doc}share/doc/libpqxx/a01329.html
-${PLIST.doc}share/doc/libpqxx/a01332.html
-${PLIST.doc}share/doc/libpqxx/a01333.html
-${PLIST.doc}share/doc/libpqxx/a01336.html
-${PLIST.doc}share/doc/libpqxx/a01337.html
-${PLIST.doc}share/doc/libpqxx/a01340.html
-${PLIST.doc}share/doc/libpqxx/a01341.html
-${PLIST.doc}share/doc/libpqxx/a01344.html
-${PLIST.doc}share/doc/libpqxx/a01345.html
-${PLIST.doc}share/doc/libpqxx/a01348.html
-${PLIST.doc}share/doc/libpqxx/a01349.html
-${PLIST.doc}share/doc/libpqxx/a01352.html
-${PLIST.doc}share/doc/libpqxx/a01353.html
-${PLIST.doc}share/doc/libpqxx/a01356.html
-${PLIST.doc}share/doc/libpqxx/a01357.html
-${PLIST.doc}share/doc/libpqxx/a01360.html
-${PLIST.doc}share/doc/libpqxx/a01361.html
-${PLIST.doc}share/doc/libpqxx/a01364.html
-${PLIST.doc}share/doc/libpqxx/a01369.html
-${PLIST.doc}share/doc/libpqxx/a01372.html
-${PLIST.doc}share/doc/libpqxx/a01373.html
-${PLIST.doc}share/doc/libpqxx/a01376.html
-${PLIST.doc}share/doc/libpqxx/a01377.html
-${PLIST.doc}share/doc/libpqxx/a01380.html
-${PLIST.doc}share/doc/libpqxx/a01381.html
-${PLIST.doc}share/doc/libpqxx/a01384.html
-${PLIST.doc}share/doc/libpqxx/a01385.html
-${PLIST.doc}share/doc/libpqxx/a01388.html
-${PLIST.doc}share/doc/libpqxx/a01389.html
-${PLIST.doc}share/doc/libpqxx/a01392.html
-${PLIST.doc}share/doc/libpqxx/a01393.html
-${PLIST.doc}share/doc/libpqxx/a01396.html
-${PLIST.doc}share/doc/libpqxx/a01397.html
-${PLIST.doc}share/doc/libpqxx/a01400.html
-${PLIST.doc}share/doc/libpqxx/a01401.html
-${PLIST.doc}share/doc/libpqxx/a01404.html
-${PLIST.doc}share/doc/libpqxx/a01405.html
-${PLIST.doc}share/doc/libpqxx/a01408.html
-${PLIST.doc}share/doc/libpqxx/a01412.html
-${PLIST.doc}share/doc/libpqxx/a01413.html
-${PLIST.doc}share/doc/libpqxx/a01416.html
-${PLIST.doc}share/doc/libpqxx/a01417.html
-${PLIST.doc}share/doc/libpqxx/a01420.html
-${PLIST.doc}share/doc/libpqxx/a01421.html
-${PLIST.doc}share/doc/libpqxx/a01424.html
-${PLIST.doc}share/doc/libpqxx/a01425.html
-${PLIST.doc}share/doc/libpqxx/a01428.html
-${PLIST.doc}share/doc/libpqxx/a01429.html
-${PLIST.doc}share/doc/libpqxx/a01432.html
-${PLIST.doc}share/doc/libpqxx/a01433.html
-${PLIST.doc}share/doc/libpqxx/a01436.html
-${PLIST.doc}share/doc/libpqxx/a01437.html
-${PLIST.doc}share/doc/libpqxx/a01440.html
-${PLIST.doc}share/doc/libpqxx/a01441.html
-${PLIST.doc}share/doc/libpqxx/a01444.html
-${PLIST.doc}share/doc/libpqxx/a01445.html
-${PLIST.doc}share/doc/libpqxx/a01448.html
-${PLIST.doc}share/doc/libpqxx/a01449.html
-${PLIST.doc}share/doc/libpqxx/a01452.html
-${PLIST.doc}share/doc/libpqxx/a01453.html
-${PLIST.doc}share/doc/libpqxx/a01456.html
-${PLIST.doc}share/doc/libpqxx/a01457.html
-${PLIST.doc}share/doc/libpqxx/a01460.html
-${PLIST.doc}share/doc/libpqxx/a01461.html
-${PLIST.doc}share/doc/libpqxx/a01464.html
-${PLIST.doc}share/doc/libpqxx/a01465.html
-${PLIST.doc}share/doc/libpqxx/a01468.html
-${PLIST.doc}share/doc/libpqxx/a01469.html
-${PLIST.doc}share/doc/libpqxx/a01472.html
-${PLIST.doc}share/doc/libpqxx/a01476.html
-${PLIST.doc}share/doc/libpqxx/a01480.html
-${PLIST.doc}share/doc/libpqxx/a01481.html
-${PLIST.doc}share/doc/libpqxx/a01484.html
-${PLIST.doc}share/doc/libpqxx/a01485.html
-${PLIST.doc}share/doc/libpqxx/a01488.html
-${PLIST.doc}share/doc/libpqxx/a01981.html
-${PLIST.doc}share/doc/libpqxx/a01982.html
-${PLIST.doc}share/doc/libpqxx/a01983.html
-${PLIST.doc}share/doc/libpqxx/a01984.html
-${PLIST.doc}share/doc/libpqxx/a01985.html
-${PLIST.doc}share/doc/libpqxx/a01986.html
-${PLIST.doc}share/doc/libpqxx/a01987.html
-${PLIST.doc}share/doc/libpqxx/a01988.html
-${PLIST.doc}share/doc/libpqxx/a01989.html
-${PLIST.doc}share/doc/libpqxx/a01990.html
+${PLIST.doc}share/doc/libpqxx/a01087.html
+${PLIST.doc}share/doc/libpqxx/a01090.html
+${PLIST.doc}share/doc/libpqxx/a01091.html
+${PLIST.doc}share/doc/libpqxx/a01094.html
+${PLIST.doc}share/doc/libpqxx/a01095.html
+${PLIST.doc}share/doc/libpqxx/a01098.html
+${PLIST.doc}share/doc/libpqxx/a01099.html
+${PLIST.doc}share/doc/libpqxx/a01102.html
+${PLIST.doc}share/doc/libpqxx/a01103.html
+${PLIST.doc}share/doc/libpqxx/a01106.html
+${PLIST.doc}share/doc/libpqxx/a01107.html
+${PLIST.doc}share/doc/libpqxx/a01110.html
+${PLIST.doc}share/doc/libpqxx/a01111.html
+${PLIST.doc}share/doc/libpqxx/a01114.html
+${PLIST.doc}share/doc/libpqxx/a01115.html
+${PLIST.doc}share/doc/libpqxx/a01118.html
+${PLIST.doc}share/doc/libpqxx/a01119.html
+${PLIST.doc}share/doc/libpqxx/a01122.html
+${PLIST.doc}share/doc/libpqxx/a01123.html
+${PLIST.doc}share/doc/libpqxx/a01126.html
+${PLIST.doc}share/doc/libpqxx/a01127.html
+${PLIST.doc}share/doc/libpqxx/a01130.html
+${PLIST.doc}share/doc/libpqxx/a01131.html
+${PLIST.doc}share/doc/libpqxx/a01134.html
+${PLIST.doc}share/doc/libpqxx/a01135.html
+${PLIST.doc}share/doc/libpqxx/a01138.html
+${PLIST.doc}share/doc/libpqxx/a01139.html
+${PLIST.doc}share/doc/libpqxx/a01142.html
+${PLIST.doc}share/doc/libpqxx/a01143.html
+${PLIST.doc}share/doc/libpqxx/a01146.html
+${PLIST.doc}share/doc/libpqxx/a01147.html
+${PLIST.doc}share/doc/libpqxx/a01150.html
+${PLIST.doc}share/doc/libpqxx/a01151.html
+${PLIST.doc}share/doc/libpqxx/a01154.html
+${PLIST.doc}share/doc/libpqxx/a01155.html
+${PLIST.doc}share/doc/libpqxx/a01158.html
+${PLIST.doc}share/doc/libpqxx/a01159.html
+${PLIST.doc}share/doc/libpqxx/a01162.html
+${PLIST.doc}share/doc/libpqxx/a01163.html
+${PLIST.doc}share/doc/libpqxx/a01166.html
+${PLIST.doc}share/doc/libpqxx/a01167.html
+${PLIST.doc}share/doc/libpqxx/a01170.html
+${PLIST.doc}share/doc/libpqxx/a01171.html
+${PLIST.doc}share/doc/libpqxx/a01174.html
+${PLIST.doc}share/doc/libpqxx/a01175.html
+${PLIST.doc}share/doc/libpqxx/a01178.html
+${PLIST.doc}share/doc/libpqxx/a01179.html
+${PLIST.doc}share/doc/libpqxx/a01182.html
+${PLIST.doc}share/doc/libpqxx/a01183.html
+${PLIST.doc}share/doc/libpqxx/a01186.html
+${PLIST.doc}share/doc/libpqxx/a01187.html
+${PLIST.doc}share/doc/libpqxx/a01190.html
+${PLIST.doc}share/doc/libpqxx/a01191.html
+${PLIST.doc}share/doc/libpqxx/a01194.html
+${PLIST.doc}share/doc/libpqxx/a01195.html
+${PLIST.doc}share/doc/libpqxx/a01198.html
+${PLIST.doc}share/doc/libpqxx/a01199.html
+${PLIST.doc}share/doc/libpqxx/a01202.html
+${PLIST.doc}share/doc/libpqxx/a01203.html
+${PLIST.doc}share/doc/libpqxx/a01206.html
+${PLIST.doc}share/doc/libpqxx/a01207.html
+${PLIST.doc}share/doc/libpqxx/a01210.html
+${PLIST.doc}share/doc/libpqxx/a01211.html
+${PLIST.doc}share/doc/libpqxx/a01214.html
+${PLIST.doc}share/doc/libpqxx/a01215.html
+${PLIST.doc}share/doc/libpqxx/a01218.html
+${PLIST.doc}share/doc/libpqxx/a01219.html
+${PLIST.doc}share/doc/libpqxx/a01222.html
+${PLIST.doc}share/doc/libpqxx/a01223.html
+${PLIST.doc}share/doc/libpqxx/a01226.html
+${PLIST.doc}share/doc/libpqxx/a01227.html
+${PLIST.doc}share/doc/libpqxx/a01230.html
+${PLIST.doc}share/doc/libpqxx/a01231.html
+${PLIST.doc}share/doc/libpqxx/a01234.html
+${PLIST.doc}share/doc/libpqxx/a01235.html
+${PLIST.doc}share/doc/libpqxx/a01238.html
+${PLIST.doc}share/doc/libpqxx/a01239.html
+${PLIST.doc}share/doc/libpqxx/a01242.html
+${PLIST.doc}share/doc/libpqxx/a01243.html
+${PLIST.doc}share/doc/libpqxx/a01246.html
+${PLIST.doc}share/doc/libpqxx/a01247.html
+${PLIST.doc}share/doc/libpqxx/a01250.html
+${PLIST.doc}share/doc/libpqxx/a01251.html
+${PLIST.doc}share/doc/libpqxx/a01254.html
+${PLIST.doc}share/doc/libpqxx/a01255.html
+${PLIST.doc}share/doc/libpqxx/a01258.html
+${PLIST.doc}share/doc/libpqxx/a01259.html
+${PLIST.doc}share/doc/libpqxx/a01262.html
+${PLIST.doc}share/doc/libpqxx/a01263.html
+${PLIST.doc}share/doc/libpqxx/a01266.html
+${PLIST.doc}share/doc/libpqxx/a01267.html
+${PLIST.doc}share/doc/libpqxx/a01270.html
+${PLIST.doc}share/doc/libpqxx/a01271.html
+${PLIST.doc}share/doc/libpqxx/a01274.html
+${PLIST.doc}share/doc/libpqxx/a01275.html
+${PLIST.doc}share/doc/libpqxx/a01278.html
+${PLIST.doc}share/doc/libpqxx/a01279.html
+${PLIST.doc}share/doc/libpqxx/a01282.html
+${PLIST.doc}share/doc/libpqxx/a01283.html
+${PLIST.doc}share/doc/libpqxx/a01286.html
+${PLIST.doc}share/doc/libpqxx/a01287.html
+${PLIST.doc}share/doc/libpqxx/a01290.html
+${PLIST.doc}share/doc/libpqxx/a01291.html
+${PLIST.doc}share/doc/libpqxx/a01294.html
+${PLIST.doc}share/doc/libpqxx/a01295.html
+${PLIST.doc}share/doc/libpqxx/a01298.html
+${PLIST.doc}share/doc/libpqxx/a01299.html
+${PLIST.doc}share/doc/libpqxx/a01302.html
+${PLIST.doc}share/doc/libpqxx/a01303.html
+${PLIST.doc}share/doc/libpqxx/a01306.html
+${PLIST.doc}share/doc/libpqxx/a01307.html
+${PLIST.doc}share/doc/libpqxx/a01310.html
+${PLIST.doc}share/doc/libpqxx/a01311.html
+${PLIST.doc}share/doc/libpqxx/a01314.html
+${PLIST.doc}share/doc/libpqxx/a01315.html
+${PLIST.doc}share/doc/libpqxx/a01318.html
+${PLIST.doc}share/doc/libpqxx/a01319.html
+${PLIST.doc}share/doc/libpqxx/a01322.html
+${PLIST.doc}share/doc/libpqxx/a01323.html
+${PLIST.doc}share/doc/libpqxx/a01326.html
+${PLIST.doc}share/doc/libpqxx/a01327.html
+${PLIST.doc}share/doc/libpqxx/a01330.html
+${PLIST.doc}share/doc/libpqxx/a01331.html
+${PLIST.doc}share/doc/libpqxx/a01334.html
+${PLIST.doc}share/doc/libpqxx/a01335.html
+${PLIST.doc}share/doc/libpqxx/a01338.html
+${PLIST.doc}share/doc/libpqxx/a01339.html
+${PLIST.doc}share/doc/libpqxx/a01342.html
+${PLIST.doc}share/doc/libpqxx/a01343.html
+${PLIST.doc}share/doc/libpqxx/a01346.html
+${PLIST.doc}share/doc/libpqxx/a01347.html
+${PLIST.doc}share/doc/libpqxx/a01350.html
+${PLIST.doc}share/doc/libpqxx/a01351.html
+${PLIST.doc}share/doc/libpqxx/a01354.html
+${PLIST.doc}share/doc/libpqxx/a01355.html
+${PLIST.doc}share/doc/libpqxx/a01358.html
+${PLIST.doc}share/doc/libpqxx/a01359.html
+${PLIST.doc}share/doc/libpqxx/a01362.html
+${PLIST.doc}share/doc/libpqxx/a01363.html
+${PLIST.doc}share/doc/libpqxx/a01366.html
+${PLIST.doc}share/doc/libpqxx/a01367.html
+${PLIST.doc}share/doc/libpqxx/a01370.html
+${PLIST.doc}share/doc/libpqxx/a01375.html
+${PLIST.doc}share/doc/libpqxx/a01378.html
+${PLIST.doc}share/doc/libpqxx/a01379.html
+${PLIST.doc}share/doc/libpqxx/a01382.html
+${PLIST.doc}share/doc/libpqxx/a01383.html
+${PLIST.doc}share/doc/libpqxx/a01386.html
+${PLIST.doc}share/doc/libpqxx/a01387.html
+${PLIST.doc}share/doc/libpqxx/a01390.html
+${PLIST.doc}share/doc/libpqxx/a01391.html
+${PLIST.doc}share/doc/libpqxx/a01394.html
+${PLIST.doc}share/doc/libpqxx/a01395.html
+${PLIST.doc}share/doc/libpqxx/a01398.html
+${PLIST.doc}share/doc/libpqxx/a01399.html
+${PLIST.doc}share/doc/libpqxx/a01402.html
+${PLIST.doc}share/doc/libpqxx/a01403.html
+${PLIST.doc}share/doc/libpqxx/a01406.html
+${PLIST.doc}share/doc/libpqxx/a01407.html
+${PLIST.doc}share/doc/libpqxx/a01410.html
+${PLIST.doc}share/doc/libpqxx/a01411.html
+${PLIST.doc}share/doc/libpqxx/a01414.html
+${PLIST.doc}share/doc/libpqxx/a01418.html
+${PLIST.doc}share/doc/libpqxx/a01419.html
+${PLIST.doc}share/doc/libpqxx/a01422.html
+${PLIST.doc}share/doc/libpqxx/a01423.html
+${PLIST.doc}share/doc/libpqxx/a01426.html
+${PLIST.doc}share/doc/libpqxx/a01427.html
+${PLIST.doc}share/doc/libpqxx/a01430.html
+${PLIST.doc}share/doc/libpqxx/a01431.html
+${PLIST.doc}share/doc/libpqxx/a01434.html
+${PLIST.doc}share/doc/libpqxx/a01435.html
+${PLIST.doc}share/doc/libpqxx/a01438.html
+${PLIST.doc}share/doc/libpqxx/a01439.html
+${PLIST.doc}share/doc/libpqxx/a01442.html
+${PLIST.doc}share/doc/libpqxx/a01443.html
+${PLIST.doc}share/doc/libpqxx/a01446.html
+${PLIST.doc}share/doc/libpqxx/a01447.html
+${PLIST.doc}share/doc/libpqxx/a01450.html
+${PLIST.doc}share/doc/libpqxx/a01451.html
+${PLIST.doc}share/doc/libpqxx/a01454.html
+${PLIST.doc}share/doc/libpqxx/a01455.html
+${PLIST.doc}share/doc/libpqxx/a01458.html
+${PLIST.doc}share/doc/libpqxx/a01459.html
+${PLIST.doc}share/doc/libpqxx/a01462.html
+${PLIST.doc}share/doc/libpqxx/a01463.html
+${PLIST.doc}share/doc/libpqxx/a01466.html
+${PLIST.doc}share/doc/libpqxx/a01467.html
+${PLIST.doc}share/doc/libpqxx/a01470.html
+${PLIST.doc}share/doc/libpqxx/a01471.html
+${PLIST.doc}share/doc/libpqxx/a01474.html
+${PLIST.doc}share/doc/libpqxx/a01475.html
+${PLIST.doc}share/doc/libpqxx/a01478.html
+${PLIST.doc}share/doc/libpqxx/a01479.html
+${PLIST.doc}share/doc/libpqxx/a01482.html
+${PLIST.doc}share/doc/libpqxx/a01483.html
+${PLIST.doc}share/doc/libpqxx/a01486.html
+${PLIST.doc}share/doc/libpqxx/a01487.html
+${PLIST.doc}share/doc/libpqxx/a01490.html
+${PLIST.doc}share/doc/libpqxx/a01491.html
+${PLIST.doc}share/doc/libpqxx/a01494.html
+${PLIST.doc}share/doc/libpqxx/a01495.html
+${PLIST.doc}share/doc/libpqxx/a01498.html
+${PLIST.doc}share/doc/libpqxx/a01502.html
+${PLIST.doc}share/doc/libpqxx/a01506.html
+${PLIST.doc}share/doc/libpqxx/a01507.html
+${PLIST.doc}share/doc/libpqxx/a01510.html
+${PLIST.doc}share/doc/libpqxx/a01511.html
+${PLIST.doc}share/doc/libpqxx/a01514.html
+${PLIST.doc}share/doc/libpqxx/a02079.html
+${PLIST.doc}share/doc/libpqxx/a02080.html
+${PLIST.doc}share/doc/libpqxx/a02081.html
+${PLIST.doc}share/doc/libpqxx/a02082.html
+${PLIST.doc}share/doc/libpqxx/a02083.html
+${PLIST.doc}share/doc/libpqxx/a02084.html
+${PLIST.doc}share/doc/libpqxx/a02085.html
+${PLIST.doc}share/doc/libpqxx/a02086.html
+${PLIST.doc}share/doc/libpqxx/a02087.html
+${PLIST.doc}share/doc/libpqxx/a02088.html
 ${PLIST.doc}share/doc/libpqxx/annotated.html
 ${PLIST.doc}share/doc/libpqxx/classes.html
-${PLIST.doc}share/doc/libpqxx/dir_000000.html
-${PLIST.doc}share/doc/libpqxx/dir_000001.html
-${PLIST.doc}share/doc/libpqxx/dir_000002.html
-${PLIST.doc}share/doc/libpqxx/dir_000003.html
+${PLIST.doc}share/doc/libpqxx/dir_25d902c24283ab8cfbac54dfa101ad31.html
+${PLIST.doc}share/doc/libpqxx/dir_9a09b4dfda82e3e665e31092d1c3ec8d.html
+${PLIST.doc}share/doc/libpqxx/dir_c6c003bc386445a6f77db9a5475636b5.html
+${PLIST.doc}share/doc/libpqxx/dir_d436eb0fd9de10b54a828ce6435f7e81.html
 ${PLIST.doc}share/doc/libpqxx/doxygen.css
 ${PLIST.doc}share/doc/libpqxx/doxygen.svg
+${PLIST.doc}share/doc/libpqxx/doxygen_crawl.html
 ${PLIST.doc}share/doc/libpqxx/functions.html
 ${PLIST.doc}share/doc/libpqxx/functions_b.html
 ${PLIST.doc}share/doc/libpqxx/functions_c.html
@@ -431,7 +450,6 @@ ${PLIST.doc}share/doc/libpqxx/graph_lege
 ${PLIST.doc}share/doc/libpqxx/hierarchy.html
 ${PLIST.doc}share/doc/libpqxx/index.html
 ${PLIST.doc}share/doc/libpqxx/inherits.html
-${PLIST.doc}share/doc/libpqxx/modules.html
 ${PLIST.doc}share/doc/libpqxx/namespacemembers.html
 ${PLIST.doc}share/doc/libpqxx/namespacemembers_enum.html
 ${PLIST.doc}share/doc/libpqxx/namespacemembers_eval.html
@@ -440,6 +458,7 @@ ${PLIST.doc}share/doc/libpqxx/namespacem
 ${PLIST.doc}share/doc/libpqxx/namespacemembers_vars.html
 ${PLIST.doc}share/doc/libpqxx/namespaces.html
 ${PLIST.doc}share/doc/libpqxx/pages.html
+${PLIST.doc}share/doc/libpqxx/topics.html
 ${PLIST.doc}share/examples/libpqxx/runner.cxx
 ${PLIST.doc}share/examples/libpqxx/test00.cxx
 ${PLIST.doc}share/examples/libpqxx/test01.cxx

Index: pkgsrc/databases/libpqxx/distinfo
diff -u pkgsrc/databases/libpqxx/distinfo:1.16 pkgsrc/databases/libpqxx/distinfo:1.17
--- pkgsrc/databases/libpqxx/distinfo:1.16      Thu Dec 29 22:24:48 2022
+++ pkgsrc/databases/libpqxx/distinfo   Thu Jan  4 21:35:41 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.16 2022/12/29 22:24:48 prlw1 Exp $
+$NetBSD: distinfo,v 1.17 2024/01/04 21:35:41 prlw1 Exp $
 
-BLAKE2s (libpqxx-7.7.4.tar.gz) = bc71f45b091be8110e3df3d4b63f48bbc25a04fc2d78ced6db2ff366b01a5ec3
-SHA512 (libpqxx-7.7.4.tar.gz) = dd8fc9887eec81356d3c6cbcd11543e76bda8caebc770851bb6cf6e3eb5284ef33fc45f6de54c4cc902e07b06a8064f141841ad041addcc0e669d19486b7b4e1
-Size (libpqxx-7.7.4.tar.gz) = 745900 bytes
+BLAKE2s (libpqxx-7.8.1.tar.gz) = 5ebee8206fda54c2d04248e5fb92b39c304621a8f5fc25871c13ba07873cbc80
+SHA512 (libpqxx-7.8.1.tar.gz) = ce37fdfce2671d97e422ae3339fb5650065111b0635a7293200c56a8755a7dc7de80806816863c606c46b6049e4cb490d24dfb97446ea0014b55907554862fed
+Size (libpqxx-7.8.1.tar.gz) = 776338 bytes



Home | Main Index | Thread Index | Old Index