diff options
Diffstat (limited to 'www')
93 files changed, 1375 insertions, 263 deletions
diff --git a/www/Makefile b/www/Makefile index 4edc1757d653..dc404b1ecbdd 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1456,6 +1456,7 @@ SUBDIR += phpvirtualbox SUBDIR += phpvirtualbox-70 SUBDIR += phpvirtualbox-71 + SUBDIR += phpvirtualbox-72 SUBDIR += phpvirtualbox-legacy SUBDIR += piwigo SUBDIR += plasma6-plasma-browser-integration diff --git a/www/apache24/Makefile b/www/apache24/Makefile index d356e4acadd4..ab878e5db287 100644 --- a/www/apache24/Makefile +++ b/www/apache24/Makefile @@ -1,5 +1,6 @@ PORTNAME= apache24 PORTVERSION= 2.4.65 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} diff --git a/www/apache24/files/apache24.in b/www/apache24/files/apache24.in index 0b9c4bd55ba6..d9ced6f55d73 100644 --- a/www/apache24/files/apache24.in +++ b/www/apache24/files/apache24.in @@ -43,6 +43,8 @@ pidfile="${_pidprefix}.pid" required_files=%%PREFIX%%/etc/apache24/httpd.conf envvars="%%PREFIX%%/sbin/envvars" +: ${apache24_svcj_options:="net_basic"} + [ -z "$apache24_enable" ] && apache24_enable="NO" [ -z "$apache24limits_enable" ] && apache24limits_enable="NO" [ -z "$apache24limits_args" ] && apache24limits_args="-e -C daemon" @@ -83,6 +85,7 @@ if [ -n "$2" ]; then eval command="\${apache24_${profile}_command:-${command}}" eval pidfile="\${apache24_${profile}_pidfile:-${pidfile}}" eval apache24_envvars="\${apache24_${profile}_envvars:-${envvars}}" + eval apache24_svcj_options="\${apache24_${profile}_svcj_options:-${apache24_svcj_options}}" apache24_flags="-f ${apache24_configfile} -c \"PidFile ${pidfile}\" ${apache24_flags}" else echo "$0: extra argument ignored" diff --git a/www/chromium/files/patch-net_dns_BUILD.gn b/www/chromium/files/patch-net_dns_BUILD.gn index 2a4999bdc858..fc4d80d959a0 100644 --- a/www/chromium/files/patch-net_dns_BUILD.gn +++ b/www/chromium/files/patch-net_dns_BUILD.gn @@ -1,4 +1,4 @@ ---- net/dns/BUILD.gn.orig 2025-08-07 06:57:29 UTC +--- net/dns/BUILD.gn.orig 2025-08-11 22:26:04 UTC +++ net/dns/BUILD.gn @@ -140,7 +140,7 @@ source_set("dns") { "dns_config_service_android.cc", @@ -9,7 +9,17 @@ sources += [ "dns_config_service_linux.cc", "dns_config_service_linux.h", -@@ -181,6 +181,7 @@ source_set("dns") { +@@ -174,6 +174,9 @@ source_set("dns") { + } + + deps = [ "//net:net_deps" ] ++ if (is_bsd) { ++ deps += [ "//services/screen_ai/buildflags" ] ++ } + + public_deps = [ + ":dns_client", +@@ -181,6 +184,7 @@ source_set("dns") { ":host_resolver_manager", ":mdns_client", "//net:net_public_deps", @@ -17,7 +27,7 @@ ] if (enable_mdns) { -@@ -454,9 +455,9 @@ source_set("tests") { +@@ -454,9 +458,9 @@ source_set("tests") { if (is_android) { sources += [ "dns_config_service_android_unittest.cc" ] diff --git a/www/davical/Makefile b/www/davical/Makefile index 148a9b6d5b41..43d48acda575 100644 --- a/www/davical/Makefile +++ b/www/davical/Makefile @@ -1,10 +1,11 @@ PORTNAME= davical DISTVERSIONPREFIX= r DISTVERSION= 1.1.12 +PORTREVISION= 1 CATEGORIES?= www PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dinoex@FreeBSD.org COMMENT= Simple CalDAV server using a postgres backend WWW= https://www.davical.org/ diff --git a/www/davical/files/patch-caldav-ACL.php b/www/davical/files/patch-caldav-ACL.php new file mode 100644 index 000000000000..1f4ae0bf13e4 --- /dev/null +++ b/www/davical/files/patch-caldav-ACL.php @@ -0,0 +1,85 @@ +commit effc00474111bf5dff1297dd3c6811c1fdf6b6ca +Author: Florian Schlichting <fsfs@debian.org> +Date: Thu Mar 23 22:14:41 2023 +0100 + + use "." to concatenate strings, not "+" (fixes #288) + + Unsupported operand types: string + string at /usr/share/davical/inc/caldav-ACL.php:146 + +diff --git a/inc/caldav-ACL.php b/inc/caldav-ACL.php +index 861d4389..cb0fa213 100644 +--- inc/caldav-ACL.php.orig ++++ inc/caldav-ACL.php +@@ -143,7 +143,7 @@ function process_ace( $grantor, $by_principal, $by_collection, $ace ) { + $grantee = new DAVResource( DeconstructURL($principal_content->GetContent()) ); + $grantee_id = $grantee->getProperty('principal_id'); + if ( !$grantee->Exists() || !$grantee->IsPrincipal() ) +- $request->PreconditionFailed(403,'recognized-principal', 'Principal "' + $principal_content->GetContent() + '" not found.'); ++ $request->PreconditionFailed(403,'recognized-principal', 'Principal "' . $principal_content->GetContent() . '" not found.'); + $sqlparms = array( ':to_principal' => $grantee_id); + $where = 'WHERE to_principal=:to_principal AND '; + if ( isset($by_principal) ) { +diff --git a/testing/tests/regression-suite/0946-ACL-err.result b/testing/tests/regression-suite/0946-ACL-err.result +new file mode 100644 +index 00000000..c0ad5ef7 +--- /dev/null ++++ testing/tests/regression-suite/0946-ACL-err.result +@@ -0,0 +1,11 @@ ++HTTP/1.1 403 Forbidden
++Date: Dow, 01 Jan 2000 00:00:00 GMT
++DAV: 1, 2, 3, access-control, calendar-access, calendar-schedule
++DAV: extended-mkcol, bind, addressbook, calendar-auto-schedule, calendar-proxy
++Content-Length: 137
++Content-Type: text/xml; charset="utf-8"
++
++<?xml version="1.0" encoding="utf-8" ?> ++<error xmlns="DAV:"> ++ <recognized-principal/>Principal "/caldav.php/user40/" not found. ++</error> +diff --git a/testing/tests/regression-suite/0946-ACL-err.test b/testing/tests/regression-suite/0946-ACL-err.test +new file mode 100644 +index 00000000..945f3a13 +--- /dev/null ++++ testing/tests/regression-suite/0946-ACL-err.test +@@ -0,0 +1,41 @@ ++# ++# ACL setting default privileges on a collection to nothing, and ++# specific privileges to include read-acl. ++# ++TYPE=ACL ++URL=http://regression.host/caldav.php/user1/home/ ++HEADER=User-Agent: RFC3744 Spec Tests ++HEADER=Content-Type: text/xml; charset="UTF-8" ++HEAD ++ ++ ++BEGINDATA ++<?xml version="1.0" encoding="utf-8" ?> ++<acl xmlns="DAV:" xmlns:CalDAV="urn:ietf:params:xml:ns:caldav"> ++ <ace> ++ <principal> ++ <href>/caldav.php/user40/</href> ++ </principal> ++ <grant> ++ <privilege><read/></privilege> ++ <privilege><read-acl/></privilege> ++ <privilege><read-current-user-privilege-set/></privilege> ++ <privilege><CalDAV:read-free-busy/></privilege> ++ </grant> ++ </ace> ++ <ace> ++ <principal><authenticated/></principal> ++ <grant> ++ <privilege/> ++ </grant> ++ </ace> ++</acl> ++ENDDATA ++ ++QUERY ++SELECT by_principal, by_collection, privileges, p_to.displayname, to_principal ++ FROM grants JOIN dav_principal p_to ON (to_principal=principal_id) ++ LEFT JOIN collection ON (by_collection=collection.collection_id) ++ WHERE collection.dav_name = '/user1/home/' ++ENDQUERY ++ diff --git a/www/davical/files/patch-principal-edit.php b/www/davical/files/patch-principal-edit.php new file mode 100644 index 000000000000..361be905cb0e --- /dev/null +++ b/www/davical/files/patch-principal-edit.php @@ -0,0 +1,27 @@ +commit e8f3a3e6f2c27e78c2778e0040b385b430dfc9fc +Author: Andrew Ruthven <puck@catalystcloud.nz> +Date: Sun Apr 30 12:13:37 2023 +1200 + + Add a missing space to a SQL statement to fix adding groups. + + It looks to me like this bug has been present since 2011. + + Closes: #294 + +diff --git a/inc/ui/principal-edit.php b/inc/ui/principal-edit.php +index 603fd1e1..df975e22 100644 +--- inc/ui/principal-edit.php.orig ++++ inc/ui/principal-edit.php +@@ -495,9 +495,9 @@ function group_memberships_browser() { + function group_row_editor() { + global $c, $id, $editor, $can_write_principal; + $grouprow = new Editor("Group Members", "group_member"); +- $sql = 'SELECT principal_id, coalesce(displayname,fullname,username) FROM dav_principal '; +- $sql .= 'WHERE principal_id NOT IN (SELECT member_id FROM group_member WHERE group_id = '.$id.') '; +- $sql .= 'AND principal_id != '.$id; ++ $sql = 'SELECT principal_id, coalesce(displayname, fullname, username) FROM dav_principal '; ++ $sql .= 'WHERE principal_id NOT IN (SELECT member_id FROM group_member WHERE group_id = ' . $id . ') '; ++ $sql .= 'AND principal_id != ' . $id . ' '; + $sql .= 'ORDER BY 2'; + $grouprow->SetLookup( 'member_id', $sql); + $grouprow->SetSubmitName( 'savegrouprow' ); diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 0c4835a0173f..058a23506eac 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -1,5 +1,6 @@ PORTNAME= firefox DISTVERSION= 140.2.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 9d2207c39d0c..4d31a1d81930 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -1,5 +1,6 @@ PORTNAME= firefox -DISTVERSION= 142.0 +DISTVERSION= 142.0.1 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ diff --git a/www/firefox/distinfo b/www/firefox/distinfo index 79365ba6be78..f98f10067093 100644 --- a/www/firefox/distinfo +++ b/www/firefox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754937451 -SHA256 (firefox-142.0.source.tar.xz) = 2808e1f10f3b6c593f96f3745a55d12c98107886daef00f1e354c24203a64b0f -SIZE (firefox-142.0.source.tar.xz) = 638180600 +TIMESTAMP = 1756381378 +SHA256 (firefox-142.0.1.source.tar.xz) = b0adb44ed4c3383e752a5947adbfb0d03f24172cb468831bd49978de25e810c0 +SIZE (firefox-142.0.1.source.tar.xz) = 634262768 diff --git a/www/gitlab-pages/distinfo b/www/gitlab-pages/distinfo index d4dfc511e729..fb028fd75b38 100644 --- a/www/gitlab-pages/distinfo +++ b/www/gitlab-pages/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1755673986 -SHA256 (go/www_gitlab-pages/gitlab-pages-v18.3.0/go.mod) = f009bb2f145a5e8bfa40069b413d54c6212f0062253d9de94dc93e61b93b2a96 -SIZE (go/www_gitlab-pages/gitlab-pages-v18.3.0/go.mod) = 3436 -SHA256 (go/www_gitlab-pages/gitlab-pages-v18.3.0/gitlab-pages-v18.3.0.tar.bz2) = 942d1da9e47fe468267cb15004464dfd0138e0dd5eb8252943ebe115fc8226d4 -SIZE (go/www_gitlab-pages/gitlab-pages-v18.3.0/gitlab-pages-v18.3.0.tar.bz2) = 236413 +TIMESTAMP = 1756438003 +SHA256 (go/www_gitlab-pages/gitlab-pages-v18.3.1/go.mod) = f009bb2f145a5e8bfa40069b413d54c6212f0062253d9de94dc93e61b93b2a96 +SIZE (go/www_gitlab-pages/gitlab-pages-v18.3.1/go.mod) = 3436 +SHA256 (go/www_gitlab-pages/gitlab-pages-v18.3.1/gitlab-pages-v18.3.1.tar.bz2) = 16db6acfeb658cdd160c774035a0911ff804096c1306169105da3b754f6015f9 +SIZE (go/www_gitlab-pages/gitlab-pages-v18.3.1/gitlab-pages-v18.3.1.tar.bz2) = 237006 diff --git a/www/gitlab-workhorse/distinfo b/www/gitlab-workhorse/distinfo index ffe9a794c4c9..e069c82b0d2e 100644 --- a/www/gitlab-workhorse/distinfo +++ b/www/gitlab-workhorse/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1755674006 -SHA256 (go/www_gitlab-workhorse/gitlab-foss-v18.3.0/go.mod) = 9c034c905470aa1c1f54b96d744fd80cbc9c199fc84990e580297186080818b9 -SIZE (go/www_gitlab-workhorse/gitlab-foss-v18.3.0/go.mod) = 9331 -SHA256 (go/www_gitlab-workhorse/gitlab-foss-v18.3.0/gitlab-foss-v18.3.0.tar.bz2) = 6e41dcfac151ec18d8b6896823499a73fc45e026d3804798fdb73b5c5c51c332 -SIZE (go/www_gitlab-workhorse/gitlab-foss-v18.3.0/gitlab-foss-v18.3.0.tar.bz2) = 122196697 +TIMESTAMP = 1756438024 +SHA256 (go/www_gitlab-workhorse/gitlab-foss-v18.3.1/go.mod) = 9c034c905470aa1c1f54b96d744fd80cbc9c199fc84990e580297186080818b9 +SIZE (go/www_gitlab-workhorse/gitlab-foss-v18.3.1/go.mod) = 9331 +SHA256 (go/www_gitlab-workhorse/gitlab-foss-v18.3.1/gitlab-foss-v18.3.1.tar.bz2) = 6e6a71560915da21f52a35f8592824a5fa48054b2d113250b7183b04657157b9 +SIZE (go/www_gitlab-workhorse/gitlab-foss-v18.3.1/gitlab-foss-v18.3.1.tar.bz2) = 122193686 diff --git a/www/gitlab/Makefile.common b/www/gitlab/Makefile.common index b5a9461467e0..8ecbae27d4a3 100644 --- a/www/gitlab/Makefile.common +++ b/www/gitlab/Makefile.common @@ -1,4 +1,4 @@ -GITLAB_VERSION= 18.3.0 +GITLAB_VERSION= 18.3.1 GITLAB_PORTREVISION= 0 # Git version gitaly should use (from gitlab mirror) diff --git a/www/gitlab/distinfo b/www/gitlab/distinfo index 591cf63d11d6..513bc2f6b7b5 100644 --- a/www/gitlab/distinfo +++ b/www/gitlab/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1755673899 -SHA256 (gitlab-foss-v18.3.0.tar.bz2) = 6e41dcfac151ec18d8b6896823499a73fc45e026d3804798fdb73b5c5c51c332 -SIZE (gitlab-foss-v18.3.0.tar.bz2) = 122196697 -TIMESTAMP = 1755673938 -SHA256 (gitlab-v18.3.0-ee.tar.bz2) = 03f1e46a1afdbbb3ef7a3ce514afd0d267c20df52e8be9a7be8a7f51c4dd497f -SIZE (gitlab-v18.3.0-ee.tar.bz2) = 138127084 +TIMESTAMP = 1756437955 +SHA256 (gitlab-foss-v18.3.1.tar.bz2) = 6e6a71560915da21f52a35f8592824a5fa48054b2d113250b7183b04657157b9 +SIZE (gitlab-foss-v18.3.1.tar.bz2) = 122193686 +TIMESTAMP = 1756437995 +SHA256 (gitlab-v18.3.1-ee.tar.bz2) = 32da4c6475a11bf425b7f63e2cadc94b4b8b5478d13176623a6b6f3df861c1b3 +SIZE (gitlab-v18.3.1-ee.tar.bz2) = 138138304 diff --git a/www/homepage/Makefile b/www/homepage/Makefile index f30773c8cf73..7df2dfd50009 100644 --- a/www/homepage/Makefile +++ b/www/homepage/Makefile @@ -1,5 +1,5 @@ PORTNAME= homepage -DISTVERSION= 1.4.5 +DISTVERSION= 1.4.6 CATEGORIES= www MASTER_SITES= LOCAL/dtxdf/${PORTNAME}/ DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} diff --git a/www/homepage/distinfo b/www/homepage/distinfo index 2be5eba52bb7..9723ff1f283e 100644 --- a/www/homepage/distinfo +++ b/www/homepage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755284700 -SHA256 (homepage-1.4.5.tar.gz) = 7e3af21014d5ed18db0f7270b02173622cf71ae3d95e71354cb4d9058fb9459b -SIZE (homepage-1.4.5.tar.gz) = 12763514 +TIMESTAMP = 1756433341 +SHA256 (homepage-1.4.6.tar.gz) = 8e12e8990b1a3d7208e46888ed9af64faf135dd645be0f619a8312e4016eb3c9 +SIZE (homepage-1.4.6.tar.gz) = 12755151 diff --git a/www/homepage/pkg-plist b/www/homepage/pkg-plist index f0c4df661cb5..8bd5b83f4a6c 100644 --- a/www/homepage/pkg-plist +++ b/www/homepage/pkg-plist @@ -366,7 +366,6 @@ etc/homepage.env %%HOMEDIR%%/.next/static/chunks/5860.a10d0361279e6f9a.js %%HOMEDIR%%/.next/static/chunks/5944.4bff334081a2eb22.js %%HOMEDIR%%/.next/static/chunks/6002.f6ac6a7504802f1e.js -%%HOMEDIR%%/.next/static/chunks/611.acdfd27946411a66.js %%HOMEDIR%%/.next/static/chunks/6182.e82eb4ec3e4fa068.js %%HOMEDIR%%/.next/static/chunks/6187.d0e3c9e2a14feb51.js %%HOMEDIR%%/.next/static/chunks/6218.b4f08a33f469d76a.js @@ -5170,8 +5169,9 @@ etc/homepage.env %%HOMEDIR%%/src/widgets/whatsupdocker/component.jsx %%HOMEDIR%%/src/widgets/xteve/component.jsx %%HOMEDIR%%/src/widgets/zabbix/component.jsx -%%WWWDIR%%/.next/static/C96yU3PHL1RBxfvfUwXg7/_buildManifest.js -%%WWWDIR%%/.next/static/C96yU3PHL1RBxfvfUwXg7/_ssgManifest.js -%%WWWDIR%%/.next/static/chunks/3121.062fa4a7824bc243.js -%%WWWDIR%%/.next/static/chunks/9346.79cfeec7ac0908a1.js -%%WWWDIR%%/.next/static/chunks/webpack-db160e9b591c440c.js +%%HOMEDIR%%/.next/static/-dFR4Fpx7vGAuCNFyOPRb/_buildManifest.js +%%HOMEDIR%%/.next/static/-dFR4Fpx7vGAuCNFyOPRb/_ssgManifest.js +%%HOMEDIR%%/.next/static/chunks/3121.062fa4a7824bc243.js +%%HOMEDIR%%/.next/static/chunks/9346.c6d566c362c5e060.js +%%HOMEDIR%%/.next/static/chunks/611.47bd2aede4f96794.js +%%HOMEDIR%%/.next/static/chunks/webpack-d2d287706f398086.js diff --git a/www/iridium/files/patch-content_browser_BUILD.gn b/www/iridium/files/patch-content_browser_BUILD.gn index e8240806ac8c..477ca0ded3bb 100644 --- a/www/iridium/files/patch-content_browser_BUILD.gn +++ b/www/iridium/files/patch-content_browser_BUILD.gn @@ -1,6 +1,14 @@ ---- content/browser/BUILD.gn.orig 2025-06-19 07:37:57 UTC +--- content/browser/BUILD.gn.orig 2025-06-18 12:17:42 UTC +++ content/browser/BUILD.gn -@@ -2571,6 +2571,14 @@ source_set("browser") { +@@ -125,6 +125,7 @@ source_set("browser") { + "//components/optimization_guide/core:features", + "//components/optimization_guide/public/mojom", + "//components/os_crypt/sync", ++ "//components/paint_preview/buildflags:buildflags", + "//components/payments/content/icon", + "//components/payments/mojom", + "//components/performance_manager/scenario_api", +@@ -2571,6 +2572,14 @@ source_set("browser") { ] } @@ -15,7 +23,7 @@ if (is_linux || is_chromeos) { sources -= [ "file_system_access/file_path_watcher/file_path_watcher_stub.cc" ] -@@ -2616,6 +2624,15 @@ source_set("browser") { +@@ -2616,6 +2625,15 @@ source_set("browser") { if (allow_oop_video_decoder) { sources += [ "media/oop_video_decoder_factory.cc" ] deps += [ "//media/mojo/mojom" ] diff --git a/www/iridium/files/patch-net_BUILD.gn b/www/iridium/files/patch-net_BUILD.gn index cd6138a37fae..d30dac474cef 100644 --- a/www/iridium/files/patch-net_BUILD.gn +++ b/www/iridium/files/patch-net_BUILD.gn @@ -1,4 +1,4 @@ ---- net/BUILD.gn.orig 2025-06-19 07:37:57 UTC +--- net/BUILD.gn.orig 2025-06-18 12:17:42 UTC +++ net/BUILD.gn @@ -126,7 +126,7 @@ net_configs = [ "//build/config/compiler:wexit_time_destructors", @@ -9,7 +9,15 @@ net_configs += [ "//build/config/linux:libresolv" ] } -@@ -1334,6 +1334,19 @@ component("net") { +@@ -1138,6 +1138,7 @@ component("net") { + ":net_deps", + "//components/miracle_parameter/common", + "//components/network_time/time_tracker", ++ "//content/public/common:buildflags", + "//net/http:transport_security_state_generated_files", + "//third_party/simdutf:simdutf", + ] +@@ -1334,6 +1335,19 @@ component("net") { ] } @@ -29,7 +37,7 @@ if (is_mac) { sources += [ "base/network_notification_thread_mac.cc", -@@ -1497,7 +1510,7 @@ component("net") { +@@ -1497,7 +1511,7 @@ component("net") { } # Use getifaddrs() on POSIX platforms, except Linux. @@ -38,7 +46,7 @@ sources += [ "base/network_interfaces_getifaddrs.cc", "base/network_interfaces_getifaddrs.h", -@@ -2207,7 +2220,7 @@ static_library("test_support") { +@@ -2207,7 +2221,7 @@ static_library("test_support") { ] } @@ -47,7 +55,7 @@ sources += [ "base/address_tracker_linux_test_util.cc", "base/address_tracker_linux_test_util.h", -@@ -3030,14 +3043,14 @@ target(_test_target_type, "net_unittests") { +@@ -3030,14 +3044,14 @@ target(_test_target_type, "net_unittests") { ] } @@ -64,7 +72,7 @@ sources += [ "base/address_tracker_linux_unittest.cc", "base/network_interfaces_linux_unittest.cc", -@@ -3135,6 +3148,10 @@ target(_test_target_type, "net_unittests") { +@@ -3135,6 +3149,10 @@ target(_test_target_type, "net_unittests") { ] } @@ -75,7 +83,7 @@ if (enable_websockets) { sources += [ "server/http_connection_unittest.cc", -@@ -3200,7 +3217,7 @@ target(_test_target_type, "net_unittests") { +@@ -3200,7 +3218,7 @@ target(_test_target_type, "net_unittests") { ] } @@ -84,7 +92,7 @@ sources += [ "tools/quic/quic_simple_server_test.cc" ] } -@@ -3339,7 +3356,7 @@ target(_test_target_type, "net_unittests") { +@@ -3339,7 +3357,7 @@ target(_test_target_type, "net_unittests") { } # Use getifaddrs() on POSIX platforms, except Linux. diff --git a/www/librewolf/Makefile b/www/librewolf/Makefile index 6be8c1e5818f..78ceca2a5654 100644 --- a/www/librewolf/Makefile +++ b/www/librewolf/Makefile @@ -1,5 +1,5 @@ PORTNAME= librewolf -DISTVERSION= 142.0 +DISTVERSION= 142.0.1 LWPATCH= -1 DISTVERSIONSUFFIX= ${LWPATCH}.source CATEGORIES= www wayland diff --git a/www/librewolf/distinfo b/www/librewolf/distinfo index 28a7faab9c3e..a90acb98b906 100644 --- a/www/librewolf/distinfo +++ b/www/librewolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755670889 -SHA256 (librewolf-142.0-1.source.tar.gz) = 93038bb47402efefdc67a068a8b483ad1cac08286ec5083a4593816531fd1d12 -SIZE (librewolf-142.0-1.source.tar.gz) = 1010392198 +TIMESTAMP = 1756477960 +SHA256 (librewolf-142.0.1-1.source.tar.gz) = 770fd784b91a836edd327e816d735a91852872909933dd8a167cd59f388ffbe1 +SIZE (librewolf-142.0.1-1.source.tar.gz) = 1010630994 diff --git a/www/nextcloud-contacts/Makefile b/www/nextcloud-contacts/Makefile index d5d38b600079..f40ba1d3f697 100644 --- a/www/nextcloud-contacts/Makefile +++ b/www/nextcloud-contacts/Makefile @@ -1,5 +1,5 @@ PORTNAME= contacts -PORTVERSION= 7.2.5 +PORTVERSION= 7.2.6 DISTVERSIONPREFIX= v CATEGORIES= www diff --git a/www/nextcloud-contacts/distinfo b/www/nextcloud-contacts/distinfo index 9cfd5fda3d9f..b0c74cb0dbf3 100644 --- a/www/nextcloud-contacts/distinfo +++ b/www/nextcloud-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755624542 -SHA256 (nextcloud/contacts-v7.2.5.tar.gz) = 03c7457cf79ee137b5cdb2da25fa21bb2c6731b6b2b267c36b78627099ea7e43 -SIZE (nextcloud/contacts-v7.2.5.tar.gz) = 4487588 +TIMESTAMP = 1756412333 +SHA256 (nextcloud/contacts-v7.2.6.tar.gz) = 20cb06e3f90dca3dbea1c1edb049d0ff5cbe2a18255894e0d2ce56b2283f5f6a +SIZE (nextcloud/contacts-v7.2.6.tar.gz) = 4496148 diff --git a/www/nginx-devel/Makefile b/www/nginx-devel/Makefile index bdc0d6d52163..ac2452c94c6f 100644 --- a/www/nginx-devel/Makefile +++ b/www/nginx-devel/Makefile @@ -1,7 +1,7 @@ PORTNAME?= nginx PORTVERSION= ${NGINX_VERSION} .include "version.mk" -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= https://nginx.org/download/ \ LOCAL/osa diff --git a/www/nginx-devel/files/extra-patch-ngx_nats.c b/www/nginx-devel/files/extra-patch-ngx_nats.c new file mode 100644 index 000000000000..76c3f2be7864 --- /dev/null +++ b/www/nginx-devel/files/extra-patch-ngx_nats.c @@ -0,0 +1,20 @@ +--- ../nginx-nats-6f7adf1/src/ngx_nats.c.orig 2025-07-25 14:52:57.670444000 -0400 ++++ ../nginx-nats-6f7adf1/src/ngx_nats.c 2025-07-25 14:53:04.538387000 -0400 +@@ -55,7 +55,7 @@ + * we can use for uniqueness and to reach the router in testing. + */ + +-#if (NGX_LINUX) || (NGX_DARWIN) ++#if (NGX_LINUX) || (NGX_DARWIN) || (NGX_FREEBSD) + #include <net/if.h> + #include <ifaddrs.h> + #elif (NGX_WIN32) +@@ -585,7 +585,7 @@ + { + /* TODO: port to Windows when need it, extend to other platforms. */ + +-#if (NGX_LINUX) || (NGX_DARWIN) ++#if (NGX_LINUX) || (NGX_DARWIN) || (NGX_FREEBSD) + + struct ifaddrs *ifaddrs, *ifa; + int rc, family; diff --git a/www/nginx-devel/files/nginx.in b/www/nginx-devel/files/nginx.in index daba266d9192..5ec438dd7342 100644 --- a/www/nginx-devel/files/nginx.in +++ b/www/nginx-devel/files/nginx.in @@ -69,6 +69,7 @@ if [ -n "$2" ]; then required_files="${nginx_configfile}" eval nginx_enable="\${nginx_${profile}_enable:-${nginx_enable}}" eval nginx_flags="\${nginx_${profile}_flags:-${nginx_flags}}" + eval nginx_svcj_options="\${nginx_${profile}_svcj_options:-${nginx_svcj_options}}" eval nginxlimits_enable="\${nginxlimits_${profile}_enable:-${nginxlimits_enable}}" eval nginxlimits_args="\${nginxlimits_${profile}_args:-${nginxlimits_args}}" nginx_flags="-c ${nginx_configfile} -g \"pid ${pidfile};\" ${nginx_flags}" diff --git a/www/phpvirtualbox-70/Makefile b/www/phpvirtualbox-70/Makefile index 22e8a6913dbe..b85b31ac272e 100644 --- a/www/phpvirtualbox-70/Makefile +++ b/www/phpvirtualbox-70/Makefile @@ -18,7 +18,8 @@ USE_PHP= session simplexml soap xml ETCDIR= ${WWWDIR} WWWDIR= ${PREFIX}/www/${PORTNAME}${SUFFIX} -EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html +EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php \ + ${.CURDIR}/../phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html NO_ARCH= yes NO_BUILD= yes PORTSCOUT= limit:^7\.0\. diff --git a/www/phpvirtualbox-71/Makefile b/www/phpvirtualbox-71/Makefile index fb05e5b28ffb..9d48563e1730 100644 --- a/www/phpvirtualbox-71/Makefile +++ b/www/phpvirtualbox-71/Makefile @@ -1,12 +1,13 @@ PORTNAME= phpvirtualbox DISTVERSION= 7.1-1 +PORTREVISION= 1 CATEGORIES= www SUFFIX= -71 PKGNAMESUFFIX= ${SUFFIX}${PHP_PKGNAMESUFFIX} MAINTAINER= vbox@FreeBSD.org COMMENT= AJAX Web Interface for VirtualBox -WWW= https://sourceforge.net/projects/phpvirtualbox-7-0/ +WWW= https://github.com/phpvirtualbox/phpvirtualbox/ LICENSE= GPLv3 @@ -16,7 +17,9 @@ USE_PHP= session simplexml soap xml ETCDIR= ${WWWDIR} WWWDIR= ${PREFIX}/www/${PORTNAME}${SUFFIX} -EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html +EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox-72/files/patch-endpoints_lib_config.php \ + ${.CURDIR}/../phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php \ + ${.CURDIR}/../phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html NO_ARCH= yes NO_BUILD= yes PORTSCOUT= limit:^7\.1\. diff --git a/www/phpvirtualbox-71/files/patch-endpoints_lib_vboxconnector.php b/www/phpvirtualbox-71/files/patch-endpoints_lib_vboxconnector.php deleted file mode 100644 index 3ce4bd1b67fa..000000000000 --- a/www/phpvirtualbox-71/files/patch-endpoints_lib_vboxconnector.php +++ /dev/null @@ -1,21 +0,0 @@ ---- endpoints/lib/vboxconnector.php.orig 2025-03-09 01:02:03 UTC -+++ endpoints/lib/vboxconnector.php -@@ -113,6 +113,8 @@ class vboxconnector { - */ - var $dsep = null; - -+ var $client = null; -+ - /** - * Obtain configuration settings and set object vars - * @param boolean $useAuthMaster use the authentication master obtained from configuration class -@@ -388,7 +390,8 @@ class vboxconnector { - - // The amount of time we will wait for events is determined by - // the amount of listeners - at least half a second -- $listenerWait = max(100,intval(500/count($this->persistentRequest['vboxEventListeners']))); -+ $listenerCount = count($this->persistentRequest['vboxEventListeners']); -+ $listenerWait = max(100,intval(500/($listenerCount > 0 ? $listenerCount : 1))); - } - - // Get events from each configured event listener diff --git a/www/phpvirtualbox-72/Makefile b/www/phpvirtualbox-72/Makefile new file mode 100644 index 000000000000..5cd673bbf480 --- /dev/null +++ b/www/phpvirtualbox-72/Makefile @@ -0,0 +1,37 @@ +PORTNAME= phpvirtualbox +DISTVERSION= 7.2-1 +PORTREVISION= 1 +CATEGORIES= www +SUFFIX= -72 +PKGNAMESUFFIX= ${SUFFIX}${PHP_PKGNAMESUFFIX} + +MAINTAINER= vbox@FreeBSD.org +COMMENT= AJAX Web Interface for VirtualBox +WWW= https://github.com/phpvirtualbox/phpvirtualbox/ + +LICENSE= GPLv3 + +USES= php:flavors +USE_GITHUB= yes +USE_PHP= session simplexml soap xml + +ETCDIR= ${WWWDIR} +WWWDIR= ${PREFIX}/www/${PORTNAME}${SUFFIX} +NO_ARCH= yes +NO_BUILD= yes +PORTSCOUT= limit:^7\.2\. + +post-patch: + @${MV} ${WRKSRC}/phpvirtualbox.conf ${WRKSRC}/phpvirtualbox${SUFFIX}.conf + @${REINPLACE_CMD} -e 's#Alias /phpvirtualbox#Alias /phpvirtualbox${SUFFIX}#' \ + -e 's#/usr/share/phpvirtualbox#${WWWDIR}#g' \ + ${WRKSRC}/phpvirtualbox${SUFFIX}.conf + +do-install: + ${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC}/ && ${COPYTREE_SHARE} "*" ${STAGEDIR}${WWWDIR} \ + "-not -name *.orig -not -name config.php-example") + ${INSTALL_DATA} ${WRKSRC}/config.php-example \ + ${STAGEDIR}${WWWDIR}/config.php.sample + +.include <bsd.port.mk> diff --git a/www/phpvirtualbox-72/distinfo b/www/phpvirtualbox-72/distinfo new file mode 100644 index 000000000000..36e164f0de0c --- /dev/null +++ b/www/phpvirtualbox-72/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1756400000 +SHA256 (phpvirtualbox-phpvirtualbox-7.2-1_GH0.tar.gz) = 8025ed6b6af7ab4f32b0ac548fee94621469d5f5bc89d6a8a553a3989ada5ca9 +SIZE (phpvirtualbox-phpvirtualbox-7.2-1_GH0.tar.gz) = 5271540 diff --git a/www/phpvirtualbox-71/files/patch-endpoints_lib_config.php b/www/phpvirtualbox-72/files/patch-endpoints_lib_config.php index 82de95a4947b..82de95a4947b 100644 --- a/www/phpvirtualbox-71/files/patch-endpoints_lib_config.php +++ b/www/phpvirtualbox-72/files/patch-endpoints_lib_config.php diff --git a/www/phpvirtualbox-70/files/patch-endpoints_lib_vboxconnector.php b/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php index 3ce4bd1b67fa..3ce4bd1b67fa 100644 --- a/www/phpvirtualbox-70/files/patch-endpoints_lib_vboxconnector.php +++ b/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxconnector.php diff --git a/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxwebService-7.2.wsdl b/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxwebService-7.2.wsdl new file mode 100644 index 000000000000..40b0ff619005 --- /dev/null +++ b/www/phpvirtualbox-72/files/patch-endpoints_lib_vboxwebService-7.2.wsdl @@ -0,0 +1,11 @@ +--- endpoints/lib/vboxwebService-7.2.wsdl.orig 2025-08-28 05:41:35 UTC ++++ endpoints/lib/vboxwebService-7.2.wsdl +@@ -5,7 +5,7 @@ --> + Generator: src/VBox/Main/webservice/websrv-wsdl-service.xsl + --> + <definitions xmlns:interface="urn:vbox" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:vbox="http://www.virtualbox.org/" xmlns="http://schemas.xmlsoap.org/wsdl/" name="VirtualBox" targetNamespace="http://www.virtualbox.org/Service"> +- <import location="vboxweb.wsdl" namespace="http://www.virtualbox.org/"/> ++ <import location="vboxweb-7.2.wsdl" namespace="http://www.virtualbox.org/"/> + <service name="vboxService"> + <port binding="vbox:vboxBinding" name="vboxServicePort"> + <soap:address location="http://localhost:18083/"/> diff --git a/www/phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html b/www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html index 3e8a7c62dfb7..3e8a7c62dfb7 100644 --- a/www/phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html +++ b/www/phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html diff --git a/www/phpvirtualbox-72/pkg-descr b/www/phpvirtualbox-72/pkg-descr new file mode 100644 index 000000000000..9d1a4ce377ff --- /dev/null +++ b/www/phpvirtualbox-72/pkg-descr @@ -0,0 +1,3 @@ +An open source, AJAX implementation of the VirtualBox user +interface written in PHP. As a modern web interface, it allows +you to access and control remote VirtualBox instances diff --git a/www/phpvirtualbox-72/pkg-plist b/www/phpvirtualbox-72/pkg-plist new file mode 100644 index 000000000000..7e75d2fc12d8 --- /dev/null +++ b/www/phpvirtualbox-72/pkg-plist @@ -0,0 +1,614 @@ +@group www +@owner www +%%WWWDIR%%/CHANGELOG.txt +%%WWWDIR%%/Dockerfile +%%WWWDIR%%/GPLv3.txt +%%WWWDIR%%/LICENSE.txt +%%WWWDIR%%/README.md +@sample %%ETCDIR%%/config.php.sample +%%WWWDIR%%/css/jquery-ui.css +%%WWWDIR%%/css/jquery.projectPlugins.css +%%WWWDIR%%/css/layout.css +%%WWWDIR%%/css/tipped.css +%%WWWDIR%%/docker-compose.yml +%%WWWDIR%%/endpoints/api.php +%%WWWDIR%%/endpoints/config.js +%%WWWDIR%%/endpoints/index.html +%%WWWDIR%%/endpoints/jqueryFileTree.php +%%WWWDIR%%/endpoints/language.php +%%WWWDIR%%/endpoints/lib/auth/ActiveDirectory.php +%%WWWDIR%%/endpoints/lib/auth/Builtin.php +%%WWWDIR%%/endpoints/lib/auth/LDAP.php +%%WWWDIR%%/endpoints/lib/auth/MySQL.php +%%WWWDIR%%/endpoints/lib/auth/OpenMediaVault.php +%%WWWDIR%%/endpoints/lib/auth/WebAuth.php +%%WWWDIR%%/endpoints/lib/auth/index.html +%%WWWDIR%%/endpoints/lib/authinterface.php +%%WWWDIR%%/endpoints/lib/config.php +%%WWWDIR%%/endpoints/lib/index.html +%%WWWDIR%%/endpoints/lib/language.php +%%WWWDIR%%/endpoints/lib/utils.php +%%WWWDIR%%/endpoints/lib/vboxServiceWrappers.php +%%WWWDIR%%/endpoints/lib/vboxconnector.php +%%WWWDIR%%/endpoints/lib/vboxweb-7.2.wsdl +%%WWWDIR%%/endpoints/lib/vboxwebService-7.2.wsdl +%%WWWDIR%%/endpoints/rdp.php +%%WWWDIR%%/endpoints/screen.php +%%WWWDIR%%/images/30white.png +%%WWWDIR%%/images/50px-Question_icon.svg.png +%%WWWDIR%%/images/50px-Warning_icon.svg.png +%%WWWDIR%%/images/arrow_grad_dn.png +%%WWWDIR%%/images/arrow_grad_left.png +%%WWWDIR%%/images/arrow_grad_right.png +%%WWWDIR%%/images/arrow_grad_up.png +%%WWWDIR%%/images/arrow_white_dn.png +%%WWWDIR%%/images/arrow_white_left.png +%%WWWDIR%%/images/arrow_white_right.png +%%WWWDIR%%/images/arrow_white_up.png +%%WWWDIR%%/images/donate.gif +%%WWWDIR%%/images/downArrow.png +%%WWWDIR%%/images/header_grad.png +%%WWWDIR%%/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +%%WWWDIR%%/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +%%WWWDIR%%/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png +%%WWWDIR%%/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +%%WWWDIR%%/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png +%%WWWDIR%%/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png +%%WWWDIR%%/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png +%%WWWDIR%%/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png +%%WWWDIR%%/images/jquery-ui/ui-icons_222222_256x240.png +%%WWWDIR%%/images/jquery-ui/ui-icons_2e83ff_256x240.png +%%WWWDIR%%/images/jquery-ui/ui-icons_454545_256x240.png +%%WWWDIR%%/images/jquery-ui/ui-icons_888888_256x240.png +%%WWWDIR%%/images/jquery-ui/ui-icons_cd0a0a_256x240.png +%%WWWDIR%%/images/jqueryFileTree/directory.png +%%WWWDIR%%/images/jqueryFileTree/file.png +%%WWWDIR%%/images/jqueryFileTree/folder_open.png +%%WWWDIR%%/images/jqueryFileTree/spinner.gif +%%WWWDIR%%/images/monitor_bl.png +%%WWWDIR%%/images/monitor_bottom.png +%%WWWDIR%%/images/monitor_br.png +%%WWWDIR%%/images/monitor_glossy.png +%%WWWDIR%%/images/monitor_left.png +%%WWWDIR%%/images/monitor_right.png +%%WWWDIR%%/images/monitor_tl.png +%%WWWDIR%%/images/monitor_top.png +%%WWWDIR%%/images/monitor_tr.png +%%WWWDIR%%/images/rightArrow.png +%%WWWDIR%%/images/spinner.gif +%%WWWDIR%%/images/treeview-default-line.gif +%%WWWDIR%%/images/treeview-default.gif +%%WWWDIR%%/images/upArrow.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox.icns +%%WWWDIR%%/images/vbox/OSE/VirtualBox_16px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_20px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_32px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_40px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_48px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_64px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_cube_42px.png +%%WWWDIR%%/images/vbox/OSE/VirtualBox_win.ico +%%WWWDIR%%/images/vbox/OSE/about.png +%%WWWDIR%%/images/vbox/OSE/about_16px.png +%%WWWDIR%%/images/vbox/acpi_16px.png +%%WWWDIR%%/images/vbox/acpi_disabled_16px.png +%%WWWDIR%%/images/vbox/add_host_iface_16px.png +%%WWWDIR%%/images/vbox/add_host_iface_disabled_16px.png +%%WWWDIR%%/images/vbox/arrow_down_10px.png +%%WWWDIR%%/images/vbox/arrow_left_10px.png +%%WWWDIR%%/images/vbox/arrow_right_10px.png +%%WWWDIR%%/images/vbox/arrow_up_10px.png +%%WWWDIR%%/images/vbox/attachment_16px.png +%%WWWDIR%%/images/vbox/attachment_add_16px.png +%%WWWDIR%%/images/vbox/attachment_add_disabled_16px.png +%%WWWDIR%%/images/vbox/attachment_disabled_16px.png +%%WWWDIR%%/images/vbox/attachment_remove_16px.png +%%WWWDIR%%/images/vbox/attachment_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/bgnd_sel_2.jpg +%%WWWDIR%%/images/vbox/blank.gif +%%WWWDIR%%/images/vbox/cd_16px.png +%%WWWDIR%%/images/vbox/cd_32px.png +%%WWWDIR%%/images/vbox/cd_add_16px.png +%%WWWDIR%%/images/vbox/cd_add_disabled_16px.png +%%WWWDIR%%/images/vbox/cd_disabled_16px.png +%%WWWDIR%%/images/vbox/cd_disabled_32px.png +%%WWWDIR%%/images/vbox/cd_unmount_16px.png +%%WWWDIR%%/images/vbox/cd_unmount_dis_16px.png +%%WWWDIR%%/images/vbox/cd_unmount_disabled_16px.png +%%WWWDIR%%/images/vbox/chipset_16px.png +%%WWWDIR%%/images/vbox/chipset_disabled_16px.png +%%WWWDIR%%/images/vbox/close_16px.png +%%WWWDIR%%/images/vbox/controller_add_16px.png +%%WWWDIR%%/images/vbox/controller_add_disabled_16px.png +%%WWWDIR%%/images/vbox/controller_remove_16px.png +%%WWWDIR%%/images/vbox/controller_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/cpu_16px.png +%%WWWDIR%%/images/vbox/description_16px.png +%%WWWDIR%%/images/vbox/description_disabled_16px.png +%%WWWDIR%%/images/vbox/description_edit_16px.png +%%WWWDIR%%/images/vbox/description_edit_disabled_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_22px.png +%%WWWDIR%%/images/vbox/discard_cur_state_dis_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_dis_22px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_22px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_dis_16px.png +%%WWWDIR%%/images/vbox/discard_cur_state_snapshot_dis_22px.png +%%WWWDIR%%/images/vbox/diskimage_16px.png +%%WWWDIR%%/images/vbox/exit_16px.png +%%WWWDIR%%/images/vbox/expanding_collapsing_16px.png +%%WWWDIR%%/images/vbox/export_16px.png +%%WWWDIR%%/images/vbox/fd_16px.png +%%WWWDIR%%/images/vbox/fd_32px.png +%%WWWDIR%%/images/vbox/fd_add_16px.png +%%WWWDIR%%/images/vbox/fd_add_disabled_16px.png +%%WWWDIR%%/images/vbox/fd_disabled_16px.png +%%WWWDIR%%/images/vbox/fd_disabled_32px.png +%%WWWDIR%%/images/vbox/fd_unmount_16px.png +%%WWWDIR%%/images/vbox/fd_unmount_dis_16px.png +%%WWWDIR%%/images/vbox/floppy_16px.png +%%WWWDIR%%/images/vbox/floppy_add_16px.png +%%WWWDIR%%/images/vbox/floppy_add_disabled_16px.png +%%WWWDIR%%/images/vbox/floppy_collapse_16px.png +%%WWWDIR%%/images/vbox/floppy_expand_16px.png +%%WWWDIR%%/images/vbox/fullscreen_16px.png +%%WWWDIR%%/images/vbox/global_settings_16px.png +%%WWWDIR%%/images/vbox/global_settings_disabled_16px.png +%%WWWDIR%%/images/vbox/group_abstract_16px.png +%%WWWDIR%%/images/vbox/guesttools_16px.png +%%WWWDIR%%/images/vbox/guesttools_disabled_16px.png +%%WWWDIR%%/images/vbox/hd_16px.png +%%WWWDIR%%/images/vbox/hd_32px.png +%%WWWDIR%%/images/vbox/hd_add_16px.png +%%WWWDIR%%/images/vbox/hd_add_22px.png +%%WWWDIR%%/images/vbox/hd_add_disabled_16px.png +%%WWWDIR%%/images/vbox/hd_add_disabled_22px.png +%%WWWDIR%%/images/vbox/hd_disabled_16px.png +%%WWWDIR%%/images/vbox/hd_disabled_32px.png +%%WWWDIR%%/images/vbox/hd_new_16px.png +%%WWWDIR%%/images/vbox/hd_new_22px.png +%%WWWDIR%%/images/vbox/hd_new_disabled_16px.png +%%WWWDIR%%/images/vbox/hd_new_disabled_22px.png +%%WWWDIR%%/images/vbox/hd_release_16px.png +%%WWWDIR%%/images/vbox/hd_release_22px.png +%%WWWDIR%%/images/vbox/hd_release_disabled_16px.png +%%WWWDIR%%/images/vbox/hd_release_disabled_22px.png +%%WWWDIR%%/images/vbox/hd_remove_16px.png +%%WWWDIR%%/images/vbox/hd_remove_22px.png +%%WWWDIR%%/images/vbox/hd_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/hd_remove_disabled_22px.png +%%WWWDIR%%/images/vbox/help_16px.png +%%WWWDIR%%/images/vbox/ide_16px.png +%%WWWDIR%%/images/vbox/ide_add_16px.png +%%WWWDIR%%/images/vbox/ide_add_disabled_16px.png +%%WWWDIR%%/images/vbox/ide_collapse_16px.png +%%WWWDIR%%/images/vbox/ide_expand_16px.png +%%WWWDIR%%/images/vbox/import_16px.png +%%WWWDIR%%/images/vbox/list_movedown_16px.png +%%WWWDIR%%/images/vbox/list_movedown_disabled_16px.png +%%WWWDIR%%/images/vbox/list_moveup_16px.png +%%WWWDIR%%/images/vbox/list_moveup_disabled_16px.png +%%WWWDIR%%/images/vbox/machine_16px.png +%%WWWDIR%%/images/vbox/machine_32px.png +%%WWWDIR%%/images/vbox/machine_abstract_16px.png +%%WWWDIR%%/images/vbox/machine_disabled_16px.png +%%WWWDIR%%/images/vbox/machine_disabled_32px.png +%%WWWDIR%%/images/vbox/menuArrow.gif +%%WWWDIR%%/images/vbox/menuArrow_w.gif +%%WWWDIR%%/images/vbox/name_16px.png +%%WWWDIR%%/images/vbox/node.gif +%%WWWDIR%%/images/vbox/nw_16px.png +%%WWWDIR%%/images/vbox/nw_32px.png +%%WWWDIR%%/images/vbox/nw_disabled_16px.png +%%WWWDIR%%/images/vbox/nw_disabled_32px.png +%%WWWDIR%%/images/vbox/os_archlinux.png +%%WWWDIR%%/images/vbox/os_archlinux_64.png +%%WWWDIR%%/images/vbox/os_debian.png +%%WWWDIR%%/images/vbox/os_debian_64.png +%%WWWDIR%%/images/vbox/os_dos.png +%%WWWDIR%%/images/vbox/os_fedora.png +%%WWWDIR%%/images/vbox/os_fedora_64.png +%%WWWDIR%%/images/vbox/os_freebsd.png +%%WWWDIR%%/images/vbox/os_freebsd_64.png +%%WWWDIR%%/images/vbox/os_gentoo.png +%%WWWDIR%%/images/vbox/os_gentoo_64.png +%%WWWDIR%%/images/vbox/os_jrockitve.png +%%WWWDIR%%/images/vbox/os_l4.png +%%WWWDIR%%/images/vbox/os_linux.png +%%WWWDIR%%/images/vbox/os_linux22.png +%%WWWDIR%%/images/vbox/os_linux24.png +%%WWWDIR%%/images/vbox/os_linux24_64.png +%%WWWDIR%%/images/vbox/os_linux26.png +%%WWWDIR%%/images/vbox/os_linux26_64.png +%%WWWDIR%%/images/vbox/os_linux_64.png +%%WWWDIR%%/images/vbox/os_linux_other.png +%%WWWDIR%%/images/vbox/os_macosx.png +%%WWWDIR%%/images/vbox/os_macosx_64.png +%%WWWDIR%%/images/vbox/os_mandriva.png +%%WWWDIR%%/images/vbox/os_mandriva_64.png +%%WWWDIR%%/images/vbox/os_netbsd.png +%%WWWDIR%%/images/vbox/os_netbsd_64.png +%%WWWDIR%%/images/vbox/os_netware.png +%%WWWDIR%%/images/vbox/os_openbsd.png +%%WWWDIR%%/images/vbox/os_openbsd_64.png +%%WWWDIR%%/images/vbox/os_opensuse.png +%%WWWDIR%%/images/vbox/os_opensuse_64.png +%%WWWDIR%%/images/vbox/os_oracle.png +%%WWWDIR%%/images/vbox/os_oracle_64.png +%%WWWDIR%%/images/vbox/os_oraclesolaris.png +%%WWWDIR%%/images/vbox/os_oraclesolaris_64.png +%%WWWDIR%%/images/vbox/os_os2_other.png +%%WWWDIR%%/images/vbox/os_os2ecs.png +%%WWWDIR%%/images/vbox/os_os2warp3.png +%%WWWDIR%%/images/vbox/os_os2warp4.png +%%WWWDIR%%/images/vbox/os_os2warp45.png +%%WWWDIR%%/images/vbox/os_other.png +%%WWWDIR%%/images/vbox/os_other_64.png +%%WWWDIR%%/images/vbox/os_qnx.png +%%WWWDIR%%/images/vbox/os_redhat.png +%%WWWDIR%%/images/vbox/os_redhat_64.png +%%WWWDIR%%/images/vbox/os_solaris.png +%%WWWDIR%%/images/vbox/os_solaris_64.png +%%WWWDIR%%/images/vbox/os_turbolinux.png +%%WWWDIR%%/images/vbox/os_turbolinux_64.png +%%WWWDIR%%/images/vbox/os_type_16px.png +%%WWWDIR%%/images/vbox/os_ubuntu.png +%%WWWDIR%%/images/vbox/os_ubuntu_64.png +%%WWWDIR%%/images/vbox/os_virtualbox.png +%%WWWDIR%%/images/vbox/os_win10.png +%%WWWDIR%%/images/vbox/os_win10_64.png +%%WWWDIR%%/images/vbox/os_win11_64.png +%%WWWDIR%%/images/vbox/os_win2k.png +%%WWWDIR%%/images/vbox/os_win2k12_64.png +%%WWWDIR%%/images/vbox/os_win2k16_64.png +%%WWWDIR%%/images/vbox/os_win2k19_64.png +%%WWWDIR%%/images/vbox/os_win2k3.png +%%WWWDIR%%/images/vbox/os_win2k3_64.png +%%WWWDIR%%/images/vbox/os_win2k8.png +%%WWWDIR%%/images/vbox/os_win2k8_64.png +%%WWWDIR%%/images/vbox/os_win31.png +%%WWWDIR%%/images/vbox/os_win7.png +%%WWWDIR%%/images/vbox/os_win7_64.png +%%WWWDIR%%/images/vbox/os_win8.png +%%WWWDIR%%/images/vbox/os_win81.png +%%WWWDIR%%/images/vbox/os_win81_64.png +%%WWWDIR%%/images/vbox/os_win8_64.png +%%WWWDIR%%/images/vbox/os_win95.png +%%WWWDIR%%/images/vbox/os_win98.png +%%WWWDIR%%/images/vbox/os_win_other.png +%%WWWDIR%%/images/vbox/os_win_other_64.png +%%WWWDIR%%/images/vbox/os_winme.png +%%WWWDIR%%/images/vbox/os_winnt4.png +%%WWWDIR%%/images/vbox/os_winvista.png +%%WWWDIR%%/images/vbox/os_winvista_64.png +%%WWWDIR%%/images/vbox/os_winxp.png +%%WWWDIR%%/images/vbox/os_winxp_64.png +%%WWWDIR%%/images/vbox/os_xandros.png +%%WWWDIR%%/images/vbox/os_xandros_64.png +%%WWWDIR%%/images/vbox/parallel_port_16px.png +%%WWWDIR%%/images/vbox/preview_empty_228x168px.png +%%WWWDIR%%/images/vbox/preview_full_228x168px.png +%%WWWDIR%%/images/vbox/progress_clone_90px.png +%%WWWDIR%%/images/vbox/progress_delete_90px.png +%%WWWDIR%%/images/vbox/progress_export_90px.png +%%WWWDIR%%/images/vbox/progress_import_90px.png +%%WWWDIR%%/images/vbox/progress_install_guest_additions_90px.png +%%WWWDIR%%/images/vbox/progress_media_create_90px.png +%%WWWDIR%%/images/vbox/progress_media_delete_90px.png +%%WWWDIR%%/images/vbox/progress_poweroff_90px.png +%%WWWDIR%%/images/vbox/progress_snapshot_create_90px.png +%%WWWDIR%%/images/vbox/progress_snapshot_discard_90px.png +%%WWWDIR%%/images/vbox/progress_snapshot_restore_90px.png +%%WWWDIR%%/images/vbox/progress_start_90px.png +%%WWWDIR%%/images/vbox/progress_state_restore_90px.png +%%WWWDIR%%/images/vbox/progress_state_save_90px.png +%%WWWDIR%%/images/vbox/ram_16px.png +%%WWWDIR%%/images/vbox/refresh_16px.png +%%WWWDIR%%/images/vbox/refresh_22px.png +%%WWWDIR%%/images/vbox/refresh_32px.png +%%WWWDIR%%/images/vbox/refresh_disabled_16px.png +%%WWWDIR%%/images/vbox/refresh_disabled_22px.png +%%WWWDIR%%/images/vbox/refresh_disabled_32px.png +%%WWWDIR%%/images/vbox/register_16px.png +%%WWWDIR%%/images/vbox/remove_host_iface_16px.png +%%WWWDIR%%/images/vbox/remove_host_iface_disabled_16px.png +%%WWWDIR%%/images/vbox/sata_16px.png +%%WWWDIR%%/images/vbox/sata_add_16px.png +%%WWWDIR%%/images/vbox/sata_add_disabled_16px.png +%%WWWDIR%%/images/vbox/sata_collapse_16px.png +%%WWWDIR%%/images/vbox/sata_expand_16px.png +%%WWWDIR%%/images/vbox/scsi_16px.png +%%WWWDIR%%/images/vbox/scsi_add_16px.png +%%WWWDIR%%/images/vbox/scsi_add_disabled_16px.png +%%WWWDIR%%/images/vbox/scsi_collapse_16px.png +%%WWWDIR%%/images/vbox/scsi_expand_16px.png +%%WWWDIR%%/images/vbox/select_file_16px.png +%%WWWDIR%%/images/vbox/select_file_disabled_16px.png +%%WWWDIR%%/images/vbox/serial_port_16px.png +%%WWWDIR%%/images/vbox/serial_port_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_16px.png +%%WWWDIR%%/images/vbox/sf_add_16px.png +%%WWWDIR%%/images/vbox/sf_add_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_edit_16px.png +%%WWWDIR%%/images/vbox/sf_edit_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_remove_16px.png +%%WWWDIR%%/images/vbox/sf_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/sf_settings_16px.png +%%WWWDIR%%/images/vbox/sf_settings_disabled_16px.png +%%WWWDIR%%/images/vbox/site_16px.png +%%WWWDIR%%/images/vbox/site_32px.png +%%WWWDIR%%/images/vbox/snapshot_delete_16px.png +%%WWWDIR%%/images/vbox/snapshot_delete_22px.png +%%WWWDIR%%/images/vbox/snapshot_delete_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_delete_disabled_22px.png +%%WWWDIR%%/images/vbox/snapshot_offline_16px.png +%%WWWDIR%%/images/vbox/snapshot_online_16px.png +%%WWWDIR%%/images/vbox/snapshot_restore_16px.png +%%WWWDIR%%/images/vbox/snapshot_restore_22px.png +%%WWWDIR%%/images/vbox/snapshot_restore_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_restore_disabled_22px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_16px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_22px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_show_details_disabled_22px.png +%%WWWDIR%%/images/vbox/snapshot_take_16px.png +%%WWWDIR%%/images/vbox/snapshot_take_22px.png +%%WWWDIR%%/images/vbox/snapshot_take_disabled_16px.png +%%WWWDIR%%/images/vbox/snapshot_take_disabled_22px.png +%%WWWDIR%%/images/vbox/sort_16px.png +%%WWWDIR%%/images/vbox/sort_disabled_16px.png +%%WWWDIR%%/images/vbox/sound_16px.png +%%WWWDIR%%/images/vbox/sound_disabled_16px.png +%%WWWDIR%%/images/vbox/state_aborted_16px.png +%%WWWDIR%%/images/vbox/state_discarding_16px.png +%%WWWDIR%%/images/vbox/state_paused_16px.png +%%WWWDIR%%/images/vbox/state_powered_off_16px.png +%%WWWDIR%%/images/vbox/state_restoring_16px.png +%%WWWDIR%%/images/vbox/state_running_16px.png +%%WWWDIR%%/images/vbox/state_saved_16px.png +%%WWWDIR%%/images/vbox/state_saving_16px.png +%%WWWDIR%%/images/vbox/state_stuck_16px.png +%%WWWDIR%%/images/vbox/status_check_16px.png +%%WWWDIR%%/images/vbox/status_error_16px.png +%%WWWDIR%%/images/vbox/usb_16px.png +%%WWWDIR%%/images/vbox/usb_add_16px.png +%%WWWDIR%%/images/vbox/usb_add_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_collapse_16px.png +%%WWWDIR%%/images/vbox/usb_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_expand_16px.png +%%WWWDIR%%/images/vbox/usb_filter_edit_16px.png +%%WWWDIR%%/images/vbox/usb_filter_edit_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_movedown_16px.png +%%WWWDIR%%/images/vbox/usb_movedown_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_moveup_16px.png +%%WWWDIR%%/images/vbox/usb_moveup_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_new_16px.png +%%WWWDIR%%/images/vbox/usb_new_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_remove_16px.png +%%WWWDIR%%/images/vbox/usb_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/usb_unavailable_16px.png +%%WWWDIR%%/images/vbox/usb_unavailable_disabled_16px.png +%%WWWDIR%%/images/vbox/vdm_add_16px.png +%%WWWDIR%%/images/vbox/vdm_add_22px.png +%%WWWDIR%%/images/vbox/vdm_add_disabled_16px.png +%%WWWDIR%%/images/vbox/vdm_add_disabled_22px.png +%%WWWDIR%%/images/vbox/vdm_new_16px.png +%%WWWDIR%%/images/vbox/vdm_new_22px.png +%%WWWDIR%%/images/vbox/vdm_new_disabled_16px.png +%%WWWDIR%%/images/vbox/vdm_new_disabled_22px.png +%%WWWDIR%%/images/vbox/vdm_release_16px.png +%%WWWDIR%%/images/vbox/vdm_release_22px.png +%%WWWDIR%%/images/vbox/vdm_release_disabled_16px.png +%%WWWDIR%%/images/vbox/vdm_release_disabled_22px.png +%%WWWDIR%%/images/vbox/vdm_remove_16px.png +%%WWWDIR%%/images/vbox/vdm_remove_22px.png +%%WWWDIR%%/images/vbox/vdm_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/vdm_remove_disabled_22px.png +%%WWWDIR%%/images/vbox/video_capture_16px.png +%%WWWDIR%%/images/vbox/video_capture_disabled_16px.png +%%WWWDIR%%/images/vbox/video_capture_on_16px.png +%%WWWDIR%%/images/vbox/video_capture_on_disabled_16px.png +%%WWWDIR%%/images/vbox/video_capture_settings_16px.png +%%WWWDIR%%/images/vbox/virtio_scsi_add_16px.png +%%WWWDIR%%/images/vbox/virtio_scsi_add_disabled_16px.png +%%WWWDIR%%/images/vbox/virtio_scsi_collapse_16px.png +%%WWWDIR%%/images/vbox/virtio_scsi_expand_16px.png +%%WWWDIR%%/images/vbox/virtualbox-hdd.png +%%WWWDIR%%/images/vbox/virtualbox-ova.png +%%WWWDIR%%/images/vbox/virtualbox-ovf.png +%%WWWDIR%%/images/vbox/virtualbox-vbox.png +%%WWWDIR%%/images/vbox/virtualbox-vdi.png +%%WWWDIR%%/images/vbox/virtualbox-vhd.png +%%WWWDIR%%/images/vbox/virtualbox-vmdk.png +%%WWWDIR%%/images/vbox/vm_add_16px.png +%%WWWDIR%%/images/vbox/vm_clone_16px.png +%%WWWDIR%%/images/vbox/vm_clone_22px.png +%%WWWDIR%%/images/vbox/vm_clone_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_clone_disabled_22px.png +%%WWWDIR%%/images/vbox/vm_delete_16px.png +%%WWWDIR%%/images/vbox/vm_delete_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_discard_16px.png +%%WWWDIR%%/images/vbox/vm_discard_32px.png +%%WWWDIR%%/images/vbox/vm_discard_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_discard_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_group_create_16px.png +%%WWWDIR%%/images/vbox/vm_group_create_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_group_name_16px.png +%%WWWDIR%%/images/vbox/vm_group_name_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_group_remove_16px.png +%%WWWDIR%%/images/vbox/vm_group_remove_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_new_16px.png +%%WWWDIR%%/images/vbox/vm_new_32px.png +%%WWWDIR%%/images/vbox/vm_new_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_open_filemanager_16px.png +%%WWWDIR%%/images/vbox/vm_open_filemanager_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_pause_16px.png +%%WWWDIR%%/images/vbox/vm_pause_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_pause_on_16px.png +%%WWWDIR%%/images/vbox/vm_pause_on_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_poweroff_16px.png +%%WWWDIR%%/images/vbox/vm_poweroff_32px.png +%%WWWDIR%%/images/vbox/vm_poweroff_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_poweroff_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_reset_16px.png +%%WWWDIR%%/images/vbox/vm_reset_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_save_state_16px.png +%%WWWDIR%%/images/vbox/vm_save_state_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_settings_16px.png +%%WWWDIR%%/images/vbox/vm_settings_32px.png +%%WWWDIR%%/images/vbox/vm_settings_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_settings_disabled_32px.png +%%WWWDIR%%/images/vbox/vm_show_logs_16px.png +%%WWWDIR%%/images/vbox/vm_show_logs_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_shutdown_16px.png +%%WWWDIR%%/images/vbox/vm_shutdown_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_start_16px.png +%%WWWDIR%%/images/vbox/vm_start_32px.png +%%WWWDIR%%/images/vbox/vm_start_disabled_16px.png +%%WWWDIR%%/images/vbox/vm_start_disabled_32px.png +%%WWWDIR%%/images/vbox/vmw_clone_bg.png +%%WWWDIR%%/images/vbox/vmw_first_run_bg.png +%%WWWDIR%%/images/vbox/vmw_new_harddisk_bg.png +%%WWWDIR%%/images/vbox/vmw_new_welcome_bg.png +%%WWWDIR%%/images/vbox/vmw_ovf_export_bg.png +%%WWWDIR%%/images/vbox/vmw_ovf_import_bg.png +%%WWWDIR%%/images/vbox/vrdp_16px.png +%%WWWDIR%%/images/vbox/vrdp_32px.png +%%WWWDIR%%/images/vbox/vrdp_disabled_16px.png +%%WWWDIR%%/images/vbox/vrdp_disabled_32px.png +%%WWWDIR%%/images/vbox/vrdp_on_16px.png +%%WWWDIR%%/images/vbox/vrdp_on_disabled_16px.png +%%WWWDIR%%/images/vbox/vtx_amdv_16px.png +%%WWWDIR%%/images/vbox/vtx_amdv_disabled_16px.png +%%WWWDIR%%/images/vbox/welcome.png +%%WWWDIR%%/images/wizard_bg.png +%%WWWDIR%%/index.html +%%WWWDIR%%/js/canvasimages.js +%%WWWDIR%%/js/chooser.js +%%WWWDIR%%/js/datamediator.js +%%WWWDIR%%/js/dialogs.js +%%WWWDIR%%/js/eventlistener.js +%%WWWDIR%%/js/jquery-3.7.1.min.js +%%WWWDIR%%/js/jquery-ui-1.14.1.min.js +%%WWWDIR%%/js/jquery.jec-1.3.1.js +%%WWWDIR%%/js/jquery.projectPlugins.js +%%WWWDIR%%/js/jquery.scrollTo-min.js +%%WWWDIR%%/js/jquery.tipped-2.1b.min.js +%%WWWDIR%%/js/phpvirtualbox.js +%%WWWDIR%%/js/utils.js +%%WWWDIR%%/languages/cs.xml +%%WWWDIR%%/languages/da.xml +%%WWWDIR%%/languages/de.xml +%%WWWDIR%%/languages/en.xml +%%WWWDIR%%/languages/es.xml +%%WWWDIR%%/languages/fr.xml +%%WWWDIR%%/languages/it.xml +%%WWWDIR%%/languages/ja.xml +%%WWWDIR%%/languages/languages.txt +%%WWWDIR%%/languages/nl.xml +%%WWWDIR%%/languages/pl.xml +%%WWWDIR%%/languages/pt_br.xml +%%WWWDIR%%/languages/ro.xml +%%WWWDIR%%/languages/ru.xml +%%WWWDIR%%/languages/source/ParseVboxLang.inc +%%WWWDIR%%/languages/source/ParseVboxLang.php +%%WWWDIR%%/languages/source/bg.dat +%%WWWDIR%%/languages/source/ca.dat +%%WWWDIR%%/languages/source/ca_va.dat +%%WWWDIR%%/languages/source/cs.dat +%%WWWDIR%%/languages/source/da.dat +%%WWWDIR%%/languages/source/de.dat +%%WWWDIR%%/languages/source/el.dat +%%WWWDIR%%/languages/source/en.dat +%%WWWDIR%%/languages/source/es.dat +%%WWWDIR%%/languages/source/eu.dat +%%WWWDIR%%/languages/source/fa.dat +%%WWWDIR%%/languages/source/fi.dat +%%WWWDIR%%/languages/source/fr.dat +%%WWWDIR%%/languages/source/gl.dat +%%WWWDIR%%/languages/source/he.dat +%%WWWDIR%%/languages/source/hr_hr.dat +%%WWWDIR%%/languages/source/hu.dat +%%WWWDIR%%/languages/source/id.dat +%%WWWDIR%%/languages/source/it.dat +%%WWWDIR%%/languages/source/ja.dat +%%WWWDIR%%/languages/source/km_kh.dat +%%WWWDIR%%/languages/source/ko.dat +%%WWWDIR%%/languages/source/lt.dat +%%WWWDIR%%/languages/source/nl.dat +%%WWWDIR%%/languages/source/pl.dat +%%WWWDIR%%/languages/source/pt.dat +%%WWWDIR%%/languages/source/pt_br.dat +%%WWWDIR%%/languages/source/ro.dat +%%WWWDIR%%/languages/source/ru.dat +%%WWWDIR%%/languages/source/sk.dat +%%WWWDIR%%/languages/source/sl.dat +%%WWWDIR%%/languages/source/sr.dat +%%WWWDIR%%/languages/source/sv.dat +%%WWWDIR%%/languages/source/th.dat +%%WWWDIR%%/languages/source/tr.dat +%%WWWDIR%%/languages/source/uk.dat +%%WWWDIR%%/languages/source/zh_cn.dat +%%WWWDIR%%/languages/source/zh_tw.dat +%%WWWDIR%%/languages/zh_cn.xml +%%WWWDIR%%/languages/zh_tw.xml +%%WWWDIR%%/packaging/install-scripts/install.bash +%%WWWDIR%%/packaging/install-scripts/uninstall.bash +%%WWWDIR%%/panes/about.html +%%WWWDIR%%/panes/chooser.html +%%WWWDIR%%/panes/guestNetAdapters.html +%%WWWDIR%%/panes/login.html +%%WWWDIR%%/panes/mediumEncryptionPasswords.html +%%WWWDIR%%/panes/settingsAudio.html +%%WWWDIR%%/panes/settingsDisplay.html +%%WWWDIR%%/panes/settingsGeneral.html +%%WWWDIR%%/panes/settingsGlobalGeneral.html +%%WWWDIR%%/panes/settingsGlobalLanguage.html +%%WWWDIR%%/panes/settingsGlobalNetwork.html +%%WWWDIR%%/panes/settingsGlobalNetworkNATPortForwarding.html +%%WWWDIR%%/panes/settingsGlobalUsers.html +%%WWWDIR%%/panes/settingsNetwork.html +%%WWWDIR%%/panes/settingsParallelPorts.html +%%WWWDIR%%/panes/settingsPortForwarding.html +%%WWWDIR%%/panes/settingsSerialPorts.html +%%WWWDIR%%/panes/settingsSharedFolders.html +%%WWWDIR%%/panes/settingsStorage.html +%%WWWDIR%%/panes/settingsSystem.html +%%WWWDIR%%/panes/settingsUSB.html +%%WWWDIR%%/panes/tabVMConsole.html +%%WWWDIR%%/panes/tabVMConsoleRDP.html +%%WWWDIR%%/panes/tabVMConsoleVNC.html +%%WWWDIR%%/panes/tabVMDetails.html +%%WWWDIR%%/panes/tabVMSnapshots.html +%%WWWDIR%%/panes/tabs.html +%%WWWDIR%%/panes/toolbar.html +%%WWWDIR%%/panes/topmenu.html +%%WWWDIR%%/panes/userEdit.html +%%WWWDIR%%/panes/vmlogs.html +%%WWWDIR%%/panes/vmm.html +%%WWWDIR%%/panes/vmmISCSI.html +%%WWWDIR%%/panes/vmmModify.html +%%WWWDIR%%/panes/wizardCloneVM.html +%%WWWDIR%%/panes/wizardCloneVMAdvanced.html +%%WWWDIR%%/panes/wizardCopyHD.html +%%WWWDIR%%/panes/wizardCopyHDAdvanced.html +%%WWWDIR%%/panes/wizardExportAppliance.html +%%WWWDIR%%/panes/wizardExportApplianceAdvanced.html +%%WWWDIR%%/panes/wizardFirstRun.html +%%WWWDIR%%/panes/wizardImportAppliance.html +%%WWWDIR%%/panes/wizardImportApplianceAdvanced.html +%%WWWDIR%%/panes/wizardNewHD.html +%%WWWDIR%%/panes/wizardNewHDAdvanced.html +%%WWWDIR%%/panes/wizardNewVM.html +%%WWWDIR%%/panes/wizardNewVMAdvanced.html +%%WWWDIR%%/phpvirtualbox-72.conf +%%WWWDIR%%/rdpweb/RDPClientUI.swf +%%WWWDIR%%/rdpweb/license_3rd.txt +%%WWWDIR%%/rdpweb/swfobject.js +%%WWWDIR%%/rdpweb/webclient.js +%%WWWDIR%%/rdpweb/webclient3.html +%%WWWDIR%%/recovery.php-disabled +%%WWWDIR%%/tightvnc/VncViewer.jar +%%WWWDIR%%/vboxinit diff --git a/www/phpvirtualbox-legacy/Makefile b/www/phpvirtualbox-legacy/Makefile index 5c7c939fe8a5..d1d886b7c58c 100644 --- a/www/phpvirtualbox-legacy/Makefile +++ b/www/phpvirtualbox-legacy/Makefile @@ -1,6 +1,6 @@ PORTNAME= phpvirtualbox DISTVERSION= 5.2-1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= www SUFFIX= -legacy PKGNAMESUFFIX= ${SUFFIX}${PHP_PKGNAMESUFFIX} @@ -18,8 +18,7 @@ USE_PHP= session simplexml soap xml ETCDIR= ${WWWDIR} WWWDIR= ${PREFIX}/www/${PORTNAME}${SUFFIX} -EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox/files/patch-php8 \ - ${.CURDIR}/../phpvirtualbox/files/patch-panes_mediumEncryptionPasswords.html +EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html NO_ARCH= yes NO_BUILD= yes PORTSCOUT= limit:^5\. @@ -29,6 +28,7 @@ post-patch: @${REINPLACE_CMD} -e 's#Alias /phpvirtualbox#Alias /phpvirtualbox-legacy#' \ -e 's#/usr/share/phpvirtualbox#${WWWDIR}#g' \ ${WRKSRC}/phpvirtualbox-legacy.conf + @${REINPLACE_CMD} -e 's#\r#\n#g' ${WRKSRC}/languages/zh_tw.xml do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} diff --git a/www/phpvirtualbox/files/patch-php8 b/www/phpvirtualbox-legacy/files/patch-php8 index 52fe5a6a5b12..52fe5a6a5b12 100644 --- a/www/phpvirtualbox/files/patch-php8 +++ b/www/phpvirtualbox-legacy/files/patch-php8 diff --git a/www/phpvirtualbox/Makefile b/www/phpvirtualbox/Makefile index a0894d3b098f..bcd01b010d36 100644 --- a/www/phpvirtualbox/Makefile +++ b/www/phpvirtualbox/Makefile @@ -1,6 +1,6 @@ PORTNAME= phpvirtualbox DISTVERSION= 6.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} @@ -17,6 +17,8 @@ GH_TAGNAME= cf82d58f2 USE_PHP= session simplexml soap xml ETCDIR= ${WWWDIR} +EXTRA_PATCHES+= ${.CURDIR}/../phpvirtualbox-72/files/patch-panes_mediumEncryptionPasswords.html \ + ${.CURDIR}/../phpvirtualbox-legacy/files/patch-php8 NO_ARCH= yes NO_BUILD= yes PORTSCOUT= limit:^6\. @@ -24,6 +26,7 @@ PORTSCOUT= limit:^6\. post-patch: @${REINPLACE_CMD} -e 's#/usr/share/phpvirtualbox#${WWWDIR}#g' \ ${WRKSRC}/phpvirtualbox.conf + @${REINPLACE_CMD} -e 's#\r#\n#g' ${WRKSRC}/languages/zh_tw.xml do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} diff --git a/www/pocket-id/Makefile b/www/pocket-id/Makefile index 6732c6454467..ab8b55ae4fc6 100644 --- a/www/pocket-id/Makefile +++ b/www/pocket-id/Makefile @@ -1,6 +1,6 @@ PORTNAME= pocket-id DISTVERSIONPREFIX= v -DISTVERSION= 1.9.1 +DISTVERSION= 1.10.0 CATEGORIES= www MASTER_SITES= LOCAL/dtxdf/${PORTNAME}/ DISTFILES= ${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}.frontend${EXTRACT_SUFX} diff --git a/www/pocket-id/distinfo b/www/pocket-id/distinfo index 19b1a503227e..2fed86b8e729 100644 --- a/www/pocket-id/distinfo +++ b/www/pocket-id/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1756073537 -SHA256 (go/www_pocket-id/pocket-id-pocket-id-v1.9.1_GH0/pocket-id-v1.9.1.frontend.tar.gz) = 308477aa87321dc17323f77a8f48ed3cc5ce3b9c99b529648d35490d61e36d20 -SIZE (go/www_pocket-id/pocket-id-pocket-id-v1.9.1_GH0/pocket-id-v1.9.1.frontend.tar.gz) = 1496166 -SHA256 (go/www_pocket-id/pocket-id-pocket-id-v1.9.1_GH0/go.mod) = 407629c8229cd31ee5221adda1ac6926f22a6e1f938b86f73d7b95f3402db75d -SIZE (go/www_pocket-id/pocket-id-pocket-id-v1.9.1_GH0/go.mod) = 7114 -SHA256 (go/www_pocket-id/pocket-id-pocket-id-v1.9.1_GH0/pocket-id-pocket-id-v1.9.1_GH0.tar.gz) = e79cb839ff1ac04692fbee3c95e233c8723f6318ed4cd0251194b8fec6bf4fd9 -SIZE (go/www_pocket-id/pocket-id-pocket-id-v1.9.1_GH0/pocket-id-pocket-id-v1.9.1_GH0.tar.gz) = 5637458 +TIMESTAMP = 1756427787 +SHA256 (go/www_pocket-id/pocket-id-pocket-id-v1.10.0_GH0/pocket-id-v1.10.0.frontend.tar.gz) = d316b82be00d698a820ac115663ae35f6485b885094ca47d430eec174f8cadb2 +SIZE (go/www_pocket-id/pocket-id-pocket-id-v1.10.0_GH0/pocket-id-v1.10.0.frontend.tar.gz) = 1488185 +SHA256 (go/www_pocket-id/pocket-id-pocket-id-v1.10.0_GH0/go.mod) = 407629c8229cd31ee5221adda1ac6926f22a6e1f938b86f73d7b95f3402db75d +SIZE (go/www_pocket-id/pocket-id-pocket-id-v1.10.0_GH0/go.mod) = 7114 +SHA256 (go/www_pocket-id/pocket-id-pocket-id-v1.10.0_GH0/pocket-id-pocket-id-v1.10.0_GH0.tar.gz) = f6fc8cb49b65eae09ee9f46122d25557d141279970b157c5e29141c0080d969c +SIZE (go/www_pocket-id/pocket-id-pocket-id-v1.10.0_GH0/pocket-id-pocket-id-v1.10.0_GH0.tar.gz) = 5638841 diff --git a/www/py-dj51-django-choices-field/Makefile b/www/py-dj51-django-choices-field/Makefile index c0090e2af7de..738a07fce073 100644 --- a/www/py-dj51-django-choices-field/Makefile +++ b/www/py-dj51-django-choices-field/Makefile @@ -1,5 +1,5 @@ PORTNAME= django-choices-field -DISTVERSION= 2.3.0 +DISTVERSION= 3.0.1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj51- diff --git a/www/py-dj51-django-choices-field/distinfo b/www/py-dj51-django-choices-field/distinfo index 7f61f9ac7dde..c6c4cefdf5ca 100644 --- a/www/py-dj51-django-choices-field/distinfo +++ b/www/py-dj51-django-choices-field/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1711885476 -SHA256 (django_choices_field-2.3.0.tar.gz) = bb0c85c79737ab98bfb9c0d9ddf98010d612c0585be767890e25fd192c3d1694 -SIZE (django_choices_field-2.3.0.tar.gz) = 6448 +TIMESTAMP = 1756398970 +SHA256 (django_choices_field-3.0.1.tar.gz) = 5b45f5d3aa2ef3c30a7ff296ac7acc743097fb3185c78f8c4256c6a73854ab20 +SIZE (django_choices_field-3.0.1.tar.gz) = 5717 diff --git a/www/py-dj52-django-choices-field/Makefile b/www/py-dj52-django-choices-field/Makefile index 355a02ed97cb..5f4feebdf60d 100644 --- a/www/py-dj52-django-choices-field/Makefile +++ b/www/py-dj52-django-choices-field/Makefile @@ -1,5 +1,5 @@ PORTNAME= django-choices-field -DISTVERSION= 2.3.0 +DISTVERSION= 3.0.1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj52- diff --git a/www/py-dj52-django-choices-field/distinfo b/www/py-dj52-django-choices-field/distinfo index 7f61f9ac7dde..c6c4cefdf5ca 100644 --- a/www/py-dj52-django-choices-field/distinfo +++ b/www/py-dj52-django-choices-field/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1711885476 -SHA256 (django_choices_field-2.3.0.tar.gz) = bb0c85c79737ab98bfb9c0d9ddf98010d612c0585be767890e25fd192c3d1694 -SIZE (django_choices_field-2.3.0.tar.gz) = 6448 +TIMESTAMP = 1756398970 +SHA256 (django_choices_field-3.0.1.tar.gz) = 5b45f5d3aa2ef3c30a7ff296ac7acc743097fb3185c78f8c4256c6a73854ab20 +SIZE (django_choices_field-3.0.1.tar.gz) = 5717 diff --git a/www/py-django-choices-field/Makefile b/www/py-django-choices-field/Makefile index ea749d189df7..bed9bf22985c 100644 --- a/www/py-django-choices-field/Makefile +++ b/www/py-django-choices-field/Makefile @@ -1,6 +1,5 @@ PORTNAME= django-choices-field -DISTVERSION= 2.3.0 -PORTREVISION= 1 +DISTVERSION= 3.0.1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-django-choices-field/distinfo b/www/py-django-choices-field/distinfo index 7f61f9ac7dde..c6c4cefdf5ca 100644 --- a/www/py-django-choices-field/distinfo +++ b/www/py-django-choices-field/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1711885476 -SHA256 (django_choices_field-2.3.0.tar.gz) = bb0c85c79737ab98bfb9c0d9ddf98010d612c0585be767890e25fd192c3d1694 -SIZE (django_choices_field-2.3.0.tar.gz) = 6448 +TIMESTAMP = 1756398970 +SHA256 (django_choices_field-3.0.1.tar.gz) = 5b45f5d3aa2ef3c30a7ff296ac7acc743097fb3185c78f8c4256c6a73854ab20 +SIZE (django_choices_field-3.0.1.tar.gz) = 5717 diff --git a/www/py-djangorestframework/Makefile b/www/py-djangorestframework/Makefile index 355d17e95537..c1906afb909e 100644 --- a/www/py-djangorestframework/Makefile +++ b/www/py-djangorestframework/Makefile @@ -1,5 +1,5 @@ PORTNAME= djangorestframework -DISTVERSION= 3.16.0 +DISTVERSION= 3.16.1 PORTEPOCH= 1 CATEGORIES= www python MASTER_SITES= PYPI diff --git a/www/py-djangorestframework/distinfo b/www/py-djangorestframework/distinfo index c336e0e97c68..d9123228b38d 100644 --- a/www/py-djangorestframework/distinfo +++ b/www/py-djangorestframework/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1744359953 -SHA256 (djangorestframework-3.16.0.tar.gz) = f022ff46613584de994c0c6a4aebbace5fd700555fbe9d33b865ebf173eba6c9 -SIZE (djangorestframework-3.16.0.tar.gz) = 1068408 +TIMESTAMP = 1755333901 +SHA256 (djangorestframework-3.16.1.tar.gz) = 166809528b1aced0a17dc66c24492af18049f2c9420dbd0be29422029cfc3ff7 +SIZE (djangorestframework-3.16.1.tar.gz) = 1089735 diff --git a/www/py-flask/Makefile b/www/py-flask/Makefile index e793360736d2..4e3fee0e633d 100644 --- a/www/py-flask/Makefile +++ b/www/py-flask/Makefile @@ -1,5 +1,6 @@ PORTNAME= flask DISTVERSION= 3.1.2 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,19 +20,24 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}werkzeug>=3.1:www/py-werkzeug@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}blinker>=1.9:devel/py-blinker@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} -USES= cpe python +USES= cpe python:3.10+ CPE_VENDOR= palletsprojects USE_PYTHON= pep517 concurrent autoplist NO_ARCH= yes -do-test: - @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) +OPTIONS_DEFINE= ASYNC DOTENV +OPTIONS_DEFAULT=ASYNC DOTENV + +ASYNC_DESC= Enable async +ASYNC_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asgiref>=3.2:www/py-asgiref@${PY_FLAVOR} -.include <bsd.port.pre.mk> +DOTENV_DESC= Enable dotenv +DOTENV_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}python-dotenv>=0:www/py-python-dotenv@${PY_FLAVOR} -.if ${PYTHON_REL} < 31000 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}importlib-metadata>=3.6.0:devel/py-importlib-metadata@${PY_FLAVOR} -.endif +.include <bsd.port.options.mk> + +do-test: + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/www/py-google-api-python-client/Makefile b/www/py-google-api-python-client/Makefile index 11bdf6066214..e134eabcd664 100644 --- a/www/py-google-api-python-client/Makefile +++ b/www/py-google-api-python-client/Makefile @@ -1,5 +1,5 @@ PORTNAME= google-api-python-client -DISTVERSION= 2.178.0 +DISTVERSION= 2.179.0 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-google-api-python-client/distinfo b/www/py-google-api-python-client/distinfo index cb772162aa06..4f137321082d 100644 --- a/www/py-google-api-python-client/distinfo +++ b/www/py-google-api-python-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1754493909 -SHA256 (google_api_python_client-2.178.0.tar.gz) = 99cba921eb471bb5973b780c653ac54d96eef8a42f1b7375b7ab98f257a4414c -SIZE (google_api_python_client-2.178.0.tar.gz) = 13282628 +TIMESTAMP = 1756125194 +SHA256 (google_api_python_client-2.179.0.tar.gz) = 76a774a49dd58af52e74ce7114db387e58f0aaf6760c9cf9201ab6d731d8bd8d +SIZE (google_api_python_client-2.179.0.tar.gz) = 13397672 diff --git a/www/py-httpx-retries/Makefile b/www/py-httpx-retries/Makefile index bc3702d822c4..92f0036b875d 100644 --- a/www/py-httpx-retries/Makefile +++ b/www/py-httpx-retries/Makefile @@ -1,5 +1,5 @@ PORTNAME= httpx-retries -DISTVERSION= 0.4.0 +DISTVERSION= 0.4.1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-httpx-retries/distinfo b/www/py-httpx-retries/distinfo index 4ef455958702..727a38088bfc 100644 --- a/www/py-httpx-retries/distinfo +++ b/www/py-httpx-retries/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1747637137 -SHA256 (httpx_retries-0.4.0.tar.gz) = a7aa513e3f1eef347aac69adecfad9f421210a84df88c88f935ec130f98e6642 -SIZE (httpx_retries-0.4.0.tar.gz) = 12571 +TIMESTAMP = 1756495143 +SHA256 (httpx_retries-0.4.1.tar.gz) = 008c10a57ee73665fa82bfa28466c736da5214b31ee6eacec8707c36493ed152 +SIZE (httpx_retries-0.4.1.tar.gz) = 12588 diff --git a/www/py-nicegui/Makefile b/www/py-nicegui/Makefile index fc34341ad718..fce00807ef93 100644 --- a/www/py-nicegui/Makefile +++ b/www/py-nicegui/Makefile @@ -1,5 +1,5 @@ PORTNAME= nicegui -DISTVERSION= 2.23.0 +DISTVERSION= 2.23.3 CATEGORIES= www graphics python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-nicegui/distinfo b/www/py-nicegui/distinfo index 685aece27ba5..4ab63ccd99a0 100644 --- a/www/py-nicegui/distinfo +++ b/www/py-nicegui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755889052 -SHA256 (nicegui-2.23.0.tar.gz) = 8180fcba79515fa14ce03977c31282aa17627822163d482f591020ff93b1efe0 -SIZE (nicegui-2.23.0.tar.gz) = 13108139 +TIMESTAMP = 1756499959 +SHA256 (nicegui-2.23.3.tar.gz) = 7fc99bc40d1682b37c54eda6275f77db863b9c7bcc7ad15006c507b69a30d22c +SIZE (nicegui-2.23.3.tar.gz) = 13108186 diff --git a/www/py-wsgidav/Makefile b/www/py-wsgidav/Makefile index 839c933ebc85..21b9489313a3 100644 --- a/www/py-wsgidav/Makefile +++ b/www/py-wsgidav/Makefile @@ -1,9 +1,9 @@ PORTNAME= WsgiDAV -DISTVERSION= 4.3.2 -PORTREVISION= 2 +DISTVERSION= 4.3.3 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME:tl}-${DISTVERSION} MAINTAINER= ultima@FreeBSD.org COMMENT= WSGI based WebDAV server for sharing resources @@ -21,13 +21,19 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}defusedxml>=0.5:devel/py-defusedxml@${PY_FLA ${PYTHON_PKGNAMEPREFIX}six>=1.12:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=2.10:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pyyaml>=3.2:devel/py-pyyaml@${PY_FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cheroot>=6.0:www/py-cheroot@${PY_FLAVOR} \ +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}CouchDB>=1.1:databases/py-couchdb@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cheroot>=6.0:www/py-cheroot@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pymongo>=3.13:databases/py-pymongo@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}mysqlclient>=2.2:databases/py-mysqlclient@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest>=2.7:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-cov>=1.8:devel/py-pytest-cov@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-html>=1.8:devel/py-pytest-html@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-pam>=1.8:security/py-python-pam@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}redis>=6.2:databases/py-redis@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tox>=2.0:devel/py-tox@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}webtest>=2.0:www/py-webtest@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}webtest>=2.0:www/py-webtest@${PY_FLAVOR} \ + mercurial>=0:devel/mercurial USES= python USE_PYTHON= distutils autoplist diff --git a/www/py-wsgidav/distinfo b/www/py-wsgidav/distinfo index 15316e92e385..2d99414ce925 100644 --- a/www/py-wsgidav/distinfo +++ b/www/py-wsgidav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1718387273 -SHA256 (WsgiDAV-4.3.2.tar.gz) = 4c3c24ac01b656a9edcb0014f31717ca8b9a3ec7d7cd9adc39d9ce1b00bfe759 -SIZE (WsgiDAV-4.3.2.tar.gz) = 167847 +TIMESTAMP = 1754464002 +SHA256 (wsgidav-4.3.3.tar.gz) = 5f0ad71bea72def3018b6ba52da3bcb83f61e0873c27225344582805d6e52b9e +SIZE (wsgidav-4.3.3.tar.gz) = 168118 diff --git a/www/py-yt-dlp/Makefile b/www/py-yt-dlp/Makefile index d39391dcb7a5..68c03806a0fe 100644 --- a/www/py-yt-dlp/Makefile +++ b/www/py-yt-dlp/Makefile @@ -1,5 +1,5 @@ PORTNAME= yt-dlp # www/py-yt-dlp is for extending yt-dlp, www/yt-dlp is an application for the end user -DISTVERSION= 2025.06.09 +DISTVERSION= 2025.08.27 CATEGORIES= www MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-yt-dlp/distinfo b/www/py-yt-dlp/distinfo index f251e6d60e99..ea73dbf540f6 100644 --- a/www/py-yt-dlp/distinfo +++ b/www/py-yt-dlp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749518944 -SHA256 (yt-dlp/2025.06.09/yt-dlp.tar.gz) = 46497ade23be173595d0bbdb41553873733696e0272fec5918cdcaebe17549aa -SIZE (yt-dlp/2025.06.09/yt-dlp.tar.gz) = 6025016 +TIMESTAMP = 1756373628 +SHA256 (yt-dlp/2025.08.27/yt-dlp.tar.gz) = a30442902fadf97280b91c24c4c2191c8ba17515b8a5dd835efc991c03b5bb7b +SIZE (yt-dlp/2025.08.27/yt-dlp.tar.gz) = 6018553 diff --git a/www/py-yt-dlp/pkg-plist b/www/py-yt-dlp/pkg-plist index d1fb5a3e94a3..72e34780a72c 100644 --- a/www/py-yt-dlp/pkg-plist +++ b/www/py-yt-dlp/pkg-plist @@ -81,7 +81,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/archiveorg.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/arcpublishing.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/ard.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/arkena.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/arnes.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/art19.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/arte.py @@ -101,7 +100,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/azmedien.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/baidu.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/banbye.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bandaichannel.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bandcamp.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bandlab.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bannedvideo.py @@ -111,7 +109,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/beatport.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/beeg.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/behindkink.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bellmedia.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/berufetv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bet.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bfi.py @@ -141,6 +138,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/breitbart.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/brightcove.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/brilliantpala.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/btvplus.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bundesliga.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bundestag.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/bunnycdn.py @@ -192,7 +190,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/cloudycdn.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/clubic.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/clyp.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/cmt.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/cnbc.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/cnn.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/comedycentral.py @@ -213,7 +210,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/crtvg.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/cspan.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/ctsnews.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/ctv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/ctvnews.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/cultureunplugged.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/curiositystream.py @@ -258,7 +254,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/duoplay.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/dvtv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/dw.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/eagleplatform.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/ebaumsworld.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/ebay.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/egghead.py @@ -291,6 +286,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/facebook.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/fancode.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/fathom.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/faulio.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/faz.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/fc2.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/fczenit.py @@ -419,11 +415,9 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jamendo.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/japandiet.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jeuxvideo.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jiocinema.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jiosaavn.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jixie.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/joj.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/joqrag.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jove.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jstream.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/jtbc.py @@ -469,7 +463,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/libsyn.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/lifenews.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/likee.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/limelight.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/linkedin.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/liputan6.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/listennotes.py @@ -498,6 +491,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/massengeschmacktv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/masters.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/matchtv.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mave.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mbn.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mdr.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/medaltv.py @@ -519,12 +513,14 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/microsoftstream.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/minds.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/minoto.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mir24tv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mirrativ.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mirrorcouk.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mit.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mitele.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mixch.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mixcloud.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mixlr.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mlb.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mlssoccer.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/mocha.py @@ -590,7 +586,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/noice.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/nonktube.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/noodlemagazine.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/noovo.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/nosnl.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/nova.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/novaplay.py @@ -659,9 +654,9 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/pinterest.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/piramidetv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/pixivsketch.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/pladform.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/planetmarathi.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/platzi.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/playerfm.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/playplustv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/playsuisse.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/playtvak.py @@ -669,6 +664,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/pluralsight.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/plutotv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/plvideo.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/plyr.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/podbayfm.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/podchaser.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/podomatic.py @@ -756,6 +752,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/saitosan.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/samplefocus.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sapo.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sauceplus.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sbs.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sbscokr.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/screen9.py @@ -779,6 +776,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sharepoint.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sharevideos.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/shemaroome.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/shiey.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/showroomlive.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sibnet.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/simplecast.py @@ -805,7 +803,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sovietscloset.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/spankbang.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/spiegel.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/spike.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sport5.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sportbox.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/sportdeutschland.py @@ -869,6 +866,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tf1.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tfo.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/theguardian.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/thehighwire.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/theholetv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/theintercept.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/theplatform.py @@ -898,7 +896,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/trueid.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/trunews.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/truth.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/trutv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tube8.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tubetugraz.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tubitv.py @@ -918,7 +915,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tver.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tvigle.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tviplayer.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tvland.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tvn24.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tvnoe.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/tvopengr.py @@ -941,6 +937,7 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/uliza.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/umg.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/unistra.py +%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/unitednations.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/unity.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/unsupported.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/uol.py @@ -956,7 +953,6 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/vbox7.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/veo.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/vesti.py -%%PYTHON_SITELIBDIR%%/yt_dlp/extractor/vevo.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/vgtv.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/vh1.py %%PYTHON_SITELIBDIR%%/yt_dlp/extractor/vice.py @@ -1103,6 +1099,8 @@ bin/yt-dlp-devel %%PYTHON_SITELIBDIR%%/yt_dlp/utils/_deprecated.py %%PYTHON_SITELIBDIR%%/yt_dlp/utils/_legacy.py %%PYTHON_SITELIBDIR%%/yt_dlp/utils/_utils.py +%%PYTHON_SITELIBDIR%%/yt_dlp/utils/jslib/__init__.py +%%PYTHON_SITELIBDIR%%/yt_dlp/utils/jslib/devalue.py %%PYTHON_SITELIBDIR%%/yt_dlp/utils/networking.py %%PYTHON_SITELIBDIR%%/yt_dlp/utils/progress.py %%PYTHON_SITELIBDIR%%/yt_dlp/utils/traversal.py diff --git a/www/qt5-webengine/Makefile b/www/qt5-webengine/Makefile index 1e7143faccb2..acaab60994f2 100644 --- a/www/qt5-webengine/Makefile +++ b/www/qt5-webengine/Makefile @@ -75,7 +75,7 @@ SNDIO_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-sndio # We pass `norecursive' to USES=qmake because src/plugins/plugins.pro checks # whether webenginewidgets is available, which fails when qmake processes all # .pro files at once. -USES= gl gnome gperf jpeg minizip ninja:build nodejs:build,lts \ +USES= gl gnome gperf jpeg minizip ninja:build \ perl5 pkgconfig python:build qmake:norecursive,outsource \ qt-dist:5,webengine shebangfix xorg USE_GL= gl @@ -117,7 +117,13 @@ MAKE_ENV+= CC="${CC}" CXX="${CXX}" \ QT_BINARIES= yes -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> + +.if ${ARCH:Mi386} +USES+= nodejs:build,20 +.else +USES+= nodejs:build,lts +.endif .if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} PLIST_SUB+= BE="" LE="@comment " @@ -177,4 +183,4 @@ post-install: ${BRANDELF} -t FreeBSD $$lib ; \ done -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/www/qt6-httpserver/distinfo b/www/qt6-httpserver/distinfo index 48782c3db88e..38c80b869b89 100644 --- a/www/qt6-httpserver/distinfo +++ b/www/qt6-httpserver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749162746 -SHA256 (KDE/Qt/6.9.1/qthttpserver-everywhere-src-6.9.1.tar.xz) = bfc7b511e2bbc365f11027ae8d7d2e33f3ff63591b866df9a880c51363f02b53 -SIZE (KDE/Qt/6.9.1/qthttpserver-everywhere-src-6.9.1.tar.xz) = 189852 +TIMESTAMP = 1756198097 +SHA256 (KDE/Qt/6.9.2/qthttpserver-everywhere-src-6.9.2.tar.xz) = 1343fa1d1d6dfda9b9de4a1ff36471b6ff4bd16f9ee7c19deb098c15e4714019 +SIZE (KDE/Qt/6.9.2/qthttpserver-everywhere-src-6.9.2.tar.xz) = 175292 diff --git a/www/qt6-webchannel/distinfo b/www/qt6-webchannel/distinfo index 4dcc026aaef9..0664bc0955ec 100644 --- a/www/qt6-webchannel/distinfo +++ b/www/qt6-webchannel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749159379 -SHA256 (KDE/Qt/6.9.1/qtwebchannel-everywhere-src-6.9.1.tar.xz) = 19b401d9210afc416c4080b189b0c9940e90d1f7444f5d046f3d8b1ab5fcf9c0 -SIZE (KDE/Qt/6.9.1/qtwebchannel-everywhere-src-6.9.1.tar.xz) = 209516 +TIMESTAMP = 1756198104 +SHA256 (KDE/Qt/6.9.2/qtwebchannel-everywhere-src-6.9.2.tar.xz) = 878a6337ad4d2c2a1de5bedb28c36b05b2733242d10f6c3d0eae55c5433c8e65 +SIZE (KDE/Qt/6.9.2/qtwebchannel-everywhere-src-6.9.2.tar.xz) = 193888 diff --git a/www/qt6-webengine/Makefile b/www/qt6-webengine/Makefile index e363ec6cf930..9939ff2dc4d5 100644 --- a/www/qt6-webengine/Makefile +++ b/www/qt6-webengine/Makefile @@ -12,22 +12,25 @@ PORTNAME?= webengine DISTVERSION= ${QT6_VERSION} -PORTREVISION?= 2 # Master port for print/qt7-pdf. Please keep this line. +# This is the parent port of print/qt6-pdf. Please always keep 'PORTREVISION?=' +# and reset the value to '0' only after increasing QT6_VERSION in Mk/Uses/qt.mk. +PORTREVISION?= 0 CATEGORIES?= www PKGNAMEPREFIX= qt6- MAINTAINER= kde@FreeBSD.org COMMENT?= Qt 6 library to render web content -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib@${PY_FLAVOR} \ - ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers +# 32-bit platforms are not supported by upstream, but we're limping them along. +ONLY_FOR_ARCHS= aarch64 amd64 armv7 i386 + +BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:graphics/vulkan-headers LIB_DEPENDS= libfreetype.so:print/freetype2 \ libnss3.so:security/nss \ libopenjp2.so:graphics/openjpeg \ libxkbcommon.so:x11/libxkbcommon -USES= bison cmake compiler:c++20-lang gl gperf \ - localbase:ldflags ninja:build nodejs:build,lts \ +USES= cmake compiler:c++20-lang gl localbase:ldflags ninja:build \ pkgconfig python:build qt-dist:6,webengine USE_GL= opengl USE_QT= base declarative tools @@ -45,7 +48,8 @@ CMAKE_OFF+= QT_FEATURE_qtwebengine_build SYS_LIBS= freetype .else -BUILD_DEPENDS+= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat +BUILD_DEPENDS+= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \ + ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib@${PY_FLAVOR} LIB_DEPENDS+= libabsl_base.so:devel/abseil \ libavcodec.so:multimedia/ffmpeg \ libdbus-1.so:devel/dbus \ @@ -68,7 +72,7 @@ LIB_DEPENDS+= libabsl_base.so:devel/abseil \ libvpx.so:multimedia/libvpx \ libwebp.so:graphics/webp -USES+= gnome jpeg minizip xorg +USES+= bison gnome gperf jpeg minizip xorg USE_GL+= gbm USE_QT+= positioning quick3d:build webchannel USE_GNOME+= glib20 libxml2 libxslt @@ -139,6 +143,16 @@ SNDIO_CMAKE_ON= -DQT_FEATURE_webengine_system_sndio:BOOL=ON SNDIO_CMAKE_OFF= -DQT_FEATURE_webengine_system_sndio:BOOL=OFF .endif +.include <bsd.port.options.mk> + +.if !defined(BUILD_QTPDF) +. if ${ARCH:Mi386} +USES+= nodejs:build,20 +. else +USES+= nodejs:build,lts +. endif +.endif + post-extract: @${MKDIR} ${WRKSRC}/src/3rdparty/chromium/media/audio/sndio \ ${WRKSRC}/src/3rdparty/chromium/sandbox/policy/freebsd \ diff --git a/www/qt6-webengine/distinfo b/www/qt6-webengine/distinfo index d4d0b5b8184a..1937cd5f2816 100644 --- a/www/qt6-webengine/distinfo +++ b/www/qt6-webengine/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749159742 -SHA256 (KDE/Qt/6.9.1/qtwebengine-everywhere-src-6.9.1.tar.xz) = 787dfde22b348f6d620f2207ed7e32ad0a5389373182614272de28ff3f91c26c -SIZE (KDE/Qt/6.9.1/qtwebengine-everywhere-src-6.9.1.tar.xz) = 672204388 +TIMESTAMP = 1756198709 +SHA256 (KDE/Qt/6.9.2/qtwebengine-everywhere-src-6.9.2.tar.xz) = 99cb0792abc2e39b299d73d8e2aa076b9ebcd55c3f4a4b5fd514eef5a62d03ab +SIZE (KDE/Qt/6.9.2/qtwebengine-everywhere-src-6.9.2.tar.xz) = 672191852 diff --git a/www/qt6-webengine/files/patch-cmake_Functions.cmake b/www/qt6-webengine/files/patch-cmake_Functions.cmake index 8264af9b3658..8bb309145150 100644 --- a/www/qt6-webengine/files/patch-cmake_Functions.cmake +++ b/www/qt6-webengine/files/patch-cmake_Functions.cmake @@ -1,4 +1,4 @@ ---- cmake/Functions.cmake.orig 2025-05-29 01:27:28 UTC +--- cmake/Functions.cmake.orig 2025-08-18 00:53:11 UTC +++ cmake/Functions.cmake @@ -103,7 +103,7 @@ function(add_linker_options target buildDir completeSt set(libs_rsp "${buildDir}/${ninjaTarget}_libs.rsp") @@ -9,7 +9,7 @@ get_gn_arch(cpu ${TEST_architecture_arch}) if(CMAKE_CROSSCOMPILING AND cpu STREQUAL "arm" AND ${config} STREQUAL "Debug") target_link_options(${cmakeTarget} PRIVATE "LINKER:--long-plt") -@@ -370,6 +370,20 @@ function(add_gn_build_artifacts_to_target) +@@ -373,6 +373,20 @@ function(add_gn_build_artifacts_to_target) set_target_properties(${arg_CMAKE_TARGET} PROPERTIES LINK_DEPENDS ${arg_BUILDDIR}/${config}/${arch}/${arg_NINJA_STAMP} ) diff --git a/www/qt6-webengine/files/patch-cmake_QtToolchainHelpers.cmake b/www/qt6-webengine/files/patch-cmake_QtToolchainHelpers.cmake index 4417cdb8a943..b732070f2d7e 100644 --- a/www/qt6-webengine/files/patch-cmake_QtToolchainHelpers.cmake +++ b/www/qt6-webengine/files/patch-cmake_QtToolchainHelpers.cmake @@ -1,4 +1,4 @@ ---- cmake/QtToolchainHelpers.cmake.orig 2025-05-29 01:27:28 UTC +--- cmake/QtToolchainHelpers.cmake.orig 2025-08-18 00:53:11 UTC +++ cmake/QtToolchainHelpers.cmake @@ -95,6 +95,8 @@ function(get_gn_os result) set(${result} "mac" PARENT_SCOPE) @@ -9,7 +9,7 @@ else() message(DEBUG "Unrecognized OS") endif() -@@ -310,7 +312,7 @@ macro(append_build_type_setup) +@@ -323,7 +325,7 @@ macro(append_build_type_setup) extend_gn_list(gnArgArg ARGS enable_precompiled_headers @@ -18,7 +18,7 @@ ) extend_gn_list(gnArgArg ARGS dcheck_always_on -@@ -402,7 +404,7 @@ macro(append_compiler_linker_sdk_setup) +@@ -415,7 +417,7 @@ macro(append_compiler_linker_sdk_setup) use_libcxx=true ) endif() @@ -27,7 +27,7 @@ extend_gn_list(gnArgArg ARGS use_libcxx CONDITION QT_FEATURE_stdlib_libcpp ) -@@ -443,7 +445,7 @@ macro(append_compiler_linker_sdk_setup) +@@ -456,7 +458,7 @@ macro(append_compiler_linker_sdk_setup) ) endif() get_gn_arch(cpu ${TEST_architecture_arch}) @@ -36,7 +36,7 @@ extend_gn_list_cflag(gnArgArg ARG arm_tune -@@ -548,7 +550,7 @@ macro(append_toolchain_setup) +@@ -561,7 +563,7 @@ macro(append_toolchain_setup) endif() unset(host_cpu) unset(target_cpu) diff --git a/www/qt6-webengine/files/patch-configure.cmake b/www/qt6-webengine/files/patch-configure.cmake index 5505a55e5e3c..b9217899f331 100644 --- a/www/qt6-webengine/files/patch-configure.cmake +++ b/www/qt6-webengine/files/patch-configure.cmake @@ -1,11 +1,11 @@ ---- configure.cmake.orig 2025-02-21 12:29:33 UTC +--- configure.cmake.orig 2025-08-18 00:53:11 UTC +++ configure.cmake -@@ -292,12 +292,12 @@ qt_webengine_configure_check("supported-platform" +@@ -291,12 +291,12 @@ qt_webengine_configure_check("supported-platform" qt_webengine_configure_check("supported-platform" MODULES QtWebEngine -- CONDITION LINUX OR (WIN32 AND NOT (WIN_ARM_64 AND DEFINED ENV{COIN_PLATFORM_ID})) OR MACOS -+ CONDITION LINUX OR (WIN32 AND NOT (WIN_ARM_64 AND DEFINED ENV{COIN_PLATFORM_ID})) OR MACOS OR FREEBSD +- CONDITION LINUX OR WIN32 OR MACOS ++ CONDITION LINUX OR WIN32 OR MACOS OR FREEBSD MESSAGE "Build can be done only on Linux, Windows or macOS." ) qt_webengine_configure_check("supported-platform" @@ -15,7 +15,7 @@ MESSAGE "Build can be done only on Linux, Windows, macO, iOS and Android." ) -@@ -317,15 +317,6 @@ qt_webengine_configure_check("static-build" +@@ -316,15 +316,6 @@ qt_webengine_configure_check("static-build" MESSAGE "Static build is not supported." ) @@ -31,7 +31,7 @@ qt_webengine_configure_check("python3" MODULES QtWebEngine QtPdf CONDITION Python3_FOUND -@@ -448,6 +439,8 @@ qt_webengine_configure_check("compiler" +@@ -455,6 +446,8 @@ qt_webengine_configure_check("compiler" CONDITION MSVC OR (LINUX AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") OR (LINUX AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR @@ -40,7 +40,7 @@ (MACOS AND CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") MESSAGE "${CMAKE_CXX_COMPILER_ID} compiler is not supported." -@@ -457,6 +450,8 @@ qt_webengine_configure_check("compiler" +@@ -464,6 +457,8 @@ qt_webengine_configure_check("compiler" CONDITION MSVC OR (LINUX AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") OR (LINUX AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR @@ -49,7 +49,7 @@ (APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") OR (ANDROID AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (MINGW AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") OR -@@ -709,7 +704,7 @@ qt_feature("webengine-ozone-x11" PRIVATE +@@ -725,7 +720,7 @@ qt_feature("webengine-ozone-x11" PRIVATE qt_feature("webengine-ozone-x11" PRIVATE LABEL "Support X11 on qpa-xcb" diff --git a/www/qt6-webengine/files/patch-security-rollup b/www/qt6-webengine/files/patch-security-rollup new file mode 100644 index 000000000000..8955c1fb52d9 --- /dev/null +++ b/www/qt6-webengine/files/patch-security-rollup @@ -0,0 +1,246 @@ +Security patches since 6.9.2 release + +CVE-2025-8879: Heap buffer overflow in libaom +CVE-2025-8880: Race in V8 +CVE-2025-8881: Inappropriate implementation in File Picker +CVE-2025-8901: Out of bounds write in ANGLE + +https://github.com/qt/qtwebengine-chromium/compare/136d7fe8aa41c9d4cd764a6b890af9699f5141dd..130-based.diff + +diff --git a/chromium/content/browser/web_contents/file_chooser_impl.cc b/chromium/content/browser/web_contents/file_chooser_impl.cc +index 7e2391bd1afd..d366c5d26bba 100644 +--- src/3rdparty/chromium/content/browser/web_contents/file_chooser_impl.cc ++++ src/3rdparty/chromium/content/browser/web_contents/file_chooser_impl.cc +@@ -169,6 +169,12 @@ void FileChooserImpl::OpenFileChooser(blink::mojom::FileChooserParamsPtr params, + return; + } + ++ // Do not allow open dialogs to have renderer-controlled default_file_name. ++ // See https://crbug.com/433800617 for context. ++ if (params->mode != blink::mojom::FileChooserParams::Mode::kSave) { ++ params->default_file_name = base::FilePath(); ++ } ++ + // Don't allow page with open FileChooser to enter BackForwardCache to avoid + // any unexpected behaviour from BackForwardCache. + BackForwardCache::DisableForRenderFrameHost( +diff --git a/chromium/media/audio/audio_input_device.cc b/chromium/media/audio/audio_input_device.cc +index a7d8e1098241..44abd451c397 100644 +--- src/3rdparty/chromium/media/audio/audio_input_device.cc ++++ src/3rdparty/chromium/media/audio/audio_input_device.cc +@@ -482,7 +482,7 @@ void AudioInputDevice::AudioThreadCallback::Process(uint32_t pending_data) { + const base::TimeTicks capture_time = + base::TimeTicks() + base::Microseconds(buffer->params.capture_time_us); + const base::TimeTicks now_time = base::TimeTicks::Now(); +- DCHECK_GE(now_time, capture_time); ++ // DCHECK_GE(now_time, capture_time); + + AudioGlitchInfo glitch_info{ + .duration = base::Microseconds(buffer->params.glitch_duration_us), +diff --git a/chromium/third_party/angle/src/compiler/translator/Compiler.cpp b/chromium/third_party/angle/src/compiler/translator/Compiler.cpp +index 107f61cf4603..04b698b7fc08 100644 +--- src/3rdparty/chromium/third_party/angle/src/compiler/translator/Compiler.cpp ++++ src/3rdparty/chromium/third_party/angle/src/compiler/translator/Compiler.cpp +@@ -775,24 +775,6 @@ bool TCompiler::checkAndSimplifyAST(TIntermBlock *root, + return false; + } + +- // For now, rewrite pixel local storage before collecting variables or any operations on images. +- // +- // TODO(anglebug.com/40096838): +- // Should this actually run after collecting variables? +- // Do we need more introspection? +- // Do we want to hide rewritten shader image uniforms from glGetActiveUniform? +- if (hasPixelLocalStorageUniforms()) +- { +- ASSERT( +- IsExtensionEnabled(mExtensionBehavior, TExtension::ANGLE_shader_pixel_local_storage)); +- if (!RewritePixelLocalStorage(this, root, getSymbolTable(), compileOptions, +- getShaderVersion())) +- { +- mDiagnostics.globalError("internal compiler error translating pixel local storage"); +- return false; +- } +- } +- + if (shouldRunLoopAndIndexingValidation(compileOptions) && + !ValidateLimitations(root, mShaderType, &mSymbolTable, &mDiagnostics)) + { +@@ -939,6 +921,24 @@ bool TCompiler::checkAndSimplifyAST(TIntermBlock *root, + return false; + } + ++ // For now, rewrite pixel local storage before collecting variables or any operations on images. ++ // ++ // TODO(anglebug.com/40096838): ++ // Should this actually run after collecting variables? ++ // Do we need more introspection? ++ // Do we want to hide rewritten shader image uniforms from glGetActiveUniform? ++ if (hasPixelLocalStorageUniforms()) ++ { ++ ASSERT( ++ IsExtensionEnabled(mExtensionBehavior, TExtension::ANGLE_shader_pixel_local_storage)); ++ if (!RewritePixelLocalStorage(this, root, getSymbolTable(), compileOptions, ++ getShaderVersion())) ++ { ++ mDiagnostics.globalError("internal compiler error translating pixel local storage"); ++ return false; ++ } ++ } ++ + // Clamping uniform array bounds needs to happen after validateLimitations pass. + if (compileOptions.clampIndirectArrayBounds) + { +diff --git a/chromium/third_party/angle/src/compiler/translator/ValidateOutputs.cpp b/chromium/third_party/angle/src/compiler/translator/ValidateOutputs.cpp +index 927783db73f6..d3481f1a4d1f 100644 +--- src/3rdparty/chromium/third_party/angle/src/compiler/translator/ValidateOutputs.cpp ++++ src/3rdparty/chromium/third_party/angle/src/compiler/translator/ValidateOutputs.cpp +@@ -72,15 +72,19 @@ ValidateOutputsTraverser::ValidateOutputsTraverser(const TExtensionBehavior &ext + void ValidateOutputsTraverser::visitSymbol(TIntermSymbol *symbol) + { + if (symbol->variable().symbolType() == SymbolType::Empty) ++ { + return; ++ } + + if (mVisitedSymbols.count(symbol->uniqueId().get()) == 1) ++ { + return; ++ } + + mVisitedSymbols.insert(symbol->uniqueId().get()); + + TQualifier qualifier = symbol->getQualifier(); +- if (qualifier == EvqFragmentOut) ++ if (qualifier == EvqFragmentOut || qualifier == EvqFragmentInOut) + { + const TLayoutQualifier &layoutQualifier = symbol->getType().getLayoutQualifier(); + if (layoutQualifier.location != -1) +diff --git a/chromium/third_party/blink/public/mojom/choosers/file_chooser.mojom b/chromium/third_party/blink/public/mojom/choosers/file_chooser.mojom +index 22ccb9cc709f..f323fa2aa2eb 100644 +--- src/3rdparty/chromium/third_party/blink/public/mojom/choosers/file_chooser.mojom ++++ src/3rdparty/chromium/third_party/blink/public/mojom/choosers/file_chooser.mojom +@@ -25,7 +25,7 @@ struct FileChooserParams { + kUploadFolder, + + // Allows picking a nonexistent file, and prompts to overwrite if the file +- // already exists. This is not for Blink but for PPAPI. ++ // already exists. + kSave, + }; + Mode mode = kOpen; +@@ -34,7 +34,8 @@ struct FileChooserParams { + // which will be either "Open" or "Save" depending on the mode. + mojo_base.mojom.String16 title; + +- // Default file name to select in the dialog with kSave mode. ++ // Default file name to select in the dialog with kSave mode. This value ++ // is cleared if mode is not kSave. + mojo_base.mojom.FilePath default_file_name; + + // |selected_files| has filenames which a file upload control already +diff --git a/chromium/third_party/libaom/source/libaom/av1/encoder/ratectrl.c b/chromium/third_party/libaom/source/libaom/av1/encoder/ratectrl.c +index 4fd5ec6bf54b..82a48c39cb10 100644 +--- src/3rdparty/chromium/third_party/libaom/source/libaom/av1/encoder/ratectrl.c ++++ src/3rdparty/chromium/third_party/libaom/source/libaom/av1/encoder/ratectrl.c +@@ -3236,8 +3236,9 @@ static void rc_scene_detection_onepass_rt(AV1_COMP *cpi, + // non-zero sad exists along bottom border even though source is static. + const int border = + rc->prev_frame_is_dropped || cpi->svc.number_temporal_layers > 1; +- // Store blkwise SAD for later use +- if (width == cm->render_width && height == cm->render_height) { ++ // Store blkwise SAD for later use. Disable for spatial layers for now. ++ if (width == cm->render_width && height == cm->render_height && ++ cpi->svc.number_spatial_layers == 1) { + if (cpi->src_sad_blk_64x64 == NULL) { + CHECK_MEM_ERROR(cm, cpi->src_sad_blk_64x64, + (uint64_t *)aom_calloc(sb_cols * sb_rows, +diff --git a/chromium/v8/src/wasm/streaming-decoder.cc b/chromium/v8/src/wasm/streaming-decoder.cc +index f3745b4c055a..ce5dad96d52f 100644 +--- src/3rdparty/chromium/v8/src/wasm/streaming-decoder.cc ++++ src/3rdparty/chromium/v8/src/wasm/streaming-decoder.cc +@@ -230,45 +230,61 @@ class V8_EXPORT_PRIVATE AsyncStreamingDecoder : public StreamingDecoder { + }; + + void AsyncStreamingDecoder::OnBytesReceived(base::Vector<const uint8_t> bytes) { +- DCHECK(!full_wire_bytes_.empty()); ++ TRACE_STREAMING("OnBytesReceived(%zu bytes)\n", bytes.size()); ++ ++ // Note: The bytes are passed by the embedder, and they might point into the ++ // sandbox. Hence we copy them once and then process those copied bytes, to ++ // avoid being vulnerable to concurrent modification. ++ // Since we might not be able to store the bytes contiguously in memory, ++ // remember up to two byte vectors to process after copying. ++ base::Vector<const uint8_t> copied_bytes[2] = {{}, {}}; ++ + // Fill the previous vector, growing up to 16kB. After that, allocate new + // vectors on overflow. ++ DCHECK(!full_wire_bytes_.empty()); ++ std::vector<uint8_t>* last_wire_byte_vector = &full_wire_bytes_.back(); ++ size_t existing_vector_size = last_wire_byte_vector->size(); + size_t remaining_capacity = +- std::max(full_wire_bytes_.back().capacity(), size_t{16} * KB) - +- full_wire_bytes_.back().size(); ++ std::max(last_wire_byte_vector->capacity(), size_t{16} * KB) - ++ existing_vector_size; + size_t bytes_for_existing_vector = std::min(remaining_capacity, bytes.size()); +- full_wire_bytes_.back().insert(full_wire_bytes_.back().end(), bytes.data(), +- bytes.data() + bytes_for_existing_vector); ++ last_wire_byte_vector->insert(last_wire_byte_vector->end(), bytes.data(), ++ bytes.data() + bytes_for_existing_vector); ++ copied_bytes[0] = ++ base::VectorOf(last_wire_byte_vector->data() + existing_vector_size, ++ bytes_for_existing_vector); + if (bytes.size() > bytes_for_existing_vector) { + // The previous vector's capacity is not enough to hold all new bytes, and + // it's bigger than 16kB, so expensive to copy. Allocate a new vector for + // the remaining bytes, growing exponentially. + size_t new_capacity = std::max(bytes.size() - bytes_for_existing_vector, +- 2 * full_wire_bytes_.back().capacity()); ++ 2 * last_wire_byte_vector->capacity()); + full_wire_bytes_.emplace_back(); +- full_wire_bytes_.back().reserve(new_capacity); +- full_wire_bytes_.back().insert(full_wire_bytes_.back().end(), +- bytes.data() + bytes_for_existing_vector, +- bytes.end()); ++ last_wire_byte_vector = &full_wire_bytes_.back(); ++ last_wire_byte_vector->reserve(new_capacity); ++ last_wire_byte_vector->insert(last_wire_byte_vector->end(), ++ bytes.data() + bytes_for_existing_vector, ++ bytes.end()); ++ copied_bytes[1] = base::VectorOf(*last_wire_byte_vector); + } ++ // Do not access `bytes` any more after copying. ++ DCHECK_EQ(bytes.size(), copied_bytes[0].size() + copied_bytes[1].size()); ++ bytes = {}; + + if (deserializing()) return; + +- TRACE_STREAMING("OnBytesReceived(%zu bytes)\n", bytes.size()); +- +- size_t current = 0; +- while (ok() && current < bytes.size()) { +- size_t num_bytes = +- state_->ReadBytes(this, bytes.SubVector(current, bytes.size())); +- current += num_bytes; +- module_offset_ += num_bytes; +- if (state_->offset() == state_->buffer().size()) { +- state_ = state_->Next(this); ++ for (base::Vector<const uint8_t> vec : copied_bytes) { ++ size_t current = 0; ++ while (ok() && current < vec.size()) { ++ size_t num_bytes = state_->ReadBytes(this, vec.SubVectorFrom(current)); ++ current += num_bytes; ++ module_offset_ += num_bytes; ++ if (state_->offset() == state_->buffer().size()) { ++ state_ = state_->Next(this); ++ } + } + } +- if (ok()) { +- processor_->OnFinishedChunk(); +- } ++ if (ok()) processor_->OnFinishedChunk(); + } + + size_t AsyncStreamingDecoder::DecodingState::ReadBytes( diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_chrome_browser_ui_webui_signin_profile__picker__handler.cc b/www/qt6-webengine/files/patch-src_3rdparty_chromium_chrome_browser_ui_webui_signin_profile__picker__handler.cc index 36e6cd423191..f4c2e1339c83 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_chrome_browser_ui_webui_signin_profile__picker__handler.cc +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_chrome_browser_ui_webui_signin_profile__picker__handler.cc @@ -1,4 +1,4 @@ ---- src/3rdparty/chromium/chrome/browser/ui/webui/signin/profile_picker_handler.cc.orig 2024-10-22 08:31:56 UTC +--- src/3rdparty/chromium/chrome/browser/ui/webui/signin/profile_picker_handler.cc.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/chrome/browser/ui/webui/signin/profile_picker_handler.cc @@ -209,7 +209,7 @@ base::Value::Dict CreateProfileEntry(const ProfileAttr @@ -9,7 +9,7 @@ } else if (base::FeatureList::IsEnabled( supervised_user::kShowKiteForSupervisedUsers) && entry->IsSupervised()) { -@@ -1224,7 +1224,7 @@ void ProfilePickerHandler::BeginFirstWebContentsProfil +@@ -1222,7 +1222,7 @@ void ProfilePickerHandler::MaybeUpdateGuestMode() { } void ProfilePickerHandler::MaybeUpdateGuestMode() { diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_gpu_ipc_service_gpu__init.cc b/www/qt6-webengine/files/patch-src_3rdparty_chromium_gpu_ipc_service_gpu__init.cc index ac3ee9a58d74..a5c5e3cf4a66 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_gpu_ipc_service_gpu__init.cc +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_gpu_ipc_service_gpu__init.cc @@ -1,6 +1,6 @@ ---- src/3rdparty/chromium/gpu/ipc/service/gpu_init.cc.orig 2025-02-21 12:29:33 UTC +--- src/3rdparty/chromium/gpu/ipc/service/gpu_init.cc.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/gpu/ipc/service/gpu_init.cc -@@ -403,7 +403,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL +@@ -401,7 +401,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL enable_watchdog = false; #endif @@ -9,7 +9,7 @@ bool gpu_sandbox_start_early = gpu_preferences_.gpu_sandbox_start_early; #else // !(BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)) // For some reasons MacOSX's VideoToolbox might crash when called after -@@ -440,7 +440,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL +@@ -438,7 +438,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL } bool attempted_startsandbox = false; @@ -18,7 +18,7 @@ // On Chrome OS ARM Mali, GPU driver userspace creates threads when // initializing a GL context, so start the sandbox early. // TODO(zmo): Need to collect OS version before this. -@@ -544,7 +544,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL +@@ -542,7 +542,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL gpu_preferences_.gr_context_type = GrContextType::kGL; } @@ -27,7 +27,7 @@ // The ContentSandboxHelper is currently the only one implementation of // GpuSandboxHelper and it has no dependency. Except on Linux where // VaapiWrapper checks the GL implementation to determine which display -@@ -626,7 +626,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL +@@ -624,7 +624,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL command_line, gpu_feature_info_, gpu_preferences_.disable_software_rasterizer, false); if (gl_use_swiftshader_) { @@ -36,7 +36,7 @@ VLOG(1) << "Quit GPU process launch to fallback to SwiftShader cleanly " << "on Linux"; return false; -@@ -777,7 +777,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL +@@ -775,7 +775,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL InitializePlatformOverlaySettings(&gpu_info_, gpu_feature_info_); @@ -45,7 +45,7 @@ // Driver may create a compatibility profile context when collect graphics // information on Linux platform. Try to collect graphics information // based on core profile context after disabling platform extensions. -@@ -832,7 +832,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL +@@ -830,7 +830,7 @@ bool GpuInit::InitializeAndStartSandbox(base::CommandL } } } @@ -54,7 +54,7 @@ (BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_CHROMEOS_DEVICE)) if (!gl_disabled && !gl_use_swiftshader_ && std::getenv("RUNNING_UNDER_RR")) { // https://rr-project.org/ is a Linux-only record-and-replay debugger that -@@ -1017,7 +1017,7 @@ void GpuInit::InitializeInProcess(base::CommandLine* c +@@ -1015,7 +1015,7 @@ void GpuInit::InitializeInProcess(base::CommandLine* c } bool gl_disabled = gl::GetGLImplementation() == gl::kGLImplementationDisabled; @@ -63,7 +63,7 @@ (BUILDFLAG(IS_CHROMEOS) && !BUILDFLAG(IS_CHROMEOS_DEVICE)) if (!gl_disabled && !gl_use_swiftshader_ && std::getenv("RUNNING_UNDER_RR")) { // https://rr-project.org/ is a Linux-only record-and-replay debugger that -@@ -1078,7 +1078,7 @@ void GpuInit::InitializeInProcess(base::CommandLine* c +@@ -1076,7 +1076,7 @@ void GpuInit::InitializeInProcess(base::CommandLine* c } } diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_build_scripts_gperf.py b/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_build_scripts_gperf.py deleted file mode 100644 index d42d489f943d..000000000000 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_build_scripts_gperf.py +++ /dev/null @@ -1,27 +0,0 @@ ---- src/3rdparty/chromium/third_party/blink/renderer/build/scripts/gperf.py.orig 2025-03-29 00:50:57 UTC -+++ src/3rdparty/chromium/third_party/blink/renderer/build/scripts/gperf.py -@@ -28,24 +28,6 @@ def generate_gperf(gperf_path, gperf_input, gperf_args - stdout=subprocess.PIPE, - universal_newlines=True) - gperf_output = gperf.communicate(gperf_input)[0] -- # Massage gperf output to be more palatable for modern compilers. -- # TODO(thakis): Upstream these to gperf so we don't need massaging. -- # `register` is deprecated in C++11 and removed in C++17, so remove -- # it from gperf's output. -- # https://savannah.gnu.org/bugs/index.php?53028 -- gperf_output = re.sub(r'\bregister ', '', gperf_output) -- # -Wimplicit-fallthrough needs an explicit fallthrough statement, -- # so replace gperf's /*FALLTHROUGH*/ comment with the statement. -- # https://savannah.gnu.org/bugs/index.php?53029 -- gperf_output = gperf_output.replace('/*FALLTHROUGH*/', -- ' [[fallthrough]];') -- # -Wpointer-to-int-cast warns about casting pointers to smaller ints -- # Replace {(int)(long)&(foo), bar} with -- # {static_cast<int>(reinterpret_cast<uintptr_t>(&(foo)), bar} -- gperf_output = re.sub( -- r'\(int\)\(long\)(.*?),', -- r'static_cast<int>(reinterpret_cast<uintptr_t>(\1)),', -- gperf_output) - script = 'third_party/blink/renderer/build/scripts/gperf.py' - return '// Generated by %s\n' % script + gperf_output - except OSError: diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_platform_runtime__enabled__features.json5 b/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_platform_runtime__enabled__features.json5 index 04a903bd35f2..b3b99e8e202e 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_platform_runtime__enabled__features.json5 +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_third__party_blink_renderer_platform_runtime__enabled__features.json5 @@ -1,4 +1,4 @@ ---- src/3rdparty/chromium/third_party/blink/renderer/platform/runtime_enabled_features.json5.orig 2025-02-21 12:29:33 UTC +--- src/3rdparty/chromium/third_party/blink/renderer/platform/runtime_enabled_features.json5.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/third_party/blink/renderer/platform/runtime_enabled_features.json5 @@ -384,7 +384,7 @@ name: "AppTitle", @@ -36,7 +36,7 @@ status: "stable", public: true, base_feature: "none", -@@ -4313,7 +4313,7 @@ +@@ -4320,7 +4320,7 @@ name: "UnrestrictedSharedArrayBuffer", base_feature: "none", origin_trial_feature_name: "UnrestrictedSharedArrayBuffer", @@ -45,7 +45,7 @@ }, // Enables using policy-controlled feature "usb-unrestricted" to allow // isolated context to access protected USB interface classes and to -@@ -4460,7 +4460,7 @@ +@@ -4467,7 +4467,7 @@ { name: "WebAppScopeExtensions", origin_trial_feature_name: "WebAppScopeExtensions", @@ -54,7 +54,7 @@ status: "experimental", base_feature: "none", }, -@@ -4503,7 +4503,7 @@ +@@ -4510,7 +4510,7 @@ status: "experimental", base_feature: "none", origin_trial_feature_name: "WebAppUrlHandling", diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_dragdrop_os__exchange__data__provider__non__backed.cc b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_dragdrop_os__exchange__data__provider__non__backed.cc index 9008177cfd17..577dde022f49 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_dragdrop_os__exchange__data__provider__non__backed.cc +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_dragdrop_os__exchange__data__provider__non__backed.cc @@ -1,6 +1,6 @@ ---- src/3rdparty/chromium/ui/base/dragdrop/os_exchange_data_provider_non_backed.cc.orig 2024-04-19 13:02:56 UTC +--- src/3rdparty/chromium/ui/base/dragdrop/os_exchange_data_provider_non_backed.cc.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/ui/base/dragdrop/os_exchange_data_provider_non_backed.cc -@@ -99,7 +99,7 @@ void OSExchangeDataProviderNonBacked::SetPickledData( +@@ -101,7 +101,7 @@ std::optional<std::u16string> OSExchangeDataProviderNo std::optional<std::u16string> OSExchangeDataProviderNonBacked::GetString() const { diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.cc b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.cc index 05f2a3caf372..38b6dcc88c83 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.cc +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.cc @@ -1,4 +1,4 @@ ---- src/3rdparty/chromium/ui/base/ui_base_features.cc.orig 2025-02-21 12:29:33 UTC +--- src/3rdparty/chromium/ui/base/ui_base_features.cc.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/ui/base/ui_base_features.cc @@ -165,7 +165,7 @@ BASE_FEATURE(kWaylandTextInputV3, base::FEATURE_DISABLED_BY_DEFAULT); @@ -18,7 +18,7 @@ (BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS_ASH) && \ !BUILDFLAG(IS_CHROMEOS_LACROS)) BASE_FEATURE(kExperimentalFlingAnimation, -@@ -385,7 +385,7 @@ bool IsForcedColorsEnabled() { +@@ -389,7 +389,7 @@ bool IsForcedColorsEnabled() { // and Linux. This feature will be released for other platforms in later // milestones. #if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX) || \ diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.h b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.h index 2aca842bce0d..0cdc36728a12 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.h +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_base_ui__base__features.h @@ -1,6 +1,6 @@ ---- src/3rdparty/chromium/ui/base/ui_base_features.h.orig 2025-02-21 12:29:33 UTC +--- src/3rdparty/chromium/ui/base/ui_base_features.h.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/ui/base/ui_base_features.h -@@ -143,7 +143,7 @@ BASE_DECLARE_FEATURE(kWaylandTextInputV3); +@@ -146,7 +146,7 @@ BASE_DECLARE_FEATURE(kWaylandTextInputV3); BASE_DECLARE_FEATURE(kWaylandTextInputV3); #endif // BUILDFLAG(IS_OZONE) diff --git a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_gfx_linux_gbm__wrapper.cc b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_gfx_linux_gbm__wrapper.cc index 2a4d92824384..b48a98195aeb 100644 --- a/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_gfx_linux_gbm__wrapper.cc +++ b/www/qt6-webengine/files/patch-src_3rdparty_chromium_ui_gfx_linux_gbm__wrapper.cc @@ -1,6 +1,6 @@ ---- src/3rdparty/chromium/ui/gfx/linux/gbm_wrapper.cc.orig 2024-09-30 07:45:04 UTC +--- src/3rdparty/chromium/ui/gfx/linux/gbm_wrapper.cc.orig 2025-08-18 00:53:11 UTC +++ src/3rdparty/chromium/ui/gfx/linux/gbm_wrapper.cc -@@ -319,7 +319,7 @@ class Device final : public ui::GbmDevice { +@@ -331,7 +331,7 @@ class Device final : public ui::GbmDevice { // of 1x1 BOs which are destroyed before creating the final BO creation used // to instantiate the returned GbmBuffer. gfx::Size size_for_verification = diff --git a/www/qt6-webengine/files/patch-src_core_CMakeLists.txt b/www/qt6-webengine/files/patch-src_core_CMakeLists.txt index 4c6f56a2e4e2..f04b00dfc8d5 100644 --- a/www/qt6-webengine/files/patch-src_core_CMakeLists.txt +++ b/www/qt6-webengine/files/patch-src_core_CMakeLists.txt @@ -1,4 +1,4 @@ ---- src/core/CMakeLists.txt.orig 2025-03-09 19:36:47 UTC +--- src/core/CMakeLists.txt.orig 2025-08-18 00:53:11 UTC +++ src/core/CMakeLists.txt @@ -21,7 +21,7 @@ add_subdirectory(tools/qwebengine_convert_dict) # TOOLCHAIN SETUP @@ -9,7 +9,7 @@ setup_toolchains() endif() -@@ -200,7 +200,7 @@ foreach(arch ${archs}) +@@ -205,7 +205,7 @@ foreach(arch ${archs}) accessibility_activation_observer.cpp accessibility_activation_observer.h ) @@ -18,7 +18,7 @@ SOURCES ozone/gl_ozone_angle_qt.cpp ozone/gl_ozone_angle_qt.h ozone/ozone_util_qt.cpp ozone/ozone_util_qt.h -@@ -208,17 +208,17 @@ foreach(arch ${archs}) +@@ -213,17 +213,17 @@ foreach(arch ${archs}) ozone/surface_factory_qt.cpp ozone/surface_factory_qt.h ) @@ -39,7 +39,7 @@ SOURCES ozone/egl_helper.cpp ozone/egl_helper.h ) -@@ -438,7 +438,7 @@ foreach(arch ${archs}) +@@ -443,7 +443,7 @@ foreach(arch ${archs}) CONDITION QT_FEATURE_webenginedriver ) @@ -48,7 +48,7 @@ list(APPEND gnArgArg angle_enable_gl=true use_gtk=false # GTK toolkit bindings -@@ -505,6 +505,10 @@ foreach(arch ${archs}) +@@ -510,6 +510,10 @@ foreach(arch ${archs}) extend_gn_list(gnArgArg ARGS use_pulseaudio CONDITION QT_FEATURE_webengine_system_pulseaudio diff --git a/www/qt6-webengine/files/patch-src_core_api_configure.cmake b/www/qt6-webengine/files/patch-src_core_api_configure.cmake index 05e20daffc73..3988f9c60e8f 100644 --- a/www/qt6-webengine/files/patch-src_core_api_configure.cmake +++ b/www/qt6-webengine/files/patch-src_core_api_configure.cmake @@ -1,4 +1,4 @@ ---- src/core/api/configure.cmake.orig 2025-02-21 12:29:33 UTC +--- src/core/api/configure.cmake.orig 2025-08-18 00:53:11 UTC +++ src/core/api/configure.cmake @@ -10,6 +10,7 @@ if(NOT QT_CONFIGURE_RUNNING) if(PkgConfig_FOUND AND QT_FEATURE_pkg_config) @@ -8,7 +8,7 @@ pkg_check_modules(XDAMAGE xdamage) pkg_check_modules(GBM gbm) pkg_check_modules(LIBVA libva>=1.14) -@@ -76,6 +77,11 @@ qt_feature("webengine-printing-and-pdf" PRIVATE +@@ -90,6 +91,11 @@ qt_feature("webengine-printing-and-pdf" PRIVATE AUTODETECT NOT QT_FEATURE_webengine_embedded_build CONDITION TARGET Qt::PrintSupport AND QT_FEATURE_printer ) @@ -20,7 +20,7 @@ qt_feature("webengine-pepper-plugins" PRIVATE LABEL "Pepper Plugins" PURPOSE "Enables use of Pepper plugins." -@@ -157,7 +163,7 @@ qt_feature("webengine-vaapi" PRIVATE +@@ -171,7 +177,7 @@ qt_feature("webengine-vaapi" PRIVATE PURPOSE "Enables support for VA-API hardware acceleration" AUTODETECT GBM_FOUND AND LIBVA_FOUND AND QT_FEATURE_vulkan # hardware accelerated encoding requires bundled libvpx @@ -29,7 +29,7 @@ ) list(LENGTH CMAKE_OSX_ARCHITECTURES osx_arch_count) qt_feature("webenginedriver" PUBLIC -@@ -196,15 +202,19 @@ qt_configure_add_summary_entry( +@@ -214,15 +220,19 @@ qt_configure_add_summary_entry( ) qt_configure_add_summary_entry( ARGS "webengine-vaapi" diff --git a/www/qt6-webengine/files/patch-src_core_compositor_native__skia__output__device__opengl.cpp b/www/qt6-webengine/files/patch-src_core_compositor_native__skia__output__device__opengl.cpp index 079bb283b405..07a5f9437eea 100644 --- a/www/qt6-webengine/files/patch-src_core_compositor_native__skia__output__device__opengl.cpp +++ b/www/qt6-webengine/files/patch-src_core_compositor_native__skia__output__device__opengl.cpp @@ -1,6 +1,6 @@ ---- src/core/compositor/native_skia_output_device_opengl.cpp.orig 2025-03-09 19:36:47 UTC +--- src/core/compositor/native_skia_output_device_opengl.cpp.orig 2025-08-18 00:53:11 UTC +++ src/core/compositor/native_skia_output_device_opengl.cpp -@@ -247,7 +247,7 @@ QSGTexture *NativeSkiaOutputDeviceOpenGL::texture(QQui +@@ -248,7 +248,7 @@ QSGTexture *NativeSkiaOutputDeviceOpenGL::texture(QQui EGL_LINUX_DRM_FOURCC_EXT, drmFormat, EGL_DMA_BUF_PLANE0_FD_EXT, scopedFd.get(), EGL_DMA_BUF_PLANE0_OFFSET_EXT, static_cast<EGLAttrib>(nativePixmap->GetDmaBufOffset(0)), diff --git a/www/qt6-websockets/distinfo b/www/qt6-websockets/distinfo index 821443cc1d80..2856471e5674 100644 --- a/www/qt6-websockets/distinfo +++ b/www/qt6-websockets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749159745 -SHA256 (KDE/Qt/6.9.1/qtwebsockets-everywhere-src-6.9.1.tar.xz) = 98be8c863b7f02cc98eedc0b6eac07544c10a9d2fa11c685fd61f6b243f748f5 -SIZE (KDE/Qt/6.9.1/qtwebsockets-everywhere-src-6.9.1.tar.xz) = 462284 +TIMESTAMP = 1756198713 +SHA256 (KDE/Qt/6.9.2/qtwebsockets-everywhere-src-6.9.2.tar.xz) = be833f667ed8d6c2f41c0b9d1f8addf20b8d2b11c3a9466ec6d70c62121708ee +SIZE (KDE/Qt/6.9.2/qtwebsockets-everywhere-src-6.9.2.tar.xz) = 447432 diff --git a/www/qt6-webview/distinfo b/www/qt6-webview/distinfo index 64a0a82d21c9..a623e0ab91f3 100644 --- a/www/qt6-webview/distinfo +++ b/www/qt6-webview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749159748 -SHA256 (KDE/Qt/6.9.1/qtwebview-everywhere-src-6.9.1.tar.xz) = c29ad4fbb8f7a2042c4941bef88bb13bd04757eed94d6937ae69e0e4ea0d59a5 -SIZE (KDE/Qt/6.9.1/qtwebview-everywhere-src-6.9.1.tar.xz) = 141260 +TIMESTAMP = 1756198717 +SHA256 (KDE/Qt/6.9.2/qtwebview-everywhere-src-6.9.2.tar.xz) = 4ccfd14ae68222d5709e54c970da51d7f0b4cf58af045a96935dfcc34f1b1ff1 +SIZE (KDE/Qt/6.9.2/qtwebview-everywhere-src-6.9.2.tar.xz) = 125560 diff --git a/www/tor-browser/Makefile b/www/tor-browser/Makefile index f99e3cb04891..ff5bf958f8a6 100644 --- a/www/tor-browser/Makefile +++ b/www/tor-browser/Makefile @@ -1,5 +1,6 @@ PORTNAME= tor-browser DISTVERSION= 15.0a1 +PORTREVISION= 1 CATEGORIES= www net security wayland TAG_BASE= 96a559c7c1f7b9231db2b5cece7ecae980ae835d TAG_TOR= 3becb908fbf68aa77accc1f2e03e2c29f4fe40e2 diff --git a/www/ungoogled-chromium/files/patch-net_dns_BUILD.gn b/www/ungoogled-chromium/files/patch-net_dns_BUILD.gn index 6646c9edc97b..e1fd322aea84 100644 --- a/www/ungoogled-chromium/files/patch-net_dns_BUILD.gn +++ b/www/ungoogled-chromium/files/patch-net_dns_BUILD.gn @@ -1,6 +1,6 @@ ---- net/dns/BUILD.gn.orig 2025-02-20 09:59:21 UTC +--- net/dns/BUILD.gn.orig 2025-03-29 00:50:57 UTC +++ net/dns/BUILD.gn -@@ -140,7 +140,7 @@ source_set("dns") { +@@ -138,7 +138,7 @@ source_set("dns") { "dns_config_service_android.cc", "dns_config_service_android.h", ] @@ -9,7 +9,17 @@ sources += [ "dns_config_service_linux.cc", "dns_config_service_linux.h", -@@ -181,6 +181,7 @@ source_set("dns") { +@@ -172,6 +172,9 @@ source_set("dns") { + } + + deps = [ "//net:net_deps" ] ++ if (is_bsd) { ++ deps += [ "//services/screen_ai/buildflags" ] ++ } + + public_deps = [ + ":dns_client", +@@ -179,6 +182,7 @@ source_set("dns") { ":host_resolver_manager", ":mdns_client", "//net:net_public_deps", @@ -17,7 +27,7 @@ ] allow_circular_includes_from = [ -@@ -450,9 +451,9 @@ source_set("tests") { +@@ -447,9 +451,9 @@ source_set("tests") { if (is_android) { sources += [ "dns_config_service_android_unittest.cc" ] diff --git a/www/waterfox/Makefile b/www/waterfox/Makefile index d4cd473ff1ef..b7679d220de8 100644 --- a/www/waterfox/Makefile +++ b/www/waterfox/Makefile @@ -1,5 +1,6 @@ PORTNAME= waterfox DISTVERSION= 6.6.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www diff --git a/www/wslay/Makefile b/www/wslay/Makefile index dbac3828d03d..8646a926c82a 100644 --- a/www/wslay/Makefile +++ b/www/wslay/Makefile @@ -2,6 +2,7 @@ PORTNAME= wslay DISTVERSIONPREFIX= release- DISTVERSION= 1.1.1-22 DISTVERSIONSUFFIX= -g45d2258 +PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= yuri@FreeBSD.org @@ -23,4 +24,7 @@ CMAKE_OFF= WSLAY_STATIC CMAKE_TESTING_ON= WSLAY_TESTS +post-extract: + ${CP} ${FILESDIR}/wslay.pc.cmake.in ${WRKSRC} + .include <bsd.port.mk> diff --git a/www/wslay/files/patch-CMakeLists.txt b/www/wslay/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..ac649aafdd1f --- /dev/null +++ b/www/wslay/files/patch-CMakeLists.txt @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2021-01-15 10:48:52 UTC ++++ CMakeLists.txt +@@ -35,4 +35,10 @@ if (WSLAY_CONFIGURE_INSTALL) + configure_file(wslay-config.cmake.in wslay-config.cmake @ONLY) + install(FILES ${CMAKE_CURRENT_BINARY_DIR}/wslay-config.cmake + DESTINATION ${INSTALL_CMAKE_DIR}) ++ ++ set(INSTALL_LIB_DIR ${CMAKE_INSTALL_PREFIX}/lib) ++ set(INSTALL_INC_DIR ${CMAKE_INSTALL_PREFIX}/include) ++ configure_file(wslay.pc.cmake.in libwslay.pc @ONLY) ++ set(INSTALL_PKGCONFIG_DIR "${CMAKE_INSTALL_PREFIX}/lib/pkgconfig" CACHE PATH "Installation directory for pkgconfig (.pc) files") ++ install(FILES ${CMAKE_BINARY_DIR}/libwslay.pc DESTINATION "${INSTALL_PKGCONFIG_DIR}") + endif() diff --git a/www/wslay/files/wslay.pc.cmake.in b/www/wslay/files/wslay.pc.cmake.in new file mode 100644 index 000000000000..11ea4f98366a --- /dev/null +++ b/www/wslay/files/wslay.pc.cmake.in @@ -0,0 +1,13 @@ +prefix=@CMAKE_INSTALL_PREFIX@ +exec_prefix=@CMAKE_INSTALL_PREFIX@ +libdir=@INSTALL_LIB_DIR@ +sharedlibdir=@INSTALL_LIB_DIR@ +includedir=@INSTALL_INC_DIR@ + +Name: wslay +Description: The WebSocket library in C +Version: @PACKAGE_VERSION@ + +Requires: +Libs: -L${libdir} -L${sharedlibdir} -lwslay_shared +Cflags: -I${includedir} diff --git a/www/wslay/pkg-plist b/www/wslay/pkg-plist index df71549a96c7..3258ab761a41 100644 --- a/www/wslay/pkg-plist +++ b/www/wslay/pkg-plist @@ -4,3 +4,4 @@ lib/cmake/wslay/wslay-config.cmake lib/cmake/wslay/wslay-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/wslay/wslay.cmake lib/libwslay_shared.so +libdata/pkgconfig/libwslay.pc diff --git a/www/yt-dlp/Makefile b/www/yt-dlp/Makefile index 130275e303e7..2f02907ee90f 100644 --- a/www/yt-dlp/Makefile +++ b/www/yt-dlp/Makefile @@ -1,5 +1,5 @@ PORTNAME= yt-dlp -DISTVERSION= 2025.06.09 +DISTVERSION= 2025.08.27 CATEGORIES= www MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/ DISTNAME= ${PORTNAME} diff --git a/www/yt-dlp/distinfo b/www/yt-dlp/distinfo index fac82680ab98..13754cb479a7 100644 --- a/www/yt-dlp/distinfo +++ b/www/yt-dlp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749518754 -SHA256 (yt-dlp/2025.06.09/yt-dlp.tar.gz) = 46497ade23be173595d0bbdb41553873733696e0272fec5918cdcaebe17549aa -SIZE (yt-dlp/2025.06.09/yt-dlp.tar.gz) = 6025016 +TIMESTAMP = 1756371665 +SHA256 (yt-dlp/2025.08.27/yt-dlp.tar.gz) = a30442902fadf97280b91c24c4c2191c8ba17515b8a5dd835efc991c03b5bb7b +SIZE (yt-dlp/2025.08.27/yt-dlp.tar.gz) = 6018553 |