diff options
Diffstat (limited to 'devel')
215 files changed, 678 insertions, 417 deletions
diff --git a/devel/Makefile b/devel/Makefile index 154d5c7e7fa9..925331a0fae0 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -4646,6 +4646,7 @@ SUBDIR += py-cfgv SUBDIR += py-cfn-lint SUBDIR += py-cftime + SUBDIR += py-cgen SUBDIR += py-chai SUBDIR += py-chainmap SUBDIR += py-characteristic @@ -5247,6 +5248,7 @@ SUBDIR += py-magnet2torrent SUBDIR += py-mailcap-fix SUBDIR += py-makefun + SUBDIR += py-mando SUBDIR += py-manuel SUBDIR += py-marisa-trie SUBDIR += py-marrow.mailer diff --git a/devel/amber/Makefile b/devel/amber/Makefile index be1e80227c92..1c1b126bdd63 100644 --- a/devel/amber/Makefile +++ b/devel/amber/Makefile @@ -1,7 +1,7 @@ PORTNAME= amber DISTVERSIONPREFIX= v DISTVERSION= 0.6.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel PKGNAMESUFFIX= -code-search-replace-tool diff --git a/devel/argc/Makefile b/devel/argc/Makefile index 9831ab5b6887..93f9d90ff6ca 100644 --- a/devel/argc/Makefile +++ b/devel/argc/Makefile @@ -1,7 +1,7 @@ PORTNAME= argc DISTVERSIONPREFIX= v DISTVERSION= 1.23.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org 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/bacon/Makefile b/devel/bacon/Makefile index ef343e9f9e4a..c431086ad2c7 100644 --- a/devel/bacon/Makefile +++ b/devel/bacon/Makefile @@ -1,7 +1,7 @@ PORTNAME= bacon DISTVERSIONPREFIX= v DISTVERSION= 3.17.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org 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/bingrep/Makefile b/devel/bingrep/Makefile index d13c0826f075..6c8abfa1650b 100644 --- a/devel/bingrep/Makefile +++ b/devel/bingrep/Makefile @@ -1,7 +1,7 @@ PORTNAME= bingrep DISTVERSIONPREFIX= v DISTVERSION= 0.11.0 -PORTREVISION= 23 +PORTREVISION= 24 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org diff --git a/devel/bunyan/Makefile b/devel/bunyan/Makefile index e01ae7c6f54e..1436064ed858 100644 --- a/devel/bunyan/Makefile +++ b/devel/bunyan/Makefile @@ -1,7 +1,7 @@ PORTNAME= bunyan DISTVERSIONPREFIX= v DISTVERSION= 0.1.9 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/busd/Makefile b/devel/busd/Makefile index cb83a0214e8e..cdf18754a38a 100644 --- a/devel/busd/Makefile +++ b/devel/busd/Makefile @@ -1,6 +1,6 @@ PORTNAME= busd DISTVERSION= 0.4.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org diff --git a/devel/bustle/Makefile b/devel/bustle/Makefile index 762b699cd4d8..c48c7ae57800 100644 --- a/devel/bustle/Makefile +++ b/devel/bustle/Makefile @@ -1,6 +1,6 @@ PORTNAME= bustle DISTVERSION= 0.12.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel gnome MAINTAINER= tagattie@FreeBSD.org diff --git a/devel/cargo-bloat/Makefile b/devel/cargo-bloat/Makefile index 75ff853cbcd5..44664c02c733 100644 --- a/devel/cargo-bloat/Makefile +++ b/devel/cargo-bloat/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-bloat DISTVERSIONPREFIX= v DISTVERSION= 0.12.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-c/Makefile b/devel/cargo-c/Makefile index ee911f28b087..72cdaff83423 100644 --- a/devel/cargo-c/Makefile +++ b/devel/cargo-c/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-c DISTVERSION= 0.10.14 DISTVERSIONSUFFIX= +cargo-0.89.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= CRATESIO # XXX Teach USES=cargo to have proper default diff --git a/devel/cargo-cache/Makefile b/devel/cargo-cache/Makefile index 0ee1f320fbf2..2a28600ec766 100644 --- a/devel/cargo-cache/Makefile +++ b/devel/cargo-cache/Makefile @@ -1,6 +1,6 @@ PORTNAME= cargo-cache DISTVERSION= 0.8.3 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-deny/Makefile b/devel/cargo-deny/Makefile index cc710c7192a1..47a863abeaa0 100644 --- a/devel/cargo-deny/Makefile +++ b/devel/cargo-deny/Makefile @@ -1,5 +1,6 @@ PORTNAME= cargo-deny DISTVERSION= 0.18.5 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-depgraph/Makefile b/devel/cargo-depgraph/Makefile index da07ab0022d7..c99b6523a77c 100644 --- a/devel/cargo-depgraph/Makefile +++ b/devel/cargo-depgraph/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-depgraph DISTVERSIONPREFIX= v DISTVERSION= 1.6.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-dist/Makefile b/devel/cargo-dist/Makefile index 19d9a58fb705..edb3dbe0f3bb 100644 --- a/devel/cargo-dist/Makefile +++ b/devel/cargo-dist/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-dist DISTVERSIONPREFIX= v DISTVERSION= 0.28.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-edit/Makefile b/devel/cargo-edit/Makefile index 674773880be6..50065908d73c 100644 --- a/devel/cargo-edit/Makefile +++ b/devel/cargo-edit/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-edit DISTVERSIONPREFIX= v DISTVERSION= 0.13.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-generate/Makefile b/devel/cargo-generate/Makefile index 632d43299dc3..bcf3dd13877a 100644 --- a/devel/cargo-generate/Makefile +++ b/devel/cargo-generate/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-generate DISTVERSIONPREFIX= v DISTVERSION= 0.23.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/cargo-hack/Makefile b/devel/cargo-hack/Makefile index 2a4a669293b6..761995ac5e4f 100644 --- a/devel/cargo-hack/Makefile +++ b/devel/cargo-hack/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-hack DISTVERSIONPREFIX= v DISTVERSION= 0.6.37 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-leptos/Makefile b/devel/cargo-leptos/Makefile index ed2a1df60886..97b0da9f722f 100644 --- a/devel/cargo-leptos/Makefile +++ b/devel/cargo-leptos/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-leptos DISTVERSIONPREFIX= v DISTVERSION= 0.2.42 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-llvm-cov/Makefile b/devel/cargo-llvm-cov/Makefile index d534a34b252d..06ad80f799e8 100644 --- a/devel/cargo-llvm-cov/Makefile +++ b/devel/cargo-llvm-cov/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-llvm-cov DISTVERSIONPREFIX= v DISTVERSION= 0.6.18 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-make/Makefile b/devel/cargo-make/Makefile index fbd21b6dfc09..c6b78250dbb6 100644 --- a/devel/cargo-make/Makefile +++ b/devel/cargo-make/Makefile @@ -1,6 +1,6 @@ PORTNAME= cargo-make DISTVERSION= 0.37.24 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/cargo-mutants/Makefile b/devel/cargo-mutants/Makefile index 3df39fb28014..a2bf5f8025a7 100644 --- a/devel/cargo-mutants/Makefile +++ b/devel/cargo-mutants/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-mutants DISTVERSIONPREFIX= v DISTVERSION= 25.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cargo-readme/Makefile b/devel/cargo-readme/Makefile index 1c993d009830..18811a9c71fd 100644 --- a/devel/cargo-readme/Makefile +++ b/devel/cargo-readme/Makefile @@ -1,7 +1,7 @@ PORTNAME= cargo-readme DISTVERSIONPREFIX= v DISTVERSION= 3.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/cargo-tarpaulin/Makefile b/devel/cargo-tarpaulin/Makefile index 92e293a8ef9b..5c959ed316e6 100644 --- a/devel/cargo-tarpaulin/Makefile +++ b/devel/cargo-tarpaulin/Makefile @@ -1,6 +1,6 @@ PORTNAME= cargo-tarpaulin DISTVERSION= 0.32.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/catppuccin-whiskers/Makefile b/devel/catppuccin-whiskers/Makefile index 642e972bcbb9..057004b81e22 100644 --- a/devel/catppuccin-whiskers/Makefile +++ b/devel/catppuccin-whiskers/Makefile @@ -1,6 +1,7 @@ PORTNAME= whiskers DISTVERSIONPREFIX= v DISTVERSION= 2.5.1 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= catppuccin- diff --git a/devel/cbfmt/Makefile b/devel/cbfmt/Makefile index edb13f1f75db..4fcb1b579936 100644 --- a/devel/cbfmt/Makefile +++ b/devel/cbfmt/Makefile @@ -1,7 +1,7 @@ PORTNAME= cbfmt DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cocogitto/Makefile b/devel/cocogitto/Makefile index d646a47aef6f..bdb689e422ca 100644 --- a/devel/cocogitto/Makefile +++ b/devel/cocogitto/Makefile @@ -1,6 +1,6 @@ PORTNAME= cocogitto DISTVERSION= 6.3.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/convco/Makefile b/devel/convco/Makefile index 66be79a467ab..55a6a22f9aed 100644 --- a/devel/convco/Makefile +++ b/devel/convco/Makefile @@ -1,7 +1,7 @@ PORTNAME= convco DISTVERSIONPREFIX= v DISTVERSION= 0.6.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/corrosion/Makefile b/devel/corrosion/Makefile index dff35f8b590e..77b56a441b16 100644 --- a/devel/corrosion/Makefile +++ b/devel/corrosion/Makefile @@ -1,7 +1,7 @@ PORTNAME= corrosion DISTVERSIONPREFIX= v DISTVERSION= 0.5.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/cpu_rec_rs/Makefile b/devel/cpu_rec_rs/Makefile index bbc89ffdbaef..ce55448735d2 100644 --- a/devel/cpu_rec_rs/Makefile +++ b/devel/cpu_rec_rs/Makefile @@ -1,7 +1,7 @@ PORTNAME= cpu_rec_rs DISTVERSIONPREFIX= release- DISTVERSION= 1.0.0 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= devel PATCH_SITES= https://github.com/trou/${PORTNAME}/commit/ 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/desed/Makefile b/devel/desed/Makefile index 2998d526c153..82d83b8ae829 100644 --- a/devel/desed/Makefile +++ b/devel/desed/Makefile @@ -1,6 +1,6 @@ PORTNAME= desed DISTVERSION= 1.2.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/devel/dorst/Makefile b/devel/dorst/Makefile index c79af42497fa..97ec52d6364d 100644 --- a/devel/dorst/Makefile +++ b/devel/dorst/Makefile @@ -1,6 +1,7 @@ PORTNAME= dorst DISTVERSIONPREFIX= v DISTVERSION= 0.19.5 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= slowdive@me.com diff --git a/devel/dra/Makefile b/devel/dra/Makefile index ab93a06d8c76..9d8c71c09a6f 100644 --- a/devel/dra/Makefile +++ b/devel/dra/Makefile @@ -1,6 +1,6 @@ PORTNAME= dra DISTVERSION= 0.8.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/dtool/Makefile b/devel/dtool/Makefile index 219aca3fc5a1..79c427993edc 100644 --- a/devel/dtool/Makefile +++ b/devel/dtool/Makefile @@ -1,7 +1,7 @@ PORTNAME= dtool DISTVERSIONPREFIX= v DISTVERSION= 0.12.0 -PORTREVISION= 31 +PORTREVISION= 32 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/dura/Makefile b/devel/dura/Makefile index 83ca062c6a19..e3d9382ce85c 100644 --- a/devel/dura/Makefile +++ b/devel/dura/Makefile @@ -1,7 +1,7 @@ PORTNAME= dura DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 29 +PORTREVISION= 30 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/electron34/Makefile b/devel/electron34/Makefile index 58544d755082..47c2cd95212b 100644 --- a/devel/electron34/Makefile +++ b/devel/electron34/Makefile @@ -1,7 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} -PORTREVISION= 6 +PORTREVISION= 7 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron35/Makefile b/devel/electron35/Makefile index d4450ad17bc5..83f1c05ca829 100644 --- a/devel/electron35/Makefile +++ b/devel/electron35/Makefile @@ -1,7 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} -PORTREVISION= 2 +PORTREVISION= 3 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron36/Makefile b/devel/electron36/Makefile index 18efc64ae1a2..364b21497bdf 100644 --- a/devel/electron36/Makefile +++ b/devel/electron36/Makefile @@ -1,6 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} +PORTREVISION= 1 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron37/Makefile b/devel/electron37/Makefile index 546825e4cc48..eb9aa1a10d90 100644 --- a/devel/electron37/Makefile +++ b/devel/electron37/Makefile @@ -1,6 +1,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER} +PORTREVISION= 1 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= devel diff --git a/devel/electron37/files/patch-build_rust_allocator_lib.rs b/devel/electron37/files/patch-build_rust_allocator_lib.rs index c7a59f7ef428..cbffdab47210 100644 --- a/devel/electron37/files/patch-build_rust_allocator_lib.rs +++ b/devel/electron37/files/patch-build_rust_allocator_lib.rs @@ -1,15 +1,21 @@ --- build/rust/allocator/lib.rs.orig 2025-08-11 20:33:34 UTC +++ build/rust/allocator/lib.rs -@@ -86,6 +86,12 @@ mod both_allocators { - /// As part of rustc's contract for using `#[global_allocator]` without - /// rustc-generated shims we must define this symbol, since we are opting in - /// to unstable functionality. See https://github.com/rust-lang/rust/issues/123015 +@@ -90,7 +90,18 @@ mod both_allocators { + #[linkage = "weak"] + static __rust_no_alloc_shim_is_unstable: u8 = 0; + + #[rustc_std_internal_symbol] + #[linkage = "weak"] + fn __rust_no_alloc_shim_is_unstable_v2() {} + -+ // TODO(crbug.com/422538133) Remove after rolling past -+ // https://github.com/rust-lang/rust/pull/141061 - #[no_mangle] ++ #[rustc_std_internal_symbol] ++ #[linkage = "weak"] ++ fn __rust_alloc_error_handler_should_panic_v2() -> u8 { ++ 0 ++ } ++ + // Mangle the symbol name as rustc expects. ++ // TODO(crbug.com/440481922): Remove this after rolling past https://github.com/rust-lang/rust/pull/143387 + #[rustc_std_internal_symbol] + #[allow(non_upper_case_globals)] #[linkage = "weak"] - static __rust_no_alloc_shim_is_unstable: u8 = 0; diff --git a/devel/electron38/Makefile.version b/devel/electron38/Makefile.version index 4896b80eb93c..079b1f5ad89b 100644 --- a/devel/electron38/Makefile.version +++ b/devel/electron38/Makefile.version @@ -1,2 +1,2 @@ -ELECTRON_VER= 38.2.0 +ELECTRON_VER= 38.2.1 ELECTRON_VER_MAJOR= ${ELECTRON_VER:C/\..*//} diff --git a/devel/electron38/distinfo b/devel/electron38/distinfo index 729e126be781..4aee46014ba6 100644 --- a/devel/electron38/distinfo +++ b/devel/electron38/distinfo @@ -1,12 +1,12 @@ -TIMESTAMP = 1759265241 +TIMESTAMP = 1759488581 SHA256 (electron/chromium-140.0.7339.133.tar.xz) = 0592f933166d422c42d47b494973ebb8a1cb55493523b6ea901247b883d8d130 SIZE (electron/chromium-140.0.7339.133.tar.xz) = 7424804784 SHA256 (electron/pulseaudio-16.1.tar.gz) = 027266c62f2a84422ac45fa721a649508f0f1628fb1fd9242315ac54ce2d7c92 SIZE (electron/pulseaudio-16.1.tar.gz) = 2763111 -SHA256 (electron/electron-yarn-cache-38.2.0.tar.xz) = 7ed6fedc372c5bd23b38ed252c12ace0f0fbce096b5442add4501a965282eb04 -SIZE (electron/electron-yarn-cache-38.2.0.tar.xz) = 30044356 -SHA256 (electron/electron-electron-v38.2.0_GH0.tar.gz) = 196671584f008ed4c22b71cd5c579ebe73d6fdf33cfa7622c1bdc7ccd7c6a8c0 -SIZE (electron/electron-electron-v38.2.0_GH0.tar.gz) = 15861186 +SHA256 (electron/electron-yarn-cache-38.2.1.tar.xz) = 7ed6fedc372c5bd23b38ed252c12ace0f0fbce096b5442add4501a965282eb04 +SIZE (electron/electron-yarn-cache-38.2.1.tar.xz) = 30044356 +SHA256 (electron/electron-electron-v38.2.1_GH0.tar.gz) = 6e1b26e33125b4b400b486f0ea6f3c5ad383acf7b61e560f966237a51a3b97af +SIZE (electron/electron-electron-v38.2.1_GH0.tar.gz) = 15861057 SHA256 (electron/nodejs-node-v22.19.0_GH0.tar.gz) = 8f28e6635c2fe9d1ea29347606df81128c52bc3a2b820aca5851bd6b89c96aa4 SIZE (electron/nodejs-node-v22.19.0_GH0.tar.gz) = 123089614 SHA256 (electron/nodejs-nan-e14bdcd1f72d62bca1d541b66da43130384ec213_GH0.tar.gz) = 02edf8d5b3fef9af94d8a1355da60564a57e7f2c99cb422bce042400607ed2eb diff --git a/devel/electron38/files/patch-build_rust_allocator_lib.rs b/devel/electron38/files/patch-build_rust_allocator_lib.rs index 8c6867a8d976..3f7497d455f5 100644 --- a/devel/electron38/files/patch-build_rust_allocator_lib.rs +++ b/devel/electron38/files/patch-build_rust_allocator_lib.rs @@ -1,15 +1,17 @@ ---- build/rust/allocator/lib.rs.orig 2025-08-26 20:49:50 UTC +--- build/rust/allocator/lib.rs.orig 2025-09-09 01:18:53 UTC +++ build/rust/allocator/lib.rs -@@ -90,6 +90,12 @@ mod both_allocators { +@@ -90,7 +90,14 @@ mod both_allocators { #[linkage = "weak"] fn __rust_no_alloc_shim_is_unstable_v2() {} -+ // TODO(crbug.com/422538133) Remove after rolling past -+ // https://github.com/rust-lang/rust/pull/141061 -+ #[no_mangle] ++ #[rustc_std_internal_symbol] + #[linkage = "weak"] -+ static __rust_no_alloc_shim_is_unstable: u8 = 0; ++ fn __rust_alloc_error_handler_should_panic_v2() -> u8 { ++ 0 ++ } + // Mangle the symbol name as rustc expects. ++ // TODO(crbug.com/440481922): Remove this after rolling past https://github.com/rust-lang/rust/pull/143387 #[rustc_std_internal_symbol] #[allow(non_upper_case_globals)] + #[linkage = "weak"] diff --git a/devel/elfcat/Makefile b/devel/elfcat/Makefile index 171a2a089eef..d5a06435f33b 100644 --- a/devel/elfcat/Makefile +++ b/devel/elfcat/Makefile @@ -1,6 +1,6 @@ PORTNAME= elfcat DISTVERSION= 0.1.10 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= lwhsu@FreeBSD.org diff --git a/devel/emacs-lsp-booster/Makefile b/devel/emacs-lsp-booster/Makefile index 09a9ac959c61..d94b59198321 100644 --- a/devel/emacs-lsp-booster/Makefile +++ b/devel/emacs-lsp-booster/Makefile @@ -1,7 +1,7 @@ PORTNAME= emacs-lsp-booster DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MAINTAINER= ashish@FreeBSD.org diff --git a/devel/fnm/Makefile b/devel/fnm/Makefile index 4464bccff05d..3613e18c409c 100644 --- a/devel/fnm/Makefile +++ b/devel/fnm/Makefile @@ -1,7 +1,7 @@ PORTNAME= fnm DISTVERSIONPREFIX= v DISTVERSION= 1.38.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/fsx/Makefile b/devel/fsx/Makefile index c3e20a495aaf..c3f92e3b08f2 100644 --- a/devel/fsx/Makefile +++ b/devel/fsx/Makefile @@ -1,6 +1,6 @@ PORTNAME= fsx DISTVERSION= 0.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/devel/gbump/Makefile b/devel/gbump/Makefile index 29121bba7d15..086eae2bb7c6 100644 --- a/devel/gbump/Makefile +++ b/devel/gbump/Makefile @@ -1,6 +1,6 @@ PORTNAME= gbump PORTVERSION= 1.1.2 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} diff --git a/devel/gfold/Makefile b/devel/gfold/Makefile index adcd6834c004..4d32a55945f0 100644 --- a/devel/gfold/Makefile +++ b/devel/gfold/Makefile @@ -1,6 +1,6 @@ PORTNAME= gfold DISTVERSION= 4.0.0 -PORTREVISION= 30 +PORTREVISION= 31 CATEGORIES= devel MAINTAINER= sec.research.2005@gmail.com diff --git a/devel/ghostie/Makefile b/devel/ghostie/Makefile index 579eae797529..a3f3c2a072eb 100644 --- a/devel/ghostie/Makefile +++ b/devel/ghostie/Makefile @@ -1,7 +1,7 @@ PORTNAME= ghostie DISTVERSIONPREFIX= v DISTVERSION= 0.3.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/git-absorb/Makefile b/devel/git-absorb/Makefile index 25bbfc815614..d3d9cbc93fe0 100644 --- a/devel/git-absorb/Makefile +++ b/devel/git-absorb/Makefile @@ -1,6 +1,6 @@ PORTNAME= git-absorb DISTVERSION= 0.8.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org diff --git a/devel/git-cinnabar/Makefile b/devel/git-cinnabar/Makefile index bdd00ac2077a..b21a7c7635cc 100644 --- a/devel/git-cinnabar/Makefile +++ b/devel/git-cinnabar/Makefile @@ -1,6 +1,6 @@ PORTNAME= git-cinnabar DISTVERSION= 0.7.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= jbeich@FreeBSD.org diff --git a/devel/git-cliff/Makefile b/devel/git-cliff/Makefile index 9dfdf842e3ea..b306b90e4555 100644 --- a/devel/git-cliff/Makefile +++ b/devel/git-cliff/Makefile @@ -1,6 +1,7 @@ PORTNAME= git-cliff DISTVERSIONPREFIX= v DISTVERSION= 2.10.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/git-delta/Makefile b/devel/git-delta/Makefile index bf504b7bc883..cd0f0961b7dd 100644 --- a/devel/git-delta/Makefile +++ b/devel/git-delta/Makefile @@ -1,6 +1,6 @@ PORTNAME= delta DISTVERSION= 0.18.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel PKGNAMEPREFIX= git- diff --git a/devel/git-graph/Makefile b/devel/git-graph/Makefile index c3eebe74b670..34591754b25f 100644 --- a/devel/git-graph/Makefile +++ b/devel/git-graph/Makefile @@ -1,6 +1,6 @@ PORTNAME= git-graph DISTVERSION= 0.6.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MAINTAINER= rodrigo@FreeBSD.org diff --git a/devel/git-repo-manager/Makefile b/devel/git-repo-manager/Makefile index 15e006835d29..0533d0b50e32 100644 --- a/devel/git-repo-manager/Makefile +++ b/devel/git-repo-manager/Makefile @@ -1,7 +1,7 @@ PORTNAME= git-repo-manager DISTVERSIONPREFIX= v DISTVERSION= 0.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/git-workspace/Makefile b/devel/git-workspace/Makefile index 8014037fb938..62524e22074f 100644 --- a/devel/git-workspace/Makefile +++ b/devel/git-workspace/Makefile @@ -1,7 +1,7 @@ PORTNAME= git-workspace DISTVERSIONPREFIX= v DISTVERSION= 1.9.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org 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/gitoxide/Makefile b/devel/gitoxide/Makefile index 84b19b10628e..f6643d622f23 100644 --- a/devel/gitoxide/Makefile +++ b/devel/gitoxide/Makefile @@ -1,7 +1,7 @@ PORTNAME= gitoxide DISTVERSIONPREFIX= v DISTVERSION= 0.41.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/gitu/Makefile b/devel/gitu/Makefile index 1638a6d369d6..506b6f0b38fb 100644 --- a/devel/gitu/Makefile +++ b/devel/gitu/Makefile @@ -1,6 +1,7 @@ PORTNAME= gitu DISTVERSIONPREFIX= v DISTVERSION= 0.36.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/gitui/Makefile b/devel/gitui/Makefile index 1abd3b804275..9df9a39ea814 100644 --- a/devel/gitui/Makefile +++ b/devel/gitui/Makefile @@ -1,7 +1,7 @@ PORTNAME= gitui DISTVERSIONPREFIX= v DISTVERSION= 0.27.0 # After update, `make patch` and `make cargo-crates > Makefile.crates` to avoid fetching vendored openssl-src -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/glitter/Makefile b/devel/glitter/Makefile index c481011ae7ad..17f46a018919 100644 --- a/devel/glitter/Makefile +++ b/devel/glitter/Makefile @@ -1,7 +1,7 @@ PORTNAME= glitter DISTVERSIONPREFIX= v DISTVERSION= 1.6.6 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel PKGNAMESUFFIX= -git-tool 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/grcov/Makefile b/devel/grcov/Makefile index bb9cf0d557b5..e0184ada4639 100644 --- a/devel/grcov/Makefile +++ b/devel/grcov/Makefile @@ -1,7 +1,7 @@ PORTNAME= grcov DISTVERSIONPREFIX= v DISTVERSION= 0.10.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/grex/Makefile b/devel/grex/Makefile index 95cd8a73c5e5..37f70b41a92b 100644 --- a/devel/grex/Makefile +++ b/devel/grex/Makefile @@ -1,7 +1,7 @@ PORTNAME= grex DISTVERSIONPREFIX= v DISTVERSION= 1.4.5 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MAINTAINER= petteri.valkonen@iki.fi 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/hvm/Makefile b/devel/hvm/Makefile index 82b2d0e59001..7ca51a1bad40 100644 --- a/devel/hvm/Makefile +++ b/devel/hvm/Makefile @@ -1,6 +1,6 @@ PORTNAME= hvm DISTVERSION= g20240821 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/interactive_rebase_tool/Makefile b/devel/interactive_rebase_tool/Makefile index d7426fec156d..ab192096f69f 100644 --- a/devel/interactive_rebase_tool/Makefile +++ b/devel/interactive_rebase_tool/Makefile @@ -1,6 +1,6 @@ PORTNAME= interactive_rebase_tool DISTVERSION= 2.4.1 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= devel MAINTAINER= petteri.valkonen@iki.fi diff --git a/devel/jetbrains-restarter/Makefile b/devel/jetbrains-restarter/Makefile index 88e6a7090d76..9ae5a7ede9cb 100644 --- a/devel/jetbrains-restarter/Makefile +++ b/devel/jetbrains-restarter/Makefile @@ -1,5 +1,6 @@ PORTNAME= restarter DISTVERSION= 2025.2.2 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= jetbrains- DIST_SUBDIR= jetbrains 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/jujutsu/Makefile b/devel/jujutsu/Makefile index 41673a27c68c..081a5c72f676 100644 --- a/devel/jujutsu/Makefile +++ b/devel/jujutsu/Makefile @@ -1,6 +1,7 @@ PORTNAME= jujutsu DISTVERSIONPREFIX= v DISTVERSION= 0.32.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= se@FreeBSD.org 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/libdatadog/Makefile b/devel/libdatadog/Makefile index 93b30f7c0763..3d9a99a87f53 100644 --- a/devel/libdatadog/Makefile +++ b/devel/libdatadog/Makefile @@ -1,6 +1,7 @@ PORTNAME= libdatadog PORTVERSION= 20.0.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= sunpoet@FreeBSD.org 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/librashader/Makefile b/devel/librashader/Makefile index 6f657a38554f..6e9b7b64f90f 100644 --- a/devel/librashader/Makefile +++ b/devel/librashader/Makefile @@ -1,7 +1,7 @@ PORTNAME= librashader DISTVERSIONPREFIX= v DISTVERSION= 0.8.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= bsdcode@disroot.org diff --git a/devel/libwasmtime/Makefile b/devel/libwasmtime/Makefile index 20bd16ab386b..398f82fb7b71 100644 --- a/devel/libwasmtime/Makefile +++ b/devel/libwasmtime/Makefile @@ -1,7 +1,7 @@ PORTNAME= lib${GH_PROJECT} PORTVERSION= 36.0.2 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= osa@FreeBSD.org diff --git a/devel/lstr/Makefile b/devel/lstr/Makefile index e483b2691a64..fe075f1cc674 100644 --- a/devel/lstr/Makefile +++ b/devel/lstr/Makefile @@ -1,6 +1,7 @@ PORTNAME= lstr PORTVERSION= 0.2.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= sunpoet@FreeBSD.org diff --git a/devel/marisa-trie/Makefile b/devel/marisa-trie/Makefile index 260bab44d51a..5e646b59bc32 100644 --- a/devel/marisa-trie/Makefile +++ b/devel/marisa-trie/Makefile @@ -1,11 +1,11 @@ PORTNAME= marisa-trie DISTVERSIONPREFIX= v -DISTVERSION= 0.2.6 +DISTVERSION= 0.3.1 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel -MAINTAINER= ports@FreeBSD.org +MAINTAINER= wen@FreeBSD.org COMMENT= MARISA: Matching Algorithm with Recursively Implemented StorAge WWW= https://github.com/s-yata/marisa-trie @@ -13,43 +13,14 @@ LICENSE= BSD2CLAUSE LGPL21+ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/COPYING.md -USES= autoreconf libtool:build pathfix -USE_GITHUB= yes -GH_ACCOUNT= s-yata -GH_PROJECT= marisa-trie +USES= cmake:testing compiler:c++20-lang pathfix USE_LDCONFIG= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-pkg-config-dir=${PREFIX}/libdata/pkgconfig - -INSTALL_TARGET= install-strip -TEST_TARGET= check - -OPTIONS_DEFINE= SSE2 SSE3 SSSE3 SSE4 SSE41 SSE42 SSE4A POPCNT -OPTIONS_DEFAULT=${MACHINE_CPU:tu} - -SSE2_DESC= Support for SSE2 -SSE2_CONFIGURE_ENABLE= sse2 - -SSE3_DESC= Support for SSE3 -SSE3_CONFIGURE_ENABLE= sse3 - -SSSE3_DESC= Support for SSSE3 -SSSE3_CONFIGURE_ENABLE= sse3 - -SSE4_DESC= Support for SSE4 -SSE4_CONFIGURE_ENABLE= sse4 - -SSE41_DESC= Support for SSE4.1 -SSE41_CONFIGURE_ENABLE= sse4.1 - -SSE42_DESC= Support for SSE4.2 -SSE42_CONFIGURE_ENABLE= sse4.2 - -SSE4A_DESC= Support for SSE4a -SSE4A_CONFIGURE_ENABLE= sse4a +USE_GITHUB= yes +GH_ACCOUNT= s-yata -POPCNT_DESC= Support for POPCNT -POPCNT_CONFIGURE_ENABLE= POPCNT +CMAKE_ON_amd64= ENABLE_NATIVE_CODE +CMAKE_ON= BUILD_SHARED_LIBS \ + ${CMAKE_ON_${ARCH}} .include <bsd.port.mk> diff --git a/devel/marisa-trie/distinfo b/devel/marisa-trie/distinfo index 9a0f5b959572..d3a53decd190 100644 --- a/devel/marisa-trie/distinfo +++ b/devel/marisa-trie/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1665596480 -SHA256 (s-yata-marisa-trie-v0.2.6_GH0.tar.gz) = 1063a27c789e75afa2ee6f1716cc6a5486631dcfcb7f4d56d6485d2462e566de -SIZE (s-yata-marisa-trie-v0.2.6_GH0.tar.gz) = 168332 +TIMESTAMP = 1759225340 +SHA256 (s-yata-marisa-trie-v0.3.1_GH0.tar.gz) = 986ed5e2967435e3a3932a8c95980993ae5a196111e377721f0849cad4e807f3 +SIZE (s-yata-marisa-trie-v0.3.1_GH0.tar.gz) = 212791 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/marisa-trie/pkg-plist b/devel/marisa-trie/pkg-plist index 8bde20e459b5..7b9f19f3d70b 100644 --- a/devel/marisa-trie/pkg-plist +++ b/devel/marisa-trie/pkg-plist @@ -8,17 +8,17 @@ bin/marisa-reverse-lookup include/marisa.h include/marisa/agent.h include/marisa/base.h -include/marisa/exception.h include/marisa/iostream.h include/marisa/key.h include/marisa/keyset.h include/marisa/query.h -include/marisa/scoped-array.h -include/marisa/scoped-ptr.h include/marisa/stdio.h include/marisa/trie.h -lib/libmarisa.a +lib/cmake/Marisa/MarisaConfig.cmake +lib/cmake/Marisa/MarisaConfigVersion.cmake +lib/cmake/Marisa/MarisaTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Marisa/MarisaTargets.cmake lib/libmarisa.so lib/libmarisa.so.0 -lib/libmarisa.so.0.0.0 +lib/libmarisa.so.0.3.1 libdata/pkgconfig/marisa.pc diff --git a/devel/nextest/Makefile b/devel/nextest/Makefile index 556642c142c3..4f4be69384a0 100644 --- a/devel/nextest/Makefile +++ b/devel/nextest/Makefile @@ -1,7 +1,7 @@ PORTNAME= nextest DISTVERSIONPREFIX= cargo-nextest- DISTVERSION= 0.9.88 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/omnilinter/Makefile b/devel/omnilinter/Makefile index 740653142861..2970a79f12d0 100644 --- a/devel/omnilinter/Makefile +++ b/devel/omnilinter/Makefile @@ -1,6 +1,6 @@ PORTNAME= omnilinter PORTVERSION= 0.7.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/openapi-tui/Makefile b/devel/openapi-tui/Makefile index ee6751eb496e..fa548790a109 100644 --- a/devel/openapi-tui/Makefile +++ b/devel/openapi-tui/Makefile @@ -1,6 +1,6 @@ PORTNAME= openapi-tui DISTVERSION= 0.10.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= olgeni@FreeBSD.org diff --git a/devel/parol-ls/Makefile b/devel/parol-ls/Makefile index d4736a9b6e14..e456b52761a9 100644 --- a/devel/parol-ls/Makefile +++ b/devel/parol-ls/Makefile @@ -1,6 +1,6 @@ PORTNAME= parol-ls DISTVERSION= 1.0.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/parol/Makefile b/devel/parol/Makefile index 606fd7bce7df..519d6ef48957 100644 --- a/devel/parol/Makefile +++ b/devel/parol/Makefile @@ -1,6 +1,6 @@ PORTNAME= parol DISTVERSION= 1.0.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/patsh/Makefile b/devel/patsh/Makefile index 2d5a4a960650..df6b4ed8df89 100644 --- a/devel/patsh/Makefile +++ b/devel/patsh/Makefile @@ -1,7 +1,7 @@ PORTNAME= patsh DISTVERSIONPREFIX= v DISTVERSION= 0.2.1 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/pijul/Makefile b/devel/pijul/Makefile index eb656c8b2fb4..60ff3837fdd3 100644 --- a/devel/pijul/Makefile +++ b/devel/pijul/Makefile @@ -1,6 +1,6 @@ PORTNAME= pijul PORTVERSION= 1.0.0.b9 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/pipelight/Makefile b/devel/pipelight/Makefile index 3158e37f1e11..4f9ddab4f1dc 100644 --- a/devel/pipelight/Makefile +++ b/devel/pipelight/Makefile @@ -1,6 +1,7 @@ PORTNAME= pipelight DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= ashish@FreeBSD.org 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-awscli/Makefile b/devel/py-awscli/Makefile index ad7ffae94f14..84469ae936e9 100644 --- a/devel/py-awscli/Makefile +++ b/devel/py-awscli/Makefile @@ -1,5 +1,5 @@ PORTNAME= awscli -PORTVERSION= 1.42.29 +PORTVERSION= 1.42.44 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-awscli/distinfo b/devel/py-awscli/distinfo index 0f396a112d7a..95e98125c0d9 100644 --- a/devel/py-awscli/distinfo +++ b/devel/py-awscli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757628754 -SHA256 (awscli-1.42.29.tar.gz) = b00e414c0ecf670f5e80e27f10b870115325c7e2f8dc8972488f55fc41e85b92 -SIZE (awscli-1.42.29.tar.gz) = 1889648 +TIMESTAMP = 1759488034 +SHA256 (awscli-1.42.44.tar.gz) = 0530907700d77350cf879d9cbabca0d28fd13e8bc69b593709e634ac6e802992 +SIZE (awscli-1.42.44.tar.gz) = 1889600 diff --git a/devel/py-cgen/Makefile b/devel/py-cgen/Makefile new file mode 100644 index 000000000000..9c194c2749a5 --- /dev/null +++ b/devel/py-cgen/Makefile @@ -0,0 +1,27 @@ +PORTNAME= cgen +DISTVERSION= 2025.1 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C/C++ source generation from an AST +WWW= https://github.com/inducer/cgen + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.6,1:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytools>=2022.1.14:devel/py-pytools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.5:devel/py-typing-extensions@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ruff>0:devel/py-ruff@${PY_FLAVOR} + +USES= python +USE_PYTHON= pep517 autoplist concurrent pytest + +NO_ARCH= yes + +# tests as of 2025.1: 1 passed in 2.02s + +.include <bsd.port.mk> diff --git a/devel/py-cgen/distinfo b/devel/py-cgen/distinfo new file mode 100644 index 000000000000..1150810e9a33 --- /dev/null +++ b/devel/py-cgen/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1734976997 +SHA256 (cgen-2025.1.tar.gz) = 79f01e010d49c13e58b4ca8f2d4996a6b7178968f5f2d906262733480ae7a2d4 +SIZE (cgen-2025.1.tar.gz) = 19236 diff --git a/devel/py-cgen/pkg-descr b/devel/py-cgen/pkg-descr new file mode 100644 index 000000000000..ea1150c484a5 --- /dev/null +++ b/devel/py-cgen/pkg-descr @@ -0,0 +1,10 @@ +cgen offers a simple abstract syntax tree for C and related languages +(C++/CUDA/OpenCL) to allow structured code generation from Python. + +cgen can be used to generate C code programmatically, which is useful for: +- Code generators +- Domain-specific language compilers +- High-performance computing applications +- GPU kernel generation (CUDA/OpenCL) + +To represent mathematical expressions, cgen can be used with pymbolic. diff --git a/devel/py-dbt-extractor/Makefile b/devel/py-dbt-extractor/Makefile index 858b5dcae8bb..b53e6f261aab 100644 --- a/devel/py-dbt-extractor/Makefile +++ b/devel/py-dbt-extractor/Makefile @@ -1,6 +1,6 @@ PORTNAME= dbt-extractor PORTVERSION= 0.5.1 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-ddtrace/Makefile b/devel/py-ddtrace/Makefile index 0dbd1f915077..3033e357dbfe 100644 --- a/devel/py-ddtrace/Makefile +++ b/devel/py-ddtrace/Makefile @@ -1,6 +1,6 @@ PORTNAME= ddtrace PORTVERSION= 2.21.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= PYPI \ https://github.com/abseil/abseil-cpp/releases/download/${ABSEIL_VERSION}/:abseil diff --git a/devel/py-deptry/Makefile b/devel/py-deptry/Makefile index 66040801a53e..77968595ddf0 100644 --- a/devel/py-deptry/Makefile +++ b/devel/py-deptry/Makefile @@ -1,5 +1,6 @@ PORTNAME= deptry PORTVERSION= 0.23.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-dulwich/Makefile b/devel/py-dulwich/Makefile index e9945ba22ed4..9ba295e01484 100644 --- a/devel/py-dulwich/Makefile +++ b/devel/py-dulwich/Makefile @@ -1,5 +1,6 @@ PORTNAME= dulwich PORTVERSION= 0.24.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-fastuuid/Makefile b/devel/py-fastuuid/Makefile index 76a09cdfac41..db17f72e0648 100644 --- a/devel/py-fastuuid/Makefile +++ b/devel/py-fastuuid/Makefile @@ -1,5 +1,6 @@ PORTNAME= fastuuid DISTVERSION= 0.13.5 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} 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-jellyfish/Makefile b/devel/py-jellyfish/Makefile index 5bc2e16c65fb..5c59216aae73 100644 --- a/devel/py-jellyfish/Makefile +++ b/devel/py-jellyfish/Makefile @@ -1,6 +1,6 @@ PORTNAME= jellyfish PORTVERSION= 0.11.2 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-libcst/Makefile b/devel/py-libcst/Makefile index c21372f66204..600942fb99f8 100644 --- a/devel/py-libcst/Makefile +++ b/devel/py-libcst/Makefile @@ -1,6 +1,6 @@ PORTNAME= libcst PORTVERSION= 1.8.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-mando/Makefile b/devel/py-mando/Makefile new file mode 100644 index 000000000000..69bab921b3ea --- /dev/null +++ b/devel/py-mando/Makefile @@ -0,0 +1,28 @@ +PORTNAME= mando +DISTVERSION= 0.8.2 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Create Python CLI apps with little to no effort at all +WWW= https://mando.readthedocs.org/ \ + https://github.com/rubik/mando + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist pytest + +TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + +NO_ARCH= yes + +do-test: + @cd ${TEST_WRKSRC} && \ + ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest mando/tests/ -v + +# tests as of 0.8.2: 83 passed in 2.23s + +.include <bsd.port.mk> diff --git a/devel/py-mando/distinfo b/devel/py-mando/distinfo new file mode 100644 index 000000000000..5d6e89ec3917 --- /dev/null +++ b/devel/py-mando/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1759484079 +SHA256 (mando-0.8.2.tar.gz) = 539659d9a2fdc6c9a188211c58f381e0dafe9597085174c5472eb1ed0224b6b5 +SIZE (mando-0.8.2.tar.gz) = 37732 diff --git a/devel/py-mando/pkg-descr b/devel/py-mando/pkg-descr new file mode 100644 index 000000000000..dd167d7af971 --- /dev/null +++ b/devel/py-mando/pkg-descr @@ -0,0 +1,15 @@ +mando is a wrapper around argparse, and allows you to write complete CLI +applications in seconds while maintaining all the flexibility. + +While argparse is great for simple command line applications with only +one, default command, when you have to add multiple commands and manage them +things get really messy and long. But don't worry, mando comes to help! + +Features: +* Create complete CLI applications with decorators +* Supports multiple commands and subcommands +* Automatic help generation from docstrings +* Type annotations support for Python 3 +* Sphinx, Google, and NumPy docstring styles +* Shell autocompletion via argcomplete package +* Custom format classes support diff --git a/devel/py-maturin/Makefile b/devel/py-maturin/Makefile index 03d45ee28a08..320591256831 100644 --- a/devel/py-maturin/Makefile +++ b/devel/py-maturin/Makefile @@ -1,5 +1,6 @@ PORTNAME= maturin DISTVERSION= 1.9.4 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-orjson/Makefile b/devel/py-orjson/Makefile index c62e42d3d8da..a04b3b1f8db5 100644 --- a/devel/py-orjson/Makefile +++ b/devel/py-orjson/Makefile @@ -1,6 +1,6 @@ PORTNAME= orjson DISTVERSION= 3.10.15 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-ormsgpack/Makefile b/devel/py-ormsgpack/Makefile index 7888e4c35261..c6bdf25c551a 100644 --- a/devel/py-ormsgpack/Makefile +++ b/devel/py-ormsgpack/Makefile @@ -1,6 +1,6 @@ PORTNAME= ormsgpack DISTVERSION= 1.10.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pendulum/Makefile b/devel/py-pendulum/Makefile index b107d9e4ae76..b92f24b94aab 100644 --- a/devel/py-pendulum/Makefile +++ b/devel/py-pendulum/Makefile @@ -1,6 +1,6 @@ PORTNAME= pendulum PORTVERSION= 3.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pycrdt/Makefile b/devel/py-pycrdt/Makefile index 624cfe7edcd9..503a7612ff34 100644 --- a/devel/py-pycrdt/Makefile +++ b/devel/py-pycrdt/Makefile @@ -1,5 +1,6 @@ PORTNAME= pycrdt PORTVERSION= 0.12.32 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pydantic-core/Makefile b/devel/py-pydantic-core/Makefile index e4c8dda1d2ca..1c10e85e49bb 100644 --- a/devel/py-pydantic-core/Makefile +++ b/devel/py-pydantic-core/Makefile @@ -1,6 +1,6 @@ PORTNAME= pydantic-core PORTVERSION= 2.33.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyperscan/Makefile b/devel/py-pyperscan/Makefile index e89e5273f2e4..769612db21a8 100644 --- a/devel/py-pyperscan/Makefile +++ b/devel/py-pyperscan/Makefile @@ -1,7 +1,7 @@ PORTNAME= pyperscan DISTVERSIONPREFIX= v DISTVERSION= 0.3.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyproject-fmt-rust/Makefile b/devel/py-pyproject-fmt-rust/Makefile index 1883eb76abc5..61ccf8e7bda9 100644 --- a/devel/py-pyproject-fmt-rust/Makefile +++ b/devel/py-pyproject-fmt-rust/Makefile @@ -1,6 +1,6 @@ PORTNAME= pyproject-fmt-rust PORTVERSION= 1.2.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-pyproject-fmt/Makefile b/devel/py-pyproject-fmt/Makefile index 230308b3430e..bdced9852e87 100644 --- a/devel/py-pyproject-fmt/Makefile +++ b/devel/py-pyproject-fmt/Makefile @@ -1,6 +1,6 @@ PORTNAME= pyproject-fmt PORTVERSION= 2.6.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-python-gitlab/Makefile b/devel/py-python-gitlab/Makefile index 769971a05993..2c0a2d6df66e 100644 --- a/devel/py-python-gitlab/Makefile +++ b/devel/py-python-gitlab/Makefile @@ -1,5 +1,5 @@ PORTNAME= python-gitlab -DISTVERSION= 6.3.0 +DISTVERSION= 6.4.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-python-gitlab/distinfo b/devel/py-python-gitlab/distinfo index 20a739c8ddb0..cbf7d1df6849 100644 --- a/devel/py-python-gitlab/distinfo +++ b/devel/py-python-gitlab/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1756431411 -SHA256 (python_gitlab-6.3.0.tar.gz) = 3d7764956948949a2a3aff2078e6e93a5efea2db0a29566b5e142091bcc075aa -SIZE (python_gitlab-6.3.0.tar.gz) = 397683 +TIMESTAMP = 1759618945 +SHA256 (python_gitlab-6.4.0.tar.gz) = 55ed94fb47932124b7f9df8e72b29352d3d0ee01ecf44f081dd070f4bad8700d +SIZE (python_gitlab-6.4.0.tar.gz) = 397816 diff --git a/devel/py-pyyaml/Makefile b/devel/py-pyyaml/Makefile index 4cb05ac6621c..b6871a976a38 100644 --- a/devel/py-pyyaml/Makefile +++ b/devel/py-pyyaml/Makefile @@ -1,10 +1,8 @@ PORTNAME= pyyaml -PORTVERSION= 6.0.1 -PORTREVISION= 1 +DISTVERSION= 6.0.2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= PyYAML-${PORTVERSION} MAINTAINER= python@FreeBSD.org COMMENT= Python YAML parser @@ -13,10 +11,8 @@ WWW= https://pyyaml.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cython>=0:lang/cython@${PY_FLAVOR} - -USES= python -USE_PYTHON= autoplist concurrent distutils +USES= localbase python +USE_PYTHON= autoplist concurrent cython3 distutils OPTIONS_DEFINE= LIBYAML EXAMPLES OPTIONS_DEFAULT=LIBYAML diff --git a/devel/py-pyyaml/distinfo b/devel/py-pyyaml/distinfo index 8d760134b634..fd14ec0abfb0 100644 --- a/devel/py-pyyaml/distinfo +++ b/devel/py-pyyaml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1699774986 -SHA256 (PyYAML-6.0.1.tar.gz) = bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43 -SIZE (PyYAML-6.0.1.tar.gz) = 125201 +TIMESTAMP = 1758388888 +SHA256 (pyyaml-6.0.2.tar.gz) = d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e +SIZE (pyyaml-6.0.2.tar.gz) = 130631 diff --git a/devel/py-qcs-sdk-python/Makefile b/devel/py-qcs-sdk-python/Makefile index c89bea47ed8e..a774790f44b3 100644 --- a/devel/py-qcs-sdk-python/Makefile +++ b/devel/py-qcs-sdk-python/Makefile @@ -1,7 +1,7 @@ PORTNAME= qcs-sdk-python DISTVERSIONPREFIX= python/v DISTVERSION= 0.20.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-regress/Makefile b/devel/py-regress/Makefile index a12c26d077b8..05a5dcd78ff2 100644 --- a/devel/py-regress/Makefile +++ b/devel/py-regress/Makefile @@ -1,6 +1,6 @@ PORTNAME= regress PORTVERSION= 0.4.2 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-rpds-py/Makefile b/devel/py-rpds-py/Makefile index c896274fc739..c2adad991720 100644 --- a/devel/py-rpds-py/Makefile +++ b/devel/py-rpds-py/Makefile @@ -1,5 +1,6 @@ PORTNAME= rpds-py PORTVERSION= 0.27.1 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI \ https://github.com/crate-py/rpds/releases/download/v${PORTVERSION}/ diff --git a/devel/py-ruff/Makefile b/devel/py-ruff/Makefile index 4b0af2431411..dd15ce877cc8 100644 --- a/devel/py-ruff/Makefile +++ b/devel/py-ruff/Makefile @@ -1,5 +1,6 @@ PORTNAME= ruff DISTVERSION= 0.13.2 +PORTREVISION= 1 CATEGORIES= devel python #MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-tox-toml-fmt/Makefile b/devel/py-tox-toml-fmt/Makefile index 66b0df714ff3..2e35c476addd 100644 --- a/devel/py-tox-toml-fmt/Makefile +++ b/devel/py-tox-toml-fmt/Makefile @@ -1,6 +1,6 @@ PORTNAME= tox-toml-fmt PORTVERSION= 1.0.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} 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/py-ty/Makefile b/devel/py-ty/Makefile index e9ca3a9ccfb4..668a3b61a965 100644 --- a/devel/py-ty/Makefile +++ b/devel/py-ty/Makefile @@ -1,5 +1,6 @@ PORTNAME= ty DISTVERSION= 0.0.1a21 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-validators/Makefile b/devel/py-validators/Makefile index c58f8089252c..933a5069e692 100644 --- a/devel/py-validators/Makefile +++ b/devel/py-validators/Makefile @@ -1,5 +1,5 @@ PORTNAME= validators -DISTVERSION= 0.34.0 +DISTVERSION= 0.35.0 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-validators/distinfo b/devel/py-validators/distinfo index 95cd1a1d790f..dbcb81337e07 100644 --- a/devel/py-validators/distinfo +++ b/devel/py-validators/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1736597290 -SHA256 (validators-0.34.0.tar.gz) = 647fe407b45af9a74d245b943b18e6a816acf4926974278f6dd617778e1e781f -SIZE (validators-0.34.0.tar.gz) = 70955 +TIMESTAMP = 1759449183 +SHA256 (validators-0.35.0.tar.gz) = 992d6c48a4e77c81f1b4daba10d16c3a9bb0dbb79b3a19ea847ff0928e70497a +SIZE (validators-0.35.0.tar.gz) = 73399 diff --git a/devel/py-watchfiles/Makefile b/devel/py-watchfiles/Makefile index 60ae81368717..5f861b85092b 100644 --- a/devel/py-watchfiles/Makefile +++ b/devel/py-watchfiles/Makefile @@ -1,6 +1,6 @@ PORTNAME= watchfiles PORTVERSION= 0.24.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/pylyzer/Makefile b/devel/pylyzer/Makefile index ab157d4c7f44..be7125e7f352 100644 --- a/devel/pylyzer/Makefile +++ b/devel/pylyzer/Makefile @@ -1,7 +1,7 @@ PORTNAME= pylyzer DISTVERSIONPREFIX= v DISTVERSION= 0.0.78 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel python MAINTAINER= yuri@FreeBSD.org 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/radicle/Makefile b/devel/radicle/Makefile index 781be9284dc3..4cbb06e1f322 100644 --- a/devel/radicle/Makefile +++ b/devel/radicle/Makefile @@ -1,5 +1,5 @@ PORTNAME= radicle -DISTVERSION= 1.4.0 +DISTVERSION= 1.5.0 CATEGORIES= devel MASTER_SITES= https://distfiles.pirateparty.in/ashish/:sources \ LOCAL/ashish:sources @@ -17,14 +17,14 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS -GIT_HEAD= bbd1e2cff60cb8086617251adc0c41d0847fe303 +GIT_HEAD= 5fea9ac05c7296dce3f8dec363b7442bec929c55 USES= cargo CARGO_INSTALL_PATH= crates/radicle-cli crates/radicle-remote-helper \ crates/radicle-node CARGO_ENV= GIT_HEAD=${GIT_HEAD} \ RADICLE_VERSION=${DISTVERSION} \ - SOURCE_DATE_EPOCH=1756995139 + SOURCE_DATE_EPOCH=1758638030 PLIST_FILES= bin/git-remote-rad \ bin/rad \ bin/radicle-node @@ -38,17 +38,19 @@ DOCS_PLIST_FILES= share/man/man1/git-remote-rad.1.gz \ # courtesy: https://reproducible-builds.org/docs/archives/ generate-tarball: - git clone https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5.git ${PORTNAME} + git init --bare ${PORTNAME} + git -C ${PORTNAME} remote add origin https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5.git + git -C ${PORTNAME} fetch --depth=1 origin ${GIT_HEAD} ${RM} -rf ${DISTNAME} - cd ${PORTNAME} && git archive --format tar --prefix ${DISTNAME}/ \ - ${GIT_HEAD} | ${TAR} xf - -C ../ + git -C ${PORTNAME} archive --format tar --prefix ${DISTNAME}/ \ + ${GIT_HEAD} | ${TAR} xf - ${FIND} ${DISTNAME} -print0 | \ ${XARGS} -0r ${TOUCH} -d '1970-01-01T00:00:00Z' ${FIND} ${DISTNAME} -print0 | LC_ALL=C ${SORT} -z | \ sudo ${TAR} --owner=0 --group=0 --numeric-owner --no-recursion \ --null -T - -cf - ${DISTNAME} | \ ${GZIP_CMD} -9n >${DISTNAME}.tar.gz - git -C ${PORTNAME} log -1 --pretty=%ct HEAD + git -C ${PORTNAME} log -1 --pretty=%ct ${GIT_HEAD} ${RM} -rf ${PORTNAME} ${DISTNAME} post-build-DOCS-on: diff --git a/devel/radicle/Makefile.crates b/devel/radicle/Makefile.crates index a68a740db012..2cf1cfc0f919 100644 --- a/devel/radicle/Makefile.crates +++ b/devel/radicle/Makefile.crates @@ -53,6 +53,7 @@ CARGO_CRATES= addr2line-0.24.2 \ cipher-0.4.4 \ colorchoice-1.0.0 \ colored-2.1.0 \ + console-0.16.0 \ const-oid-0.9.6 \ convert_case-0.7.1 \ core-foundation-sys-0.8.6 \ @@ -91,6 +92,7 @@ CARGO_CRATES= addr2line-0.24.2 \ elliptic-curve-0.13.8 \ email_address-0.2.9 \ emojis-0.6.4 \ + encode_unicode-1.0.0 \ env_filter-0.1.3 \ env_logger-0.11.8 \ equivalent-1.0.1 \ @@ -172,9 +174,12 @@ CARGO_CRATES= addr2line-0.24.2 \ idna-1.0.3 \ idna_adapter-1.2.0 \ indexmap-2.2.6 \ + indicatif-0.18.0 \ inout-0.1.3 \ inquire-0.7.5 \ io-reactor-0.5.2 \ + io-uring-0.7.10 \ + itertools-0.14.0 \ itoa-1.0.11 \ jiff-0.2.1 \ jiff-tzdb-0.1.4 \ @@ -232,6 +237,7 @@ CARGO_CRATES= addr2line-0.24.2 \ p521-0.13.3 \ parking_lot-0.12.3 \ parking_lot_core-0.9.9 \ + paste-1.0.15 \ pbkdf2-0.12.2 \ pem-rfc7468-0.7.0 \ percent-encoding-2.3.1 \ @@ -294,6 +300,7 @@ CARGO_CRATES= addr2line-0.24.2 \ serde-untagged-0.1.7 \ serde_derive-1.0.219 \ serde_derive_internals-0.29.1 \ + serde_fmt-1.0.3 \ serde_json-1.0.140 \ serde_spanned-1.0.0 \ sha1_smol-1.0.0 \ @@ -311,6 +318,7 @@ CARGO_CRATES= addr2line-0.24.2 \ similar-2.5.0 \ siphasher-0.3.11 \ siphasher-1.0.1 \ + slab-0.4.11 \ smallvec-1.13.2 \ snapbox-0.4.17 \ snapbox-macros-0.3.8 \ @@ -326,7 +334,16 @@ CARGO_CRATES= addr2line-0.24.2 \ ssh-key-0.6.6 \ stable_deref_trait-1.2.0 \ streaming-iterator-0.1.9 \ + structured-logger-1.0.4 \ subtle-2.5.0 \ + sval-2.14.1 \ + sval_buffer-2.14.1 \ + sval_dynamic-2.14.1 \ + sval_fmt-2.14.1 \ + sval_json-2.14.1 \ + sval_nested-2.14.1 \ + sval_ref-2.14.1 \ + sval_serde-2.14.1 \ syn-1.0.109 \ syn-2.0.89 \ sync-ptr-0.1.4 \ @@ -348,6 +365,7 @@ CARGO_CRATES= addr2line-0.24.2 \ tinystr-0.7.6 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.1 \ + tokio-1.47.1 \ toml-0.9.5 \ toml_datetime-0.7.0 \ toml_writer-1.0.2 \ @@ -377,6 +395,8 @@ CARGO_CRATES= addr2line-0.24.2 \ unicode-normalization-0.1.23 \ unicode-segmentation-1.11.0 \ unicode-width-0.1.11 \ + unicode-width-0.2.1 \ + unit-prefix-0.5.1 \ universal-hash-0.5.1 \ url-2.5.4 \ utf16_iter-1.0.5 \ @@ -385,6 +405,9 @@ CARGO_CRATES= addr2line-0.24.2 \ uuid-1.16.0 \ uuid-simd-0.8.0 \ valuable-0.1.1 \ + value-bag-1.11.1 \ + value-bag-serde1-1.11.1 \ + value-bag-sval2-1.11.1 \ vcpkg-0.2.15 \ version_check-0.9.4 \ vsimd-0.8.0 \ @@ -396,6 +419,7 @@ CARGO_CRATES= addr2line-0.24.2 \ wasm-bindgen-macro-0.2.100 \ wasm-bindgen-macro-support-0.2.100 \ wasm-bindgen-shared-0.2.100 \ + web-time-1.1.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.7 \ @@ -410,23 +434,33 @@ CARGO_CRATES= addr2line-0.24.2 \ windows-sys-0.48.0 \ windows-sys-0.52.0 \ windows-sys-0.59.0 \ + windows-sys-0.60.2 \ windows-targets-0.48.5 \ windows-targets-0.52.6 \ + windows-targets-0.53.2 \ windows_aarch64_gnullvm-0.48.5 \ windows_aarch64_gnullvm-0.52.6 \ + windows_aarch64_gnullvm-0.53.0 \ windows_aarch64_msvc-0.48.5 \ windows_aarch64_msvc-0.52.6 \ + windows_aarch64_msvc-0.53.0 \ windows_i686_gnu-0.48.5 \ windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.0 \ windows_i686_gnullvm-0.52.6 \ + windows_i686_gnullvm-0.53.0 \ windows_i686_msvc-0.48.5 \ windows_i686_msvc-0.52.6 \ + windows_i686_msvc-0.53.0 \ windows_x86_64_gnu-0.48.5 \ windows_x86_64_gnu-0.52.6 \ + windows_x86_64_gnu-0.53.0 \ windows_x86_64_gnullvm-0.48.5 \ windows_x86_64_gnullvm-0.52.6 \ + windows_x86_64_gnullvm-0.53.0 \ windows_x86_64_msvc-0.48.5 \ windows_x86_64_msvc-0.52.6 \ + windows_x86_64_msvc-0.53.0 \ winnow-0.6.26 \ winpipe-0.1.1 \ wit-bindgen-rt-0.39.0 \ diff --git a/devel/radicle/distinfo b/devel/radicle/distinfo index 399bbc40dc9f..bfe92df032d9 100644 --- a/devel/radicle/distinfo +++ b/devel/radicle/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1757154569 -SHA256 (radicle-1.4.0.tar.gz) = a91bfef25810f280b78a999d00d2c6c7ea3f43262c45863289a225061c8d4544 -SIZE (radicle-1.4.0.tar.gz) = 1100703 +TIMESTAMP = 1759442576 +SHA256 (radicle-1.5.0.tar.gz) = d802f30e7d68caf489009bdb9a737ba7afb5b512d89ab06c161d6645e12df218 +SIZE (radicle-1.5.0.tar.gz) = 1110536 SHA256 (rust/crates/addr2line-0.24.2.crate) = dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1 SIZE (rust/crates/addr2line-0.24.2.crate) = 39015 SHA256 (rust/crates/adler2-2.0.0.crate) = 512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627 @@ -111,6 +111,8 @@ SHA256 (rust/crates/colorchoice-1.0.0.crate) = acbf1af155f9b9ef647e42cdc158db4b6 SIZE (rust/crates/colorchoice-1.0.0.crate) = 6857 SHA256 (rust/crates/colored-2.1.0.crate) = cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8 SIZE (rust/crates/colored-2.1.0.crate) = 23348 +SHA256 (rust/crates/console-0.16.0.crate) = 2e09ced7ebbccb63b4c65413d821f2e00ce54c5ca4514ddc6b3c892fdbcbc69d +SIZE (rust/crates/console-0.16.0.crate) = 39107 SHA256 (rust/crates/const-oid-0.9.6.crate) = c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8 SIZE (rust/crates/const-oid-0.9.6.crate) = 45382 SHA256 (rust/crates/convert_case-0.7.1.crate) = bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7 @@ -187,6 +189,8 @@ SHA256 (rust/crates/email_address-0.2.9.crate) = e079f19b08ca6239f47f8ba8509c11c SIZE (rust/crates/email_address-0.2.9.crate) = 21579 SHA256 (rust/crates/emojis-0.6.4.crate) = 99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4 SIZE (rust/crates/emojis-0.6.4.crate) = 120190 +SHA256 (rust/crates/encode_unicode-1.0.0.crate) = 34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0 +SIZE (rust/crates/encode_unicode-1.0.0.crate) = 56986 SHA256 (rust/crates/env_filter-0.1.3.crate) = 186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0 SIZE (rust/crates/env_filter-0.1.3.crate) = 15191 SHA256 (rust/crates/env_logger-0.11.8.crate) = 13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f @@ -349,12 +353,18 @@ SHA256 (rust/crates/idna_adapter-1.2.0.crate) = daca1df1c957320b2cf139ac61e7bd64 SIZE (rust/crates/idna_adapter-1.2.0.crate) = 8206 SHA256 (rust/crates/indexmap-2.2.6.crate) = 168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26 SIZE (rust/crates/indexmap-2.2.6.crate) = 82420 +SHA256 (rust/crates/indicatif-0.18.0.crate) = 70a646d946d06bedbbc4cac4c218acf4bbf2d87757a784857025f4d447e4e1cd +SIZE (rust/crates/indicatif-0.18.0.crate) = 67969 SHA256 (rust/crates/inout-0.1.3.crate) = a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5 SIZE (rust/crates/inout-0.1.3.crate) = 10743 SHA256 (rust/crates/inquire-0.7.5.crate) = 0fddf93031af70e75410a2511ec04d49e758ed2f26dad3404a934e0fb45cc12a SIZE (rust/crates/inquire-0.7.5.crate) = 102904 SHA256 (rust/crates/io-reactor-0.5.2.crate) = 77d78c3e630f04a61ec86ba171c0bbd161434a7f2e8e4a67728320d4ce7c6c79 SIZE (rust/crates/io-reactor-0.5.2.crate) = 27453 +SHA256 (rust/crates/io-uring-0.7.10.crate) = 046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b +SIZE (rust/crates/io-uring-0.7.10.crate) = 103070 +SHA256 (rust/crates/itertools-0.14.0.crate) = 2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285 +SIZE (rust/crates/itertools-0.14.0.crate) = 152715 SHA256 (rust/crates/itoa-1.0.11.crate) = 49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b SIZE (rust/crates/itoa-1.0.11.crate) = 10563 SHA256 (rust/crates/jiff-0.2.1.crate) = 3590fea8e9e22d449600c9bbd481a8163bef223e4ff938e5f55899f8cf1adb93 @@ -469,6 +479,8 @@ SHA256 (rust/crates/parking_lot-0.12.3.crate) = f1bf18183cf54e8d6059647fc3063646 SIZE (rust/crates/parking_lot-0.12.3.crate) = 41860 SHA256 (rust/crates/parking_lot_core-0.9.9.crate) = 4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e SIZE (rust/crates/parking_lot_core-0.9.9.crate) = 32445 +SHA256 (rust/crates/paste-1.0.15.crate) = 57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a +SIZE (rust/crates/paste-1.0.15.crate) = 18374 SHA256 (rust/crates/pbkdf2-0.12.2.crate) = f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2 SIZE (rust/crates/pbkdf2-0.12.2.crate) = 13906 SHA256 (rust/crates/pem-rfc7468-0.7.0.crate) = 88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412 @@ -593,6 +605,8 @@ SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21 SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798 SHA256 (rust/crates/serde_derive_internals-0.29.1.crate) = 18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711 SIZE (rust/crates/serde_derive_internals-0.29.1.crate) = 26189 +SHA256 (rust/crates/serde_fmt-1.0.3.crate) = e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4 +SIZE (rust/crates/serde_fmt-1.0.3.crate) = 8677 SHA256 (rust/crates/serde_json-1.0.140.crate) = 20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373 SIZE (rust/crates/serde_json-1.0.140.crate) = 154852 SHA256 (rust/crates/serde_spanned-1.0.0.crate) = 40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83 @@ -627,6 +641,8 @@ SHA256 (rust/crates/siphasher-0.3.11.crate) = 38b58827f4464d87d377d175e90bf58eb0 SIZE (rust/crates/siphasher-0.3.11.crate) = 10442 SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d SIZE (rust/crates/siphasher-1.0.1.crate) = 10351 +SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589 +SIZE (rust/crates/slab-0.4.11.crate) = 18549 SHA256 (rust/crates/smallvec-1.13.2.crate) = 3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67 SIZE (rust/crates/smallvec-1.13.2.crate) = 35216 SHA256 (rust/crates/snapbox-0.4.17.crate) = 4b831b6e80fbcd2889efa75b185d24005f85981431495f995292b25836519d84 @@ -657,8 +673,26 @@ SHA256 (rust/crates/stable_deref_trait-1.2.0.crate) = a8f112729512f8e442d81f95a8 SIZE (rust/crates/stable_deref_trait-1.2.0.crate) = 8054 SHA256 (rust/crates/streaming-iterator-0.1.9.crate) = 2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520 SIZE (rust/crates/streaming-iterator-0.1.9.crate) = 18482 +SHA256 (rust/crates/structured-logger-1.0.4.crate) = f41647ab1dfedac6dccb4622ded5f3bea80ade9257a9ddcc89e36a43e1769cdf +SIZE (rust/crates/structured-logger-1.0.4.crate) = 16720 SHA256 (rust/crates/subtle-2.5.0.crate) = 81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc SIZE (rust/crates/subtle-2.5.0.crate) = 13909 +SHA256 (rust/crates/sval-2.14.1.crate) = 7cc9739f56c5d0c44a5ed45473ec868af02eb896af8c05f616673a31e1d1bb09 +SIZE (rust/crates/sval-2.14.1.crate) = 26602 +SHA256 (rust/crates/sval_buffer-2.14.1.crate) = f39b07436a8c271b34dad5070c634d1d3d76d6776e938ee97b4a66a5e8003d0b +SIZE (rust/crates/sval_buffer-2.14.1.crate) = 19147 +SHA256 (rust/crates/sval_dynamic-2.14.1.crate) = ffcb072d857431bf885580dacecf05ed987bac931230736739a79051dbf3499b +SIZE (rust/crates/sval_dynamic-2.14.1.crate) = 8453 +SHA256 (rust/crates/sval_fmt-2.14.1.crate) = 3f214f427ad94a553e5ca5514c95c6be84667cbc5568cce957f03f3477d03d5c +SIZE (rust/crates/sval_fmt-2.14.1.crate) = 10888 +SHA256 (rust/crates/sval_json-2.14.1.crate) = 389ed34b32e638dec9a99c8ac92d0aa1220d40041026b625474c2b6a4d6f4feb +SIZE (rust/crates/sval_json-2.14.1.crate) = 11416 +SHA256 (rust/crates/sval_nested-2.14.1.crate) = 14bae8fcb2f24fee2c42c1f19037707f7c9a29a0cda936d2188d48a961c4bb2a +SIZE (rust/crates/sval_nested-2.14.1.crate) = 16867 +SHA256 (rust/crates/sval_ref-2.14.1.crate) = 2a4eaea3821d3046dcba81d4b8489421da42961889902342691fb7eab491d79e +SIZE (rust/crates/sval_ref-2.14.1.crate) = 8400 +SHA256 (rust/crates/sval_serde-2.14.1.crate) = 172dd4aa8cb3b45c8ac8f3b4111d644cd26938b0643ede8f93070812b87fb339 +SIZE (rust/crates/sval_serde-2.14.1.crate) = 11028 SHA256 (rust/crates/syn-1.0.109.crate) = 72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237 SIZE (rust/crates/syn-1.0.109.crate) = 237611 SHA256 (rust/crates/syn-2.0.89.crate) = 44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e @@ -701,6 +735,8 @@ SHA256 (rust/crates/tinyvec-1.6.0.crate) = 87cc5ceb3875bb20c2890005a4e226a465126 SIZE (rust/crates/tinyvec-1.6.0.crate) = 45991 SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20 SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865 +SHA256 (rust/crates/tokio-1.47.1.crate) = 89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038 +SIZE (rust/crates/tokio-1.47.1.crate) = 829790 SHA256 (rust/crates/toml-0.9.5.crate) = 75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8 SIZE (rust/crates/toml-0.9.5.crate) = 56833 SHA256 (rust/crates/toml_datetime-0.7.0.crate) = bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3 @@ -759,6 +795,10 @@ SHA256 (rust/crates/unicode-segmentation-1.11.0.crate) = d4c87d22b6e3f4a18d4d40e SIZE (rust/crates/unicode-segmentation-1.11.0.crate) = 102740 SHA256 (rust/crates/unicode-width-0.1.11.crate) = e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85 SIZE (rust/crates/unicode-width-0.1.11.crate) = 19187 +SHA256 (rust/crates/unicode-width-0.2.1.crate) = 4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c +SIZE (rust/crates/unicode-width-0.2.1.crate) = 279344 +SHA256 (rust/crates/unit-prefix-0.5.1.crate) = 323402cff2dd658f39ca17c789b502021b3f18707c91cdf22e3838e1b4023817 +SIZE (rust/crates/unit-prefix-0.5.1.crate) = 7627 SHA256 (rust/crates/universal-hash-0.5.1.crate) = fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea SIZE (rust/crates/universal-hash-0.5.1.crate) = 9146 SHA256 (rust/crates/url-2.5.4.crate) = 32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60 @@ -775,6 +815,12 @@ SHA256 (rust/crates/uuid-simd-0.8.0.crate) = 23b082222b4f6619906941c17eb2297fff4 SIZE (rust/crates/uuid-simd-0.8.0.crate) = 6959 SHA256 (rust/crates/valuable-0.1.1.crate) = ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65 SIZE (rust/crates/valuable-0.1.1.crate) = 28679 +SHA256 (rust/crates/value-bag-1.11.1.crate) = 943ce29a8a743eb10d6082545d861b24f9d1b160b7d741e0f2cdf726bec909c5 +SIZE (rust/crates/value-bag-1.11.1.crate) = 44649 +SHA256 (rust/crates/value-bag-serde1-1.11.1.crate) = 35540706617d373b118d550d41f5dfe0b78a0c195dc13c6815e92e2638432306 +SIZE (rust/crates/value-bag-serde1-1.11.1.crate) = 6709 +SHA256 (rust/crates/value-bag-sval2-1.11.1.crate) = 6fe7e140a2658cc16f7ee7a86e413e803fc8f9b5127adc8755c19f9fefa63a52 +SIZE (rust/crates/value-bag-sval2-1.11.1.crate) = 6876 SHA256 (rust/crates/vcpkg-0.2.15.crate) = accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426 SIZE (rust/crates/vcpkg-0.2.15.crate) = 228735 SHA256 (rust/crates/version_check-0.9.4.crate) = 49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f @@ -797,6 +843,8 @@ SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.100.crate) = 8ae87ea40c9f689f SIZE (rust/crates/wasm-bindgen-macro-support-0.2.100.crate) = 26243 SHA256 (rust/crates/wasm-bindgen-shared-0.2.100.crate) = 1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d SIZE (rust/crates/wasm-bindgen-shared-0.2.100.crate) = 8570 +SHA256 (rust/crates/web-time-1.1.0.crate) = 5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb +SIZE (rust/crates/web-time-1.1.0.crate) = 18026 SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 @@ -825,40 +873,60 @@ SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9b SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 SHA256 (rust/crates/windows-targets-0.48.5.crate) = 9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c SIZE (rust/crates/windows-targets-0.48.5.crate) = 6904 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 +SHA256 (rust/crates/windows-targets-0.53.2.crate) = c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef +SIZE (rust/crates/windows-targets-0.53.2.crate) = 7046 SHA256 (rust/crates/windows_aarch64_gnullvm-0.48.5.crate) = 2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8 SIZE (rust/crates/windows_aarch64_gnullvm-0.48.5.crate) = 418492 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 SHA256 (rust/crates/windows_aarch64_msvc-0.48.5.crate) = dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc SIZE (rust/crates/windows_aarch64_msvc-0.48.5.crate) = 798483 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c +SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 SHA256 (rust/crates/windows_i686_gnu-0.48.5.crate) = a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e SIZE (rust/crates/windows_i686_gnu-0.48.5.crate) = 844891 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 +SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 +SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 +SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 SHA256 (rust/crates/windows_i686_msvc-0.48.5.crate) = 8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406 SIZE (rust/crates/windows_i686_msvc-0.48.5.crate) = 864300 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 +SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d +SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 SHA256 (rust/crates/windows_x86_64_gnu-0.48.5.crate) = 53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e SIZE (rust/crates/windows_x86_64_gnu-0.48.5.crate) = 801619 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba +SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 SHA256 (rust/crates/windows_x86_64_gnullvm-0.48.5.crate) = 0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc SIZE (rust/crates/windows_x86_64_gnullvm-0.48.5.crate) = 418486 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 SHA256 (rust/crates/windows_x86_64_msvc-0.48.5.crate) = ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538 SIZE (rust/crates/windows_x86_64_msvc-0.48.5.crate) = 798412 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 +SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 SHA256 (rust/crates/winnow-0.6.26.crate) = 1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28 SIZE (rust/crates/winnow-0.6.26.crate) = 167349 SHA256 (rust/crates/winpipe-0.1.1.crate) = 1ccf671d62d1bd0c913d9059e69bb4a6b51f7a4c899ab83c62d921e35f206053 diff --git a/devel/rubygem-prometheus-client-mmap/Makefile b/devel/rubygem-prometheus-client-mmap/Makefile index 38fcb6f82477..3e44b8209cb2 100644 --- a/devel/rubygem-prometheus-client-mmap/Makefile +++ b/devel/rubygem-prometheus-client-mmap/Makefile @@ -1,6 +1,6 @@ PORTNAME= prometheus-client-mmap PORTVERSION= 1.2.10 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/ruff/Makefile b/devel/ruff/Makefile index 8e6f91173dd0..1b324703a129 100644 --- a/devel/ruff/Makefile +++ b/devel/ruff/Makefile @@ -1,5 +1,6 @@ PORTNAME= ruff DISTVERSION= 0.13.2 +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= yuri@FreeBSD.org diff --git a/devel/rust-analyzer/Makefile b/devel/rust-analyzer/Makefile index fa7513d6946d..79ce9f27ba8a 100644 --- a/devel/rust-analyzer/Makefile +++ b/devel/rust-analyzer/Makefile @@ -1,5 +1,6 @@ PORTNAME= rust-analyzer DISTVERSION= 2025-08-25 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= rust@FreeBSD.org diff --git a/devel/rust-bindgen-cli/Makefile b/devel/rust-bindgen-cli/Makefile index 2988b6fb5af8..3c3a95e4370a 100644 --- a/devel/rust-bindgen-cli/Makefile +++ b/devel/rust-bindgen-cli/Makefile @@ -1,6 +1,6 @@ PORTNAME= bindgen-cli DISTVERSION= 0.72.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CRATESIO PKGNAMEPREFIX= rust- diff --git a/devel/rust-cbindgen/Makefile b/devel/rust-cbindgen/Makefile index c9b56747b608..642a837d04fe 100644 --- a/devel/rust-cbindgen/Makefile +++ b/devel/rust-cbindgen/Makefile @@ -1,6 +1,6 @@ PORTNAME= cbindgen DISTVERSION= 0.28.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= CRATESIO PKGNAMEPREFIX= rust- diff --git a/devel/rust-script/Makefile b/devel/rust-script/Makefile index 11f8c1a8e5d3..ac1094568518 100644 --- a/devel/rust-script/Makefile +++ b/devel/rust-script/Makefile @@ -1,6 +1,6 @@ PORTNAME= rust-script DISTVERSION= 0.34.0 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel MAINTAINER= pat@patmaddox.com diff --git a/devel/rustc-demangle/Makefile b/devel/rustc-demangle/Makefile index acd5817d2f57..be0a0a9e887e 100644 --- a/devel/rustc-demangle/Makefile +++ b/devel/rustc-demangle/Makefile @@ -1,6 +1,6 @@ PORTNAME= rustc-demangle DISTVERSION= 0.1.24 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/rustup-init/Makefile b/devel/rustup-init/Makefile index 4ca2667e576c..4a2ff4ace36c 100644 --- a/devel/rustup-init/Makefile +++ b/devel/rustup-init/Makefile @@ -1,6 +1,6 @@ PORTNAME= rustup-init DISTVERSION= 1.28.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel DISTNAME= rustup diff --git a/devel/rye/Makefile b/devel/rye/Makefile index 3d9394f6b47b..3657d86a91df 100644 --- a/devel/rye/Makefile +++ b/devel/rye/Makefile @@ -1,6 +1,6 @@ PORTNAME= rye DISTVERSION= 0.44.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/sccache/Makefile b/devel/sccache/Makefile index 9fa48361ca06..12b422462f1b 100644 --- a/devel/sccache/Makefile +++ b/devel/sccache/Makefile @@ -1,7 +1,7 @@ PORTNAME= sccache DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= devel diff --git a/devel/sdl3/Makefile b/devel/sdl3/Makefile index 8b097c03145e..f747cf9c71b2 100644 --- a/devel/sdl3/Makefile +++ b/devel/sdl3/Makefile @@ -1,6 +1,6 @@ PORTNAME= sdl3 DISTVERSIONPREFIX= release- -DISTVERSION= 3.2.22 +DISTVERSION= 3.2.24 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/sdl3/distinfo b/devel/sdl3/distinfo index 24a8459a9303..66a574a4eca3 100644 --- a/devel/sdl3/distinfo +++ b/devel/sdl3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757339815 -SHA256 (libsdl-org-SDL-release-3.2.22_GH0.tar.gz) = 911c2d5c3d22efc29af9a2cef6cdfacba30d965242c383d997c93078e6474b01 -SIZE (libsdl-org-SDL-release-3.2.22_GH0.tar.gz) = 16126781 +TIMESTAMP = 1759435709 +SHA256 (libsdl-org-SDL-release-3.2.24_GH0.tar.gz) = 66c374ee7f786abcd8592d18fc5b18b1e3f1c67e923867eee5f9c503cb253afd +SIZE (libsdl-org-SDL-release-3.2.24_GH0.tar.gz) = 16128701 diff --git a/devel/selene/Makefile b/devel/selene/Makefile index d915accae8ac..2871a2db1d96 100644 --- a/devel/selene/Makefile +++ b/devel/selene/Makefile @@ -1,6 +1,6 @@ PORTNAME= selene DISTVERSION= 0.27.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/sentry-cli/Makefile b/devel/sentry-cli/Makefile index d4fed8782329..852b4ee8ba4a 100644 --- a/devel/sentry-cli/Makefile +++ b/devel/sentry-cli/Makefile @@ -1,6 +1,6 @@ PORTNAME= sentry-cli DISTVERSION= 2.31.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org 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 diff --git a/devel/signal-sqlcipher-extension/Makefile b/devel/signal-sqlcipher-extension/Makefile index 1b9c1ee4e8a1..d56f234afb28 100644 --- a/devel/signal-sqlcipher-extension/Makefile +++ b/devel/signal-sqlcipher-extension/Makefile @@ -1,6 +1,7 @@ PORTNAME= signal-sqlcipher-extension DISTVERSIONPREFIX= v DISTVERSION= 0.2.2 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= mikael@FreeBSD.org diff --git a/devel/snazy/Makefile b/devel/snazy/Makefile index 1bab837ded1e..b8539b06b937 100644 --- a/devel/snazy/Makefile +++ b/devel/snazy/Makefile @@ -1,6 +1,6 @@ PORTNAME= snazy DISTVERSION= 0.55.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/spr/Makefile b/devel/spr/Makefile index 7aa8d651a3c4..5496cec2b9ae 100644 --- a/devel/spr/Makefile +++ b/devel/spr/Makefile @@ -1,7 +1,7 @@ PORTNAME= spr DISTVERSIONPREFIX= v DISTVERSION= 1.3.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/stgit/Makefile b/devel/stgit/Makefile index ffbca84c8e8f..f8c9ba1455b5 100644 --- a/devel/stgit/Makefile +++ b/devel/stgit/Makefile @@ -1,7 +1,7 @@ PORTNAME= stgit DISTVERSIONPREFIX= v DISTVERSION= 2.5.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/stylua/Makefile b/devel/stylua/Makefile index 42b7a327c5d3..485d2008e7bf 100644 --- a/devel/stylua/Makefile +++ b/devel/stylua/Makefile @@ -1,7 +1,7 @@ PORTNAME= stylua DISTVERSIONPREFIX= v DISTVERSION= 2.0.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org diff --git a/devel/tabby/Makefile b/devel/tabby/Makefile index 9d48c95ff3c1..847276c6131f 100644 --- a/devel/tabby/Makefile +++ b/devel/tabby/Makefile @@ -1,6 +1,7 @@ PORTNAME= tabby DISTVERSIONPREFIX= v DISTVERSION= 0.31.1 +PORTREVISION= 1 CATEGORIES= devel # machine-learning MASTER_SITES= https://github.com/swagger-api/swagger-ui/archive/refs/tags/:swagger PKGNAMESUFFIX= -ai-coding-assistant diff --git a/devel/tagref/Makefile b/devel/tagref/Makefile index a79148b1d4b1..2d6a4a459436 100644 --- a/devel/tagref/Makefile +++ b/devel/tagref/Makefile @@ -1,7 +1,7 @@ PORTNAME= tagref DISTVERSIONPREFIX= v DISTVERSION= 1.10.0 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/texlab/Makefile b/devel/texlab/Makefile index 03e80c57f7f3..e2687b5fed25 100644 --- a/devel/texlab/Makefile +++ b/devel/texlab/Makefile @@ -1,7 +1,7 @@ PORTNAME= texlab DISTVERSIONPREFIX= v DISTVERSION= 4.2.0 -PORTREVISION= 28 +PORTREVISION= 29 CATEGORIES= devel MAINTAINER= kfv@kfv.io diff --git a/devel/the-way/Makefile b/devel/the-way/Makefile index 47d912be0f8f..9df7924967eb 100644 --- a/devel/the-way/Makefile +++ b/devel/the-way/Makefile @@ -1,7 +1,7 @@ PORTNAME= the-way DISTVERSIONPREFIX= v DISTVERSION= 0.20.3 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/tokei/Makefile b/devel/tokei/Makefile index d4ee04fbffd7..c5b88f1d0941 100644 --- a/devel/tokei/Makefile +++ b/devel/tokei/Makefile @@ -1,7 +1,7 @@ PORTNAME= tokei DISTVERSIONPREFIX= v DISTVERSION= 12.1.2 -PORTREVISION= 42 +PORTREVISION= 43 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org diff --git a/devel/tokio-console/Makefile b/devel/tokio-console/Makefile index 6aaf4f289c0a..6bc2fa9f3d60 100644 --- a/devel/tokio-console/Makefile +++ b/devel/tokio-console/Makefile @@ -1,7 +1,7 @@ PORTNAME= tokio-console DISTVERSIONPREFIX= tokio-console-v DISTVERSION= 0.1.13 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/tree-sitter-cli/Makefile b/devel/tree-sitter-cli/Makefile index 69fd692583a1..bdf8d902e437 100644 --- a/devel/tree-sitter-cli/Makefile +++ b/devel/tree-sitter-cli/Makefile @@ -1,7 +1,7 @@ PORTNAME= tree-sitter-cli DISTVERSIONPREFIX= v DISTVERSION= 0.25.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= amad@atl.tools diff --git a/devel/tree-sitter-graph/Makefile b/devel/tree-sitter-graph/Makefile index 800955915f0d..8ecd99b9429a 100644 --- a/devel/tree-sitter-graph/Makefile +++ b/devel/tree-sitter-graph/Makefile @@ -1,7 +1,7 @@ PORTNAME= tree-sitter-graph DISTVERSIONPREFIX= v DISTVERSION= 0.12.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/twiggy/Makefile b/devel/twiggy/Makefile index a60ccc437407..f5bd637073dd 100644 --- a/devel/twiggy/Makefile +++ b/devel/twiggy/Makefile @@ -1,6 +1,6 @@ PORTNAME= twiggy DISTVERSION= 0.6.0 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= devel www MAINTAINER= yuri@FreeBSD.org diff --git a/devel/typeshare/Makefile b/devel/typeshare/Makefile index 07deed8ae356..92fffe970840 100644 --- a/devel/typeshare/Makefile +++ b/devel/typeshare/Makefile @@ -1,7 +1,7 @@ PORTNAME= typeshare DISTVERSIONPREFIX= v DISTVERSION= 1.13.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/unit-otel/Makefile b/devel/unit-otel/Makefile index 4f7e66131a7f..67ff5c8a3432 100644 --- a/devel/unit-otel/Makefile +++ b/devel/unit-otel/Makefile @@ -1,5 +1,6 @@ PORTNAME= unit-otel PORTVERSION= ${UNIT_VERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES?= https://unit.nginx.org/download/ DISTFILES= unit-${PORTVERSION}.tar.gz diff --git a/devel/uv/Makefile b/devel/uv/Makefile index 1b48eb499e32..7849cb8381eb 100644 --- a/devel/uv/Makefile +++ b/devel/uv/Makefile @@ -1,5 +1,6 @@ PORTNAME= uv DISTVERSION= 0.8.21 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org diff --git a/devel/wasm-server-runner/Makefile b/devel/wasm-server-runner/Makefile index d5f700ec56f2..488c04089156 100644 --- a/devel/wasm-server-runner/Makefile +++ b/devel/wasm-server-runner/Makefile @@ -1,7 +1,7 @@ PORTNAME= wasm-server-runner DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org diff --git a/devel/wasmer/Makefile b/devel/wasmer/Makefile index 615d4be39a08..38d710b92377 100644 --- a/devel/wasmer/Makefile +++ b/devel/wasmer/Makefile @@ -1,7 +1,7 @@ PORTNAME= wasmer DISTVERSIONPREFIX= v DISTVERSION= 6.0.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= kjozic@gmail.com diff --git a/devel/wizer/Makefile b/devel/wizer/Makefile index e366deb0885f..7f464b43b5ea 100644 --- a/devel/wizer/Makefile +++ b/devel/wizer/Makefile @@ -1,7 +1,7 @@ PORTNAME= wizer DISTVERSIONPREFIX= v DISTVERSION= 10.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel www MAINTAINER= yuri@FreeBSD.org diff --git a/devel/xtensa-esp-elf/Makefile b/devel/xtensa-esp-elf/Makefile index 19a097a53cfd..e294c397400c 100644 --- a/devel/xtensa-esp-elf/Makefile +++ b/devel/xtensa-esp-elf/Makefile @@ -1,6 +1,6 @@ PORTNAME= xtensa-esp-elf DISTVERSION= 13.2.0_20240530 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= devel MASTER_SITES= https://github.com/espressif/crosstool-NG/releases/download/esp-${DISTVERSION}/:source1 \ GNU/gmp:source2 \ |