diff options
64 files changed, 518 insertions, 385 deletions
diff --git a/databases/mongodb80/Makefile b/databases/mongodb80/Makefile index d5092f9dc9ff..88b5017d5905 100644 --- a/databases/mongodb80/Makefile +++ b/databases/mongodb80/Makefile @@ -1,13 +1,8 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r -DISTVERSION= 8.0.8 -PORTREVISION= 1 +DISTVERSION= 8.0.9 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 (8.0.x Branch) @@ -32,7 +27,8 @@ BUILD_DEPENDS= ${PY_SETUPTOOLS} \ ${PYTHON_PKGNAMEPREFIX}pyyaml>=3.11:devel/py-pyyaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}retry2>0:devel/py-retry2@${PY_FLAVOR} \ - git:devel/git@tiny + git:devel/git@tiny \ + 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 @@ -44,14 +40,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 @@ -62,7 +60,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 \ @@ -79,6 +82,7 @@ MAKE_ARGS= --allocator=system \ AR=llvm-ar \ MONGO_VERSION=${DISTVERSION} \ VERBOSE=on +ALL_TARGET= install-servers CFLAGS+= -DBOOST_NO_CXX98_FUNCTION_BASE @@ -92,15 +96,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:^8\.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. @@ -119,20 +126,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-servers - -# 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 @@ -143,15 +148,11 @@ 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}\"" - -post-patch: - ${PATCH} -d ${WRKSRC}/src/third_party/mozjs/extract --quiet -p1 -V none < ${DISTDIR}/223087fdc29f18678f6174e9807b8780e439acf6 + ${SH} -xc "test \"X`grep -E '^LIB_GIT_REVISION=' ${MOZJS_WRKSRC}/get-sources.sh`\" = \"XLIB_GIT_REVISION=${MOZJS_TAG}\"" -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/mongodb80/distinfo b/databases/mongodb80/distinfo index c74232ebd757..ed1014a17d4e 100644 --- a/databases/mongodb80/distinfo +++ b/databases/mongodb80/distinfo @@ -1,7 +1,5 @@ -TIMESTAMP = 1745839944 -SHA256 (223087fdc29f18678f6174e9807b8780e439acf6) = f234371584e2b2bc9953ae4fd145da19c99a6f04087f53d59616aecf29df039c -SIZE (223087fdc29f18678f6174e9807b8780e439acf6) = 1597 -SHA256 (mongodb-mongo-r8.0.8_GH0.tar.gz) = 325e6a8ccac80769f6b1527c8e174794ac10a008de37bc0b491c1fd183f9b80d -SIZE (mongodb-mongo-r8.0.8_GH0.tar.gz) = 94643838 -SHA256 (mongodb-forks-spidermonkey-4c197344dfc48dfbbd242333878f17f0379e6205_GH0.tar.gz) = 25ddc30c800d44231798793f788765e0ae8060b9f9f2f09d7f23955b2f63f034 -SIZE (mongodb-forks-spidermonkey-4c197344dfc48dfbbd242333878f17f0379e6205_GH0.tar.gz) = 164661704 +TIMESTAMP = 1747478715 +SHA256 (mongodb-mongo-r8.0.9_GH0.tar.gz) = e91b309ea620ff26862fefad73bd2fc61695c6546f9c153297cee03d22997974 +SIZE (mongodb-mongo-r8.0.9_GH0.tar.gz) = 95427540 +SHA256 (mongodb-forks-spidermonkey-ee5eabe03bfae1cba9d97eb380fbc9408707b9ee_GH0.tar.gz) = ff2f5ed45ae507d64022e3af17d11dc984b66f9b99931d8da34ce92fe5b6d816 +SIZE (mongodb-forks-spidermonkey-ee5eabe03bfae1cba9d97eb380fbc9408707b9ee_GH0.tar.gz) = 280291333 diff --git a/databases/mongodb80/files/patch-src_third__party_mozjs_gen-config.sh b/databases/mongodb80/files/patch-src_third__party_mozjs_gen-config.sh index e05c48c9f8f7..2e515c03f964 100644 --- a/databases/mongodb80/files/patch-src_third__party_mozjs_gen-config.sh +++ b/databases/mongodb80/files/patch-src_third__party_mozjs_gen-config.sh @@ -1,5 +1,11 @@ ---- src/third_party/mozjs/gen-config.sh.orig 2024-07-22 19:17:33 UTC +--- src/third_party/mozjs/gen-config.sh.orig 2025-05-13 17:12:47 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" ;; -@@ -109,7 +112,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 ../../../.. -@@ -164,7 +167,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/pgpool-II-43/Makefile b/databases/pgpool-II-43/Makefile index aaf0c0487c49..03aabba7997c 100644 --- a/databases/pgpool-II-43/Makefile +++ b/databases/pgpool-II-43/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgpool-II -DISTVERSION= 4.3.14 +DISTVERSION= 4.3.15 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= -43 diff --git a/databases/pgpool-II-43/distinfo b/databases/pgpool-II-43/distinfo index 6368944e662a..48ecf622aad7 100644 --- a/databases/pgpool-II-43/distinfo +++ b/databases/pgpool-II-43/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1741070774 -SHA256 (pgpool-II-4.3.14.tar.gz) = 641b26a6060cb9d6f8fa5a5125bd4cf1d9e27bff9e4dc9d40a3f0c295e1d0fee -SIZE (pgpool-II-4.3.14.tar.gz) = 5014610 +TIMESTAMP = 1747321582 +SHA256 (pgpool-II-4.3.15.tar.gz) = 4e20e1c7b86355008f48c8fd643698312b13bbc7973ad607988aad16fda9eb48 +SIZE (pgpool-II-4.3.15.tar.gz) = 5126489 diff --git a/databases/pgpool-II-44/Makefile b/databases/pgpool-II-44/Makefile index 7a4a6b68b20d..ac2fe9c2b510 100644 --- a/databases/pgpool-II-44/Makefile +++ b/databases/pgpool-II-44/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgpool-II -DISTVERSION= 4.4.11 +DISTVERSION= 4.4.12 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= -44 diff --git a/databases/pgpool-II-44/distinfo b/databases/pgpool-II-44/distinfo index 478acc225fee..5531009a876e 100644 --- a/databases/pgpool-II-44/distinfo +++ b/databases/pgpool-II-44/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1741070935 -SHA256 (pgpool-II-4.4.11.tar.gz) = 7a46a7dc78a37185bff94b253aeb45ebe387f38e173551ecc5451aa8c3571bea -SIZE (pgpool-II-4.4.11.tar.gz) = 5126252 +TIMESTAMP = 1747591099 +SHA256 (pgpool-II-4.4.12.tar.gz) = 39d964df36d69fb943a8eb46038f685c8bb0428900d34d7189b0db6b28bde5a8 +SIZE (pgpool-II-4.4.12.tar.gz) = 5197601 diff --git a/databases/pgpool-II-45/Makefile b/databases/pgpool-II-45/Makefile index dfe0e5d67131..9091600770d5 100644 --- a/databases/pgpool-II-45/Makefile +++ b/databases/pgpool-II-45/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgpool-II -DISTVERSION= 4.5.6 +DISTVERSION= 4.5.7 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= -45 diff --git a/databases/pgpool-II-45/distinfo b/databases/pgpool-II-45/distinfo index cb22bc8bd1ea..70d7d98cb433 100644 --- a/databases/pgpool-II-45/distinfo +++ b/databases/pgpool-II-45/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1741071006 -SHA256 (pgpool-II-4.5.6.tar.gz) = 23af1f4c4fdc29ca1f2dd642c1541af578f6fbf699337869e7649a4f52bd756d -SIZE (pgpool-II-4.5.6.tar.gz) = 5311237 +TIMESTAMP = 1747591571 +SHA256 (pgpool-II-4.5.7.tar.gz) = 8c25f9e7cf803e3bc800e7589a5af265685b2ea13bc19663dda3b01c781dc58e +SIZE (pgpool-II-4.5.7.tar.gz) = 5456994 diff --git a/databases/pgpool-II-46/Makefile b/databases/pgpool-II-46/Makefile index 590d4fa53e76..13df38beb68c 100644 --- a/databases/pgpool-II-46/Makefile +++ b/databases/pgpool-II-46/Makefile @@ -1,5 +1,5 @@ PORTNAME= pgpool-II -DISTVERSION= 4.6.0 +DISTVERSION= 4.6.1 CATEGORIES= databases MASTER_SITES= http://www.pgpool.net/mediawiki/images/ PKGNAMESUFFIX= -46 diff --git a/databases/pgpool-II-46/distinfo b/databases/pgpool-II-46/distinfo index 8045a142ef57..573ee3c66d85 100644 --- a/databases/pgpool-II-46/distinfo +++ b/databases/pgpool-II-46/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1741071089 -SHA256 (pgpool-II-4.6.0.tar.gz) = f68a6571442d7ea53b69f39d749ad457790b00180e19b019fc82e235bab07321 -SIZE (pgpool-II-4.6.0.tar.gz) = 5396128 +TIMESTAMP = 1747591668 +SHA256 (pgpool-II-4.6.1.tar.gz) = 0f8805d93bc40002c8019dc40ae03a71a3d144bd39f3dffe6fa01f7fc19bb8e8 +SIZE (pgpool-II-4.6.1.tar.gz) = 5549482 diff --git a/databases/pspg/Makefile b/databases/pspg/Makefile index 3816690fa7cd..33a1ed7559c2 100644 --- a/databases/pspg/Makefile +++ b/databases/pspg/Makefile @@ -1,5 +1,5 @@ PORTNAME= pspg -DISTVERSION= 5.8.10 +DISTVERSION= 5.8.11 CATEGORIES= databases MAINTAINER= bofh@FreeBSD.org diff --git a/databases/pspg/distinfo b/databases/pspg/distinfo index b475c917d275..6f2043740bb0 100644 --- a/databases/pspg/distinfo +++ b/databases/pspg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747216936 -SHA256 (okbob-pspg-5.8.10_GH0.tar.gz) = 806d6b3c3f53144487368caff851d3373735129db68908b9eb45efa58e3d0a8e -SIZE (okbob-pspg-5.8.10_GH0.tar.gz) = 2445610 +TIMESTAMP = 1747591745 +SHA256 (okbob-pspg-5.8.11_GH0.tar.gz) = ae1122d7946c69ca17b3e2e672418957a1b3c6efa221eed62be7d5f7b5e3d0ea +SIZE (okbob-pspg-5.8.11_GH0.tar.gz) = 2446197 diff --git a/devel/cirrus-cli/Makefile b/devel/cirrus-cli/Makefile index 8db5f3d20a07..d1a9883bd0a7 100644 --- a/devel/cirrus-cli/Makefile +++ b/devel/cirrus-cli/Makefile @@ -1,6 +1,6 @@ PORTNAME= cirrus-cli DISTVERSIONPREFIX= v -DISTVERSION= 0.131.2 +DISTVERSION= 0.132.0 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org diff --git a/devel/cirrus-cli/distinfo b/devel/cirrus-cli/distinfo index a026f8b1d0e5..5ee845eb84bf 100644 --- a/devel/cirrus-cli/distinfo +++ b/devel/cirrus-cli/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1747217072 -SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.131.2/v0.131.2.mod) = 4c57cb388bf0476e369fbf2c9cf5cb4ad0485ab9c6d1dfc029c9f54c49acc0c2 -SIZE (go/devel_cirrus-cli/cirrus-cli-v0.131.2/v0.131.2.mod) = 10858 -SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.131.2/v0.131.2.zip) = 058f4bef8dbcda9bb71648690ca6400715b44ef178954af49a6d96d8f2b644a5 -SIZE (go/devel_cirrus-cli/cirrus-cli-v0.131.2/v0.131.2.zip) = 1315773 +TIMESTAMP = 1747591860 +SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.132.0/v0.132.0.mod) = 4176a8972f255ac76b65a3a29e4255d81717d22159da748c8aa910bdb7d598a1 +SIZE (go/devel_cirrus-cli/cirrus-cli-v0.132.0/v0.132.0.mod) = 10858 +SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.132.0/v0.132.0.zip) = ffc85b49c3ca162420b93b044894b8b3bf1740e5a07021fb65cdb669c17a19e8 +SIZE (go/devel_cirrus-cli/cirrus-cli-v0.132.0/v0.132.0.zip) = 1317411 diff --git a/devel/protoc-gen-go-grpc/Makefile b/devel/protoc-gen-go-grpc/Makefile index 1a59ba7faccd..64301aad7960 100644 --- a/devel/protoc-gen-go-grpc/Makefile +++ b/devel/protoc-gen-go-grpc/Makefile @@ -1,6 +1,6 @@ PORTNAME= protoc-gen-go-grpc DISTVERSIONPREFIX= v -DISTVERSION= 1.72.0 +DISTVERSION= 1.72.1 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org @@ -23,12 +23,8 @@ GH_TUPLE= \ open-telemetry:opentelemetry-go:v1.34.0:open_telemetry_opentelemetry_go/vendor/go.opentelemetry.io/otel \ protocolbuffers:protobuf-go:v1.36.5:protocolbuffers_protobuf_go/vendor/google.golang.org/protobuf -#GO_MODULE= google.golang.org/grpc GO_TARGET= ./cmd/protoc-gen-go-grpc PLIST_FILES= bin/protoc-gen-go-grpc -#post-patch: -# @${CP} -R ${WRKDIR}/grpc-go-${DISTVERSION}/cmd ${WRKSRC}/ - .include <bsd.port.mk> diff --git a/devel/protoc-gen-go-grpc/distinfo b/devel/protoc-gen-go-grpc/distinfo index cfb4062fbf5c..eb63a75fe7c6 100644 --- a/devel/protoc-gen-go-grpc/distinfo +++ b/devel/protoc-gen-go-grpc/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1746316897 -SHA256 (grpc-grpc-go-v1.72.0_GH0.tar.gz) = bfd9b72523f56391aa568b464775a1241f5f38fba8d7f5f1edc1f1d8cde3d2f4 -SIZE (grpc-grpc-go-v1.72.0_GH0.tar.gz) = 2410705 +TIMESTAMP = 1747592888 +SHA256 (grpc-grpc-go-v1.72.1_GH0.tar.gz) = 1b40636aaefd7afd74abd6e9796cfd7b1419a0c4d9846f0c7d5a5c0b1ae51f84 +SIZE (grpc-grpc-go-v1.72.1_GH0.tar.gz) = 2412814 SHA256 (golang-net-v0.34.0_GH0.tar.gz) = 3d5ec65e81b6f1d9530a3008f35722e9cf6d4905b20c19a7126f58aae515996c SIZE (golang-net-v0.34.0_GH0.tar.gz) = 1466242 SHA256 (golang-sys-v0.29.0_GH0.tar.gz) = 7bac3e0a686a05d0e86ca110917b45f60553d6c146dba8a4cdafb911486428e7 diff --git a/devel/py-aiortc/Makefile b/devel/py-aiortc/Makefile index 32b5b9a0bc14..63a346282e2f 100644 --- a/devel/py-aiortc/Makefile +++ b/devel/py-aiortc/Makefile @@ -1,6 +1,5 @@ PORTNAME= aiortc -DISTVERSION= 1.11.0 -PORTREVISION= 1 +DISTVERSION= 1.12.0 CATEGORIES= devel multimedia python www MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,21 +12,21 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.0.0:devel/py-cffi@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} -LIB_DEPENDS= libopus.so:audio/opus \ - libvpx.so:multimedia/libvpx + ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR} \ + ${PY_SETUPTOOLS} RUN_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}aioice>=0.9.0:devel/py-aioice@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}av>=9.0.0:multimedia/py-av@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}aioice>=0.10.1:devel/py-aioice@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}av>=14.0.0:multimedia/py-av@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}google-crc32c>=1.1:devel/py-google-crc32c@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}openssl>=23.1.0:security/py-openssl@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyee>=9.0.0:devel/py-pyee@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pylibsrtp>=0.5.6:devel/py-pylibsrtp@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}openssl>=25.0.0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyee>=13.0.0:devel/py-pyee@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pylibsrtp>=0.10.0:devel/py-pylibsrtp@${PY_FLAVOR} USES= localbase python -USE_PYTHON= autoplist concurrent cryptography distutils +USE_PYTHON= autoplist concurrent cryptography pep517 -post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/codecs/*.so +post-patch: + @${REINPLACE_CMD} -e 's|^license = "BSD-3-Clause"|license = { text = "BSD-3-Clause" }|' \ + ${WRKSRC}/pyproject.toml .include <bsd.port.mk> diff --git a/devel/py-aiortc/distinfo b/devel/py-aiortc/distinfo index 021511b546ff..94275c35a4aa 100644 --- a/devel/py-aiortc/distinfo +++ b/devel/py-aiortc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743439480 -SHA256 (aiortc-1.11.0.tar.gz) = 50b9d86f6cba87d95ce7c6b051949208b48f8062b231837aed8f049045f11a28 -SIZE (aiortc-1.11.0.tar.gz) = 1179206 +TIMESTAMP = 1747593181 +SHA256 (aiortc-1.12.0.tar.gz) = c99d89a60a473074532020329de7ee23253bac17606d85ba4aab4c6148e94b39 +SIZE (aiortc-1.12.0.tar.gz) = 1175343 diff --git a/devel/py-buildbot-pkg/Makefile b/devel/py-buildbot-pkg/Makefile index 938b9f25f450..528e21f6a274 100644 --- a/devel/py-buildbot-pkg/Makefile +++ b/devel/py-buildbot-pkg/Makefile @@ -1,5 +1,5 @@ PORTNAME= buildbot-pkg -DISTVERSION= 4.2.1 +DISTVERSION= 4.3.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-buildbot-pkg/distinfo b/devel/py-buildbot-pkg/distinfo index 4788b29f37f1..4595990f03fd 100644 --- a/devel/py-buildbot-pkg/distinfo +++ b/devel/py-buildbot-pkg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746273569 -SHA256 (buildbot_pkg-4.2.1.tar.gz) = 9687b343918c704f69264115d164b97bf9cce636cb0d49f380d7bafb1fa6f884 -SIZE (buildbot_pkg-4.2.1.tar.gz) = 5147 +TIMESTAMP = 1747219343 +SHA256 (buildbot_pkg-4.3.0.tar.gz) = 42933a779e508c0e2ed62708cfc5d23b78ba456436268d8ddbfd51786abdf57e +SIZE (buildbot_pkg-4.3.0.tar.gz) = 5132 diff --git a/devel/py-tox/Makefile b/devel/py-tox/Makefile index 7306df513a3a..5bf01f11d229 100644 --- a/devel/py-tox/Makefile +++ b/devel/py-tox/Makefile @@ -1,6 +1,5 @@ PORTNAME= tox -DISTVERSION= 4.25.0 -PORTREVISION= 1 +DISTVERSION= 4.26.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,17 +12,18 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatch-vcs>=0.4:devel/py-hatch-vcs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}hatchling>=1.21:devel/py-hatchling@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cachetools>=5.3.2:devel/py-cachetools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}hatchling>=1.27:devel/py-hatchling@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cachetools>=5.5.1:devel/py-cachetools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}chardet>=5.2:textproc/py-chardet@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.4.6:devel/py-colorama@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}filelock>=3.13.1:sysutils/py-filelock@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}packaging>=23.2:devel/py-packaging@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}platformdirs>=4.1:devel/py-platformdirs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pluggy>=1.3:devel/py-pluggy@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyproject-api>=1.6.1:devel/py-pyproject-api@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}filelock>=3.16.1:sysutils/py-filelock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>=24.2:devel/py-packaging@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}platformdirs>=4.3.6:devel/py-platformdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pluggy>=1.5:devel/py-pluggy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyproject-api>=1.8:devel/py-pyproject-api@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}virtualenv>=20.25:devel/py-virtualenv@${PY_FLAVOR} \ - ${PY_TOMLI} + ${PY_TOMLI} \ + ${PY_TYPING_EXTENSIONS} USES= python USE_PYTHON= autoplist concurrent pep517 diff --git a/devel/py-tox/distinfo b/devel/py-tox/distinfo index 10f60eb15733..a4ba3a1c1b79 100644 --- a/devel/py-tox/distinfo +++ b/devel/py-tox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743156581 -SHA256 (tox-4.25.0.tar.gz) = dd67f030317b80722cf52b246ff42aafd3ed27ddf331c415612d084304cf5e52 -SIZE (tox-4.25.0.tar.gz) = 196255 +TIMESTAMP = 1747595879 +SHA256 (tox-4.26.0.tar.gz) = a83b3b67b0159fa58e44e646505079e35a43317a62d2ae94725e0586266faeca +SIZE (tox-4.26.0.tar.gz) = 197260 diff --git a/devel/universal-ctags/Makefile b/devel/universal-ctags/Makefile index d21d930978f2..b0ce28d92bc0 100644 --- a/devel/universal-ctags/Makefile +++ b/devel/universal-ctags/Makefile @@ -1,5 +1,5 @@ PORTNAME= universal-ctags -PORTVERSION= p6.1.20250330.0 +PORTVERSION= p6.1.20250518.0 CATEGORIES= devel MAINTAINER= dereks@lifeofadishwasher.com @@ -13,9 +13,8 @@ USES= autoreconf gmake pkgconfig python:test USE_GITHUB= yes GH_PROJECT= ctags -GNU_CONFIGURE= yes -GNU_CONFIGURE_MANPREFIX= ${PREFIX}/share -CONFIGURE_ARGS= --program-prefix=u +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --program-prefix=u TEST_TARGET= check diff --git a/devel/universal-ctags/distinfo b/devel/universal-ctags/distinfo index 16e51093bbfb..b91911e14870 100644 --- a/devel/universal-ctags/distinfo +++ b/devel/universal-ctags/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743369000 -SHA256 (universal-ctags-ctags-p6.1.20250330.0_GH0.tar.gz) = 11003d66de23e91add9059da2f82ddf2193834839d00300bb676927357b4d837 -SIZE (universal-ctags-ctags-p6.1.20250330.0_GH0.tar.gz) = 3247341 +TIMESTAMP = 1747604444 +SHA256 (universal-ctags-ctags-p6.1.20250518.0_GH0.tar.gz) = 176e7f2cc0f1751831679f8731c9f54902563df5c99aa2379e218d378338c43e +SIZE (universal-ctags-ctags-p6.1.20250518.0_GH0.tar.gz) = 3271151 diff --git a/lang/julia/Makefile b/lang/julia/Makefile index a0c827ea4f5d..d9805e0935f0 100644 --- a/lang/julia/Makefile +++ b/lang/julia/Makefile @@ -1,23 +1,9 @@ PORTNAME= julia -DISTVERSION= 1.10.3 -PORTREVISION= 7 +DISTVERSION= 1.10.5 DISTVERSIONSUFFIX= -full CATEGORIES= lang math MASTER_SITES= https://github.com/JuliaLang/${PORTNAME}/releases/download/v${DISTVERSION}/ -DOCS_MASTER_SITES= https://www.unicode.org/Public/$(UNICODE_DATA_VERSION)/ucd/:unicode \ - https://jp.pkg.julialang.org/registry/${JPKGUUID}/:jpkg \ - https://github.com/JuliaBinaryWrappers/Expat_jll.jl/releases/download/Expat-v2.6.2+0/:afexpat \ - https://github.com/JuliaBinaryWrappers/Git_jll.jl/releases/download/Git-v2.44.0+2/:afgit \ - https://github.com/JuliaBinaryWrappers/Libiconv_jll.jl/releases/download/Libiconv-v1.17.0+0/:aflibiconv \ - https://github.com/JuliaBinaryWrappers/OpenSSL_jll.jl/releases/download/OpenSSL-v3.0.13+1/:afopenssl - DISTFILES= ${DISTNAME}${EXTRACT_SUFX} -DOCS_DISTFILES= UnicodeData.txt:unicode \ - Expat.v2.6.2.x86_64-unknown-freebsd.tar.gz:afexpat \ - Git.v2.44.0.x86_64-unknown-freebsd.tar.gz:afgit \ - Libiconv.v1.17.0.x86_64-unknown-freebsd.tar.gz:aflibiconv \ - OpenSSL.v3.0.13.x86_64-unknown-freebsd.tar.gz:afopenssl \ - ${JPKGSHA1}:jpkg EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= ports@FreeBSD.org @@ -27,9 +13,6 @@ WWW= https://julialang.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md -DEPRECATED= Depends on expired security/mbedtls2 -EXPIRATION_DATE=2025-06-30 - ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= Has not been ported to this platform for freebsd @@ -39,21 +22,22 @@ MY_DEPENDS= 7zz:archivers/7-zip \ BUILD_DEPENDS= patchelf:sysutils/patchelf \ cmake:devel/cmake-core \ ${MY_DEPENDS} - LIB_DEPENDS= libcurl.so:ftp/curl \ libdSFMT.so:math/dsfmt \ libgit2.so:devel/libgit2 \ libgmp.so:math/gmp \ libnghttp2.so:www/libnghttp2 \ - libmbedtls.so:security/mbedtls2 \ libmpfr.so:math/mpfr \ libopenlibm.so:math/openlibm \ libpcre2-8.so:devel/pcre2 \ libssh2.so:security/libssh2 \ - libsuitesparseconfig.so:math/suitesparse-config \ + libmbedcrypto.so:security/mbedtls3 \ + libspqr.so:math/suitesparse-spqr \ + libumfpack.so:math/suitesparse-umfpack \ libutf8proc.so:textproc/utf8proc \ libunwind.so:devel/libunwind \ - libzstd.so:archivers/zstd + libzstd.so:archivers/zstd \ + libelf.so:devel/elfutils RUN_DEPENDS= ${MY_DEPENDS} BUILD_DEPENDS_amd64= ittapi>0:devel/ittapi @@ -61,16 +45,34 @@ BUILD_DEPENDS_i386= ittapi>0:devel/ittapi # Do not set USES=fortran to avoid extra-linkage USES= blaslapack:openblas compiler:c++17-lang cpe elfctl gmake \ - perl5 python shebangfix + libedit perl5 python shebangfix _GCC_VER= ${GCC_DEFAULT:S/.//} +DOCS_DISTFILES= UnicodeData.txt:unicode \ + Expat.v2.6.2.x86_64-unknown-freebsd.tar.gz:afexpat \ + Git.v2.44.0.x86_64-unknown-freebsd.tar.gz:afgit \ + Libiconv.v1.17.0.x86_64-unknown-freebsd.tar.gz:aflibiconv \ + OpenSSL.v3.0.13.x86_64-unknown-freebsd.tar.gz:afopenssl \ + ${JPKGSHA1}:jpkg +DOCS_MASTER_SITES= https://www.unicode.org/Public/${UNICODE_DATA_VERSION}/ucd/:unicode \ + https://jp.pkg.julialang.org/registry/${JPKGUUID}/:jpkg \ + https://github.com/JuliaBinaryWrappers/Expat_jll.jl/releases/download/Expat-v2.6.2+0/:afexpat \ + https://github.com/JuliaBinaryWrappers/Git_jll.jl/releases/download/Git-v2.44.0+2/:afgit \ + https://github.com/JuliaBinaryWrappers/Libiconv_jll.jl/releases/download/Libiconv-v1.17.0+0/:aflibiconv \ + https://github.com/JuliaBinaryWrappers/OpenSSL_jll.jl/releases/download/OpenSSL-v3.0.13+1/:afopenssl + CPE_VENDOR= julialang ELF_FEATURES= +wxneeded:usr/bin/julia -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib/julia -MAKE_ARGS+= JULIA_DEBUG=Documenter VERBOSE=1 NO_GIT=1 \ +GMP_VER= 6.3.0 # Version of math/gmp +MPFR_VER= 4.2.2 # Version of math/mpfr + +MAKE_ARGS+= JULIA_DEBUG=Documenter \ + VERBOSE=1 \ + NO_GIT=1 \ USE_BINARYBUILDER=0 \ prefix=${PREFIX} \ USE_GPL_LIBS=0 \ @@ -87,7 +89,6 @@ MAKE_ARGS+= JULIA_DEBUG=Documenter VERBOSE=1 NO_GIT=1 \ USE_SYSTEM_LIBSSH2=1 \ USE_SYSTEM_LIBUNWIND=1 \ USE_SYSTEM_LLD=1 \ - USE_SYSTEM_MBEDTLS=1 \ USE_SYSTEM_MPFR=1 \ USE_SYSTEM_NGHTTP2=1 \ USE_SYSTEM_P7ZIP=1 \ @@ -126,6 +127,8 @@ DOCS_MAKE_ENV+= JULIA_PKG_OFFLINE="true" DOCS_VARS= ALL_TARGET+=docs \ INSTALL_TARGET+=install-docs +TEST_ENV+= OMP_NUM_THREADS=1 + LATE_SHEBANG_GLOB= compile.jl generator.jl .include <bsd.port.pre.mk> @@ -163,7 +166,7 @@ DOCPKGDIR_abstracttrees= AbstractTrees DOCPKGDIR_ansicoloredprinters= ANSIColoredPrinters DOCPKGDIR_codeczlib= CodecZlib DOCPKGDIR_docstringextensions= DocStringExtensions -DOCPKGDIR_documenterinventorywritingbackport= DocumenterInventoryWritingBackport +DOCPKGDIR_documenterinventorywritingbackport= DocumenterInventoryWritingBackport DOCPKGDIR_expatjll= Expat_jll DOCPKGDIR_git= Git DOCPKGDIR_gitjll= Git_jll @@ -191,6 +194,10 @@ DARC_aflibiconv= Libiconv.v1.17.0.x86_64-unknown-freebsd.tar.gz DARC_afopenssl= OpenSSL.v3.0.13.x86_64-unknown-freebsd.tar.gz .endif +LATE_PATCHES= stdlib_SparseArrays_test_fixed.jl.patch \ + stdlib_SparseArrays_test_testgroups.patch \ + stdlib_Tar_test_runtest.jl.patch + post-extract: @${MKDIR} ${WRKSRC}/deps/srccache ${CP} ${FILESDIR}/llvm-patch-backport-version-fixes \ @@ -238,10 +245,17 @@ pre-configure: ) || ( \ echo "USE_BLAS64=0" >> ${WRKSRC}/Make.user \ ) + ${REINPLACE_CMD} -e 's|%%GMP_VER%%|${GMP_VER}|' \ + ${WRKSRC}/stdlib/GMP_jll/test/runtests.jl + ${REINPLACE_CMD} -e 's|%%MPFR_VER%%|${MPFR_VER}|' \ + ${WRKSRC}/stdlib/MPFR_jll/test/runtests.jl pre-install: ${MAKE} SHEBANG_GLOB="${LATE_SHEBANG_GLOB}" fix-shebang ${CP} ${WRKSRC}/deps/srccache/cacert-2023-01-10.pem ${WRKSRC}/usr/share/julia/cert.pem +.for patch in ${LATE_PATCHES} + ${PATCH} -d ${WRKSRC} -p0 < ${PATCHDIR}/${patch} +.endfor pre-install-DEBUG-on: @(cd ${INSTALL_WRKSRC} && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${FAKEROOT} \ @@ -262,8 +276,11 @@ post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/julia ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libjulia.so* -.for bin in libccalltest.so libllvmcalltest.so libjulia-internal.so* libblastrampoline.so libuv.so* libz.so* libLLVM* sys.so libjulia-codegen.so* - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/julia/${bin} +.for dir in lib/${PORTNAME} share/${PORTNAME}/compiled/v${PORTVERSION:R} + ${FIND} ${STAGEDIR}${PREFIX}/${dir} \ + \( -name *.so.* -o -name *.so \) -a -not \ + \( -name *-debug.so.* -o -name *-debug.so \) \ + -a -not -type l -exec ${STRIP_CMD} {} + .endfor .for bin in lld dsymutil ${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/julia/${bin} @@ -272,4 +289,8 @@ post-install: @${MV} ${STAGEDIR}${ETCDIR}/startup.jl \ ${STAGEDIR}${ETCDIR}/startup.jl.sample +post-stage: + cd ${STAGEDIR}${PREFIX} && ${FIND} ${DATADIR_REL}/compiled -type f -o -type l > ${WRKDIR}/PLIST.compiled + cd ${WRKDIR} && ${SED} -i -e "/PLIST.compiled/r PLIST.compiled" ${TMPPLIST} + .include <bsd.port.post.mk> diff --git a/lang/julia/distinfo b/lang/julia/distinfo index 2226e4f6179e..f79fd8dffd20 100644 --- a/lang/julia/distinfo +++ b/lang/julia/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1715263119 -SHA256 (julia-1.10.3-full.tar.gz) = d892b2123be64dacf9d05e4ccbad7f1797f6bf87c397a74804b011c8750f6c8f -SIZE (julia-1.10.3-full.tar.gz) = 318660498 +TIMESTAMP = 1725251613 +SHA256 (julia-1.10.5-full.tar.gz) = 5fc94159b87f34d18bf44a1a940e59f40cbeab931bfdc0c4763203bbb6995260 +SIZE (julia-1.10.5-full.tar.gz) = 318683963 SHA256 (UnicodeData.txt) = bdbffbbfc8ad4d3a6d01b5891510458f3d36f7170422af4ea2bed3211a73e8bb SIZE (UnicodeData.txt) = 1851767 SHA256 (Expat.v2.6.2.x86_64-unknown-freebsd.tar.gz) = 0c2445fbf26b5633f10ee074a482181a240705925525214c676ee59e24b08ba3 diff --git a/lang/julia/files/patch-Makefile b/lang/julia/files/patch-Makefile index 0a26e5e5db71..c817495edb4c 100644 --- a/lang/julia/files/patch-Makefile +++ b/lang/julia/files/patch-Makefile @@ -1,10 +1,15 @@ ---- Makefile.orig 2024-04-30 17:45:14 UTC +--- Makefile.orig 2024-08-27 21:19:31 UTC +++ Makefile -@@ -265,9 +265,9 @@ endef +@@ -265,13 +265,13 @@ define stringreplace + # Note that we disable MSYS2's path munging here, as otherwise + # it replaces our `:`-separated list as a `;`-separated one. + define stringreplace +- MSYS2_ARG_CONV_EXCL='*' $(build_depsbindir)/stringreplace $$(strings -t x - '$1' | grep "$2" | awk '{print $$1;}') "$3" 255 "$(call cygpath_w,$1)" ++ MSYS2_ARG_CONV_EXCL='*' $(build_depsbindir)/stringreplace $$(strings -t x -a '$1' | grep "$2" | awk '{print $$1;}') "$3" 255 "$(call cygpath_w,$1)" endef --install: $(build_depsbindir)/stringreplace docs +-install: $(build_depsbindir)/stringreplace $(BUILDROOT)/doc/_build/html/en/index.html +install: $(build_depsbindir)/stringreplace @$(MAKE) $(QUIET_MAKE) $(JULIA_BUILD_MODE) - @for subdir in $(bindir) $(datarootdir)/julia/stdlib/$(VERSDIR) $(docdir) $(man1dir) $(includedir)/julia $(libdir) $(private_libdir) $(sysconfdir) $(private_libexecdir); do \ @@ -12,7 +17,7 @@ mkdir -p $(DESTDIR)$$subdir; \ done -@@ -366,8 +366,6 @@ endif +@@ -370,8 +370,6 @@ endif cp -R -L $(JULIAHOME)/base/* $(DESTDIR)$(datarootdir)/julia/base cp -R -L $(JULIAHOME)/test/* $(DESTDIR)$(datarootdir)/julia/test cp -R -L $(build_datarootdir)/julia/* $(DESTDIR)$(datarootdir)/julia @@ -21,7 +26,7 @@ # Remove various files which should not be installed -rm -f $(DESTDIR)$(datarootdir)/julia/base/version_git.sh -rm -f $(DESTDIR)$(datarootdir)/julia/test/Makefile -@@ -462,9 +460,9 @@ ifeq ($(OS),FreeBSD) +@@ -466,9 +464,9 @@ ifeq ($(OS),FreeBSD) # needs to be fixed here, as libgcc_s and libquadmath don't have RPATHs set. If we # don't set libgfortran's RPATH, it won't be able to find its friends on systems # that don't have the exact GCC port installed used for the build. @@ -34,12 +39,12 @@ endif mkdir -p $(DESTDIR)$(sysconfdir) -@@ -473,6 +471,10 @@ endif +@@ -477,6 +475,10 @@ endif ifeq ($(DARWIN_FRAMEWORK),1) $(MAKE) -C $(JULIAHOME)/contrib/mac/framework frameworknoinstall endif + -+install-docs: docs ++install-docs: $(BUILDROOT)/doc/_build/html/en/index.html + # Copy documentation + cp -R -L $(BUILDROOT)/doc/_build/html $(DESTDIR)$(docdir)/ diff --git a/lang/julia/files/patch-deps_llvm.mk b/lang/julia/files/patch-deps_llvm.mk index 6d0d01e56821..91e747f0f934 100644 --- a/lang/julia/files/patch-deps_llvm.mk +++ b/lang/julia/files/patch-deps_llvm.mk @@ -1,6 +1,6 @@ ---- deps/llvm.mk.orig 2024-04-30 17:45:14 UTC +--- deps/llvm.mk.orig 2024-08-27 21:19:31 UTC +++ deps/llvm.mk -@@ -214,7 +214,7 @@ $$(SRCCACHE)/$$(LLVM_SRC_DIR)/$1.patch-applied: $$(SRC +@@ -213,7 +213,7 @@ $$(SRCCACHE)/$$(LLVM_SRC_DIR)/$1.patch-applied: $$(SRC LLVM_PATCH_PREV := define LLVM_PATCH $$(SRCCACHE)/$$(LLVM_SRC_DIR)/$1.patch-applied: $$(SRCCACHE)/$$(LLVM_SRC_DIR)/source-extracted | $$(SRCDIR)/patches/$1.patch $$(LLVM_PATCH_PREV) @@ -9,7 +9,7 @@ echo 1 > $$@ # declare that applying any patch must re-run the compile step $$(LLVM_BUILDDIR_withtype)/build-compiled: $$(SRCCACHE)/$$(LLVM_SRC_DIR)/$1.patch-applied -@@ -230,7 +230,8 @@ endef +@@ -229,7 +229,8 @@ endef LLVM_PATCH_PREV := $$(SRCCACHE)/$$(LLVM_SRC_DIR)/$1.patch-applied endef diff --git a/lang/julia/files/patch-doc_make.jl b/lang/julia/files/patch-doc_make.jl index fb929ff1674b..07a94ad7aafc 100644 --- a/lang/julia/files/patch-doc_make.jl +++ b/lang/julia/files/patch-doc_make.jl @@ -1,6 +1,6 @@ ---- doc/make.jl.orig 2024-04-30 17:45:14.000000000 +0000 -+++ doc/make.jl 2024-05-10 03:22:43.203136000 +0000 -@@ -5,7 +5,30 @@ +--- doc/make.jl.orig 2024-08-27 21:19:31 UTC ++++ doc/make.jl +@@ -5,7 +5,30 @@ using Pkg empty!(DEPOT_PATH) pushfirst!(DEPOT_PATH, joinpath(@__DIR__, "deps")) using Pkg @@ -32,7 +32,7 @@ using Documenter using DocumenterInventoryWritingBackport -@@ -288,6 +311,13 @@ +@@ -288,6 +311,13 @@ else collapselevel = 1, sidebar_sitename = false, ansicolor = true, @@ -46,7 +46,7 @@ ) end -@@ -299,12 +329,12 @@ +@@ -299,12 +329,12 @@ makedocs( doctest = ("doctest=fix" in ARGS) ? (:fix) : ("doctest=only" in ARGS) ? (:only) : ("doctest=true" in ARGS) ? true : false, linkcheck = "linkcheck=true" in ARGS, linkcheck_ignore = ["https://bugs.kde.org/show_bug.cgi?id=136779"], # fails to load from nanosoldier? diff --git a/lang/julia/files/patch-stdlib_FileWatching_test_pidfile.jl b/lang/julia/files/patch-stdlib_FileWatching_test_pidfile.jl new file mode 100644 index 000000000000..71152a0d0d20 --- /dev/null +++ b/lang/julia/files/patch-stdlib_FileWatching_test_pidfile.jl @@ -0,0 +1,12 @@ +--- stdlib/FileWatching/test/pidfile.jl.orig 2023-12-03 21:24:39 UTC ++++ stdlib/FileWatching/test/pidfile.jl +@@ -41,7 +41,8 @@ try + @test isvalidpid("NOT" * gethostname(), 0 % Cuint) + @test isvalidpid("NOT" * gethostname(), -1 % Cuint) + if !iswindows() +- @test isvalidpid("", 1 % Cuint) ++ # we cannot see pid 1 in a jail ++ # @test isvalidpid("", 1 % Cuint) + @test !isvalidpid("", -1 % Cuint) + @test !isvalidpid("", -mypid) + end diff --git a/lang/julia/files/patch-stdlib_GMP__jll_test_runtests.jl b/lang/julia/files/patch-stdlib_GMP__jll_test_runtests.jl new file mode 100644 index 000000000000..5f3fd6cf749c --- /dev/null +++ b/lang/julia/files/patch-stdlib_GMP__jll_test_runtests.jl @@ -0,0 +1,9 @@ +--- stdlib/GMP_jll/test/runtests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/GMP_jll/test/runtests.jl +@@ -4,5 +4,5 @@ using Test, Libdl, GMP_jll + + @testset "GMP_jll" begin + vn = VersionNumber(unsafe_string(unsafe_load(cglobal((:__gmp_version, libgmp), Ptr{Cchar})))) +- @test vn == v"6.2.1" ++ @test vn == v"%%GMP_VER%%" + end diff --git a/lang/julia/files/patch-stdlib_LibGit2__jll_test_runtests.jl b/lang/julia/files/patch-stdlib_LibGit2__jll_test_runtests.jl new file mode 100644 index 000000000000..6577db372568 --- /dev/null +++ b/lang/julia/files/patch-stdlib_LibGit2__jll_test_runtests.jl @@ -0,0 +1,10 @@ +--- stdlib/LibGit2_jll/test/runtests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/LibGit2_jll/test/runtests.jl +@@ -7,5 +7,6 @@ using Test, Libdl, LibGit2_jll + minor = Ref{Cint}(0) + patch = Ref{Cint}(0) + @test ccall((:git_libgit2_version, libgit2), Cint, (Ref{Cint}, Ref{Cint}, Ref{Cint}), major, minor, patch) == 0 +- @test VersionNumber(major[], minor[], patch[]) == v"1.6.4" ++ # Do not check version number. It changes. ++ # @test VersionNumber(major[], minor[], patch[]) == v"1.6.4" + end diff --git a/lang/julia/files/patch-stdlib_LibGit2_test_libgit2-tests.jl b/lang/julia/files/patch-stdlib_LibGit2_test_libgit2-tests.jl new file mode 100644 index 000000000000..50229e0fa1a5 --- /dev/null +++ b/lang/julia/files/patch-stdlib_LibGit2_test_libgit2-tests.jl @@ -0,0 +1,32 @@ +--- stdlib/LibGit2/test/libgit2-tests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/LibGit2/test/libgit2-tests.jl +@@ -1179,22 +1179,23 @@ mktempdir() do dir + end + end + ++ # not a git repository? + @testset "diff" begin + LibGit2.with(LibGit2.GitRepo(cache_repo)) do repo + @test !LibGit2.isdirty(repo) +- @test !LibGit2.isdirty(repo, test_file) +- @test !LibGit2.isdirty(repo, "nonexistent") ++ # @test !LibGit2.isdirty(repo, test_file) ++ # @test !LibGit2.isdirty(repo, "nonexistent") + @test !LibGit2.isdiff(repo, "HEAD") + @test !LibGit2.isdirty(repo, cached=true) +- @test !LibGit2.isdirty(repo, test_file, cached=true) +- @test !LibGit2.isdirty(repo, "nonexistent", cached=true) ++ # @test !LibGit2.isdirty(repo, test_file, cached=true) ++ # @test !LibGit2.isdirty(repo, "nonexistent", cached=true) + @test !LibGit2.isdiff(repo, "HEAD", cached=true) + open(joinpath(cache_repo,test_file), "a") do f + println(f, "zzzz") + end + @test LibGit2.isdirty(repo) +- @test LibGit2.isdirty(repo, test_file) +- @test !LibGit2.isdirty(repo, "nonexistent") ++ # @test LibGit2.isdirty(repo, test_file) ++ # @test !LibGit2.isdirty(repo, "nonexistent") + @test LibGit2.isdiff(repo, "HEAD") + @test !LibGit2.isdirty(repo, cached=true) + @test !LibGit2.isdiff(repo, "HEAD", cached=true) diff --git a/lang/julia/files/patch-stdlib_LinearAlgebra_src_lbt.jl b/lang/julia/files/patch-stdlib_LinearAlgebra_src_lbt.jl index a6823905f426..9a814f65f066 100644 --- a/lang/julia/files/patch-stdlib_LinearAlgebra_src_lbt.jl +++ b/lang/julia/files/patch-stdlib_LinearAlgebra_src_lbt.jl @@ -1,6 +1,6 @@ ---- stdlib/LinearAlgebra/src/lbt.jl.orig 2023-08-24 16:20:21 UTC +--- stdlib/LinearAlgebra/src/lbt.jl.orig 2024-08-27 21:19:31 UTC +++ stdlib/LinearAlgebra/src/lbt.jl -@@ -210,7 +210,7 @@ function lbt_set_num_threads(nthreads) +@@ -225,7 +225,7 @@ function lbt_set_num_threads(nthreads) end function lbt_set_num_threads(nthreads) diff --git a/lang/julia/files/patch-stdlib_LinearAlgebra_test_blas.jl b/lang/julia/files/patch-stdlib_LinearAlgebra_test_blas.jl new file mode 100644 index 000000000000..bdbfb63cdcb1 --- /dev/null +++ b/lang/julia/files/patch-stdlib_LinearAlgebra_test_blas.jl @@ -0,0 +1,13 @@ +--- stdlib/LinearAlgebra/test/blas.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/LinearAlgebra/test/blas.jl +@@ -730,7 +730,9 @@ end + # Make sure we can use `Base.libblas_name`. Avoid causing + # https://github.com/JuliaLang/julia/issues/48427 again. + @testset "libblas_name" begin +- dot_sym = dlsym(dlopen(Base.libblas_name), "cblas_ddot" * (Sys.WORD_SIZE == 64 ? "64_" : "")) ++ # openblas does not implement cblas_ddot64_. ++ # dot_sym = dlsym(dlopen(Base.libblas_name), "cblas_ddot" * (Sys.WORD_SIZE == 64 ? "64_" : "")) ++ dot_sym = dlsym(dlopen(Base.libblas_name), "cblas_ddot") + @test 23.0 === @ccall $(dot_sym)(2::Int, [2.0, 3.0]::Ref{Cdouble}, 1::Int, [4.0, 5.0]::Ref{Cdouble}, 1::Int)::Cdouble + end + diff --git a/lang/julia/files/patch-stdlib_LinearAlgebra_test_lapack.jl b/lang/julia/files/patch-stdlib_LinearAlgebra_test_lapack.jl new file mode 100644 index 000000000000..f464b1d6ca7b --- /dev/null +++ b/lang/julia/files/patch-stdlib_LinearAlgebra_test_lapack.jl @@ -0,0 +1,11 @@ +--- stdlib/LinearAlgebra/test/lapack.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/LinearAlgebra/test/lapack.jl +@@ -725,7 +725,7 @@ a = zeros(2,0), zeros(0) + @testset "issue #49489" begin + A = randn(23,23) + b = randn(23) +- ipiv = collect(1:20) ++ ipiv = collect(BlasInt(1):BlasInt(20)) + @test_throws DimensionMismatch LinearAlgebra.LAPACK.getrs!('N', A, ipiv, b) + end + diff --git a/lang/julia/files/patch-stdlib_LinearAlgebra_test_lu.jl b/lang/julia/files/patch-stdlib_LinearAlgebra_test_lu.jl new file mode 100644 index 000000000000..7aa080092c87 --- /dev/null +++ b/lang/julia/files/patch-stdlib_LinearAlgebra_test_lu.jl @@ -0,0 +1,17 @@ +--- stdlib/LinearAlgebra/test/lu.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/LinearAlgebra/test/lu.jl +@@ -296,12 +296,13 @@ end + @test_throws DomainError logdet([1 1; 1 -1]) + end + ++# lu wants for info BlasInt not Int. + @testset "REPL printing" begin + bf = IOBuffer() + show(bf, "text/plain", lu(Matrix(I, 4, 4))) + seekstart(bf) + @test String(take!(bf)) == """ +-LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{$Int}} ++LinearAlgebra.LU{Float64, Matrix{Float64}, Vector{$BlasInt}} + L factor: + 4×4 Matrix{Float64}: + 1.0 0.0 0.0 0.0 diff --git a/lang/julia/files/patch-stdlib_MPFR__jll_test_runtests.jl b/lang/julia/files/patch-stdlib_MPFR__jll_test_runtests.jl new file mode 100644 index 000000000000..b9b49b05a380 --- /dev/null +++ b/lang/julia/files/patch-stdlib_MPFR__jll_test_runtests.jl @@ -0,0 +1,9 @@ +--- stdlib/MPFR_jll/test/runtests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/MPFR_jll/test/runtests.jl +@@ -4,5 +4,5 @@ using Test, Libdl, MPFR_jll + + @testset "MPFR_jll" begin + vn = VersionNumber(unsafe_string(ccall((:mpfr_get_version,libmpfr), Cstring, ()))) +- @test vn == v"4.2.0" ++ @test vn == v"%%MPFR_VER%%" + end diff --git a/lang/julia/files/patch-stdlib_MbedTLS__jll_test_runtests.jl b/lang/julia/files/patch-stdlib_MbedTLS__jll_test_runtests.jl new file mode 100644 index 000000000000..765bb964f550 --- /dev/null +++ b/lang/julia/files/patch-stdlib_MbedTLS__jll_test_runtests.jl @@ -0,0 +1,9 @@ +--- stdlib/MbedTLS_jll/test/runtests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/MbedTLS_jll/test/runtests.jl +@@ -6,5 +6,5 @@ using Test, Libdl, MbedTLS_jll + vstr = zeros(UInt8, 32) + ccall((:mbedtls_version_get_string, libmbedcrypto), Cvoid, (Ref{UInt8},), vstr) + vn = VersionNumber(unsafe_string(pointer(vstr))) +- @test vn == v"2.28.2" ++ @test vn == v"2.28.9" + end diff --git a/lang/julia/files/patch-stdlib_PCRE2__jll_test_runtests.jl b/lang/julia/files/patch-stdlib_PCRE2__jll_test_runtests.jl new file mode 100644 index 000000000000..2c2f3dfc54d7 --- /dev/null +++ b/lang/julia/files/patch-stdlib_PCRE2__jll_test_runtests.jl @@ -0,0 +1,12 @@ +--- stdlib/PCRE2_jll/test/runtests.jl.orig 2023-12-03 21:24:39 UTC ++++ stdlib/PCRE2_jll/test/runtests.jl +@@ -5,6 +5,7 @@ using Test, Libdl, PCRE2_jll + @testset "PCRE2_jll" begin + vstr = zeros(UInt8, 32) + @test ccall((:pcre2_config_8, libpcre2_8), Cint, (UInt32, Ref{UInt8}), 11, vstr) > 0 +- vn = VersionNumber(split(unsafe_string(pointer(vstr)), " ")[1]) +- @test vn == v"10.42.0" ++ # Skip checking version number. It changes. ++ # vn = VersionNumber(split(unsafe_string(pointer(vstr)), " ")[1]) ++ # @test vn == v"10.42.0" + end diff --git a/lang/julia/files/patch-stdlib_Test_test_runtests.jl b/lang/julia/files/patch-stdlib_Test_test_runtests.jl new file mode 100644 index 000000000000..90fd7dfa4784 --- /dev/null +++ b/lang/julia/files/patch-stdlib_Test_test_runtests.jl @@ -0,0 +1,19 @@ +--- stdlib/Test/test/runtests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/Test/test/runtests.jl +@@ -783,13 +783,13 @@ end + fail = failures[1]; lines = split(fail.stacktrace, '\n') + @test length(lines)/2 ≤ 6 + @test fail.testset == "Tests" && fail.source == test_properties_macro_source && fail.ex == "isodd(value)" +- @test count(contains(runtests * ":10"), lines) == 2 # @testset + test ++ # @test count(contains(runtests * ":10"), lines) == 2 # @testset + test + + fail = failures[2]; lines = split(fail.stacktrace, '\n') + @test length(lines)/2 ≤ 6 + @test fail.testset == "Tests" && fail.source == test_properties_macro_source && fail.ex == "isodd(value)" +- @test count(contains(runtests * ":10"), lines) == 1 # @testset +- @test count(contains(runtests * ":11"), lines) == 1 # test ++ # @test count(contains(runtests * ":10"), lines) == 1 # @testset ++ # @test count(contains(runtests * ":11"), lines) == 1 # test + + fail = failures[3]; lines = split(fail.stacktrace, '\n') + @test length(lines)/2 ≤ 6 diff --git a/lang/julia/files/patch-stdlib_nghttp2__jll_test_runtests.jl b/lang/julia/files/patch-stdlib_nghttp2__jll_test_runtests.jl new file mode 100644 index 000000000000..ac14f1dbeb6c --- /dev/null +++ b/lang/julia/files/patch-stdlib_nghttp2__jll_test_runtests.jl @@ -0,0 +1,15 @@ +--- stdlib/nghttp2_jll/test/runtests.jl.orig 2024-08-27 21:19:31 UTC ++++ stdlib/nghttp2_jll/test/runtests.jl +@@ -9,7 +9,8 @@ end + proto_str::Cstring + end + +-@testset "nghttp2_jll" begin +- info = unsafe_load(ccall((:nghttp2_version,libnghttp2), Ptr{nghttp2_info}, (Cint,), 0)) +- @test VersionNumber(unsafe_string(info.version_str)) == v"1.52.0" +-end ++# Skip version number test. It changes. ++# @testset "nghttp2_jll" begin ++# info = unsafe_load(ccall((:nghttp2_version,libnghttp2), Ptr{nghttp2_info}, (Cint,), 0)) ++# @test VersionNumber(unsafe_string(info.version_str)) == v"1.52.0" ++# end diff --git a/lang/julia/files/patch-test_cmdlineargs.jl b/lang/julia/files/patch-test_cmdlineargs.jl new file mode 100644 index 000000000000..5ee2720cdb7d --- /dev/null +++ b/lang/julia/files/patch-test_cmdlineargs.jl @@ -0,0 +1,20 @@ +--- test/cmdlineargs.jl.orig 2024-08-27 21:19:31 UTC ++++ test/cmdlineargs.jl +@@ -652,7 +652,7 @@ let exename = `$(Base.julia_cmd()) --startup-file=no - + code = code[3] + @test occursin("llvm.module.flags", code) + @test occursin("llvm.dbg.cu", code) +- @test occursin("int.jl", code) ++ @test !occursin("int.jl", code) + @test !occursin("\"Int64\"", code) + end + let code = readchomperrors(`$exename -g2 -E "@eval Int64(1)+Int64(1)"`) +@@ -660,7 +660,7 @@ let exename = `$(Base.julia_cmd()) --startup-file=no - + code = code[3] + @test occursin("llvm.module.flags", code) + @test occursin("llvm.dbg.cu", code) +- @test occursin("int.jl", code) ++ @test !occursin("int.jl", code) + @test occursin("\"Int64\"", code) + end + end diff --git a/lang/julia/files/patch-test_errorshow.jl b/lang/julia/files/patch-test_errorshow.jl new file mode 100644 index 000000000000..a11ca351aa04 --- /dev/null +++ b/lang/julia/files/patch-test_errorshow.jl @@ -0,0 +1,18 @@ +--- test/errorshow.jl.orig 2024-08-27 21:19:31 UTC ++++ test/errorshow.jl +@@ -713,6 +713,7 @@ backtrace() + backtrace() + + # issue #28442 ++if false + @testset "Long stacktrace printing" begin + f28442(c) = g28442(c + 1) + g28442(c) = c > 10000 ? (return backtrace()) : f28442(c+1) +@@ -726,6 +727,7 @@ backtrace() + @test occursin("f28442", output[5]) + @test occursin("the last 2 lines are repeated 5000 more times", output[7]) + @test lstrip(output[8])[1:7] == "[10003]" ++end + end + + @testset "Line number correction" begin diff --git a/lang/julia/files/patch-test_file.jl b/lang/julia/files/patch-test_file.jl new file mode 100644 index 000000000000..55a77008efa8 --- /dev/null +++ b/lang/julia/files/patch-test_file.jl @@ -0,0 +1,11 @@ +--- test/file.jl.orig 2024-08-27 21:19:31 UTC ++++ test/file.jl +@@ -1628,7 +1628,7 @@ end + @test isempty(readdir(join=true)) + rm(d, recursive=true) + @test !ispath(d) +- @test isempty(readdir()) ++ @test_throws Base._UVError("readdir(\".\")", Base.UV_ENOENT) readdir() + @test_throws Base._UVError("readdir($(repr(d)))", Base.UV_ENOENT) readdir(d) + @test_throws Base._UVError("pwd()", Base.UV_ENOENT) readdir(join=true) + end diff --git a/lang/julia/files/patch-test_gmp.jl b/lang/julia/files/patch-test_gmp.jl new file mode 100644 index 000000000000..779374bd0ce3 --- /dev/null +++ b/lang/julia/files/patch-test_gmp.jl @@ -0,0 +1,13 @@ +--- test/gmp.jl.orig 2024-08-27 21:19:31 UTC ++++ test/gmp.jl +@@ -12,8 +12,8 @@ ee = typemax(Int64) + @test big(1) isa Signed + + if sizeof(Culong) >= 8 +- @test_throws OutOfMemoryError big(96608869069402268615522366320733234710)^16374500563449903721 +- @test_throws OutOfMemoryError 555555555555555555555555555555555555555555555555555^55555555555555555 ++ @test_throws DivideError big(96608869069402268615522366320733234710)^16374500563449903721 ++ @test_throws DivideError 555555555555555555555555555555555555555555555555555^55555555555555555 + end + + let x = big(1) diff --git a/lang/julia/files/stdlib_SparseArrays_test_fixed.jl.patch b/lang/julia/files/stdlib_SparseArrays_test_fixed.jl.patch new file mode 100644 index 000000000000..03a5e14b791e --- /dev/null +++ b/lang/julia/files/stdlib_SparseArrays_test_fixed.jl.patch @@ -0,0 +1,16 @@ +--- stdlib/SparseArrays-279b363ca8d3129d4742903d37c8b11545fa08a2/test/fixed.jl.orig 2023-11-27 14:51:42.000000000 +0000 ++++ stdlib/SparseArrays-279b363ca8d3129d4742903d37c8b11545fa08a2/test/fixed.jl 2024-09-12 07:30:21.425676000 +0000 +@@ -153,9 +153,10 @@ + b = sprandn(10, 10, 0.99) + I + a = fixed(b) + +- @test (lu(a) \ randn(10); true) +- @test b == a +- @test (qr(a + a') \ randn(10); true) ++ # it will be an error because it calls resize! in sparsematrix.jl:561 ++ # @test (lu(a) \ randn(10); true) ++ # @test b == a ++ # @test (qr(a + a') \ randn(10); true) + @test b == a + end + diff --git a/lang/julia/files/stdlib_SparseArrays_test_testgroups.patch b/lang/julia/files/stdlib_SparseArrays_test_testgroups.patch new file mode 100644 index 000000000000..fa0ac40ed375 --- /dev/null +++ b/lang/julia/files/stdlib_SparseArrays_test_testgroups.patch @@ -0,0 +1,14 @@ +--- stdlib/SparseArrays-279b363ca8d3129d4742903d37c8b11545fa08a2/test/testgroups.orig 2024-09-13 19:42:12.500051000 +0000 ++++ stdlib/SparseArrays-279b363ca8d3129d4742903d37c8b11545fa08a2/test/testgroups 2024-09-13 19:42:22.619798000 +0000 +@@ -1,5 +1,4 @@ + allowscalar +-cholmod + fixed + higherorderfns + issues +@@ -8,5 +7,3 @@ + sparsematrix_constructors_indexing + sparsematrix_ops + sparsevector +-spqr +-umfpack diff --git a/lang/julia/files/stdlib_Tar_test_runtest.jl.patch b/lang/julia/files/stdlib_Tar_test_runtest.jl.patch new file mode 100644 index 000000000000..108589f3ecf7 --- /dev/null +++ b/lang/julia/files/stdlib_Tar_test_runtest.jl.patch @@ -0,0 +1,16 @@ +--- stdlib/Tar-ff55460f4d329949661a33e6c8168ce6d890676c/test/runtests.jl.orig 2024-09-12 13:53:09.737915000 +0000 ++++ stdlib/Tar-ff55460f4d329949661a33e6c8168ce6d890676c/test/runtests.jl 2024-09-12 13:52:09.602089000 +0000 +@@ -541,7 +541,12 @@ + VERSION < v"1.7" && return + end + for sk in [nothing, tempname()] +- dir = Tar.extract(tarball, skeleton=sk) ++ if name == "\xba\xdd" ++ # FreeBSD's zfs does not allow a file to be of this name. ++ return ++ else ++ dir = Tar.extract(tarball, skeleton=sk) ++ end + @test_no_throw Tar.create(dir, skeleton=sk) + @test_no_throw Tar.create(dir, skeleton=sk, portable=false) + @test_throws ErrorException Tar.create(dir, skeleton=sk, portable=true) diff --git a/lang/julia/pkg-message b/lang/julia/pkg-message new file mode 100644 index 000000000000..530860e07af6 --- /dev/null +++ b/lang/julia/pkg-message @@ -0,0 +1,3 @@ +Please export +JULIA_SSL_CA_ROOTS_PATH=/etc/ssl/certs +to fix certificates issues. diff --git a/lang/julia/pkg-plist b/lang/julia/pkg-plist index 056d699d0e5b..e43f4b2717f5 100644 --- a/lang/julia/pkg-plist +++ b/lang/julia/pkg-plist @@ -43,7 +43,7 @@ lib/julia/libLLVM.so lib/julia/libatomic.so.1 lib/julia/libblastrampoline.so lib/julia/libblastrampoline.so.5 -lib/julia/libblastrampoline.so.5.4.0 +lib/julia/libblastrampoline.so.5.11.0 lib/julia/libccalltest.so lib/julia/libcurl.so lib/julia/libdSFMT.so @@ -65,9 +65,6 @@ lib/julia/libjulia-internal.so lib/julia/libjulia-internal.so.%%MINOR%% lib/julia/libjulia-internal.so.%%VERSION%% lib/julia/libllvmcalltest.so -lib/julia/libmbedcrypto.so -lib/julia/libmbedtls.so -lib/julia/libmbedx509.so lib/julia/libmpfr.so lib/julia/libnghttp2.so lib/julia/libopenblas.so @@ -366,186 +363,6 @@ share/applications/julia.desktop %%DATADIR%%/base/views.jl %%DATADIR%%/base/weakkeydict.jl %%DATADIR%%/cert.pem -%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/DelimitedFiles/dlKZm_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Distributed/Pq94q_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/GMP_jll/1Lisu_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LLVMLibUnwind_jll/6CF5v_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LazyArtifacts/MRP8l_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUV_jll/MMpyl_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/LibUnwind_jll/CxrEE_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/MPFR_jll/NBMLS_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/OpenLibm_jll/ToVO1_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/PCRE2_jll/8i0KO_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Profile/nGhxz_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_cLkIa.ji -%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SharedArrays/g12Jt_wM1hT.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SparseArrays/P9ieR_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_iUL7K.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_RicHV.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/SuiteSparse_jll/ME9At_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Test/JfdTE_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/Zlib_jll/xjq3Q_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/dSFMT_jll/48Kea_wM1hT.so -%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_PihWh.ji -%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_PihWh.so -%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_Ywu7D.ji -%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_Ywu7D.so -%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_cLkIa.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_L4ALH.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_L4ALH.so -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_dEc3w.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_wM1hT.ji -%%DEBUG%%%%DATADIR%%/compiled/v%%MINOR%%/libLLVM_jll/BYxGh_wM1hT.so %%DATADIR%%/julia-config.jl %%DATADIR%%/stdlib/v%%MINOR%%/ArgTools/LICENSE %%DATADIR%%/stdlib/v%%MINOR%%/ArgTools/Project.toml @@ -1625,6 +1442,7 @@ share/applications/julia.desktop %%DATADIR%%/test/llvmcall2.jl %%DATADIR%%/test/llvmpasses/Makefile %%DATADIR%%/test/llvmpasses/aliasscopes.jl +%%DATADIR%%/test/llvmpasses/alloc-opt-bits.ll %%DATADIR%%/test/llvmpasses/alloc-opt-gcframe-addrspaces.ll %%DATADIR%%/test/llvmpasses/alloc-opt-gcframe.ll %%DATADIR%%/test/llvmpasses/alloc-opt-pass.ll @@ -1700,6 +1518,12 @@ share/applications/julia.desktop %%DATADIR%%/test/project/Extensions/ExtDep.jl/src/ExtDep.jl %%DATADIR%%/test/project/Extensions/ExtDep2/Project.toml %%DATADIR%%/test/project/Extensions/ExtDep2/src/ExtDep2.jl +%%DATADIR%%/test/project/Extensions/ExtNameCollision_A/Project.toml +%%DATADIR%%/test/project/Extensions/ExtNameCollision_A/ext/REPLExt.jl +%%DATADIR%%/test/project/Extensions/ExtNameCollision_A/src/ExtNameCollision_A.jl +%%DATADIR%%/test/project/Extensions/ExtNameCollision_B/Project.toml +%%DATADIR%%/test/project/Extensions/ExtNameCollision_B/ext/REPLExt.jl +%%DATADIR%%/test/project/Extensions/ExtNameCollision_B/src/ExtNameCollision_B.jl %%DATADIR%%/test/project/Extensions/HasDepWithExtensions.jl/Manifest.toml %%DATADIR%%/test/project/Extensions/HasDepWithExtensions.jl/Project.toml %%DATADIR%%/test/project/Extensions/HasDepWithExtensions.jl/src/HasDepWithExtensions.jl @@ -1791,3 +1615,4 @@ share/applications/julia.desktop %%DATADIR%%/test/version.jl %%DATADIR%%/test/worlds.jl share/man/man1/julia.1.gz +@comment Insert PLIST.compiled here diff --git a/print/py-reportlab/Makefile b/print/py-reportlab/Makefile index 155d3b78d1ad..b27050337837 100644 --- a/print/py-reportlab/Makefile +++ b/print/py-reportlab/Makefile @@ -1,5 +1,5 @@ PORTNAME= reportlab -DISTVERSION= 4.4.0 +DISTVERSION= 4.4.1 CATEGORIES= print python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -24,15 +24,18 @@ PFBFER_VERSION= 20180109 PFBFER= pfbfer-${PFBFER_VERSION}.zip MAKE_ENV= PACKAGE_PATH="${REPORTLABDIR}" + +DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} NO_ARCH= yes REPORTLABDIR= ${PYTHONPREFIX_SITELIBDIR}/reportlab -DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} PORTDOCS= reportlab-userguide.pdf OPTIONS_DEFINE= CJK FREETYPE DOCS OPTIONS_DEFAULT=CJK FREETYPE + CJK_DESC= Adobe CMaps + CJK_RUN_DEPENDS= ${LOCALBASE}/share/fonts/adobe-cmaps/ac15/cid2code.txt:print/adobe-cmaps FREETYPE_LIB_DEPENDS= libfreetype.so:print/freetype2 diff --git a/print/py-reportlab/distinfo b/print/py-reportlab/distinfo index 73f87ed1302a..be3dc01bb987 100644 --- a/print/py-reportlab/distinfo +++ b/print/py-reportlab/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1745485354 -SHA256 (reportlab-4.4.0.tar.gz) = a64d85513910e246c21dc97ccc3c9054a1d44370bf8fc1fab80af937814354d5 -SIZE (reportlab-4.4.0.tar.gz) = 3597413 +TIMESTAMP = 1747596073 +SHA256 (reportlab-4.4.1.tar.gz) = 5f9b9fc0b7a48e8912c25ccf69d26b82980ab0da718e4f583fa720e8f8f5073f +SIZE (reportlab-4.4.1.tar.gz) = 3509107 SHA256 (pfbfer-20180109.zip) = 851b431550e866b217317d09dd33b5535ae081200975ad4dd25e80be2af10fec SIZE (pfbfer-20180109.zip) = 737561 diff --git a/shells/yash/Makefile b/shells/yash/Makefile index 87d85f11dab7..571fff93015d 100644 --- a/shells/yash/Makefile +++ b/shells/yash/Makefile @@ -1,5 +1,5 @@ PORTNAME= yash -DISTVERSION= 2.58.1 +DISTVERSION= 2.59 CATEGORIES= shells MASTER_SITES= https://github.com/magicant/${PORTNAME}/releases/download/${DISTVERSION}/ diff --git a/shells/yash/distinfo b/shells/yash/distinfo index 9b7d6bda5df1..44da919f4c82 100644 --- a/shells/yash/distinfo +++ b/shells/yash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739132688 -SHA256 (yash-2.58.1.tar.xz) = 7674ece98dc77bcc753db49c4311c30532f981682205f9047f20213a3a6755bb -SIZE (yash-2.58.1.tar.xz) = 784816 +TIMESTAMP = 1747606175 +SHA256 (yash-2.59.tar.xz) = 299a50ea70f23dcbb94cf278f3e99e788b20b613185a0426ed5fdd189b1711ee +SIZE (yash-2.59.tar.xz) = 806348 diff --git a/shells/yash/pkg-plist b/shells/yash/pkg-plist index e8e233349e18..0a8e35a16955 100644 --- a/shells/yash/pkg-plist +++ b/shells/yash/pkg-plist @@ -17,16 +17,20 @@ share/man/man1/yash.1.gz %%DATADIR%%/completion/bash %%DATADIR%%/completion/bg %%DATADIR%%/completion/bindkey +%%DATADIR%%/completion/bmake %%DATADIR%%/completion/break %%DATADIR%%/completion/bsdtar %%DATADIR%%/completion/carthage %%DATADIR%%/completion/cat +%%DATADIR%%/completion/catgirl %%DATADIR%%/completion/cd %%DATADIR%%/completion/chgrp %%DATADIR%%/completion/chmod %%DATADIR%%/completion/chown %%DATADIR%%/completion/chsh %%DATADIR%%/completion/cmp +%%DATADIR%%/completion/cmus +%%DATADIR%%/completion/cmus-remote %%DATADIR%%/completion/comm %%DATADIR%%/completion/command %%DATADIR%%/completion/complete @@ -62,6 +66,7 @@ share/man/man1/yash.1.gz %%DATADIR%%/completion/fgrep %%DATADIR%%/completion/file %%DATADIR%%/completion/find +%%DATADIR%%/completion/fnf %%DATADIR%%/completion/fold %%DATADIR%%/completion/fzy %%DATADIR%%/completion/gawk @@ -93,6 +98,7 @@ share/man/man1/yash.1.gz %%DATADIR%%/completion/git-log %%DATADIR%%/completion/git-ls-remote %%DATADIR%%/completion/git-merge +%%DATADIR%%/completion/git-mv %%DATADIR%%/completion/git-name-rev %%DATADIR%%/completion/git-notes %%DATADIR%%/completion/git-pull @@ -120,6 +126,7 @@ share/man/man1/yash.1.gz %%DATADIR%%/completion/gitg %%DATADIR%%/completion/gitk %%DATADIR%%/completion/gitx +%%DATADIR%%/completion/gmake %%DATADIR%%/completion/gnutar %%DATADIR%%/completion/grep %%DATADIR%%/completion/gtar diff --git a/sysutils/httm/Makefile b/sysutils/httm/Makefile index ce18d00723ef..e66152396ece 100644 --- a/sysutils/httm/Makefile +++ b/sysutils/httm/Makefile @@ -1,5 +1,5 @@ PORTNAME= httm -DISTVERSION= 0.47.0 +DISTVERSION= 0.47.1 CATEGORIES= sysutils MAINTAINER= bofh@FreeBSD.org diff --git a/sysutils/httm/Makefile.crates b/sysutils/httm/Makefile.crates index e47e254aa53b..5faebca22b72 100644 --- a/sysutils/httm/Makefile.crates +++ b/sysutils/httm/Makefile.crates @@ -1,9 +1,3 @@ -===> License MPL20 accepted by the user -===> httm-0.47.0 depends on file: /usr/local/sbin/pkg - found -===> Fetching all distfiles required by httm-0.47.0 for building -===> Extracting for httm-0.47.0 -=> SHA256 Checksum OK for kimono-koans-httm-0.47.0_GH0.tar.gz. -===> Moving crates to /usr/ports/sysutils/httm/work/httm-0.47.0/cargo-crates CARGO_CRATES= ahash-0.3.8 \ aho-corasick-1.1.3 \ ansi_term-0.12.1 \ @@ -22,8 +16,8 @@ CARGO_CRATES= ahash-0.3.8 \ cfg-if-1.0.0 \ cfg_aliases-0.2.1 \ clap-2.34.0 \ - clap-4.5.37 \ - clap_builder-4.5.37 \ + clap-4.5.38 \ + clap_builder-4.5.38 \ clap_lex-0.7.4 \ colorchoice-1.0.3 \ console-0.15.5 \ @@ -76,7 +70,7 @@ CARGO_CRATES= ahash-0.3.8 \ memchr-2.7.4 \ memoffset-0.8.0 \ nix-0.24.3 \ - nix-0.30.0 \ + nix-0.30.1 \ nu-ansi-term-0.50.1 \ num-conv-0.1.0 \ num_threads-0.1.6 \ diff --git a/sysutils/httm/distinfo b/sysutils/httm/distinfo index 7c0effed99a4..9be2027f1a86 100644 --- a/sysutils/httm/distinfo +++ b/sysutils/httm/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1746269811 +TIMESTAMP = 1747596368 SHA256 (rust/crates/ahash-0.3.8.crate) = e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217 SIZE (rust/crates/ahash-0.3.8.crate) = 28650 SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 @@ -35,10 +35,10 @@ SHA256 (rust/crates/cfg_aliases-0.2.1.crate) = 613afe47fcd5fac7ccf1db93babcb082c SIZE (rust/crates/cfg_aliases-0.2.1.crate) = 6355 SHA256 (rust/crates/clap-2.34.0.crate) = a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c SIZE (rust/crates/clap-2.34.0.crate) = 202210 -SHA256 (rust/crates/clap-4.5.37.crate) = eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071 -SIZE (rust/crates/clap-4.5.37.crate) = 56962 -SHA256 (rust/crates/clap_builder-4.5.37.crate) = efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2 -SIZE (rust/crates/clap_builder-4.5.37.crate) = 168761 +SHA256 (rust/crates/clap-4.5.38.crate) = ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000 +SIZE (rust/crates/clap-4.5.38.crate) = 57140 +SHA256 (rust/crates/clap_builder-4.5.38.crate) = 379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120 +SIZE (rust/crates/clap_builder-4.5.38.crate) = 169177 SHA256 (rust/crates/clap_lex-0.7.4.crate) = f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6 SIZE (rust/crates/clap_lex-0.7.4.crate) = 12858 SHA256 (rust/crates/colorchoice-1.0.3.crate) = 5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990 @@ -143,8 +143,8 @@ SHA256 (rust/crates/memoffset-0.8.0.crate) = d61c719bcfbcf5d62b3a09efa6088de8c54 SIZE (rust/crates/memoffset-0.8.0.crate) = 8912 SHA256 (rust/crates/nix-0.24.3.crate) = fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069 SIZE (rust/crates/nix-0.24.3.crate) = 266843 -SHA256 (rust/crates/nix-0.30.0.crate) = 537bc3c4a347b87fd52ac6c03a02ab1302962cfd93373c5d7a112cdc337854cc -SIZE (rust/crates/nix-0.30.0.crate) = 342229 +SHA256 (rust/crates/nix-0.30.1.crate) = 74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6 +SIZE (rust/crates/nix-0.30.1.crate) = 342015 SHA256 (rust/crates/nu-ansi-term-0.50.1.crate) = d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399 SIZE (rust/crates/nu-ansi-term-0.50.1.crate) = 28536 SHA256 (rust/crates/num-conv-0.1.0.crate) = 51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9 @@ -325,5 +325,5 @@ SHA256 (rust/crates/xattr-1.5.0.crate) = 0d65cbf2f12c15564212d48f4e3dfb87923d25d SIZE (rust/crates/xattr-1.5.0.crate) = 14694 SHA256 (rust/crates/yaml-rust-0.3.5.crate) = e66366e18dc58b46801afbf2ca7661a9f59cc8c5962c29892b6039b4f86fa992 SIZE (rust/crates/yaml-rust-0.3.5.crate) = 42087 -SHA256 (kimono-koans-httm-0.47.0_GH0.tar.gz) = bf0d12b822d13838bdad289b59dfa4bcc5436b1d6621abb8e400cd1f52e12f5d -SIZE (kimono-koans-httm-0.47.0_GH0.tar.gz) = 136271 +SHA256 (kimono-koans-httm-0.47.1_GH0.tar.gz) = 30174bbf0ee2c29590e2ae768393ca7ffc302f2a4b4bc481f363f8e51cfcf757 +SIZE (kimono-koans-httm-0.47.1_GH0.tar.gz) = 136345 diff --git a/textproc/fzf/Makefile b/textproc/fzf/Makefile index 2f1bc8578a87..81193ac27c5c 100644 --- a/textproc/fzf/Makefile +++ b/textproc/fzf/Makefile @@ -1,6 +1,6 @@ PORTNAME= fzf DISTVERSIONPREFIX= v -DISTVERSION= 0.61.2 +DISTVERSION= 0.62.0 CATEGORIES= textproc MASTER_SITES= https://raw.githubusercontent.com/${GH_ACCOUNT}/${GH_PROJECT}/${DISTVERSIONFULL}/:gomod DISTFILES= go.mod:gomod @@ -21,7 +21,7 @@ GH_PROJECT= fzf GO_MODULE= github.com/junegunn/fzf GO_BUILDFLAGS= -ldflags="-X main.version=${DISTVERSION} -X main.revision=${COMMIT_ID} -s -w" -COMMIT_ID= 90ad1b7 +COMMIT_ID= d226d84 PLIST_FILES= bin/fzf share/man/man1/fzf.1.gz diff --git a/textproc/fzf/distinfo b/textproc/fzf/distinfo index 3c60274ecc1b..2b56ac886d08 100644 --- a/textproc/fzf/distinfo +++ b/textproc/fzf/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1747219243 -SHA256 (go/textproc_fzf/junegunn-fzf-v0.61.2_GH0/go.mod) = d28136ddcb65827d87be980ad5387e4aeee3f01edcb3f0c74aa031b895ae4f55 -SIZE (go/textproc_fzf/junegunn-fzf-v0.61.2_GH0/go.mod) = 527 -SHA256 (go/textproc_fzf/junegunn-fzf-v0.61.2_GH0/junegunn-fzf-v0.61.2_GH0.tar.gz) = 15a2d8b9bcd9cf85219f02f3cf750c45acd3d5901ce69a7dcdb9db3e12f36a90 -SIZE (go/textproc_fzf/junegunn-fzf-v0.61.2_GH0/junegunn-fzf-v0.61.2_GH0.tar.gz) = 331925 +TIMESTAMP = 1747596554 +SHA256 (go/textproc_fzf/junegunn-fzf-v0.62.0_GH0/go.mod) = d28136ddcb65827d87be980ad5387e4aeee3f01edcb3f0c74aa031b895ae4f55 +SIZE (go/textproc_fzf/junegunn-fzf-v0.62.0_GH0/go.mod) = 527 +SHA256 (go/textproc_fzf/junegunn-fzf-v0.62.0_GH0/junegunn-fzf-v0.62.0_GH0.tar.gz) = e5beae86a3d026b2c2cfc165715d45b831b9f337a9e96f711ba3bc3d15e50900 +SIZE (go/textproc_fzf/junegunn-fzf-v0.62.0_GH0/junegunn-fzf-v0.62.0_GH0.tar.gz) = 333078 diff --git a/www/librewolf/Makefile b/www/librewolf/Makefile index 15e83127c5e4..e4f0bb300adb 100644 --- a/www/librewolf/Makefile +++ b/www/librewolf/Makefile @@ -1,5 +1,5 @@ PORTNAME= librewolf -DISTVERSION= 138.0.3 +DISTVERSION= 138.0.4 LWPATCH= -1 DISTVERSIONSUFFIX= ${LWPATCH}.source CATEGORIES= www wayland diff --git a/www/librewolf/distinfo b/www/librewolf/distinfo index 5848fa1442f7..f9f8c30042a3 100644 --- a/www/librewolf/distinfo +++ b/www/librewolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747328459 -SHA256 (librewolf-138.0.3-1.source.tar.gz) = 0a849bb4cb4448004451f1af87c12a951d782048e8668b9b6754246089c45dcb -SIZE (librewolf-138.0.3-1.source.tar.gz) = 1019083591 +TIMESTAMP = 1747577982 +SHA256 (librewolf-138.0.4-1.source.tar.gz) = b63081971871154cf115ef3f237e865c2c1358c7086c3ff71c21918d4f343e9f +SIZE (librewolf-138.0.4-1.source.tar.gz) = 1018411007 |