diff options
Diffstat (limited to 'devel')
59 files changed, 287 insertions, 256 deletions
diff --git a/devel/athens/Makefile b/devel/athens/Makefile index fdedcce7ab90..15669abb7384 100644 --- a/devel/athens/Makefile +++ b/devel/athens/Makefile @@ -1,6 +1,7 @@ PORTNAME= athens DISTVERSIONPREFIX= v DISTVERSION= 0.16.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org @@ -13,14 +14,20 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= go:1.23,modules USE_RC_SUBR= ${PORTNAME} -BUILD_DATE= 2025-09-13-00:00:00-UTC - GO_MODULE= github.com/gomods/${PORTNAME} GO_TARGET= ./cmd/proxy GO_BUILDFLAGS= -ldflags " \ -X github.com/gomods/${PORTNAME}/pkg/build.version=${DISTVERSION} \ -X github.com/gomods/${PORTNAME}/pkg/build.buildDate=${BUILD_DATE}" +SUB_LIST= ATHENS_USER=${USERS} \ + ATHENS_GROUP=${GROUPS} + +USERS= ${PORTNAME} +GROUPS= ${PORTNAME} + +BUILD_DATE= 2025-09-13-00:00:00-UTC + do-install: ${INSTALL_PROGRAM} ${WRKDIR}/bin/proxy ${STAGEDIR}${PREFIX}/bin/${PORTNAME} diff --git a/devel/athens/files/athens.in b/devel/athens/files/athens.in index 2c59b63c0f91..f9857d8fd2ef 100644 --- a/devel/athens/files/athens.in +++ b/devel/athens/files/athens.in @@ -1,7 +1,7 @@ #!/bin/sh # # PROVIDE: athens -# REQUIRE: networking +# REQUIRE: LOGIN networking # KEYWORD: shutdown # # athens_enable (bool): @@ -12,17 +12,28 @@ # Default value %%ETCDIR%%/athens.toml # Path to the athens configuration file # +# athens_user (string) +# This is the user that athens runs as +# Set to %%ATHENS_USER%% by default +# +# athens_group (string) +# This is the group that athens runs as +# Set to %%ATHENS_GROUP%% by default . /etc/rc.subr +name=athens +rcvar=athens_enable + : ${athens_enable:="NO"} : ${athens_config:="%%ETCDIR%%/athens.toml"} +: ${athens_user:=%%ATHENS_USER%%} +: ${athens_group:=%%ATHENS_GROUP%%} +: ${athens_pidfile:="/var/run/athens.pid"} -name=athens -rcvar=athens_enable athens_command="%%PREFIX%%/bin/athens -config_file ${athens_config}" command="/usr/sbin/daemon" -command_args="-S ${athens_command}" +command_args="-p ${athens_pidfile} -u ${athens_user} -S ${athens_command}" PATH="${PATH}:%%PREFIX%%/bin" diff --git a/devel/aws-c-s3/Makefile b/devel/aws-c-s3/Makefile index 086b1226ac77..8ec5faa7e7ff 100644 --- a/devel/aws-c-s3/Makefile +++ b/devel/aws-c-s3/Makefile @@ -1,6 +1,6 @@ PORTNAME= aws-c-s3 DISTVERSIONPREFIX= v -DISTVERSION= 0.9.0 +DISTVERSION= 0.9.1 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org diff --git a/devel/aws-c-s3/distinfo b/devel/aws-c-s3/distinfo index bcb9c4a7ad4e..0bad17d158ea 100644 --- a/devel/aws-c-s3/distinfo +++ b/devel/aws-c-s3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758474415 -SHA256 (awslabs-aws-c-s3-v0.9.0_GH0.tar.gz) = 600ad401dbd20f4cb450023cfbdba53de5b77752b73f38a5ae7672b88bed6f1f -SIZE (awslabs-aws-c-s3-v0.9.0_GH0.tar.gz) = 390065 +TIMESTAMP = 1759587015 +SHA256 (awslabs-aws-c-s3-v0.9.1_GH0.tar.gz) = a80f20fa751ec3dbc3d24bc01bc56424925133d01c95e67deefa107cbb75563d +SIZE (awslabs-aws-c-s3-v0.9.1_GH0.tar.gz) = 390096 diff --git a/devel/bcunit/Makefile b/devel/bcunit/Makefile index 7e97079cfa15..0794d71c0d85 100644 --- a/devel/bcunit/Makefile +++ b/devel/bcunit/Makefile @@ -9,7 +9,7 @@ WWW= https://gitlab.linphone.org/BC/public/bcunit LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake libtool pathfix pkgconfig +USES= cmake pathfix pkgconfig USE_GITLAB= yes GL_SITE= https://gitlab.linphone.org/BC GL_ACCOUNT= public diff --git a/devel/csmith/Makefile b/devel/csmith/Makefile index 4d62c42ae389..14ef38dedd52 100644 --- a/devel/csmith/Makefile +++ b/devel/csmith/Makefile @@ -10,7 +10,7 @@ COMMENT= Generates random C programs that conform to the C99 standard LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake libtool localbase perl5 shebangfix +USES= cmake localbase perl5 shebangfix USE_CXXSTD= c++11 USE_GITHUB= yes GH_ACCOUNT= csmith-project diff --git a/devel/dbus/Makefile b/devel/dbus/Makefile index 9ca1aa15e5d7..6568598ae99f 100644 --- a/devel/dbus/Makefile +++ b/devel/dbus/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libexpat.so:textproc/expat2 -USES= cpe libtool localbase meson pkgconfig python:build \ +USES= cpe localbase meson pkgconfig python:build \ shebangfix tar:xz CPE_VENDOR= d-bus_project CPE_PRODUCT= d-bus diff --git a/devel/gitea-act_runner/Makefile b/devel/gitea-act_runner/Makefile index 664984d85392..71a9305ffea4 100644 --- a/devel/gitea-act_runner/Makefile +++ b/devel/gitea-act_runner/Makefile @@ -1,7 +1,7 @@ PORTNAME= act_runner DISTVERSIONPREFIX= v DISTVERSION= 0.2.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= gitea- diff --git a/devel/gitea-act_runner/files/act_runner.in b/devel/gitea-act_runner/files/act_runner.in index fa243278cc7e..119b92aca300 100644 --- a/devel/gitea-act_runner/files/act_runner.in +++ b/devel/gitea-act_runner/files/act_runner.in @@ -27,14 +27,21 @@ load_rc_config "${name}" : ${act_runner_flags:="-c ${act_runner_config} daemon"} procname="%%PREFIX%%/bin/act_runner" -command="${procname} ${act_runner_flags}" +command="/usr/sbin/daemon" pidfile="/var/run/${name}.pid" -start_cmd="${name}_start" -sig_stop=KILL +required_files=${act_runner_config} +command_args=" -r -S -l ${act_runner_facility} -s ${act_runner_priority} \ + -T ${name} \ + -u ${act_runner_user} -p ${pidfile} \ + -o ${act_runner_log_file} \ + ${procname} ${act_runner_flags}" -act_runner_start() { +prestart_cmd="${name}_prestart" +sig_stop=TERM + +act_runner_prestart() { # ensure the log directories are owned by the unprivileged user for d in "${act_runner_log_dir}"; do if [ ! -e "$d" ]; then @@ -42,11 +49,6 @@ act_runner_start() { chown "${act_runner_user}" "$d" fi done - /usr/sbin/daemon -S -l "${act_runner_facility}" -s "${act_runner_priority}" \ - -T "${name}" \ - -u "${act_runner_user}" -p "${pidfile}" \ - -o "${act_runner_log_file}" \ - $command } run_rc_command "$1" diff --git a/devel/got/Makefile b/devel/got/Makefile index 7f0341e26f4c..13848c6899c3 100644 --- a/devel/got/Makefile +++ b/devel/got/Makefile @@ -1,5 +1,5 @@ PORTNAME= got -DISTVERSION= 0.119 +DISTVERSION= 0.120 CATEGORIES= devel MASTER_SITES= https://gameoftrees.org/releases/portable/ DISTNAME= got-portable-${DISTVERSION} diff --git a/devel/got/distinfo b/devel/got/distinfo index 83e2a749302b..b427d16b1aef 100644 --- a/devel/got/distinfo +++ b/devel/got/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759265320 -SHA256 (got-portable-0.119.tar.gz) = 85009c9bb419c633eeb8a80fd269a4db40927fc68969924b6f9d5389a0a0f6f9 -SIZE (got-portable-0.119.tar.gz) = 1610900 +TIMESTAMP = 1759531771 +SHA256 (got-portable-0.120.tar.gz) = b7a60c6761f6dc2810f676606a2b32eb7631c17a96dcc74b8d99b67b91e89f43 +SIZE (got-portable-0.120.tar.gz) = 1679016 diff --git a/devel/grpc-gateway/Makefile b/devel/grpc-gateway/Makefile index 30f0d2307c0a..8c3222cff9ef 100644 --- a/devel/grpc-gateway/Makefile +++ b/devel/grpc-gateway/Makefile @@ -1,7 +1,6 @@ PORTNAME= grpc-gateway DISTVERSIONPREFIX= v -DISTVERSION= 2.27.2 -PORTREVISION= 1 +DISTVERSION= 2.27.3 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org diff --git a/devel/grpc-gateway/distinfo b/devel/grpc-gateway/distinfo index 8ab95949af86..6200f4ca3799 100644 --- a/devel/grpc-gateway/distinfo +++ b/devel/grpc-gateway/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1755763715 -SHA256 (go/devel_grpc-gateway/grpc-gateway-v2.27.2/v2.27.2.mod) = 3ae455451cc79d3453a51cd9286bc7a7ce54fc3606089f46fc789e1226d48981 -SIZE (go/devel_grpc-gateway/grpc-gateway-v2.27.2/v2.27.2.mod) = 682 -SHA256 (go/devel_grpc-gateway/grpc-gateway-v2.27.2/v2.27.2.zip) = 6dae1ad81ee4d0941b9eee20d0899886c32747de8c71565a7310a039d81e13be -SIZE (go/devel_grpc-gateway/grpc-gateway-v2.27.2/v2.27.2.zip) = 1151455 +TIMESTAMP = 1759575159 +SHA256 (go/devel_grpc-gateway/grpc-gateway-v2.27.3/v2.27.3.mod) = 5485cf8ad87847e3dcd3aacc6b982ce5e96aa774110ee9ec4af9dbad46f57572 +SIZE (go/devel_grpc-gateway/grpc-gateway-v2.27.3/v2.27.3.mod) = 683 +SHA256 (go/devel_grpc-gateway/grpc-gateway-v2.27.3/v2.27.3.zip) = 82f62a00e6a1ab4d571901a8cd19c1fbad98320a350f260e8bc77878c7813492 +SIZE (go/devel_grpc-gateway/grpc-gateway-v2.27.3/v2.27.3.zip) = 1196274 diff --git a/devel/jetbrains-rustrover/Makefile b/devel/jetbrains-rustrover/Makefile index 11590dcc04c8..f8a99598190f 100644 --- a/devel/jetbrains-rustrover/Makefile +++ b/devel/jetbrains-rustrover/Makefile @@ -1,6 +1,6 @@ PORTNAME= rustrover -DISTVERSION= 2025.2 -CATEGORIES= devel +DISTVERSION= 2025.2.2 +CATEGORIES= devel java MASTER_SITES= https://download-cdn.jetbrains.com/rustrover/ PKGNAMEPREFIX= jetbrains- DISTNAME= RustRover-${PORTVERSION} @@ -25,7 +25,7 @@ RUN_DEPENDS= cmake:devel/cmake-core \ jetbrains-sqlite>=241.15989.150:devel/jetbrains-sqlite \ lsof:sysutils/lsof -USES= cpe java python:run +USES= cpe java python:run desktop-file-utils CPE_VENDOR= jetbrains JAVA_VERSION= 21+ diff --git a/devel/jetbrains-rustrover/distinfo b/devel/jetbrains-rustrover/distinfo index 2015ddbddca6..053d58d8ab51 100644 --- a/devel/jetbrains-rustrover/distinfo +++ b/devel/jetbrains-rustrover/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754944071 -SHA256 (jetbrains/RustRover-2025.2.tar.gz) = 98bf8781c9325d3c4ddd6b0f4efb934b209f2afcbf97533effd2e8ffe40800e0 -SIZE (jetbrains/RustRover-2025.2.tar.gz) = 1254920556 +TIMESTAMP = 1758560930 +SHA256 (jetbrains/RustRover-2025.2.2.tar.gz) = cc2cfd0af3967a5ce65af5064ccac03bfb2ee2a1ed7e18e8a2c1a009a6d3721c +SIZE (jetbrains/RustRover-2025.2.2.tar.gz) = 1261938223 diff --git a/devel/jetbrains-rustrover/pkg-plist b/devel/jetbrains-rustrover/pkg-plist index 986f474e9fd7..9596a87841bb 100644 --- a/devel/jetbrains-rustrover/pkg-plist +++ b/devel/jetbrains-rustrover/pkg-plist @@ -18,7 +18,7 @@ share/applications/rustrover.desktop %%DATADIR%%/lib/app-client.jar %%DATADIR%%/lib/app.jar %%DATADIR%%/lib/bouncy-castle.jar -%%DATADIR%%/lib/build-marker-RR-252.23892.452 +%%DATADIR%%/lib/build-marker-RR-252.26199.159 %%DATADIR%%/lib/eclipse.lsp4j.debug.jar %%DATADIR%%/lib/eclipse.lsp4j.jar %%DATADIR%%/lib/eclipse.lsp4j.jsonrpc.debug.jar @@ -55,6 +55,7 @@ share/applications/rustrover.desktop %%DATADIR%%/lib/modules/intellij.grid.types.jar %%DATADIR%%/lib/modules/intellij.ide.startup.importSettings.jar %%DATADIR%%/lib/modules/intellij.libraries.ai.grazie.spell.gec.engine.local.jar +%%DATADIR%%/lib/modules/intellij.libraries.coil.jar %%DATADIR%%/lib/modules/intellij.libraries.compose.foundation.desktop.jar %%DATADIR%%/lib/modules/intellij.libraries.grpc.jar %%DATADIR%%/lib/modules/intellij.libraries.grpc.netty.shaded.jar @@ -70,6 +71,7 @@ share/applications/rustrover.desktop %%DATADIR%%/lib/modules/intellij.platform.clouds.jar %%DATADIR%%/lib/modules/intellij.platform.collaborationTools.jar %%DATADIR%%/lib/modules/intellij.platform.compose.jar +%%DATADIR%%/lib/modules/intellij.platform.compose.markdown.jar %%DATADIR%%/lib/modules/intellij.platform.coverage.agent.jar %%DATADIR%%/lib/modules/intellij.platform.coverage.jar %%DATADIR%%/lib/modules/intellij.platform.dap.jar @@ -103,13 +105,16 @@ share/applications/rustrover.desktop %%DATADIR%%/lib/modules/intellij.platform.jewel.markdown.extensions.gfmAlerts.jar %%DATADIR%%/lib/modules/intellij.platform.jewel.markdown.extensions.gfmStrikethrough.jar %%DATADIR%%/lib/modules/intellij.platform.jewel.markdown.extensions.gfmTables.jar +%%DATADIR%%/lib/modules/intellij.platform.jewel.markdown.extensions.images.jar %%DATADIR%%/lib/modules/intellij.platform.jewel.markdown.ideLafBridgeStyling.jar %%DATADIR%%/lib/modules/intellij.platform.jewel.ui.jar %%DATADIR%%/lib/modules/intellij.platform.kernel.backend.jar %%DATADIR%%/lib/modules/intellij.platform.kernel.impl.jar +%%DATADIR%%/lib/modules/intellij.platform.lang.impl.backend.jar %%DATADIR%%/lib/modules/intellij.platform.lvcs.impl.jar %%DATADIR%%/lib/modules/intellij.platform.managed.cache.backend.jar %%DATADIR%%/lib/modules/intellij.platform.ml.impl.jar +%%DATADIR%%/lib/modules/intellij.platform.ml.logs.jar %%DATADIR%%/lib/modules/intellij.platform.monolith.jar %%DATADIR%%/lib/modules/intellij.platform.navbar.backend.jar %%DATADIR%%/lib/modules/intellij.platform.navbar.frontend.jar @@ -126,7 +131,6 @@ share/applications/rustrover.desktop %%DATADIR%%/lib/modules/intellij.platform.registry.cloud.jar %%DATADIR%%/lib/modules/intellij.platform.rpc.backend.jar %%DATADIR%%/lib/modules/intellij.platform.scopes.backend.jar -%%DATADIR%%/lib/modules/intellij.platform.scopes.jar %%DATADIR%%/lib/modules/intellij.platform.searchEverywhere.backend.jar %%DATADIR%%/lib/modules/intellij.platform.searchEverywhere.frontend.jar %%DATADIR%%/lib/modules/intellij.platform.searchEverywhere.jar @@ -135,6 +139,8 @@ share/applications/rustrover.desktop %%DATADIR%%/lib/modules/intellij.platform.tasks.impl.jar %%DATADIR%%/lib/modules/intellij.platform.tasks.jar %%DATADIR%%/lib/modules/intellij.platform.tips.jar +%%DATADIR%%/lib/modules/intellij.platform.trialPromotion.common.jar +%%DATADIR%%/lib/modules/intellij.platform.trialPromotion.idesWithoutFreeTier.jar %%DATADIR%%/lib/modules/intellij.platform.vcs.dvcs.impl.jar %%DATADIR%%/lib/modules/intellij.platform.vcs.dvcs.impl.shared.jar %%DATADIR%%/lib/modules/intellij.platform.vcs.impl.backend.jar @@ -260,7 +266,6 @@ share/applications/rustrover.desktop %%DATADIR%%/plugins/fullLine/lib/clikt.jar %%DATADIR%%/plugins/fullLine/lib/fullLine.jar %%DATADIR%%/plugins/fullLine/lib/jgrapht.core.jar -%%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.core.completion.trigger.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.css.local.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.go.local.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.html.local.jar @@ -275,6 +280,7 @@ share/applications/rustrover.desktop %%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.ruby.local.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.rust.local.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.fullLine.terraform.local.jar +%%DATADIR%%/plugins/fullLine/lib/modules/intellij.ml.llm.completion.trigger.model.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.ml.llm.cpp.completion.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.ml.llm.css.completion.jar %%DATADIR%%/plugins/fullLine/lib/modules/intellij.ml.llm.go.completion.jar @@ -486,9 +492,9 @@ share/applications/rustrover.desktop %%DATADIR%%/plugins/grid-plugin/lib/modules/intellij.grid.scripting.rt.jar %%DATADIR%%/plugins/html-tools/lib/html-tools.jar %%DATADIR%%/plugins/intellij-rust/caches/crates-local-index.zip -%%DATADIR%%/plugins/intellij-rust/caches/macro-expansion-cache-1.88.0.zip -%%DATADIR%%/plugins/intellij-rust/caches/rust-src-bundle-1.88.0.zip -%%DATADIR%%/plugins/intellij-rust/caches/rust-stdlib-vendor-1.88.0.zip +%%DATADIR%%/plugins/intellij-rust/caches/macro-expansion-cache-1.89.0.zip +%%DATADIR%%/plugins/intellij-rust/caches/rust-src-bundle-1.89.0.zip +%%DATADIR%%/plugins/intellij-rust/caches/rust-stdlib-vendor-1.89.0.zip %%DATADIR%%/plugins/intellij-rust/lib/antlr4-runtime.jar %%DATADIR%%/plugins/intellij-rust/lib/commons-text.jar %%DATADIR%%/plugins/intellij-rust/lib/intellij-rust.jar @@ -504,11 +510,11 @@ share/applications/rustrover.desktop %%DATADIR%%/plugins/intellij-rust/prettyPrinters/lldb_formatters/lldb/formatters.pyi %%DATADIR%%/plugins/intellij-rust/prettyPrinters/lldb_formatters/lldb_providers.py %%DATADIR%%/plugins/intellij-rust/prettyPrinters/rust_types.py +%%DATADIR%%/plugins/javascript-debugger/lib/javascript-debugger-frontend.jar %%DATADIR%%/plugins/javascript-debugger/lib/javascript-debugger.jar %%DATADIR%%/plugins/javascript-debugger/lib/modules/intellij.javascript.debugger.backend.jar %%DATADIR%%/plugins/javascript-debugger/lib/modules/intellij.javascript.debugger.frontend.jar %%DATADIR%%/plugins/javascript-debugger/lib/modules/intellij.javascript.debugger.shared.jar -%%DATADIR%%/plugins/javascript-debugger/lib/modules/intellij.javascript.debugger.ui.shared.jar %%DATADIR%%/plugins/javascript-debugger/lib/modules/intellij.javascript.debugger.webstorm.specific.jar %%DATADIR%%/plugins/javascript-debugger/lib/modules/intellij.javascript.reactNativeDebugger.jar %%DATADIR%%/plugins/javascript-debugger/nodeDebugInitializer/debugConnectionForwarder.js @@ -560,10 +566,11 @@ share/applications/rustrover.desktop %%DATADIR%%/plugins/javascript-plugin/helpers/protractor-intellij/lib/protractor-intellij-tree.js %%DATADIR%%/plugins/javascript-plugin/helpers/protractor-intellij/lib/protractor-intellij-util.js %%DATADIR%%/plugins/javascript-plugin/helpers/vitest-intellij/node_modules/vitest-intellij-reporter-safe.js +%%DATADIR%%/plugins/javascript-plugin/helpers/vitest-intellij/vitest-intellij-file-path-resolver.js %%DATADIR%%/plugins/javascript-plugin/helpers/vitest-intellij/vitest-intellij-reporter.js %%DATADIR%%/plugins/javascript-plugin/helpers/vitest-intellij/vitest-intellij-util.js -%%DATADIR%%/plugins/javascript-plugin/js/js-predefined-d6986cc7102b-e03c56caf84a.ijx -%%DATADIR%%/plugins/javascript-plugin/js/js-predefined-d6986cc7102b-e03c56caf84a.txt +%%DATADIR%%/plugins/javascript-plugin/js/js-predefined-d6986cc7102b-9c94529fcfe0.ijx +%%DATADIR%%/plugins/javascript-plugin/js/js-predefined-d6986cc7102b-9c94529fcfe0.txt %%DATADIR%%/plugins/javascript-plugin/jsLanguageServicesImpl/external/!HowToUpdateBundledTypeScript.md %%DATADIR%%/plugins/javascript-plugin/jsLanguageServicesImpl/external/_tsserver.js %%DATADIR%%/plugins/javascript-plugin/jsLanguageServicesImpl/external/_typingsInstaller.js @@ -1426,6 +1433,11 @@ share/applications/rustrover.desktop %%DATADIR%%/plugins/vitejs/lib/vitejs.jar %%DATADIR%%/plugins/vuejs/lib/commons-text.jar %%DATADIR%%/plugins/vuejs/lib/vuejs.jar +%%DATADIR%%/plugins/vuejs/typescript-vue-plugin/node_modules/@vue/typescript-plugin/README.md +%%DATADIR%%/plugins/vuejs/typescript-vue-plugin/node_modules/@vue/typescript-plugin/index.js +%%DATADIR%%/plugins/vuejs/typescript-vue-plugin/node_modules/@vue/typescript-plugin/package-lock.json +%%DATADIR%%/plugins/vuejs/typescript-vue-plugin/node_modules/@vue/typescript-plugin/package.json +%%DATADIR%%/plugins/vuejs/typescript-vue-plugin/node_modules/@vue/typescript-plugin/rolldown.config.ts %%DATADIR%%/plugins/vuejs/vue-language-server/.gitignore %%DATADIR%%/plugins/vuejs/vue-language-server/README.md %%DATADIR%%/plugins/vuejs/vue-language-server/bin/vue-language-server.js @@ -1472,4 +1484,4 @@ share/applications/rustrover.desktop %%DATADIR%%/product-info.json share/man/man1/rustrover.1.gz @dir %%DATADIR%%/lib/skiko-awt-runtime-all -@dir %%DATADIR%%/plugins/station-plugin/toolbox/jetbrains-toolbox-2.7.0.48109.tar.gz +@dir %%DATADIR%%/plugins/station-plugin/toolbox/jetbrains-toolbox-2.8.1.52155.tar.gz diff --git a/devel/libaravis/Makefile b/devel/libaravis/Makefile index 285316a4b110..60318398ae1d 100644 --- a/devel/libaravis/Makefile +++ b/devel/libaravis/Makefile @@ -10,7 +10,7 @@ WWW= https://github.com/AravisProject/aravis/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= gnome libtool meson pkgconfig +USES= gnome meson pkgconfig USE_GITHUB= yes GH_ACCOUNT= AravisProject GH_PROJECT= aravis diff --git a/devel/liblxqt/Makefile b/devel/liblxqt/Makefile index 252ccb6afc7e..d2be00e86ba8 100644 --- a/devel/liblxqt/Makefile +++ b/devel/liblxqt/Makefile @@ -1,6 +1,6 @@ PORTNAME= liblxqt PORTVERSION= 2.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= LXQT diff --git a/devel/libphonenumber/Makefile b/devel/libphonenumber/Makefile index 803801e29e87..23aed5b161e4 100644 --- a/devel/libphonenumber/Makefile +++ b/devel/libphonenumber/Makefile @@ -1,6 +1,6 @@ PORTNAME= libphonenumber DISTVERSIONPREFIX= v -DISTVERSION= 9.0.14 +DISTVERSION= 9.0.15 CATEGORIES= devel MAINTAINER= kde@FreeBSD.org diff --git a/devel/libphonenumber/distinfo b/devel/libphonenumber/distinfo index ff4b19fd2620..203c6857eefb 100644 --- a/devel/libphonenumber/distinfo +++ b/devel/libphonenumber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1758422899 -SHA256 (google-libphonenumber-v9.0.14_GH0.tar.gz) = 76e9f41fbe812fc12af2531f3128dfee33fb777c3d8ce599af16c88df2861326 -SIZE (google-libphonenumber-v9.0.14_GH0.tar.gz) = 13019744 +TIMESTAMP = 1759562004 +SHA256 (google-libphonenumber-v9.0.15_GH0.tar.gz) = 815e7c49979bfec03f382b07375aa3ce497cd5af74cc767a5ce6670191c35d93 +SIZE (google-libphonenumber-v9.0.15_GH0.tar.gz) = 13020651 diff --git a/devel/libqt6xdg/Makefile b/devel/libqt6xdg/Makefile index f39a31bd3d92..1a44cafe87d9 100644 --- a/devel/libqt6xdg/Makefile +++ b/devel/libqt6xdg/Makefile @@ -1,6 +1,6 @@ PORTNAME= libqt6xdg PORTVERSION= 4.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= LXQT/${PORTNAME:S/6//} diff --git a/devel/marisa-trie/Makefile b/devel/marisa-trie/Makefile index a53b84d7b16d..5e646b59bc32 100644 --- a/devel/marisa-trie/Makefile +++ b/devel/marisa-trie/Makefile @@ -1,6 +1,7 @@ PORTNAME= marisa-trie DISTVERSIONPREFIX= v DISTVERSION= 0.3.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel @@ -12,52 +13,14 @@ LICENSE= BSD2CLAUSE LGPL21+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/COPYING.md -USES= cmake pathfix -USE_GITHUB= yes -GH_ACCOUNT= s-yata -GH_PROJECT= marisa-trie +USES= cmake:testing compiler:c++20-lang pathfix USE_LDCONFIG= yes -CMAKE_ARGS+= -DBUILD_SHARED_LIBS=ON -DENABLE_NATIVE_CODE=ON -CMAKE_BOOL+= ENABLE_NATIVE_CODE - -OPTIONS_DEFINE= SSE2 SSE3 SSSE3 SSE4 SSE41 SSE42 POPCNT BMI BMI2 -OPTIONS_DEFAULT=${MACHINE_CPU:tu} - -SSE2_DESC= Support for SSE2 -SSE2_CMAKE_ARGS= -DENABLE_NATIVE_CODE=ON -DHAVE_SSE2=ON -DENABLE_SSE2=ON -SSE2_CMAKE_BOOL+= HAVE_SSE2 ENABLE_SSE2 - -SSE3_DESC= Support for SSE3 -SSE3_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_SSE3=ON -DENABLE_SSE3=ON -SSE3_CMAKE_BOOL+= HAVE_SSE3 ENABLE_SSE3 - -SSSE3_DESC= Support for SSSE3 -SSSE3_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_SSSE3=ON -DENABLE_SSSE3=ON -SSSE3_CMAKE_BOOL+= HAVE_SSSE3 ENABLE_SSSE3 - -SSE4_DESC= Support for SSE4 -SSE4_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_SSE4=ON -DENABLE_SSE4=ON -SSE4_CMAKE_BOOL+= HAVE_SSE4 ENABLE_SSE4 - -SSE41_DESC= Support for SSE4.1 -SSE41_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_SSE4_1=ON -DENABLE_SSE4_1=ON -SSE41_CMAKE_BOOL+= HAVE_SSE4_1 ENABLE_SSE4_1 - -SSE42_DESC= Support for SSE4.2 -SSE42_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_SSE4_2=ON -DENABLE_SSE4_2=ON -SSE42_CMAKE_BOOL+= HAVE_SSE4_2 ENABLE_SSE4_2 - -POPCNT_DESC= Support for POPCNT -POPCNT_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_POPCNT=ON -DENABLE_POPCNT=ON -POPCNT_CMAKE_BOOL+= HAVE_POPCNT ENABLE_POPCNT - -BMI_DESC= Support for BMI -BMI_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_BMI=ON -DENABLE_BMI=ON -BMI_CMAKE_BOOL+= HAVE_BMI ENABLE_BMI +USE_GITHUB= yes +GH_ACCOUNT= s-yata -BMI2_DESC= Support for BMI2 -BMI2_CMAKE_ARGS+= -DENABLE_NATIVE_CODE=ON -DHAVE_BMI2=ON -DENABLE_BMI2=ON -BMI2_CMAKE_BOOL+= HAVE_BMI2 ENABLE_BMI2 +CMAKE_ON_amd64= ENABLE_NATIVE_CODE +CMAKE_ON= BUILD_SHARED_LIBS \ + ${CMAKE_ON_${ARCH}} .include <bsd.port.mk> diff --git a/devel/marisa-trie/files/patch-CMakeLists.txt b/devel/marisa-trie/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..6e8778796dcc --- /dev/null +++ b/devel/marisa-trie/files/patch-CMakeLists.txt @@ -0,0 +1,46 @@ +--- CMakeLists.txt.orig 2025-07-20 11:08:58 UTC ++++ CMakeLists.txt +@@ -19,7 +19,6 @@ function(check_macro_defined MACRO OUTPUT_VAR) + SOURCE_FROM_CONTENT + "check_${OUTPUT_VAR}.cc" + "#ifndef ${MACRO}\n#error \"${MACRO} is missing\"\n#endif\n" +- COMPILE_DEFINITIONS -march=native + ) + set("${OUTPUT_VAR}" "${result}" PARENT_SCOPE) + message("${OUTPUT_VAR}: ${result}") +@@ -46,25 +45,25 @@ function(add_native_code TARGET) + cmake_dependent_option(ENABLE_BMI2 "Use BMI2 instructions" ON "ENABLE_NATIVE_CODE;HAVE_BMI2" OFF) + function(add_native_code TARGET) + if(ENABLE_NATIVE_CODE) +- target_compile_options("${TARGET}" PRIVATE -march=native) ++# target_compile_options("${TARGET}" PRIVATE -march=native) + if(ENABLE_BMI2) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_BMI2 -mbmi2 -msse4) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_BMI2) + elseif(ENABLE_BMI) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_BMI -mbmi -msse4) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_BMI) + elseif(ENABLE_SSE4A) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4A -msse4a) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4A) + elseif(ENABLE_SSE4_2 AND ENABLE_POPCNT) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4 -msse4) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4) + elseif(ENABLE_SSE4_2) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4_2 -msse4.2) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4_2) + elseif(ENABLE_SSE4_1) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4_1 -msse4.1) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE4_1) + elseif(ENABLE_SSSE3) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSSE3 -mssse3) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSSE3) + elseif(ENABLE_SSE3) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE3 -msse3) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE3) + elseif(ENABLE_SSE2) +- target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE2 -msse2) ++ target_compile_options("${TARGET}" PRIVATE -DMARISA_USE_SSE2) + endif() + endif() + endfunction() diff --git a/devel/protobuf-go/Makefile b/devel/protobuf-go/Makefile index 67601a02a048..097fdebfdfa6 100644 --- a/devel/protobuf-go/Makefile +++ b/devel/protobuf-go/Makefile @@ -1,6 +1,6 @@ PORTNAME= protobuf-go DISTVERSIONPREFIX= v -DISTVERSION= 1.36.9 +DISTVERSION= 1.36.10 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org diff --git a/devel/protobuf-go/distinfo b/devel/protobuf-go/distinfo index e63d4d4fc880..1fe6af1afec2 100644 --- a/devel/protobuf-go/distinfo +++ b/devel/protobuf-go/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1757501214 -SHA256 (go/devel_protobuf-go/protobuf-go-v1.36.9/v1.36.9.mod) = 66595c5b637107cec82b3faddea4b105be9a3e113788eaf02252b409bd5d3f89 -SIZE (go/devel_protobuf-go/protobuf-go-v1.36.9/v1.36.9.mod) = 201 -SHA256 (go/devel_protobuf-go/protobuf-go-v1.36.9/v1.36.9.zip) = a8cd9b7f4b9e2d58784b247f4419b589e5b5286e986adc0477dd77b6994c5bb2 -SIZE (go/devel_protobuf-go/protobuf-go-v1.36.9/v1.36.9.zip) = 2254340 +TIMESTAMP = 1759523840 +SHA256 (go/devel_protobuf-go/protobuf-go-v1.36.10/v1.36.10.mod) = a75c105a852fbd8da8d8cfac09c2eab9a206cfd27ed37c973737e23f632ca96e +SIZE (go/devel_protobuf-go/protobuf-go-v1.36.10/v1.36.10.mod) = 124 +SHA256 (go/devel_protobuf-go/protobuf-go-v1.36.10/v1.36.10.zip) = 9265fbe7d073ca8571f1a9c4b8e8f20b244c35ad913346892d688e58fe4b1f22 +SIZE (go/devel_protobuf-go/protobuf-go-v1.36.10/v1.36.10.zip) = 2263898 diff --git a/devel/py-identify/Makefile b/devel/py-identify/Makefile index 7dd18371855d..44535e384361 100644 --- a/devel/py-identify/Makefile +++ b/devel/py-identify/Makefile @@ -1,5 +1,5 @@ PORTNAME= identify -DISTVERSION= 2.6.14 +DISTVERSION= 2.6.15 CATEGORIES= devel MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-identify/distinfo b/devel/py-identify/distinfo index 74117b0d8900..02ec2c853543 100644 --- a/devel/py-identify/distinfo +++ b/devel/py-identify/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757404872 -SHA256 (identify-2.6.14.tar.gz) = 663494103b4f717cb26921c52f8751363dc89db64364cd836a9bf1535f53cd6a -SIZE (identify-2.6.14.tar.gz) = 99283 +TIMESTAMP = 1759575076 +SHA256 (identify-2.6.15.tar.gz) = e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf +SIZE (identify-2.6.15.tar.gz) = 99311 diff --git a/devel/py-tox/Makefile b/devel/py-tox/Makefile index 43b28988b845..ec594c3cb73d 100644 --- a/devel/py-tox/Makefile +++ b/devel/py-tox/Makefile @@ -1,5 +1,5 @@ PORTNAME= tox -DISTVERSION= 4.30.2 +DISTVERSION= 4.30.3 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-tox/distinfo b/devel/py-tox/distinfo index 58d54e3f2c24..025fcd68cd0f 100644 --- a/devel/py-tox/distinfo +++ b/devel/py-tox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757404936 -SHA256 (tox-4.30.2.tar.gz) = 772925ad6c57fe35c7ed5ac3e958ac5ced21dff597e76fc40c1f5bf3cd1b6a2e -SIZE (tox-4.30.2.tar.gz) = 202622 +TIMESTAMP = 1759523878 +SHA256 (tox-4.30.3.tar.gz) = f3dd0735f1cd4e8fbea5a3661b77f517456b5f0031a6256432533900e34b90bf +SIZE (tox-4.30.3.tar.gz) = 202799 diff --git a/devel/pyside6-tools/distinfo b/devel/pyside6-tools/distinfo index f2e9afa2d5fe..130b5d9c9daf 100644 --- a/devel/pyside6-tools/distinfo +++ b/devel/pyside6-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756199026 -SHA256 (KDE/Qt/6.9.2/pyside-setup-everywhere-src-6.9.2.tar.xz) = 9ec087465342bdc9dbe492a30e58fdbbc5448655deacf5982a0fe7123f59222d -SIZE (KDE/Qt/6.9.2/pyside-setup-everywhere-src-6.9.2.tar.xz) = 16659400 +TIMESTAMP = 1759301534 +SHA256 (KDE/Qt/6.9.3/pyside-setup-everywhere-src-6.9.3.tar.xz) = 7cd2d5abb98f2e6f442b0e41f5fcf930e7312ae4b17f681316b1adc7b63bb172 +SIZE (KDE/Qt/6.9.3/pyside-setup-everywhere-src-6.9.3.tar.xz) = 16663380 diff --git a/devel/pyside6/distinfo b/devel/pyside6/distinfo index 5da70ab73961..7f4cffde3a9f 100644 --- a/devel/pyside6/distinfo +++ b/devel/pyside6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756198983 -SHA256 (KDE/Qt/6.9.2/pyside-setup-everywhere-src-6.9.2.tar.xz) = 9ec087465342bdc9dbe492a30e58fdbbc5448655deacf5982a0fe7123f59222d -SIZE (KDE/Qt/6.9.2/pyside-setup-everywhere-src-6.9.2.tar.xz) = 16659400 +TIMESTAMP = 1759301520 +SHA256 (KDE/Qt/6.9.3/pyside-setup-everywhere-src-6.9.3.tar.xz) = 7cd2d5abb98f2e6f442b0e41f5fcf930e7312ae4b17f681316b1adc7b63bb172 +SIZE (KDE/Qt/6.9.3/pyside-setup-everywhere-src-6.9.3.tar.xz) = 16663380 diff --git a/devel/qt6-5compat/distinfo b/devel/qt6-5compat/distinfo index 246db8af503e..90cba120be23 100644 --- a/devel/qt6-5compat/distinfo +++ b/devel/qt6-5compat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196357 -SHA256 (KDE/Qt/6.9.2/qt5compat-everywhere-src-6.9.2.tar.xz) = cb289905c689fc271ce783f8b67844040aa73d78f4f0cf8421fa713390a75b60 -SIZE (KDE/Qt/6.9.2/qt5compat-everywhere-src-6.9.2.tar.xz) = 14618016 +TIMESTAMP = 1759303154 +SHA256 (KDE/Qt/6.9.3/qt5compat-everywhere-src-6.9.3.tar.xz) = 091dac2124c2291c3566408720f89b1796cd458897c6acabd11f03976ad04461 +SIZE (KDE/Qt/6.9.3/qt5compat-everywhere-src-6.9.3.tar.xz) = 14619024 diff --git a/devel/qt6-base/Makefile b/devel/qt6-base/Makefile index ec92164f3f97..eba64f948e61 100644 --- a/devel/qt6-base/Makefile +++ b/devel/qt6-base/Makefile @@ -74,7 +74,8 @@ X11_LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ libxcb-image.so:x11/xcb-util-image \ libxcb-keysyms.so:x11/xcb-util-keysyms \ - libxcb-render-util.so:x11/xcb-util-renderutil + libxcb-render-util.so:x11/xcb-util-renderutil \ + libxcb-util.so:x11/xcb-util X11_USES= xorg X11_USE= XORG=ice,pixman,sm,x11,xau,xcb,xcomposite,xcursor,xdamage,xdmcp,xext,xfixes,xi,xinerama,xrandr,xrender X11_CMAKE_BOOL= FEATURE_xcb \ diff --git a/devel/qt6-base/distinfo b/devel/qt6-base/distinfo index f27032e50768..f536c16bbf58 100644 --- a/devel/qt6-base/distinfo +++ b/devel/qt6-base/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196361 -SHA256 (KDE/Qt/6.9.2/qtbase-everywhere-src-6.9.2.tar.xz) = 44be9c9ecfe04129c4dea0a7e1b36ad476c9cc07c292016ac98e7b41514f2440 -SIZE (KDE/Qt/6.9.2/qtbase-everywhere-src-6.9.2.tar.xz) = 49812824 +TIMESTAMP = 1759303163 +SHA256 (KDE/Qt/6.9.3/qtbase-everywhere-src-6.9.3.tar.xz) = c5a1a2f660356ec081febfa782998ae5ddbc5925117e64f50e4be9cd45b8dc6e +SIZE (KDE/Qt/6.9.3/qtbase-everywhere-src-6.9.3.tar.xz) = 49856272 diff --git a/devel/qt6-base/files/patch-cmake_QtFlagHandlingHelpers.cmake b/devel/qt6-base/files/patch-cmake_QtFlagHandlingHelpers.cmake deleted file mode 100644 index 561cc85a2ecd..000000000000 --- a/devel/qt6-base/files/patch-cmake_QtFlagHandlingHelpers.cmake +++ /dev/null @@ -1,13 +0,0 @@ ---- cmake/QtFlagHandlingHelpers.cmake.orig 2024-09-18 16:48:24 UTC -+++ cmake/QtFlagHandlingHelpers.cmake -@@ -177,6 +177,10 @@ function(qt_internal_add_link_flags_no_undefined targe - set(no_undefined_flag "-Wl,--no-undefined") - endif() - -+ if (CMAKE_SYSTEM_NAME MATCHES "FreeBSD") -+ set(no_undefined_flag "") -+ endif() -+ - set(CMAKE_REQUIRED_LINK_OPTIONS ${previous_CMAKE_REQUIRED_LINK_OPTIONS}) - - if (NOT HAVE_DASH_UNDEFINED_SYMBOLS AND NOT HAVE_DASH_DASH_NO_UNDEFINED) diff --git a/devel/qt6-base/files/patch-cmake_QtRpathHelpers.cmake b/devel/qt6-base/files/patch-cmake_QtRpathHelpers.cmake deleted file mode 100644 index 7899d3825fba..000000000000 --- a/devel/qt6-base/files/patch-cmake_QtRpathHelpers.cmake +++ /dev/null @@ -1,11 +0,0 @@ ---- cmake/QtRpathHelpers.cmake.orig 2023-09-21 19:24:26 UTC -+++ cmake/QtRpathHelpers.cmake -@@ -8,6 +8,8 @@ function(qt_internal_get_relative_rpath_base_token out - set(rpath_rel_base "@loader_path") - elseif(LINUX OR SOLARIS OR FREEBSD OR HURD OR OPENBSD) - set(rpath_rel_base "$ORIGIN") -+ elseif(CMAKE_SYSTEM_NAME MATCHES "FreeBSD") -+ set(rpath_rel_base "$ORIGIN") - else() - set(rpath_rel_base "NO_KNOWN_RPATH_REL_BASE") - endif() diff --git a/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h b/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h deleted file mode 100644 index 5d37ac721415..000000000000 --- a/devel/qt6-base/files/patch-src_corelib_global_qcomparehelpers.h +++ /dev/null @@ -1,27 +0,0 @@ -Suppress spurious zero as null pointer constant warnings which cause errors -in www/dooble due to -Werror being passed. This is the same problem as in -qcompare.h that upstream suppresses for GCC. - -/usr/local/include/qt6/QtCore/qfloat16.h:209:5: error: zero as null pointer constant [-Werror,-Wzero-as-null-pointer-constant] -... -/usr/local/include/qt6/QtCore/qcomparehelpers.h:211:43: note: expanded from macro 'QT_DECLARE_ORDERING_HELPER_TEMPLATE' - 211 | { return compareThreeWay(lhs, rhs) >= 0; } - ---- src/corelib/global/qcomparehelpers.h.orig 2025-02-19 13:05:34 UTC -+++ src/corelib/global/qcomparehelpers.h -@@ -316,6 +316,7 @@ orderingFlagsFor(T t) noexcept - - #define QT_DECLARE_ORDERING_HELPER_TEMPLATE(OrderingType, LeftType, RightType, Constexpr, \ - Noexcept, ...) \ -+ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant") \ - __VA_ARGS__ \ - friend Constexpr bool operator<(LeftType const &lhs, RightType const &rhs) Noexcept \ - { \ -@@ -357,6 +358,7 @@ orderingFlagsFor(T t) noexcept - // Helpers for reversed ordering, using the existing compareThreeWay() function. - #define QT_DECLARE_REVERSED_ORDERING_HELPER_TEMPLATE(OrderingType, LeftType, RightType, Constexpr, \ - Noexcept, ...) \ -+ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant") \ - __VA_ARGS__ \ - friend Constexpr bool operator<(RightType const &lhs, LeftType const &rhs) Noexcept \ - { return is_gt(compareThreeWay(rhs, lhs)); } \ diff --git a/devel/qt6-base/files/patch-src_corelib_io_qprocess__unix.cpp b/devel/qt6-base/files/patch-src_corelib_io_qprocess__unix.cpp new file mode 100644 index 000000000000..67daf0bcd3b5 --- /dev/null +++ b/devel/qt6-base/files/patch-src_corelib_io_qprocess__unix.cpp @@ -0,0 +1,32 @@ +Use dlsym to access environ. This avoids undefined references during linking +with -Wl,-no-undefined. + +See https://reviews.freebsd.org/D30842 + +--- src/corelib/io/qprocess_unix.cpp.orig 2025-08-11 04:54:51 UTC ++++ src/corelib/io/qprocess_unix.cpp +@@ -59,10 +59,9 @@ + # define _PATH_TTY _PATH_DEV "tty" + #endif + +-#ifdef Q_OS_FREEBSD +-__attribute__((weak)) +-#endif ++#ifndef Q_OS_FREEBSD + extern char **environ; ++#endif + + QT_BEGIN_NAMESPACE + +@@ -74,6 +73,11 @@ QProcessEnvironment QProcessEnvironment::systemEnviron + { + QProcessEnvironment env; + const char *entry; ++#ifdef Q_OS_FREEBSD ++ static char* nullenv = nullptr; ++ char ***environ_p = reinterpret_cast<char***>(dlsym(RTLD_DEFAULT, "environ")); ++ char **environ = environ_p ? *environ_p : &nullenv; ++#endif + for (int count = 0; (entry = environ[count]); ++count) { + const char *equal = strchr(entry, '='); + if (!equal) diff --git a/devel/qt6-base/pkg-plist b/devel/qt6-base/pkg-plist index 737f0c8e6992..5c67b6fac4c8 100644 --- a/devel/qt6-base/pkg-plist +++ b/devel/qt6-base/pkg-plist @@ -5,6 +5,7 @@ bin/qmake6 %%QT_INCDIR%%/QtConcurrent/QtConcurrentFilter %%QT_INCDIR%%/QtConcurrent/QtConcurrentMap %%QT_INCDIR%%/QtConcurrent/QtConcurrentRun +%%QT_INCDIR%%/QtConcurrent/QtConcurrentTask %%QT_INCDIR%%/QtConcurrent/QtConcurrentVersion %%QT_INCDIR%%/QtConcurrent/qtaskbuilder.h %%QT_INCDIR%%/QtConcurrent/qtconcurrent_global.h @@ -968,8 +969,8 @@ bin/qmake6 %%QT_INCDIR%%/QtFbSupport/QtFbSupportDepends %%QT_INCDIR%%/QtFbSupport/QtFbSupportVersion %%QT_INCDIR%%/QtFbSupport/qtfbsupportversion.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/atspiadaptor_p.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/dbusconnection_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/atspiadaptor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/dbusconnection_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractfileiconengine_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractfileiconprovider_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h @@ -1123,11 +1124,11 @@ bin/qmake6 %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshortcut_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qshortcutmap_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qsimpledrag_p.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspi_constant_mappings_p.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspi_struct_marshallers_p.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspiaccessiblebridge_p.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspiapplicationadaptor_p.h -%%X11%%%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspidbuscache_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspi_constant_mappings_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspi_struct_marshallers_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspiaccessiblebridge_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspiapplicationadaptor_p.h +%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qspidbuscache_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstandarditemmodel_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstatictext_p.h %%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qstatusnotifieritemadaptor_p.h @@ -1444,9 +1445,9 @@ bin/qmake6 %%QT_INCDIR%%/QtGui/QtGui %%QT_INCDIR%%/QtGui/QtGuiDepends %%QT_INCDIR%%/QtGui/QtGuiVersion -%%X11%%%%QT_INCDIR%%/QtGui/bus_interface.h -%%X11%%%%QT_INCDIR%%/QtGui/cache_adaptor.h -%%X11%%%%QT_INCDIR%%/QtGui/deviceeventcontroller_adaptor.h +%%QT_INCDIR%%/QtGui/bus_interface.h +%%QT_INCDIR%%/QtGui/cache_adaptor.h +%%QT_INCDIR%%/QtGui/deviceeventcontroller_adaptor.h %%QT_INCDIR%%/QtGui/properties_interface.h %%QT_INCDIR%%/QtGui/qabstractfileiconprovider.h %%QT_INCDIR%%/QtGui/qabstracttextdocumentlayout.h @@ -1566,7 +1567,7 @@ bin/qmake6 %%QT_INCDIR%%/QtGui/qvulkanwindow.h %%QT_INCDIR%%/QtGui/qwindow.h %%QT_INCDIR%%/QtGui/qwindowdefs.h -%%X11%%%%QT_INCDIR%%/QtGui/socket_interface.h +%%QT_INCDIR%%/QtGui/socket_interface.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/devicehandlerlist_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboard_defaultmap_p.h %%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardhandler_p.h @@ -3503,6 +3504,7 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake %%QT_MKSPECDIR%%/features/android/spec_post.prf %%QT_MKSPECDIR%%/features/benchmark.prf %%QT_MKSPECDIR%%/features/build_pass.prf +%%QT_MKSPECDIR%%/features/ccache.prf %%QT_MKSPECDIR%%/features/cmake_functions.prf %%QT_MKSPECDIR%%/features/cmdline.prf %%QT_MKSPECDIR%%/features/configure.prf @@ -3601,7 +3603,6 @@ lib/cmake/Qt6XmlPrivate/Qt6XmlPrivateVersionlessTargets.cmake %%QT_MKSPECDIR%%/features/uikit/xcodebuild.mk %%QT_MKSPECDIR%%/features/uikit/xcodebuild.prf %%QT_MKSPECDIR%%/features/unix/bsymbolic_functions.prf -%%QT_MKSPECDIR%%/features/unix/ccache.prf %%QT_MKSPECDIR%%/features/unix/hide_symbols.prf %%QT_MKSPECDIR%%/features/unix/largefile.prf %%QT_MKSPECDIR%%/features/unix/no_direct_extern_access.prf diff --git a/devel/qt6-grpc/distinfo b/devel/qt6-grpc/distinfo index fe09fb9eaa9d..5ca64c38d5ab 100644 --- a/devel/qt6-grpc/distinfo +++ b/devel/qt6-grpc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196365 -SHA256 (KDE/Qt/6.9.2/qtgrpc-everywhere-src-6.9.2.tar.xz) = a43d3c8823fe11b71d0c362527150914134239fa285feaff86fd692617353f64 -SIZE (KDE/Qt/6.9.2/qtgrpc-everywhere-src-6.9.2.tar.xz) = 602148 +TIMESTAMP = 1759303177 +SHA256 (KDE/Qt/6.9.3/qtgrpc-everywhere-src-6.9.3.tar.xz) = 7963c879cb72d5bebea1724602e6896cdc26e8555d872259f217c6b1130afe02 +SIZE (KDE/Qt/6.9.3/qtgrpc-everywhere-src-6.9.3.tar.xz) = 603684 diff --git a/devel/qt6-grpc/pkg-plist b/devel/qt6-grpc/pkg-plist index 6236cabe4363..95eaabb0affa 100644 --- a/devel/qt6-grpc/pkg-plist +++ b/devel/qt6-grpc/pkg-plist @@ -1,5 +1,6 @@ %%QT_INCDIR%%/QtGrpc/%%FULLVER%%/QtGrpc/private/qabstractgrpcchannel_p.h %%QT_INCDIR%%/QtGrpc/%%FULLVER%%/QtGrpc/private/qgrpcoperation_p.h +%%QT_INCDIR%%/QtGrpc/%%FULLVER%%/QtGrpc/private/qgrpcoperationcontext_p.h %%QT_INCDIR%%/QtGrpc/%%FULLVER%%/QtGrpc/private/qtgrpc-config_p.h %%QT_INCDIR%%/QtGrpc/%%FULLVER%%/QtGrpc/private/qtgrpclogging_p.h %%QT_INCDIR%%/QtGrpc/QAbstractGrpcChannel diff --git a/devel/qt6-languageserver/distinfo b/devel/qt6-languageserver/distinfo index ed231d1067ab..c252ac4b55d9 100644 --- a/devel/qt6-languageserver/distinfo +++ b/devel/qt6-languageserver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196375 -SHA256 (KDE/Qt/6.9.2/qtlanguageserver-everywhere-src-6.9.2.tar.xz) = 781b6eafe1fe1ab7e942fb15dc220b79c602db6efdce7fdc272bf8512c068bee -SIZE (KDE/Qt/6.9.2/qtlanguageserver-everywhere-src-6.9.2.tar.xz) = 137008 +TIMESTAMP = 1759303186 +SHA256 (KDE/Qt/6.9.3/qtlanguageserver-everywhere-src-6.9.3.tar.xz) = c8e8a6c4f8cb25626922e78f398b13b02eea21c4cc5525ffc2a0da7469369d33 +SIZE (KDE/Qt/6.9.3/qtlanguageserver-everywhere-src-6.9.3.tar.xz) = 136968 diff --git a/devel/qt6-location/distinfo b/devel/qt6-location/distinfo index e5b4a1f86b5a..bf910a3d0781 100644 --- a/devel/qt6-location/distinfo +++ b/devel/qt6-location/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196382 -SHA256 (KDE/Qt/6.9.2/qtlocation-everywhere-src-6.9.2.tar.xz) = 5a45ed1967958982899b79891afc0b4530cf2e59d3b1a57af6dfdc645e1c73f9 -SIZE (KDE/Qt/6.9.2/qtlocation-everywhere-src-6.9.2.tar.xz) = 3149364 +TIMESTAMP = 1759303196 +SHA256 (KDE/Qt/6.9.3/qtlocation-everywhere-src-6.9.3.tar.xz) = 141227d1fdaf4e1574c99127b2eb91ab171107bf067121aecb03b618b2e71605 +SIZE (KDE/Qt/6.9.3/qtlocation-everywhere-src-6.9.3.tar.xz) = 3149208 diff --git a/devel/qt6-positioning/distinfo b/devel/qt6-positioning/distinfo index ea1cd7a5c3f9..84cedf391251 100644 --- a/devel/qt6-positioning/distinfo +++ b/devel/qt6-positioning/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196387 -SHA256 (KDE/Qt/6.9.2/qtpositioning-everywhere-src-6.9.2.tar.xz) = 489a9801ffbda04b16c62f64a687efae4c1a07807f6b67f40ce1f37c3dfdbc1a -SIZE (KDE/Qt/6.9.2/qtpositioning-everywhere-src-6.9.2.tar.xz) = 649488 +TIMESTAMP = 1759303206 +SHA256 (KDE/Qt/6.9.3/qtpositioning-everywhere-src-6.9.3.tar.xz) = 0c87c980f704c17aadaf0bf8a03845dd0a60cc0313be24bd7b5b90685d5835b4 +SIZE (KDE/Qt/6.9.3/qtpositioning-everywhere-src-6.9.3.tar.xz) = 649260 diff --git a/devel/qt6-remoteobjects/distinfo b/devel/qt6-remoteobjects/distinfo index 6276bb15a0c2..87a08c373012 100644 --- a/devel/qt6-remoteobjects/distinfo +++ b/devel/qt6-remoteobjects/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196391 -SHA256 (KDE/Qt/6.9.2/qtremoteobjects-everywhere-src-6.9.2.tar.xz) = df624ef14befbc92a293f2c193c5a7fd5d3f9d795fb33cc38b4e0b869bf18b26 -SIZE (KDE/Qt/6.9.2/qtremoteobjects-everywhere-src-6.9.2.tar.xz) = 528608 +TIMESTAMP = 1759303215 +SHA256 (KDE/Qt/6.9.3/qtremoteobjects-everywhere-src-6.9.3.tar.xz) = 98987c0055d4e1a6d31dac85c3445d99ed8142c21995f70b391ef0ebafaad85b +SIZE (KDE/Qt/6.9.3/qtremoteobjects-everywhere-src-6.9.3.tar.xz) = 528744 diff --git a/devel/qt6-scxml/distinfo b/devel/qt6-scxml/distinfo index 131704ee7ea2..7cb8f6f41654 100644 --- a/devel/qt6-scxml/distinfo +++ b/devel/qt6-scxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196396 -SHA256 (KDE/Qt/6.9.2/qtscxml-everywhere-src-6.9.2.tar.xz) = e06af183012996a64f07745064318303d3765959ebba29489f8af0f50f32ebb6 -SIZE (KDE/Qt/6.9.2/qtscxml-everywhere-src-6.9.2.tar.xz) = 545560 +TIMESTAMP = 1759303225 +SHA256 (KDE/Qt/6.9.3/qtscxml-everywhere-src-6.9.3.tar.xz) = f389c0c051df908eae392fbe94a8513e6fe15f88399d88fd33a763165f5b34b7 +SIZE (KDE/Qt/6.9.3/qtscxml-everywhere-src-6.9.3.tar.xz) = 545436 diff --git a/devel/qt6-scxml/pkg-plist b/devel/qt6-scxml/pkg-plist index b720e4de8486..deb3c5cda7a4 100644 --- a/devel/qt6-scxml/pkg-plist +++ b/devel/qt6-scxml/pkg-plist @@ -138,6 +138,7 @@ lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateAdditionalTargetInfo.cmake lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateConfig.cmake lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateConfigVersion.cmake lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateConfigVersionImpl.cmake +lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateExtraProperties.cmake lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateTargets.cmake lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateVersionlessAliasTargets.cmake lib/cmake/Qt6ScxmlGlobalPrivate/Qt6ScxmlGlobalPrivateVersionlessTargets.cmake diff --git a/devel/qt6-tools/Makefile b/devel/qt6-tools/Makefile index 63b3deb3d8df..706786478908 100644 --- a/devel/qt6-tools/Makefile +++ b/devel/qt6-tools/Makefile @@ -10,22 +10,24 @@ BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon \ libzstd.so:archivers/zstd -USES= cmake compiler:c++17-lang gl llvm:min=17,max=20,lib,noexport \ +USES= cmake compiler:c++17-lang gl llvm:min=17,max=21,lib,noexport \ python:build qt-dist:6 USE_GL= opengl USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} USE_QT= base declarative sqldriver-sqlite:run -# QDOC_USER_CLANG_VERSION is an unofficial CMake variable intended to override -# the list of supported LLVM versions, i.e., QDOC_SUPPORTED_CLANG_VERSIONS in -# .cmake.conf with the chosen version of LLVM. We must be careful here and adjust -# llvm min/max in USES to align with the versions of LLVM that future releases -# support. LLVM_VERSION only provides the major version, but at least the minor -# version must also be passed, hence the use of "black magic" to determine this -# value, which does not respect relative paths. CMAKE_ARGS= -DClang_DIR:PATH="${LLVM_PREFIX}/lib/cmake/clang" \ - -DLLVM_DIR:PATH="${LLVM_PREFIX}/lib/cmake/llvm" \ - -DQDOC_USER_CLANG_VERSION:STRING="`${MAKE} -C ${PORTSDIR}/devel/llvm${LLVM_VERSION} -VDISTVERSION:R`" + -DLLVM_DIR:PATH="${LLVM_PREFIX}/lib/cmake/llvm" +# QDOC_USER_CLANG_VERSION is a custom CMake variable intended to override the +# list of supported LLVM versions, i.e., QDOC_SUPPORTED_CLANG_VERSIONS in +# src/qdoc/cmake/QDocConfiguration.cmake with the chosen version of LLVM. +# Otherwise, the numerically greatest version found would be used. We must be +# careful here and adjust llvm min/max in USES to align with the versions +# of LLVM that future releases support. We also need to supply at least a +# major.minor version of llvm for this variable. Since LLVM_VERSION only provides +# the major version, we pass the full version via a command and let CMake process +# it during the configure stage. +CMAKE_ARGS+= -DQDOC_USER_CLANG_VERSION:STRING="`${LLVM_CONFIG} --version`" post-install: # Install symlinks for user-facing tools diff --git a/devel/qt6-tools/distinfo b/devel/qt6-tools/distinfo index 818f2f0992b1..bef1029813a2 100644 --- a/devel/qt6-tools/distinfo +++ b/devel/qt6-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196635 -SHA256 (KDE/Qt/6.9.2/qttools-everywhere-src-6.9.2.tar.xz) = d8b7f7e8e970cc0b975205fd6d5832ea917ef3e751df69b97439c1cddd67a489 -SIZE (KDE/Qt/6.9.2/qttools-everywhere-src-6.9.2.tar.xz) = 10330412 +TIMESTAMP = 1759303238 +SHA256 (KDE/Qt/6.9.3/qttools-everywhere-src-6.9.3.tar.xz) = 0cf7ab0e975fc57f5ce1375576a0a76e9ede25e6b01db3cf2339cd4d9750b4e9 +SIZE (KDE/Qt/6.9.3/qttools-everywhere-src-6.9.3.tar.xz) = 10334740 diff --git a/devel/qt6-tools/files/patch-.cmake.conf b/devel/qt6-tools/files/patch-.cmake.conf deleted file mode 100644 index ec629a036b7e..000000000000 --- a/devel/qt6-tools/files/patch-.cmake.conf +++ /dev/null @@ -1,19 +0,0 @@ -Supply the version of LLVM we are intending to use via QDOC_USER_CLANG_VERSION, -a made-up CMake varible derived from LLVM_VERSION in the port Makefile, instead -of iterating through potential candidates. This avoids mismatches during the -configure stage when a user has a version of LLVM installed greater than what is -set in DEFAULT_VERSIONS. - -PR: 287430 - ---- .cmake.conf.orig 2025-05-29 00:19:42 UTC -+++ .cmake.conf -@@ -3,7 +3,7 @@ set(QDOC_SUPPORTED_CLANG_VERSIONS - set(QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_AS_CONST=1") - set(QDOC_MINIMUM_CLANG_VERSION "17") - set(QDOC_SUPPORTED_CLANG_VERSIONS -- "20.1" "19.1" "18.1" "17.0" -+ ${QDOC_USER_CLANG_VERSION} - ) - list(APPEND QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_FOREACH=1") - list(APPEND QT_EXTRA_INTERNAL_TARGET_DEFINES "QT_NO_CONTEXTLESS_CONNECT=1") diff --git a/devel/qt6-tools/files/patch-configure.cmake b/devel/qt6-tools/files/patch-configure.cmake index e5d15fe0e715..8474226f40c6 100644 --- a/devel/qt6-tools/files/patch-configure.cmake +++ b/devel/qt6-tools/files/patch-configure.cmake @@ -15,11 +15,11 @@ Call Stack (most recent call first): Regressed by: https://code.qt.io/cgit/qt/qttools.git/commit/?h=6.6.0&id=ff5c080c2eb9267c43da6fafe953bf50076443c4 ---- configure.cmake.orig 2025-02-19 09:54:25 UTC +--- configure.cmake.orig 2025-09-25 00:29:00 UTC +++ configure.cmake -@@ -1,6 +1,11 @@ - # Copyright (C) 2022 The Qt Company Ltd. - # SPDX-License-Identifier: BSD-3-Clause +@@ -4,6 +4,11 @@ include(${CMAKE_CURRENT_LIST_DIR}/src/qdoc/cmake/QDocC + # Include QDoc-specific configuration early (needed for feature definitions) + include(${CMAKE_CURRENT_LIST_DIR}/src/qdoc/cmake/QDocConfiguration.cmake) +#### Libraries + @@ -29,7 +29,7 @@ Regressed by: https://code.qt.io/cgit/qt/qttools.git/commit/?h=6.6.0&id=ff5c080c #### Tests qt_find_package(WrapLibClang 8 PROVIDED_TARGETS WrapLibClang::WrapLibClang) -@@ -8,7 +13,6 @@ endif() +@@ -11,7 +16,6 @@ endif() if(TARGET WrapLibClang::WrapLibClang) set(TEST_libclang "ON" CACHE BOOL "Required libclang version found." FORCE) endif() diff --git a/devel/qt6-tools/files/patch-src_qdoc_cmake_QDocConfiguration.cmake b/devel/qt6-tools/files/patch-src_qdoc_cmake_QDocConfiguration.cmake new file mode 100644 index 000000000000..7f4c312efad3 --- /dev/null +++ b/devel/qt6-tools/files/patch-src_qdoc_cmake_QDocConfiguration.cmake @@ -0,0 +1,16 @@ +Supply the version of LLVM we are intending to use via QDOC_USER_CLANG_VERSION, +a custom CMake varible derived from LLVM_VERSION in the port Makefile instead of +iterating through all potential candidates. This avoids mismatches during the +configure stage when a user has a version of LLVM installed greater than what is +set in DEFAULT_VERSIONS. + +PR: 287430 + +--- src/qdoc/cmake/QDocConfiguration.cmake.orig 2025-09-25 00:29:00 UTC ++++ src/qdoc/cmake/QDocConfiguration.cmake +@@ -11,3 +11,5 @@ set(QDOC_SUPPORTED_CLANG_VERSIONS + "21.1" "20.1" "19.1" "18.1" "17.0" + ) + ++# Try user-selected version of Clang first ++list(PREPEND QDOC_SUPPORTED_CLANG_VERSIONS "${QDOC_USER_CLANG_VERSION}") diff --git a/devel/qt6-tools/pkg-plist b/devel/qt6-tools/pkg-plist index 07be5f73c227..48f15cc3091b 100644 --- a/devel/qt6-tools/pkg-plist +++ b/devel/qt6-tools/pkg-plist @@ -369,6 +369,7 @@ lib/cmake/Qt6Tools/Qt6ToolsConfig.cmake lib/cmake/Qt6Tools/Qt6ToolsConfigVersion.cmake lib/cmake/Qt6Tools/Qt6ToolsConfigVersionImpl.cmake lib/cmake/Qt6Tools/Qt6ToolsDependencies.cmake +lib/cmake/Qt6Tools/Qt6ToolsExtraProperties.cmake lib/cmake/Qt6Tools/Qt6ToolsTargets.cmake lib/cmake/Qt6Tools/Qt6ToolsVersionlessAliasTargets.cmake lib/cmake/Qt6Tools/Qt6ToolsVersionlessTargets.cmake diff --git a/devel/qt6-translations/distinfo b/devel/qt6-translations/distinfo index dabf96c94680..27729f2e5b76 100644 --- a/devel/qt6-translations/distinfo +++ b/devel/qt6-translations/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756196641 -SHA256 (KDE/Qt/6.9.2/qttranslations-everywhere-src-6.9.2.tar.xz) = c73bb6281ed365c0f954f4b1b6e1b13e1b3fefd94854f46fcd9a412f641f7ed6 -SIZE (KDE/Qt/6.9.2/qttranslations-everywhere-src-6.9.2.tar.xz) = 1628840 +TIMESTAMP = 1759303249 +SHA256 (KDE/Qt/6.9.3/qttranslations-everywhere-src-6.9.3.tar.xz) = f36d545e6681b146fd79b3ebb74ef275e88694cf81eae8323327cae3bfc490a1 +SIZE (KDE/Qt/6.9.3/qttranslations-everywhere-src-6.9.3.tar.xz) = 1663376 diff --git a/devel/qt6-translations/pkg-plist b/devel/qt6-translations/pkg-plist index 72d8b7e617a1..19fb47dd6f9c 100644 --- a/devel/qt6-translations/pkg-plist +++ b/devel/qt6-translations/pkg-plist @@ -39,6 +39,7 @@ %%QT_L10NDIR%%/designer_ko.qm %%QT_L10NDIR%%/designer_nl.qm %%QT_L10NDIR%%/designer_pl.qm +%%QT_L10NDIR%%/designer_pt_BR.qm %%QT_L10NDIR%%/designer_ru.qm %%QT_L10NDIR%%/designer_sk.qm %%QT_L10NDIR%%/designer_sl.qm @@ -63,6 +64,7 @@ %%QT_L10NDIR%%/linguist_ko.qm %%QT_L10NDIR%%/linguist_nl.qm %%QT_L10NDIR%%/linguist_pl.qm +%%QT_L10NDIR%%/linguist_pt_BR.qm %%QT_L10NDIR%%/linguist_ru.qm %%QT_L10NDIR%%/linguist_sk.qm %%QT_L10NDIR%%/linguist_sl.qm @@ -267,6 +269,7 @@ %%QT_L10NDIR%%/qtserialport_ka.qm %%QT_L10NDIR%%/qtserialport_ko.qm %%QT_L10NDIR%%/qtserialport_pl.qm +%%QT_L10NDIR%%/qtserialport_pt_BR.qm %%QT_L10NDIR%%/qtserialport_ru.qm %%QT_L10NDIR%%/qtserialport_sv.qm %%QT_L10NDIR%%/qtserialport_tr.qm @@ -280,6 +283,7 @@ %%QT_L10NDIR%%/qtwebengine_ko.qm %%QT_L10NDIR%%/qtwebengine_lg.qm %%QT_L10NDIR%%/qtwebengine_pl.qm +%%QT_L10NDIR%%/qtwebengine_pt_BR.qm %%QT_L10NDIR%%/qtwebengine_ru.qm %%QT_L10NDIR%%/qtwebengine_sv.qm %%QT_L10NDIR%%/qtwebengine_tr.qm @@ -294,6 +298,7 @@ %%QT_L10NDIR%%/qtwebsockets_ka.qm %%QT_L10NDIR%%/qtwebsockets_ko.qm %%QT_L10NDIR%%/qtwebsockets_pl.qm +%%QT_L10NDIR%%/qtwebsockets_pt_BR.qm %%QT_L10NDIR%%/qtwebsockets_ru.qm %%QT_L10NDIR%%/qtwebsockets_sv.qm %%QT_L10NDIR%%/qtwebsockets_tr.qm diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile index fa4787a862cc..3cedd66a5264 100644 --- a/devel/qtcreator/Makefile +++ b/devel/qtcreator/Makefile @@ -1,5 +1,5 @@ PORTNAME= qtcreator -DISTVERSION= 17.0.1 +DISTVERSION= 17.0.2 CATEGORIES= devel MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION} DISTNAME= qt-creator-opensource-src-${DISTVERSION} diff --git a/devel/qtcreator/distinfo b/devel/qtcreator/distinfo index faa8c3de886f..58ab40ac7dad 100644 --- a/devel/qtcreator/distinfo +++ b/devel/qtcreator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756405815 -SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-17.0.1.tar.xz) = f5671808476707391a9a2edb9963ea4a6b6b90c78cbe74ece1aca0c6b42e5184 -SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-17.0.1.tar.xz) = 55741344 +TIMESTAMP = 1759551715 +SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-17.0.2.tar.xz) = b0e118f9fb89be717628b3f9251c295fa6df41fa8b7d81216e2ead8355e55a13 +SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-17.0.2.tar.xz) = 55745020 diff --git a/devel/qtcreator/pkg-plist b/devel/qtcreator/pkg-plist index 164071d4637d..c13c94b9deb5 100644 --- a/devel/qtcreator/pkg-plist +++ b/devel/qtcreator/pkg-plist @@ -189,6 +189,7 @@ share/metainfo/org.qt-project.qtcreator.appdata.xml %%DATADIR%%/changelog/changes-16.0.2.md %%DATADIR%%/changelog/changes-17.0.0.md %%DATADIR%%/changelog/changes-17.0.1.md +%%DATADIR%%/changelog/changes-17.0.2.md %%DATADIR%%/changelog/changes-2.0.0 %%DATADIR%%/changelog/changes-2.0.1 %%DATADIR%%/changelog/changes-2.1.0 diff --git a/devel/shiboken6/distinfo b/devel/shiboken6/distinfo index 837de6ee5f26..e048bccfb3d8 100644 --- a/devel/shiboken6/distinfo +++ b/devel/shiboken6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756198971 -SHA256 (KDE/Qt/6.9.2/pyside-setup-everywhere-src-6.9.2.tar.xz) = 9ec087465342bdc9dbe492a30e58fdbbc5448655deacf5982a0fe7123f59222d -SIZE (KDE/Qt/6.9.2/pyside-setup-everywhere-src-6.9.2.tar.xz) = 16659400 +TIMESTAMP = 1759301509 +SHA256 (KDE/Qt/6.9.3/pyside-setup-everywhere-src-6.9.3.tar.xz) = 7cd2d5abb98f2e6f442b0e41f5fcf930e7312ae4b17f681316b1adc7b63bb172 +SIZE (KDE/Qt/6.9.3/pyside-setup-everywhere-src-6.9.3.tar.xz) = 16663380 |