diff options
Diffstat (limited to 'databases')
48 files changed, 244 insertions, 160 deletions
diff --git a/databases/Makefile b/databases/Makefile index 25ae57561e4b..55cca30e9738 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -817,7 +817,6 @@ SUBDIR += py-rb SUBDIR += py-redis SUBDIR += py-redis2 - SUBDIR += py-redis3 SUBDIR += py-rrdtool SUBDIR += py-schemachange SUBDIR += py-sispy diff --git a/databases/arrow/Makefile b/databases/arrow/Makefile index 9e3867246e89..053adc2fefb3 100644 --- a/databases/arrow/Makefile +++ b/databases/arrow/Makefile @@ -1,6 +1,6 @@ PORTNAME= arrow DISTVERSION= 19.0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= APACHE/${PORTNAME}/${PORTNAME}-${DISTVERSION} \ https://github.com/apache/orc/archive/rel/:orc diff --git a/databases/kyotocabinet/Makefile b/databases/kyotocabinet/Makefile index 540f015c6af0..cd1bf2a5159e 100644 --- a/databases/kyotocabinet/Makefile +++ b/databases/kyotocabinet/Makefile @@ -20,21 +20,11 @@ CPPFLAGS+= -fPIC GNU_CONFIGURE= yes INSTALL_TARGET= install-strip MAKE_ARGS= PCDIR=${PREFIX}/libdata/pkgconfig -REINPLACE_ARGS= -i '' TEST_TARGET= check USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS -post-patch: - @${REINPLACE_CMD} -e 's|-lstdc++ ||g' ${WRKSRC}/configure ${WRKSRC}/doc/spex.html ${WRKSRC}/example/Makefile ${WRKSRC}/lab/kcdict/Makefile - @${REINPLACE_CMD} -e 's|-g0 -O2||g' \ - ${PATCH_WRKSRC}/configure - @${REINPLACE_CMD} -e 's|-march=native||g' \ - ${PATCH_WRKSRC}/configure - @${REINPLACE_CMD} -e 's|-m64 ||g' \ - ${PATCH_WRKSRC}/configure - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libkyotocabinet.so diff --git a/databases/kyotocabinet/files/patch-configure b/databases/kyotocabinet/files/patch-configure new file mode 100644 index 000000000000..8818087aa773 --- /dev/null +++ b/databases/kyotocabinet/files/patch-configure @@ -0,0 +1,59 @@ +--- configure.orig 2023-04-13 18:15:33 UTC ++++ configure +@@ -2139,8 +2139,8 @@ MYPCFILES="kyotocabinet.pc" + MYPCFILES="kyotocabinet.pc" + + # Building flags +-MYCFLAGS="-Wall -ansi -pedantic -fPIC -fsigned-char -g0 -O2" +-MYCXXFLAGS="-Wall -fPIC -fsigned-char -g0 -O2" ++MYCFLAGS="-Wall -ansi -pedantic -fPIC -fsigned-char" ++MYCXXFLAGS="-Wall -fPIC -fsigned-char" + MYCPPFLAGS="-I. -I\$(INCLUDEDIR) -I/usr/local/include" + MYCPPFLAGS="$MYCPPFLAGS -DNDEBUG -D_GNU_SOURCE=1" + MYCPPFLAGS="$MYCPPFLAGS -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D__EXTENSIONS__" +@@ -4007,10 +4007,10 @@ printf 'checking for 64-bit availability... ' + + # System-depending optimization + printf 'checking for 64-bit availability... ' +-if printf 'int main(void) {return 0;}' | $CC -xc -m64 -o config.tmp - >config.tmp 2>&1 ++if printf 'int main(void) {return 0;}' | $CC -xc -o config.tmp - >config.tmp 2>&1 + then +- MYCFLAGS="-m64 $MYCFLAGS" +- MYCXXFLAGS="-m64 $MYCXXFLAGS" ++ MYCFLAGS="$MYCFLAGS" ++ MYCXXFLAGS="$MYCXXFLAGS" + printf 'yes\n' + else + printf 'no\n' +@@ -4018,10 +4018,10 @@ then + if test "$enable_opt" != "no" + then + printf 'checking for CPU optimization availability... ' +- if printf 'int main(void) {return 0;}' | $CC -xc -march=native -o config.tmp - >config.tmp 2>&1 ++ if printf 'int main(void) {return 0;}' | $CC -xc -o config.tmp - >config.tmp 2>&1 + then +- MYCFLAGS="-march=native $MYCFLAGS" +- MYCXXFLAGS="-march=native $MYCXXFLAGS" ++ MYCFLAGS="$MYCFLAGS" ++ MYCXXFLAGS="$MYCXXFLAGS" + printf 'yes\n' + else + printf 'no\n' +@@ -4231,7 +4231,7 @@ else + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lstdc++ $LIBS" ++LIBS="$LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -4260,7 +4260,7 @@ _ACEOF + #define HAVE_LIBSTDC__ 1 + _ACEOF + +- LIBS="-lstdc++ $LIBS" ++ LIBS="$LIBS" + + fi + diff --git a/databases/kyotocabinet/files/patch-doc-spex.html b/databases/kyotocabinet/files/patch-doc-spex.html new file mode 100644 index 000000000000..e01715f2aa4a --- /dev/null +++ b/databases/kyotocabinet/files/patch-doc-spex.html @@ -0,0 +1,11 @@ +--- doc/spex.html.orig 2012-05-24 11:32:01 UTC ++++ doc/spex.html +@@ -257,7 +257,7 @@ + <p>Kyoto Cabinet provides API of the C++ language and it is available by programs conforming to the C++03 standard. As the header files of Kyoto Cabinet are provided as `<code>kcutil.h</code>', `<code>kchashdb.h</code>', and so on, applications should include one or more of them accordingly to use the API. As the library is provided as `<code>libkyotocabinet.a</code>' and `<code>libkyotocabinet.so</code>' and they depends on `<code>libz.so</code>', `<code>libstdc++.so</code>', `<code>librt.so</code>', `<code>libpthread.so</code>', `<code>libm.so</code>', and `<code>libc.so</code>', linker options corresponding to them are required by the build command. The typical build command is the following.</p> + + <pre>$ g++ -I/usr/local/include example.cc -o example \ +- -L/usr/local/lib -lkyotocabinet -lz -lstdc++ -lrt -lpthread -lm -lc ++ -L/usr/local/lib -lkyotocabinet -lz -lrt -lpthread -lm -lc + </pre> + + <h3 id="installation_windows">For Windows</h3> diff --git a/databases/kyotocabinet/files/patch-example-Makefile b/databases/kyotocabinet/files/patch-example-Makefile new file mode 100644 index 000000000000..896196921d67 --- /dev/null +++ b/databases/kyotocabinet/files/patch-example-Makefile @@ -0,0 +1,11 @@ +--- example/Makefile.orig 2011-02-05 14:17:43 UTC ++++ example/Makefile +@@ -20,7 +20,7 @@ LDFLAGS = + CFLAGS = -I. -I.. -Wall -ansi -pedantic -fsigned-char -O2 + CXXFLAGS = -I. -I.. -Wall -fsigned-char -O2 + LDFLAGS = +-LIBS = -L. -L.. -lkyotocabinet -lstdc++ -lz -lrt -lpthread -lm -lc ++LIBS = -L. -L.. -lkyotocabinet -lz -lrt -lpthread -lm -lc + LDENV = LD_RUN_PATH=/lib:/usr/lib:$(HOME)/lib:/usr/local/lib:.:.. + RUNENV = LD_LIBRARY_PATH=/lib:/usr/lib:$(HOME)/lib:/usr/local/lib:.:.. + diff --git a/databases/kyototycoon/Makefile b/databases/kyototycoon/Makefile index 924e439b2052..b7b505e66191 100644 --- a/databases/kyototycoon/Makefile +++ b/databases/kyototycoon/Makefile @@ -21,7 +21,6 @@ CPPFLAGS+= -fPIC GNU_CONFIGURE= yes INSTALL_TARGET= install-strip MAKE_ARGS= PCDIR=${PREFIX}/libdata/pkgconfig -REINPLACE_ARGS= -i '' TEST_TARGET= check USE_CXXSTD= gnu++98 USE_LDCONFIG= yes @@ -55,9 +54,6 @@ LZO_CONFIGURE_OFF= ac_cv_lib_lzo2_main=no LZO_CONFIGURE_ON= ac_cv_lib_lzo2_main=yes LZO_LIB_DEPENDS= liblzo2.so:archivers/lzo2 -post-patch: - @${REINPLACE_CMD} -e 's|-lstdc++ ||g' ${WRKSRC}/configure ${WRKSRC}/doc/spex.html ${WRKSRC}/example/Makefile - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libkyototycoon.so ${STAGEDIR}${PREFIX}/libexec/*.so diff --git a/databases/kyototycoon/files/patch-configure b/databases/kyototycoon/files/patch-configure index 2ac536c3a2ea..ad1c1a719508 100644 --- a/databases/kyototycoon/files/patch-configure +++ b/databases/kyototycoon/files/patch-configure @@ -1,6 +1,6 @@ ---- configure.orig 2020-03-19 09:12:04 UTC +--- configure.orig 2012-05-02 13:04:11 UTC +++ configure -@@ -3389,10 +3389,10 @@ fi +@@ -3389,10 +3389,10 @@ then if test "$enable_opt" != "no" then printf 'checking for CPU optimization availability... ' @@ -14,3 +14,21 @@ printf 'yes\n' else printf 'no\n' +@@ -3729,7 +3729,7 @@ else + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lstdc++ $LIBS" ++LIBS="$LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -3758,7 +3758,7 @@ _ACEOF + #define HAVE_LIBSTDC__ 1 + _ACEOF + +- LIBS="-lstdc++ $LIBS" ++ LIBS="$LIBS" + + fi + diff --git a/databases/kyototycoon/files/patch-doc-spex.html b/databases/kyototycoon/files/patch-doc-spex.html new file mode 100644 index 000000000000..3332e501815c --- /dev/null +++ b/databases/kyototycoon/files/patch-doc-spex.html @@ -0,0 +1,11 @@ +--- doc/spex.html.orig 2012-05-24 17:44:23 UTC ++++ doc/spex.html +@@ -160,7 +160,7 @@ + <p>Kyoto Tycoon provides API of the C++ language and it is available by programs conforming to the C++03 standard. As the header files of Kyoto Tycoon are provided as `<code>ktutil.h</code>', `<code>ktremotedb.h</code>', and so on, applications should include one or more of them accordingly to use the API. As the library is provided as `<code>libkyototycoon.a</code>' and `<code>libkyototycoon.so</code>' and they depends on underlying system libraries, linker options corresponding to them are required by the build command. The typical build command is the following.</p> + + <pre>$ g++ -I/usr/local/include example.cc -o example \ +- -L/usr/local/lib -lkyototycoon -lkyotocabinet -lz -lstdc++ \ ++ -L/usr/local/lib -lkyototycoon -lkyotocabinet -lz \ + -lresolv -lnsl -ldl -lrt -lpthread -lm -lc + </pre> + diff --git a/databases/kyototycoon/files/patch-example-Makefile b/databases/kyototycoon/files/patch-example-Makefile new file mode 100644 index 000000000000..ae9276e598c2 --- /dev/null +++ b/databases/kyototycoon/files/patch-example-Makefile @@ -0,0 +1,11 @@ +--- example/Makefile.orig 2010-10-21 15:38:49 UTC ++++ example/Makefile +@@ -19,7 +19,7 @@ LDFLAGS = + CFLAGS = -I. -I.. -Wall -ansi -pedantic -fsigned-char -O2 + CXXFLAGS = -I. -I.. -Wall -fsigned-char -O2 + LDFLAGS = +-LIBS = -L. -L.. -lkyototycoon -lkyotocabinet -lstdc++ -lz -lrt -lpthread -lm -lc ++LIBS = -L. -L.. -lkyototycoon -lkyotocabinet -lz -lrt -lpthread -lm -lc + LDENV = LD_RUN_PATH=/lib:/usr/lib:$(HOME)/lib:/usr/local/lib:.:.. + RUNENV = LD_LIBRARY_PATH=/lib:/usr/lib:$(HOME)/lib:/usr/local/lib:.:.. + diff --git a/databases/lua-xapian/Makefile b/databases/lua-xapian/Makefile index f2db164c1c33..9b3e03500316 100644 --- a/databases/lua-xapian/Makefile +++ b/databases/lua-xapian/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian -PORTVERSION= 1.4.28 +PORTVERSION= 1.4.29 DISTVERSIONPREFIX= bindings- CATEGORIES= databases MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ diff --git a/databases/lua-xapian/distinfo b/databases/lua-xapian/distinfo index 1827bcf20eef..af5c4151c1fd 100644 --- a/databases/lua-xapian/distinfo +++ b/databases/lua-xapian/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177928 -SHA256 (xapian-bindings-1.4.28.tar.xz) = 6340981c5b05cf8b4e1b2c0a117c83defbf1007577cf4d9c5ffcaa193255d761 -SIZE (xapian-bindings-1.4.28.tar.xz) = 1121172 +TIMESTAMP = 1745936060 +SHA256 (xapian-bindings-1.4.29.tar.xz) = 1740e927bb6850ef67d99a0b808a1b7c9af3f16c15577e0261bbd3fc016fc8ce +SIZE (xapian-bindings-1.4.29.tar.xz) = 1121212 diff --git a/databases/mongodb70/Makefile b/databases/mongodb70/Makefile index b91c6b368457..27b11b7c096c 100644 --- a/databases/mongodb70/Makefile +++ b/databases/mongodb70/Makefile @@ -1,13 +1,8 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r -DISTVERSION= 7.0.19 -PORTREVISION= 1 +DISTVERSION= 7.0.20 CATEGORIES= databases net -MASTER_SITES= https://hg.mozilla.org/mozilla-central/raw-rev/:patches PKGNAMESUFFIX= ${DISTVERSION:R:S/.//} -DISTFILES= 223087fdc29f18678f6174e9807b8780e439acf6:patches # https://bugzilla.mozilla.org/1894423 -EXTRACT_ONLY= ${GH_ACCOUNT}-${GH_PROJECT}-${DISTVERSIONPREFIX}${DISTVERSION}_GH0.tar.gz \ - ${GH_ACCOUNT}-forks-spidermonkey-${MOZJS_TAG}_GH0.tar.gz MAINTAINER= ronald@FreeBSD.org COMMENT= MongoDB Community Edition (7.0.x Branch) @@ -27,7 +22,8 @@ BUILD_DEPENDS= ${PY_SETUPTOOLS} \ ${PYTHON_PKGNAMEPREFIX}packaging>0:devel/py-packaging@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pymongo>0:databases/py-pymongo@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyyaml>=3.11:devel/py-pyyaml@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pyyaml>=3.11:devel/py-pyyaml@${PY_FLAVOR} \ + rust-cbindgen>0:devel/rust-cbindgen # build depends used while running ${WRKSRC}/src/third_party/mozjs/gen-config.sh BUILD_DEPENDS+= gm4:devel/m4 \ gsed:textproc/gsed @@ -39,14 +35,16 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libzstd.so:archivers/zstd FLAVORS= default armv80a + armv80a_PKGNAMESUFFIX= ${DISTVERSION:R:S/.//}-armv80a USES= compiler:c++20-lang cpe python:build scons shebangfix ssl # gmake is used while running ${WRKSRC}/src/third_party/mozjs/gen-config.sh USES+= gmake pkgconfig +CPE_PRODUCT= mongodb # mozjs tag comes from ${WRKSRC}/src/third_party/mozjs/get-sources.sh -MOZJS_TAG= 4c197344dfc48dfbbd242333878f17f0379e6205 +MOZJS_TAG= ee5eabe03bfae1cba9d97eb380fbc9408707b9ee USE_GITHUB= yes GH_ACCOUNT= mongodb mongodb-forks:mozjs @@ -57,7 +55,12 @@ USE_RC_SUBR= mongod SHEBANG_FILES= buildscripts/scons.py python_OLD_CMD= @python_interpreter@ -CONFIGURE_ENV+= M4=${LOCALBASE}/bin/gm4 +HAS_CONFIGURE= yes +CONFIGURE_SCRIPT= gen-config.sh +CONFIGURE_ARGS+= ${MOZJS_ARCH} \ + freebsd +CONFIGURE_ENV+= PYTHON3="${PYTHON_CMD}" + MAKE_ARGS= --allocator=system \ --cxx-std=20 \ --disable-warnings-as-errors \ @@ -74,6 +77,7 @@ MAKE_ARGS= --allocator=system \ AR=llvm-ar \ MONGO_VERSION=${DISTVERSION} \ VERBOSE=on +ALL_TARGET= install-core CFLAGS+= -DBOOST_NO_CXX98_FUNCTION_BASE @@ -87,15 +91,18 @@ EXTRACT_AFTER_ARGS= --exclude src/third_party/snappy-* \ --exclude src/third_party/zstandard \ --no-same-owner --no-same-permissions +# This ports is only following the Major Release. +# https://docs.mongodb.com/manual/reference/versioning/ +PORTSCOUT= limit:^7\.0\. + +CONFIGURE_WRKSRC= ${MOZJS_WRKSRC} + USERS= mongodb GROUPS= mongodb OPTIONS_DEFINE= LTO NOAVX SASL OPTIONS_DEFINE_aarch64= ARMV80A OPTIONS_DEFAULT= NOAVX SASL -.if ${FLAVOR:U} == armv80a -OPTIONS_SET+= ARMV80A -.endif # MongoDB on non-LSE ARM cpu like Raspberry Pi can work but is unsupported upstream. # Can give corruption on high concurrency. @@ -114,20 +121,18 @@ NOAVX_EXTRA_PATCHES= ${FILESDIR}/extrapatch-src_third__party_mozjs_SConscript \ SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SASL_MAKE_ARGS= --use-sasl-client +MOZJS_WRKSRC= ${WRKSRC}/src/third_party/mozjs + +.if ${FLAVOR:U} == armv80a +OPTIONS_SET+= ARMV80A +.endif + .include <bsd.port.pre.mk> .if ${FLAVOR:U} == armv80a && ${ARCH} != aarch64 IGNORE= flavor armv80a is only valid on aarch64 .endif -ALL_TARGET= install-core - -# This ports is only following the Major Release. -# https://docs.mongodb.com/manual/reference/versioning/ -PORTSCOUT= limit:^7\.0\. - -CPE_PRODUCT= mongodb - .if ${ARCH} == amd64 MOZJS_ARCH= x86_64 .elif ${ARCH} == powerpc64le @@ -138,7 +143,7 @@ MOZJS_ARCH= ${ARCH} post-extract: # Verify we downloaded the proper mozjs git tag. - ${SH} -xc "test \"X`grep -E '^LIB_GIT_REVISION=' ${WRKSRC}/src/third_party/mozjs/get-sources.sh`\" = \"XLIB_GIT_REVISION=${MOZJS_TAG}\"" + ${SH} -xc "test \"X`grep -E '^LIB_GIT_REVISION=' ${MOZJS_WRKSRC}/get-sources.sh`\" = \"XLIB_GIT_REVISION=${MOZJS_TAG}\"" post-patch: # fix build with python-3.11 @@ -146,12 +151,10 @@ post-patch: ${REINPLACE_CMD} -e 's#rU#r#g' ${WRKDIR}/spidermonkey-${MOZJS_TAG}/python/mozbuild/mozbuild/preprocessor.py ${REINPLACE_CMD} -e 's#rU#r#g' ${WRKDIR}/spidermonkey-${MOZJS_TAG}/python/mozbuild/mozbuild/backend/base.py ${REINPLACE_CMD} -e 's#rU#r#g' ${WRKDIR}/spidermonkey-${MOZJS_TAG}/python/mozbuild/mozbuild/action/process_define_files.py - ${PATCH} -d ${WRKSRC}/src/third_party/mozjs/extract --quiet -p1 -V none < ${DISTDIR}/223087fdc29f18678f6174e9807b8780e439acf6 -do-configure: +pre-configure: # Replacement of ${WRKSRC}/src/third_party/mozjs/get-sources.sh - ${LN} -sF ${WRKDIR}/spidermonkey-${MOZJS_TAG} ${WRKSRC}/src/third_party/mozjs/mozilla-release - cd ${WRKSRC}/src/third_party/mozjs && PYTHON3="${PYTHON_CMD}" ${SH} ./gen-config.sh ${MOZJS_ARCH} freebsd + ${LN} -sF ${WRKDIR}/spidermonkey-${MOZJS_TAG} ${MOZJS_WRKSRC}/mozilla-release do-build: ${WRKSRC}/buildscripts/scons.py -C ${WRKSRC} ${MAKE_ARGS} diff --git a/databases/mongodb70/distinfo b/databases/mongodb70/distinfo index 708ec6ec0ead..600357fd9541 100644 --- a/databases/mongodb70/distinfo +++ b/databases/mongodb70/distinfo @@ -1,7 +1,5 @@ -TIMESTAMP = 1745704517 -SHA256 (223087fdc29f18678f6174e9807b8780e439acf6) = f234371584e2b2bc9953ae4fd145da19c99a6f04087f53d59616aecf29df039c -SIZE (223087fdc29f18678f6174e9807b8780e439acf6) = 1597 -SHA256 (mongodb-mongo-r7.0.19_GH0.tar.gz) = 552358bf46936f2ebe53b414d8e15b9932baf38a191ef2d50eef5dabba663396 -SIZE (mongodb-mongo-r7.0.19_GH0.tar.gz) = 87222348 -SHA256 (mongodb-forks-spidermonkey-4c197344dfc48dfbbd242333878f17f0379e6205_GH0.tar.gz) = 25ddc30c800d44231798793f788765e0ae8060b9f9f2f09d7f23955b2f63f034 -SIZE (mongodb-forks-spidermonkey-4c197344dfc48dfbbd242333878f17f0379e6205_GH0.tar.gz) = 164661704 +TIMESTAMP = 1747294177 +SHA256 (mongodb-mongo-r7.0.20_GH0.tar.gz) = 5946b2ec223f156b1eb67226d074f14a6f218d0a43920c266bafc431b936e124 +SIZE (mongodb-mongo-r7.0.20_GH0.tar.gz) = 88002907 +SHA256 (mongodb-forks-spidermonkey-ee5eabe03bfae1cba9d97eb380fbc9408707b9ee_GH0.tar.gz) = ff2f5ed45ae507d64022e3af17d11dc984b66f9b99931d8da34ce92fe5b6d816 +SIZE (mongodb-forks-spidermonkey-ee5eabe03bfae1cba9d97eb380fbc9408707b9ee_GH0.tar.gz) = 280291333 diff --git a/databases/mongodb70/files/patch-SConstruct b/databases/mongodb70/files/patch-SConstruct index 4ccd299adcaf..ec60029c937c 100644 --- a/databases/mongodb70/files/patch-SConstruct +++ b/databases/mongodb70/files/patch-SConstruct @@ -1,4 +1,4 @@ ---- SConstruct.orig 2024-06-19 03:26:19 UTC +--- SConstruct.orig 2025-05-13 16:37:03 UTC +++ SConstruct @@ -23,7 +23,6 @@ import SCons.Script @@ -25,9 +25,7 @@ if get_option('build-metrics'): env['BUILD_METRICS_ARTIFACTS_DIR'] = '$BUILD_ROOT/$VARIANT_DIR' env.Tool('build_metrics') -@@ -1799,9 +1788,9 @@ if has_option('variables-help'): - print(env_vars.GenerateHelpText(env)) - Exit(0) +@@ -1801,7 +1790,7 @@ if unknown_vars: unknown_vars = env_vars.UnknownVariables() if unknown_vars: @@ -36,7 +34,7 @@ install_actions.setup(env, get_option('install-action')) -@@ -3024,7 +3013,7 @@ if env.TargetOSIs('posix'): +@@ -3013,7 +3002,7 @@ if env.TargetOSIs('posix'): # If runtime hardening is requested, then build anything # destined for an executable with the necessary flags for PIE. env.AppendUnique( @@ -45,7 +43,7 @@ PROGLINKFLAGS=['-pie'], ) -@@ -3032,7 +3021,6 @@ if env.TargetOSIs('posix'): +@@ -3021,7 +3010,6 @@ if env.TargetOSIs('posix'): env.Append( CCFLAGS=[ "-fasynchronous-unwind-tables", diff --git a/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh b/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh index 58daab4bc056..4260904915e4 100644 --- a/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh +++ b/databases/mongodb70/files/patch-src_third__party_mozjs_gen-config.sh @@ -1,5 +1,11 @@ ---- src/third_party/mozjs/gen-config.sh.orig 2022-08-05 16:21:29 UTC +--- src/third_party/mozjs/gen-config.sh.orig 2025-05-13 16:37:03 UTC +++ src/third_party/mozjs/gen-config.sh +@@ -1,4 +1,4 @@ +-#!/bin/bash ++#!/bin/sh + + set -e + set -v @@ -29,6 +29,9 @@ case "$_Path" in } @@ -10,16 +16,16 @@ "platform/aarch64/linux") _CONFIG_OPTS="--host=aarch64-linux" ;; -@@ -108,7 +111,7 @@ CFLAGS="$CFLAGS -D__STDC_FORMAT_MACROS" \ - --disable-js-shell \ - --disable-tests "$_CONFIG_OPTS" +@@ -111,7 +114,7 @@ CFLAGS="$CFLAGS -D__STDC_FORMAT_MACROS" \ + --disable-wasm-moz-intgemm \ + "$_CONFIG_OPTS" -make recurse_export +gmake recurse_export cd ../../../.. -@@ -159,7 +162,7 @@ find "$_Path/build" -name '*.cpp' | +@@ -166,7 +169,7 @@ find "$_Path/build" -name '*.cpp' | find "$_Path/build" -name '*.cpp' | while read unified_file ; do echo "Processing $unified_file" diff --git a/databases/mydumper/Makefile b/databases/mydumper/Makefile index afb8f0ee6964..901532068e79 100644 --- a/databases/mydumper/Makefile +++ b/databases/mydumper/Makefile @@ -1,6 +1,6 @@ PORTNAME= mydumper DISTVERSIONPREFIX= v -DISTVERSION= 0.19.1-1 +DISTVERSION= 0.19.1-3 CATEGORIES= databases MAINTAINER= sunpoet@FreeBSD.org diff --git a/databases/mydumper/distinfo b/databases/mydumper/distinfo index a154bafc48d7..f4b3a5c8b26c 100644 --- a/databases/mydumper/distinfo +++ b/databases/mydumper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177892 -SHA256 (mydumper-mydumper-v0.19.1-1_GH0.tar.gz) = 5431a91befdb767f7620242da45673f699164f7590599b091f023f394802899c -SIZE (mydumper-mydumper-v0.19.1-1_GH0.tar.gz) = 245162 +TIMESTAMP = 1745936014 +SHA256 (mydumper-mydumper-v0.19.1-3_GH0.tar.gz) = e7feab21b8073a5a7809cf7cc56a08ae0f93313dfe3f6f1fe5c96eec12f09f9d +SIZE (mydumper-mydumper-v0.19.1-3_GH0.tar.gz) = 246128 diff --git a/databases/p5-Search-Xapian/Makefile b/databases/p5-Search-Xapian/Makefile index 32b473ee1c5a..b179842a8d64 100644 --- a/databases/p5-Search-Xapian/Makefile +++ b/databases/p5-Search-Xapian/Makefile @@ -1,5 +1,6 @@ PORTNAME= Search-Xapian PORTVERSION= 1.2.25.5 +PORTREVISION= 1 CATEGORIES= databases perl5 MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION:R}/ \ LOCAL/sunpoet \ diff --git a/databases/p5-Xapian/Makefile b/databases/p5-Xapian/Makefile index 7c8a1f656c26..2edab8543671 100644 --- a/databases/p5-Xapian/Makefile +++ b/databases/p5-Xapian/Makefile @@ -1,5 +1,5 @@ PORTNAME= Xapian -PORTVERSION= 1.4.28.0 +PORTVERSION= 1.4.29.0 CATEGORIES= databases perl5 MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION:R}/ \ LOCAL/sunpoet diff --git a/databases/p5-Xapian/distinfo b/databases/p5-Xapian/distinfo index 4f11c170438a..338a619aa555 100644 --- a/databases/p5-Xapian/distinfo +++ b/databases/p5-Xapian/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177926 -SHA256 (xapian-bindings-1.4.28.tar.xz) = 6340981c5b05cf8b4e1b2c0a117c83defbf1007577cf4d9c5ffcaa193255d761 -SIZE (xapian-bindings-1.4.28.tar.xz) = 1121172 +TIMESTAMP = 1745936058 +SHA256 (xapian-bindings-1.4.29.tar.xz) = 1740e927bb6850ef67d99a0b808a1b7c9af3f16c15577e0261bbd3fc016fc8ce +SIZE (xapian-bindings-1.4.29.tar.xz) = 1121212 diff --git a/databases/php-xapian/Makefile b/databases/php-xapian/Makefile index f8f7d4c168e1..707289aa6547 100644 --- a/databases/php-xapian/Makefile +++ b/databases/php-xapian/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian -PORTVERSION= 1.4.28 +PORTVERSION= 1.4.29 DISTVERSIONPREFIX= bindings- CATEGORIES= databases MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ diff --git a/databases/php-xapian/distinfo b/databases/php-xapian/distinfo index 1097ae0ae5f1..e55c319e40eb 100644 --- a/databases/php-xapian/distinfo +++ b/databases/php-xapian/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177930 -SHA256 (xapian-bindings-1.4.28.tar.xz) = 6340981c5b05cf8b4e1b2c0a117c83defbf1007577cf4d9c5ffcaa193255d761 -SIZE (xapian-bindings-1.4.28.tar.xz) = 1121172 +TIMESTAMP = 1745936062 +SHA256 (xapian-bindings-1.4.29.tar.xz) = 1740e927bb6850ef67d99a0b808a1b7c9af3f16c15577e0261bbd3fc016fc8ce +SIZE (xapian-bindings-1.4.29.tar.xz) = 1121212 diff --git a/databases/plpgsql_check/Makefile b/databases/plpgsql_check/Makefile index 0a325b31fb88..68a4719aa8d9 100644 --- a/databases/plpgsql_check/Makefile +++ b/databases/plpgsql_check/Makefile @@ -1,5 +1,5 @@ PORTNAME= plpgsql_check -PORTVERSION= 2.8.0 +PORTVERSION= 2.8.1 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER_NODOT}- diff --git a/databases/plpgsql_check/distinfo b/databases/plpgsql_check/distinfo index 0163b0614655..40dbad4ab352 100644 --- a/databases/plpgsql_check/distinfo +++ b/databases/plpgsql_check/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742405440 -SHA256 (okbob-plpgsql_check-v2.8.0_GH0.tar.gz) = 46a69c4d8b68e9ee0ef19fc5ee407c0b5f2388e579398f4fc129df345057f47c -SIZE (okbob-plpgsql_check-v2.8.0_GH0.tar.gz) = 258155 +TIMESTAMP = 1745936016 +SHA256 (okbob-plpgsql_check-v2.8.1_GH0.tar.gz) = 868cc064b4e66cb33b3c14e4409f699dab9a4055504cfa951cf8c1b24892ef34 +SIZE (okbob-plpgsql_check-v2.8.1_GH0.tar.gz) = 258371 diff --git a/databases/py-pgspecial/Makefile b/databases/py-pgspecial/Makefile index e6942566a316..986ac31aa8b9 100644 --- a/databases/py-pgspecial/Makefile +++ b/databases/py-pgspecial/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgspecial -PORTVERSION= 2.1.3 +PORTVERSION= 2.2.1 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,8 @@ WWW= https://github.com/dbcli/pgspecial LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/License.txt -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=61.0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=8:devel/py-setuptools-scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=4.1:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psycopg>=3.0.10:databases/py-psycopg@${PY_FLAVOR} \ diff --git a/databases/py-pgspecial/distinfo b/databases/py-pgspecial/distinfo index 82e03c6b1861..7edbad360f17 100644 --- a/databases/py-pgspecial/distinfo +++ b/databases/py-pgspecial/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1734888138 -SHA256 (pgspecial-2.1.3.tar.gz) = 6d4d2316aff7d47954db99d4c391d6c0bb26568ebcb9d151f65dab7938b6cbe2 -SIZE (pgspecial-2.1.3.tar.gz) = 51204 +TIMESTAMP = 1745936108 +SHA256 (pgspecial-2.2.1.tar.gz) = da6c7fcc7bef7bb0132dc2046f74ec6513b1fe6f0c80e5528d630d14b7c4849d +SIZE (pgspecial-2.2.1.tar.gz) = 50389 diff --git a/databases/py-pgspecial/files/patch-pyproject.toml b/databases/py-pgspecial/files/patch-pyproject.toml new file mode 100644 index 000000000000..b781773a6426 --- /dev/null +++ b/databases/py-pgspecial/files/patch-pyproject.toml @@ -0,0 +1,11 @@ +--- pyproject.toml.orig 2025-04-28 03:55:37 UTC ++++ pyproject.toml +@@ -22,7 +22,7 @@ dev = [ + ] + + [build-system] +-requires = ["setuptools>=64.0", "setuptools-scm>=8"] ++requires = ["setuptools>=61.0", "setuptools-scm>=8"] + build-backend = "setuptools.build_meta" + + [tool.setuptools_scm] diff --git a/databases/py-rb/Makefile b/databases/py-rb/Makefile index 1f80532ddf03..bd215fe6edcf 100644 --- a/databases/py-rb/Makefile +++ b/databases/py-rb/Makefile @@ -1,6 +1,6 @@ PORTNAME= rb PORTVERSION= 1.10.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis2>=2.6:databases/py-redis2@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>=2.6:databases/py-redis@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent pep517 diff --git a/databases/py-redis3/Makefile b/databases/py-redis3/Makefile deleted file mode 100644 index 39c5a361c510..000000000000 --- a/databases/py-redis3/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -PORTNAME= redis -PORTVERSION= 3.5.3 -PORTREVISION= 1 -CATEGORIES= databases python -MASTER_SITES= PYPI -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -PKGNAMESUFFIX= 3 - -MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Python client for Redis key-value store -WWW= https://github.com/redis/redis-py - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \ - redis-server:databases/redis - -USES= python -USE_PYTHON= autoplist concurrent pep517 pytest - -NO_ARCH= yes - -CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}redis \ - ${PYTHON_PKGNAMEPREFIX}redis2 - -PORTSCOUT= limit:^3\. - -OPTIONS_DEFINE= HIREDIS -HIREDIS_DESC= High performance response parser - -HIREDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hiredis>=0.1.3:databases/py-hiredis@${PY_FLAVOR} - -.include <bsd.port.mk> diff --git a/databases/py-redis3/distinfo b/databases/py-redis3/distinfo deleted file mode 100644 index 71e7e1348570..000000000000 --- a/databases/py-redis3/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1647264502 -SHA256 (redis-3.5.3.tar.gz) = 0e7e0cfca8660dea8b7d5cd8c4f6c5e29e11f31158c0b0ae91a397f00e5a05a2 -SIZE (redis-3.5.3.tar.gz) = 141112 diff --git a/databases/py-redis3/pkg-descr b/databases/py-redis3/pkg-descr deleted file mode 100644 index 2058c4d187a8..000000000000 --- a/databases/py-redis3/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -This is the Python interface to the Redis key-value store. diff --git a/databases/py-sqlframe/Makefile b/databases/py-sqlframe/Makefile index 05e72f364cc1..5d051923a3f6 100644 --- a/databases/py-sqlframe/Makefile +++ b/databases/py-sqlframe/Makefile @@ -1,5 +1,5 @@ PORTNAME= sqlframe -PORTVERSION= 3.29.1 +PORTVERSION= 3.31.2 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +16,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLA ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}prettytable>=0<4:devel/py-prettytable@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sqlglot>=24.0.0<26.15:databases/py-sqlglot@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlglot>=24.0.0<26.17:databases/py-sqlglot@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR} USES= python diff --git a/databases/py-sqlframe/distinfo b/databases/py-sqlframe/distinfo index f8544c1d8707..9c0c21dae550 100644 --- a/databases/py-sqlframe/distinfo +++ b/databases/py-sqlframe/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177972 -SHA256 (sqlframe-3.29.1.tar.gz) = 85d67d6376822d36ee99a0cd71c6736060f2ff8eb5a5dd7f1c19496916b0120f -SIZE (sqlframe-3.29.1.tar.gz) = 29472307 +TIMESTAMP = 1745936110 +SHA256 (sqlframe-3.31.2.tar.gz) = 6825ccb02bb46aed23208a2d4ab556115cc1a884d4a19185c19d2268dea45fae +SIZE (sqlframe-3.31.2.tar.gz) = 29475102 diff --git a/databases/py-sqlglot/Makefile b/databases/py-sqlglot/Makefile index 06f9f225494d..670575d2c889 100644 --- a/databases/py-sqlglot/Makefile +++ b/databases/py-sqlglot/Makefile @@ -1,5 +1,5 @@ PORTNAME= sqlglot -PORTVERSION= 26.14.0 +PORTVERSION= 26.16.2 CATEGORIES= databases python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-sqlglot/distinfo b/databases/py-sqlglot/distinfo index e9a91bf2f29f..ab954ba16266 100644 --- a/databases/py-sqlglot/distinfo +++ b/databases/py-sqlglot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177974 -SHA256 (sqlglot-26.14.0.tar.gz) = 7c75e28cb5c245ed3b3d995c2affcc6d5975e2ca8ec052fe132b8e5287e72c61 -SIZE (sqlglot-26.14.0.tar.gz) = 5348485 +TIMESTAMP = 1745936112 +SHA256 (sqlglot-26.16.2.tar.gz) = 81278c5dcbc4935fe233d6d492ea2e991ba6d03c6609ac49a4d2e373cfa77898 +SIZE (sqlglot-26.16.2.tar.gz) = 5352987 diff --git a/databases/py-xapian/Makefile b/databases/py-xapian/Makefile index a9b6b761d19e..0c5f3e2fa9ac 100644 --- a/databases/py-xapian/Makefile +++ b/databases/py-xapian/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian -PORTVERSION= 1.4.28 +PORTVERSION= 1.4.29 DISTVERSIONPREFIX= bindings- CATEGORIES= databases python MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ diff --git a/databases/py-xapian/distinfo b/databases/py-xapian/distinfo index 6b347cd3af14..d6c14ba420f7 100644 --- a/databases/py-xapian/distinfo +++ b/databases/py-xapian/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177932 -SHA256 (xapian-bindings-1.4.28.tar.xz) = 6340981c5b05cf8b4e1b2c0a117c83defbf1007577cf4d9c5ffcaa193255d761 -SIZE (xapian-bindings-1.4.28.tar.xz) = 1121172 +TIMESTAMP = 1745936064 +SHA256 (xapian-bindings-1.4.29.tar.xz) = 1740e927bb6850ef67d99a0b808a1b7c9af3f16c15577e0261bbd3fc016fc8ce +SIZE (xapian-bindings-1.4.29.tar.xz) = 1121212 diff --git a/databases/ruby-xapian/Makefile b/databases/ruby-xapian/Makefile index 3e5d894bd717..bccc10a5e552 100644 --- a/databases/ruby-xapian/Makefile +++ b/databases/ruby-xapian/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian -PORTVERSION= 1.4.28 +PORTVERSION= 1.4.29 DISTVERSIONPREFIX= bindings- CATEGORIES= databases ruby MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ diff --git a/databases/ruby-xapian/distinfo b/databases/ruby-xapian/distinfo index 6cb76eed1d12..df6560df8027 100644 --- a/databases/ruby-xapian/distinfo +++ b/databases/ruby-xapian/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177934 -SHA256 (xapian-bindings-1.4.28.tar.xz) = 6340981c5b05cf8b4e1b2c0a117c83defbf1007577cf4d9c5ffcaa193255d761 -SIZE (xapian-bindings-1.4.28.tar.xz) = 1121172 +TIMESTAMP = 1745936066 +SHA256 (xapian-bindings-1.4.29.tar.xz) = 1740e927bb6850ef67d99a0b808a1b7c9af3f16c15577e0261bbd3fc016fc8ce +SIZE (xapian-bindings-1.4.29.tar.xz) = 1121212 diff --git a/databases/rubygem-solid_queue-rails72/Makefile b/databases/rubygem-solid_queue-rails72/Makefile index bd56b875bbbc..d705e9616033 100644 --- a/databases/rubygem-solid_queue-rails72/Makefile +++ b/databases/rubygem-solid_queue-rails72/Makefile @@ -1,5 +1,5 @@ PORTNAME= solid_queue -PORTVERSION= 1.1.4 +PORTVERSION= 1.1.5 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails72 diff --git a/databases/rubygem-solid_queue-rails72/distinfo b/databases/rubygem-solid_queue-rails72/distinfo index a4b5399264d0..65f580997e2b 100644 --- a/databases/rubygem-solid_queue-rails72/distinfo +++ b/databases/rubygem-solid_queue-rails72/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742405518 -SHA256 (rubygem/solid_queue-1.1.4.gem) = 7b5b3395ec7ca8c131c71df9082e919ab7b5332684f6f686206f321d1c6b9f90 -SIZE (rubygem/solid_queue-1.1.4.gem) = 43520 +TIMESTAMP = 1745936244 +SHA256 (rubygem/solid_queue-1.1.5.gem) = bae0c9d76310f4953ebc57466f2e8c78703a0fbf4b89d25756c23c88f9b6df9b +SIZE (rubygem/solid_queue-1.1.5.gem) = 43008 diff --git a/databases/rubygem-solid_queue/Makefile b/databases/rubygem-solid_queue/Makefile index e8916255c2d7..f8de1726629a 100644 --- a/databases/rubygem-solid_queue/Makefile +++ b/databases/rubygem-solid_queue/Makefile @@ -1,5 +1,5 @@ PORTNAME= solid_queue -PORTVERSION= 1.1.4 +PORTVERSION= 1.1.5 CATEGORIES= databases rubygems MASTER_SITES= RG diff --git a/databases/rubygem-solid_queue/distinfo b/databases/rubygem-solid_queue/distinfo index 2de67835f9c3..3af490b79128 100644 --- a/databases/rubygem-solid_queue/distinfo +++ b/databases/rubygem-solid_queue/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742405516 -SHA256 (rubygem/solid_queue-1.1.4.gem) = 7b5b3395ec7ca8c131c71df9082e919ab7b5332684f6f686206f321d1c6b9f90 -SIZE (rubygem/solid_queue-1.1.4.gem) = 43520 +TIMESTAMP = 1745936242 +SHA256 (rubygem/solid_queue-1.1.5.gem) = bae0c9d76310f4953ebc57466f2e8c78703a0fbf4b89d25756c23c88f9b6df9b +SIZE (rubygem/solid_queue-1.1.5.gem) = 43008 diff --git a/databases/xapian-bindings/Makefile b/databases/xapian-bindings/Makefile index 18d6d4e31460..cf39281c3419 100644 --- a/databases/xapian-bindings/Makefile +++ b/databases/xapian-bindings/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian-bindings -PORTVERSION= 1.4.28 +PORTVERSION= 1.4.29 CATEGORIES= databases MAINTAINER= sunpoet@FreeBSD.org diff --git a/databases/xapian-core/Makefile b/databases/xapian-core/Makefile index f348a2e05cb8..c950acc088ad 100644 --- a/databases/xapian-core/Makefile +++ b/databases/xapian-core/Makefile @@ -1,5 +1,5 @@ PORTNAME= xapian-core -PORTVERSION= 1.4.28 +PORTVERSION= 1.4.29 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ diff --git a/databases/xapian-core/distinfo b/databases/xapian-core/distinfo index ae12da82e21f..9b926e2269e3 100644 --- a/databases/xapian-core/distinfo +++ b/databases/xapian-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1745177924 -SHA256 (xapian-core-1.4.28.tar.xz) = 3d0976e142217c1baba48bf89b405e674422e7e4448ae5016f67fe0dd49daa07 -SIZE (xapian-core-1.4.28.tar.xz) = 3250732 +TIMESTAMP = 1745936056 +SHA256 (xapian-core-1.4.29.tar.xz) = c55c9bc8613ad3ec2c218eafca088c218ab7cddcba7ef08f3af0e542f4e521bc +SIZE (xapian-core-1.4.29.tar.xz) = 3250704 diff --git a/databases/xapian-core/pkg-plist b/databases/xapian-core/pkg-plist index d36b34591856..26b37429aa33 100644 --- a/databases/xapian-core/pkg-plist +++ b/databases/xapian-core/pkg-plist @@ -54,8 +54,8 @@ include/xapian/weight.h lib/cmake/xapian/xapian-config-version.cmake lib/cmake/xapian/xapian-config.cmake lib/libxapian.so -lib/libxapian.so.29 -lib/libxapian.so.29.14.0 +lib/libxapian.so.30 +lib/libxapian.so.30.14.1 libdata/pkgconfig/xapian-core.pc share/aclocal/xapian.m4 %%PORTDOCS%%%%DOCSDIR%%/admin_notes.html |