diff options
author | Dave Cottlehuber <dch@FreeBSD.org> | 2024-11-22 15:02:32 +0000 |
---|---|---|
committer | Dave Cottlehuber <dch@FreeBSD.org> | 2024-11-22 17:27:52 +0000 |
commit | 6924dfdf7ea3b4b511c7f987727cb6933175765c (patch) | |
tree | 38cee3d7ca5babbd495583a3bf55dae003549eb1 | |
parent | 4dd0bdb22a27e054135c3461dc1897fbee488ccf (diff) |
databases/couchdb3: update to 3.4.2, resolve PR282217
- include QuickJS engine
- support xxHash for data integrity checksums
- improved mango keys-only indexes
- https://blog.couchdb.org/2024/10/22/3-4-2/
- https://docs.couchdb.org/en/stable/whatsnew/3.4.html
- ensure snappy NIF is compiled without optimisations to avoid
corrupted documents under newer clang versions, used in
in 14.1-RELEASE (see PR282217 for details)
Sponsored by: SkunkWerks, GmbH
PR: 282217
-rw-r--r-- | UPDATING | 18 | ||||
-rw-r--r-- | databases/couchdb3/Makefile | 34 | ||||
-rw-r--r-- | databases/couchdb3/distinfo | 6 | ||||
-rw-r--r-- | databases/couchdb3/files/couchdb3.in | 12 | ||||
-rw-r--r-- | databases/couchdb3/files/patch-configure | 21 | ||||
-rw-r--r-- | databases/couchdb3/files/patch-rel_overlay_etc_vm.args | 4 | ||||
-rw-r--r-- | databases/couchdb3/files/patch-rel_reltool.config | 10 | ||||
-rw-r--r-- | databases/couchdb3/files/patch-src_snappy_rebar.config | 11 | ||||
-rw-r--r-- | databases/couchdb3/pkg-plist | 954 |
9 files changed, 849 insertions, 221 deletions
@@ -5,6 +5,24 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20241122 + AFFECTS: users of databases/couchdb3 + AUTHOR: dch@FreeBSD.org + + Users who installed or upgraded to CouchDB 3.3.3 *after* 2024-09-30, and + who are also running 14.1-RELEASE or newer, will hit a nasty corruption bug, + causing all CPUs to lock up, possibly crashing, and generating a lot of + errors in log files. + + This bug is caused by corrupt docs after decompression, due to a clash + between improved compiler optimisations in clang18, and a bug in snappy + itself. Given the above symptoms, all affected users will have noticed. + + Upgrade to 3.4.2 in ports, to resolve this issue. + + Please read more about this issue here: + https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=282217 + 20241115 AFFECTS: users of filesystems/zrepl-dsh2dsh AUTHOR: dsh@bamus.cz diff --git a/databases/couchdb3/Makefile b/databases/couchdb3/Makefile index 7f02129a4245..21f0ff18dc53 100644 --- a/databases/couchdb3/Makefile +++ b/databases/couchdb3/Makefile @@ -1,6 +1,5 @@ PORTNAME= couchdb3 -DISTVERSION= 3.3.3 -PORTREVISION= 1 +DISTVERSION= 3.4.2 CATEGORIES= databases MASTER_SITES= APACHE/couchdb/source/${DISTVERSION} DISTNAME= apache-couchdb-${DISTVERSION} @@ -16,7 +15,6 @@ BUILD_DEPENDS= erlang-runtime${_ERLVER}>=${_ERLVER}.0:lang/erlang-runtime${_ERLV rebar:devel/rebar LIB_DEPENDS= libicudata.so:devel/icu \ libmozjs-91.so:lang/spidermonkey91 -RUN_DEPENDS= erlang-runtime${_ERLVER}>=${_ERLVER}.0:lang/erlang-runtime${_ERLVER} USES= compiler:c++17-lang cpe gmake libtool ncurses CPE_VENDOR= apache @@ -51,7 +49,7 @@ OPTIONS_SUB= yes _APPDIR= ${LOCALBASE}/libexec/${PORTNAME} _DBDIR?= /var/db/${PORTNAME} -_ERLVER?= 25 +_ERLVER?= 26 _LOGDIR?= /var/log/${PORTNAME} _LOGFILE?= ${_LOGDIR}/couch.log _RELDIR= ${_APPDIR}/releases/${DISTVERSION} @@ -83,40 +81,48 @@ post-patch: .endif pre-install: +# prune build artefacts and surplus headers + ${FIND} -E ${WRKSRC} -type f \ + -regex '.*\.(a|buildinfo|c|cc|cmd|d|o|orig|h|cpp)' -print -delete + +do-install: # relocate user-modifiable runtime configs to match hier(7) - ${MKDIR} ${STAGEDIR}${ETCDIR} + ${MKDIR} ${STAGEDIR}${ETCDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/rel/couchdb/etc/local.ini \ ${STAGEDIR}${ETCDIR}/local.ini.sample ${INSTALL_DATA} ${WRKSRC}/rel/couchdb/etc/vm.args \ ${STAGEDIR}${ETCDIR}/vm.args.sample ${INSTALL_MAN} ${WRKSRC}/share/docs/man/apachecouchdb.1 \ ${STAGEDIR}${PREFIX}/share/man/man1 -# prune build artefacts and surplus headers - ${FIND} -E ${WRKSRC} -type f \ - -regex '.*\.(a|buildinfo|c|cc|cmd|d|o|orig|h|cpp)' -print -delete - @${CP} ${WRKSRC}/src/docs/images/favicon.ico ${WRKSRC}/share/www/ + ${CP} ${WRKSRC}/src/docs/images/favicon.ico ${WRKSRC}/share/www/ # remove runtime dirs and files that were moved to match hier(7) ${RM} -rv \ + ${WRKSRC}/rel/couchdb/erts-*/include \ + ${WRKSRC}/rel/couchdb/erts-*/src \ ${WRKSRC}/rel/couchdb/etc/*.d \ ${WRKSRC}/rel/couchdb/etc/local.ini \ ${WRKSRC}/rel/couchdb/etc/vm.args \ - ${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch*js \ + ${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/1.8.5 \ + ${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/60 \ + ${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/68 \ + ${WRKSRC}/rel/couchdb/lib/couch-*/priv/couch_js/86 \ + ${WRKSRC}/rel/couchdb/lib/couch-*/priv/priv/couchjs \ ${WRKSRC}/rel/couchdb/releases/*/vm.args \ ${WRKSRC}/rel/couchdb/share/docs \ ${WRKSRC}/rel/couchdb/share/www \ ${WRKSRC}/rel/couchdb/var (cd ${WRKSRC}/rel/couchdb && ${COPYTREE_SHARE} . ${STAGEDIR}${_APPDIR}) - + ${INSTALL_PROGRAM} ${WRKSRC}/rel/couchdb/bin/couchjs ${STAGEDIR}${_APPDIR}/bin/ +# fauxton UI is a required component + (cd ${WRKSRC}/share/www && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) post-install: @${FIND} -E ${STAGEDIR} -type f \ - \( -name couchjs -o -name *.so \) \ + \( -name couchjs* -o -name *.so \) \ -exec ${STRIP_CMD} {} + @${MKDIR} \ ${STAGEDIR}${_DBDIR} \ ${STAGEDIR}${_LOGDIR} \ ${STAGEDIR}${_RUNDIR} -# fauxton UI is a required component - (cd ${WRKSRC}/share/www && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) post-install-DOCS-on: (cd ${WRKSRC}/share/docs/html && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}/docs) diff --git a/databases/couchdb3/distinfo b/databases/couchdb3/distinfo index 8725b694427a..2e125627ad43 100644 --- a/databases/couchdb3/distinfo +++ b/databases/couchdb3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1702805372 -SHA256 (apache-couchdb-3.3.3.tar.gz) = 7a2007b5f673d4be22a25c9a111d9066919d872ddb9135a7dcec0122299bd39e -SIZE (apache-couchdb-3.3.3.tar.gz) = 18899763 +TIMESTAMP = 1729600712 +SHA256 (apache-couchdb-3.4.2.tar.gz) = d27ff2a13356000296a98ab884caf3d175927cf21727963ff90fab3a747544cf +SIZE (apache-couchdb-3.4.2.tar.gz) = 19242582 diff --git a/databases/couchdb3/files/couchdb3.in b/databases/couchdb3/files/couchdb3.in index af3f2e27bea2..29ba0efc0fb8 100644 --- a/databases/couchdb3/files/couchdb3.in +++ b/databases/couchdb3/files/couchdb3.in @@ -26,15 +26,11 @@ load_rc_config $name : ${%%PORTNAME%%_erl_flags="-couch_ini %%APPDIR%%/etc/default.ini %%ETCDIR%%/local.ini"} : ${%%PORTNAME%%_chdir="/var/db/%%PORTNAME%%"} -command="%%ERL_PATH%%" +command="%%PREFIX%%/libexec/%%PORTNAME%%/bin/couchdb" + pidfile="/var/run/${name}.pid" daemonpidfile="/var/run/${name}-daemon.pid" -erl_sasl='-sasl releases_dir \"%%PORTNAME%%/releases\"' -erl_boot='-boot %%RELDIR%%/couchdb -boot_var RELTOOL_EXT_LIB %%APPDIR%%/lib' -erl_args='-args_file %%ETCDIR%%/vm.args' -erl_flags="${erl_sasl} ${erl_boot} ${erl_args} ${%%PORTNAME%%_erl_flags}" - %%PORTNAME%%_start() { # chdir manually as overriding _start() blocks rc.subr defaults @@ -47,8 +43,8 @@ erl_flags="${erl_sasl} ${erl_boot} ${erl_args} ${%%PORTNAME%%_erl_flags}" HOME=/var/run/%%PORTNAME%% \ ERL_CRASH_DUMP=/var/run/%%PORTNAME%%/erl_crash.dump \ COUCHDB_FAUXTON_DOCROOT=%%WWWDIR%% \ - COUCHDB_QUERY_SERVER_JAVASCRIPT="%%APPDIR%%/bin/couchjs %%APPDIR%%/share/server/main.js" \ - COUCHDB_QUERY_SERVER_COFFEESCRIPT="%%APPDIR%%/bin/couchjs %%APPDIR%%/share/server/main-coffee.js" \ + COUCHDB_ARGS_FILE=%%PREFIX%%/etc/couchdb3/vm.args \ + COUCHDB_INI_FILES='%%PREFIX%%/libexec/couchdb3/etc/default.ini %%PREFIX%%/etc/couchdb3/local.ini' \ ${command} } diff --git a/databases/couchdb3/files/patch-configure b/databases/couchdb3/files/patch-configure index c5547bc639c2..139124db7c10 100644 --- a/databases/couchdb3/files/patch-configure +++ b/databases/couchdb3/files/patch-configure @@ -1,4 +1,4 @@ ---- configure.orig 2023-01-08 13:30:40 UTC +--- configure.orig 2024-10-01 06:38:09 UTC +++ configure @@ -19,7 +19,7 @@ basename=`basename $0` rootdir="$(cd "${0%/*}" 2>/dev/null; echo "$PWD")" @@ -7,24 +7,29 @@ -PACKAGE_AUTHOR_NAME="The Apache Software Foundation" +PACKAGE_AUTHOR_NAME="FreeBSD" - REBAR3_BRANCH="main" - -@@ -247,12 +247,12 @@ cat > rel/couchdb.config << EOF + REBAR3_BRANCH="3.23.0" + ERLFMT_VERSION="v1.3.0" +@@ -369,16 +369,16 @@ cat > rel/couchdb.config << EOF % The contents of this file are auto-generated by configure % {package_author_name, "$PACKAGE_AUTHOR_NAME"}. -{prefix, "."}. -{data_dir, "./data"}. -{view_index_dir, "./data"}. --{state_dir, "./data"}. --{log_file, "$LOG_FILE"}. --{fauxton_root, "./share/www"}. +-{nouveau_index_dir, "./data/nouveau"}. +{prefix, "%%APPDIR%%"}. +{data_dir, "%%DBDIR%%"}. +{view_index_dir, "%%DBDIR%%"}. ++{nouveau_index_dir, "%%DBDIR%%/nouveau"}. + {nouveau_url, "http://127.0.0.1:5987"}. + {nouveau_port, 5987}. + {nouveau_admin_port, 5988}. +-{state_dir, "./data"}. +-{log_file, "$LOG_FILE"}. +-{fauxton_root, "./share/www"}. +{state_dir, "%%DBDIR%%"}. +{log_file, "%%LOG_FILE%%"}. +{fauxton_root, "%%WWWDIR%%"}. {user, "$COUCHDB_USER"}. + {js_engine, "$JS_ENGINE"}. {spidermonkey_version, "$SM_VSN"}. - {node_name, "-name couchdb@127.0.0.1"}. diff --git a/databases/couchdb3/files/patch-rel_overlay_etc_vm.args b/databases/couchdb3/files/patch-rel_overlay_etc_vm.args index 2cc2ce50553d..5ae9d1da6880 100644 --- a/databases/couchdb3/files/patch-rel_overlay_etc_vm.args +++ b/databases/couchdb3/files/patch-rel_overlay_etc_vm.args @@ -1,6 +1,6 @@ ---- rel/overlay/etc/vm.args.orig 2022-12-22 07:53:22 UTC +--- rel/overlay/etc/vm.args.orig 2024-10-14 18:24:54 UTC +++ rel/overlay/etc/vm.args -@@ -63,7 +63,7 @@ +Bd -noinput +@@ -75,7 +75,7 @@ +Bd -noinput # Comment this line out to enable the interactive Erlang shell on startup +Bd -noinput diff --git a/databases/couchdb3/files/patch-rel_reltool.config b/databases/couchdb3/files/patch-rel_reltool.config deleted file mode 100644 index 9f377c4de794..000000000000 --- a/databases/couchdb3/files/patch-rel_reltool.config +++ /dev/null @@ -1,10 +0,0 @@ ---- rel/reltool.config.orig 2018-08-20 14:11:32 UTC -+++ rel/reltool.config -@@ -11,6 +11,7 @@ - % the License. - - {sys, [ -+ {excl_lib, otp_root}, %% require erts runtime from FreeBSD ports - {lib_dirs, ["../src"]}, - {rel, "couchdb", "3.3.2", [ - %% stdlib diff --git a/databases/couchdb3/files/patch-src_snappy_rebar.config b/databases/couchdb3/files/patch-src_snappy_rebar.config new file mode 100644 index 000000000000..5d21352d2da3 --- /dev/null +++ b/databases/couchdb3/files/patch-src_snappy_rebar.config @@ -0,0 +1,11 @@ +--- src/snappy/rebar.config.orig 2024-11-17 19:38:49 UTC ++++ src/snappy/rebar.config +@@ -2,7 +2,7 @@ + {port_sources, ["c_src/*.cc", + "c_src/snappy/*.cc"]}. + {port_env, [ +- {"CXXFLAGS", "$CXXFLAGS -DNDEBUG"}, ++ {"CXXFLAGS", "$CXXFLAGS -DNDEBUG -O0"}, + {"(linux|solaris|freebsd|netbsd|openbsd|dragonfly|darwin)", + "LDFLAGS", "$LDFLAGS -lstdc++"} + ]}. diff --git a/databases/couchdb3/pkg-plist b/databases/couchdb3/pkg-plist index 782a4e62284b..8c90f44e07ef 100644 --- a/databases/couchdb3/pkg-plist +++ b/databases/couchdb3/pkg-plist @@ -1,24 +1,63 @@ -@dir libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_ejson_compare @dir(couchdb,couchdb,700) /var/db/couchdb3 @dir(couchdb,couchdb,700) /var/log/couchdb3 @dir(couchdb,couchdb,700) /var/run/couchdb3 +@comment @dir libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_ejson_compare +@comment @dir libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_js @sample(couchdb,couchdb,640) %%ETCDIR%%/local.ini.sample @sample(couchdb,couchdb,640) %%ETCDIR%%/vm.args.sample -libexec/couchdb3/LICENSE @mode 0755 libexec/couchdb3/bin/couchdb libexec/couchdb3/bin/couchjs libexec/couchdb3/bin/remsh libexec/couchdb3/bin/weatherreport -libexec/couchdb3/lib/couch-%%VERSION%%/priv/couchspawnkillable -libexec/couchdb3/lib/couch-%%VERSION%%/priv/spawnkillable/couchspawnkillable.sh +libexec/couchdb3/erts-14.2.5.4/bin/beam.smp +libexec/couchdb3/erts-14.2.5.4/bin/ct_run +libexec/couchdb3/erts-14.2.5.4/bin/epmd +libexec/couchdb3/erts-14.2.5.4/bin/erl +libexec/couchdb3/erts-14.2.5.4/bin/erl_call +libexec/couchdb3/erts-14.2.5.4/bin/erl_child_setup +libexec/couchdb3/erts-14.2.5.4/bin/erlc +libexec/couchdb3/erts-14.2.5.4/bin/erlexec +libexec/couchdb3/erts-14.2.5.4/bin/escript +libexec/couchdb3/erts-14.2.5.4/bin/heart +libexec/couchdb3/erts-14.2.5.4/bin/inet_gethost +libexec/couchdb3/erts-14.2.5.4/bin/run_erl +libexec/couchdb3/erts-14.2.5.4/bin/start +libexec/couchdb3/erts-14.2.5.4/bin/to_erl +libexec/couchdb3/erts-14.2.5.4/bin/yielding_c_fun @mode libexec/couchdb3/etc/default.ini +libexec/couchdb3/etc/nouveau.yaml +libexec/couchdb3/LICENSE +libexec/couchdb3/erts-14.2.5.4/info +libexec/couchdb3/erts-14.2.5.4/lib/internal/README +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1.app +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1.appup +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1_db.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_check.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_constructed_ber_bin_v2.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_constructed_per.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_eval_ext.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_func.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_ber_bin_v2.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_check.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_jer.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_gen_per.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_imm.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_name.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_parser2.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_pretty_format.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_rtt.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_table.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_tok.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1ct_value.beam +libexec/couchdb3/lib/asn1-5.2.2/ebin/asn1rt_nif.beam +libexec/couchdb3/lib/asn1-5.2.2/priv/lib/asn1rt_nif.so libexec/couchdb3/lib/b64url-%%VERSION%%/ebin/b64url.app libexec/couchdb3/lib/b64url-%%VERSION%%/ebin/b64url.beam libexec/couchdb3/lib/b64url-%%VERSION%%/priv/b64url.so -libexec/couchdb3/lib/bear-%%VERSION%%/ebin/bear.app -libexec/couchdb3/lib/bear-%%VERSION%%/ebin/bear.beam libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd.app libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd.beam libexec/couchdb3/lib/chttpd-%%VERSION%%/ebin/chttpd_app.beam @@ -46,6 +85,67 @@ 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-8.4.3.2/ebin/beam_a.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_asm.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_block.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_bounds.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_call_types.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_clean.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_dict.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_digraph.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_disasm.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_flatten.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_jump.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_kernel_to_ssa.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_listing.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_opcodes.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_alias.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_bc_size.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_bool.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_bsm.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_check.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_codegen.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_dead.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_lint.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_opt.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_pp.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_pre_codegen.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_private_append.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_recv.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_share.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_throw.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_ssa_type.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_trim.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_types.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_utils.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_validator.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/beam_z.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl_clauses.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl_inline.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/cerl_trees.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/compile.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/compiler.app +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/compiler.appup +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_lib.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_lint.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_parse.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_pp.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/core_scan.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/erl_bifs.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/rec_env.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_alias.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_bsm.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_fold.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_fold_lists.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_inline.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_core_prepare.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_messages.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/sys_pre_attributes.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/v3_core.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/v3_kernel.beam +libexec/couchdb3/lib/compiler-8.4.3.2/ebin/v3_kernel_pp.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 @@ -60,6 +160,7 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_app.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_att.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_auth_cache.beam +libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_auth_lockout.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_base32.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_bt_engine.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_bt_engine_compactor.beam @@ -71,11 +172,11 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_compress.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_engine.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_epi.beam -libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_header.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_plugin.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_split.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_db_updater.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_debug.beam +libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_disk_monitor.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_doc.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_ejson_compare.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_ejson_size.beam @@ -94,7 +195,7 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_misc_handlers.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_multipart.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_rewrite.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_httpd_vhost.beam -libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_io_logger.beam +libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_hyper.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_key_tree.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_lru.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_multidb_changes.beam @@ -103,10 +204,10 @@ libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_os_process.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_partition.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_password_hasher.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_passwords.beam +libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_passwords_cache.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_primary_sup.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_proc_manager.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_query_servers.beam -libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_rand.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_secondary_sup.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_server.beam libexec/couchdb3/lib/couch-%%VERSION%%/ebin/couch_stream.beam @@ -124,6 +225,7 @@ libexec/couchdb3/lib/couch-%%VERSION%%/include/couch_eunit.hrl libexec/couchdb3/lib/couch-%%VERSION%%/include/couch_eunit_proper.hrl libexec/couchdb3/lib/couch-%%VERSION%%/include/couch_js_functions.hrl libexec/couchdb3/lib/couch-%%VERSION%%/priv/couch_ejson_compare.so +libexec/couchdb3/lib/couch-%%VERSION%%/priv/couchjs libexec/couchdb3/lib/couch-%%VERSION%%/priv/stats_descriptions.cfg libexec/couchdb3/lib/couch_dist-%%VERSION%%/ebin/couch_dist.app libexec/couchdb3/lib/couch_dist-%%VERSION%%/ebin/couch_dist.beam @@ -145,7 +247,6 @@ libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event.beam libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_app.beam libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_listener.beam libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_listener_mfa.beam -libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_os_listener.beam libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_server.beam libexec/couchdb3/lib/couch_event-%%VERSION%%/ebin/couch_event_sup2.beam libexec/couchdb3/lib/couch_index-%%VERSION%%/ebin/couch_index.app @@ -199,11 +300,18 @@ libexec/couchdb3/lib/couch_peruser-%%VERSION%%/ebin/couch_peruser.beam libexec/couchdb3/lib/couch_peruser-%%VERSION%%/ebin/couch_peruser_app.beam libexec/couchdb3/lib/couch_peruser-%%VERSION%%/ebin/couch_peruser_sup.beam libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus.app +libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus.beam libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_app.beam libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_http.beam -libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_server.beam libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_sup.beam libexec/couchdb3/lib/couch_prometheus-%%VERSION%%/ebin/couch_prometheus_util.beam +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/ebin/couch_quickjs.app +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/ebin/couch_quickjs.beam +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/ebin/couch_quickjs_scanner_plugin.beam +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/bundle_coffee.js +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/bundle_mainjs.js +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/couchjs_coffee +libexec/couchdb3/lib/couch_quickjs-%%VERSION%%/priv/couchjs_mainjs libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator.app libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_api_wrap.beam @@ -212,9 +320,7 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_auth.bea libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_auth_noop.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_auth_session.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_changes_reader.beam -libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_clustering.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_connection.beam -libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_db_changes.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_doc_processor.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_doc_processor_worker.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_docs.beam @@ -226,7 +332,6 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_httpc_po libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_httpd.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_httpd_util.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_ids.beam -libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_job_sup.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_notifier.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_parse.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_pg.beam @@ -234,7 +339,6 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_rate_lim libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_rate_limiter_tables.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_scheduler.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_scheduler_job.beam -libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_scheduler_sup.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_share.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_stats.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_sup.beam @@ -243,14 +347,38 @@ libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/couch_replicator_worker.b libexec/couchdb3/lib/couch_replicator-%%VERSION%%/ebin/json_stream_parse.beam libexec/couchdb3/lib/couch_replicator-%%VERSION%%/include/couch_replicator_api_wrap.hrl libexec/couchdb3/lib/couch_replicator-%%VERSION%%/priv/stats_descriptions.cfg +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner.app +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_app.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_checkpoint.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_plugin.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_plugin_ddoc_features.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_plugin_find.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_rate_limiter.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_server.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_sup.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/ebin/couch_scanner_util.beam +libexec/couchdb3/lib/couch_scanner-%%VERSION%%/include/couch_scanner_plugin.hrl libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats.app libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats.beam -libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_aggregator.beam libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_app.beam +libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_counter.beam +libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_gauge.beam +libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_histogram.beam libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_httpd.beam +libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_math.beam libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_process_tracker.beam +libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_server.beam libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_sup.beam +libexec/couchdb3/lib/couch_stats-%%VERSION%%/ebin/couch_stats_util.beam libexec/couchdb3/lib/couch_stats-%%VERSION%%/priv/sample_descriptions.cfg +libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto.app +libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto.appup +libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto.beam +libexec/couchdb3/lib/crypto-5.4.2.2/ebin/crypto_ec_curves.beam +libexec/couchdb3/lib/crypto-5.4.2.2/priv/lib/crypto.so +libexec/couchdb3/lib/crypto-5.4.2.2/priv/lib/crypto_callback.so +libexec/couchdb3/lib/crypto-5.4.2.2/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 @@ -298,14 +426,19 @@ libexec/couchdb3/lib/dreyfus-%%VERSION%%/include/dreyfus.hrl libexec/couchdb3/lib/dreyfus-%%VERSION%%/priv/stats_descriptions.cfg libexec/couchdb3/lib/ets_lru-%%VERSION%%/ebin/ets_lru.app libexec/couchdb3/lib/ets_lru-%%VERSION%%/ebin/ets_lru.beam +libexec/couchdb3/lib/exxhash-%%VERSION%%/ebin/exxhash.app +libexec/couchdb3/lib/exxhash-%%VERSION%%/ebin/exxhash.beam +libexec/couchdb3/lib/exxhash-%%VERSION%%/priv/exxhash.so libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric.app libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric.beam +libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_bench.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_create.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_delete.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_doc_count.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_info.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_meta.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_partition_info.beam +libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_purged_infos.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_update_listener.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_db_uuids.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_design_doc_count.beam @@ -327,36 +460,9 @@ libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_all_docs.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_changes.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_map.beam libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_reduce.beam +libexec/couchdb3/lib/fabric-%%VERSION%%/ebin/fabric_view_row.beam libexec/couchdb3/lib/fabric-%%VERSION%%/include/fabric.hrl libexec/couchdb3/lib/fabric-%%VERSION%%/priv/stats_descriptions.cfg -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom.app -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_ets.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_ewma.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_meter_timer_server.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_counter.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_duration.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_gauge.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_histogram.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_histogram_ets.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_history.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_meter.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_meter_reader.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_metrics_spiral.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_exdec.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_none.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_server.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_sorted.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_sup.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_slide_uniform.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sample_uniform.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_sup.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_utils.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/ebin/folsom_vm_metrics.beam -libexec/couchdb3/lib/folsom-%%VERSION%%/include/folsom.hrl libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes.app libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_app.beam libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_epi.beam @@ -368,17 +474,6 @@ libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_server.beam libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_sup.beam libexec/couchdb3/lib/global_changes-%%VERSION%%/ebin/global_changes_util.beam libexec/couchdb3/lib/global_changes-%%VERSION%%/priv/stats_descriptions.cfg -libexec/couchdb3/lib/hyper-1.0/ebin/hyper.app -libexec/couchdb3/lib/hyper-1.0/ebin/hyper.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_array.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_binary.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_binary_rle.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_carray.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_const.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_gb.beam -libexec/couchdb3/lib/hyper-1.0/ebin/hyper_register.beam -libexec/couchdb3/lib/hyper-1.0/priv/.keep -libexec/couchdb3/lib/hyper-1.0/priv/hyper_carray.so libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse.app libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse.beam libexec/couchdb3/lib/ibrowse-4.4.2/ebin/ibrowse_app.beam @@ -389,14 +484,82 @@ 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.1.0.1/ebin/http_chunk.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_request.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_response.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_transport.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_uri.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/http_util.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_cookie.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_handler.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_handler_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_manager.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_profile_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_request.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_response.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpc_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_acceptor.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_acceptor_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_cgi.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_conf.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_connection_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_custom.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_custom_api.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_esi.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_example.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_file.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_instance_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_log.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_logger.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_manager.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_misc_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_request.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_request_handler.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_response.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_script_env.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_socket.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/httpd_util.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets.app +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets.appup +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_app.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_lib.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_service.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_sup.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/inets_trace.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_actions.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_alias.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_dets.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_mnesia.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_plain.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_auth_server.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_cgi.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_dir.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_disk_log.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_esi.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_get.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_head.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_log.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_range.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_responsecontrol.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_security.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_security_server.beam +libexec/couchdb3/lib/inets-9.1.0.1/ebin/mod_trace.beam +libexec/couchdb3/lib/inets-9.1.0.1/include/httpd.hrl +libexec/couchdb3/lib/inets-9.1.0.1/include/mod_auth.hrl +libexec/couchdb3/lib/inets-9.1.0.1/priv/bin/runcgi.sh 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 libexec/couchdb3/lib/ioq-%%VERSION%%/ebin/ioq_sup.beam -libexec/couchdb3/lib/jiffy-1.0.9/ebin/jiffy.app -libexec/couchdb3/lib/jiffy-1.0.9/ebin/jiffy.beam -libexec/couchdb3/lib/jiffy-1.0.9/ebin/jiffy_utf8.beam -libexec/couchdb3/lib/jiffy-1.0.9/priv/jiffy.so +libexec/couchdb3/lib/jiffy-1.1.2/ebin/jiffy.app +libexec/couchdb3/lib/jiffy-1.1.2/ebin/jiffy.beam +libexec/couchdb3/lib/jiffy-1.1.2/ebin/jiffy_utf8.beam +libexec/couchdb3/lib/jiffy-1.1.2/priv/jiffy.so libexec/couchdb3/lib/jwtf-%%VERSION%%/ebin/jwtf.app libexec/couchdb3/lib/jwtf-%%VERSION%%/ebin/jwtf.beam libexec/couchdb3/lib/jwtf-%%VERSION%%/ebin/jwtf_app.beam @@ -408,13 +571,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/khash-%%VERSION%%/ebin/khash.app -libexec/couchdb3/lib/khash-%%VERSION%%/ebin/khash.beam -libexec/couchdb3/lib/khash-%%VERSION%%/priv/khash.so +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application_controller.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application_master.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/application_starter.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/auth.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/code.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/code_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log_1.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/disk_log_sup.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/dist_ac.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/dist_util.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_boot_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_compile_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_ddll.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_distribution.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_epmd.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_erts_errors.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_kernel_errors.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_reply.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erl_signal_handler.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erpc.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/error_handler.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/error_logger.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/erts_debug.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/file.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/file_io_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/file_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_sctp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_tcp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_tcp_socket.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_udp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/gen_udp_socket.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/global.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/global_group.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/global_search.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/group.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/group_history.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/heart.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_sctp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_tcp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_tcp_dist.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet6_udp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_config.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_db.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_dns.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_epmd_dist.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_epmd_socket.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_gethost_native.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_hosts.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_parse.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_res.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_sctp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_tcp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_tcp_dist.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/inet_udp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel.app +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel.appup +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel_config.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/kernel_refc.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/local_tcp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/local_udp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_backend.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_config.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_disk_log_h.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_filters.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_formatter.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_h_common.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_handler_watcher.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_olp.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_proxy.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_server.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_simple_h.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_std_h.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/logger_sup.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/net.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/net_adm.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/net_kernel.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/os.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/pg.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/pg2.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/prim_tty.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/ram_file.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_compressed.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_deflate.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_delayed.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_inflate.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/raw_file_io_list.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/rpc.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/seq_trace.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/socket.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/standard_error.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/user_drv.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/user_sup.beam +libexec/couchdb3/lib/kernel-9.2.4.3/ebin/wrap_log_reader.beam +libexec/couchdb3/lib/kernel-9.2.4.3/include/dist.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/include/dist_util.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/include/eep48.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/include/file.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/include/inet.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/include/inet_sctp.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/include/logger.hrl +libexec/couchdb3/lib/kernel-9.2.4.3/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 libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor.beam +libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_nouveau.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_special.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_text.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_cursor_view.beam @@ -426,6 +695,7 @@ libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_fields.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_httpd.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_httpd_handlers.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx.beam +libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_nouveau.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_special.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_text.beam libexec/couchdb3/lib/mango-%%VERSION%%/ebin/mango_idx_view.beam @@ -473,49 +743,100 @@ libexec/couchdb3/lib/mem3-%%VERSION%%/ebin/mem3_sync_security.beam libexec/couchdb3/lib/mem3-%%VERSION%%/ebin/mem3_util.beam libexec/couchdb3/lib/mem3-%%VERSION%%/include/mem3.hrl libexec/couchdb3/lib/mem3-%%VERSION%%/priv/stats_descriptions.cfg -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochifmt.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochifmt_records.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochifmt_std.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiglobal.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochihex.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochijson.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochijson2.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochilists.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochilogfile2.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochinum.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochitemp.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiutf8.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb.app -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_acceptor.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_base64url.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_charref.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_clock.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_cookies.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_cover.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_echo.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_headers.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_html.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_http.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_io.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_mime.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_multipart.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_request.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_response.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_session.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_socket.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_socket_server.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_util.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/mochiweb_websocket.beam -libexec/couchdb3/lib/mochiweb-3.2.0/ebin/reloader.beam -libexec/couchdb3/lib/mochiweb-3.2.0/include/internal.hrl -libexec/couchdb3/lib/recon-2.5.3/ebin/recon.app -libexec/couchdb3/lib/recon-2.5.3/ebin/recon.beam -libexec/couchdb3/lib/recon-2.5.3/ebin/recon_alloc.beam -libexec/couchdb3/lib/recon-2.5.3/ebin/recon_lib.beam -libexec/couchdb3/lib/recon-2.5.3/ebin/recon_map.beam -libexec/couchdb3/lib/recon-2.5.3/ebin/recon_rec.beam -libexec/couchdb3/lib/recon-2.5.3/ebin/recon_trace.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochifmt.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochifmt_records.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochifmt_std.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiglobal.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochihex.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochijson.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochijson2.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochilists.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochilogfile2.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochinum.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochitemp.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiutf8.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb.app +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_acceptor.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_base64url.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_charref.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_clock.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_cookies.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_cover.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_echo.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_headers.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_html.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_http.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_io.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_mime.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_multipart.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_request.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_response.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_session.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_socket.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_socket_server.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_util.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/mochiweb_websocket.beam +libexec/couchdb3/lib/mochiweb-3.2.2/ebin/reloader.beam +libexec/couchdb3/lib/mochiweb-3.2.2/include/internal.hrl +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau.app +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_api.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_app.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_bookmark.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_epi.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric_cleanup.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric_info.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_fabric_search.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_httpd.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_httpd_handlers.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_index_manager.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_index_updater.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_plugin_couch_db.beam +libexec/couchdb3/lib/nouveau-%%VERSION%%/ebin/nouveau_rpc.beam +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.9.1/ebin/cpu_sup.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/disksup.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/memsup.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/nteventlog.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon.app +libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon.appup +libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon_mib.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_mon_sysinfo.beam +libexec/couchdb3/lib/os_mon-2.9.1/ebin/os_sup.beam +@mode 0755 +libexec/couchdb3/lib/os_mon-2.9.1/priv/bin/cpu_sup +libexec/couchdb3/lib/os_mon-2.9.1/priv/bin/memsup +@mode +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/OTP-PUB-KEY.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/PKCS-FRAME.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_cert.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_cert_records.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_crl.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_ocsp.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_os_cacerts.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_pbe.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_pem.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_policy_tree.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/pubkey_ssh.beam +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/public_key.app +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/public_key.appup +libexec/couchdb3/lib/public_key-1.15.1.3/ebin/public_key.beam +libexec/couchdb3/lib/public_key-1.15.1.3/include/OTP-PUB-KEY.hrl +libexec/couchdb3/lib/public_key-1.15.1.3/include/PKCS-FRAME.hrl +libexec/couchdb3/lib/public_key-1.15.1.3/include/public_key.hrl +libexec/couchdb3/lib/recon-2.5.5/ebin/recon.app +libexec/couchdb3/lib/recon-2.5.5/ebin/recon.beam +libexec/couchdb3/lib/recon-2.5.5/ebin/recon_alloc.beam +libexec/couchdb3/lib/recon-2.5.5/ebin/recon_lib.beam +libexec/couchdb3/lib/recon-2.5.5/ebin/recon_map.beam +libexec/couchdb3/lib/recon-2.5.5/ebin/recon_rec.beam +libexec/couchdb3/lib/recon-2.5.5/ebin/recon_trace.beam libexec/couchdb3/lib/rexi-%%VERSION%%/ebin/rexi.app libexec/couchdb3/lib/rexi-%%VERSION%%/ebin/rexi.beam libexec/couchdb3/lib/rexi-%%VERSION%%/ebin/rexi_app.beam @@ -528,13 +849,50 @@ libexec/couchdb3/lib/rexi-%%VERSION%%/ebin/rexi_sup.beam libexec/couchdb3/lib/rexi-%%VERSION%%/ebin/rexi_utils.beam libexec/couchdb3/lib/rexi-%%VERSION%%/include/rexi.hrl libexec/couchdb3/lib/rexi-%%VERSION%%/priv/stats_descriptions.cfg -libexec/couchdb3/lib/setup-1/ebin/setup.app -libexec/couchdb3/lib/setup-1/ebin/setup.beam -libexec/couchdb3/lib/setup-1/ebin/setup_app.beam -libexec/couchdb3/lib/setup-1/ebin/setup_epi.beam -libexec/couchdb3/lib/setup-1/ebin/setup_httpd.beam -libexec/couchdb3/lib/setup-1/ebin/setup_httpd_handlers.beam -libexec/couchdb3/lib/setup-1/ebin/setup_sup.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/appmon_info.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/dbg.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/dyntrace.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/erts_alloc_config.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/instrument.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/msacc.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/observer_backend.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/runtime_tools.app +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/runtime_tools.appup +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/runtime_tools.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/runtime_tools_sup.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/scheduler.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/system_information.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/ebin/ttb_autostart.beam +libexec/couchdb3/lib/runtime_tools-2.0.1/include/observer_backend.hrl +libexec/couchdb3/lib/runtime_tools-2.0.1/priv/lib/dyntrace.so +libexec/couchdb3/lib/runtime_tools-2.0.1/priv/lib/trace_file_drv.so +libexec/couchdb3/lib/runtime_tools-2.0.1/priv/lib/trace_ip_drv.so +libexec/couchdb3/lib/sasl-4.2.1/ebin/alarm_handler.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/erlsrv.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/format_lib_supp.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/misc_supp.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/rb.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/rb_format_supp.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/release_handler.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/release_handler_1.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/sasl.app +libexec/couchdb3/lib/sasl-4.2.1/ebin/sasl.appup +libexec/couchdb3/lib/sasl-4.2.1/ebin/sasl.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/sasl_report.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/sasl_report_file_h.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/sasl_report_tty_h.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/systools.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/systools_lib.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/systools_make.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/systools_rc.beam +libexec/couchdb3/lib/sasl-4.2.1/ebin/systools_relup.beam +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup.app +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup.beam +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup_app.beam +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup_epi.beam +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup_httpd.beam +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup_httpd_handlers.beam +libexec/couchdb3/lib/setup-%%VERSION%%/ebin/setup_sup.beam libexec/couchdb3/lib/smoosh-%%VERSION%%/ebin/smoosh.app libexec/couchdb3/lib/smoosh-%%VERSION%%/ebin/smoosh.beam libexec/couchdb3/lib/smoosh-%%VERSION%%/ebin/smoosh_app.beam @@ -547,6 +905,191 @@ 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.1.4.4/ebin/dtls_connection.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_connection_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_gen_connection.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_handshake.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_listener_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_packet_demux.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_record.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_server_session_cache_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_server_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_socket.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/dtls_v1.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/inet6_tls_dist.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/inet_tls_dist.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl.app +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl.appup +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_admin_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_alert.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_app.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_certificate.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_cipher.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_cipher_format.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_client_session_cache_db.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_config.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_connection_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_crl.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_crl_cache.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_crl_cache_api.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_crl_hash_dir.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_dh_groups.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_dist_admin_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_dist_connection_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_dist_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_gen_statem.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_handshake.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_listen_tracker_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_logger.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_manager.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_pem_cache.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_pkix_db.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_record.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_server_session_cache.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_server_session_cache_db.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_server_session_cache_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_session.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_session_cache_api.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_srp_primes.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_trace.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/ssl_upgrade_server_session_cache_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_bloom_filter.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_client_connection_1_3.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_client_ticket_store.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_connection.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_connection_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_dist_server_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_dist_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_dtls_connection.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_dyn_connection_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_gen_connection.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_gen_connection_1_3.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_handshake.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_handshake_1_3.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_record.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_record_1_3.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_sender.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_server_connection_1_3.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_server_session_ticket.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_server_session_ticket_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_server_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_socket.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_sup.beam +libexec/couchdb3/lib/ssl-11.1.4.4/ebin/tls_v1.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/argparse.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/array.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/base64.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/beam_lib.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/binary.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/c.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/calendar.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/dets.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/dets_server.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/dets_sup.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/dets_utils.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/dets_v9.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/dict.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/digraph.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/digraph_utils.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/edlin.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/edlin_context.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/edlin_expand.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/edlin_key.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/edlin_type_suggestion.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/epp.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_abstract_code.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_anno.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_bits.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_compile.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_error.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_eval.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_expand_records.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_features.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_internal.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_lint.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_parse.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_posix_msg.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_pp.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_scan.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_stdlib_errors.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/erl_tar.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/error_logger_file_h.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/error_logger_tty_h.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/escript.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/ets.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/eval_bits.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/file_sorter.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/filelib.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/filename.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gb_sets.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gb_trees.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gen.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gen_event.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gen_fsm.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gen_server.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/gen_statem.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/io.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/io_lib.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/io_lib_format.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/io_lib_fread.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/io_lib_pretty.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/lists.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/log_mf_h.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/maps.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/math.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/ms_transform.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/orddict.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/ordsets.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/otp_internal.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/peer.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/pool.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/proc_lib.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/proplists.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/qlc.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/qlc_pt.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/queue.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/rand.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/random.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/re.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/sets.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/shell.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/shell_default.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/shell_docs.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/slave.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/sofs.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/stdlib.app +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/stdlib.appup +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/string.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/supervisor.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/supervisor_bridge.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/sys.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/timer.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/unicode.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/unicode_util.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/uri_string.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/win32reg.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/ebin/zip.beam +libexec/couchdb3/lib/stdlib-5.2.3.2/include/assert.hrl +libexec/couchdb3/lib/stdlib-5.2.3.2/include/erl_bits.hrl +libexec/couchdb3/lib/stdlib-5.2.3.2/include/erl_compile.hrl +libexec/couchdb3/lib/stdlib-5.2.3.2/include/ms_transform.hrl +libexec/couchdb3/lib/stdlib-5.2.3.2/include/qlc.hrl +libexec/couchdb3/lib/stdlib-5.2.3.2/include/zip.hrl +libexec/couchdb3/lib/syntax_tools-3.1/ebin/epp_dodger.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/erl_comment_scan.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/erl_prettypr.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/erl_recomment.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/erl_syntax.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/erl_syntax_lib.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/merl.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/merl_transform.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/prettypr.beam +libexec/couchdb3/lib/syntax_tools-3.1/ebin/syntax_tools.app +libexec/couchdb3/lib/syntax_tools-3.1/ebin/syntax_tools.appup +libexec/couchdb3/lib/syntax_tools-3.1/include/merl.hrl libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport.app libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport.beam libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport_check.beam @@ -571,25 +1114,117 @@ libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport_log.beam libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport_node.beam libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport_runner.beam libexec/couchdb3/lib/weatherreport-%%VERSION%%/ebin/weatherreport_util.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl.app +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl.appup +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_b64Bin.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_b64Bin_scan.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_eventp.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_html.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_lib.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_otpsgml.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_regexp.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_old_dom.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_parser.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_parser_latin1.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_parser_list.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_parser_utf16be.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_parser_utf16le.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_parser_utf8.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sax_simple_dom.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_scan.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_sgml.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_simple.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_text.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_ucs.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_uri.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_validate.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xlate.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xml.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xpath.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xpath_lib.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xpath_parse.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xpath_pred.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xpath_scan.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xs.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xsd.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/ebin/xmerl_xsd_type.beam +libexec/couchdb3/lib/xmerl-1.3.34.1/include/xmerl.hrl +libexec/couchdb3/lib/xmerl-1.3.34.1/include/xmerl_xpath.hrl +libexec/couchdb3/lib/xmerl-1.3.34.1/include/xmerl_xsd.hrl @comment erlang release -libexec/couchdb3/releases/%%VERSION%%/couchdb.boot -libexec/couchdb3/releases/%%VERSION%%/couchdb.rel -libexec/couchdb3/releases/%%VERSION%%/couchdb.script -libexec/couchdb3/releases/%%VERSION%%/runner_script.data -libexec/couchdb3/releases/%%VERSION%%/start_clean.boot -libexec/couchdb3/releases/%%VERSION%%/start_clean.rel -libexec/couchdb3/releases/%%VERSION%%/start_clean.script -libexec/couchdb3/releases/%%VERSION%%/sys.config libexec/couchdb3/releases/RELEASES +libexec/couchdb3/releases/couchdb.boot +libexec/couchdb3/releases/couchdb.rel +libexec/couchdb3/releases/couchdb.script +libexec/couchdb3/releases/start_clean.boot +libexec/couchdb3/releases/start_clean.rel +libexec/couchdb3/releases/start_clean.script libexec/couchdb3/releases/start_erl.data +libexec/couchdb3/releases/sys.config +libexec/couchdb3/releases/vm.args libexec/couchdb3/share/server/main-ast-bypass.js libexec/couchdb3/share/server/main-coffee.js libexec/couchdb3/share/server/main.js share/man/man1/apachecouchdb.1.gz +@comment fauxton core UI +%%WWWDIR%%/dashboard.assets/css/styles.6ac51e51bd40d133867b.css +%%WWWDIR%%/dashboard.assets/css/styles.94c0399f9402dfdc648a.css +%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon9.eot +%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon9.ttf +%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon9.woff +%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon9.woff2 +%%WWWDIR%%/dashboard.assets/img/CouchDB-negative-logo.png +%%WWWDIR%%/dashboard.assets/img/asf-feather-logo.png +%%WWWDIR%%/dashboard.assets/img/couch-watermark.png +%%WWWDIR%%/dashboard.assets/img/couchdb-logo.png +%%WWWDIR%%/dashboard.assets/img/dawn-1.png +%%WWWDIR%%/dashboard.assets/img/dawn-2.png +%%WWWDIR%%/dashboard.assets/img/fauxtonicon9.svg +%%WWWDIR%%/dashboard.assets/img/github.png +%%WWWDIR%%/dashboard.assets/img/idle_fingers-1.png +%%WWWDIR%%/dashboard.assets/img/idle_fingers-2.png +%%WWWDIR%%/dashboard.assets/img/linkedin.png +%%WWWDIR%%/dashboard.assets/img/loader.gif +%%WWWDIR%%/dashboard.assets/img/main-1.png +%%WWWDIR%%/dashboard.assets/img/main-10.png +%%WWWDIR%%/dashboard.assets/img/main-11.png +%%WWWDIR%%/dashboard.assets/img/main-12.png +%%WWWDIR%%/dashboard.assets/img/main-13.png +%%WWWDIR%%/dashboard.assets/img/main-14.png +%%WWWDIR%%/dashboard.assets/img/main-15.png +%%WWWDIR%%/dashboard.assets/img/main-16.png +%%WWWDIR%%/dashboard.assets/img/main-17.png +%%WWWDIR%%/dashboard.assets/img/main-2.png +%%WWWDIR%%/dashboard.assets/img/main-3.png +%%WWWDIR%%/dashboard.assets/img/main-4.png +%%WWWDIR%%/dashboard.assets/img/main-5.png +%%WWWDIR%%/dashboard.assets/img/main-6.png +%%WWWDIR%%/dashboard.assets/img/main-7.png +%%WWWDIR%%/dashboard.assets/img/main-8.png +%%WWWDIR%%/dashboard.assets/img/main-9.png +%%WWWDIR%%/dashboard.assets/img/mastodon.svg +%%WWWDIR%%/dashboard.assets/js/0fd8f6ec45ed7274dd177deffbe37e01.js +%%WWWDIR%%/dashboard.assets/js/10f3888025f06864384f3344ff3fb4ee.js +%%WWWDIR%%/dashboard.assets/js/16c3d39e35a36b2b545f94f257150136.js +%%WWWDIR%%/dashboard.assets/js/1ca975b7393e70f15fbec7e5ae50cb4d.js +%%WWWDIR%%/dashboard.assets/js/4ade5c69018920bc9008ef46095395af.js +%%WWWDIR%%/dashboard.assets/js/61afad92d1f60d84915d4641b8cac704.js +%%WWWDIR%%/dashboard.assets/js/6b7557f2290a81cf153c6165770c4c6f.js +%%WWWDIR%%/dashboard.assets/js/997640c55a6ded9da7e02f7f9d5a6999.js +%%WWWDIR%%/dashboard.assets/js/ac536bd808e2ead2bbecdb8bfa694b76.js +%%WWWDIR%%/dashboard.assets/js/bundle.94c0399f9402dfdc648a.js +%%WWWDIR%%/dashboard.assets/js/bundle.94c0399f9402dfdc648a.js.LICENSE.txt +%%WWWDIR%%/dashboard.assets/js/eb8be84d5cbcf3648f0c6c73515ddc74.js +%%WWWDIR%%/dashboard.assets/js/manifest.877d8b350ab5f1cd7568.js +%%WWWDIR%%/dashboard.assets/js/vendor.6ac51e51bd40d133867b.js +%%WWWDIR%%/dashboard.assets/js/vendor.6ac51e51bd40d133867b.js.LICENSE.txt +@comment generic docs %%PORTDOCS%%%%WWWDIR%%/docs/_images/23379351593_0c480537de_q.jpg %%PORTDOCS%%%%WWWDIR%%/docs/_images/TLS-Handshake.png %%PORTDOCS%%%%WWWDIR%%/docs/_images/fair-enough.png %%PORTDOCS%%%%WWWDIR%%/docs/_images/gf-gnome-rainbows.png +%%PORTDOCS%%%%WWWDIR%%/docs/_images/index-selection-steps.svg %%PORTDOCS%%%%WWWDIR%%/docs/_images/intro-consistency-01.png %%PORTDOCS%%%%WWWDIR%%/docs/_images/intro-consistency-02.png %%PORTDOCS%%%%WWWDIR%%/docs/_images/intro-consistency-03.png @@ -623,6 +1258,7 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/database/shard.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/ddoc/common.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/ddoc/index.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/ddoc/nouveau.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/ddoc/render.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/ddoc/rewrites.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/api/ddoc/search.rst.txt @@ -657,6 +1293,7 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/compaction.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/couch-peruser.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/couchdb.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/disk-monitor.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/http.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/index.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/indexbuilds.rst.txt @@ -665,8 +1302,10 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/logging.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/misc.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/query-servers.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/quickjs.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/replicator.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/resharding.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/config/scanner.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/contributing.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/2010-0009.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/2010-2234.rst.txt @@ -684,9 +1323,11 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/2021-38295.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/2022-24706.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/2023-26268.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/2023-45725.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/cve/index.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/ddocs/ddocs.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/ddocs/index.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/ddocs/nouveau.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/ddocs/search.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/ddocs/views/collation.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/ddocs/views/index.rst.txt @@ -703,6 +1344,7 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/index.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/kubernetes.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/mac.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/nouveau.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/search.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/snap.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/install/troubleshooting.rst.txt @@ -755,9 +1397,16 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_sources/whatsnew/3.1.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/whatsnew/3.2.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/whatsnew/3.3.rst.txt +%%PORTDOCS%%%%WWWDIR%%/docs/_sources/whatsnew/3.4.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_sources/whatsnew/index.rst.txt %%PORTDOCS%%%%WWWDIR%%/docs/_static/_sphinx_javascript_frameworks_compat.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/basic.css +%%PORTDOCS%%%%WWWDIR%%/docs/_static/check-solid.svg +%%PORTDOCS%%%%WWWDIR%%/docs/_static/clipboard.min.js +%%PORTDOCS%%%%WWWDIR%%/docs/_static/copy-button.svg +%%PORTDOCS%%%%WWWDIR%%/docs/_static/copybutton.css +%%PORTDOCS%%%%WWWDIR%%/docs/_static/copybutton.js +%%PORTDOCS%%%%WWWDIR%%/docs/_static/copybutton_funcs.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/badge_only.css %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/fonts/Roboto-Slab-Bold.woff %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 @@ -777,12 +1426,12 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/fonts/lato-normal.woff %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/fonts/lato-normal.woff2 %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/rtd_theme.css +%%PORTDOCS%%%%WWWDIR%%/docs/_static/css/tablefix.css %%PORTDOCS%%%%WWWDIR%%/docs/_static/css/theme.css %%PORTDOCS%%%%WWWDIR%%/docs/_static/doctools.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/documentation_options.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/favicon.ico %%PORTDOCS%%%%WWWDIR%%/docs/_static/file.png -%%PORTDOCS%%%%WWWDIR%%/docs/_static/jquery-3.6.0.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/jquery.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/js/badge_only.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/js/html5shiv-printshiv.min.js @@ -795,8 +1444,6 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/_static/pygments.css %%PORTDOCS%%%%WWWDIR%%/docs/_static/searchtools.js %%PORTDOCS%%%%WWWDIR%%/docs/_static/sphinx_highlight.js -%%PORTDOCS%%%%WWWDIR%%/docs/_static/underscore-1.13.1.js -%%PORTDOCS%%%%WWWDIR%%/docs/_static/underscore.js %%PORTDOCS%%%%WWWDIR%%/docs/about.html %%PORTDOCS%%%%WWWDIR%%/docs/api/basics.html %%PORTDOCS%%%%WWWDIR%%/docs/api/database/bulk-api.html @@ -810,6 +1457,7 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/api/database/shard.html %%PORTDOCS%%%%WWWDIR%%/docs/api/ddoc/common.html %%PORTDOCS%%%%WWWDIR%%/docs/api/ddoc/index.html +%%PORTDOCS%%%%WWWDIR%%/docs/api/ddoc/nouveau.html %%PORTDOCS%%%%WWWDIR%%/docs/api/ddoc/render.html %%PORTDOCS%%%%WWWDIR%%/docs/api/ddoc/rewrites.html %%PORTDOCS%%%%WWWDIR%%/docs/api/ddoc/search.html @@ -845,6 +1493,7 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/config/compaction.html %%PORTDOCS%%%%WWWDIR%%/docs/config/couch-peruser.html %%PORTDOCS%%%%WWWDIR%%/docs/config/couchdb.html +%%PORTDOCS%%%%WWWDIR%%/docs/config/disk-monitor.html %%PORTDOCS%%%%WWWDIR%%/docs/config/http.html %%PORTDOCS%%%%WWWDIR%%/docs/config/index.html %%PORTDOCS%%%%WWWDIR%%/docs/config/indexbuilds.html @@ -853,8 +1502,10 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/config/logging.html %%PORTDOCS%%%%WWWDIR%%/docs/config/misc.html %%PORTDOCS%%%%WWWDIR%%/docs/config/query-servers.html +%%PORTDOCS%%%%WWWDIR%%/docs/config/quickjs.html %%PORTDOCS%%%%WWWDIR%%/docs/config/replicator.html %%PORTDOCS%%%%WWWDIR%%/docs/config/resharding.html +%%PORTDOCS%%%%WWWDIR%%/docs/config/scanner.html %%PORTDOCS%%%%WWWDIR%%/docs/contributing.html %%PORTDOCS%%%%WWWDIR%%/docs/cve/2010-0009.html %%PORTDOCS%%%%WWWDIR%%/docs/cve/2010-2234.html @@ -872,9 +1523,11 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/cve/2021-38295.html %%PORTDOCS%%%%WWWDIR%%/docs/cve/2022-24706.html %%PORTDOCS%%%%WWWDIR%%/docs/cve/2023-26268.html +%%PORTDOCS%%%%WWWDIR%%/docs/cve/2023-45725.html %%PORTDOCS%%%%WWWDIR%%/docs/cve/index.html %%PORTDOCS%%%%WWWDIR%%/docs/ddocs/ddocs.html %%PORTDOCS%%%%WWWDIR%%/docs/ddocs/index.html +%%PORTDOCS%%%%WWWDIR%%/docs/ddocs/nouveau.html %%PORTDOCS%%%%WWWDIR%%/docs/ddocs/search.html %%PORTDOCS%%%%WWWDIR%%/docs/ddocs/views/collation.html %%PORTDOCS%%%%WWWDIR%%/docs/ddocs/views/index.html @@ -893,6 +1546,7 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/install/index.html %%PORTDOCS%%%%WWWDIR%%/docs/install/kubernetes.html %%PORTDOCS%%%%WWWDIR%%/docs/install/mac.html +%%PORTDOCS%%%%WWWDIR%%/docs/install/nouveau.html %%PORTDOCS%%%%WWWDIR%%/docs/install/search.html %%PORTDOCS%%%%WWWDIR%%/docs/install/snap.html %%PORTDOCS%%%%WWWDIR%%/docs/install/troubleshooting.html @@ -948,60 +1602,8 @@ share/man/man1/apachecouchdb.1.gz %%PORTDOCS%%%%WWWDIR%%/docs/whatsnew/3.1.html %%PORTDOCS%%%%WWWDIR%%/docs/whatsnew/3.2.html %%PORTDOCS%%%%WWWDIR%%/docs/whatsnew/3.3.html +%%PORTDOCS%%%%WWWDIR%%/docs/whatsnew/3.4.html %%PORTDOCS%%%%WWWDIR%%/docs/whatsnew/index.html %%PORTDOCS%%%%WWWDIR%%/favicon.ico %%PORTDOCS%%%%WWWDIR%%/index.html -@comment fauxton core UI -%%WWWDIR%%/dashboard.assets/css/styles.2fe6f2383b82d9a7610a.css -%%WWWDIR%%/dashboard.assets/css/styles.5bda604c70f688307c36.css -%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon5.eot -%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon5.ttf -%%WWWDIR%%/dashboard.assets/fonts/fauxtonicon5.woff -%%WWWDIR%%/dashboard.assets/fonts/fontawesome-webfont.eot -%%WWWDIR%%/dashboard.assets/fonts/fontawesome-webfont.ttf -%%WWWDIR%%/dashboard.assets/fonts/fontawesome-webfont.woff -%%WWWDIR%%/dashboard.assets/img/CouchDB-negative-logo.png -%%WWWDIR%%/dashboard.assets/img/asf-feather-logo.png -%%WWWDIR%%/dashboard.assets/img/couch-watermark.png -%%WWWDIR%%/dashboard.assets/img/couchdb-logo.png -%%WWWDIR%%/dashboard.assets/img/dawn-1.png -%%WWWDIR%%/dashboard.assets/img/dawn-2.png -%%WWWDIR%%/dashboard.assets/img/fauxtonicon5.svg -%%WWWDIR%%/dashboard.assets/img/fontawesome-webfont.svg -%%WWWDIR%%/dashboard.assets/img/github.png -%%WWWDIR%%/dashboard.assets/img/idle_fingers-1.png -%%WWWDIR%%/dashboard.assets/img/idle_fingers-2.png -%%WWWDIR%%/dashboard.assets/img/linkedin.png -%%WWWDIR%%/dashboard.assets/img/loader.gif -%%WWWDIR%%/dashboard.assets/img/main-1.png -%%WWWDIR%%/dashboard.assets/img/main-10.png -%%WWWDIR%%/dashboard.assets/img/main-11.png -%%WWWDIR%%/dashboard.assets/img/main-12.png -%%WWWDIR%%/dashboard.assets/img/main-13.png -%%WWWDIR%%/dashboard.assets/img/main-14.png -%%WWWDIR%%/dashboard.assets/img/main-15.png -%%WWWDIR%%/dashboard.assets/img/main-16.png -%%WWWDIR%%/dashboard.assets/img/main-17.png -%%WWWDIR%%/dashboard.assets/img/main-2.png -%%WWWDIR%%/dashboard.assets/img/main-3.png -%%WWWDIR%%/dashboard.assets/img/main-4.png -%%WWWDIR%%/dashboard.assets/img/main-5.png -%%WWWDIR%%/dashboard.assets/img/main-6.png -%%WWWDIR%%/dashboard.assets/img/main-7.png -%%WWWDIR%%/dashboard.assets/img/main-8.png -%%WWWDIR%%/dashboard.assets/img/main-9.png -%%WWWDIR%%/dashboard.assets/img/twitter.png -%%WWWDIR%%/dashboard.assets/js/0fd8f6ec45ed7274dd177deffbe37e01.js -%%WWWDIR%%/dashboard.assets/js/10f3888025f06864384f3344ff3fb4ee.js -%%WWWDIR%%/dashboard.assets/js/1ca975b7393e70f15fbec7e5ae50cb4d.js -%%WWWDIR%%/dashboard.assets/js/61afad92d1f60d84915d4641b8cac704.js -%%WWWDIR%%/dashboard.assets/js/6b7557f2290a81cf153c6165770c4c6f.js -%%WWWDIR%%/dashboard.assets/js/997640c55a6ded9da7e02f7f9d5a6999.js -%%WWWDIR%%/dashboard.assets/js/ac536bd808e2ead2bbecdb8bfa694b76.js -%%WWWDIR%%/dashboard.assets/js/bundle.2fe6f2383b82d9a7610a.js -%%WWWDIR%%/dashboard.assets/js/bundle.2fe6f2383b82d9a7610a.js.LICENSE.txt -%%WWWDIR%%/dashboard.assets/js/eb8be84d5cbcf3648f0c6c73515ddc74.js -%%WWWDIR%%/dashboard.assets/js/manifest.f9cde0db85e3cd97708e.js -%%WWWDIR%%/dashboard.assets/js/vendor.5bda604c70f688307c36.js -%%WWWDIR%%/dashboard.assets/js/vendor.5bda604c70f688307c36.js.LICENSE.txt |