diff options
Diffstat (limited to 'databases')
124 files changed, 922 insertions, 1396 deletions
diff --git a/databases/Makefile b/databases/Makefile index 1bab6b1673ea..d0dd25c3e6df 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -31,8 +31,8 @@ SUBDIR += cego SUBDIR += cegobridge SUBDIR += clickhouse + SUBDIR += clickhouse-cpp SUBDIR += closql - SUBDIR += cockroach SUBDIR += couchdb3 SUBDIR += courier-authlib-mysql SUBDIR += courier-authlib-pgsql @@ -546,6 +546,7 @@ SUBDIR += pg_filedump SUBDIR += pg_hashids SUBDIR += pg_incremental + SUBDIR += pg_net SUBDIR += pg_partman SUBDIR += pg_qualstats SUBDIR += pg_repack @@ -567,7 +568,6 @@ SUBDIR += pglogical SUBDIR += pgmetrics SUBDIR += pgmodeler - SUBDIR += pgpool-II-42 SUBDIR += pgpool-II-43 SUBDIR += pgpool-II-44 SUBDIR += pgpool-II-45 @@ -585,18 +585,6 @@ SUBDIR += pgvector SUBDIR += php-tarantool SUBDIR += php-xapian - SUBDIR += php81-dba - SUBDIR += php81-mysqli - SUBDIR += php81-odbc - SUBDIR += php81-pdo - SUBDIR += php81-pdo_dblib - SUBDIR += php81-pdo_firebird - SUBDIR += php81-pdo_mysql - SUBDIR += php81-pdo_odbc - SUBDIR += php81-pdo_pgsql - SUBDIR += php81-pdo_sqlite - SUBDIR += php81-pgsql - SUBDIR += php81-sqlite3 SUBDIR += php82-dba SUBDIR += php82-mysqli SUBDIR += php82-odbc diff --git a/databases/cego/Makefile b/databases/cego/Makefile index 4837d3e572b5..d2f7ac8d0ca9 100644 --- a/databases/cego/Makefile +++ b/databases/cego/Makefile @@ -1,5 +1,5 @@ PORTNAME= cego -PORTVERSION= 2.53.4 +PORTVERSION= 2.53.8 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ diff --git a/databases/cego/distinfo b/databases/cego/distinfo index 0f9742807fda..dd45f97bbc80 100644 --- a/databases/cego/distinfo +++ b/databases/cego/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1766471280 -SHA256 (cego-2.53.4.tar.gz) = 455f2c5f29eeb91ed1ce5385c7c0dacf8ea130a62e76b4b8a6392aba2d8afa7d -SIZE (cego-2.53.4.tar.gz) = 3322082 +TIMESTAMP = 1767428227 +SHA256 (cego-2.53.8.tar.gz) = 83798e2312dd4046cc9e833edbe6e92f41a6fbc940e8d3e07d5dd1ae7a4ea8b3 +SIZE (cego-2.53.8.tar.gz) = 3313931 diff --git a/databases/clickhouse-cpp/Makefile b/databases/clickhouse-cpp/Makefile new file mode 100644 index 000000000000..ddae7810ab09 --- /dev/null +++ b/databases/clickhouse-cpp/Makefile @@ -0,0 +1,34 @@ +PORTNAME= clickhouse-cpp +DISTVERSIONPREFIX= v +DISTVERSION= 2.6.0 +CATEGORIES= databases devel + +MAINTAINER= madpilot@FreeBSD.org +COMMENT= C++ client for ClickHouse +WWW= https://clickhouse.com/ + +LICENSE= APACHE20 + +ONLY_FOR_ARCHS= aarch64 amd64 +ONLY_FOR_ARCHS_REASON= only supported on aarch64 and amd64 + +LIB_DEPENDS= libabsl_base.so:devel/abseil \ + liblz4.so:archivers/liblz4 \ + libzstd.so:archivers/zstd + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= clickhouse + +CMAKE_ON= WITH_OPENSSL \ + WITH_SYSTEM_ABSEIL \ + WITH_SYSTEM_LZ4 \ + WITH_SYSTEM_ZSTD + +OPTIONS_DEFINE= TEST +OPTIONS_SUB= yes + +TEST_RUN_DEPENDS= expect>0:lang/expect +TEST_CMAKE_BOOL= ENABLE_TESTS + +.include <bsd.port.mk> diff --git a/databases/clickhouse-cpp/distinfo b/databases/clickhouse-cpp/distinfo new file mode 100644 index 000000000000..74f6c8278cab --- /dev/null +++ b/databases/clickhouse-cpp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1763643899 +SHA256 (clickhouse-clickhouse-cpp-v2.6.0_GH0.tar.gz) = f694395ab49e7c2380297710761a40718278cefd86f4f692d3f8ce4293e1335f +SIZE (clickhouse-clickhouse-cpp-v2.6.0_GH0.tar.gz) = 1131214 diff --git a/databases/clickhouse-cpp/files/patch-clickhouse_base_platform.h b/databases/clickhouse-cpp/files/patch-clickhouse_base_platform.h new file mode 100644 index 000000000000..17d744498b1b --- /dev/null +++ b/databases/clickhouse-cpp/files/patch-clickhouse_base_platform.h @@ -0,0 +1,20 @@ +--- clickhouse/base/platform.h.orig 2025-09-20 19:59:03 UTC ++++ clickhouse/base/platform.h +@@ -2,6 +2,8 @@ + + #if defined(__linux__) + # define _linux_ ++#elif defined(__FreeBSD__) ++# define _freebsd_ + #elif defined(_WIN64) + # define _win64_ + # define _win32_ +@@ -20,7 +22,7 @@ + # define WIN32_LEAN_AND_MEAN 1 // don't include too much header automatically + #endif + +-#if defined(_linux_) || defined (_darwin_) ++#if defined(_linux_) || defined (_darwin_) || defined(_freebsd_) + # define _unix_ + #endif + diff --git a/databases/clickhouse-cpp/files/patch-clickhouse_base_socket.cpp b/databases/clickhouse-cpp/files/patch-clickhouse_base_socket.cpp new file mode 100644 index 000000000000..8ac3fca86d30 --- /dev/null +++ b/databases/clickhouse-cpp/files/patch-clickhouse_base_socket.cpp @@ -0,0 +1,11 @@ +--- clickhouse/base/socket.cpp.orig 2025-09-20 19:59:03 UTC ++++ clickhouse/base/socket.cpp +@@ -355,7 +355,7 @@ void Socket::SetTcpKeepAlive(int idle, int intvl, int + + #if defined(_unix_) + setsockopt(handle_, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val)); +-# if defined(_linux_) ++# if defined(_linux_) || defined(_freebsd_) + setsockopt(handle_, IPPROTO_TCP, TCP_KEEPIDLE, &idle, sizeof(idle)); + # elif defined(_darwin_) + setsockopt(handle_, IPPROTO_TCP, TCP_KEEPALIVE, &idle, sizeof(idle)); diff --git a/databases/clickhouse-cpp/files/patch-clickhouse_base_socket.h b/databases/clickhouse-cpp/files/patch-clickhouse_base_socket.h new file mode 100644 index 000000000000..5831ca229e1e --- /dev/null +++ b/databases/clickhouse-cpp/files/patch-clickhouse_base_socket.h @@ -0,0 +1,13 @@ +--- clickhouse/base/socket.h.orig 2025-09-20 19:59:03 UTC ++++ clickhouse/base/socket.h +@@ -18,6 +18,10 @@ + # include <sys/socket.h> + # include <poll.h> + ++# if defined(__FreeBSD__) ++# include <netinet/in.h> ++# endif ++ + # if !defined(SOCKET) + # define SOCKET int + # endif diff --git a/databases/clickhouse-cpp/pkg-descr b/databases/clickhouse-cpp/pkg-descr new file mode 100644 index 000000000000..ef4c9e29e261 --- /dev/null +++ b/databases/clickhouse-cpp/pkg-descr @@ -0,0 +1,3 @@ +Clickhouse-cpp is the official C++ client library for ClickHouse, +providing a fast and type-safe interface to ClickHouse using its +native binary protocol. diff --git a/databases/clickhouse-cpp/pkg-plist b/databases/clickhouse-cpp/pkg-plist new file mode 100644 index 000000000000..3cc2c38591ed --- /dev/null +++ b/databases/clickhouse-cpp/pkg-plist @@ -0,0 +1,45 @@ +include/clickhouse/base/buffer.h +include/clickhouse/base/compressed.h +include/clickhouse/base/endpoints_iterator.h +include/clickhouse/base/input.h +include/clickhouse/base/open_telemetry.h +include/clickhouse/base/output.h +include/clickhouse/base/platform.h +include/clickhouse/base/projected_iterator.h +include/clickhouse/base/singleton.h +include/clickhouse/base/socket.h +include/clickhouse/base/string_utils.h +include/clickhouse/base/string_view.h +include/clickhouse/base/uuid.h +include/clickhouse/base/wire_format.h +include/clickhouse/block.h +include/clickhouse/client.h +include/clickhouse/columns/array.h +include/clickhouse/columns/column.h +include/clickhouse/columns/date.h +include/clickhouse/columns/decimal.h +include/clickhouse/columns/enum.h +include/clickhouse/columns/factory.h +include/clickhouse/columns/geo.h +include/clickhouse/columns/ip4.h +include/clickhouse/columns/ip6.h +include/clickhouse/columns/itemview.h +include/clickhouse/columns/lowcardinality.h +include/clickhouse/columns/map.h +include/clickhouse/columns/nothing.h +include/clickhouse/columns/nullable.h +include/clickhouse/columns/numeric.h +include/clickhouse/columns/string.h +include/clickhouse/columns/tuple.h +include/clickhouse/columns/utils.h +include/clickhouse/columns/uuid.h +include/clickhouse/error_codes.h +include/clickhouse/exceptions.h +include/clickhouse/protocol.h +include/clickhouse/query.h +include/clickhouse/server_exception.h +include/clickhouse/types/type_parser.h +include/clickhouse/types/types.h +include/clickhouse/version.h +lib/libcityhash.a +lib/libclickhouse-cpp-lib.a diff --git a/databases/cockroach/Makefile b/databases/cockroach/Makefile deleted file mode 100644 index b03b4dd7381a..000000000000 --- a/databases/cockroach/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -PORTNAME= cockroach -DISTVERSIONPREFIX= v -DISTVERSION= 19.1.11 -PORTREVISION= 35 -CATEGORIES= databases -MASTER_SITES= https://binaries.cockroachdb.com/ -EXTRACT_SUFX= .src.tgz - -MAINTAINER= vishwin@FreeBSD.org -COMMENT= Cloud-native SQL database that survive disasters -WWW= https://www.cockroachlabs.com/ - -LICENSE= APACHE20 -LICENSE_FILE= ${WRKSRC}/src/github.com/cockroachdb/cockroach/LICENSE - -DEPRECATED= Current versions are fully-proprietary software, see PR 272257 -EXPIRATION_DATE= 2025-12-31 - -ONLY_FOR_ARCHS= amd64 -ONLY_FOR_ARCHS_REASON= 64-bit system is strongly recommended - -BUILD_DEPENDS= autoconf:devel/autoconf \ - bash:shells/bash \ - cmake:devel/cmake-core - -USES= gmake go libedit - -USE_GCC= yes # RocksDB is broken with clang - See PR 236213 -USE_RC_SUBR= cockroach - -NO_CCACHE= yes -ALL_TARGET= build - -PLIST_FILES= bin/cockroach - -USERS= cockroach -GROUPS= cockroach - -post-patch: - @${REINPLACE_CMD} -e 's|LDFLAGS: -ledit|LDFLAGS: -L${LOCALBASE}/lib -ledit|g' \ - -e 's|CPPFLAGS: -Ishim|CPPFLAGS: -I${LOCALBASE}/include -Ishim|g' \ - ${WRKSRC}/src/github.com/cockroachdb/cockroach/vendor/github.com/knz/go-libedit/unix/editline_unix.go - @${REINPLACE_CMD} -e 's|build -i -o|build -o|g' \ - ${WRKSRC}/src/github.com/cockroachdb/cockroach/Makefile - -do-build: - @${SETENV} -i ${MAKE_ENV} ${GO_ENV} \ - ${MAKE_CMD} -C ${WRKSRC} buildoss - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/cockroachdb/cockroach/cockroachoss ${STAGEDIR}${PREFIX}/bin/cockroach - -.include <bsd.port.mk> diff --git a/databases/cockroach/distinfo b/databases/cockroach/distinfo deleted file mode 100644 index 74bffd930456..000000000000 --- a/databases/cockroach/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1614623246 -SHA256 (cockroach-v19.1.11.src.tgz) = 9c6d93b0560ad53d2c8699b523849f30ddd5250807fdfa2def09442542ec624d -SIZE (cockroach-v19.1.11.src.tgz) = 103214436 diff --git a/databases/cockroach/files/cockroach.in b/databases/cockroach/files/cockroach.in deleted file mode 100644 index e6c1797e2efc..000000000000 --- a/databases/cockroach/files/cockroach.in +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/sh - -# PROVIDE: cockroach -# REQUIRE: LOGIN -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# cockroach_enable (bool): Set to NO by default. -# Set it to YES to enable cockroach. -# cockroach_user (user): Set user to run cockroach. -# Default is "cockroach". -# cockroach_group (group): Set group to run cockroach. -# Default is "cockroach". -# cockroach_dir (dir): Set dir to run cockroach in. -# Default is "path=/var/db/cockroach". -# cockroach_flags (string): Set additional flags with which to run cockroach. -# Default is "--insecure --host=localhost". - -. /etc/rc.subr - -name=cockroach -rcvar=cockroach_enable - -load_rc_config $name - -: ${cockroach_enable:="NO"} -: ${cockroach_user:="cockroach"} -: ${cockroach_group:="cockroach"} -: ${cockroach_dir:="/var/db/cockroachdb"} -: ${cockroach_store:="--store=path=${cockroach_dir}"} -: ${cockroach_flags:="--insecure --host=localhost"} - -start_precmd=cockroach_startprecmd -start_cmd=${name}_start -stop_cmd=${name}_stop - -pidfile=/var/run/cockroach.pid -command="%%PREFIX%%/bin/cockroach" - -cockroach_startprecmd() -{ - if [ ! -e ${pidfile} ]; then - install -o ${cockroach_user} -g ${cockroach_group} /dev/null ${pidfile}; - fi - - if [ ! -d ${cockroach_dir} ]; then - install -d -o ${cockroach_user} -g ${cockroach_group} ${cockroach_dir} - fi -} - -cockroach_start() { - /usr/sbin/daemon -u ${cockroach_user} \ - -p $pidfile ${command} \ - start \ - ${cockroach_store} \ - ${cockroach_flags} -} - -cockroach_stop() { - [ -f $pidfile ] \ - && ${command} quit --insecure \ - || echo ${name} not running? \(check ${pidfile}\) -} - -run_rc_command "$1" diff --git a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_CMakeLists.txt b/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_CMakeLists.txt deleted file mode 100644 index 2be5c5a8213e..000000000000 --- a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_CMakeLists.txt +++ /dev/null @@ -1,11 +0,0 @@ ---- src/github.com/cockroachdb/cockroach/c-deps/rocksdb/CMakeLists.txt.orig 2019-04-12 18:43:38 UTC -+++ src/github.com/cockroachdb/cockroach/c-deps/rocksdb/CMakeLists.txt -@@ -209,7 +209,7 @@ if(HAVE_THREAD_LOCAL) - add_definitions(-DROCKSDB_SUPPORT_THREAD_LOCAL) - endif() - --option(FAIL_ON_WARNINGS "Treat compile warnings as errors" ON) -+option(FAIL_ON_WARNINGS "Treat compile warnings as errors" OFF) - if(FAIL_ON_WARNINGS) - if(MSVC) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX") diff --git a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_db_compaction__iteration__stats.h b/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_db_compaction__iteration__stats.h deleted file mode 100644 index 972eb51150c9..000000000000 --- a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_db_compaction__iteration__stats.h +++ /dev/null @@ -1,8 +0,0 @@ ---- src/github.com/cockroachdb/cockroach/c-deps/rocksdb/db/compaction_iteration_stats.h.orig 2020-06-29 21:13:41 UTC -+++ src/github.com/cockroachdb/cockroach/c-deps/rocksdb/db/compaction_iteration_stats.h -@@ -1,3 +1,5 @@ -+#include <cstdint> -+ - // Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - // This source code is licensed under both the GPLv2 (found in the - // COPYING file in the root directory) and Apache 2.0 License diff --git a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_include_rocksdb_utilities_checkpoint.h b/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_include_rocksdb_utilities_checkpoint.h deleted file mode 100644 index 8bdff4892d2d..000000000000 --- a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_include_rocksdb_utilities_checkpoint.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/github.com/cockroachdb/cockroach/c-deps/rocksdb/include/rocksdb/utilities/checkpoint.h.orig 2020-06-29 21:13:41 UTC -+++ src/github.com/cockroachdb/cockroach/c-deps/rocksdb/include/rocksdb/utilities/checkpoint.h -@@ -9,6 +9,7 @@ - #ifndef ROCKSDB_LITE - - #include <string> -+#include <cstdint> - #include "rocksdb/status.h" - - namespace rocksdb { diff --git a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_table_data__block__hash__index.h b/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_table_data__block__hash__index.h deleted file mode 100644 index 322ac1f1de5d..000000000000 --- a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_table_data__block__hash__index.h +++ /dev/null @@ -1,10 +0,0 @@ ---- src/github.com/cockroachdb/cockroach/c-deps/rocksdb/table/data_block_hash_index.h.orig 2020-06-29 21:13:41 UTC -+++ src/github.com/cockroachdb/cockroach/c-deps/rocksdb/table/data_block_hash_index.h -@@ -7,6 +7,7 @@ - - #include <string> - #include <vector> -+#include <cstdint> - - #include "rocksdb/slice.h" - diff --git a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_util_channel.h b/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_util_channel.h deleted file mode 100644 index 87972bfbcf63..000000000000 --- a/databases/cockroach/files/patch-src_github.com_cockroachdb_cockroach_c-deps_rocksdb_util_channel.h +++ /dev/null @@ -1,28 +0,0 @@ -In file included from rocksdb/utilities/backupable/backupable_db.cc:16: -rocksdb/util/channel.h:35:33: error: no matching constructor for initialization of 'std::lock_guard<std::mutex>' - std::lock_guard<std::mutex> lk(lock_); - ^ ~~~~~ -/usr/include/c++/v1/__mutex_base:90:14: note: candidate constructor not viable: 1st argument ('const std::mutex') would lose const qualifier - explicit lock_guard(mutex_type& __m) _LIBCPP_THREAD_SAFETY_ANNOTATION(acquire_capability(__m)) - ^ -/usr/include/c++/v1/__mutex_base:100:5: note: candidate constructor not viable: no known conversion from 'const std::mutex' to 'const std::__1::lock_guard<std::__1::mutex>' for 1st argument - lock_guard(lock_guard const&) _LIBCPP_EQUAL_DELETE; - ^ -/usr/include/c++/v1/__mutex_base:94:5: note: candidate constructor not viable: requires 2 arguments, but 1 was provided - lock_guard(mutex_type& __m, adopt_lock_t) _LIBCPP_THREAD_SAFETY_ANNOTATION(requires_capability(__m)) - ^ -1 error generated. - -https://github.com/facebook/rocksdb/commit/a796c06fef6a8e43d793f8e627db3f29e6f95964 - ---- src/github.com/cockroachdb/cockroach/c-deps/rocksdb/util/channel.h.orig 2018-04-13 11:22:33 UTC -+++ src/github.com/cockroachdb/cockroach/c-deps/rocksdb/util/channel.h -@@ -62,7 +62,7 @@ class channel { - - private: - std::condition_variable cv_; -- std::mutex lock_; -+ mutable std::mutex lock_; - std::queue<T> buffer_; - bool eof_; - }; diff --git a/databases/cockroach/pkg-descr b/databases/cockroach/pkg-descr deleted file mode 100644 index d20f71e42a07..000000000000 --- a/databases/cockroach/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -CockroachDB is a distributed SQL database built on a transactional -and strongly-consistent key-value store. It scales horizontally; -survives disk, machine, rack, and even datacenter failures with -minimal latency disruption and no manual intervention; supports -strongly-consistent ACID transactions; and provides a familiar SQL -API for structuring, manipulating, and querying data. - -CockroachDB is inspired by Google's Spanner and F1 technologies, and -it's completely open source. diff --git a/databases/couchdb3/Makefile b/databases/couchdb3/Makefile index 036001612de2..81f39f8bffb5 100644 --- a/databases/couchdb3/Makefile +++ b/databases/couchdb3/Makefile @@ -1,6 +1,6 @@ PORTNAME= couchdb3 DISTVERSION= 3.5.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= APACHE/couchdb/source/${DISTVERSION} DISTNAME= apache-couchdb-${DISTVERSION} diff --git a/databases/couchdb3/pkg-plist b/databases/couchdb3/pkg-plist index 2e79b6c2485b..2bf363789928 100644 --- a/databases/couchdb3/pkg-plist +++ b/databases/couchdb3/pkg-plist @@ -5,22 +5,22 @@ libexec/couchdb3/bin/couchdb libexec/couchdb3/bin/couchjs libexec/couchdb3/bin/remsh libexec/couchdb3/bin/weatherreport -libexec/couchdb3/erts-16.1.2/bin/beam.smp -libexec/couchdb3/erts-16.1.2/bin/ct_run -libexec/couchdb3/erts-16.1.2/bin/epmd -libexec/couchdb3/erts-16.1.2/bin/erl -libexec/couchdb3/erts-16.1.2/bin/erl_call -libexec/couchdb3/erts-16.1.2/bin/erl_child_setup -libexec/couchdb3/erts-16.1.2/bin/erlc -libexec/couchdb3/erts-16.1.2/bin/erlexec -libexec/couchdb3/erts-16.1.2/bin/escript -libexec/couchdb3/erts-16.1.2/bin/heart -libexec/couchdb3/erts-16.1.2/bin/inet_gethost -libexec/couchdb3/erts-16.1.2/bin/run_erl -libexec/couchdb3/erts-16.1.2/bin/start -libexec/couchdb3/erts-16.1.2/bin/to_erl -libexec/couchdb3/erts-16.1.2/bin/yielding_c_fun -libexec/couchdb3/erts-16.1.2/lib/internal/README +libexec/couchdb3/erts-16.2/bin/beam.smp +libexec/couchdb3/erts-16.2/bin/ct_run +libexec/couchdb3/erts-16.2/bin/epmd +libexec/couchdb3/erts-16.2/bin/erl +libexec/couchdb3/erts-16.2/bin/erl_call +libexec/couchdb3/erts-16.2/bin/erl_child_setup +libexec/couchdb3/erts-16.2/bin/erlc +libexec/couchdb3/erts-16.2/bin/erlexec +libexec/couchdb3/erts-16.2/bin/escript +libexec/couchdb3/erts-16.2/bin/heart +libexec/couchdb3/erts-16.2/bin/inet_gethost +libexec/couchdb3/erts-16.2/bin/run_erl +libexec/couchdb3/erts-16.2/bin/start +libexec/couchdb3/erts-16.2/bin/to_erl +libexec/couchdb3/erts-16.2/bin/yielding_c_fun +libexec/couchdb3/erts-16.2/lib/internal/README libexec/couchdb3/etc/default.ini libexec/couchdb3/etc/nouveau.yaml libexec/couchdb3/lib/asn1-5.4.2/ebin/asn1.app @@ -78,68 +78,68 @@ libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd_xframe_options.beam libexec/couchdb3/lib/chttpd-%%VERSION%%/include/chttpd.hrl libexec/couchdb3/lib/chttpd-%%VERSION%%/include/chttpd_cors.hrl libexec/couchdb3/lib/chttpd-%%VERSION%%/priv/stats_descriptions.cfg -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_a.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_asm.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_block.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_bounds.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_call_types.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_clean.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_core_to_ssa.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_dict.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_digraph.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_disasm.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_doc.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_flatten.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_jump.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_listing.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_opcodes.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_alias.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_bc_size.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_bool.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_bsm.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_check.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_codegen.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_dead.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_destructive_update.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_lint.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_opt.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_pp.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_pre_codegen.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_recv.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_share.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_ss.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_throw.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_ssa_type.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_trim.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_types.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_utils.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_validator.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/beam_z.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/cerl.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/cerl_clauses.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/cerl_inline.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/cerl_trees.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/compile.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/compiler.app -libexec/couchdb3/lib/compiler-9.0.3/ebin/compiler.appup -libexec/couchdb3/lib/compiler-9.0.3/ebin/core_lib.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/core_lint.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/core_parse.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/core_pp.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/core_scan.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/erl_bifs.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/rec_env.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_core_alias.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_core_bsm.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_core_fold.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_core_fold_lists.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_core_inline.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_core_prepare.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_coverage.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_messages.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/sys_pre_attributes.beam -libexec/couchdb3/lib/compiler-9.0.3/ebin/v3_core.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_a.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_asm.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_block.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_bounds.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_call_types.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_clean.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_core_to_ssa.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_dict.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_digraph.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_disasm.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_doc.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_flatten.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_jump.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_listing.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_opcodes.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_alias.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_bc_size.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_bool.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_bsm.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_check.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_codegen.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_dead.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_destructive_update.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_lint.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_opt.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_pp.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_pre_codegen.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_recv.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_share.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_ss.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_throw.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_ssa_type.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_trim.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_types.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_utils.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_validator.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/beam_z.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/cerl.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/cerl_clauses.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/cerl_inline.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/cerl_trees.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/compile.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/compiler.app +libexec/couchdb3/lib/compiler-9.0.4/ebin/compiler.appup +libexec/couchdb3/lib/compiler-9.0.4/ebin/core_lib.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/core_lint.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/core_parse.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/core_pp.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/core_scan.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/erl_bifs.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/rec_env.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_core_alias.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_core_bsm.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_core_fold.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_core_fold_lists.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_core_inline.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_core_prepare.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_coverage.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_messages.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/sys_pre_attributes.beam +libexec/couchdb3/lib/compiler-9.0.4/ebin/v3_core.beam libexec/couchdb3/lib/config-%%VERSION%%/ebin/config.app libexec/couchdb3/lib/config-%%VERSION%%/ebin/config.beam libexec/couchdb3/lib/config-%%VERSION%%/ebin/config_app.beam @@ -398,13 +398,13 @@ libexec/couchdb3/lib/cowlib-2.15.0/ebin/cow_ws.beam libexec/couchdb3/lib/cowlib-2.15.0/ebin/cowlib.app libexec/couchdb3/lib/cowlib-2.15.0/include/cow_inline.hrl libexec/couchdb3/lib/cowlib-2.15.0/include/cow_parse.hrl -libexec/couchdb3/lib/crypto-5.7/ebin/crypto.app -libexec/couchdb3/lib/crypto-5.7/ebin/crypto.appup -libexec/couchdb3/lib/crypto-5.7/ebin/crypto.beam -libexec/couchdb3/lib/crypto-5.7/ebin/crypto_ec_curves.beam -libexec/couchdb3/lib/crypto-5.7/priv/lib/crypto.so -libexec/couchdb3/lib/crypto-5.7/priv/lib/crypto_callback.so -libexec/couchdb3/lib/crypto-5.7/priv/lib/otp_test_engine.so +libexec/couchdb3/lib/crypto-5.8/ebin/crypto.app +libexec/couchdb3/lib/crypto-5.8/ebin/crypto.appup +libexec/couchdb3/lib/crypto-5.8/ebin/crypto.beam +libexec/couchdb3/lib/crypto-5.8/ebin/crypto_ec_curves.beam +libexec/couchdb3/lib/crypto-5.8/priv/lib/crypto.so +libexec/couchdb3/lib/crypto-5.8/priv/lib/crypto_callback.so +libexec/couchdb3/lib/crypto-5.8/priv/lib/otp_test_engine.so libexec/couchdb3/lib/custodian-%%VERSION%%/ebin/custodian.app libexec/couchdb3/lib/custodian-%%VERSION%%/ebin/custodian.beam libexec/couchdb3/lib/custodian-%%VERSION%%/ebin/custodian_app.beam @@ -544,73 +544,73 @@ libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse_socks5.beam libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse_sup.beam libexec/couchdb3/lib/ibrowse-4.4.2/include/ibrowse.hrl libexec/couchdb3/lib/ibrowse-4.4.2/priv/ibrowse.conf -libexec/couchdb3/lib/inets-9.4.2/ebin/http_chunk.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/http_request.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/http_response.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/http_transport.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/http_uri.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/http_util.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_cookie.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_handler.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_handler_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_manager.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_profile_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_request.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_response.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpc_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_acceptor.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_acceptor_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_cgi.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_conf.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_connection_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_custom.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_custom_api.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_esi.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_example.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_file.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_instance_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_log.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_logger.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_manager.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_misc_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_request.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_request_handler.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_response.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_script_env.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_socket.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/httpd_util.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/inets.app -libexec/couchdb3/lib/inets-9.4.2/ebin/inets.appup -libexec/couchdb3/lib/inets-9.4.2/ebin/inets.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/inets_app.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/inets_lib.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/inets_service.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/inets_sup.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/inets_trace.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_actions.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_alias.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_auth.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_auth_dets.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_auth_mnesia.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_auth_plain.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_auth_server.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_cgi.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_dir.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_disk_log.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_esi.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_get.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_head.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_log.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_range.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_responsecontrol.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_security.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_security_server.beam -libexec/couchdb3/lib/inets-9.4.2/ebin/mod_trace.beam -libexec/couchdb3/lib/inets-9.4.2/include/httpd.hrl -libexec/couchdb3/lib/inets-9.4.2/include/mod_auth.hrl +libexec/couchdb3/lib/inets-9.5/ebin/http_chunk.beam +libexec/couchdb3/lib/inets-9.5/ebin/http_request.beam +libexec/couchdb3/lib/inets-9.5/ebin/http_response.beam +libexec/couchdb3/lib/inets-9.5/ebin/http_transport.beam +libexec/couchdb3/lib/inets-9.5/ebin/http_uri.beam +libexec/couchdb3/lib/inets-9.5/ebin/http_util.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_cookie.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_handler.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_handler_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_manager.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_profile_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_request.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_response.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpc_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_acceptor.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_acceptor_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_cgi.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_conf.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_connection_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_custom.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_custom_api.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_esi.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_example.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_file.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_instance_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_log.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_logger.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_manager.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_misc_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_request.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_request_handler.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_response.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_script_env.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_socket.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/httpd_util.beam +libexec/couchdb3/lib/inets-9.5/ebin/inets.app +libexec/couchdb3/lib/inets-9.5/ebin/inets.appup +libexec/couchdb3/lib/inets-9.5/ebin/inets.beam +libexec/couchdb3/lib/inets-9.5/ebin/inets_app.beam +libexec/couchdb3/lib/inets-9.5/ebin/inets_lib.beam +libexec/couchdb3/lib/inets-9.5/ebin/inets_service.beam +libexec/couchdb3/lib/inets-9.5/ebin/inets_sup.beam +libexec/couchdb3/lib/inets-9.5/ebin/inets_trace.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_actions.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_alias.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_auth.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_auth_dets.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_auth_mnesia.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_auth_plain.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_auth_server.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_cgi.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_dir.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_disk_log.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_esi.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_get.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_head.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_log.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_range.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_responsecontrol.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_security.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_security_server.beam +libexec/couchdb3/lib/inets-9.5/ebin/mod_trace.beam +libexec/couchdb3/lib/inets-9.5/include/httpd.hrl +libexec/couchdb3/lib/inets-9.5/include/mod_auth.hrl libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq.app libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq.beam libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq_app.beam @@ -630,119 +630,119 @@ libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_app.beam libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_event_handler.beam libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_server.beam libexec/couchdb3/lib/ken-%%VERSION%%/ebin/ken_sup.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/application.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/application_controller.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/application_master.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/application_starter.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/auth.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/code.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/code_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/disk_log.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/disk_log_1.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/disk_log_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/disk_log_sup.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/dist_ac.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/dist_util.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_boot_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_compile_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_ddll.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_debugger.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_distribution.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_epmd.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_erts_errors.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_kernel_errors.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_reply.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erl_signal_handler.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erpc.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/error_handler.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/error_logger.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/erts_debug.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/file.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/file_io_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/file_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/gen_sctp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/gen_tcp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/gen_tcp_socket.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/gen_udp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/gen_udp_socket.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/global.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/global_group.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/global_search.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/group.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/group_history.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/heart.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet6_sctp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet6_tcp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet6_tcp_dist.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet6_udp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_config.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_db.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_dns.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_dns_tsig.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_epmd_dist.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_epmd_socket.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_gethost_native.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_hosts.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_parse.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_res.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_sctp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_tcp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_tcp_dist.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/inet_udp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/kernel.app -libexec/couchdb3/lib/kernel-10.4.2/ebin/kernel.appup -libexec/couchdb3/lib/kernel-10.4.2/ebin/kernel.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/kernel_config.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/kernel_refc.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/local_tcp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/local_udp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_backend.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_config.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_disk_log_h.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_filters.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_formatter.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_h_common.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_handler.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_handler_watcher.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_olp.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_proxy.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_server.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_simple_h.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_std_h.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/logger_sup.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/net.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/net_adm.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/net_kernel.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/os.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/pg.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/pg2.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/prim_tty.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/prim_tty_sighandler.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/ram_file.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/raw_file_io.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/raw_file_io_compressed.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/raw_file_io_deflate.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/raw_file_io_delayed.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/raw_file_io_inflate.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/raw_file_io_list.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/rpc.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/seq_trace.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/socket.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/standard_error.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/trace.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/user_drv.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/user_sup.beam -libexec/couchdb3/lib/kernel-10.4.2/ebin/wrap_log_reader.beam -libexec/couchdb3/lib/kernel-10.4.2/include/dist.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/dist_util.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/eep48.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/file.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/inet.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/inet_sctp.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/logger.hrl -libexec/couchdb3/lib/kernel-10.4.2/include/net_address.hrl +libexec/couchdb3/lib/kernel-10.5/ebin/application.beam +libexec/couchdb3/lib/kernel-10.5/ebin/application_controller.beam +libexec/couchdb3/lib/kernel-10.5/ebin/application_master.beam +libexec/couchdb3/lib/kernel-10.5/ebin/application_starter.beam +libexec/couchdb3/lib/kernel-10.5/ebin/auth.beam +libexec/couchdb3/lib/kernel-10.5/ebin/code.beam +libexec/couchdb3/lib/kernel-10.5/ebin/code_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/disk_log.beam +libexec/couchdb3/lib/kernel-10.5/ebin/disk_log_1.beam +libexec/couchdb3/lib/kernel-10.5/ebin/disk_log_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/disk_log_sup.beam +libexec/couchdb3/lib/kernel-10.5/ebin/dist_ac.beam +libexec/couchdb3/lib/kernel-10.5/ebin/dist_util.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_boot_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_compile_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_ddll.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_debugger.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_distribution.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_epmd.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_erts_errors.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_kernel_errors.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_reply.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erl_signal_handler.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erpc.beam +libexec/couchdb3/lib/kernel-10.5/ebin/error_handler.beam +libexec/couchdb3/lib/kernel-10.5/ebin/error_logger.beam +libexec/couchdb3/lib/kernel-10.5/ebin/erts_debug.beam +libexec/couchdb3/lib/kernel-10.5/ebin/file.beam +libexec/couchdb3/lib/kernel-10.5/ebin/file_io_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/file_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/gen_sctp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/gen_tcp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/gen_tcp_socket.beam +libexec/couchdb3/lib/kernel-10.5/ebin/gen_udp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/gen_udp_socket.beam +libexec/couchdb3/lib/kernel-10.5/ebin/global.beam +libexec/couchdb3/lib/kernel-10.5/ebin/global_group.beam +libexec/couchdb3/lib/kernel-10.5/ebin/global_search.beam +libexec/couchdb3/lib/kernel-10.5/ebin/group.beam +libexec/couchdb3/lib/kernel-10.5/ebin/group_history.beam +libexec/couchdb3/lib/kernel-10.5/ebin/heart.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet6_sctp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet6_tcp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet6_tcp_dist.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet6_udp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_config.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_db.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_dns.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_dns_tsig.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_epmd_dist.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_epmd_socket.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_gethost_native.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_hosts.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_parse.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_res.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_sctp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_tcp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_tcp_dist.beam +libexec/couchdb3/lib/kernel-10.5/ebin/inet_udp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/kernel.app +libexec/couchdb3/lib/kernel-10.5/ebin/kernel.appup +libexec/couchdb3/lib/kernel-10.5/ebin/kernel.beam +libexec/couchdb3/lib/kernel-10.5/ebin/kernel_config.beam +libexec/couchdb3/lib/kernel-10.5/ebin/kernel_refc.beam +libexec/couchdb3/lib/kernel-10.5/ebin/local_tcp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/local_udp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_backend.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_config.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_disk_log_h.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_filters.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_formatter.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_h_common.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_handler.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_handler_watcher.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_olp.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_proxy.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_server.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_simple_h.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_std_h.beam +libexec/couchdb3/lib/kernel-10.5/ebin/logger_sup.beam +libexec/couchdb3/lib/kernel-10.5/ebin/net.beam +libexec/couchdb3/lib/kernel-10.5/ebin/net_adm.beam +libexec/couchdb3/lib/kernel-10.5/ebin/net_kernel.beam +libexec/couchdb3/lib/kernel-10.5/ebin/os.beam +libexec/couchdb3/lib/kernel-10.5/ebin/pg.beam +libexec/couchdb3/lib/kernel-10.5/ebin/pg2.beam +libexec/couchdb3/lib/kernel-10.5/ebin/prim_tty.beam +libexec/couchdb3/lib/kernel-10.5/ebin/prim_tty_sighandler.beam +libexec/couchdb3/lib/kernel-10.5/ebin/ram_file.beam +libexec/couchdb3/lib/kernel-10.5/ebin/raw_file_io.beam +libexec/couchdb3/lib/kernel-10.5/ebin/raw_file_io_compressed.beam +libexec/couchdb3/lib/kernel-10.5/ebin/raw_file_io_deflate.beam +libexec/couchdb3/lib/kernel-10.5/ebin/raw_file_io_delayed.beam +libexec/couchdb3/lib/kernel-10.5/ebin/raw_file_io_inflate.beam +libexec/couchdb3/lib/kernel-10.5/ebin/raw_file_io_list.beam +libexec/couchdb3/lib/kernel-10.5/ebin/rpc.beam +libexec/couchdb3/lib/kernel-10.5/ebin/seq_trace.beam +libexec/couchdb3/lib/kernel-10.5/ebin/socket.beam +libexec/couchdb3/lib/kernel-10.5/ebin/standard_error.beam +libexec/couchdb3/lib/kernel-10.5/ebin/trace.beam +libexec/couchdb3/lib/kernel-10.5/ebin/user_drv.beam +libexec/couchdb3/lib/kernel-10.5/ebin/user_sup.beam +libexec/couchdb3/lib/kernel-10.5/ebin/wrap_log_reader.beam +libexec/couchdb3/lib/kernel-10.5/include/dist.hrl +libexec/couchdb3/lib/kernel-10.5/include/dist_util.hrl +libexec/couchdb3/lib/kernel-10.5/include/eep48.hrl +libexec/couchdb3/lib/kernel-10.5/include/file.hrl +libexec/couchdb3/lib/kernel-10.5/include/inet.hrl +libexec/couchdb3/lib/kernel-10.5/include/inet_sctp.hrl +libexec/couchdb3/lib/kernel-10.5/include/logger.hrl +libexec/couchdb3/lib/kernel-10.5/include/net_address.hrl libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango.app libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_app.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_crud.beam @@ -865,64 +865,65 @@ libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_sup.beam libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_util.beam libexec/couchdb3/lib/nouveau-%%VERSION%%/include/nouveau.hrl libexec/couchdb3/lib/nouveau-%%VERSION%%/priv/stats_descriptions.cfg -libexec/couchdb3/lib/os_mon-2.11.1/ebin/cpu_sup.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/disksup.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/memsup.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/nteventlog.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/os_mon.app -libexec/couchdb3/lib/os_mon-2.11.1/ebin/os_mon.appup -libexec/couchdb3/lib/os_mon-2.11.1/ebin/os_mon.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/os_mon_mib.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/os_mon_sysinfo.beam -libexec/couchdb3/lib/os_mon-2.11.1/ebin/os_sup.beam -libexec/couchdb3/lib/os_mon-2.11.1/priv/bin/cpu_sup -libexec/couchdb3/lib/os_mon-2.11.1/priv/bin/memsup -libexec/couchdb3/lib/public_key-1.19/ebin/AlgorithmInformation-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/AttributeCertificateVersion1-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/CMSAesRsaesOaep-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/CryptographicMessageSyntax-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/CryptographicMessageSyntaxAlgorithms-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/DSS.beam -libexec/couchdb3/lib/public_key-1.19/ebin/ECPrivateKey.beam -libexec/couchdb3/lib/public_key-1.19/ebin/EnrollmentMessageSyntax-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/KEMAlgorithmInformation-2023.beam -libexec/couchdb3/lib/public_key-1.19/ebin/OCSP-2024-08.beam -libexec/couchdb3/lib/public_key-1.19/ebin/OTP-PKIX.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKCS-1.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKCS-10.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKCS-3.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKCS-FRAME.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIX-CommonTypes-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIX-X400Address-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIX1-PSS-OAEP-Algorithms-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIX1Explicit-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIX1Implicit-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIXAlgs-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIXAttributeCertificate-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIXCMP-2023.beam -libexec/couchdb3/lib/public_key-1.19/ebin/PKIXCRMF-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/RFC5639.beam -libexec/couchdb3/lib/public_key-1.19/ebin/Safecurves-pkix-18.beam -libexec/couchdb3/lib/public_key-1.19/ebin/SecureMimeMessageV3dot1-2009.beam -libexec/couchdb3/lib/public_key-1.19/ebin/X509-ML-DSA-2025.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_cert.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_cert_records.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_crl.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_ocsp.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_os_cacerts.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_pbe.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_pem.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_policy_tree.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_ssh.beam -libexec/couchdb3/lib/public_key-1.19/ebin/pubkey_translation.beam -libexec/couchdb3/lib/public_key-1.19/ebin/public_key.app -libexec/couchdb3/lib/public_key-1.19/ebin/public_key.appup -libexec/couchdb3/lib/public_key-1.19/ebin/public_key.beam -libexec/couchdb3/lib/public_key-1.19/include/OTP-PUB-KEY.hrl -libexec/couchdb3/lib/public_key-1.19/include/PKCS-FRAME.hrl -libexec/couchdb3/lib/public_key-1.19/include/PKIXCMP.hrl -libexec/couchdb3/lib/public_key-1.19/include/PKIXCRMF.hrl -libexec/couchdb3/lib/public_key-1.19/include/public_key.hrl +libexec/couchdb3/lib/os_mon-2.11.2/ebin/cpu_sup.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/disksup.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/memsup.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/nteventlog.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/os_mon.app +libexec/couchdb3/lib/os_mon-2.11.2/ebin/os_mon.appup +libexec/couchdb3/lib/os_mon-2.11.2/ebin/os_mon.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/os_mon_mib.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/os_mon_sysinfo.beam +libexec/couchdb3/lib/os_mon-2.11.2/ebin/os_sup.beam +libexec/couchdb3/lib/os_mon-2.11.2/priv/bin/cpu_sup +libexec/couchdb3/lib/os_mon-2.11.2/priv/bin/memsup +libexec/couchdb3/lib/public_key-1.20/ebin/AlgorithmInformation-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/AttributeCertificateVersion1-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/CMSAesRsaesOaep-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/CryptographicMessageSyntax-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/CryptographicMessageSyntaxAlgorithms-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/DSS.beam +libexec/couchdb3/lib/public_key-1.20/ebin/ECPrivateKey.beam +libexec/couchdb3/lib/public_key-1.20/ebin/EnrollmentMessageSyntax-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/KEMAlgorithmInformation-2023.beam +libexec/couchdb3/lib/public_key-1.20/ebin/OCSP-2024-08.beam +libexec/couchdb3/lib/public_key-1.20/ebin/OTP-PKIX.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKCS-1.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKCS-10.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKCS-3.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKCS-FRAME.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIX-CommonTypes-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIX-X400Address-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIX1-PSS-OAEP-Algorithms-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIX1Explicit-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIX1Implicit-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIXAlgs-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIXAttributeCertificate-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIXCMP-2023.beam +libexec/couchdb3/lib/public_key-1.20/ebin/PKIXCRMF-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/RFC5639.beam +libexec/couchdb3/lib/public_key-1.20/ebin/SLH-DSA-Module-2024.beam +libexec/couchdb3/lib/public_key-1.20/ebin/Safecurves-pkix-18.beam +libexec/couchdb3/lib/public_key-1.20/ebin/SecureMimeMessageV3dot1-2009.beam +libexec/couchdb3/lib/public_key-1.20/ebin/X509-ML-DSA-2025.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_cert.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_cert_records.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_crl.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_ocsp.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_os_cacerts.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_pbe.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_pem.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_policy_tree.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_ssh.beam +libexec/couchdb3/lib/public_key-1.20/ebin/pubkey_translation.beam +libexec/couchdb3/lib/public_key-1.20/ebin/public_key.app +libexec/couchdb3/lib/public_key-1.20/ebin/public_key.appup +libexec/couchdb3/lib/public_key-1.20/ebin/public_key.beam +libexec/couchdb3/lib/public_key-1.20/include/OTP-PUB-KEY.hrl +libexec/couchdb3/lib/public_key-1.20/include/PKCS-FRAME.hrl +libexec/couchdb3/lib/public_key-1.20/include/PKIXCMP.hrl +libexec/couchdb3/lib/public_key-1.20/include/PKIXCRMF.hrl +libexec/couchdb3/lib/public_key-1.20/include/public_key.hrl libexec/couchdb3/lib/recon-2.5.6/ebin/recon.app libexec/couchdb3/lib/recon-2.5.6/ebin/recon.beam libexec/couchdb3/lib/recon-2.5.6/ebin/recon_alloc.beam @@ -998,189 +999,190 @@ libexec/couchdb3/lib/smoosh-%%VERSION%%/ebin/smoosh_utils.beam libexec/couchdb3/lib/snappy-1.0.5/ebin/snappy.app libexec/couchdb3/lib/snappy-1.0.5/ebin/snappy.beam libexec/couchdb3/lib/snappy-1.0.5/priv/snappy_nif.so -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_client_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_connection_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_gen_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_handshake.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_listener_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_packet_demux.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_record.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_server_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_server_session_cache_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_server_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_socket.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/dtls_v1.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/inet6_tls_dist.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/inet_epmd_tls_socket.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/inet_tls_dist.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl.app -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl.appup -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_admin_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_alert.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_app.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_certificate.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_cipher.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_cipher_format.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_client_session_cache_db.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_config.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_connection_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_crl.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_crl_cache.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_crl_cache_api.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_crl_hash_dir.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_dh_groups.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_dist_admin_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_dist_connection_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_dist_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_gen_statem.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_handshake.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_listen_tracker_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_logger.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_manager.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_pem_cache.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_pkix_db.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_record.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_server_session_cache.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_server_session_cache_db.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_server_session_cache_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_session.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_session_cache_api.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_srp_primes.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_trace.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/ssl_upgrade_server_session_cache_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_bloom_filter.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_client_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_client_connection_1_3.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_client_ticket_store.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_connection_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_dist_server_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_dist_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_dtls_client_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_dtls_gen_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_dtls_server_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_dyn_connection_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_gen_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_gen_connection_1_3.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_handshake.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_handshake_1_3.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_record.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_record_1_3.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_sender.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_server_connection.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_server_connection_1_3.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_server_session_ticket.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_server_session_ticket_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_server_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_socket.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_socket_tcp.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_sup.beam -libexec/couchdb3/lib/ssl-11.4.2/ebin/tls_v1.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/argparse.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/array.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/base64.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/beam_lib.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/binary.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/c.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/calendar.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/dets.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/dets_server.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/dets_sup.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/dets_utils.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/dets_v9.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/dict.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/digraph.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/digraph_utils.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/edlin.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/edlin_context.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/edlin_expand.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/edlin_key.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/edlin_type_suggestion.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/epp.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_abstract_code.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_anno.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_bits.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_compile.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_error.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_eval.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_expand_records.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_features.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_internal.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_lint.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_parse.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_posix_msg.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_pp.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_scan.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_stdlib_errors.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/erl_tar.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/error_logger_file_h.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/error_logger_tty_h.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/escript.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/ets.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/eval_bits.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/file_sorter.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/filelib.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/filename.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gb_sets.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gb_trees.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gen.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gen_event.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gen_fsm.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gen_server.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/gen_statem.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/io.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/io_lib.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/io_lib_format.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/io_lib_fread.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/io_lib_pretty.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/json.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/lists.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/log_mf_h.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/maps.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/math.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/ms_transform.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/orddict.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/ordsets.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/otp_internal.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/peer.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/pool.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/proc_lib.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/proplists.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/qlc.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/qlc_pt.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/queue.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/rand.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/random.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/re.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/sets.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/shell.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/shell_default.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/shell_docs.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/shell_docs_markdown.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/shell_docs_test.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/slave.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/sofs.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/stdlib.app -libexec/couchdb3/lib/stdlib-7.1/ebin/stdlib.appup -libexec/couchdb3/lib/stdlib-7.1/ebin/string.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/supervisor.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/supervisor_bridge.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/sys.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/timer.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/unicode.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/unicode_util.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/uri_string.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/win32reg.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/zip.beam -libexec/couchdb3/lib/stdlib-7.1/ebin/zstd.beam -libexec/couchdb3/lib/stdlib-7.1/include/assert.hrl -libexec/couchdb3/lib/stdlib-7.1/include/erl_bits.hrl -libexec/couchdb3/lib/stdlib-7.1/include/erl_compile.hrl -libexec/couchdb3/lib/stdlib-7.1/include/ms_transform.hrl -libexec/couchdb3/lib/stdlib-7.1/include/qlc.hrl -libexec/couchdb3/lib/stdlib-7.1/include/zip.hrl +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_client_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_connection_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_gen_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_handshake.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_listener_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_packet_demux.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_record.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_server_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_server_session_cache_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_server_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_socket.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/dtls_v1.beam +libexec/couchdb3/lib/ssl-11.5/ebin/inet6_tls_dist.beam +libexec/couchdb3/lib/ssl-11.5/ebin/inet_epmd_tls_socket.beam +libexec/couchdb3/lib/ssl-11.5/ebin/inet_tls_dist.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl.app +libexec/couchdb3/lib/ssl-11.5/ebin/ssl.appup +libexec/couchdb3/lib/ssl-11.5/ebin/ssl.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_admin_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_alert.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_app.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_certificate.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_cipher.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_cipher_format.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_client_session_cache_db.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_config.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_connection_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_crl.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_crl_cache.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_crl_cache_api.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_crl_hash_dir.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_dh_groups.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_dist_admin_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_dist_connection_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_dist_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_gen_statem.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_handshake.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_listen_tracker_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_logger.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_manager.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_pem_cache.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_pkix_db.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_record.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_server_session_cache.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_server_session_cache_db.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_server_session_cache_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_session.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_session_cache_api.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_srp_primes.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_trace.beam +libexec/couchdb3/lib/ssl-11.5/ebin/ssl_upgrade_server_session_cache_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_bloom_filter.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_client_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_client_connection_1_3.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_client_ticket_store.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_connection_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_dist_server_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_dist_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_dtls_client_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_dtls_gen_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_dtls_server_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_dyn_connection_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_gen_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_gen_connection_1_3.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_handshake.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_handshake_1_3.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_record.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_record_1_3.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_sender.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_server_connection.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_server_connection_1_3.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_server_session_ticket.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_server_session_ticket_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_server_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_socket.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_socket_tcp.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_sup.beam +libexec/couchdb3/lib/ssl-11.5/ebin/tls_v1.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/argparse.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/array.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/base64.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/beam_lib.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/binary.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/c.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/calendar.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/dets.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/dets_server.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/dets_sup.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/dets_utils.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/dets_v9.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/dict.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/digraph.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/digraph_utils.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/edlin.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/edlin_context.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/edlin_expand.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/edlin_key.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/edlin_type_suggestion.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/epp.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_abstract_code.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_anno.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_bits.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_compile.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_error.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_eval.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_expand_records.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_features.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_internal.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_lint.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_parse.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_posix_msg.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_pp.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_scan.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_stdlib_errors.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/erl_tar.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/error_logger_file_h.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/error_logger_tty_h.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/escript.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/ets.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/eval_bits.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/file_sorter.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/filelib.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/filename.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gb_sets.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gb_trees.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gen.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gen_event.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gen_fsm.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gen_server.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/gen_statem.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/io.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/io_lib.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/io_lib_format.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/io_lib_fread.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/io_lib_pretty.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/json.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/lists.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/log_mf_h.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/man_docs.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/maps.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/math.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/ms_transform.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/orddict.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/ordsets.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/otp_internal.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/peer.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/pool.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/proc_lib.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/proplists.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/qlc.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/qlc_pt.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/queue.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/rand.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/random.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/re.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/sets.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/shell.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/shell_default.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/shell_docs.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/shell_docs_markdown.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/shell_docs_test.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/slave.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/sofs.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/stdlib.app +libexec/couchdb3/lib/stdlib-7.2/ebin/stdlib.appup +libexec/couchdb3/lib/stdlib-7.2/ebin/string.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/supervisor.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/supervisor_bridge.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/sys.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/timer.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/unicode.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/unicode_util.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/uri_string.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/win32reg.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/zip.beam +libexec/couchdb3/lib/stdlib-7.2/ebin/zstd.beam +libexec/couchdb3/lib/stdlib-7.2/include/assert.hrl +libexec/couchdb3/lib/stdlib-7.2/include/erl_bits.hrl +libexec/couchdb3/lib/stdlib-7.2/include/erl_compile.hrl +libexec/couchdb3/lib/stdlib-7.2/include/ms_transform.hrl +libexec/couchdb3/lib/stdlib-7.2/include/qlc.hrl +libexec/couchdb3/lib/stdlib-7.2/include/zip.hrl libexec/couchdb3/lib/syntax_tools-4.0.2/ebin/epp_dodger.beam libexec/couchdb3/lib/syntax_tools-4.0.2/ebin/erl_comment_scan.beam libexec/couchdb3/lib/syntax_tools-4.0.2/ebin/erl_prettypr.beam diff --git a/databases/freetds-devel/Makefile b/databases/freetds-devel/Makefile index 51ac06737ee0..391f142c97fc 100644 --- a/databases/freetds-devel/Makefile +++ b/databases/freetds-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= freetds -DISTVERSION= 1.5.206 +DISTVERSION= 1.5.231 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= https://www.freetds.org/files/current/ diff --git a/databases/freetds-devel/distinfo b/databases/freetds-devel/distinfo index beefdd093445..08560e0663a0 100644 --- a/databases/freetds-devel/distinfo +++ b/databases/freetds-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1766220084 -SHA256 (freetds-dev.1.5.206.tar.bz2) = 7207dc7954e32fa474b1818286f3c483c06c41bf370ec9c841f5b47bc61af2ee -SIZE (freetds-dev.1.5.206.tar.bz2) = 2476267 +TIMESTAMP = 1767784491 +SHA256 (freetds-dev.1.5.231.tar.bz2) = ceb28c57d8e0a40922c191bfe3e98938783674cbc468a41d12e2d18ecf872ebe +SIZE (freetds-dev.1.5.231.tar.bz2) = 2479898 diff --git a/databases/libzdb/Makefile b/databases/libzdb/Makefile index 89d5783b1876..922afdd546dd 100644 --- a/databases/libzdb/Makefile +++ b/databases/libzdb/Makefile @@ -1,5 +1,5 @@ PORTNAME= libzdb -PORTVERSION= 3.4.1 +PORTVERSION= 3.5.0 CATEGORIES= databases MASTER_SITES= https://www.tildeslash.com/libzdb/dist/ diff --git a/databases/libzdb/distinfo b/databases/libzdb/distinfo index d811a827d23a..0ede09f65db4 100644 --- a/databases/libzdb/distinfo +++ b/databases/libzdb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749813002 -SHA256 (libzdb-3.4.1.tar.gz) = 5b4633fc2a16880f776197f4045f62ef8db5062f63030fa221011d4b85d736cb -SIZE (libzdb-3.4.1.tar.gz) = 976416 +TIMESTAMP = 1766953304 +SHA256 (libzdb-3.5.0.tar.gz) = 90c79bf23b0c8fcb6543634844d17c094a24a360c9d63ddf6efc3741ebec32c5 +SIZE (libzdb-3.5.0.tar.gz) = 1038028 diff --git a/databases/libzdb/pkg-plist b/databases/libzdb/pkg-plist index 68a9b7d34789..fe5cb62bba83 100644 --- a/databases/libzdb/pkg-plist +++ b/databases/libzdb/pkg-plist @@ -4,11 +4,12 @@ include/zdb/Exception.h include/zdb/PreparedStatement.h include/zdb/ResultSet.h include/zdb/SQLException.h +include/zdb/SQLState.h include/zdb/URL.h include/zdb/zdb.h include/zdb/zdbpp.h lib/libzdb.a lib/libzdb.so -lib/libzdb.so.17 -lib/libzdb.so.17.0.0 +lib/libzdb.so.18 +lib/libzdb.so.18.0.0 libdata/pkgconfig/zdb.pc diff --git a/databases/mongodb70/Makefile b/databases/mongodb70/Makefile index 0b50934e2497..613008a30421 100644 --- a/databases/mongodb70/Makefile +++ b/databases/mongodb70/Makefile @@ -1,6 +1,6 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r -DISTVERSION= 7.0.27 +DISTVERSION= 7.0.28 CATEGORIES= databases net PKGNAMESUFFIX= ${DISTVERSION:R:S/.//} @@ -62,7 +62,7 @@ python_OLD_CMD= @python_interpreter@ HAS_CONFIGURE= yes CONFIGURE_SCRIPT= gen-config.sh -CONFIGURE_ARGS+= ${MOZJS_ARCH} \ +CONFIGURE_ARGS= ${MOZJS_ARCH} \ freebsd CONFIGURE_ENV+= PYTHON3="${PYTHON_CMD}" diff --git a/databases/mongodb70/distinfo b/databases/mongodb70/distinfo index 84e9c813b229..efb7eef44bf9 100644 --- a/databases/mongodb70/distinfo +++ b/databases/mongodb70/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1765581510 -SHA256 (mongodb-mongo-r7.0.27_GH0.tar.gz) = 8443a8d0c2966ce2edca46dffddb9bea258ea822f9ba4f608e0c2eaf9b89639c -SIZE (mongodb-mongo-r7.0.27_GH0.tar.gz) = 90901786 +TIMESTAMP = 1766555120 +SHA256 (mongodb-mongo-r7.0.28_GH0.tar.gz) = 22671c9459a763aa870bec9d9873c5d2ed381c2644fcf8f63e7eb2704fd11c46 +SIZE (mongodb-mongo-r7.0.28_GH0.tar.gz) = 90762731 SHA256 (mongodb-forks-spidermonkey-5acd3be6c9563ad3e7ca6182285c69a38de47bab_GH0.tar.gz) = 1420533e23970171ff7a420e3ded1ea493e1976fb8896a5fd6f35e5b2d75733b SIZE (mongodb-forks-spidermonkey-5acd3be6c9563ad3e7ca6182285c69a38de47bab_GH0.tar.gz) = 280439685 SHA256 (0877732109589e441cbf234dce17ec0e7b614902.patch) = 96bcf70f8ee66424b5601632fb91dbcbb6b14df0553f59f36cd10325bfce7105 diff --git a/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh b/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh index 4260904915e4..441f53fff97d 100644 --- a/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh +++ b/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh @@ -1,4 +1,4 @@ ---- src/third_party/mozjs/gen-config.sh.orig 2025-05-13 16:37:03 UTC +--- src/third_party/mozjs/gen-config.sh.orig 2025-12-22 19:50:59 UTC +++ src/third_party/mozjs/gen-config.sh @@ -1,4 +1,4 @@ -#!/bin/bash @@ -6,6 +6,15 @@ set -e set -v +@@ -7,7 +7,7 @@ then + if [ $# -ne 2 ] + then + echo "Please supply an arch: x86_64, i386, etc and a platform: osx, linux, windows, etc" +- exit 0; ++ exit 1; + fi + + _BuiltPathPrefix="mozilla-release/js/src/_build/js/src" @@ -29,6 +29,9 @@ case "$_Path" in } diff --git a/databases/pgFormatter/Makefile b/databases/pgFormatter/Makefile index e4c582d19e34..7b433d3e4061 100644 --- a/databases/pgFormatter/Makefile +++ b/databases/pgFormatter/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgFormatter -PORTVERSION= 5.8 +PORTVERSION= 5.9 DISTVERSIONPREFIX= v CATEGORIES= databases diff --git a/databases/pgFormatter/distinfo b/databases/pgFormatter/distinfo index fc42edb04439..7217038192a2 100644 --- a/databases/pgFormatter/distinfo +++ b/databases/pgFormatter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759816530 -SHA256 (darold-pgFormatter-v5.8_GH0.tar.gz) = cde9a964788e6c59dbcfada1606b3a2fe56916a96251f851a521622fc5963332 -SIZE (darold-pgFormatter-v5.8_GH0.tar.gz) = 1332029 +TIMESTAMP = 1766953306 +SHA256 (darold-pgFormatter-v5.9_GH0.tar.gz) = bdff1984e9458d53c793a4cb61a55f1109fab61f488e8fc51f72e204b2cf66ca +SIZE (darold-pgFormatter-v5.9_GH0.tar.gz) = 1334567 diff --git a/databases/pg_net/Makefile b/databases/pg_net/Makefile new file mode 100644 index 000000000000..110ebe492ce4 --- /dev/null +++ b/databases/pg_net/Makefile @@ -0,0 +1,25 @@ +PORTNAME= pg_net +PORTVERSION= 0.20.2 +DISTVERSIONPREFIX= v +CATEGORIES= databases +PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- + +MAINTAINER= lukas.engelhardt@gmx.de +COMMENT= PostgreSQL extension to trigger web services via postgresql +WWW= https://supabase.github.io/pg_net/ + +LICENSE= PostgreSQL + +BUILD_DEPENDS= curl:ftp/curl +LIB_DEPENDS= libcurl.so:ftp/curl + +USES= gmake pgsql +WANT_PGSQL= server + +USE_GITHUB= yes +GH_ACCOUNT= supabase + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/pg_net.so + +.include <bsd.port.mk> diff --git a/databases/pg_net/distinfo b/databases/pg_net/distinfo new file mode 100644 index 000000000000..e01d3ce74bb5 --- /dev/null +++ b/databases/pg_net/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1766923965 +SHA256 (supabase-pg_net-v0.20.2_GH0.tar.gz) = 30e54d95d2de2578f34f22f877be965c0b81292f4065ca3442cf0c2f75a339d0 +SIZE (supabase-pg_net-v0.20.2_GH0.tar.gz) = 46409 diff --git a/databases/pg_net/pkg-descr b/databases/pg_net/pkg-descr new file mode 100644 index 000000000000..983866cd9183 --- /dev/null +++ b/databases/pg_net/pkg-descr @@ -0,0 +1 @@ +A PostgreSQL extension that enables async HTTP/HTTPS requests with SQL. diff --git a/databases/pg_net/pkg-plist b/databases/pg_net/pkg-plist new file mode 100644 index 000000000000..f7c3c58827fd --- /dev/null +++ b/databases/pg_net/pkg-plist @@ -0,0 +1,34 @@ +lib/postgresql/pg_net.so +share/postgresql/extension/pg_net--0.1--0.2.sql +share/postgresql/extension/pg_net--0.10.0--0.11.0.sql +share/postgresql/extension/pg_net--0.11.0--0.12.0.sql +share/postgresql/extension/pg_net--0.12.0--0.13.0.sql +share/postgresql/extension/pg_net--0.13.0--0.14.0.sql +share/postgresql/extension/pg_net--0.14.0--0.15.0.sql +share/postgresql/extension/pg_net--0.15.0--0.16.0.sql +share/postgresql/extension/pg_net--0.16.0--0.17.0.sql +share/postgresql/extension/pg_net--0.17.0--0.18.0.sql +share/postgresql/extension/pg_net--0.18.0--0.19.0.sql +share/postgresql/extension/pg_net--0.19.0--0.19.1.sql +share/postgresql/extension/pg_net--0.19.1--0.19.2.sql +share/postgresql/extension/pg_net--0.19.2--0.19.3.sql +share/postgresql/extension/pg_net--0.19.3--0.19.4.sql +share/postgresql/extension/pg_net--0.19.4--0.19.5.sql +share/postgresql/extension/pg_net--0.19.5--0.19.6.sql +share/postgresql/extension/pg_net--0.19.6--0.19.7.sql +share/postgresql/extension/pg_net--0.19.7--0.20.0.sql +share/postgresql/extension/pg_net--0.2--0.3.sql +share/postgresql/extension/pg_net--0.20.0--0.20.1.sql +share/postgresql/extension/pg_net--0.20.1--0.20.2.sql +share/postgresql/extension/pg_net--0.20.2.sql +share/postgresql/extension/pg_net--0.3--0.4.sql +share/postgresql/extension/pg_net--0.4--0.5.sql +share/postgresql/extension/pg_net--0.5--0.5.1.sql +share/postgresql/extension/pg_net--0.5.1--0.6.sql +share/postgresql/extension/pg_net--0.6--0.7.sql +share/postgresql/extension/pg_net--0.7--0.7.1.sql +share/postgresql/extension/pg_net--0.7.1--0.7.3.sql +share/postgresql/extension/pg_net--0.7.3--0.8.0.sql +share/postgresql/extension/pg_net--0.8.0--0.9.3.sql +share/postgresql/extension/pg_net--0.9.3--0.10.0.sql +share/postgresql/extension/pg_net.control diff --git a/databases/pgbadger/Makefile b/databases/pgbadger/Makefile index fdacccd32a89..f778c54d5a1d 100644 --- a/databases/pgbadger/Makefile +++ b/databases/pgbadger/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgbadger -PORTVERSION= 13.1 +PORTVERSION= 13.2 DISTVERSIONPREFIX= v CATEGORIES= databases @@ -9,8 +9,6 @@ WWW= http://dalibo.github.com/pgbadger/ LICENSE= PostgreSQL -BUILD_DEPENDS= gsed:textproc/gsed - USES= gmake perl5 USE_GITHUB= yes diff --git a/databases/pgbadger/distinfo b/databases/pgbadger/distinfo index 3f7589235a66..b2af9c747c9d 100644 --- a/databases/pgbadger/distinfo +++ b/databases/pgbadger/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742293725 -SHA256 (darold-pgbadger-v13.1_GH0.tar.gz) = 9658ff222ed7b387d3cb76c3e3d90d1862b885c13b26aa9ff652e133f5d018f1 -SIZE (darold-pgbadger-v13.1_GH0.tar.gz) = 4367754 +TIMESTAMP = 1767089601 +SHA256 (darold-pgbadger-v13.2_GH0.tar.gz) = 94074714bb4928c69c9e977da02d50e197a9d428fa3f235f25c103ef3c7d9a9d +SIZE (darold-pgbadger-v13.2_GH0.tar.gz) = 4370560 diff --git a/databases/pgbadger/files/patch-Makefile.PL b/databases/pgbadger/files/patch-Makefile.PL deleted file mode 100644 index 5d39cb52fbda..000000000000 --- a/databases/pgbadger/files/patch-Makefile.PL +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.PL.orig 2025-03-16 11:52:30 UTC -+++ Makefile.PL -@@ -55,13 +55,13 @@ doc/synopsis.pod: Makefile pgbadger - echo "=head1 SYNOPSIS" > $@ - ./pgbadger --help >> $@ - echo "=head1 DESCRIPTION" >> $@ -- sed -i.bak 's/ +$$//g' $@ -+ gsed -i.bak 's/ +$$//g' $@ - rm $@.bak - - .PHONY: doc/pgBadger.pod - doc/pgBadger.pod: doc/synopsis.pod Makefile -- sed -i.bak '/^=head1 SYNOPSIS/,/^=head1 DESCRIPTION/d' $@ -- sed -i.bak '4r $<' $@ -+ gsed -i.bak '/^=head1 SYNOPSIS/,/^=head1 DESCRIPTION/d' $@ -+ gsed -i.bak '4r $<' $@ - rm $@.bak - EOMAKE - } diff --git a/databases/pgbadger/files/patch-pgbadger b/databases/pgbadger/files/patch-pgbadger deleted file mode 100644 index f469e209e9ea..000000000000 --- a/databases/pgbadger/files/patch-pgbadger +++ /dev/null @@ -1,22 +0,0 @@ -fix Possible precedence problem between ! and string eq - ---- pgbadger.orig 2025-07-13 10:08:32 UTC -+++ pgbadger -@@ -20462,7 +20462,7 @@ sub highlight_code - # lowercase/uppercase known functions or words followed by an open parenthesis - # if the token is not a keyword, an open parenthesis or a comment - if (($self->_is_function( $token, $last_token, $next_token ) && $next_token eq '(') -- || (!$self->_is_keyword( $token, $next_token, $last_token ) && !$next_token eq '(' -+ || (!$self->_is_keyword( $token, $next_token, $last_token ) && $next_token ne '(' - && $token ne '(' && !$self->_is_comment( $token )) ) { - if ($self->{ 'uc_functions' } == 1) { - $token = '<span class="kw2_l">' . $token . '</span>'; -@@ -23062,7 +23062,7 @@ sub _add_token - # if the token is not a keyword, an open parenthesis or a comment - my $fct = $self->_is_function( $token, $last_token, $next_token ) || ''; - if (($fct and $next_token eq '(' and defined $last_token and uc($last_token) ne 'CREATE') -- or (!$self->_is_keyword( $token, $next_token, $last_token ) and !$next_token eq '(' -+ or (!$self->_is_keyword( $token, $next_token, $last_token ) and $next_token ne '(' - and $token ne '(' and !$self->_is_comment( $token )) ) - { - $token =~ s/$fct/\L$fct\E/i if ( $self->{ 'uc_functions' } == 1 ); diff --git a/databases/pgbarman/Makefile b/databases/pgbarman/Makefile index 5f88f5c8e016..3a937d63546a 100644 --- a/databases/pgbarman/Makefile +++ b/databases/pgbarman/Makefile @@ -1,6 +1,6 @@ PORTNAME= barman DISTVERSIONPREFIX= release/ -DISTVERSION= 3.16.2 +DISTVERSION= 3.17.0 CATEGORIES= databases PKGNAMEPREFIX= pg PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} diff --git a/databases/pgbarman/distinfo b/databases/pgbarman/distinfo index 5f3c85dd7ac4..7db6bde9f80c 100644 --- a/databases/pgbarman/distinfo +++ b/databases/pgbarman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1762332082 -SHA256 (EnterpriseDB-barman-release-3.16.2_GH0.tar.gz) = 02206acb70dcfe3a6b51329e9c2b5848114e357f94dda86ba483aab1b11765ae -SIZE (EnterpriseDB-barman-release-3.16.2_GH0.tar.gz) = 1960673 +TIMESTAMP = 1767871883 +SHA256 (EnterpriseDB-barman-release-3.17.0_GH0.tar.gz) = 7ecf6730abf5abe06cb8229bc5230cfad1c91627d87a330d0f4119426b53eae0 +SIZE (EnterpriseDB-barman-release-3.17.0_GH0.tar.gz) = 1975909 diff --git a/databases/pgbarman/files/patch-barman_config.py b/databases/pgbarman/files/patch-barman_config.py index 005a002ec065..17257efbd841 100644 --- a/databases/pgbarman/files/patch-barman_config.py +++ b/databases/pgbarman/files/patch-barman_config.py @@ -1,6 +1,6 @@ ---- barman/config.py.orig 2024-11-23 11:42:48 UTC +--- barman/config.py.orig 2026-01-07 14:55:50 UTC +++ barman/config.py -@@ -1194,15 +1194,15 @@ class Config(object): +@@ -1379,15 +1379,15 @@ class Config(object): class Config(object): """This class represents the barman configuration. diff --git a/databases/pgbarman/files/patch-docs___build_man_barman-config-update.1 b/databases/pgbarman/files/patch-docs___build_man_barman-config-update.1 index 66e55cb5e269..3222cf520ee4 100644 --- a/databases/pgbarman/files/patch-docs___build_man_barman-config-update.1 +++ b/databases/pgbarman/files/patch-docs___build_man_barman-config-update.1 @@ -1,6 +1,6 @@ ---- docs/_build/man/barman-config-update.1.orig 2024-11-23 11:48:56 UTC +--- docs/_build/man/barman-config-update.1.orig 2026-01-07 14:55:50 UTC +++ docs/_build/man/barman-config-update.1 -@@ -53,8 +53,8 @@ file has higher precedence and will override values fr +@@ -55,8 +55,8 @@ file has higher precedence and will override values fr The barman \fBconfig\-update\fP command writes configuration options to a file named \fB\&.barman.auto.conf\fP, located in the \fBbarman_home\fP directory. This configuration file has higher precedence and will override values from the global Barman diff --git a/databases/pgbarman/files/patch-docs___build_man_barman.1 b/databases/pgbarman/files/patch-docs___build_man_barman.1 index 962dd1878bdc..dd2dd83f0cd2 100644 --- a/databases/pgbarman/files/patch-docs___build_man_barman.1 +++ b/databases/pgbarman/files/patch-docs___build_man_barman.1 @@ -1,4 +1,4 @@ ---- docs/_build/man/barman.1.orig 2024-11-23 11:47:45 UTC +--- docs/_build/man/barman.1.orig 2026-01-07 14:55:50 UTC +++ docs/_build/man/barman.1 @@ -84,7 +84,7 @@ synopsis should be seen as a replacement for the \fBSU .INDENT 0.0 @@ -9,7 +9,7 @@ not provided. .TP .B \fB\-\-color\fP / \fB\-\-colour { never | always | auto }\fP -@@ -554,8 +554,8 @@ file has higher precedence and will override values fr +@@ -579,8 +579,8 @@ file has higher precedence and will override values fr The barman \fBconfig\-update\fP command writes configuration options to a file named \fB\&.barman.auto.conf\fP, located in the \fBbarman_home\fP directory. This configuration file has higher precedence and will override values from the global Barman diff --git a/databases/pgbarman/files/patch-docs___build_man_barman.5 b/databases/pgbarman/files/patch-docs___build_man_barman.5 index d28981bdef54..af97c98161bc 100644 --- a/databases/pgbarman/files/patch-docs___build_man_barman.5 +++ b/databases/pgbarman/files/patch-docs___build_man_barman.5 @@ -1,6 +1,6 @@ ---- docs/_build/man/barman.5.orig 2024-11-23 11:45:54 UTC +--- docs/_build/man/barman.5.orig 2026-01-07 14:55:50 UTC +++ docs/_build/man/barman.5 -@@ -44,13 +44,13 @@ barman system, such as the main directory, system user +@@ -45,7 +45,7 @@ barman system, such as the main directory, system user .sp 1. \fBGlobal Configuration\fP: It comprises one file with a set of configurations for the barman system, such as the main directory, system user, log file, and other general @@ -9,6 +9,17 @@ level by \fB~/.barman.conf\fP or by specifying a \fB\&.conf\fP file using the \fB\-c\fP / \fB\-\-config\fP with the \fI\%barman command\fP directly in the CLI. .sp +@@ -55,14 +55,14 @@ it finds. The search order is as follows: + .IP \(bu 2 + \fB~/.barman.conf\fP \- per\-user configuration file. + .IP \(bu 2 +-\fB/etc/barman.conf\fP \- main global configuration file. ++\fB%%PREFIX%%/etc/barman.conf\fP \- main global configuration file. + .IP \(bu 2 +-\fB/etc/barman/barman.conf\fP \- alternative global configuration file. ++\fB%%PREFIX%%/etc/barman/barman.conf\fP \- alternative global configuration file. + .UNINDENT + .sp 2. \fBServer Configuration\fP: It comprises one or more files with a set of configurations for a Postgres server that you want to keep track and interact for -backup, recovery and/or replication. Default location is \fB/etc/barman.d\fP and must use @@ -16,7 +27,7 @@ the \fB\&.conf\fP suffix. You may have one or multiple files for servers. You can override the default location by setting the \fBconfiguration_files_directory\fP option in the global configuration file and placing the files in that particular location. -@@ -58,7 +58,7 @@ the model. These overrides can be implemented using th +@@ -70,7 +70,7 @@ the model. These overrides can be implemented using th 3. \fBModel Configuration\fP: It comprises one or more files with a set of configurations overrides that can be applied to Barman servers within the same cluster as the model. These overrides can be implemented using the barman \fBconfig\-switch\fP command. @@ -25,7 +36,7 @@ \fBconfiguration_files_directory\fP override option from the server configuration applies for models. You may have one or multiple files for models. .sp -@@ -175,7 +175,7 @@ Scope: Global / Server / Model. +@@ -187,7 +187,7 @@ Scope: Global / Server / Model. .sp \fBbarman_home\fP .sp @@ -34,7 +45,7 @@ .sp Scope: Global. .sp -@@ -255,7 +255,7 @@ Designates the directory where server/model configurat +@@ -241,7 +241,7 @@ Designates the directory where server/model configurat \fBconfiguration_files_directory\fP .sp Designates the directory where server/model configuration files will be read by Barman. diff --git a/databases/pgpool-II-42/Makefile b/databases/pgpool-II-42/Makefile deleted file mode 100644 index a5c6b9ccef35..000000000000 --- a/databases/pgpool-II-42/Makefile +++ /dev/null @@ -1,59 +0,0 @@ -PORTNAME= pgpool-II -PORTVERSION= 4.2.12 -CATEGORIES= databases -MASTER_SITES= http://www.pgpool.net/mediawiki/images/ -PKGNAMESUFFIX= 42 - -MAINTAINER= mike.jakubik@swiftsmsgateway.com -COMMENT= Connection pool server for PostgreSQL -WWW= https://pgpool.net/ - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/COPYING - -DEPRECATED= Upstream EOL reaches on 2025-11-30 -EXPIRATION_DATE= 2025-12-31 - -USES= gmake libtool pgsql:11+ -USE_LDCONFIG= yes -USE_RC_SUBR= pgpool - -GNU_CONFIGURE= yes - -CONFLICTS_INSTALL= pgpool-II-[0-9][0-9] pgpool-II[0-9][0-9] # etc/escalation.sh.sample etc/failover.sh.sample etc/pcp.conf.sample - -PORTSCOUT= limit:^4.2.[0-9]* - -PORTDOCS= * - -OPTIONS_DEFINE= DOCS SSL PAM MEMCACHED -OPTIONS_DEFAULT= SSL - -MEMCACHED_DESC= Use memcached for in memory query cache -PAM_DESC= Build with PAM support -SSL_DESC= Build with OpenSSL support - -MEMCACHED_LIB_DEPENDS= libmemcached.so:databases/libmemcached -MEMCACHED_CONFIGURE_ON= --with-memcached=${LOCALBASE}/include -PAM_CONFIGURE_ON= --with-pam -SSL_USES= ssl -SSL_CONFIGURE_WITH= openssl - -.include <bsd.port.options.mk> - -.if ${OPSYS} == FreeBSD -CFLAGS+= -Wno-error=int-conversion -.endif - -post-install: - @${MKDIR} ${STAGEDIR}/var/run/pgpool - ${INSTALL_LIB} ${WRKSRC}/src/libs/pcp/.libs/libpcp.so.2.0.0 ${STAGEDIR}${PREFIX}/lib - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${DOCSDIR} "-not -name Makefile.\*" -.for f in AUTHORS ChangeLog NEWS TODO - ${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR} -.endfor - -.include <bsd.port.mk> diff --git a/databases/pgpool-II-42/distinfo b/databases/pgpool-II-42/distinfo deleted file mode 100644 index f867cfb1a3e1..000000000000 --- a/databases/pgpool-II-42/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1682873414 -SHA256 (pgpool-II-4.2.12.tar.gz) = 9f4a770aba2a60b047996bd5fd9ec6bf974560e73d483aff68d7a9455e93c5d0 -SIZE (pgpool-II-4.2.12.tar.gz) = 4758162 diff --git a/databases/pgpool-II-42/files/pgpool.in b/databases/pgpool-II-42/files/pgpool.in deleted file mode 100644 index cb76557e2e57..000000000000 --- a/databases/pgpool-II-42/files/pgpool.in +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh - -# PROVIDE: pgpool -# REQUIRE: LOGIN -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf.local or /etc/rc.conf -# to enable this service: -# -# pgpool_enable (bool): Set to NO by default. -# Set it to YES to enable pgpool. -# pgpool_conf (file): Set location of your config. -# Default is "%%PREFIX%%/etc/pgpool.conf" -# pgpool_hba (file): Set location of your pool hba file. -# Default is "%%PREFIX%%/etc/pool_hba.conf" -# pgpool_pcp (file): Set location of your pcp conf file. -# Default is "%%PREFIX%%/etc/pcp.conf" -# pgpool_user (uid): User ID to run as (default nobody) -# pgpool_stop_mode (string): Shutdown mode -# Default is "smart" -# Possibilities are "smart", "fast", or "immediate" -# - -. /etc/rc.subr - -name=pgpool -rcvar=pgpool_enable - -load_rc_config $name - -: ${pgpool_enable="NO"} -: ${pgpool_conf="%%PREFIX%%/etc/pgpool.conf"} -: ${pgpool_hba="%%PREFIX%%/etc/pool_hba.conf"} -: ${pgpool_pcp="%%PREFIX%%/etc/pcp.conf"} -: ${pgpool_user="nobody"} -: ${pgpool_stop_mode="smart"} - -command="%%PREFIX%%/bin/pgpool" -command_args="-f ${pgpool_conf} -a ${pgpool_hba} -F ${pgpool_pcp}" -stop_cmd="${command} -m ${pgpool_stop_mode} ${command_args} stop" -reload_cmd="${command} ${command_args} reload" -extra_commands="reload" - -required_files="${pgpool_conf}" - - -run_rc_command "$1" - diff --git a/databases/pgpool-II-42/pkg-descr b/databases/pgpool-II-42/pkg-descr deleted file mode 100644 index 59d385596b8e..000000000000 --- a/databases/pgpool-II-42/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -pgpool is a connection pool server for PostgreSQL. pgpool runs between -PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can -connect to pgpool as if it were a standard PostgreSQL server. - -pgpool caches the connection to PostgreSQL server to reduce the overhead to -establish the connection to it. diff --git a/databases/pgpool-II-42/pkg-message b/databases/pgpool-II-42/pkg-message deleted file mode 100644 index 1df287cd433a..000000000000 --- a/databases/pgpool-II-42/pkg-message +++ /dev/null @@ -1,15 +0,0 @@ -[ -{ type: install - message: <<EOM -In order to start pgpool you need some more configuration: - -# sysrc -f /etc/rc.conf pgpool_enable="YES" -# sysrc -f /etc/rc.conf pgpool_user="root" - -Please consider the usage of another user. The user is -required to have read/write access to /var/run/pgpool. - -Using the root user is - as always - an security issue. -EOM -} -] diff --git a/databases/pgpool-II-42/pkg-plist b/databases/pgpool-II-42/pkg-plist deleted file mode 100644 index bb0782c7ce97..000000000000 --- a/databases/pgpool-II-42/pkg-plist +++ /dev/null @@ -1,46 +0,0 @@ -bin/pcp_attach_node -bin/pcp_detach_node -bin/pcp_health_check_stats -bin/pcp_node_count -bin/pcp_node_info -bin/pcp_pool_status -bin/pcp_proc_count -bin/pcp_proc_info -bin/pcp_promote_node -bin/pcp_recovery_node -bin/pcp_reload_config -bin/pcp_stop_pgpool -bin/pcp_watchdog_info -bin/pg_enc -bin/pg_md5 -bin/pgpool -bin/pgpool_setup -bin/pgproto -bin/watchdog_setup -bin/wd_cli -@sample etc/escalation.sh.sample -@sample etc/failover.sh.sample -@sample etc/follow_primary.sh.sample -@sample etc/pcp.conf.sample -@sample etc/pgpool.conf.sample -@sample etc/pgpool_remote_start.sample -@sample etc/pool_hba.conf.sample -etc/pgpool.conf.sample-logical -etc/pgpool.conf.sample-raw -etc/pgpool.conf.sample-replication -etc/pgpool.conf.sample-stream -etc/pgpool.conf.sample-slony -etc/pgpool.conf.sample-snapshot -etc/recovery_1st_stage.sample -etc/recovery_2nd_stage.sample -include/libpcp_ext.h -include/pcp.h -include/pool_process_reporting.h -include/pool_type.h -lib/libpcp.a -lib/libpcp.so -lib/libpcp.so.2 -lib/libpcp.so.2.0.0 -%%DATADIR%%/insert_lock.sql -%%DATADIR%%/pgpool.pam -@dir /var/run/pgpool diff --git a/databases/pgpool-II-47/Makefile b/databases/pgpool-II-47/Makefile index dbab0798a138..d4f307d9f395 100644 --- a/databases/pgpool-II-47/Makefile +++ b/databases/pgpool-II-47/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgpool-II -DISTVERSION= 4.7RC1 +DISTVERSION= 4.7.0 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= -47 diff --git a/databases/pgpool-II-47/distinfo b/databases/pgpool-II-47/distinfo index 93bb5583d1d4..0c5721b2649d 100644 --- a/databases/pgpool-II-47/distinfo +++ b/databases/pgpool-II-47/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765530589 -SHA256 (pgpool-II-4.7RC1.tar.gz) = cf44a893733abc170a582312be57ab7f1ea9fc4713570463705f7e057d59fbdc -SIZE (pgpool-II-4.7RC1.tar.gz) = 5594640 +TIMESTAMP = 1766915321 +SHA256 (pgpool-II-4.7.0.tar.gz) = 7f3edabb04ab7e22087d550e112c6666915df37ba833df722d96ddcb47313547 +SIZE (pgpool-II-4.7.0.tar.gz) = 5608097 diff --git a/databases/php81-dba/Makefile b/databases/php81-dba/Makefile deleted file mode 100644 index 5c5380de17df..000000000000 --- a/databases/php81-dba/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -dba - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-dba/files/patch-config.m4 b/databases/php81-dba/files/patch-config.m4 deleted file mode 100644 index 30f662138374..000000000000 --- a/databases/php81-dba/files/patch-config.m4 +++ /dev/null @@ -1,50 +0,0 @@ ---- config.m4.orig 2016-01-06 15:14:47 UTC -+++ config.m4 -@@ -324,6 +324,38 @@ if test "$PHP_DB4" != "no"; then - THIS_PREFIX=$i - THIS_INCLUDE=$i/include/db5.3/db.h - break -+ elif test -f "$i/include/db5/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db5/db.h -+ break -+ elif test -f "$i/include/db48/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db48/db.h -+ break -+ elif test -f "$i/include/db47/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db47/db.h -+ break -+ elif test -f "$i/include/db46/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db46/db.h -+ break -+ elif test -f "$i/include/db44/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db44/db.h -+ break -+ elif test -f "$i/include/db43/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db43/db.h -+ break -+ elif test -f "$i/include/db42/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db42/db.h -+ break -+ elif test -f "$i/include/db41/db.h"; then -+ THIS_PREFIX=$i -+ THIS_INCLUDE=$i/include/db41/db.h -+ break - elif test -f "$i/include/db5.1/db.h"; then - THIS_PREFIX=$i - THIS_INCLUDE=$i/include/db5.1/db.h -@@ -366,7 +398,7 @@ if test "$PHP_DB4" != "no"; then - break - fi - done -- PHP_DBA_DB_CHECK(4, db-5.3 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)]) -+ PHP_DBA_DB_CHECK(4, db-5 db-5.3 db-5.1 db-5.0 db-4.8 db-4.7 db-4.6 db-4.5 db-4.4 db-4.3 db-4.2 db-4.1 db-4.0 db-4 db4 db, [(void)db_create((DB**)0, (DB_ENV*)0, 0)]) - fi - PHP_DBA_STD_RESULT(db4,Berkeley DB4) - diff --git a/databases/php81-mysqli/Makefile b/databases/php81-mysqli/Makefile deleted file mode 100644 index 26619c0bed72..000000000000 --- a/databases/php81-mysqli/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -mysqli - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-mysqli/files/patch-mysqli__api.c b/databases/php81-mysqli/files/patch-mysqli__api.c deleted file mode 100644 index a100e8205fb6..000000000000 --- a/databases/php81-mysqli/files/patch-mysqli__api.c +++ /dev/null @@ -1,12 +0,0 @@ ---- mysqli_api.c.orig 2020-09-29 22:36:51 UTC -+++ mysqli_api.c -@@ -29,7 +29,9 @@ - #include "zend_smart_str.h" - #include "php_mysqli_structs.h" - #include "mysqli_priv.h" -+#if defined(MYSQLI_USE_MYSQLND) - #include "ext/mysqlnd/mysql_float_to_double.h" -+#endif - - #define ERROR_ARG_POS(arg_num) (getThis() ? (arg_num-1) : (arg_num)) - diff --git a/databases/php81-mysqli/files/patch-php_mysqli_structs.h b/databases/php81-mysqli/files/patch-php_mysqli_structs.h deleted file mode 100644 index 68568dd214fd..000000000000 --- a/databases/php81-mysqli/files/patch-php_mysqli_structs.h +++ /dev/null @@ -1,20 +0,0 @@ ---- php_mysqli_structs.h.orig 2010-07-26 15:52:54.000000000 +0200 -+++ php_mysqli_structs.h 2010-07-26 15:53:14.000000000 +0200 -@@ -36,7 +36,7 @@ - #define FALSE 0 - #endif - --#ifdef MYSQLI_USE_MYSQLND -+#if defined(MYSQLI_USE_MYSQLND) - #include "ext/mysqlnd/mysqlnd.h" - #include "mysqli_mysqlnd.h" - #else -@@ -53,6 +53,8 @@ - #undef HAVE_MBSTATE_T - #define WE_HAD_MBSTATE_T - #endif -+ -+typedef zend_ulong ulong; - - #if defined(ulong) && !defined(HAVE_ULONG) - #define HAVE_ULONG diff --git a/databases/php81-odbc/Makefile b/databases/php81-odbc/Makefile deleted file mode 100644 index 8bc4a42dd7ce..000000000000 --- a/databases/php81-odbc/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -odbc - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-odbc/files/patch-config.m4 b/databases/php81-odbc/files/patch-config.m4 deleted file mode 100644 index 04efc6ded7c9..000000000000 --- a/databases/php81-odbc/files/patch-config.m4 +++ /dev/null @@ -1,111 +0,0 @@ ---- config.m4.orig 2019-08-06 06:54:18 UTC -+++ config.m4 -@@ -91,6 +91,9 @@ AC_DEFUN([PHP_ODBC_FIND_EMPRESS_BCS_LIBS - dnl - dnl configure options - dnl -+PHP_ARG_ENABLE(odbc,, -+[ --enable-odbc Enable ODBC support with selected driver]) -+ - - PHP_ARG_WITH([odbcver],, - [AS_HELP_STRING([[--with-odbcver[=HEX]]], -@@ -102,7 +105,7 @@ PHP_ARG_WITH([odbcver],, - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([adabas],, - [AS_HELP_STRING([[--with-adabas[=DIR]]], -- [Include Adabas D support [/usr/local]])]) -+ [Include Adabas D support [/usr/local]])], [no], [no]) - - AC_MSG_CHECKING([for Adabas support]) - if test "$PHP_ADABAS" != "no"; then -@@ -132,7 +135,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([sapdb],, - [AS_HELP_STRING([[--with-sapdb[=DIR]]], -- [Include SAP DB support [/usr/local]])]) -+ [Include SAP DB support [/usr/local]])], [no], [no]) - - AC_MSG_CHECKING([for SAP DB support]) - if test "$PHP_SAPDB" != "no"; then -@@ -153,7 +156,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([solid],, - [AS_HELP_STRING([[--with-solid[=DIR]]], -- [Include Solid support [/usr/local/solid]])]) -+ [Include Solid support [/usr/local/solid]])], [no], [no]) - - AC_MSG_CHECKING(for Solid support) - if test "$PHP_SOLID" != "no"; then -@@ -181,7 +184,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([ibm-db2],, - [AS_HELP_STRING([[--with-ibm-db2[=DIR]]], -- [Include IBM DB2 support [/home/db2inst1/sqllib]])]) -+ [Include IBM DB2 support [/home/db2inst1/sqllib]])], [no], [no]) - - AC_MSG_CHECKING(for IBM DB2 support) - if test "$PHP_IBM_DB2" != "no"; then -@@ -222,7 +225,7 @@ if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([empress],, - [AS_HELP_STRING([[--with-empress[=DIR]]], - [Include Empress support $EMPRESSPATH (Empress Version >= 8.60 -- required)])]) -+ required)])], [no], [no]) - - AC_MSG_CHECKING(for Empress support) - if test "$PHP_EMPRESS" != "no"; then -@@ -248,7 +251,7 @@ if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([empress-bcs],, - [AS_HELP_STRING([[--with-empress-bcs[=DIR]]], - [Include Empress Local Access support $EMPRESSPATH (Empress Version >= -- 8.60 required)])]) -+ 8.60 required)])], [no], [no]) - - AC_MSG_CHECKING(for Empress local access support) - if test "$PHP_EMPRESS_BCS" != "no"; then -@@ -294,7 +297,7 @@ PHP_ARG_WITH([custom-odbc],, - your include dirs. For example, you should define following for Sybase SQL - Anywhere 5.5.00 on QNX, prior to running this configure script: - CPPFLAGS="-DODBC_QNX -DSQLANY_BUG" LDFLAGS=-lunix -- CUSTOM_ODBC_LIBS="-ldblib -lodbc"])]) -+ CUSTOM_ODBC_LIBS="-ldblib -lodbc"])], [no], [no]) - - AC_MSG_CHECKING(for a custom ODBC support) - if test "$PHP_CUSTOM_ODBC" != "no"; then -@@ -317,7 +320,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([iodbc],, - [AS_HELP_STRING([--with-iodbc], -- [Include iODBC support])]) -+ [Include iODBC support])], [no], [no]) - - AC_MSG_CHECKING(whether to build with iODBC support) - if test "$PHP_IODBC" != "no"; then -@@ -335,7 +338,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([esoob],, - [AS_HELP_STRING([[--with-esoob[=DIR]]], -- [Include Easysoft OOB support [/usr/local/easysoft/oob/client]])]) -+ [Include Easysoft OOB support [/usr/local/easysoft/oob/client]])], [no], [no]) - - AC_MSG_CHECKING(for Easysoft ODBC-ODBC Bridge support) - if test "$PHP_ESOOB" != "no"; then -@@ -358,7 +361,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([unixODBC],, - [AS_HELP_STRING([--with-unixODBC], -- [Include unixODBC support])]) -+ [Include unixODBC support])], [no], [no]) - - AC_MSG_CHECKING(whether to build with unixODBC support) - if test "$PHP_UNIXODBC" != "no"; then -@@ -386,7 +389,7 @@ fi - if test -z "$ODBC_TYPE"; then - PHP_ARG_WITH([dbmaker],, - [AS_HELP_STRING([[--with-dbmaker[=DIR]]], -- [Include DBMaker support])]) -+ [Include DBMaker support])], [no], [no]) - - AC_MSG_CHECKING(for DBMaker support) - if test "$PHP_DBMAKER" != "no"; then diff --git a/databases/php81-pdo/Makefile b/databases/php81-pdo/Makefile deleted file mode 100644 index 436a6554b434..000000000000 --- a/databases/php81-pdo/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pdo_dblib/Makefile b/databases/php81-pdo_dblib/Makefile deleted file mode 100644 index 1634ef611565..000000000000 --- a/databases/php81-pdo_dblib/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo_dblib - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pdo_firebird/Makefile b/databases/php81-pdo_firebird/Makefile deleted file mode 100644 index 3d8a88b9eb21..000000000000 --- a/databases/php81-pdo_firebird/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo_firebird - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pdo_mysql/Makefile b/databases/php81-pdo_mysql/Makefile deleted file mode 100644 index 2f00ba00c8b9..000000000000 --- a/databases/php81-pdo_mysql/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo_mysql - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pdo_odbc/Makefile b/databases/php81-pdo_odbc/Makefile deleted file mode 100644 index ea600d80a450..000000000000 --- a/databases/php81-pdo_odbc/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo_odbc - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pdo_pgsql/Makefile b/databases/php81-pdo_pgsql/Makefile deleted file mode 100644 index f13461131114..000000000000 --- a/databases/php81-pdo_pgsql/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo_pgsql - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pdo_sqlite/Makefile b/databases/php81-pdo_sqlite/Makefile deleted file mode 100644 index c18088284a0b..000000000000 --- a/databases/php81-pdo_sqlite/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pdo_sqlite - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-pgsql/Makefile b/databases/php81-pgsql/Makefile deleted file mode 100644 index f23a2e371612..000000000000 --- a/databases/php81-pgsql/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -pgsql - -.include "${MASTERDIR}/Makefile" diff --git a/databases/php81-sqlite3/Makefile b/databases/php81-sqlite3/Makefile deleted file mode 100644 index c68eab2dfba2..000000000000 --- a/databases/php81-sqlite3/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -CATEGORIES= databases - -MASTERDIR= ${.CURDIR}/../../lang/php81 - -PKGNAMESUFFIX= -sqlite3 - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgis33/Makefile b/databases/postgis33/Makefile index 3c7277519834..fdc2b30a416d 100644 --- a/databases/postgis33/Makefile +++ b/databases/postgis33/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libproj.so:graphics/proj \ libgdal.so:graphics/gdal \ libpcre2-8.so:devel/pcre2 -USES= alias compiler:c++14-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ +USES= compiler:c++14-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ localbase perl5 pkgconfig pgsql:11+ shebangfix USE_GNOME= libxml2 USE_PERL5= build diff --git a/databases/postgis34/Makefile b/databases/postgis34/Makefile index b537ab90c47c..a98ecb3f9816 100644 --- a/databases/postgis34/Makefile +++ b/databases/postgis34/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libproj.so:graphics/proj \ libgdal.so:graphics/gdal \ libpcre2-8.so:devel/pcre2 -USES= alias compiler:c++11-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ +USES= compiler:c++11-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ localbase perl5 pkgconfig pgsql:11+ shebangfix USE_GNOME= libxml2 USE_PERL5= build diff --git a/databases/postgis35/Makefile b/databases/postgis35/Makefile index 1549670293a1..26439eb3cdf3 100644 --- a/databases/postgis35/Makefile +++ b/databases/postgis35/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libproj.so:graphics/proj \ libgdal.so:graphics/gdal \ libpcre2-8.so:devel/pcre2 -USES= alias compiler:c++11-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ +USES= compiler:c++11-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ localbase perl5 pkgconfig pgsql:11+ shebangfix USE_GNOME= libxml2 USE_PERL5= build diff --git a/databases/postgis36/Makefile b/databases/postgis36/Makefile index 53b8ada3d7a1..f3dd486fbe2c 100644 --- a/databases/postgis36/Makefile +++ b/databases/postgis36/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libproj.so:graphics/proj \ libgdal.so:graphics/gdal \ libpcre2-8.so:devel/pcre2 -USES= alias compiler:c++11-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ +USES= compiler:c++11-lang cpe gmake gnome iconv:wchar_t libtool:keepla \ localbase perl5 pkgconfig pgsql:11+ shebangfix USE_GNOME= libxml2 USE_PERL5= build diff --git a/databases/postgresql-libpqxx/Makefile b/databases/postgresql-libpqxx/Makefile index 86cc03355d11..4792bb4607de 100644 --- a/databases/postgresql-libpqxx/Makefile +++ b/databases/postgresql-libpqxx/Makefile @@ -1,5 +1,5 @@ PORTNAME= libpqxx -DISTVERSION= 7.10.3 +DISTVERSION= 7.10.5 CATEGORIES= databases PKGNAMEPREFIX= postgresql- DIST_SUBDIR= postgresql diff --git a/databases/postgresql-libpqxx/distinfo b/databases/postgresql-libpqxx/distinfo index ce4cd72ec8de..7d6ee9868731 100644 --- a/databases/postgresql-libpqxx/distinfo +++ b/databases/postgresql-libpqxx/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760705981 -SHA256 (postgresql/jtv-libpqxx-7.10.3_GH0.tar.gz) = c5ba455e4f28901297c18a76e533c466cbe8908d4b2ff6313235954bb37cef25 -SIZE (postgresql/jtv-libpqxx-7.10.3_GH0.tar.gz) = 787055 +TIMESTAMP = 1767185749 +SHA256 (postgresql/jtv-libpqxx-7.10.5_GH0.tar.gz) = aa214df8b98672a43a39b68a37da87af1415a44965f6e484f85ca0eb4f151367 +SIZE (postgresql/jtv-libpqxx-7.10.5_GH0.tar.gz) = 787933 diff --git a/databases/postgresql-plv8js/Makefile b/databases/postgresql-plv8js/Makefile index e3277d7e6eb4..1bf31fc2b453 100644 --- a/databases/postgresql-plv8js/Makefile +++ b/databases/postgresql-plv8js/Makefile @@ -1,5 +1,5 @@ PORTNAME= plv8 -PORTVERSION= 3.2.3 +PORTVERSION= 3.2.4 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- diff --git a/databases/postgresql-plv8js/distinfo b/databases/postgresql-plv8js/distinfo index d8e104f265c8..a3a1252408ed 100644 --- a/databases/postgresql-plv8js/distinfo +++ b/databases/postgresql-plv8js/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743192768 -SHA256 (plv8-plv8-v3.2.3_GH0.tar.gz) = 48d86c27148a1d13998d6ebcf850d9153622cc0481efd379560ea8a243be1d1c -SIZE (plv8-plv8-v3.2.3_GH0.tar.gz) = 8989841 +TIMESTAMP = 1767271996 +SHA256 (plv8-plv8-v3.2.4_GH0.tar.gz) = e05aed3b39851d7a9dc942d4ee229ca6842ce75b47f1c85c5031bc356061d66a +SIZE (plv8-plv8-v3.2.4_GH0.tar.gz) = 8991020 diff --git a/databases/postgresql-plv8js/files/patch-Makefile b/databases/postgresql-plv8js/files/patch-Makefile index a22c52778e3d..04eaa72f4057 100644 --- a/databases/postgresql-plv8js/files/patch-Makefile +++ b/databases/postgresql-plv8js/files/patch-Makefile @@ -1,6 +1,6 @@ ---- Makefile.orig 2024-09-08 02:08:55 UTC +--- Makefile.orig 2025-07-05 17:44:26 UTC +++ Makefile -@@ -36,19 +36,8 @@ SHLIB_LINK += -Ldeps/v8-cmake/build +@@ -37,20 +37,8 @@ SHLIB_LINK += -Ldeps/v8-cmake/build SHLIB_LINK += -Ldeps/v8-cmake/build @@ -12,16 +12,17 @@ - -deps/v8-cmake/README.md: - @git submodule update --init --recursive +- $(foreach patch,$(PATCH_V8),cd deps/v8-cmake && patch -p1 <../../$(patch);) - -deps/v8-cmake/build/libv8_libbase.a: deps/v8-cmake/README.md -- @cd deps/v8-cmake && mkdir -p build && cd build && cmake -Denable-fPIC=ON -DCMAKE_BUILD_TYPE=Release ../ && make -j $(NUMPROC) +- @cd deps/v8-cmake && mkdir -p build && cd build && cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -Denable-fPIC=ON -DCMAKE_BUILD_TYPE=Release ../ && make -j $(NUMPROC) - -v8: deps/v8-cmake/build/libv8_libbase.a - # enable direct jsonb conversion by default CCFLAGS += -DJSONB_DIRECT_CONVERSION -@@ -74,7 +63,7 @@ endif +@@ -76,7 +64,7 @@ endif REGRESS += bigint_graceful endif diff --git a/databases/postgresql18-server/Makefile b/databases/postgresql18-server/Makefile index 844a3c396692..0f78eaf17f34 100644 --- a/databases/postgresql18-server/Makefile +++ b/databases/postgresql18-server/Makefile @@ -103,7 +103,7 @@ LLVM_DESC= Build with support for JIT-compiling expressions LLVM_CONFIGURE_WITH= llvm LLVM_CONFIGURE_ENV= LLVM_CONFIG=${LLVM_CONFIG} \ CLANG=${LOCALBASE}/bin/clang${LLVM_VERSION} -LLVM_USES= llvm:min=11,lib +LLVM_USES= llvm:lib CONFIGURE_ARGS+= --with-icu LIB_DEPENDS+= libicudata.so:devel/icu diff --git a/databases/proftpd-mod_sql_mysql/Makefile b/databases/proftpd-mod_sql_mysql/Makefile index 6668faba59dc..d121a85bed45 100644 --- a/databases/proftpd-mod_sql_mysql/Makefile +++ b/databases/proftpd-mod_sql_mysql/Makefile @@ -1,5 +1,5 @@ PORTNAME= mod_sql_mysql -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases ftp PKGNAMEPREFIX= proftpd- diff --git a/databases/proftpd-mod_sql_odbc/Makefile b/databases/proftpd-mod_sql_odbc/Makefile index 068fb976c173..1be130418800 100644 --- a/databases/proftpd-mod_sql_odbc/Makefile +++ b/databases/proftpd-mod_sql_odbc/Makefile @@ -1,5 +1,5 @@ PORTNAME= mod_sql_odbc -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases ftp PKGNAMEPREFIX= proftpd- diff --git a/databases/proftpd-mod_sql_postgres/Makefile b/databases/proftpd-mod_sql_postgres/Makefile index ee416ed240ab..3f5e13f990d6 100644 --- a/databases/proftpd-mod_sql_postgres/Makefile +++ b/databases/proftpd-mod_sql_postgres/Makefile @@ -1,5 +1,5 @@ PORTNAME= mod_sql_postgres -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases ftp PKGNAMEPREFIX= proftpd- diff --git a/databases/proftpd-mod_sql_sqlite/Makefile b/databases/proftpd-mod_sql_sqlite/Makefile index b864bb688db7..c6d7a70c715b 100644 --- a/databases/proftpd-mod_sql_sqlite/Makefile +++ b/databases/proftpd-mod_sql_sqlite/Makefile @@ -1,5 +1,5 @@ PORTNAME= mod_sql_sqlite -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= databases ftp PKGNAMEPREFIX= proftpd- diff --git a/databases/proftpd-mod_sql_tds/Makefile b/databases/proftpd-mod_sql_tds/Makefile index b6147e23746f..5d7e184f3a8c 100644 --- a/databases/proftpd-mod_sql_tds/Makefile +++ b/databases/proftpd-mod_sql_tds/Makefile @@ -1,6 +1,6 @@ PORTNAME= mod_sql_tds DISTVERSION= 4.13 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases ftp PKGNAMEPREFIX= proftpd- diff --git a/databases/py-aiosql/Makefile b/databases/py-aiosql/Makefile index 3e3b7f7cde06..dc03a7c50626 100644 --- a/databases/py-aiosql/Makefile +++ b/databases/py-aiosql/Makefile @@ -1,5 +1,5 @@ PORTNAME= aiosql -DISTVERSION= 14.1 +DISTVERSION= 15.0 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-aiosql/distinfo b/databases/py-aiosql/distinfo index 91e8ffc71d69..09bd507986e9 100644 --- a/databases/py-aiosql/distinfo +++ b/databases/py-aiosql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764335867 -SHA256 (aiosql-14.1.tar.gz) = 56c33afc440311ab494f43a3af7f5c7c8773d730b2a8c55e95de19697dfc2fe2 -SIZE (aiosql-14.1.tar.gz) = 76556 +TIMESTAMP = 1768042530 +SHA256 (aiosql-15.0.tar.gz) = 744939fdfb3e0c36d88ccaf1f73cb1cf8cc38e7052666b884502db99aff8f3fd +SIZE (aiosql-15.0.tar.gz) = 77429 diff --git a/databases/py-databricks-sql-connector/Makefile b/databases/py-databricks-sql-connector/Makefile index c74806b0c7e8..81138592e998 100644 --- a/databases/py-databricks-sql-connector/Makefile +++ b/databases/py-databricks-sql-connector/Makefile @@ -1,6 +1,5 @@ PORTNAME= databricks-sql-connector -PORTVERSION= 4.2.2 -PORTREVISION= 1 +PORTVERSION= 4.2.3 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,10 +13,10 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poetry-core>=1.0.0:devel/py-poetry-core@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lz4>=4.0.2<5:archivers/py-lz4@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lz4>=4.4.5<5:archivers/py-lz4@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}oauthlib>=3.1.0<4:security/py-oauthlib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openpyxl>=3.0.10<4:textproc/py-openpyxl@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pandas>=2.2.3,1:math/py-pandas@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pandas>=2.2.3,1<2.4.0,1:math/py-pandas@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pybreaker>=1.0.0<2:devel/py-pybreaker@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyjwt>=2.0.0<3:www/py-pyjwt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-dateutil>=2.8.0<3:devel/py-python-dateutil@${PY_FLAVOR} \ diff --git a/databases/py-databricks-sql-connector/distinfo b/databases/py-databricks-sql-connector/distinfo index 67475348d141..fa33ec56f9bd 100644 --- a/databases/py-databricks-sql-connector/distinfo +++ b/databases/py-databricks-sql-connector/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765032620 -SHA256 (databricks_sql_connector-4.2.2.tar.gz) = 409632a6adb93e849ecd5faaa2e98192e307c984e85cc7c696fb8e953acb7403 -SIZE (databricks_sql_connector-4.2.2.tar.gz) = 186206 +TIMESTAMP = 1766953342 +SHA256 (databricks_sql_connector-4.2.3.tar.gz) = 01ebeeaaa85a84bc3910e3fd1ddf969c56ce0e5f825dc84881a65d16eaa681b6 +SIZE (databricks_sql_connector-4.2.3.tar.gz) = 186274 diff --git a/databases/py-databricks-sql-connector/files/patch-pyproject.toml b/databases/py-databricks-sql-connector/files/patch-pyproject.toml index 805a3305bd48..5729c052a285 100644 --- a/databases/py-databricks-sql-connector/files/patch-pyproject.toml +++ b/databases/py-databricks-sql-connector/files/patch-pyproject.toml @@ -1,20 +1,15 @@ --- pyproject.toml.orig 1970-01-01 00:00:00 UTC +++ pyproject.toml -@@ -10,10 +10,10 @@ python = "^3.8.0" +@@ -10,7 +10,7 @@ python = "^3.8.0" [tool.poetry.dependencies] python = "^3.8.0" -thrift = ">=0.16.0,<0.21.0" +thrift = ">=0.16.0" pandas = [ -- { version = ">=1.2.5,<2.3.0", python = ">=3.8,<3.13" }, -- { version = ">=2.2.3,<2.3.0", python = ">=3.13" } -+ { version = ">=1.2.5", python = ">=3.8,<3.13" }, -+ { version = ">=2.2.3", python = ">=3.13" } - ] - lz4 = "^4.0.2" - requests = "^2.18.1" -@@ -27,7 +27,7 @@ pybreaker = "^1.0.0" + { version = ">=1.2.5,<2.4.0", python = ">=3.8,<3.13" }, + { version = ">=2.2.3,<2.4.0", python = ">=3.13" } +@@ -31,7 +31,7 @@ pybreaker = "^1.0.0" ] pyjwt = "^2.0.0" pybreaker = "^1.0.0" @@ -23,7 +18,7 @@ [tool.poetry.extras] -@@ -88,4 +88,4 @@ skip_covered = false +@@ -92,4 +92,4 @@ skip_covered = false skip_covered = false [tool.coverage.xml] diff --git a/databases/py-fakeredis/Makefile b/databases/py-fakeredis/Makefile index c05be5da6c5b..35affb0b6871 100644 --- a/databases/py-fakeredis/Makefile +++ b/databases/py-fakeredis/Makefile @@ -1,5 +1,5 @@ PORTNAME= fakeredis -PORTVERSION= 2.32.1 +PORTVERSION= 2.33.0 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-fakeredis/distinfo b/databases/py-fakeredis/distinfo index fb260baca933..ed5b6b5d0f3e 100644 --- a/databases/py-fakeredis/distinfo +++ b/databases/py-fakeredis/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763853248 -SHA256 (fakeredis-2.32.1.tar.gz) = dd8246db159f0b66a1ced7800c9d5ef07769e3d2fde44b389a57f2ce2834e444 -SIZE (fakeredis-2.32.1.tar.gz) = 171582 +TIMESTAMP = 1766953344 +SHA256 (fakeredis-2.33.0.tar.gz) = d7bc9a69d21df108a6451bbffee23b3eba432c21a654afc7ff2d295428ec5770 +SIZE (fakeredis-2.33.0.tar.gz) = 175187 diff --git a/databases/py-fastparquet/Makefile b/databases/py-fastparquet/Makefile index 904ccb412117..d7e2173ce709 100644 --- a/databases/py-fastparquet/Makefile +++ b/databases/py-fastparquet/Makefile @@ -1,5 +1,5 @@ PORTNAME= fastparquet -PORTVERSION= 2024.11.0 +PORTVERSION= 2025.12.0 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-fastparquet/distinfo b/databases/py-fastparquet/distinfo index 7519a55dea2d..8c9329d7f16c 100644 --- a/databases/py-fastparquet/distinfo +++ b/databases/py-fastparquet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1732239506 -SHA256 (fastparquet-2024.11.0.tar.gz) = e3b1fc73fd3e1b70b0de254bae7feb890436cb67e99458b88cb9bd3cc44db419 -SIZE (fastparquet-2024.11.0.tar.gz) = 467192 +TIMESTAMP = 1766953346 +SHA256 (fastparquet-2025.12.0.tar.gz) = 85f807d3846c7691855a68ed7ff6ee40654b72b997f5b1199e6310a1e19d1cd5 +SIZE (fastparquet-2025.12.0.tar.gz) = 480045 diff --git a/databases/py-fastparquet/files/patch-pyproject.toml b/databases/py-fastparquet/files/patch-pyproject.toml index 5f966b7ccd01..aa7e8b10a517 100644 --- a/databases/py-fastparquet/files/patch-pyproject.toml +++ b/databases/py-fastparquet/files/patch-pyproject.toml @@ -1,6 +1,9 @@ ---- pyproject.toml.orig 2024-11-12 19:40:57 UTC +--- pyproject.toml.orig 2025-09-29 15:22:39 UTC +++ pyproject.toml -@@ -1,2 +1,2 @@ +@@ -1,5 +1,5 @@ [build-system] --requires = ["setuptools", "setuptools_scm", "Cython >= 0.29.23", "numpy>=2.0.0rc1"] -+requires = ["setuptools", "setuptools_scm", "Cython >= 0.29.23", "numpy"] +-requires = ["setuptools", "setuptools_scm", "Cython >= 0.29.31", "numpy>=2.0.0rc1"] ++requires = ["setuptools", "setuptools_scm", "Cython >= 0.29.31", "numpy"] + build-backend = "setuptools.build_meta" + + [tool.setuptools_scm] diff --git a/databases/py-redisvl/Makefile b/databases/py-redisvl/Makefile index 31471735f055..dabef4f6859e 100644 --- a/databases/py-redisvl/Makefile +++ b/databases/py-redisvl/Makefile @@ -1,5 +1,5 @@ PORTNAME= redisvl -DISTVERSION= 0.12.1 +DISTVERSION= 0.13.2 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}pyyaml>=5.4<7.0:devel/py-pyyaml@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}redis6>=5.0<7.0:databases/py-redis6@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}redis>=5.0<7.2:databases/py-redis@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pydantic2>=2<3:devel/py-pydantic2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tenacity>=8.2.2:devel/py-tenacity@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ml-dtypes>=0.4.0<1.0.0:math/py-ml-dtypes@${PY_FLAVOR} \ diff --git a/databases/py-redisvl/distinfo b/databases/py-redisvl/distinfo index 0ed83a757036..f52ea7c1eb45 100644 --- a/databases/py-redisvl/distinfo +++ b/databases/py-redisvl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764577249 -SHA256 (redisvl-0.12.1.tar.gz) = c4df3f7dd2d92c71a98e54ba32bcfb4f7bd526c749e4721de0fd1f08e0ecddec -SIZE (redisvl-0.12.1.tar.gz) = 689730 +TIMESTAMP = 1766566173 +SHA256 (redisvl-0.13.2.tar.gz) = f34c4350922ac469c45d90b5db65c49950e6aa8706331931b000f631ff9a0f4a +SIZE (redisvl-0.13.2.tar.gz) = 737736 diff --git a/databases/py-sqlcipher3/Makefile b/databases/py-sqlcipher3/Makefile index 8f99bd601bcf..8f87b493f5eb 100644 --- a/databases/py-sqlcipher3/Makefile +++ b/databases/py-sqlcipher3/Makefile @@ -1,6 +1,5 @@ PORTNAME= sqlcipher3 -DISTVERSION= 0.5.4 -PORTREVISION= 1 +DISTVERSION= 0.6.0 CATEGORIES= databases python #MASTER_SITES= PYPI # no tests PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,13 +13,25 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsqlcipher.so:databases/sqlcipher -USES= localbase python -USE_PYTHON= distutils autoplist pytest # unclear how to run tests, see https://github.com/coleifer/sqlcipher3/issues/26 +USES= localbase python ssl +USE_PYTHON= distutils autoplist USE_GITHUB= yes GH_ACCOUNT= coleifer +TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/sqlcipher3/_sqlite3${PYTHON_TAG}.so +do-test: + @cd ${WRKSRC} && \ + ${CP} ${STAGEDIR}${PYTHON_SITELIBDIR}/sqlcipher3/_sqlite3${PYTHON_TAG}.so sqlcipher3/ && \ + ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m tests + +# tests as of 0.6.0: +# Ran 345 tests in 0.241s +# +# OK (skipped=2) + .include <bsd.port.mk> diff --git a/databases/py-sqlcipher3/distinfo b/databases/py-sqlcipher3/distinfo index ce12513ae4ca..a997bd8b1a98 100644 --- a/databases/py-sqlcipher3/distinfo +++ b/databases/py-sqlcipher3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734268699 -SHA256 (coleifer-sqlcipher3-0.5.4_GH0.tar.gz) = f3508ffb973a09d584e390fa91d777ac7837c17adef64b5cbec40be6596ada4f -SIZE (coleifer-sqlcipher3-0.5.4_GH0.tar.gz) = 64730 +TIMESTAMP = 1767405199 +SHA256 (coleifer-sqlcipher3-0.6.0_GH0.tar.gz) = a889234e2000cc0864380b0faf90a5fd71d08e019d94fbefd7d0d4932aaf5872 +SIZE (coleifer-sqlcipher3-0.6.0_GH0.tar.gz) = 2705465 diff --git a/databases/py-sqlmodel/Makefile b/databases/py-sqlmodel/Makefile index 0b56604184ab..51256c4ba1f9 100644 --- a/databases/py-sqlmodel/Makefile +++ b/databases/py-sqlmodel/Makefile @@ -1,5 +1,5 @@ PORTNAME= sqlmodel -DISTVERSION= 0.0.27 +DISTVERSION= 0.0.31 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,13 +13,13 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pdm-backend>0:devel/py-pdm-backend@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy20>=2.0.14<2.1.0:databases/py-sqlalchemy20@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pydantic2>=1.10.13<3.0.0:devel/py-pydantic2@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pydantic2>=2.7.0:devel/py-pydantic2@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=6.2<8.0:devel/py-coverage@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}mypy>=1.18.1:devel/py-mypy@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}ruff>=0.13.2:devel/py-ruff@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}fastapi>=0.103.2:www/py-fastapi@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mypy>=1.19.1:devel/py-mypy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ruff>=0.14.10:devel/py-ruff@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}fastapi>=0.103.2<0.126.0:www/py-fastapi@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}httpx>=0.28.1:www/py-httpx@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dirty-equals>=0.9.0:devel/py-dirty-equals@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dirty-equals>=0.11:devel/py-dirty-equals@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=3.1.6:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.15.0:devel/py-typing-extensions@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}black>0:devel/py-black@${PY_FLAVOR} diff --git a/databases/py-sqlmodel/distinfo b/databases/py-sqlmodel/distinfo index aaf01c5fee82..e11c93b1c143 100644 --- a/databases/py-sqlmodel/distinfo +++ b/databases/py-sqlmodel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760063820 -SHA256 (sqlmodel-0.0.27.tar.gz) = ad1227f2014a03905aef32e21428640848ac09ff793047744a73dfdd077ff620 -SIZE (sqlmodel-0.0.27.tar.gz) = 118053 +TIMESTAMP = 1767666661 +SHA256 (sqlmodel-0.0.31.tar.gz) = 2d41a8a9ee05e40736e2f9db8ea28cbfe9b5d4e5a18dd139e80605025e0c516c +SIZE (sqlmodel-0.0.31.tar.gz) = 94952 diff --git a/databases/py-sqlparse/Makefile b/databases/py-sqlparse/Makefile index f11ded384647..7ad6808a2d99 100644 --- a/databases/py-sqlparse/Makefile +++ b/databases/py-sqlparse/Makefile @@ -1,5 +1,5 @@ PORTNAME= sqlparse -PORTVERSION= 0.5.4 +PORTVERSION= 0.5.5 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-sqlparse/distinfo b/databases/py-sqlparse/distinfo index 7f77487e0525..ff3b2333ef8b 100644 --- a/databases/py-sqlparse/distinfo +++ b/databases/py-sqlparse/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764510924 -SHA256 (sqlparse-0.5.4.tar.gz) = 4396a7d3cf1cd679c1be976cf3dc6e0a51d0111e87787e7a8d780e7d5a998f9e -SIZE (sqlparse-0.5.4.tar.gz) = 120112 +TIMESTAMP = 1766953348 +SHA256 (sqlparse-0.5.5.tar.gz) = e20d4a9b0b8585fdf63b10d30066c7c94c5d7a7ec47c889a2d83a3caa93ff28e +SIZE (sqlparse-0.5.5.tar.gz) = 120815 diff --git a/databases/py-unqlite/Makefile b/databases/py-unqlite/Makefile index 244987b7adf0..4547b7670560 100644 --- a/databases/py-unqlite/Makefile +++ b/databases/py-unqlite/Makefile @@ -1,6 +1,5 @@ PORTNAME= unqlite -DISTVERSION= 0.9.9 -PORTREVISION= 1 +DISTVERSION= 1.0.0 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-unqlite/distinfo b/databases/py-unqlite/distinfo index f50cff353b67..451bf34ac055 100644 --- a/databases/py-unqlite/distinfo +++ b/databases/py-unqlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751442862 -SHA256 (unqlite-0.9.9.tar.gz) = 63a79975d67e3896af269c1885c2cc363fb646ff26e58541365fb5fb9e645691 -SIZE (unqlite-0.9.9.tar.gz) = 633945 +TIMESTAMP = 1767784573 +SHA256 (unqlite-1.0.0.tar.gz) = b1c2865ab5d04dbcbba71a7dce5bd8d6448f50c292ae3fbf918c8630f25899f5 +SIZE (unqlite-1.0.0.tar.gz) = 440910 diff --git a/databases/rubygem-activemodel-gitlab/Makefile b/databases/rubygem-activemodel-gitlab/Makefile index 52a7f4f11de6..800ff32368d7 100644 --- a/databases/rubygem-activemodel-gitlab/Makefile +++ b/databases/rubygem-activemodel-gitlab/Makefile @@ -18,7 +18,7 @@ USES= gem NO_ARCH= yes -PORTSCOUT= limit:^7\.1\. +PORTSCOUT= limit:^7\.2\. .include "${.CURDIR}/../../www/gitlab/Makefile.common" .include <bsd.port.mk> diff --git a/databases/rubygem-activemodel-gitlab/distinfo b/databases/rubygem-activemodel-gitlab/distinfo index 3395520cd17d..c5b5e761110e 100644 --- a/databases/rubygem-activemodel-gitlab/distinfo +++ b/databases/rubygem-activemodel-gitlab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763614437 -SHA256 (rubygem/activemodel-7.1.6.gem) = f72f510018a560b5969e3ffc88214441ff09eed60b310feba678a597b2a2e721 -SIZE (rubygem/activemodel-7.1.6.gem) = 69632 +TIMESTAMP = 1766390164 +SHA256 (rubygem/activemodel-7.2.3.gem) = bbaf66aeb93212e98ebf6ab900f8290f9a831645f0b235427f5acf0e074739db +SIZE (rubygem/activemodel-7.2.3.gem) = 68096 diff --git a/databases/rubygem-activerecord-gitlab/Makefile b/databases/rubygem-activerecord-gitlab/Makefile index 182cb62b8dd2..d25eff05c0a3 100644 --- a/databases/rubygem-activerecord-gitlab/Makefile +++ b/databases/rubygem-activerecord-gitlab/Makefile @@ -20,7 +20,7 @@ USES= gem NO_ARCH= yes -PORTSCOUT= limit:^7\.1\. +PORTSCOUT= limit:^7\.2\. .include "${.CURDIR}/../../www/gitlab/Makefile.common" .include <bsd.port.mk> diff --git a/databases/rubygem-activerecord-gitlab/distinfo b/databases/rubygem-activerecord-gitlab/distinfo index f0852596524e..c43dcbdb9d63 100644 --- a/databases/rubygem-activerecord-gitlab/distinfo +++ b/databases/rubygem-activerecord-gitlab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763614437 -SHA256 (rubygem/activerecord-7.1.6.gem) = 1aa298cd7fc97ed8639ebb05a46bd17243a1218d89945bdc2bac1e61e673f079 -SIZE (rubygem/activerecord-7.1.6.gem) = 548864 +TIMESTAMP = 1766390165 +SHA256 (rubygem/activerecord-7.2.3.gem) = 6facb7478ceb5f6baa9f0647daa50b4a3a43934997900f0011e6c667ff41a0d7 +SIZE (rubygem/activerecord-7.2.3.gem) = 549888 diff --git a/databases/rubygem-awesome_nested_set/Makefile b/databases/rubygem-awesome_nested_set/Makefile index 85605b6ea940..5ed1fff9b5fd 100644 --- a/databases/rubygem-awesome_nested_set/Makefile +++ b/databases/rubygem-awesome_nested_set/Makefile @@ -1,5 +1,5 @@ PORTNAME= awesome_nested_set -PORTVERSION= 3.8.0 +PORTVERSION= 3.9.0 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -10,7 +10,7 @@ WWW= https://github.com/collectiveidea/awesome_nested_set LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-activerecord4>=4.0.0<8.1:databases/rubygem-activerecord4 +RUN_DEPENDS= rubygem-activerecord81>=4.0.0<8.2:databases/rubygem-activerecord81 USES= gem diff --git a/databases/rubygem-awesome_nested_set/distinfo b/databases/rubygem-awesome_nested_set/distinfo index 9c9bc3a84c2d..53f815330f8e 100644 --- a/databases/rubygem-awesome_nested_set/distinfo +++ b/databases/rubygem-awesome_nested_set/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1731679910 -SHA256 (rubygem/awesome_nested_set-3.8.0.gem) = 469daff411d80291dbb80d1973133e498048a7afc2519c545f62d2cdebc60eda -SIZE (rubygem/awesome_nested_set-3.8.0.gem) = 21504 +TIMESTAMP = 1766953614 +SHA256 (rubygem/awesome_nested_set-3.9.0.gem) = 3ce99e816550f97f4de118e621630070aacf24928b920fe4a68846578a8daaed +SIZE (rubygem/awesome_nested_set-3.9.0.gem) = 21504 diff --git a/databases/rubygem-click_house-client/Makefile b/databases/rubygem-click_house-client/Makefile index cc571c85e5e2..3783c11e049e 100644 --- a/databases/rubygem-click_house-client/Makefile +++ b/databases/rubygem-click_house-client/Makefile @@ -1,5 +1,5 @@ PORTNAME= click_house-client -PORTVERSION= 0.8.2 +PORTVERSION= 0.8.4 CATEGORIES= databases rubygems MASTER_SITES= RG diff --git a/databases/rubygem-click_house-client/distinfo b/databases/rubygem-click_house-client/distinfo index e398cbd30231..457518311929 100644 --- a/databases/rubygem-click_house-client/distinfo +++ b/databases/rubygem-click_house-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763479601 -SHA256 (rubygem/click_house-client-0.8.2.gem) = 49e25617a1bf11eb51045191569bcae000773dc58b49e8bffdbde2304ed565cc -SIZE (rubygem/click_house-client-0.8.2.gem) = 23040 +TIMESTAMP = 1766207007 +SHA256 (rubygem/click_house-client-0.8.4.gem) = 8278a6319fd30e8cb5dd4e8ada247a16819a6d4f3548cb0efed6c188ee5dfd18 +SIZE (rubygem/click_house-client-0.8.4.gem) = 23552 diff --git a/databases/rubygem-google-cloud-firestore/Makefile b/databases/rubygem-google-cloud-firestore/Makefile index cdc771f8b4fa..cf13871fd9d4 100644 --- a/databases/rubygem-google-cloud-firestore/Makefile +++ b/databases/rubygem-google-cloud-firestore/Makefile @@ -1,5 +1,6 @@ PORTNAME= google-cloud-firestore PORTVERSION= 3.1.1 +PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG @@ -13,7 +14,7 @@ WWW= https://cloud.google.com/ruby/docs/reference/google-cloud-firestore/latest LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-bigdecimal>=3.0<4:math/rubygem-bigdecimal \ +RUN_DEPENDS= rubygem-bigdecimal>=3.0<5:math/rubygem-bigdecimal \ rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-google-cloud-core>=1.7<2:net/rubygem-google-cloud-core \ rubygem-google-cloud-firestore-v1>=2.0<3:databases/rubygem-google-cloud-firestore-v1 \ diff --git a/databases/rubygem-google-cloud-firestore/files/patch-gemspec b/databases/rubygem-google-cloud-firestore/files/patch-gemspec new file mode 100644 index 000000000000..95a1f26b60de --- /dev/null +++ b/databases/rubygem-google-cloud-firestore/files/patch-gemspec @@ -0,0 +1,11 @@ +--- google-cloud-firestore.gemspec.orig 2025-12-29 04:31:37 UTC ++++ google-cloud-firestore.gemspec +@@ -20,7 +20,7 @@ Gem::Specification.new do |s| + + s.specification_version = 4 + +- s.add_runtime_dependency(%q<bigdecimal>.freeze, ["~> 3.0".freeze]) ++ s.add_runtime_dependency(%q<bigdecimal>.freeze, [">= 3.0".freeze, "< 5".freeze]) + s.add_runtime_dependency(%q<concurrent-ruby>.freeze, ["~> 1.0".freeze]) + s.add_runtime_dependency(%q<google-cloud-core>.freeze, ["~> 1.7".freeze]) + s.add_runtime_dependency(%q<google-cloud-firestore-v1>.freeze, ["~> 2.0".freeze]) diff --git a/databases/rubygem-state_machines-activemodel-gitlab/Makefile b/databases/rubygem-state_machines-activemodel-gitlab/Makefile index 87c2f706cfa2..7c8b84042743 100644 --- a/databases/rubygem-state_machines-activemodel-gitlab/Makefile +++ b/databases/rubygem-state_machines-activemodel-gitlab/Makefile @@ -1,5 +1,5 @@ PORTNAME= state_machines-activemodel -PORTVERSION= 0.31.0 +PORTVERSION= 0.100.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -gitlab @@ -11,8 +11,8 @@ WWW= https://github.com/state-machines/state_machines-activemodel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= rubygem-activemodel-gitlab>=7.1:databases/rubygem-activemodel-gitlab \ - rubygem-state_machines>=0.31.0:devel/rubygem-state_machines +RUN_DEPENDS= rubygem-activemodel-gitlab>=7.2:databases/rubygem-activemodel-gitlab \ + rubygem-state_machines-gitlab>=0.100.0:devel/rubygem-state_machines-gitlab USES= gem diff --git a/databases/rubygem-state_machines-activemodel-gitlab/distinfo b/databases/rubygem-state_machines-activemodel-gitlab/distinfo index 99cac9caf582..7395ad27dae4 100644 --- a/databases/rubygem-state_machines-activemodel-gitlab/distinfo +++ b/databases/rubygem-state_machines-activemodel-gitlab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1752214485 -SHA256 (rubygem/state_machines-activemodel-0.31.0.gem) = 82465856736fa6e3ddd76b8dba9e17c82d0823027ec1fbc18432f47817be4500 -SIZE (rubygem/state_machines-activemodel-0.31.0.gem) = 18432 +TIMESTAMP = 1766206761 +SHA256 (rubygem/state_machines-activemodel-0.100.0.gem) = 5f32d5176a3fe03e482f29b37b0f60e4f5c5188a20150a4c20d50413b39c72e6 +SIZE (rubygem/state_machines-activemodel-0.100.0.gem) = 18432 diff --git a/databases/rubygem-state_machines-activerecord-gitlab/Makefile b/databases/rubygem-state_machines-activerecord-gitlab/Makefile index 31c1836bd0ff..6ee46d716e7a 100644 --- a/databases/rubygem-state_machines-activerecord-gitlab/Makefile +++ b/databases/rubygem-state_machines-activerecord-gitlab/Makefile @@ -1,5 +1,5 @@ PORTNAME= state_machines-activerecord -PORTVERSION= 0.8.0 +PORTVERSION= 0.100.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -gitlab @@ -11,8 +11,8 @@ WWW= https://github.com/state-machines/state_machines-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= rubygem-activerecord-gitlab>=5.1:databases/rubygem-activerecord-gitlab \ - rubygem-state_machines-activemodel-gitlab>=0.8.0:databases/rubygem-state_machines-activemodel-gitlab +RUN_DEPENDS= rubygem-activerecord-gitlab>=7.2:databases/rubygem-activerecord-gitlab \ + rubygem-state_machines-activemodel-gitlab>=0.100.0:databases/rubygem-state_machines-activemodel-gitlab USES= gem diff --git a/databases/rubygem-state_machines-activerecord-gitlab/distinfo b/databases/rubygem-state_machines-activerecord-gitlab/distinfo index cc65f0eeb7c0..bb855a36fb7f 100644 --- a/databases/rubygem-state_machines-activerecord-gitlab/distinfo +++ b/databases/rubygem-state_machines-activerecord-gitlab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1611262267 -SHA256 (rubygem/state_machines-activerecord-0.8.0.gem) = 072fb701b8ab03de0608297f6c55dc34ed096e556fa8f77e556f3c461c71aab6 -SIZE (rubygem/state_machines-activerecord-0.8.0.gem) = 24064 +TIMESTAMP = 1766206689 +SHA256 (rubygem/state_machines-activerecord-0.100.0.gem) = b2213f74f3f32c6d92de5139e8898bc64a0ffb3f048df7d950ce27e28384beb5 +SIZE (rubygem/state_machines-activerecord-0.100.0.gem) = 11776 diff --git a/databases/sq/Makefile b/databases/sq/Makefile index c5a1c273c945..d50ccd66292f 100644 --- a/databases/sq/Makefile +++ b/databases/sq/Makefile @@ -1,7 +1,6 @@ PORTNAME= sq DISTVERSIONPREFIX= v -DISTVERSION= 0.48.5 -PORTREVISION= 7 +DISTVERSION= 0.48.10 CATEGORIES= databases MAINTAINER= olgeni@FreeBSD.org diff --git a/databases/sq/distinfo b/databases/sq/distinfo index 7e7470620471..1e63f8867ccd 100644 --- a/databases/sq/distinfo +++ b/databases/sq/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1752020539 -SHA256 (go/databases_sq/neilotoole-sq-v0.48.5_GH0/v0.48.5.mod) = 438cd2aa3b98e2401dfab7e002b37c6f9d3bb861cfe43a87ac9c77da97abfed3 -SIZE (go/databases_sq/neilotoole-sq-v0.48.5_GH0/v0.48.5.mod) = 4051 -SHA256 (go/databases_sq/neilotoole-sq-v0.48.5_GH0/v0.48.5.zip) = 1ba7cf722a5678b789dff9d6f22ffc47435b1c328c5dd7d91ef049ed6b66136f -SIZE (go/databases_sq/neilotoole-sq-v0.48.5_GH0/v0.48.5.zip) = 63203565 -SHA256 (go/databases_sq/neilotoole-sq-v0.48.5_GH0/neilotoole-sq-v0.48.5_GH0.tar.gz) = 4ed9cef836e66174b6e01c8d410cd393aeae7f7069a428a7ab2adcd1e282cf68 -SIZE (go/databases_sq/neilotoole-sq-v0.48.5_GH0/neilotoole-sq-v0.48.5_GH0.tar.gz) = 62450246 +TIMESTAMP = 1767024423 +SHA256 (go/databases_sq/neilotoole-sq-v0.48.10_GH0/v0.48.10.mod) = 9c7978f811d37211b2ff4835b388d12be0ce62e02443ba13010c67ff7b604549 +SIZE (go/databases_sq/neilotoole-sq-v0.48.10_GH0/v0.48.10.mod) = 4289 +SHA256 (go/databases_sq/neilotoole-sq-v0.48.10_GH0/v0.48.10.zip) = 176f924396243b9d379d23124e0478b2d7464c5e40039a29fe3ee9732ddb2ef3 +SIZE (go/databases_sq/neilotoole-sq-v0.48.10_GH0/v0.48.10.zip) = 63208715 +SHA256 (go/databases_sq/neilotoole-sq-v0.48.10_GH0/neilotoole-sq-v0.48.10_GH0.tar.gz) = df2c8082727f95787416375663578a0be31041bcbfca71af606a84935bf2b94d +SIZE (go/databases_sq/neilotoole-sq-v0.48.10_GH0/neilotoole-sq-v0.48.10_GH0.tar.gz) = 62499138 diff --git a/databases/sqlitestudio/Makefile b/databases/sqlitestudio/Makefile index 697f5e92abc1..fae65a55e091 100644 --- a/databases/sqlitestudio/Makefile +++ b/databases/sqlitestudio/Makefile @@ -1,5 +1,5 @@ PORTNAME= sqlitestudio -DISTVERSION= 3.4.17 +DISTVERSION= 3.4.19 CATEGORIES= databases MAINTAINER= yuri@FreeBSD.org diff --git a/databases/sqlitestudio/distinfo b/databases/sqlitestudio/distinfo index 690df428414f..c387b80b2d04 100644 --- a/databases/sqlitestudio/distinfo +++ b/databases/sqlitestudio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1762671886 -SHA256 (pawelsalawa-sqlitestudio-3.4.17_GH0.tar.gz) = 17662e1aa9bc3e70639a51a34a12ba707e52a475d2742fa8ab9ecad621ff6caf -SIZE (pawelsalawa-sqlitestudio-3.4.17_GH0.tar.gz) = 16696859 +TIMESTAMP = 1767604659 +SHA256 (pawelsalawa-sqlitestudio-3.4.19_GH0.tar.gz) = 9634e868e19a9a8e2603a6bfd6211ec762a3f3e8f2a2450ce05fb30ab29c0b59 +SIZE (pawelsalawa-sqlitestudio-3.4.19_GH0.tar.gz) = 16749768 diff --git a/databases/xtrabackup84/Makefile b/databases/xtrabackup84/Makefile index fb89e364f036..bca1dc8a4b16 100644 --- a/databases/xtrabackup84/Makefile +++ b/databases/xtrabackup84/Makefile @@ -1,5 +1,5 @@ PORTNAME= xtrabackup84 -DISTVERSION= 8.4.0-4 +DISTVERSION= 8.4.0-5 CATEGORIES= databases MASTER_SITES= https://downloads.percona.com/downloads/Percona-XtraBackup-8.4/Percona-XtraBackup-${DISTVERSION}/source/tarball/:percona DISTFILES= ${PPORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:percona diff --git a/databases/xtrabackup84/distinfo b/databases/xtrabackup84/distinfo index 0685b2c2e60b..412783b0159f 100644 --- a/databases/xtrabackup84/distinfo +++ b/databases/xtrabackup84/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755945732 -SHA256 (percona-xtrabackup-8.4.0-4.tar.gz) = e566a164a21b18781aad281b84426418ac2bcf71052ec85d8c5e62f742a7dfeb -SIZE (percona-xtrabackup-8.4.0-4.tar.gz) = 432657062 +TIMESTAMP = 1767039010 +SHA256 (percona-xtrabackup-8.4.0-5.tar.gz) = fadcf27efd2a2596f689388659e2ff5c36debcc051a55974ac8bb4a83c015f57 +SIZE (percona-xtrabackup-8.4.0-5.tar.gz) = 432646274 |
