Date: Thu, 12 Mar 2026 20:10:10 +0000 From: Mark Felder <feld@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: e4d0e51ba6f5 - main - databases/pg_search: New port Message-ID: <69b31da2.33180.423e5e97@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by feld: URL: https://cgit.FreeBSD.org/ports/commit/?id=e4d0e51ba6f5529b2747427189fc1ca9810639f8 commit e4d0e51ba6f5529b2747427189fc1ca9810639f8 Author: Mark Felder <feld@FreeBSD.org> AuthorDate: 2026-03-12 20:07:41 +0000 Commit: Mark Felder <feld@FreeBSD.org> CommitDate: 2026-03-12 20:08:51 +0000 databases/pg_search: New port pg_search is a Postgres extension that enables full text search over heap tables using the BM25 algorithm. It is built on top of Tantivy, the Rust-based alternative to Apache Lucene, using pgrx. pg_search is supported on official PostgreSQL Global Development Group Postgres versions, starting at PostgreSQL 15. --- databases/Makefile | 1 + databases/pg_search/Makefile | 65 ++ databases/pg_search/Makefile.crates | 819 +++++++++++++++++ databases/pg_search/distinfo | 1651 +++++++++++++++++++++++++++++++++++ databases/pg_search/pkg-descr | 6 + databases/pg_search/pkg-plist | 103 +++ 6 files changed, 2645 insertions(+) diff --git a/databases/Makefile b/databases/Makefile index c437551687d9..746cf660b520 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -556,6 +556,7 @@ SUBDIR += pg_partman SUBDIR += pg_qualstats SUBDIR += pg_repack + SUBDIR += pg_search SUBDIR += pg_similarity SUBDIR += pg_stat_kcache SUBDIR += pg_store_plans diff --git a/databases/pg_search/Makefile b/databases/pg_search/Makefile new file mode 100644 index 000000000000..c22db46110de --- /dev/null +++ b/databases/pg_search/Makefile @@ -0,0 +1,65 @@ +PORTNAME= pg_search +PORTVERSION= 0.21.13 +PORTREVISION= 0 +CATEGORIES= databases +PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- +DISTFILES= mecab-ipadic-2.7.0-20070801.tar.gz:lindera \ + mecab-ko-dic-2.1.1-20180720.tar.gz:lindera \ + unidic-mecab-2.1.2.tar.gz:lindera \ + mecab-ipadic-2.7.0-20250920.tar.gz:lindera \ + CC-CEDICT-MeCab-0.1.0-20200409.tar.gz:lindera +MASTER_SITES= https://Lindera.dev/:lindera + +MAINTAINER= feld@FreeBSD.org +COMMENT= Simple, Elastic-Quality Search for Postgres +WWW= https://www.paradedb.com/ + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= cargo-pgrx>0:databases/cargo-pgrx + +USES= cargo gmake pgsql + +USE_GITHUB= yes +GH_ACCOUNT= paradedb +GH_PROJECT= paradedb +GH_TAGNAME= v${PORTVERSION} + +WANT_PGSQL= server + +LINDERA_VERSION=1.5.1 +LINDERA_CACHE_PATH=${WRKDIR}/.lindera/ +LINDERA_FILES:= ${DISTFILES:M*\:lindera} + +MAKE_ARGS+= PG_CONFIG=${LOCALBASE}/bin/pg_config +MAKE_ENV+= MAKE=gmake \ + PATH=${PATH}:${WRKDIR}/.cargo/bin \ + PGRX_HOME=${WRKDIR}/.pgrx \ + LINDERA_CACHE=${LINDERA_CACHE_PATH} + +.include "${.CURDIR}/Makefile.crates" + +post-patch: + ${MKDIR} ${LINDERA_CACHE_PATH}/${LINDERA_VERSION} +.for file in ${LINDERA_FILES} + ${CP} ${DISTDIR}/${file:C/:lindera$//} ${LINDERA_CACHE_PATH}/${LINDERA_VERSION}/ +.endfor + +pre-build: + ${MKDIR} ${WRKDIR}/.pgrx + ${PRINTF} '[configs]\npg${PGSQL_VERSION}="${LOCALBASE}/bin/pg_config"\n' > ${WRKDIR}/.pgrx/config.toml + +do-build: + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} package + +do-install: + cd ${WRKSRC}/target/release/${PORTNAME}-pg${PGSQL_VER} && ${PAX} -rw . ${STAGEDIR} + +.include <bsd.port.pre.mk> + +.if ${PGSQL_VER} < 15 +IGNORE= Only supported on pgsql 15 and later +.endif + +.include <bsd.port.post.mk> diff --git a/databases/pg_search/Makefile.crates b/databases/pg_search/Makefile.crates new file mode 100644 index 000000000000..fc25b72e9366 --- /dev/null +++ b/databases/pg_search/Makefile.crates @@ -0,0 +1,819 @@ +CARGO_CRATES= adler2-2.0.1 \ + adler32-1.2.0 \ + ahash-0.7.8 \ + ahash-0.8.12 \ + aho-corasick-1.1.4 \ + aligned-0.4.3 \ + aligned-vec-0.6.4 \ + allocator-api2-0.2.21 \ + android_system_properties-0.1.5 \ + annotate-snippets-0.11.5 \ + anstream-0.6.21 \ + anstyle-1.0.13 \ + anstyle-parse-0.2.7 \ + anstyle-query-1.1.5 \ + anstyle-wincon-3.0.11 \ + anyhow-1.0.102 \ + approx-0.5.1 \ + arbitrary-1.4.2 \ + arc-swap-1.8.2 \ + arg_enum_proc_macro-0.3.4 \ + arrayvec-0.7.6 \ + arrow-array-55.2.0 \ + arrow-buffer-55.2.0 \ + arrow-data-55.2.0 \ + arrow-schema-55.2.0 \ + as-slice-0.2.1 \ + async-attributes-1.1.2 \ + async-channel-1.9.0 \ + async-channel-2.5.0 \ + async-executor-1.14.0 \ + async-global-executor-2.4.1 \ + async-io-1.13.0 \ + async-io-2.6.0 \ + async-lock-2.8.0 \ + async-lock-3.4.2 \ + async-std-1.13.2 \ + async-task-4.7.1 \ + async-trait-0.1.89 \ + atoi-2.0.0 \ + atomic-waker-1.1.2 \ + autocfg-1.5.0 \ + av-scenechange-0.14.1 \ + av1-grain-0.2.5 \ + avif-serialize-0.8.8 \ + aws-lc-rs-1.16.1 \ + aws-lc-sys-0.38.0 \ + base64-0.22.1 \ + base64ct-1.8.3 \ + bigdecimal-0.4.10 \ + bincode-2.0.1 \ + bindgen-0.69.5 \ + bindgen-0.71.1 \ + bit-set-0.8.0 \ + bit-vec-0.8.0 \ + bit_field-0.10.3 \ + bitflags-1.3.2 \ + bitflags-2.11.0 \ + bitpacking-0.9.3 \ + bitstream-io-4.9.0 \ + bitvec-1.0.1 \ + block-buffer-0.10.4 \ + blocking-1.6.2 \ + bon-3.9.0 \ + bon-macros-3.9.0 \ + borsh-1.6.0 \ + borsh-derive-1.6.0 \ + built-0.8.0 \ + bumpalo-3.20.2 \ + bytecheck-0.6.12 \ + bytecheck-0.8.2 \ + bytecheck_derive-0.6.12 \ + bytecheck_derive-0.8.2 \ + bytemuck-1.25.0 \ + bytemuck_derive-1.10.2 \ + byteorder-1.5.0 \ + byteorder-lite-0.1.0 \ + bytes-1.11.1 \ + camino-1.2.2 \ + cargo-platform-0.1.9 \ + cargo_metadata-0.18.1 \ + cargo_metadata-0.19.2 \ + cargo_toml-0.21.0 \ + cargo_toml-0.22.3 \ + castaway-0.2.4 \ + cc-1.2.56 \ + cedarwood-0.4.6 \ + cee-scape-0.2.0 \ + census-0.4.2 \ + cesu8-1.1.0 \ + cexpr-0.6.0 \ + cfg-if-1.0.4 \ + cfg_aliases-0.2.1 \ + chrono-0.4.44 \ + clang-sys-1.8.1 \ + clap-4.5.60 \ + clap-cargo-0.14.1 \ + clap_builder-4.5.60 \ + clap_derive-4.5.55 \ + clap_lex-1.0.0 \ + cmake-0.1.57 \ + cmd_lib-1.9.6 \ + cmd_lib_macros-1.9.6 \ + cobs-0.3.0 \ + codepage-0.1.2 \ + color_quant-1.1.0 \ + colorchoice-1.0.4 \ + combine-4.6.7 \ + compact_str-0.8.1 \ + concurrent-queue-2.5.0 \ + const-oid-0.9.6 \ + const-random-0.1.18 \ + const-random-macro-0.1.16 \ + convert_case-0.8.0 \ + convert_case-0.10.0 \ + core-foundation-0.9.4 \ + core-foundation-0.10.1 \ + core-foundation-sys-0.8.7 \ + core-graphics-0.23.2 \ + core-graphics-types-0.1.3 \ + core-text-20.1.0 \ + core2-0.4.0 \ + cpufeatures-0.2.17 \ + crc-3.4.0 \ + crc-catalog-2.4.0 \ + crc32fast-1.5.0 \ + crossbeam-channel-0.5.15 \ + crossbeam-deque-0.8.6 \ + crossbeam-epoch-0.9.18 \ + crossbeam-queue-0.3.12 \ + crossbeam-utils-0.8.21 \ + crossterm-0.28.1 \ + crossterm_winapi-0.9.1 \ + crunchy-0.2.4 \ + crypto-common-0.1.7 \ + csv-1.4.0 \ + csv-core-0.1.13 \ + cursive-0.21.1 \ + cursive-macros-0.1.0 \ + cursive-multiplex-0.7.0 \ + cursive_core-0.4.6 \ + cursive_table_view-0.15.0 \ + darling-0.20.11 \ + darling-0.21.3 \ + darling-0.23.0 \ + darling_core-0.20.11 \ + darling_core-0.21.3 \ + darling_core-0.23.0 \ + darling_macro-0.20.11 \ + darling_macro-0.21.3 \ + darling_macro-0.23.0 \ + dary_heap-0.3.8 \ + der-0.7.10 \ + deranged-0.4.0 \ + deranged-0.5.8 \ + derive_builder-0.20.2 \ + derive_builder_core-0.20.2 \ + derive_builder_macro-0.20.2 \ + derive_more-2.1.1 \ + derive_more-impl-2.1.1 \ + diff-0.1.13 \ + digest-0.10.7 \ + dirs-6.0.0 \ + dirs-sys-0.5.0 \ + displaydoc-0.2.5 \ + dlib-0.5.3 \ + dotenvy-0.15.7 \ + downcast-rs-2.0.2 \ + dunce-1.0.5 \ + dwrote-0.11.5 \ + either-1.15.0 \ + embedded-io-0.4.0 \ + embedded-io-0.6.1 \ + emoji-0.2.1 \ + encoding-0.2.33 \ + encoding-index-japanese-1.20141219.5 \ + encoding-index-korean-1.20141219.5 \ + encoding-index-simpchinese-1.20141219.5 \ + encoding-index-singlebyte-1.20141219.5 \ + encoding-index-tradchinese-1.20141219.5 \ + encoding_index_tests-0.1.4 \ + encoding_rs-0.8.35 \ + encoding_rs_io-0.1.7 \ + enum-map-2.7.3 \ + enum-map-derive-0.17.0 \ + enumset-1.1.10 \ + enumset_derive-0.14.0 \ + env_filter-1.0.0 \ + env_logger-0.10.2 \ + env_logger-0.11.9 \ + equator-0.4.2 \ + equator-macro-0.4.2 \ + equivalent-1.0.2 \ + erased-serde-0.4.10 \ + errno-0.3.14 \ + etcetera-0.8.0 \ + event-listener-2.5.3 \ + event-listener-5.4.1 \ + event-listener-strategy-0.5.4 \ + exr-1.74.0 \ + eyre-0.6.12 \ + faccess-0.2.4 \ + fallible-iterator-0.2.0 \ + fastdivide-0.4.2 \ + fastrand-1.9.0 \ + fastrand-2.3.0 \ + fax-0.2.6 \ + fax_derive-0.2.0 \ + fdeflate-0.3.7 \ + filetime-0.2.27 \ + find-msvc-tools-0.1.9 \ + fixedbitset-0.5.7 \ + flate2-1.1.9 \ + float-ord-0.3.2 \ + flume-0.11.1 \ + fnv-1.0.7 \ + foldhash-0.1.5 \ + foldhash-0.2.0 \ + font-kit-0.14.3 \ + foreign-types-0.3.2 \ + foreign-types-0.5.0 \ + foreign-types-macros-0.2.3 \ + foreign-types-shared-0.1.1 \ + foreign-types-shared-0.3.1 \ + form_urlencoded-1.2.2 \ + freetype-sys-0.20.1 \ + fs_extra-1.3.0 \ + funty-2.0.0 \ + futures-0.3.32 \ + futures-channel-0.3.32 \ + futures-core-0.3.32 \ + futures-executor-0.3.32 \ + futures-intrusive-0.5.0 \ + futures-io-0.3.32 \ + futures-lite-1.13.0 \ + futures-lite-2.6.1 \ + futures-macro-0.3.32 \ + futures-sink-0.3.32 \ + futures-task-0.3.32 \ + futures-timer-3.0.3 \ + futures-util-0.3.32 \ + fuzzy-matcher-0.3.7 \ + fxhash-0.2.1 \ + generic-array-0.14.7 \ + getrandom-0.1.16 \ + getrandom-0.2.17 \ + getrandom-0.3.4 \ + getrandom-0.4.2 \ + gif-0.12.0 \ + gif-0.14.1 \ + git2-0.20.4 \ + glob-0.3.3 \ + gloo-timers-0.3.0 \ + half-1.8.3 \ + half-2.7.1 \ + hashbrown-0.12.3 \ + hashbrown-0.15.5 \ + hashbrown-0.16.1 \ + hashlink-0.10.0 \ + heck-0.5.0 \ + hermit-abi-0.3.9 \ + hermit-abi-0.5.2 \ + hex-0.4.3 \ + hkdf-0.12.4 \ + hmac-0.12.1 \ + home-0.5.12 \ + htmlescape-0.3.1 \ + http-1.4.0 \ + http-body-1.0.1 \ + http-body-util-0.1.3 \ + httparse-1.10.1 \ + human_bytes-0.4.3 \ + humantime-2.3.0 \ + hyper-1.8.1 \ + hyper-rustls-0.27.7 \ + hyper-util-0.1.20 \ + hyperloglogplus-0.4.1 \ + iana-time-zone-0.1.65 \ + iana-time-zone-haiku-0.1.2 \ + icu_collections-2.1.1 \ + icu_locale_core-2.1.1 \ + icu_normalizer-2.1.1 \ + icu_normalizer_data-2.1.1 \ + icu_properties-2.1.2 \ + icu_properties_data-2.1.2 \ + icu_provider-2.1.1 \ + id-arena-2.3.0 \ + ident_case-1.0.1 \ + idna-1.1.0 \ + idna_adapter-1.2.1 \ + image-0.24.9 \ + image-0.25.9 \ + image-webp-0.2.4 \ + imgref-1.12.0 \ + include-flate-0.3.0 \ + include-flate-codegen-0.2.0 \ + indenter-0.3.4 \ + indexmap-2.13.0 \ + indextree-4.7.4 \ + indextree-macros-0.1.3 \ + instant-0.1.13 \ + interpolate_name-0.2.4 \ + inventory-0.3.22 \ + io-lifetimes-1.0.11 \ + ipnet-2.12.0 \ + iri-string-0.7.10 \ + is-terminal-0.4.17 \ + is_ci-1.2.0 \ + is_terminal_polyfill-1.70.2 \ + itertools-0.9.0 \ + itertools-0.12.1 \ + itertools-0.13.0 \ + itertools-0.14.0 \ + itoa-1.0.17 \ + jieba-macros-0.7.1 \ + jieba-macros-0.8.1 \ + jieba-rs-0.7.4 \ + jieba-rs-0.8.0 \ + jiff-0.2.23 \ + jiff-static-0.2.23 \ + jni-0.21.1 \ + jni-sys-0.3.0 \ + jobserver-0.1.34 \ + jpeg-decoder-0.3.2 \ + js-sys-0.3.91 \ + json5-0.4.1 \ + kanaria-0.2.0 \ + kv-log-macro-1.0.7 \ + lazy_static-1.5.0 \ + lazycell-1.3.0 \ + leb128fmt-0.1.0 \ + lebe-0.5.3 \ + levenshtein_automata-0.2.1 \ + libc-0.2.182 \ + libflate-2.2.1 \ + libflate_lz77-2.2.0 \ + libfuzzer-sys-0.4.12 \ + libgit2-sys-0.18.3+1.9.2 \ + libloading-0.8.9 \ + libm-0.2.16 \ + libredox-0.1.14 \ + libsqlite3-sys-0.30.1 \ + libz-sys-1.1.24 \ + lindera-1.5.1 \ + lindera-cc-cedict-1.5.1 \ + lindera-dictionary-1.5.1 \ + lindera-ipadic-1.5.1 \ + lindera-ipadic-neologd-1.5.1 \ + lindera-ko-dic-1.5.1 \ + lindera-unidic-1.5.1 \ + linux-raw-sys-0.3.8 \ + linux-raw-sys-0.4.15 \ + linux-raw-sys-0.12.1 \ + litemap-0.8.1 \ + lock_api-0.4.14 \ + lockfree-object-pool-0.1.6 \ + log-0.4.29 \ + loop9-0.1.5 \ + lru-0.16.3 \ + lru-slab-0.1.2 \ + lz4_flex-0.12.0 \ + maybe-rayon-0.1.1 \ + md-5-0.10.6 \ + md5-0.8.0 \ + measure_time-0.9.0 \ + memchr-2.8.0 \ + memmap2-0.9.10 \ + memoffset-0.9.1 \ + minimal-lexical-0.2.1 \ + miniz_oxide-0.8.9 \ + mio-1.1.1 \ + moxcms-0.7.11 \ + munge-0.4.7 \ + munge_macro-0.4.7 \ + murmurhash32-0.3.1 \ + new_debug_unreachable-1.0.6 \ + nom-7.1.3 \ + nom-8.0.0 \ + noop_proc_macro-0.3.0 \ + ntapi-0.4.3 \ + num-0.4.3 \ + num-bigint-0.4.6 \ + num-bigint-dig-0.8.6 \ + num-complex-0.4.6 \ + num-conv-0.2.0 \ + num-derive-0.4.2 \ + num-integer-0.1.46 \ + num-iter-0.1.45 \ + num-rational-0.4.2 \ + num-traits-0.2.19 \ + num_cpus-1.17.0 \ + num_threads-0.1.7 \ + objc2-core-foundation-0.3.2 \ + objc2-system-configuration-0.3.2 \ + once_cell-1.21.3 \ + once_cell_polyfill-1.70.2 \ + oneshot-0.1.13 \ + opencc-jieba-rs-0.7.2 \ + openssl-0.10.75 \ + openssl-macros-0.1.1 \ + openssl-probe-0.2.1 \ + openssl-sys-0.9.111 \ + option-ext-0.2.0 \ + ordered-float-4.6.0 \ + ordered-float-5.1.0 \ + os_pipe-1.2.3 \ + owo-colors-4.3.0 \ + parking-2.2.1 \ + parking_lot-0.12.5 \ + parking_lot_core-0.9.12 \ + paste-1.0.15 \ + pastey-0.1.1 \ + pathfinder_geometry-0.5.1 \ + pathfinder_simd-0.5.5 \ + pathsearch-0.2.0 \ + pem-rfc7468-0.7.0 \ + percent-encoding-2.3.2 \ + permutation-0.4.1 \ + pest-2.8.6 \ + pest_derive-2.8.6 \ + pest_generator-2.8.6 \ + pest_meta-2.8.6 \ + petgraph-0.8.3 \ + pgrx-0.16.1 \ + pgrx-bindgen-0.16.1 \ + pgrx-macros-0.16.1 \ + pgrx-pg-config-0.13.1 \ + pgrx-pg-config-0.16.1 \ + pgrx-pg-sys-0.16.1 \ + pgrx-sql-entity-graph-0.16.1 \ + pgrx-tests-0.16.1 \ + pgvector-0.4.1 \ + phf-0.8.0 \ + phf-0.11.3 \ + phf-0.12.1 \ + phf-0.13.1 \ + phf_codegen-0.11.3 \ + phf_codegen-0.13.1 \ + phf_generator-0.8.0 \ + phf_generator-0.11.3 \ + phf_generator-0.13.1 \ + phf_macros-0.8.0 \ + phf_shared-0.8.0 \ + phf_shared-0.11.3 \ + phf_shared-0.12.1 \ + phf_shared-0.13.1 \ + pin-project-lite-0.2.17 \ + pin-utils-0.1.0 \ + piper-0.2.5 \ + pkcs1-0.7.5 \ + pkcs8-0.10.2 \ + pkg-config-0.3.32 \ + plain-0.2.3 \ + plotters-0.3.7 \ + plotters-backend-0.3.7 \ + plotters-bitmap-0.3.7 \ + plotters-svg-0.3.7 \ + png-0.17.16 \ + png-0.18.1 \ + polling-2.8.0 \ + polling-3.11.0 \ + portable-atomic-1.13.1 \ + portable-atomic-util-0.2.5 \ + portpicker-0.1.1 \ + postcard-1.1.3 \ + postgres-0.19.12 \ + postgres-openssl-0.5.2 \ + postgres-protocol-0.6.10 \ + postgres-types-0.2.12 \ + potential_utf-0.1.4 \ + powerfmt-0.2.0 \ + ppv-lite86-0.2.21 \ + precis-core-0.1.11 \ + precis-profiles-0.1.13 \ + precis-tools-0.1.9 \ + pretty_assertions-1.4.1 \ + prettyplease-0.2.37 \ + proc-macro-crate-3.5.0 \ + proc-macro-error-attr2-2.0.0 \ + proc-macro-error2-2.0.1 \ + proc-macro-hack-0.5.20+deprecated \ + proc-macro2-1.0.106 \ + profiling-1.0.17 \ + profiling-procmacros-1.0.17 \ + proptest-1.10.0 \ + proptest-derive-0.6.0 \ + ptr_meta-0.1.4 \ + ptr_meta-0.3.1 \ + ptr_meta_derive-0.1.4 \ + ptr_meta_derive-0.3.1 \ + pxfm-0.1.28 \ + qoi-0.4.1 \ + quick-error-1.2.3 \ + quick-error-2.0.1 \ + quinn-0.11.9 \ + quinn-proto-0.11.13 \ + quinn-udp-0.5.14 \ + quote-1.0.45 \ + r-efi-5.3.0 \ + r-efi-6.0.0 \ + radium-0.7.0 \ + rancor-0.1.1 \ + rand-0.7.3 \ + rand-0.8.5 \ + rand-0.9.2 \ + rand_chacha-0.2.2 \ + rand_chacha-0.3.1 \ + rand_chacha-0.9.0 \ + rand_core-0.5.1 \ + rand_core-0.6.4 \ + rand_core-0.9.5 \ + rand_distr-0.4.3 \ + rand_hc-0.2.0 \ + rand_pcg-0.2.1 \ + rand_xorshift-0.4.0 \ + rav1e-0.8.1 \ + ravif-0.12.0 \ + rayon-1.10.0 \ + rayon-core-1.12.1 \ + redox_syscall-0.5.18 \ + redox_syscall-0.7.3 \ + redox_users-0.5.2 \ + regex-1.12.3 \ + regex-automata-0.4.14 \ + regex-lite-0.1.9 \ + regex-syntax-0.8.10 \ + relative-path-1.9.3 \ + rend-0.4.2 \ + rend-0.5.3 \ + reqwest-0.13.2 \ + rgb-0.8.53 \ + ring-0.17.14 \ + rkyv-0.7.46 \ + rkyv-0.8.15 \ + rkyv_derive-0.7.46 \ + rkyv_derive-0.8.15 \ + rle-decode-fast-1.0.3 \ + rsa-0.9.10 \ + rstest-0.25.0 \ + rstest_macros-0.25.0 \ + rust-stemmers-1.2.0 \ + rust_decimal-1.40.0 \ + rust_icu_common-5.4.0 \ + rust_icu_release-5.4.0 \ + rust_icu_sys-5.4.0 \ + rust_icu_ubrk-5.4.0 \ + rust_icu_uenum-5.4.0 \ + rust_icu_uloc-5.4.0 \ + rust_icu_ustring-5.4.0 \ + rustc-hash-1.1.0 \ + rustc-hash-2.1.1 \ + rustc_version-0.4.1 \ + rustix-0.37.28 \ + rustix-0.38.44 \ + rustix-1.1.4 \ + rustls-0.23.37 \ + rustls-native-certs-0.8.3 \ + rustls-pki-types-1.14.0 \ + rustls-platform-verifier-0.6.2 \ + rustls-platform-verifier-android-0.1.1 \ + rustls-webpki-0.103.9 \ + rustversion-1.0.22 \ + rusty-fork-0.3.1 \ + ryu-1.0.23 \ + same-file-1.0.6 \ + schannel-0.1.28 \ + scopeguard-1.2.0 \ + seahash-4.1.0 \ + security-framework-3.7.0 \ + security-framework-sys-2.17.0 \ + semver-1.0.27 \ + serde-1.0.228 \ + serde_cbor-0.11.2 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ + serde_json-1.0.149 \ + serde_path_to_error-0.1.20 \ + serde_spanned-0.6.9 \ + serde_spanned-1.0.4 \ + serde_urlencoded-0.7.1 \ + serde_yaml_ng-0.10.0 \ + sha1-0.10.6 \ + sha2-0.10.9 \ + shlex-1.3.0 \ + shutdown_hooks-0.1.0 \ + signal-hook-0.3.18 \ + signal-hook-mio-0.2.5 \ + signal-hook-registry-1.4.8 \ + signature-2.2.0 \ + simd-adler32-0.3.8 \ + simd_helpers-0.1.0 \ + simdutf8-0.1.5 \ + siphasher-0.3.11 \ + siphasher-1.0.2 \ + sketches-ddsketch-0.3.1 \ + slab-0.4.12 \ + smallvec-1.15.1 \ + soa_derive-0.14.0 \ + soa_derive_internal-0.14.0 \ + socket2-0.4.10 \ + socket2-0.6.2 \ + spin-0.9.8 \ + spki-0.7.3 \ + sqlx-0.8.6 \ + sqlx-core-0.8.6 \ + sqlx-macros-0.8.6 \ + sqlx-macros-core-0.8.6 \ + sqlx-mysql-0.8.6 \ + sqlx-postgres-0.8.6 \ + sqlx-sqlite-0.8.6 \ + stable_deref_trait-1.2.1 \ + static_assertions-1.1.0 \ + stringprep-0.1.5 \ + strsim-0.11.1 \ + strum-0.27.2 \ + strum_macros-0.27.2 \ + subtle-2.6.1 \ + supports-color-2.1.0 \ + supports-color-3.0.2 \ + syn-1.0.109 \ + syn-2.0.117 \ + sync_wrapper-1.0.2 \ + synstructure-0.13.2 \ + sysinfo-0.33.1 \ + sysinfo-0.34.2 \ + tantivy-jieba-0.17.0 \ + tantivy-stemmers-0.4.0 \ + tantivy-tokenizer-api-0.3.0 \ + tap-1.0.1 \ + tar-0.4.44 \ + tempfile-3.26.0 \ + termcolor-1.4.1 \ + thiserror-1.0.69 \ + thiserror-2.0.18 \ + thiserror-impl-1.0.69 \ + thiserror-impl-2.0.18 \ + thread_local-1.1.9 \ + tiff-0.10.3 \ + time-0.3.47 \ + time-core-0.1.8 \ + time-macros-0.2.27 \ + tiny-keccak-2.0.2 \ + tinystr-0.8.2 \ + tinyvec-1.10.0 \ + tinyvec_macros-0.1.1 \ + tokio-1.50.0 \ + tokio-macros-2.6.1 \ + tokio-openssl-0.6.5 \ + tokio-postgres-0.7.16 \ + tokio-rustls-0.26.4 \ + tokio-util-0.7.18 \ + toml-0.8.23 \ + toml-0.9.12+spec-1.1.0 \ + toml_datetime-0.6.11 \ + toml_datetime-0.7.5+spec-1.1.0 \ + toml_datetime-1.0.0+spec-1.1.0 \ + toml_edit-0.22.27 \ + toml_edit-0.25.4+spec-1.1.0 \ + toml_parser-1.0.9+spec-1.1.0 \ + toml_write-0.1.2 \ + toml_writer-1.0.6+spec-1.1.0 \ + tower-0.5.3 \ + tower-http-0.6.8 \ + tower-layer-0.3.3 \ + tower-service-0.3.3 \ + tracing-0.1.44 \ + tracing-attributes-0.1.31 \ + tracing-core-0.1.36 \ + try-lock-0.2.5 \ + ttf-parser-0.20.0 \ + typeid-1.0.3 \ + typenum-1.19.0 \ + typetag-0.2.21 \ + typetag-impl-0.2.21 \ + ucd-parse-0.1.13 \ + ucd-trie-0.1.7 \ + unarray-0.1.4 \ + unescape-0.1.0 \ + unicode-bidi-0.3.18 \ + unicode-blocks-0.1.9 \ + unicode-ident-1.0.24 \ + unicode-normalization-0.1.25 \ + unicode-properties-0.1.4 \ + unicode-segmentation-1.12.0 \ + unicode-width-0.1.14 \ + unicode-width-0.2.2 \ + unicode-xid-0.2.6 \ + unsafe-libyaml-0.2.11 \ + untrusted-0.9.0 \ + unty-0.0.4 \ + url-2.5.8 \ + utf8-ranges-1.0.5 \ + utf8_iter-1.0.4 \ + utf8parse-0.2.2 \ + uuid-1.21.0 \ + v_frame-0.3.9 \ + value-bag-1.12.0 \ + vcpkg-0.2.15 \ + vergen-9.0.6 \ + vergen-git2-1.0.7 \ + vergen-lib-0.1.6 \ + version_check-0.9.5 \ + wait-timeout-0.2.1 \ + waker-fn-1.2.0 \ + walkdir-2.5.0 \ + want-0.3.1 \ + wasi-0.9.0+wasi-snapshot-preview1 \ + wasi-0.11.1+wasi-snapshot-preview1 \ + wasi-0.14.7+wasi-0.2.4 \ + wasip2-1.0.2+wasi-0.2.9 \ + wasip3-0.4.0+wasi-0.3.0-rc-2026-01-06 \ + wasite-0.1.0 \ + wasite-1.0.2 \ + wasm-bindgen-0.2.114 \ + wasm-bindgen-futures-0.4.64 \ + wasm-bindgen-macro-0.2.114 \ + wasm-bindgen-macro-support-0.2.114 \ + wasm-bindgen-shared-0.2.114 \ + wasm-encoder-0.244.0 \ + wasm-metadata-0.244.0 \ + wasmparser-0.244.0 \ + web-sys-0.3.91 \ + web-time-1.1.0 \ + webpki-root-certs-1.0.6 \ + weezl-0.1.12 \ + which-4.4.2 \ + whoami-1.6.1 \ + whoami-2.1.1 \ + winapi-0.3.9 \ + winapi-i686-pc-windows-gnu-0.4.0 \ + winapi-util-0.1.11 \ + winapi-x86_64-pc-windows-gnu-0.4.0 \ + windows-0.57.0 \ + windows-core-0.57.0 \ + windows-core-0.62.2 \ + windows-implement-0.57.0 \ + windows-implement-0.60.2 \ + windows-interface-0.57.0 \ + windows-interface-0.59.3 \ + windows-link-0.2.1 \ + windows-result-0.1.2 \ + windows-result-0.4.1 \ + windows-strings-0.5.1 \ + windows-sys-0.45.0 \ + windows-sys-0.48.0 \ + windows-sys-0.52.0 \ + windows-sys-0.59.0 \ + windows-sys-0.60.2 \ + windows-sys-0.61.2 \ + windows-targets-0.42.2 \ + windows-targets-0.48.5 \ + windows-targets-0.52.6 \ + windows-targets-0.53.5 \ + windows_aarch64_gnullvm-0.42.2 \ + windows_aarch64_gnullvm-0.48.5 \ + windows_aarch64_gnullvm-0.52.6 \ + windows_aarch64_gnullvm-0.53.1 \ + windows_aarch64_msvc-0.42.2 \ + windows_aarch64_msvc-0.48.5 \ + windows_aarch64_msvc-0.52.6 \ + windows_aarch64_msvc-0.53.1 \ + windows_i686_gnu-0.42.2 \ + windows_i686_gnu-0.48.5 \ + windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.1 \ + windows_i686_gnullvm-0.52.6 \ + windows_i686_gnullvm-0.53.1 \ + windows_i686_msvc-0.42.2 \ + windows_i686_msvc-0.48.5 \ + windows_i686_msvc-0.52.6 \ + windows_i686_msvc-0.53.1 \ + windows_x86_64_gnu-0.42.2 \ + windows_x86_64_gnu-0.48.5 \ + windows_x86_64_gnu-0.52.6 \ + windows_x86_64_gnu-0.53.1 \ + windows_x86_64_gnullvm-0.42.2 \ + windows_x86_64_gnullvm-0.48.5 \ + windows_x86_64_gnullvm-0.52.6 \ + windows_x86_64_gnullvm-0.53.1 \ + windows_x86_64_msvc-0.42.2 \ + windows_x86_64_msvc-0.48.5 \ + windows_x86_64_msvc-0.52.6 \ + windows_x86_64_msvc-0.53.1 \ + winnow-0.7.15 \ + wio-0.2.2 \ + wit-bindgen-0.51.0 \ + wit-bindgen-core-0.51.0 \ + wit-bindgen-rust-0.51.0 \ + wit-bindgen-rust-macro-0.51.0 \ + wit-component-0.244.0 \ + wit-parser-0.244.0 \ + writeable-0.6.2 \ + wyz-0.5.1 \ + xattr-1.6.1 \ + xi-unicode-0.3.0 \ + y4m-0.8.0 \ + yada-0.5.1 \ + yansi-1.0.1 \ + yeslogic-fontconfig-sys-6.0.0 \ + yoke-0.8.1 \ + yoke-derive-0.8.1 \ + zerocopy-0.8.40 \ + zerocopy-derive-0.8.40 \ + zerofrom-0.1.6 \ + zerofrom-derive-0.1.6 \ + zeroize-1.8.2 \ + zerotrie-0.2.3 \ + zerovec-0.11.5 \ + zerovec-derive-0.11.2 \ + zmij-1.0.21 \ + zstd-0.13.3 \ + zstd-safe-7.2.4 \ + zstd-sys-2.0.16+zstd.1.5.7 \ + zune-core-0.4.12 \ + zune-core-0.5.1 \ + zune-inflate-0.2.54 \ + zune-jpeg-0.4.21 \ + zune-jpeg-0.5.12 \ + tantivy-fst@git+https://github.com/paradedb/fst.git\#11e89334c578f26f9fbafbd1122ffb220ebbdbbf \ + ownedbytes,tantivy,tantivy-bitpacker,tantivy-columnar,tantivy-common,tantivy-query-grammar,tantivy-sstable,tantivy-stacker,tantivy-tokenizer-api@git+https://github.com/paradedb/tantivy.git?rev=55e26b252c9f9dd733316b57592fe7aecce450dd\#55e26b252c9f9dd733316b57592fe7aecce450dd diff --git a/databases/pg_search/distinfo b/databases/pg_search/distinfo new file mode 100644 index 000000000000..4658122b044c --- /dev/null +++ b/databases/pg_search/distinfo @@ -0,0 +1,1651 @@ +TIMESTAMP = 1772847751 +SHA256 (mecab-ipadic-2.7.0-20070801.tar.gz) = b62f527d881c504576baed9c6ef6561554658b175ce6ae0096a60307e49e3523 +SIZE (mecab-ipadic-2.7.0-20070801.tar.gz) = 12208105 +SHA256 (mecab-ko-dic-2.1.1-20180720.tar.gz) = 702ced21c6167e9d9aebc674ab5ee54af58d4443975f2940d37d0567c020591a +SIZE (mecab-ko-dic-2.1.1-20180720.tar.gz) = 49767335 +SHA256 (unidic-mecab-2.1.2.tar.gz) = 24ac75fe4e44d973b55e65847c35fa4aec2db7a41a07b49ca125146db9fc1189 +SIZE (unidic-mecab-2.1.2.tar.gz) = 140515741 +SHA256 (mecab-ipadic-2.7.0-20250920.tar.gz) = a7ba9f645ffe7094e56ae1c4a81d100df8fbb1e28bbe1792622e9728e162db3d +SIZE (mecab-ipadic-2.7.0-20250920.tar.gz) = 12907073 +SHA256 (CC-CEDICT-MeCab-0.1.0-20200409.tar.gz) = ed3cf9e3ec8a80647f0ec783dc09dad43b8ccad2e994f5eab6ff13a41d0916c8 +SIZE (CC-CEDICT-MeCab-0.1.0-20200409.tar.gz) = 8229477 +SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa +SIZE (rust/crates/adler2-2.0.1.crate) = 13366 +SHA256 (rust/crates/adler32-1.2.0.crate) = aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234 +SIZE (rust/crates/adler32-1.2.0.crate) = 6411 +SHA256 (rust/crates/ahash-0.7.8.crate) = 891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9 +SIZE (rust/crates/ahash-0.7.8.crate) = 38550 +SHA256 (rust/crates/ahash-0.8.12.crate) = 5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75 +SIZE (rust/crates/ahash-0.8.12.crate) = 43413 +SHA256 (rust/crates/aho-corasick-1.1.4.crate) = ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 +SIZE (rust/crates/aho-corasick-1.1.4.crate) = 184015 +SHA256 (rust/crates/aligned-0.4.3.crate) = ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685 +SIZE (rust/crates/aligned-0.4.3.crate) = 10452 +SHA256 (rust/crates/aligned-vec-0.6.4.crate) = dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b +SIZE (rust/crates/aligned-vec-0.6.4.crate) = 12609 +SHA256 (rust/crates/allocator-api2-0.2.21.crate) = 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 +SIZE (rust/crates/allocator-api2-0.2.21.crate) = 63622 +SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311 +SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 +SHA256 (rust/crates/annotate-snippets-0.11.5.crate) = 710e8eae58854cdc1790fcb56cca04d712a17be849eeb81da2a724bf4bae2bc4 +SIZE (rust/crates/annotate-snippets-0.11.5.crate) = 34687 +SHA256 (rust/crates/anstream-0.6.21.crate) = 43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a +SIZE (rust/crates/anstream-0.6.21.crate) = 29516 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 +SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 +SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 +SHA256 (rust/crates/anstyle-query-1.1.5.crate) = 40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc +SIZE (rust/crates/anstyle-query-1.1.5.crate) = 10264 +SHA256 (rust/crates/anstyle-wincon-3.0.11.crate) = 291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d +SIZE (rust/crates/anstyle-wincon-3.0.11.crate) = 12638 +SHA256 (rust/crates/anyhow-1.0.102.crate) = 7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c +SIZE (rust/crates/anyhow-1.0.102.crate) = 48658 +SHA256 (rust/crates/approx-0.5.1.crate) = cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6 +SIZE (rust/crates/approx-0.5.1.crate) = 15100 +SHA256 (rust/crates/arbitrary-1.4.2.crate) = c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1 *** 1726 LINES SKIPPED ***home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69b31da2.33180.423e5e97>
