diff options
318 files changed, 5993 insertions, 2725 deletions
diff --git a/Mk/Uses/pyqt.mk b/Mk/Uses/pyqt.mk index 8a172daa00cb..880221be3b56 100644 --- a/Mk/Uses/pyqt.mk +++ b/Mk/Uses/pyqt.mk @@ -110,7 +110,7 @@ MASTER_SITES_PYQTWEBENGINE= ${MASTER_SITES_PYQT${_PYQT_VERSION}WEBENGINE} # Qt version-agnostic components PYQTBUILDER_VERSION= 1.19.1 QSCI2_VERSION= 2.14.1 -SIP_VERSION= 6.15.0 # ,1 +SIP_VERSION= 6.15.1 # ,1 # Qt 5 components PYQT5SIP_VERSION= 12.17.2 @@ -123,7 +123,7 @@ PYQT5WEBENGINE_VERSION= 5.15.7 # Qt 6 components PYQT6SIP_VERSION= 13.10.3 -PYQT6_VERSION= 6.10.0 +PYQT6_VERSION= 6.10.1 PYQT63D_VERSION= 6.10.0 PYQT6CHARTS_VERSION= 6.10.0 PYQT6DATAVIS3D_VERSION= 6.10.0 diff --git a/audio/mac/Makefile b/audio/mac/Makefile index fca05e2559f6..0d8944bea982 100644 --- a/audio/mac/Makefile +++ b/audio/mac/Makefile @@ -1,5 +1,5 @@ PORTNAME= mac -PORTVERSION= 11.89 +PORTVERSION= 11.90 CATEGORIES= audio MASTER_SITES= https://www.monkeysaudio.com/files/ DISTNAME= ${PORTNAME:tu}_${PORTVERSION:S|.||}_SDK diff --git a/audio/mac/distinfo b/audio/mac/distinfo index e9bf9d189a7a..6fd754e6fed3 100644 --- a/audio/mac/distinfo +++ b/audio/mac/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764901120 -SHA256 (MAC_1189_SDK.zip) = e641cf51139ede6e2b3055dedc24e79e43443339dee0d8ef8b0b7aa50ae22008 -SIZE (MAC_1189_SDK.zip) = 1735541 +TIMESTAMP = 1766250730 +SHA256 (MAC_1190_SDK.zip) = 6aeb626ba379af91b69a76047d5fb6e8f498630fa4274f865eecfd2b5ccc74d0 +SIZE (MAC_1190_SDK.zip) = 1735265 diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile index b2ba8a16ec17..20b1de48d8f1 100644 --- a/audio/mpg123/Makefile +++ b/audio/mpg123/Makefile @@ -1,5 +1,5 @@ PORTNAME= mpg123 -DISTVERSION= 1.33.3 +DISTVERSION= 1.33.4 CATEGORIES= audio MASTER_SITES= SF \ https://www.mpg123.de/download/ diff --git a/audio/mpg123/distinfo b/audio/mpg123/distinfo index 44064d06164c..9694f7f05ef3 100644 --- a/audio/mpg123/distinfo +++ b/audio/mpg123/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759912072 -SHA256 (mpg123-1.33.3.tar.bz2) = 6a0c6472dd156e213c2068f40115ebbb73978c2d873e66bae2a250e2d2198d26 -SIZE (mpg123-1.33.3.tar.bz2) = 1121537 +TIMESTAMP = 1766297989 +SHA256 (mpg123-1.33.4.tar.bz2) = 3ae8c9ff80a97bfc0e22e89fbcd74687eca4fc1db315b12607f27f01cb5a47d9 +SIZE (mpg123-1.33.4.tar.bz2) = 1122088 diff --git a/biology/vsearch/files/patch-src_arch.cc b/biology/vsearch/files/patch-src_arch.cc new file mode 100644 index 000000000000..bf8d2e77dda7 --- /dev/null +++ b/biology/vsearch/files/patch-src_arch.cc @@ -0,0 +1,32 @@ +--- src/arch.cc.orig 2025-12-20 13:37:07 UTC ++++ src/arch.cc +@@ -67,7 +67,7 @@ + #include <cstdlib> // std::realloc, std::free + + +-constexpr auto memalignment = 16; ++constexpr auto vsearch_memalignment = 16; + + + auto arch_get_memused() -> uint64_t +@@ -223,9 +223,9 @@ auto xmalloc(std::size_t size) -> void * + size = std::max(size, minimal_allocation); + void * ptr = nullptr; + #ifdef _WIN32 +- ptr = _aligned_malloc(size, memalignment); ++ ptr = _aligned_malloc(size, vsearch_memalignment); + #else +- if (posix_memalign(&ptr, memalignment, size) != 0) ++ if (posix_memalign(&ptr, vsearch_memalignment, size) != 0) + { + ptr = nullptr; + } +@@ -243,7 +243,7 @@ auto xrealloc(void * ptr, std::size_t size) -> void * + static constexpr auto minimal_allocation = std::size_t{1}; + size = std::max(size, minimal_allocation); + #ifdef _WIN32 +- void * new_ptr = _aligned_realloc(ptr, size, memalignment); ++ void * new_ptr = _aligned_realloc(ptr, size, vsearch_memalignment); + #else + void * new_ptr = realloc(ptr, size); + #endif diff --git a/cad/irsim/Makefile b/cad/irsim/Makefile index ef0b803403ea..e8d04573354c 100644 --- a/cad/irsim/Makefile +++ b/cad/irsim/Makefile @@ -1,5 +1,5 @@ PORTNAME= irsim -DISTVERSION= 9.7.119 +DISTVERSION= 9.7.121 CATEGORIES= cad MASTER_SITES= http://opencircuitdesign.com/irsim/archive/ PKGNAMESUFFIX= -${FLAVOR} diff --git a/cad/irsim/distinfo b/cad/irsim/distinfo index f403f439604b..d91469954b16 100644 --- a/cad/irsim/distinfo +++ b/cad/irsim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755438927 -SHA256 (irsim-9.7.119.tgz) = d825f6640462bb287a6f7471b64659c43cdb475806ac8ce9dfdb2aa3669a7a9d -SIZE (irsim-9.7.119.tgz) = 482299 +TIMESTAMP = 1765936187 +SHA256 (irsim-9.7.121.tgz) = 33edbf04fe51b3d5de0fffdc3d3a8d6db5321747d9a791dd1daae0d60147e216 +SIZE (irsim-9.7.121.tgz) = 482246 diff --git a/chinese/fcitx5-mcbopomofo/Makefile b/chinese/fcitx5-mcbopomofo/Makefile index 4bf9b91114ef..e598055e93a5 100644 --- a/chinese/fcitx5-mcbopomofo/Makefile +++ b/chinese/fcitx5-mcbopomofo/Makefile @@ -1,5 +1,5 @@ PORTNAME= fcitx5-mcbopomofo -DISTVERSION= 2.9.4 +DISTVERSION= 2.9.5 CATEGORIES= chinese textproc MAINTAINER= lwhsu@FreeBSD.org diff --git a/chinese/fcitx5-mcbopomofo/distinfo b/chinese/fcitx5-mcbopomofo/distinfo index fb0f2de9e0d4..065717a7d8eb 100644 --- a/chinese/fcitx5-mcbopomofo/distinfo +++ b/chinese/fcitx5-mcbopomofo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763706457 -SHA256 (openvanilla-fcitx5-mcbopomofo-2.9.4_GH0.tar.gz) = 6c12a6b4cee994459a4918ef87611124cf812876a470c85ccab349cebcf5ad43 -SIZE (openvanilla-fcitx5-mcbopomofo-2.9.4_GH0.tar.gz) = 2830849 +TIMESTAMP = 1766164129 +SHA256 (openvanilla-fcitx5-mcbopomofo-2.9.5_GH0.tar.gz) = e678a61de22dcf33487824396af56a93f09cb6efd3040f5ac5e2b29c61bb37c9 +SIZE (openvanilla-fcitx5-mcbopomofo-2.9.5_GH0.tar.gz) = 2833174 diff --git a/comms/flrig/Makefile b/comms/flrig/Makefile index 7dd2f5521b6c..d8b9924f9567 100644 --- a/comms/flrig/Makefile +++ b/comms/flrig/Makefile @@ -1,5 +1,5 @@ PORTNAME= flrig -DISTVERSION= 2.0.09 +DISTVERSION= 2.0.10 CATEGORIES= comms hamradio MASTER_SITES= SF/fldigi/${PORTNAME} diff --git a/comms/flrig/distinfo b/comms/flrig/distinfo index 94fc7dde06a3..41244055fed9 100644 --- a/comms/flrig/distinfo +++ b/comms/flrig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759848314 -SHA256 (flrig-2.0.09.tar.gz) = 76f521ecf1062af276d5ac3804504b283a2c138455b593d66fd5d51c9464f59d -SIZE (flrig-2.0.09.tar.gz) = 1137698 +TIMESTAMP = 1766165454 +SHA256 (flrig-2.0.10.tar.gz) = 6a5f2b87d4fffed410a35b3a176b5d04e60ed4de3fda545079f3656e42ef42bd +SIZE (flrig-2.0.10.tar.gz) = 1225020 diff --git a/converters/simdutf/Makefile b/converters/simdutf/Makefile index b7c9df6c2d16..43b40fce068f 100644 --- a/converters/simdutf/Makefile +++ b/converters/simdutf/Makefile @@ -1,6 +1,6 @@ PORTNAME= simdutf DISTVERSIONPREFIX= v -DISTVERSION= 7.7.0 +DISTVERSION= 7.7.1 CATEGORIES= converters textproc MAINTAINER= fuz@FreeBSD.org diff --git a/converters/simdutf/distinfo b/converters/simdutf/distinfo index d44f68dac66e..ee2b7c58851f 100644 --- a/converters/simdutf/distinfo +++ b/converters/simdutf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763896945 -SHA256 (simdutf-simdutf-v7.7.0_GH0.tar.gz) = 0180de81a1dd48a87b8c0442ffa81734f3db91a7350914107a449935124e3c6f -SIZE (simdutf-simdutf-v7.7.0_GH0.tar.gz) = 2231692 +TIMESTAMP = 1766261817 +SHA256 (simdutf-simdutf-v7.7.1_GH0.tar.gz) = 3b119d55c47196f6310f5b7b300563e6f2789b7de352536809438a3de1eb4432 +SIZE (simdutf-simdutf-v7.7.1_GH0.tar.gz) = 2352543 diff --git a/databases/freetds-devel/Makefile b/databases/freetds-devel/Makefile index 200c741d7a43..51ac06737ee0 100644 --- a/databases/freetds-devel/Makefile +++ b/databases/freetds-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= freetds -DISTVERSION= 1.5.203 +DISTVERSION= 1.5.206 PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= https://www.freetds.org/files/current/ diff --git a/databases/freetds-devel/distinfo b/databases/freetds-devel/distinfo index f0f33ec6f26f..beefdd093445 100644 --- a/databases/freetds-devel/distinfo +++ b/databases/freetds-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765960072 -SHA256 (freetds-dev.1.5.203.tar.bz2) = 6b14b4e98334dacffb01615efaf3ffa768d62503e8b15d0abcedb50832756161 -SIZE (freetds-dev.1.5.203.tar.bz2) = 2475625 +TIMESTAMP = 1766220084 +SHA256 (freetds-dev.1.5.206.tar.bz2) = 7207dc7954e32fa474b1818286f3c483c06c41bf370ec9c841f5b47bc61af2ee +SIZE (freetds-dev.1.5.206.tar.bz2) = 2476267 diff --git a/databases/pspg/Makefile b/databases/pspg/Makefile index e09cb972e07b..a76995319fb8 100644 --- a/databases/pspg/Makefile +++ b/databases/pspg/Makefile @@ -1,5 +1,5 @@ PORTNAME= pspg -DISTVERSION= 5.8.13 +DISTVERSION= 5.8.14 CATEGORIES= databases MAINTAINER= bofh@FreeBSD.org diff --git a/databases/pspg/distinfo b/databases/pspg/distinfo index d7a023544e8e..99b691229f4d 100644 --- a/databases/pspg/distinfo +++ b/databases/pspg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765961706 -SHA256 (okbob-pspg-5.8.13_GH0.tar.gz) = b6f198a98c0e8ec0f1ea0893deb23f20be7196a4f075c879722f91bef65a12f8 -SIZE (okbob-pspg-5.8.13_GH0.tar.gz) = 2447114 +TIMESTAMP = 1766220163 +SHA256 (okbob-pspg-5.8.14_GH0.tar.gz) = 9ff44945fdf08b99468808ff67c903f62205583743b6b45921dc6b366aa5e243 +SIZE (okbob-pspg-5.8.14_GH0.tar.gz) = 2447513 diff --git a/deskutils/taskwarrior-tui/Makefile b/deskutils/taskwarrior-tui/Makefile index 449b3a89944f..74ceaa014026 100644 --- a/deskutils/taskwarrior-tui/Makefile +++ b/deskutils/taskwarrior-tui/Makefile @@ -1,7 +1,6 @@ PORTNAME= taskwarrior-tui DISTVERSIONPREFIX= v -DISTVERSION= 0.26.4 -PORTREVISION= 1 +DISTVERSION= 0.26.5 CATEGORIES= deskutils MAINTAINER= adamw@FreeBSD.org diff --git a/deskutils/taskwarrior-tui/distinfo b/deskutils/taskwarrior-tui/distinfo index ae3a2108b2b3..38c29589c0a4 100644 --- a/deskutils/taskwarrior-tui/distinfo +++ b/deskutils/taskwarrior-tui/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1765221844 +TIMESTAMP = 1766174900 SHA256 (rust/crates/addr2line-0.21.0.crate) = 8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb SIZE (rust/crates/addr2line-0.21.0.crate) = 40807 SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe @@ -421,5 +421,5 @@ SHA256 (rust/crates/zerocopy-0.7.34.crate) = ae87e3fcd617500e5d106f0380cf7b77f3c SIZE (rust/crates/zerocopy-0.7.34.crate) = 151177 SHA256 (rust/crates/zerocopy-derive-0.7.34.crate) = 15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b SIZE (rust/crates/zerocopy-derive-0.7.34.crate) = 37907 -SHA256 (kdheepak-taskwarrior-tui-v0.26.4_GH0.tar.gz) = 064ab8a4a7f057ed00a6cf061bf124607d5b4812fce145fd60efa7315c765625 -SIZE (kdheepak-taskwarrior-tui-v0.26.4_GH0.tar.gz) = 83689 +SHA256 (kdheepak-taskwarrior-tui-v0.26.5_GH0.tar.gz) = 9eebb2f736693cbb64b3a79b88d3e5bbae8603ef9206d47e555c9a9cf9077708 +SIZE (kdheepak-taskwarrior-tui-v0.26.5_GH0.tar.gz) = 86484 diff --git a/deskutils/tatuin/Makefile b/deskutils/tatuin/Makefile index 86d782151285..e837bb487bab 100644 --- a/deskutils/tatuin/Makefile +++ b/deskutils/tatuin/Makefile @@ -1,7 +1,6 @@ PORTNAME= tatuin DISTVERSIONPREFIX= v -DISTVERSION= 0.25.0 -PORTREVISION= 2 +DISTVERSION= 0.25.2 CATEGORIES= deskutils MAINTAINER= alven@FreeBSD.org diff --git a/deskutils/tatuin/Makefile.crates b/deskutils/tatuin/Makefile.crates index 5d2315c0c973..964be3884d97 100644 --- a/deskutils/tatuin/Makefile.crates +++ b/deskutils/tatuin/Makefile.crates @@ -21,7 +21,7 @@ CARGO_CRATES= addr2line-0.25.1 \ bytes-1.10.1 \ cassowary-0.3.0 \ castaway-0.2.4 \ - cc-1.2.44 \ + cc-1.2.45 \ cfg-if-1.0.4 \ chrono-0.4.42 \ chrono-tz-0.10.4 \ @@ -65,7 +65,7 @@ CARGO_CRATES= addr2line-0.25.1 \ either-1.15.0 \ encoding_rs-0.8.35 \ equivalent-1.0.2 \ - erased-serde-0.4.8 \ + erased-serde-0.4.9 \ errno-0.3.14 \ eyre-0.6.12 \ fastrand-2.3.0 \ @@ -118,7 +118,7 @@ CARGO_CRATES= addr2line-0.25.1 \ indoc-2.0.7 \ instability-0.3.9 \ ipnet-2.11.0 \ - iri-string-0.7.8 \ + iri-string-0.7.9 \ is_terminal_polyfill-1.70.2 \ iso8601-duration-0.2.0 \ itertools-0.13.0 \ @@ -151,10 +151,10 @@ CARGO_CRATES= addr2line-0.25.1 \ object-0.37.3 \ once_cell-1.21.3 \ once_cell_polyfill-1.70.2 \ - openssl-0.10.74 \ + openssl-0.10.75 \ openssl-macros-0.1.1 \ openssl-probe-0.1.6 \ - openssl-sys-0.9.110 \ + openssl-sys-0.9.111 \ option-ext-0.2.0 \ ordered-multimap-0.7.3 \ owo-colors-4.2.3 \ @@ -176,7 +176,7 @@ CARGO_CRATES= addr2line-0.25.1 \ powerfmt-0.2.0 \ ppv-lite86-0.2.21 \ proc-macro2-1.0.103 \ - quote-1.0.41 \ + quote-1.0.42 \ r-efi-5.3.0 \ rand-0.8.5 \ rand_chacha-0.3.1 \ @@ -196,7 +196,7 @@ CARGO_CRATES= addr2line-0.25.1 \ rustc-demangle-0.1.26 \ rustix-0.38.44 \ rustix-1.1.2 \ - rustls-0.23.34 \ + rustls-0.23.35 \ rustls-pki-types-1.13.0 \ rustls-webpki-0.103.8 \ rustversion-1.0.22 \ @@ -232,7 +232,7 @@ CARGO_CRATES= addr2line-0.25.1 \ strum_macros-0.26.4 \ strum_macros-0.27.2 \ subtle-2.6.1 \ - syn-2.0.108 \ + syn-2.0.109 \ sync_wrapper-1.0.2 \ synstructure-0.13.2 \ system-configuration-0.6.1 \ @@ -253,7 +253,7 @@ CARGO_CRATES= addr2line-0.25.1 \ tokio-native-tls-0.3.1 \ tokio-rustls-0.26.4 \ tokio-stream-0.1.17 \ - tokio-util-0.7.16 \ + tokio-util-0.7.17 \ toml-0.9.8 \ toml_datetime-0.7.3 \ toml_parser-1.0.4 \ diff --git a/deskutils/tatuin/distinfo b/deskutils/tatuin/distinfo index 1c92b24fdda0..366adb68b8e7 100644 --- a/deskutils/tatuin/distinfo +++ b/deskutils/tatuin/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1762451659 +TIMESTAMP = 1765998761 SHA256 (rust/crates/addr2line-0.25.1.crate) = 1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b SIZE (rust/crates/addr2line-0.25.1.crate) = 43134 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa @@ -45,8 +45,8 @@ SHA256 (rust/crates/cassowary-0.3.0.crate) = df8670b8c7b9dae1793364eafadf7239c40 SIZE (rust/crates/cassowary-0.3.0.crate) = 22876 SHA256 (rust/crates/castaway-0.2.4.crate) = dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a SIZE (rust/crates/castaway-0.2.4.crate) = 12546 -SHA256 (rust/crates/cc-1.2.44.crate) = 37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3 -SIZE (rust/crates/cc-1.2.44.crate) = 92035 +SHA256 (rust/crates/cc-1.2.45.crate) = 35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe +SIZE (rust/crates/cc-1.2.45.crate) = 92261 SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 @@ -133,8 +133,8 @@ SHA256 (rust/crates/encoding_rs-0.8.35.crate) = 75030f3c4f45dafd7586dd6780965a8c SIZE (rust/crates/encoding_rs-0.8.35.crate) = 1381050 SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 -SHA256 (rust/crates/erased-serde-0.4.8.crate) = 259d404d09818dec19332e31d94558aeb442fea04c817006456c24b5460bbd4b -SIZE (rust/crates/erased-serde-0.4.8.crate) = 28580 +SHA256 (rust/crates/erased-serde-0.4.9.crate) = 89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3 +SIZE (rust/crates/erased-serde-0.4.9.crate) = 28835 SHA256 (rust/crates/errno-0.3.14.crate) = 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb SIZE (rust/crates/errno-0.3.14.crate) = 12002 SHA256 (rust/crates/eyre-0.6.12.crate) = 7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec @@ -239,8 +239,8 @@ SHA256 (rust/crates/instability-0.3.9.crate) = 435d80800b936787d62688c927b6490e8 SIZE (rust/crates/instability-0.3.9.crate) = 14451 SHA256 (rust/crates/ipnet-2.11.0.crate) = 469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130 SIZE (rust/crates/ipnet-2.11.0.crate) = 29718 -SHA256 (rust/crates/iri-string-0.7.8.crate) = dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2 -SIZE (rust/crates/iri-string-0.7.8.crate) = 141493 +SHA256 (rust/crates/iri-string-0.7.9.crate) = 4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397 +SIZE (rust/crates/iri-string-0.7.9.crate) = 142144 SHA256 (rust/crates/is_terminal_polyfill-1.70.2.crate) = a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695 SIZE (rust/crates/is_terminal_polyfill-1.70.2.crate) = 7548 SHA256 (rust/crates/iso8601-duration-0.2.0.crate) = a26adff60a5d3ca10dc271ad37a34ff376595d2a1e5f21d02564929ca888c511 @@ -305,14 +305,14 @@ SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a71648 SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 SHA256 (rust/crates/once_cell_polyfill-1.70.2.crate) = 384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe SIZE (rust/crates/once_cell_polyfill-1.70.2.crate) = 7448 -SHA256 (rust/crates/openssl-0.10.74.crate) = 24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654 -SIZE (rust/crates/openssl-0.10.74.crate) = 285425 +SHA256 (rust/crates/openssl-0.10.75.crate) = 08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328 +SIZE (rust/crates/openssl-0.10.75.crate) = 288136 SHA256 (rust/crates/openssl-macros-0.1.1.crate) = a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c SIZE (rust/crates/openssl-macros-0.1.1.crate) = 5601 SHA256 (rust/crates/openssl-probe-0.1.6.crate) = d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e SIZE (rust/crates/openssl-probe-0.1.6.crate) = 8128 -SHA256 (rust/crates/openssl-sys-0.9.110.crate) = 0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2 -SIZE (rust/crates/openssl-sys-0.9.110.crate) = 80412 +SHA256 (rust/crates/openssl-sys-0.9.111.crate) = 82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321 +SIZE (rust/crates/openssl-sys-0.9.111.crate) = 80871 SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 SHA256 (rust/crates/ordered-multimap-0.7.3.crate) = 49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79 @@ -355,8 +355,8 @@ SHA256 (rust/crates/ppv-lite86-0.2.21.crate) = 85eae3c4ed2f50dcfe72643da4befc30d SIZE (rust/crates/ppv-lite86-0.2.21.crate) = 22522 SHA256 (rust/crates/proc-macro2-1.0.103.crate) = 5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8 SIZE (rust/crates/proc-macro2-1.0.103.crate) = 60024 -SHA256 (rust/crates/quote-1.0.41.crate) = ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1 -SIZE (rust/crates/quote-1.0.41.crate) = 31408 +SHA256 (rust/crates/quote-1.0.42.crate) = a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f +SIZE (rust/crates/quote-1.0.42.crate) = 31504 SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 @@ -395,8 +395,8 @@ SHA256 (rust/crates/rustix-0.38.44.crate) = fdb5bc1ae2baa591800df16c9ca78619bf65 SIZE (rust/crates/rustix-0.38.44.crate) = 379347 SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e SIZE (rust/crates/rustix-1.1.2.crate) = 422717 -SHA256 (rust/crates/rustls-0.23.34.crate) = 6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7 -SIZE (rust/crates/rustls-0.23.34.crate) = 374030 +SHA256 (rust/crates/rustls-0.23.35.crate) = 533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f +SIZE (rust/crates/rustls-0.23.35.crate) = 373700 SHA256 (rust/crates/rustls-pki-types-1.13.0.crate) = 94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a SIZE (rust/crates/rustls-pki-types-1.13.0.crate) = 65448 SHA256 (rust/crates/rustls-webpki-0.103.8.crate) = 2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52 @@ -467,8 +467,8 @@ SHA256 (rust/crates/strum_macros-0.27.2.crate) = 7695ce3845ea4b33927c055a39dc438 SIZE (rust/crates/strum_macros-0.27.2.crate) = 30522 SHA256 (rust/crates/subtle-2.6.1.crate) = 13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292 SIZE (rust/crates/subtle-2.6.1.crate) = 14562 -SHA256 (rust/crates/syn-2.0.108.crate) = da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917 -SIZE (rust/crates/syn-2.0.108.crate) = 301754 +SHA256 (rust/crates/syn-2.0.109.crate) = 2f17c7e013e88258aa9543dcbe81aca68a667a9ac37cd69c9fbc07858bfe0e2f +SIZE (rust/crates/syn-2.0.109.crate) = 301826 SHA256 (rust/crates/sync_wrapper-1.0.2.crate) = 0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263 SIZE (rust/crates/sync_wrapper-1.0.2.crate) = 6958 SHA256 (rust/crates/synstructure-0.13.2.crate) = 728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2 @@ -509,8 +509,8 @@ SHA256 (rust/crates/tokio-rustls-0.26.4.crate) = 1729aa945f29d91ba541258c8df8902 SIZE (rust/crates/tokio-rustls-0.26.4.crate) = 35430 SHA256 (rust/crates/tokio-stream-0.1.17.crate) = eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047 SIZE (rust/crates/tokio-stream-0.1.17.crate) = 38477 -SHA256 (rust/crates/tokio-util-0.7.16.crate) = 14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5 -SIZE (rust/crates/tokio-util-0.7.16.crate) = 127775 +SHA256 (rust/crates/tokio-util-0.7.17.crate) = 2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594 +SIZE (rust/crates/tokio-util-0.7.17.crate) = 133898 SHA256 (rust/crates/toml-0.9.8.crate) = f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8 SIZE (rust/crates/toml-0.9.8.crate) = 56104 SHA256 (rust/crates/toml_datetime-0.7.3.crate) = f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533 @@ -701,5 +701,5 @@ SHA256 (rust/crates/zerovec-0.11.5.crate) = 6c28719294829477f525be0186d13efa9a3c SIZE (rust/crates/zerovec-0.11.5.crate) = 119620 SHA256 (rust/crates/zerovec-derive-0.11.2.crate) = eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3 SIZE (rust/crates/zerovec-derive-0.11.2.crate) = 21421 -SHA256 (panter-dsd-tatuin-v0.25.0_GH0.tar.gz) = 245da2d1ec6aae88229596d8ed48a20857c1d2813731e68dd2755669cb892213 -SIZE (panter-dsd-tatuin-v0.25.0_GH0.tar.gz) = 1127739 +SHA256 (panter-dsd-tatuin-v0.25.2_GH0.tar.gz) = 953f1d0cf9cee1eea05ea9818d1b65b31d704e381f27dac6547a577738743657 +SIZE (panter-dsd-tatuin-v0.25.2_GH0.tar.gz) = 1128110 diff --git a/deskutils/xdg-terminal-exec/Makefile b/deskutils/xdg-terminal-exec/Makefile index a49a5f41a065..bcc8dc7ddc1c 100644 --- a/deskutils/xdg-terminal-exec/Makefile +++ b/deskutils/xdg-terminal-exec/Makefile @@ -1,6 +1,6 @@ PORTNAME= xdg-terminal-exec DISTVERSIONPREFIX=v -DISTVERSION= 0.14.0 +DISTVERSION= 0.14.1 CATEGORIES= deskutils MAINTAINER= arrowd@FreeBSD.org diff --git a/deskutils/xdg-terminal-exec/distinfo b/deskutils/xdg-terminal-exec/distinfo index c0cad7bcb8bc..f117756bc1da 100644 --- a/deskutils/xdg-terminal-exec/distinfo +++ b/deskutils/xdg-terminal-exec/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763363963 -SHA256 (Vladimir-csp-xdg-terminal-exec-v0.14.0_GH0.tar.gz) = 878cf4daaa7241b5072712e966177a6cf1bebee4abd90386121c6fd781268ba2 -SIZE (Vladimir-csp-xdg-terminal-exec-v0.14.0_GH0.tar.gz) = 42937 +TIMESTAMP = 1765984984 +SHA256 (Vladimir-csp-xdg-terminal-exec-v0.14.1_GH0.tar.gz) = b96f7a4ac67a6fce78e92f14129183c06e517c2946c484851dc7bb473504ad47 +SIZE (Vladimir-csp-xdg-terminal-exec-v0.14.1_GH0.tar.gz) = 42972 diff --git a/devel/RStudio/Makefile b/devel/RStudio/Makefile index 804ed24948b6..b7d9268777a6 100644 --- a/devel/RStudio/Makefile +++ b/devel/RStudio/Makefile @@ -4,7 +4,7 @@ PORTNAME= RStudio DISTVERSIONPREFIX= v DISTVERSION= 2025.09.2+418 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel math java MASTER_SITES= https://s3.amazonaws.com/rstudio-buildtools/dictionaries/:dictionaries \ https://rstudio-buildtools.s3.amazonaws.com/rstudio-buildtools/:gin \ @@ -115,7 +115,7 @@ NPM_TARBALL= ${PORTNAME}-desktop-node_modules-${DISTVERSION}${EXTRACT_SUFX} # quarto/panmirror dependencies (uses yarn workspaces) QUARTO_TARBALL= ${PORTNAME}-quarto-node_modules-${DISTVERSION}${EXTRACT_SUFX} # Add npm tarballs to DISTFILES for checksum verification -DISTFILES+= ${PORTNAME}/${NPM_TARBALL}:prefetch \ +#DISTFILES+= ${PORTNAME}/${NPM_TARBALL}:prefetch \ ${PORTNAME}/${QUARTO_TARBALL}:prefetch .endif diff --git a/devel/RStudio/distinfo.desktop b/devel/RStudio/distinfo.desktop index d88935495be0..b1946b2c9306 100644 --- a/devel/RStudio/distinfo.desktop +++ b/devel/RStudio/distinfo.desktop @@ -1,4 +1,4 @@ -TIMESTAMP = 1764480214 +TIMESTAMP = 1766267269 SHA256 (core-dictionaries.zip) = 4341a9630efb9dcf7f215c324136407f3b3d6003e1c96f2e5e1f9f14d5787494 SIZE (core-dictionaries.zip) = 876339 SHA256 (gin-2.1.2.zip) = b98e704164f54be596779696a3fcd11be5785c9907a99ec535ff6e9525ad5f9a @@ -19,7 +19,3 @@ SHA256 (rstudio-rsconnect-03c379b_GH0.tar.gz) = d24b6ee49f32f650f6d10bbfc7b2f61a SIZE (rstudio-rsconnect-03c379b_GH0.tar.gz) = 220711 SHA256 (trestletech-plumber-v0.4.6_GH0.tar.gz) = 7bcbfdf5a8a2e3a051d2c673ac5ac51a483ed888afe73116cba7741dbb5f63a6 SIZE (trestletech-plumber-v0.4.6_GH0.tar.gz) = 83332 -SHA256 (RStudio/RStudio-desktop-node_modules-2025.09.2+418.tar.gz) = dd1f7f2577742977fbab47a34f0e0739b9242188f228bd40d7d46bedcde3869d -SIZE (RStudio/RStudio-desktop-node_modules-2025.09.2+418.tar.gz) = 35017694 -SHA256 (RStudio/RStudio-quarto-node_modules-2025.09.2+418.tar.gz) = 83a3083b0144a0db3ba14d6283414d1e7c9243251b473535865b9010b3fe4ab0 -SIZE (RStudio/RStudio-quarto-node_modules-2025.09.2+418.tar.gz) = 229334450 diff --git a/devel/cirrus-cli/Makefile b/devel/cirrus-cli/Makefile index 5e14c4c4e997..42ecffb3daea 100644 --- a/devel/cirrus-cli/Makefile +++ b/devel/cirrus-cli/Makefile @@ -1,6 +1,6 @@ PORTNAME= cirrus-cli DISTVERSIONPREFIX= v -DISTVERSION= 0.157.4 +DISTVERSION= 0.158.0 CATEGORIES= devel MAINTAINER= bofh@FreeBSD.org diff --git a/devel/cirrus-cli/distinfo b/devel/cirrus-cli/distinfo index c2e13a21651a..aa6981440584 100644 --- a/devel/cirrus-cli/distinfo +++ b/devel/cirrus-cli/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1765961764 -SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.157.4/v0.157.4.mod) = 43fde39b1a6175854a1e43cea0c1e25217cea8fe008dc04c8ebbe201b5dee7de -SIZE (go/devel_cirrus-cli/cirrus-cli-v0.157.4/v0.157.4.mod) = 11531 -SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.157.4/v0.157.4.zip) = d75b954eb1e3323182f06dd5bd1bdb067caa6f8342dde97642a7a905694ed9df -SIZE (go/devel_cirrus-cli/cirrus-cli-v0.157.4/v0.157.4.zip) = 1316103 +TIMESTAMP = 1766220233 +SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.158.0/v0.158.0.mod) = 43fde39b1a6175854a1e43cea0c1e25217cea8fe008dc04c8ebbe201b5dee7de +SIZE (go/devel_cirrus-cli/cirrus-cli-v0.158.0/v0.158.0.mod) = 11531 +SHA256 (go/devel_cirrus-cli/cirrus-cli-v0.158.0/v0.158.0.zip) = 86519abfbf0f9ba0e2a2b9e556a07059df6d6da29a8af98e9f6de94e819cdc8e +SIZE (go/devel_cirrus-cli/cirrus-cli-v0.158.0/v0.158.0.zip) = 1315930 diff --git a/devel/go-tools/Makefile b/devel/go-tools/Makefile index a20ed5f1675f..899fb4a83e97 100644 --- a/devel/go-tools/Makefile +++ b/devel/go-tools/Makefile @@ -1,7 +1,6 @@ PORTNAME= tools DISTVERSIONPREFIX= v -DISTVERSION= 0.39.0 -PORTREVISION= 1 +DISTVERSION= 0.40.0 PORTEPOCH= 1 CATEGORIES= devel PKGNAMEPREFIX= go- diff --git a/devel/go-tools/distinfo b/devel/go-tools/distinfo index 6986132eff5c..7a12fd53f0e4 100644 --- a/devel/go-tools/distinfo +++ b/devel/go-tools/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1763116538 -SHA256 (go/devel_go-tools/tools-v0.39.0/v0.39.0.mod) = b479807449df634074dd08e8e15065ed90bb91e123a1664e4ef34ca07fd4c0ac -SIZE (go/devel_go-tools/tools-v0.39.0/v0.39.0.mod) = 301 -SHA256 (go/devel_go-tools/tools-v0.39.0/v0.39.0.zip) = 498ead1f3de646754a152c14fcaade9b03f86114b2746b65367e3540c1acbcde -SIZE (go/devel_go-tools/tools-v0.39.0/v0.39.0.zip) = 2854184 +TIMESTAMP = 1765543215 +SHA256 (go/devel_go-tools/tools-v0.40.0/v0.40.0.mod) = c75122d17c58778ae79480a393bbe3281820a0fb9cca327fee767108f43e2de2 +SIZE (go/devel_go-tools/tools-v0.40.0/v0.40.0.mod) = 301 +SHA256 (go/devel_go-tools/tools-v0.40.0/v0.40.0.zip) = 5b8ea096f9184a9df7a4852818ea35d9f9a8f50b68a5558f5078f23a39459780 +SIZE (go/devel_go-tools/tools-v0.40.0/v0.40.0.zip) = 2873030 diff --git a/devel/gopls/Makefile b/devel/gopls/Makefile index 420d9bdc9a2f..3dde72605fce 100644 --- a/devel/gopls/Makefile +++ b/devel/gopls/Makefile @@ -1,7 +1,6 @@ PORTNAME= gopls DISTVERSIONPREFIX= v -DISTVERSION= 0.20.0 -PORTREVISION= 6 +DISTVERSION= 0.21.0 CATEGORIES= devel MAINTAINER= fuz@FreeBSD.org @@ -11,7 +10,7 @@ WWW= https://pkg.go.dev/golang.org/x/tools/gopls LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.24+,modules +USES= go:1.25+,modules GO_MODULE= golang.org/x/tools/gopls OPTIONS_DEFINE= DOCS diff --git a/devel/gopls/distinfo b/devel/gopls/distinfo index 39d59afb00ff..dc68138e50c7 100644 --- a/devel/gopls/distinfo +++ b/devel/gopls/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1754048789 -SHA256 (go/devel_gopls/gopls-v0.20.0/v0.20.0.mod) = 74f06762e74281c9d75a818b97f7a358457d54c85657526bb3e99cefc80387a6 -SIZE (go/devel_gopls/gopls-v0.20.0/v0.20.0.mod) = 1110 -SHA256 (go/devel_gopls/gopls-v0.20.0/v0.20.0.zip) = ebaeab7ce9e90b2f50bd15688843f6f6392897532cdc4826b34a5454d0153357 -SIZE (go/devel_gopls/gopls-v0.20.0/v0.20.0.zip) = 2262520 +TIMESTAMP = 1765639724 +SHA256 (go/devel_gopls/gopls-v0.21.0/v0.21.0.mod) = 45093913c30d49f09eef566b23da6705fa7b1e61d2b2c729814b525ed601fa61 +SIZE (go/devel_gopls/gopls-v0.21.0/v0.21.0.mod) = 1262 +SHA256 (go/devel_gopls/gopls-v0.21.0/v0.21.0.zip) = f366328e7b5e9cc5a596201c78ed5d29007f2826e0344ffa1a043d2dbe8286c8 +SIZE (go/devel_gopls/gopls-v0.21.0/v0.21.0.zip) = 2226113 diff --git a/devel/gopls/pkg-plist b/devel/gopls/pkg-plist index a23d52446351..ab3302d19ce1 100644 --- a/devel/gopls/pkg-plist +++ b/devel/gopls/pkg-plist @@ -38,6 +38,7 @@ bin/gopls %%PORTDOCS%%%%DOCSDIR%%/doc/release/v0.19.0.md %%PORTDOCS%%%%DOCSDIR%%/doc/release/v0.20.0.md %%PORTDOCS%%%%DOCSDIR%%/doc/release/v0.21.0.md +%%PORTDOCS%%%%DOCSDIR%%/doc/release/v0.22.0.md %%PORTDOCS%%%%DOCSDIR%%/doc/settings.md %%PORTDOCS%%%%DOCSDIR%%/doc/troubleshooting.md %%PORTDOCS%%%%DOCSDIR%%/doc/workspace.md diff --git a/devel/goreleaser/Makefile b/devel/goreleaser/Makefile index 3d17bf3e5d1b..d60cb4657882 100644 --- a/devel/goreleaser/Makefile +++ b/devel/goreleaser/Makefile @@ -1,6 +1,6 @@ PORTNAME= goreleaser DISTVERSIONPREFIX= v -DISTVERSION= 2.13.0 +DISTVERSION= 2.13.1 CATEGORIES= devel MAINTAINER= fuz@FreeBSD.org diff --git a/devel/goreleaser/distinfo b/devel/goreleaser/distinfo index a93f02778371..d702651135c9 100644 --- a/devel/goreleaser/distinfo +++ b/devel/goreleaser/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1764678894 -SHA256 (go/devel_goreleaser/goreleaser-v2.13.0/v2.13.0.mod) = 0e0943f2ea66259089825775c596506d53465f878576cc916200125ba2bb5ba1 -SIZE (go/devel_goreleaser/goreleaser-v2.13.0/v2.13.0.mod) = 21448 -SHA256 (go/devel_goreleaser/goreleaser-v2.13.0/v2.13.0.zip) = d3d930ff8bc2e68a6bdca3382b8c2e39c029bd8aa908f506d8228afefd34aa28 -SIZE (go/devel_goreleaser/goreleaser-v2.13.0/v2.13.0.zip) = 3441133 +TIMESTAMP = 1765544380 +SHA256 (go/devel_goreleaser/goreleaser-v2.13.1/v2.13.1.mod) = a691d76c821544898c251b6b01bbfa6ec55b27487decca283919c365037f054a +SIZE (go/devel_goreleaser/goreleaser-v2.13.1/v2.13.1.mod) = 21592 +SHA256 (go/devel_goreleaser/goreleaser-v2.13.1/v2.13.1.zip) = 1550f8efeb4c8e141f3ea41d3e26d6e47bc7d3b9fc69b93485fa7b4e3145c7cd +SIZE (go/devel_goreleaser/goreleaser-v2.13.1/v2.13.1.zip) = 3444913 diff --git a/devel/immer/Makefile b/devel/immer/Makefile index 1ea1d45b4818..0ce19bf82890 100644 --- a/devel/immer/Makefile +++ b/devel/immer/Makefile @@ -1,6 +1,6 @@ PORTNAME= immer DISTVERSIONPREFIX= v -DISTVERSION= 0.8.1 +DISTVERSION= 0.9.0 CATEGORIES= devel MAINTAINER= jhale@FreeBSD.org @@ -10,7 +10,7 @@ WWW= https://sinusoid.es/immer/ LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake +USES= cmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= arximboldi diff --git a/devel/immer/distinfo b/devel/immer/distinfo index ca28e20f5aed..65a65a74453a 100644 --- a/devel/immer/distinfo +++ b/devel/immer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696411685 -SHA256 (arximboldi-immer-v0.8.1_GH0.tar.gz) = de8411c84830864604bb685dc8f2e3c0dbdc40b95b2f6726092f7dcc85e75209 -SIZE (arximboldi-immer-v0.8.1_GH0.tar.gz) = 654638 +TIMESTAMP = 1766279467 +SHA256 (arximboldi-immer-v0.9.0_GH0.tar.gz) = 4e9f9a9018ac6c12f5fa92540feeedffb0a0a7db0de98c07ee62688cc329085a +SIZE (arximboldi-immer-v0.9.0_GH0.tar.gz) = 745053 diff --git a/devel/immer/files/patch-cmake_FindBoehmGC.cmake b/devel/immer/files/patch-cmake_FindBoehmGC.cmake index 8bc34f5c5e21..de43409ed283 100644 --- a/devel/immer/files/patch-cmake_FindBoehmGC.cmake +++ b/devel/immer/files/patch-cmake_FindBoehmGC.cmake @@ -1,11 +1,16 @@ ---- cmake/FindBoehmGC.cmake.orig 2023-10-04 09:47:41 UTC +CMake Error at cmake/FindBoehmGC.cmake:67 (check_c_source_runs): + Unknown CMake command "check_c_source_runs". + +https://github.com/arximboldi/immer/pull/315 + +--- cmake/FindBoehmGC.cmake.orig 2025-12-02 21:25:10 UTC +++ cmake/FindBoehmGC.cmake -@@ -57,7 +57,7 @@ IF (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - IF (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") - # checks if 'gc' supports 'GC_get_parallel' and if it does - # then use it -- INCLUDE(${CMAKE_ROOT}/Modules/CheckCSourceCompiles.cmake) -+ INCLUDE(${CMAKE_ROOT}/Modules/CheckCSourceRuns.cmake) +@@ -52,7 +52,7 @@ if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") + # For FreeBSD we need to use gc-threaded + if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD") + # checks if 'gc' supports 'GC_get_parallel' and if it does then use it +- include(${CMAKE_ROOT}/Modules/CheckCSourceCompiles.cmake) ++ include(${CMAKE_ROOT}/Modules/CheckCSourceRuns.cmake) # not sure if this links properly... - FIND_LIBRARY(BOEHM_GC_LIBRARIES NAMES gc - HINTS ${PC_BDW_GC_LIBDIR} ${PC_BDW_GC_LIBRARY_DIRS}) + find_library( + BOEHM_GC_LIBRARIES diff --git a/devel/immer/pkg-plist b/devel/immer/pkg-plist index 9b67648df9bd..3a0256223e74 100644 --- a/devel/immer/pkg-plist +++ b/devel/immer/pkg-plist @@ -27,12 +27,52 @@ include/immer/detail/type_traits.hpp include/immer/detail/util.hpp include/immer/experimental/detail/dvektor_impl.hpp include/immer/experimental/dvektor.hpp +include/immer/extra/cereal/immer_array.hpp +include/immer/extra/cereal/immer_box.hpp +include/immer/extra/cereal/immer_map.hpp +include/immer/extra/cereal/immer_set.hpp +include/immer/extra/cereal/immer_table.hpp +include/immer/extra/cereal/immer_vector.hpp +include/immer/extra/io.hpp +include/immer/extra/persist/cereal/archives.hpp +include/immer/extra/persist/cereal/load.hpp +include/immer/extra/persist/cereal/policy.hpp +include/immer/extra/persist/cereal/save.hpp +include/immer/extra/persist/detail/alias.hpp +include/immer/extra/persist/detail/array/pool.hpp +include/immer/extra/persist/detail/box/pool.hpp +include/immer/extra/persist/detail/cereal/compact_map.hpp +include/immer/extra/persist/detail/cereal/input_archive_util.hpp +include/immer/extra/persist/detail/cereal/persistable.hpp +include/immer/extra/persist/detail/cereal/pools.hpp +include/immer/extra/persist/detail/cereal/wrap.hpp +include/immer/extra/persist/detail/champ/champ.hpp +include/immer/extra/persist/detail/champ/input.hpp +include/immer/extra/persist/detail/champ/output.hpp +include/immer/extra/persist/detail/champ/pool.hpp +include/immer/extra/persist/detail/champ/traits.hpp +include/immer/extra/persist/detail/common/pool.hpp +include/immer/extra/persist/detail/names.hpp +include/immer/extra/persist/detail/node_ptr.hpp +include/immer/extra/persist/detail/rbts/input.hpp +include/immer/extra/persist/detail/rbts/output.hpp +include/immer/extra/persist/detail/rbts/pool.hpp +include/immer/extra/persist/detail/rbts/traits.hpp +include/immer/extra/persist/detail/rbts/traverse.hpp +include/immer/extra/persist/detail/traits.hpp +include/immer/extra/persist/detail/transform.hpp +include/immer/extra/persist/detail/type_traverse.hpp +include/immer/extra/persist/errors.hpp +include/immer/extra/persist/hash_container_conversion.hpp +include/immer/extra/persist/transform.hpp +include/immer/extra/persist/types.hpp +include/immer/extra/persist/xxhash/xxhash.hpp +include/immer/extra/persist/xxhash/xxhash_64.cpp include/immer/flex_vector.hpp include/immer/flex_vector_transient.hpp include/immer/heap/cpp_heap.hpp include/immer/heap/debug_size_heap.hpp include/immer/heap/free_list_heap.hpp -include/immer/heap/free_list_node.hpp include/immer/heap/gc_heap.hpp include/immer/heap/heap_policy.hpp include/immer/heap/identity_heap.hpp @@ -41,7 +81,6 @@ include/immer/heap/split_heap.hpp include/immer/heap/tags.hpp include/immer/heap/thread_local_free_list_heap.hpp include/immer/heap/unsafe_free_list_heap.hpp -include/immer/heap/with_data.hpp include/immer/lock/no_lock_policy.hpp include/immer/lock/spinlock_policy.hpp include/immer/map.hpp diff --git a/devel/jjui/Makefile b/devel/jjui/Makefile index 4d95950eb1ea..bcb18fe156b5 100644 --- a/devel/jjui/Makefile +++ b/devel/jjui/Makefile @@ -1,6 +1,6 @@ PORTNAME= jjui DISTVERSIONPREFIX= v -DISTVERSION= 0.9.7 +DISTVERSION= 0.9.8 CATEGORIES= devel MAINTAINER= hoanga@gmail.com diff --git a/devel/jjui/distinfo b/devel/jjui/distinfo index 1338620aa9f5..bad85642056f 100644 --- a/devel/jjui/distinfo +++ b/devel/jjui/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1764948251 -SHA256 (go/devel_jjui/jjui-v0.9.7/v0.9.7.mod) = f74a5bbe44f8d2404cf6f7ccb9aa16d79be410b6455a7c03145c09b67b92c61d -SIZE (go/devel_jjui/jjui-v0.9.7/v0.9.7.mod) = 1544 -SHA256 (go/devel_jjui/jjui-v0.9.7/v0.9.7.zip) = dfe51d6ed5d5a50e9230be53aa26b01b50c36c4c08a515d2bba5e25294cc29fe -SIZE (go/devel_jjui/jjui-v0.9.7/v0.9.7.zip) = 186495 +TIMESTAMP = 1766154627 +SHA256 (go/devel_jjui/jjui-v0.9.8/v0.9.8.mod) = 5df64b10f9a6999941c72ae317676ebef94d042614b35462be23d22378340e2a +SIZE (go/devel_jjui/jjui-v0.9.8/v0.9.8.mod) = 1567 +SHA256 (go/devel_jjui/jjui-v0.9.8/v0.9.8.zip) = 95347f5634498e8c6053e0b356e3783cdd397ff0afec9a2fa4922f95cc318fff +SIZE (go/devel_jjui/jjui-v0.9.8/v0.9.8.zip) = 202466 diff --git a/devel/libphonenumber/Makefile b/devel/libphonenumber/Makefile index 25b307b796fe..7fa33a12d2fc 100644 --- a/devel/libphonenumber/Makefile +++ b/devel/libphonenumber/Makefile @@ -1,6 +1,6 @@ PORTNAME= libphonenumber DISTVERSIONPREFIX= v -DISTVERSION= 9.0.18 +DISTVERSION= 9.0.21 CATEGORIES= devel MAINTAINER= kde@FreeBSD.org diff --git a/devel/libphonenumber/distinfo b/devel/libphonenumber/distinfo index c068ffe93f13..772a783e2316 100644 --- a/devel/libphonenumber/distinfo +++ b/devel/libphonenumber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763449489 -SHA256 (google-libphonenumber-v9.0.18_GH0.tar.gz) = fdcf2677367b93595d3c7ccbbd58e8e086bbdd5fd58bc01400b445786f9544f7 -SIZE (google-libphonenumber-v9.0.18_GH0.tar.gz) = 13017109 +TIMESTAMP = 1766251070 +SHA256 (google-libphonenumber-v9.0.21_GH0.tar.gz) = 4261a7c38744b3b4859a424a193714ef55b53cd9f3d3d463f9ac589a2c778102 +SIZE (google-libphonenumber-v9.0.21_GH0.tar.gz) = 13022920 diff --git a/devel/ninja/Makefile b/devel/ninja/Makefile index 931e9b910a68..5bfff5d38364 100644 --- a/devel/ninja/Makefile +++ b/devel/ninja/Makefile @@ -1,5 +1,5 @@ PORTNAME= ninja -PORTVERSION= 1.13.1 +PORTVERSION= 1.13.2 DISTVERSIONPREFIX= v PORTEPOCH= 4 CATEGORIES= devel diff --git a/devel/ninja/distinfo b/devel/ninja/distinfo index 60e7d21f0fd6..0fc2bc91fd57 100644 --- a/devel/ninja/distinfo +++ b/devel/ninja/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755246529 -SHA256 (ninja-build-ninja-v1.13.1_GH0.tar.gz) = f0055ad0369bf2e372955ba55128d000cfcc21777057806015b45e4accbebf23 -SIZE (ninja-build-ninja-v1.13.1_GH0.tar.gz) = 292098 +TIMESTAMP = 1766255207 +SHA256 (ninja-build-ninja-v1.13.2_GH0.tar.gz) = 974d6b2f4eeefa25625d34da3cb36bdcebe7fbce40f4c16ac0835fd1c0cbae17 +SIZE (ninja-build-ninja-v1.13.2_GH0.tar.gz) = 292385 diff --git a/devel/oq/Makefile b/devel/oq/Makefile index 97cca88e04b8..1b993d1e7ddd 100644 --- a/devel/oq/Makefile +++ b/devel/oq/Makefile @@ -1,7 +1,6 @@ PORTNAME= oq DISTVERSIONPREFIX= v -DISTVERSION= 0.0.20 -PORTREVISION= 3 +DISTVERSION= 0.0.21 CATEGORIES= devel MAINTAINER= hoanga@gmail.com diff --git a/devel/oq/distinfo b/devel/oq/distinfo index 1f47e1841b1e..985c7c08fe22 100644 --- a/devel/oq/distinfo +++ b/devel/oq/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1760026734 -SHA256 (go/devel_oq/oq-v0.0.20/v0.0.20.mod) = 96631ba5496f9e8769763e7fb030778e2bc914f55bdb871d43503f7a9269a1b9 -SIZE (go/devel_oq/oq-v0.0.20/v0.0.20.mod) = 1411 -SHA256 (go/devel_oq/oq-v0.0.20/v0.0.20.zip) = d840d66196eb1d238991321ed9d11cfe674a17ef724a0e8561481fa72e4d5a71 -SIZE (go/devel_oq/oq-v0.0.20/v0.0.20.zip) = 920875 +TIMESTAMP = 1766110822 +SHA256 (go/devel_oq/oq-v0.0.21/v0.0.21.mod) = 96631ba5496f9e8769763e7fb030778e2bc914f55bdb871d43503f7a9269a1b9 +SIZE (go/devel_oq/oq-v0.0.21/v0.0.21.mod) = 1411 +SHA256 (go/devel_oq/oq-v0.0.21/v0.0.21.zip) = 76b7f5a3578278f02646aba5a5492454ec8ca249484c176325fb2089173ff376 +SIZE (go/devel_oq/oq-v0.0.21/v0.0.21.zip) = 921675 diff --git a/devel/py-qt6-pyqt/distinfo b/devel/py-qt6-pyqt/distinfo index ab09537c6a34..15b86fbc4173 100644 --- a/devel/py-qt6-pyqt/distinfo +++ b/devel/py-qt6-pyqt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1761268973 -SHA256 (pyqt6-6.10.0.tar.gz) = 710ecfd720d9a03b2c684881ae37f528e11d17e8f1bf96431d00a6a73f308e36 -SIZE (pyqt6-6.10.0.tar.gz) = 1079921 +TIMESTAMP = 1766216700 +SHA256 (pyqt6-6.10.1.tar.gz) = d733a6c712c0b7a7b99e4ad59b211ea25a5d1b9d1131e47a1f50b5e524266e57 +SIZE (pyqt6-6.10.1.tar.gz) = 1085250 diff --git a/devel/py-qt6-pyqt/pkg-plist b/devel/py-qt6-pyqt/pkg-plist index 87d2f3bbefc3..e0da7eea0567 100644 --- a/devel/py-qt6-pyqt/pkg-plist +++ b/devel/py-qt6-pyqt/pkg-plist @@ -153,6 +153,7 @@ bin/pyuic6 %%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_qhash.sip %%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_qlist.sip %%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_qmap.sip +%%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_qrangemodel.sip %%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_qset.sip %%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_std_chrono_duration.sip %%PYTHON_SITELIBDIR%%/PyQt6/bindings/QtCore/qpycore_std_optional.sip diff --git a/devel/py-sip/distinfo b/devel/py-sip/distinfo index 2494ab3145d8..da0980593c08 100644 --- a/devel/py-sip/distinfo +++ b/devel/py-sip/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765502852 -SHA256 (sip-6.15.0.tar.gz) = 3920f26515456ee21114a1f8282144f8c156b1aabc3b44424155d5f81396025f -SIZE (sip-6.15.0.tar.gz) = 2563129 +TIMESTAMP = 1766250366 +SHA256 (sip-6.15.1.tar.gz) = dc2e58c1798a74e1b31c28e837339822fe8fa55288ae30e8986eb28100ebca5a +SIZE (sip-6.15.1.tar.gz) = 2563506 diff --git a/devel/qt6-base/Makefile b/devel/qt6-base/Makefile index 1f270aa9ad4b..3520f858266b 100644 --- a/devel/qt6-base/Makefile +++ b/devel/qt6-base/Makefile @@ -1,5 +1,6 @@ PORTNAME= base DISTVERSION= ${QT6_VERSION} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt6- @@ -70,7 +71,8 @@ CUPS_LIB_DEPENDS= libcups.so:print/cups CUPS_CMAKE_BOOL= FEATURE_cups WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland -WAYLAND_CMAKE_BOOL= FEATURE_wayland +WAYLAND_CMAKE_BOOL= FEATURE_qtwaylandscanner \ + FEATURE_wayland X11_LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-icccm.so:x11/xcb-util-wm \ diff --git a/devel/qt6-base/pkg-plist b/devel/qt6-base/pkg-plist index c4360460bfdb..962c4b4e675d 100644 --- a/devel/qt6-base/pkg-plist +++ b/devel/qt6-base/pkg-plist @@ -3419,16 +3419,16 @@ lib/cmake/Qt6TestPrivate/Qt6TestPrivateVersionlessTargets.cmake %%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateTargets.cmake %%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateVersionlessAliasTargets.cmake %%WAYLAND%%lib/cmake/Qt6WaylandGlobalPrivate/Qt6WaylandGlobalPrivateVersionlessTargets.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandClientMacros.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandCompositorMacros.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsAdditionalTargetInfo.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfig.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersion.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersionImpl.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsDependencies.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets.cmake -lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsVersionlessTargets.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandClientMacros.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandCompositorMacros.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsAdditionalTargetInfo.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfig.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersion.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsConfigVersionImpl.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsDependencies.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsTargets.cmake +%%WAYLAND%%lib/cmake/Qt6WaylandScannerTools/Qt6WaylandScannerToolsVersionlessTargets.cmake lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake @@ -4137,7 +4137,7 @@ libdata/pkgconfig/Qt6Xml.pc %%QT_TOOLDIR%%/qt-internal-configure-tests %%QT_TOOLDIR%%/qt-testrunner.py %%QT_TOOLDIR%%/qvkgen -%%QT_TOOLDIR%%/qtwaylandscanner +%%WAYLAND%%%%QT_TOOLDIR%%/qtwaylandscanner %%QT_TOOLDIR%%/rcc %%QT_TOOLDIR%%/sanitizer-testrunner.py %%QT_TOOLDIR%%/syncqt diff --git a/devel/simdjson/Makefile b/devel/simdjson/Makefile index 82e6425038aa..3e6f4c7d987d 100644 --- a/devel/simdjson/Makefile +++ b/devel/simdjson/Makefile @@ -1,6 +1,6 @@ PORTNAME= simdjson DISTVERSIONPREFIX= v -PORTVERSION= 4.2.2 +PORTVERSION= 4.2.4 CATEGORIES= devel MAINTAINER= fuz@FreeBSD.org diff --git a/devel/simdjson/distinfo b/devel/simdjson/distinfo index b4041c543b96..cedefa5c9820 100644 --- a/devel/simdjson/distinfo +++ b/devel/simdjson/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1762943931 -SHA256 (simdjson-simdjson-v4.2.2_GH0.tar.gz) = 3efae22cb41f83299fe0b2e8a187af543d3dda93abbb910586f897df670f9eaa -SIZE (simdjson-simdjson-v4.2.2_GH0.tar.gz) = 4710677 +TIMESTAMP = 1766051925 +SHA256 (simdjson-simdjson-v4.2.4_GH0.tar.gz) = 6f942d018561a6c30838651a386a17e6e4abbfc396afd0f62740dea1810dedea +SIZE (simdjson-simdjson-v4.2.4_GH0.tar.gz) = 6042120 SHA256 (simdjson-simdjson-data-351949906abde446f0314bf79606fb5d884f5be7_GH0.tar.gz) = 257371accdfca69814ec88841031bd8183409abf5048fff797df516092b6ded9 SIZE (simdjson-simdjson-data-351949906abde446f0314bf79606fb5d884f5be7_GH0.tar.gz) = 6635608 diff --git a/dns/dnscontrol/Makefile b/dns/dnscontrol/Makefile index ecaa706971b9..8544e3d643c5 100644 --- a/dns/dnscontrol/Makefile +++ b/dns/dnscontrol/Makefile @@ -1,7 +1,6 @@ PORTNAME= dnscontrol DISTVERSIONPREFIX=v -DISTVERSION= 4.27.1 -PORTREVISION= 1 +DISTVERSION= 4.29.0 CATEGORIES= dns MAINTAINER= decke@FreeBSD.org diff --git a/dns/dnscontrol/distinfo b/dns/dnscontrol/distinfo index b09ae801b6fc..6781c5f45937 100644 --- a/dns/dnscontrol/distinfo +++ b/dns/dnscontrol/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1762689825 -SHA256 (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.mod) = 05308651eeef032139c119718fb3e79fac0ae226cef5a9cdbcc6b479fbc6827e -SIZE (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.mod) = 7650 -SHA256 (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.zip) = cc85a48ce4686f3e9d1b92914adf2dd71a44489cb83c18fa4136f3d231aae94b -SIZE (go/dns_dnscontrol/dnscontrol-v4.27.1/v4.27.1.zip) = 5577171 +TIMESTAMP = 1766133789 +SHA256 (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.mod) = 48cee65839e17c6353d14bcf710e9a45977acc346dd73ef8075026b4080c47ac +SIZE (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.mod) = 8630 +SHA256 (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.zip) = fab7285d4cec09895efa742bb8489a615d604c040f9e51647e5d2dd4b8d5abf7 +SIZE (go/dns_dnscontrol/dnscontrol-v4.29.0/v4.29.0.zip) = 5713579 diff --git a/dns/dnsmasq-devel/Makefile b/dns/dnsmasq-devel/Makefile index 06d297411326..a20c6f643af8 100644 --- a/dns/dnsmasq-devel/Makefile +++ b/dns/dnsmasq-devel/Makefile @@ -1,7 +1,7 @@ PORTNAME= dnsmasq DISTVERSION= 2.92rc3 # remember to bump PORTEPOCH when going from test to rc! # Leave the PORTREVISION in even if 0 to avoid accidental PORTEPOCH bumps: -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 7 CATEGORIES= dns MASTER_SITES= LOCAL/mandree/ \ @@ -56,6 +56,8 @@ CPPFLAGS+= -I${LOCALBASE}/include CONFLICTS_INSTALL= dnsmasq-2* +PATCH_STRIP= -p1 + SUB_FILES= pkg-message PORTDOCS= CHANGELOG CHANGELOG.archive FAQ doc.html setup.html diff --git a/dns/dnsmasq-devel/files/patch-inotify b/dns/dnsmasq-devel/files/patch-inotify new file mode 100644 index 000000000000..c9175850667f --- /dev/null +++ b/dns/dnsmasq-devel/files/patch-inotify @@ -0,0 +1,40 @@ +commit c1d456f4fbf1409b4aa61bbf4d358ddf616353e0 +Author: Matthias Andree <matthias.andree@gmx.de> +Date: Sat Dec 20 10:03:56 2025 +0100 + + Enable inotify support on FreeBSD 15. + + FreeBSD 15.0 has added Linux-compatible inotify support, so + enable it by looking if the version matches. Since FreeBSD inotify has + seen a few bug fixes in 2025H2, so only enable it if + __FreeBSD_version >= 1500068. The latter can be checked through + osreldate.h or sys/param.h; the latter defines more macros that clash + with dnsmasq's, such as MIN and MAX, so use the former. + +diff --git a/src/config.h b/src/config.h +index 0994f95..191c72e 100644 +--- a/src/config.h ++++ b/src/config.h +@@ -142,7 +142,8 @@ HAVE_LOOP + include functionality to probe for and remove DNS forwarding loops. + + HAVE_INOTIFY +- use the Linux inotify facility to efficiently re-read configuration files. ++ use the Linux and FreeBSD >= 15 inotify facility ++ to efficiently re-read configuration files. + + NO_ID + Don't report *.bind CHAOS info to clients, forward such requests upstream instead. +@@ -378,6 +379,12 @@ HAVE_SOCKADDR_SA_LEN + #if defined (HAVE_LINUX_NETWORK) && !defined(NO_INOTIFY) + #define HAVE_INOTIFY + #endif ++#if defined (__FreeBSD__) && __FreeBSD__ + 0 >= 15 ++# include <osreldate.h> ++# if __FreeBSD_version >= 1500068 /* 15.0.0 */ ++# define HAVE_INOTIFY ++# endif ++#endif + + /* This never compiles code, it's only used by the makefile to fingerprint builds. */ + #ifdef DNSMASQ_COMPILE_FLAGS diff --git a/editors/ad/Makefile b/editors/ad/Makefile index 374ddeccb050..9002afd6af2f 100644 --- a/editors/ad/Makefile +++ b/editors/ad/Makefile @@ -1,6 +1,5 @@ PORTNAME= ad -DISTVERSION= 0.3.1 -PORTREVISION= 8 +DISTVERSION= 0.4.0 CATEGORIES= editors MAINTAINER= fuz@FreeBSD.org diff --git a/editors/ad/Makefile.crates b/editors/ad/Makefile.crates index 5dfb62b166e3..e7279765201d 100644 --- a/editors/ad/Makefile.crates +++ b/editors/ad/Makefile.crates @@ -1,111 +1,160 @@ -CARGO_CRATES= aho-corasick-1.1.3 \ +CARGO_CRATES= adler32-1.2.0 \ + aho-corasick-1.1.4 \ + alloca-0.4.0 \ + allocator-api2-0.2.21 \ anes-0.1.6 \ - anstyle-1.0.8 \ - autocfg-1.4.0 \ + anstyle-1.0.13 \ + anyhow-1.0.100 \ + arbitrary-1.4.2 \ + assert_fs-1.1.3 \ + autocfg-1.5.0 \ bitflags-1.3.2 \ - bitflags-2.6.0 \ - bumpalo-3.16.0 \ + bitflags-2.10.0 \ + bstr-1.12.1 \ + bumpalo-3.19.0 \ + bytes-1.11.0 \ cast-0.3.0 \ - cc-1.2.2 \ - cfg-if-1.0.0 \ + cc-1.2.49 \ + cfg-if-1.0.4 \ ciborium-0.2.2 \ ciborium-io-0.2.2 \ ciborium-ll-0.2.2 \ - clap-4.5.19 \ - clap_builder-4.5.19 \ - clap_lex-0.7.2 \ - criterion-0.5.1 \ - criterion-plot-0.5.0 \ - crossbeam-deque-0.8.5 \ + clap-4.5.53 \ + clap_builder-4.5.53 \ + clap_lex-0.7.6 \ + core2-0.4.0 \ + crc32fast-1.5.0 \ + criterion-0.8.0 \ + criterion-plot-0.8.0 \ + crossbeam-deque-0.8.6 \ crossbeam-epoch-0.9.18 \ - crossbeam-utils-0.8.20 \ - crunchy-0.2.2 \ - either-1.13.0 \ - equivalent-1.0.1 \ + crossbeam-utils-0.8.21 \ + crunchy-0.2.4 \ + dary_heap-0.3.8 \ + derive_arbitrary-1.4.2 \ + difflib-0.4.0 \ + doc-comment-0.3.4 \ + either-1.15.0 \ + equivalent-1.0.2 \ + errno-0.3.14 \ + fastrand-2.3.0 \ + find-msvc-tools-0.1.5 \ fluent-uri-0.1.4 \ - half-2.4.1 \ - hashbrown-0.15.2 \ - hermit-abi-0.4.0 \ - indexmap-2.7.0 \ - is-terminal-0.4.13 \ - itertools-0.10.5 \ - itoa-1.0.11 \ - js-sys-0.3.70 \ + foldhash-0.2.0 \ + getrandom-0.3.4 \ + globset-0.4.18 \ + globwalk-0.9.1 \ + half-2.7.1 \ + hashbrown-0.16.1 \ + ignore-0.4.25 \ + indexmap-2.12.1 \ + itertools-0.13.0 \ + itoa-1.0.15 \ + jobserver-0.1.34 \ + js-sys-0.3.82 \ lazy_static-1.5.0 \ - libc-0.2.162 \ - libloading-0.8.6 \ - log-0.4.22 \ + lexopt-0.3.1 \ + libc-0.2.178 \ + libflate-2.2.1 \ + libflate_lz77-2.2.0 \ + libfuzzer-sys-0.4.10 \ + libloading-0.9.0 \ + linux-raw-sys-0.11.0 \ + log-0.4.29 \ lsp-types-0.97.0 \ man-0.3.0 \ - memchr-2.7.4 \ - nu-ansi-term-0.46.0 \ + memchr-2.7.6 \ + mio-1.1.0 \ + nu-ansi-term-0.50.3 \ num-traits-0.2.19 \ - once_cell-1.20.2 \ - oorandom-11.1.4 \ - overload-0.1.1 \ - pin-project-lite-0.2.14 \ + once_cell-1.21.3 \ + oorandom-11.1.5 \ + page_size-0.6.0 \ + pin-project-lite-0.2.16 \ plotters-0.3.7 \ plotters-backend-0.3.7 \ plotters-svg-0.3.7 \ - proc-macro2-1.0.87 \ - quote-1.0.37 \ - rayon-1.10.0 \ - rayon-core-1.12.1 \ - regex-1.11.0 \ - regex-automata-0.4.8 \ - regex-syntax-0.8.5 \ + predicates-3.1.3 \ + predicates-core-1.0.9 \ + predicates-tree-1.0.12 \ + proc-macro2-1.0.103 \ + quote-1.0.42 \ + r-efi-5.3.0 \ + rayon-1.11.0 \ + rayon-core-1.13.0 \ + regex-1.12.2 \ + regex-automata-0.4.13 \ + regex-syntax-0.8.8 \ + rle-decode-fast-1.0.3 \ roff-0.1.0 \ - ryu-1.0.18 \ + rustix-1.1.2 \ + rustversion-1.0.22 \ + ryu-1.0.20 \ same-file-1.0.6 \ - serde-1.0.215 \ - serde_derive-1.0.215 \ - serde_json-1.0.133 \ - serde_repr-0.1.19 \ - serde_spanned-0.6.8 \ + serde-1.0.228 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ + serde_json-1.0.145 \ + serde_repr-0.1.20 \ + serde_spanned-1.0.3 \ sharded-slab-0.1.7 \ shlex-1.3.0 \ - simple_test_case-1.2.0 \ - smallvec-1.13.2 \ + simple_coro-0.1.3 \ + simple_test_case-1.3.0 \ + simple_txtar-1.1.0 \ + smallvec-1.15.1 \ + socket2-0.6.1 \ streaming-iterator-0.1.9 \ + structex-0.6.0 \ subprocess-0.2.9 \ - syn-2.0.87 \ - thread_local-1.1.8 \ + syn-2.0.111 \ + tempfile-3.23.0 \ + termtree-0.5.1 \ + thread_local-1.1.9 \ tinytemplate-1.2.1 \ - toml-0.8.19 \ - toml_datetime-0.6.8 \ - toml_edit-0.22.22 \ - tracing-0.1.40 \ - tracing-attributes-0.1.27 \ - tracing-core-0.1.32 \ + tokio-1.48.0 \ + tokio-macros-2.6.0 \ + toml-0.9.8 \ + toml_datetime-0.7.3 \ + toml_parser-1.0.4 \ + toml_writer-1.0.4 \ + tracing-0.1.43 \ + tracing-attributes-0.1.31 \ + tracing-core-0.1.35 \ tracing-log-0.2.0 \ - tracing-subscriber-0.3.18 \ - tree-sitter-0.24.4 \ - tree-sitter-language-0.1.2 \ - tree-sitter-python-0.23.6 \ - tree-sitter-rust-0.23.2 \ - unicode-ident-1.0.13 \ - unicode-width-0.2.0 \ - valuable-0.1.0 \ + tracing-subscriber-0.3.22 \ + tree-sitter-0.25.10 \ + tree-sitter-language-0.1.5 \ + tree-sitter-python-0.25.0 \ + tree-sitter-rust-0.24.0 \ + unicode-ident-1.0.22 \ + unicode-width-0.2.2 \ + valuable-0.1.1 \ walkdir-2.5.0 \ - wasm-bindgen-0.2.93 \ - wasm-bindgen-backend-0.2.93 \ - wasm-bindgen-macro-0.2.93 \ - wasm-bindgen-macro-support-0.2.93 \ - wasm-bindgen-shared-0.2.93 \ - web-sys-0.3.70 \ + wasi-0.11.1+wasi-snapshot-preview1 \ + wasip2-1.0.1+wasi-0.2.4 \ + wasm-bindgen-0.2.105 \ + wasm-bindgen-macro-0.2.105 \ + wasm-bindgen-macro-support-0.2.105 \ + wasm-bindgen-shared-0.2.105 \ + web-sys-0.3.82 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ - winapi-util-0.1.9 \ + winapi-util-0.1.11 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ - windows-sys-0.52.0 \ - windows-sys-0.59.0 \ - windows-targets-0.52.6 \ - windows_aarch64_gnullvm-0.52.6 \ - windows_aarch64_msvc-0.52.6 \ - windows_i686_gnu-0.52.6 \ - windows_i686_gnullvm-0.52.6 \ - windows_i686_msvc-0.52.6 \ - windows_x86_64_gnu-0.52.6 \ - windows_x86_64_gnullvm-0.52.6 \ - windows_x86_64_msvc-0.52.6 \ - winnow-0.6.20 + windows-link-0.2.1 \ + windows-sys-0.60.2 \ + windows-sys-0.61.2 \ + windows-targets-0.53.5 \ + windows_aarch64_gnullvm-0.53.1 \ + windows_aarch64_msvc-0.53.1 \ + windows_i686_gnu-0.53.1 \ + windows_i686_gnullvm-0.53.1 \ + windows_i686_msvc-0.53.1 \ + windows_x86_64_gnu-0.53.1 \ + windows_x86_64_gnullvm-0.53.1 \ + windows_x86_64_msvc-0.53.1 \ + winnow-0.7.13 \ + wit-bindgen-0.46.0 \ + zerocopy-0.8.28 \ + zerocopy-derive-0.8.28 diff --git a/editors/ad/distinfo b/editors/ad/distinfo index 07339c0a6220..d340c23c3ebe 100644 --- a/editors/ad/distinfo +++ b/editors/ad/distinfo @@ -1,225 +1,323 @@ -TIMESTAMP = 1740053565 -SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 -SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 +TIMESTAMP = 1765798453 +SHA256 (rust/crates/adler32-1.2.0.crate) = aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234 +SIZE (rust/crates/adler32-1.2.0.crate) = 6411 +SHA256 (rust/crates/aho-corasick-1.1.4.crate) = ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 +SIZE (rust/crates/aho-corasick-1.1.4.crate) = 184015 +SHA256 (rust/crates/alloca-0.4.0.crate) = e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4 +SIZE (rust/crates/alloca-0.4.0.crate) = 4257 +SHA256 (rust/crates/allocator-api2-0.2.21.crate) = 683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923 +SIZE (rust/crates/allocator-api2-0.2.21.crate) = 63622 SHA256 (rust/crates/anes-0.1.6.crate) = 4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299 SIZE (rust/crates/anes-0.1.6.crate) = 23857 -SHA256 (rust/crates/anstyle-1.0.8.crate) = 1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1 -SIZE (rust/crates/anstyle-1.0.8.crate) = 15771 -SHA256 (rust/crates/autocfg-1.4.0.crate) = ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26 -SIZE (rust/crates/autocfg-1.4.0.crate) = 17712 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 +SHA256 (rust/crates/anyhow-1.0.100.crate) = a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61 +SIZE (rust/crates/anyhow-1.0.100.crate) = 54059 +SHA256 (rust/crates/arbitrary-1.4.2.crate) = c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1 +SIZE (rust/crates/arbitrary-1.4.2.crate) = 38307 +SHA256 (rust/crates/assert_fs-1.1.3.crate) = a652f6cb1f516886fcfee5e7a5c078b9ade62cfcb889524efe5a64d682dd27a9 +SIZE (rust/crates/assert_fs-1.1.3.crate) = 20176 +SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 +SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 -SHA256 (rust/crates/bitflags-2.6.0.crate) = b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de -SIZE (rust/crates/bitflags-2.6.0.crate) = 45357 -SHA256 (rust/crates/bumpalo-3.16.0.crate) = 79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c -SIZE (rust/crates/bumpalo-3.16.0.crate) = 85677 +SHA256 (rust/crates/bitflags-2.10.0.crate) = 812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3 +SIZE (rust/crates/bitflags-2.10.0.crate) = 48427 +SHA256 (rust/crates/bstr-1.12.1.crate) = 63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab +SIZE (rust/crates/bstr-1.12.1.crate) = 354916 +SHA256 (rust/crates/bumpalo-3.19.0.crate) = 46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43 +SIZE (rust/crates/bumpalo-3.19.0.crate) = 96414 +SHA256 (rust/crates/bytes-1.11.0.crate) = b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3 +SIZE (rust/crates/bytes-1.11.0.crate) = 78391 SHA256 (rust/crates/cast-0.3.0.crate) = 37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5 SIZE (rust/crates/cast-0.3.0.crate) = 11452 -SHA256 (rust/crates/cc-1.2.2.crate) = f34d93e62b03caf570cccc334cbc6c2fceca82f39211051345108adcba3eebdc -SIZE (rust/crates/cc-1.2.2.crate) = 98719 -SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd -SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 +SHA256 (rust/crates/cc-1.2.49.crate) = 90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215 +SIZE (rust/crates/cc-1.2.49.crate) = 93145 +SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 +SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 SHA256 (rust/crates/ciborium-0.2.2.crate) = 42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e SIZE (rust/crates/ciborium-0.2.2.crate) = 35611 SHA256 (rust/crates/ciborium-io-0.2.2.crate) = 05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757 SIZE (rust/crates/ciborium-io-0.2.2.crate) = 6697 SHA256 (rust/crates/ciborium-ll-0.2.2.crate) = 57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9 SIZE (rust/crates/ciborium-ll-0.2.2.crate) = 14695 -SHA256 (rust/crates/clap-4.5.19.crate) = 7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615 -SIZE (rust/crates/clap-4.5.19.crate) = 56377 -SHA256 (rust/crates/clap_builder-4.5.19.crate) = a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b -SIZE (rust/crates/clap_builder-4.5.19.crate) = 163596 -SHA256 (rust/crates/clap_lex-0.7.2.crate) = 1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97 -SIZE (rust/crates/clap_lex-0.7.2.crate) = 12805 -SHA256 (rust/crates/criterion-0.5.1.crate) = f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f -SIZE (rust/crates/criterion-0.5.1.crate) = 110088 -SHA256 (rust/crates/criterion-plot-0.5.0.crate) = 6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1 -SIZE (rust/crates/criterion-plot-0.5.0.crate) = 22706 -SHA256 (rust/crates/crossbeam-deque-0.8.5.crate) = 613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d -SIZE (rust/crates/crossbeam-deque-0.8.5.crate) = 21726 +SHA256 (rust/crates/clap-4.5.53.crate) = c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8 +SIZE (rust/crates/clap-4.5.53.crate) = 62036 +SHA256 (rust/crates/clap_builder-4.5.53.crate) = d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00 +SIZE (rust/crates/clap_builder-4.5.53.crate) = 170811 +SHA256 (rust/crates/clap_lex-0.7.6.crate) = a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d +SIZE (rust/crates/clap_lex-0.7.6.crate) = 13466 +SHA256 (rust/crates/core2-0.4.0.crate) = b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505 +SIZE (rust/crates/core2-0.4.0.crate) = 37075 +SHA256 (rust/crates/crc32fast-1.5.0.crate) = 9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511 +SIZE (rust/crates/crc32fast-1.5.0.crate) = 40723 +SHA256 (rust/crates/criterion-0.8.0.crate) = a0dfe5e9e71bdcf4e4954f7d14da74d1cdb92a3a07686452d1509652684b1aab +SIZE (rust/crates/criterion-0.8.0.crate) = 122319 +SHA256 (rust/crates/criterion-plot-0.8.0.crate) = 5de36c2bee19fba779808f92bf5d9b0fa5a40095c277aba10c458a12b35d21d6 +SIZE (rust/crates/criterion-plot-0.8.0.crate) = 24724 +SHA256 (rust/crates/crossbeam-deque-0.8.6.crate) = 9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51 +SIZE (rust/crates/crossbeam-deque-0.8.6.crate) = 22471 SHA256 (rust/crates/crossbeam-epoch-0.9.18.crate) = 5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e SIZE (rust/crates/crossbeam-epoch-0.9.18.crate) = 46875 -SHA256 (rust/crates/crossbeam-utils-0.8.20.crate) = 22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80 -SIZE (rust/crates/crossbeam-utils-0.8.20.crate) = 42487 -SHA256 (rust/crates/crunchy-0.2.2.crate) = 7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7 -SIZE (rust/crates/crunchy-0.2.2.crate) = 2995 -SHA256 (rust/crates/either-1.13.0.crate) = 60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0 -SIZE (rust/crates/either-1.13.0.crate) = 19169 -SHA256 (rust/crates/equivalent-1.0.1.crate) = 5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5 -SIZE (rust/crates/equivalent-1.0.1.crate) = 6615 +SHA256 (rust/crates/crossbeam-utils-0.8.21.crate) = d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28 +SIZE (rust/crates/crossbeam-utils-0.8.21.crate) = 42691 +SHA256 (rust/crates/crunchy-0.2.4.crate) = 460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5 +SIZE (rust/crates/crunchy-0.2.4.crate) = 3887 +SHA256 (rust/crates/dary_heap-0.3.8.crate) = 06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04 +SIZE (rust/crates/dary_heap-0.3.8.crate) = 26544 +SHA256 (rust/crates/derive_arbitrary-1.4.2.crate) = 1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a +SIZE (rust/crates/derive_arbitrary-1.4.2.crate) = 12290 +SHA256 (rust/crates/difflib-0.4.0.crate) = 6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8 +SIZE (rust/crates/difflib-0.4.0.crate) = 7638 +SHA256 (rust/crates/doc-comment-0.3.4.crate) = 780955b8b195a21ab8e4ac6b60dd1dbdcec1dc6c51c0617964b08c81785e12c9 +SIZE (rust/crates/doc-comment-0.3.4.crate) = 4341 +SHA256 (rust/crates/either-1.15.0.crate) = 48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719 +SIZE (rust/crates/either-1.15.0.crate) = 20114 +SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f +SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 +SHA256 (rust/crates/errno-0.3.14.crate) = 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb +SIZE (rust/crates/errno-0.3.14.crate) = 12002 +SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be +SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 +SHA256 (rust/crates/find-msvc-tools-0.1.5.crate) = 3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844 +SIZE (rust/crates/find-msvc-tools-0.1.5.crate) = 30942 SHA256 (rust/crates/fluent-uri-0.1.4.crate) = 17c704e9dbe1ddd863da1e6ff3567795087b1eb201ce80d8fa81162e1516500d SIZE (rust/crates/fluent-uri-0.1.4.crate) = 33596 -SHA256 (rust/crates/half-2.4.1.crate) = 6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888 -SIZE (rust/crates/half-2.4.1.crate) = 50892 -SHA256 (rust/crates/hashbrown-0.15.2.crate) = bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289 -SIZE (rust/crates/hashbrown-0.15.2.crate) = 138478 -SHA256 (rust/crates/hermit-abi-0.4.0.crate) = fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc -SIZE (rust/crates/hermit-abi-0.4.0.crate) = 16310 -SHA256 (rust/crates/indexmap-2.7.0.crate) = 62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f -SIZE (rust/crates/indexmap-2.7.0.crate) = 85335 -SHA256 (rust/crates/is-terminal-0.4.13.crate) = 261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b -SIZE (rust/crates/is-terminal-0.4.13.crate) = 7665 -SHA256 (rust/crates/itertools-0.10.5.crate) = b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473 -SIZE (rust/crates/itertools-0.10.5.crate) = 115354 -SHA256 (rust/crates/itoa-1.0.11.crate) = 49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b -SIZE (rust/crates/itoa-1.0.11.crate) = 10563 -SHA256 (rust/crates/js-sys-0.3.70.crate) = 1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a -SIZE (rust/crates/js-sys-0.3.70.crate) = 53863 +SHA256 (rust/crates/foldhash-0.2.0.crate) = 77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb +SIZE (rust/crates/foldhash-0.2.0.crate) = 23329 +SHA256 (rust/crates/getrandom-0.3.4.crate) = 899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd +SIZE (rust/crates/getrandom-0.3.4.crate) = 50932 +SHA256 (rust/crates/globset-0.4.18.crate) = 52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3 +SIZE (rust/crates/globset-0.4.18.crate) = 28970 +SHA256 (rust/crates/globwalk-0.9.1.crate) = 0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757 +SIZE (rust/crates/globwalk-0.9.1.crate) = 12572 +SHA256 (rust/crates/half-2.7.1.crate) = 6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b +SIZE (rust/crates/half-2.7.1.crate) = 61040 +SHA256 (rust/crates/hashbrown-0.16.1.crate) = 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 +SIZE (rust/crates/hashbrown-0.16.1.crate) = 147785 +SHA256 (rust/crates/ignore-0.4.25.crate) = d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a +SIZE (rust/crates/ignore-0.4.25.crate) = 59154 +SHA256 (rust/crates/indexmap-2.12.1.crate) = 0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2 +SIZE (rust/crates/indexmap-2.12.1.crate) = 100184 +SHA256 (rust/crates/itertools-0.13.0.crate) = 413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186 +SIZE (rust/crates/itertools-0.13.0.crate) = 146261 +SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c +SIZE (rust/crates/itoa-1.0.15.crate) = 11231 +SHA256 (rust/crates/jobserver-0.1.34.crate) = 9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33 +SIZE (rust/crates/jobserver-0.1.34.crate) = 29013 +SHA256 (rust/crates/js-sys-0.3.82.crate) = b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65 +SIZE (rust/crates/js-sys-0.3.82.crate) = 56436 SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 -SHA256 (rust/crates/libc-0.2.162.crate) = 18d287de67fe55fd7e1581fe933d965a5a9477b38e949cfa9f8574ef01506398 -SIZE (rust/crates/libc-0.2.162.crate) = 769354 -SHA256 (rust/crates/libloading-0.8.6.crate) = fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34 -SIZE (rust/crates/libloading-0.8.6.crate) = 28922 -SHA256 (rust/crates/log-0.4.22.crate) = a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24 -SIZE (rust/crates/log-0.4.22.crate) = 44027 +SHA256 (rust/crates/lexopt-0.3.1.crate) = 9fa0e2a1fcbe2f6be6c42e342259976206b383122fc152e872795338b5a3f3a7 +SIZE (rust/crates/lexopt-0.3.1.crate) = 26158 +SHA256 (rust/crates/libc-0.2.178.crate) = 37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091 +SIZE (rust/crates/libc-0.2.178.crate) = 783720 +SHA256 (rust/crates/libflate-2.2.1.crate) = e3248b8d211bd23a104a42d81b4fa8bb8ac4a3b75e7a43d85d2c9ccb6179cd74 +SIZE (rust/crates/libflate-2.2.1.crate) = 40550 +SHA256 (rust/crates/libflate_lz77-2.2.0.crate) = a599cb10a9cd92b1300debcef28da8f70b935ec937f44fcd1b70a7c986a11c5c +SIZE (rust/crates/libflate_lz77-2.2.0.crate) = 7627 +SHA256 (rust/crates/libfuzzer-sys-0.4.10.crate) = 5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404 +SIZE (rust/crates/libfuzzer-sys-0.4.10.crate) = 133968 +SHA256 (rust/crates/libloading-0.9.0.crate) = 754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60 +SIZE (rust/crates/libloading-0.9.0.crate) = 33816 +SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 +SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 +SHA256 (rust/crates/log-0.4.29.crate) = 5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897 +SIZE (rust/crates/log-0.4.29.crate) = 51515 SHA256 (rust/crates/lsp-types-0.97.0.crate) = 53353550a17c04ac46c585feb189c2db82154fc84b79c7a66c96c2c644f66071 SIZE (rust/crates/lsp-types-0.97.0.crate) = 70764 SHA256 (rust/crates/man-0.3.0.crate) = ebf5fa795187a80147b1ac10aaedcf5ffd3bbeb1838bda61801a1c9ad700a1c9 SIZE (rust/crates/man-0.3.0.crate) = 16839 -SHA256 (rust/crates/memchr-2.7.4.crate) = 78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3 -SIZE (rust/crates/memchr-2.7.4.crate) = 96670 -SHA256 (rust/crates/nu-ansi-term-0.46.0.crate) = 77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84 -SIZE (rust/crates/nu-ansi-term-0.46.0.crate) = 24311 +SHA256 (rust/crates/memchr-2.7.6.crate) = f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273 +SIZE (rust/crates/memchr-2.7.6.crate) = 97616 +SHA256 (rust/crates/mio-1.1.0.crate) = 69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873 +SIZE (rust/crates/mio-1.1.0.crate) = 105232 +SHA256 (rust/crates/nu-ansi-term-0.50.3.crate) = 7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5 +SIZE (rust/crates/nu-ansi-term-0.50.3.crate) = 29597 SHA256 (rust/crates/num-traits-0.2.19.crate) = 071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841 SIZE (rust/crates/num-traits-0.2.19.crate) = 51631 -SHA256 (rust/crates/once_cell-1.20.2.crate) = 1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775 -SIZE (rust/crates/once_cell-1.20.2.crate) = 33394 -SHA256 (rust/crates/oorandom-11.1.4.crate) = b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9 -SIZE (rust/crates/oorandom-11.1.4.crate) = 10201 -SHA256 (rust/crates/overload-0.1.1.crate) = b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39 -SIZE (rust/crates/overload-0.1.1.crate) = 24439 -SHA256 (rust/crates/pin-project-lite-0.2.14.crate) = bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02 -SIZE (rust/crates/pin-project-lite-0.2.14.crate) = 28817 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 +SHA256 (rust/crates/oorandom-11.1.5.crate) = d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e +SIZE (rust/crates/oorandom-11.1.5.crate) = 23750 +SHA256 (rust/crates/page_size-0.6.0.crate) = 30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da +SIZE (rust/crates/page_size-0.6.0.crate) = 8479 +SHA256 (rust/crates/pin-project-lite-0.2.16.crate) = 3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b +SIZE (rust/crates/pin-project-lite-0.2.16.crate) = 30504 SHA256 (rust/crates/plotters-0.3.7.crate) = 5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747 SIZE (rust/crates/plotters-0.3.7.crate) = 149031 SHA256 (rust/crates/plotters-backend-0.3.7.crate) = df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a SIZE (rust/crates/plotters-backend-0.3.7.crate) = 13709 SHA256 (rust/crates/plotters-svg-0.3.7.crate) = 51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670 SIZE (rust/crates/plotters-svg-0.3.7.crate) = 6715 -SHA256 (rust/crates/proc-macro2-1.0.87.crate) = b3e4daa0dcf6feba26f985457cdf104d4b4256fc5a09547140f3631bb076b19a -SIZE (rust/crates/proc-macro2-1.0.87.crate) = 49121 -SHA256 (rust/crates/quote-1.0.37.crate) = b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af -SIZE (rust/crates/quote-1.0.37.crate) = 28558 -SHA256 (rust/crates/rayon-1.10.0.crate) = b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa -SIZE (rust/crates/rayon-1.10.0.crate) = 180155 -SHA256 (rust/crates/rayon-core-1.12.1.crate) = 1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2 -SIZE (rust/crates/rayon-core-1.12.1.crate) = 70701 -SHA256 (rust/crates/regex-1.11.0.crate) = 38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8 -SIZE (rust/crates/regex-1.11.0.crate) = 254059 -SHA256 (rust/crates/regex-automata-0.4.8.crate) = 368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3 -SIZE (rust/crates/regex-automata-0.4.8.crate) = 617784 -SHA256 (rust/crates/regex-syntax-0.8.5.crate) = 2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c -SIZE (rust/crates/regex-syntax-0.8.5.crate) = 357541 +SHA256 (rust/crates/predicates-3.1.3.crate) = a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573 +SIZE (rust/crates/predicates-3.1.3.crate) = 24063 +SHA256 (rust/crates/predicates-core-1.0.9.crate) = 727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa +SIZE (rust/crates/predicates-core-1.0.9.crate) = 8618 +SHA256 (rust/crates/predicates-tree-1.0.12.crate) = 72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c +SIZE (rust/crates/predicates-tree-1.0.12.crate) = 8392 +SHA256 (rust/crates/proc-macro2-1.0.103.crate) = 5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8 +SIZE (rust/crates/proc-macro2-1.0.103.crate) = 60024 +SHA256 (rust/crates/quote-1.0.42.crate) = a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f +SIZE (rust/crates/quote-1.0.42.crate) = 31504 +SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f +SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 +SHA256 (rust/crates/rayon-1.11.0.crate) = 368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f +SIZE (rust/crates/rayon-1.11.0.crate) = 182470 +SHA256 (rust/crates/rayon-core-1.13.0.crate) = 22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91 +SIZE (rust/crates/rayon-core-1.13.0.crate) = 73151 +SHA256 (rust/crates/regex-1.12.2.crate) = 843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4 +SIZE (rust/crates/regex-1.12.2.crate) = 163843 +SHA256 (rust/crates/regex-automata-0.4.13.crate) = 5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c +SIZE (rust/crates/regex-automata-0.4.13.crate) = 625250 +SHA256 (rust/crates/regex-syntax-0.8.8.crate) = 7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58 +SIZE (rust/crates/regex-syntax-0.8.8.crate) = 359141 +SHA256 (rust/crates/rle-decode-fast-1.0.3.crate) = 3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422 +SIZE (rust/crates/rle-decode-fast-1.0.3.crate) = 62086 SHA256 (rust/crates/roff-0.1.0.crate) = e33e4fb37ba46888052c763e4ec2acfedd8f00f62897b630cadb6298b833675e SIZE (rust/crates/roff-0.1.0.crate) = 7493 -SHA256 (rust/crates/ryu-1.0.18.crate) = f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f -SIZE (rust/crates/ryu-1.0.18.crate) = 47713 +SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e +SIZE (rust/crates/rustix-1.1.2.crate) = 422717 +SHA256 (rust/crates/rustversion-1.0.22.crate) = b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d +SIZE (rust/crates/rustversion-1.0.22.crate) = 21096 +SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f +SIZE (rust/crates/ryu-1.0.20.crate) = 48738 SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 SIZE (rust/crates/same-file-1.0.6.crate) = 10183 -SHA256 (rust/crates/serde-1.0.215.crate) = 6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f -SIZE (rust/crates/serde-1.0.215.crate) = 78527 -SHA256 (rust/crates/serde_derive-1.0.215.crate) = ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0 -SIZE (rust/crates/serde_derive-1.0.215.crate) = 57092 -SHA256 (rust/crates/serde_json-1.0.133.crate) = c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377 -SIZE (rust/crates/serde_json-1.0.133.crate) = 150739 -SHA256 (rust/crates/serde_repr-0.1.19.crate) = 6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9 -SIZE (rust/crates/serde_repr-0.1.19.crate) = 9997 -SHA256 (rust/crates/serde_spanned-0.6.8.crate) = 87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1 -SIZE (rust/crates/serde_spanned-0.6.8.crate) = 9330 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 +SHA256 (rust/crates/serde_json-1.0.145.crate) = 402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c +SIZE (rust/crates/serde_json-1.0.145.crate) = 155748 +SHA256 (rust/crates/serde_repr-0.1.20.crate) = 175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c +SIZE (rust/crates/serde_repr-0.1.20.crate) = 12627 +SHA256 (rust/crates/serde_spanned-1.0.3.crate) = e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392 +SIZE (rust/crates/serde_spanned-1.0.3.crate) = 11011 SHA256 (rust/crates/sharded-slab-0.1.7.crate) = f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6 SIZE (rust/crates/sharded-slab-0.1.7.crate) = 58227 SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 SIZE (rust/crates/shlex-1.3.0.crate) = 18713 -SHA256 (rust/crates/simple_test_case-1.2.0.crate) = 5d0649fa40b80dcacda1cabd018fd47b6b0c7fbbda6e1c3f658a6c4d5926500a -SIZE (rust/crates/simple_test_case-1.2.0.crate) = 9956 -SHA256 (rust/crates/smallvec-1.13.2.crate) = 3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67 -SIZE (rust/crates/smallvec-1.13.2.crate) = 35216 +SHA256 (rust/crates/simple_coro-0.1.3.crate) = 92802be477870645da846efac4217346cb92b80e1bad2b71ad73da2c156a6f7c +SIZE (rust/crates/simple_coro-0.1.3.crate) = 13693 +SHA256 (rust/crates/simple_test_case-1.3.0.crate) = 6909e2382b73068b0172c9c28726b6fb9efeef51742ecfd05b9260c62c42bb8e +SIZE (rust/crates/simple_test_case-1.3.0.crate) = 11229 +SHA256 (rust/crates/simple_txtar-1.1.0.crate) = 373fac8aec0b1d99f0915cb639ce66f615a8f4f67e237c39058bc38e1fa89a62 +SIZE (rust/crates/simple_txtar-1.1.0.crate) = 5627 +SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 +SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 +SHA256 (rust/crates/socket2-0.6.1.crate) = 17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881 +SIZE (rust/crates/socket2-0.6.1.crate) = 58486 SHA256 (rust/crates/streaming-iterator-0.1.9.crate) = 2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520 SIZE (rust/crates/streaming-iterator-0.1.9.crate) = 18482 +SHA256 (rust/crates/structex-0.6.0.crate) = f42c1c8d013d88c0ccfa0843734f0d714b0c434dfd65459d4670769041ccf57b +SIZE (rust/crates/structex-0.6.0.crate) = 33672 SHA256 (rust/crates/subprocess-0.2.9.crate) = 0c2e86926081dda636c546d8c5e641661049d7562a68f5488be4a1f7f66f6086 SIZE (rust/crates/subprocess-0.2.9.crate) = 46463 -SHA256 (rust/crates/syn-2.0.87.crate) = 25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d -SIZE (rust/crates/syn-2.0.87.crate) = 278076 -SHA256 (rust/crates/thread_local-1.1.8.crate) = 8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c -SIZE (rust/crates/thread_local-1.1.8.crate) = 13962 +SHA256 (rust/crates/syn-2.0.111.crate) = 390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87 +SIZE (rust/crates/syn-2.0.111.crate) = 302117 +SHA256 (rust/crates/tempfile-3.23.0.crate) = 2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16 +SIZE (rust/crates/tempfile-3.23.0.crate) = 43063 +SHA256 (rust/crates/termtree-0.5.1.crate) = 8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683 +SIZE (rust/crates/termtree-0.5.1.crate) = 8498 +SHA256 (rust/crates/thread_local-1.1.9.crate) = f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185 +SIZE (rust/crates/thread_local-1.1.9.crate) = 19315 SHA256 (rust/crates/tinytemplate-1.2.1.crate) = be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc SIZE (rust/crates/tinytemplate-1.2.1.crate) = 26490 -SHA256 (rust/crates/toml-0.8.19.crate) = a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e -SIZE (rust/crates/toml-0.8.19.crate) = 50974 -SHA256 (rust/crates/toml_datetime-0.6.8.crate) = 0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41 -SIZE (rust/crates/toml_datetime-0.6.8.crate) = 12028 -SHA256 (rust/crates/toml_edit-0.22.22.crate) = 4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5 -SIZE (rust/crates/toml_edit-0.22.22.crate) = 106387 -SHA256 (rust/crates/tracing-0.1.40.crate) = c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef -SIZE (rust/crates/tracing-0.1.40.crate) = 79459 -SHA256 (rust/crates/tracing-attributes-0.1.27.crate) = 34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7 -SIZE (rust/crates/tracing-attributes-0.1.27.crate) = 32241 -SHA256 (rust/crates/tracing-core-0.1.32.crate) = c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54 -SIZE (rust/crates/tracing-core-0.1.32.crate) = 61221 +SHA256 (rust/crates/tokio-1.48.0.crate) = ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408 +SIZE (rust/crates/tokio-1.48.0.crate) = 843434 +SHA256 (rust/crates/tokio-macros-2.6.0.crate) = af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5 +SIZE (rust/crates/tokio-macros-2.6.0.crate) = 16505 +SHA256 (rust/crates/toml-0.9.8.crate) = f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8 +SIZE (rust/crates/toml-0.9.8.crate) = 56104 +SHA256 (rust/crates/toml_datetime-0.7.3.crate) = f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533 +SIZE (rust/crates/toml_datetime-0.7.3.crate) = 17827 +SHA256 (rust/crates/toml_parser-1.0.4.crate) = c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e +SIZE (rust/crates/toml_parser-1.0.4.crate) = 34978 +SHA256 (rust/crates/toml_writer-1.0.4.crate) = df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2 +SIZE (rust/crates/toml_writer-1.0.4.crate) = 17146 +SHA256 (rust/crates/tracing-0.1.43.crate) = 2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647 +SIZE (rust/crates/tracing-0.1.43.crate) = 90033 +SHA256 (rust/crates/tracing-attributes-0.1.31.crate) = 7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da +SIZE (rust/crates/tracing-attributes-0.1.31.crate) = 39733 +SHA256 (rust/crates/tracing-core-0.1.35.crate) = 7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c +SIZE (rust/crates/tracing-core-0.1.35.crate) = 63837 SHA256 (rust/crates/tracing-log-0.2.0.crate) = ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3 SIZE (rust/crates/tracing-log-0.2.0.crate) = 17561 -SHA256 (rust/crates/tracing-subscriber-0.3.18.crate) = ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b -SIZE (rust/crates/tracing-subscriber-0.3.18.crate) = 196312 -SHA256 (rust/crates/tree-sitter-0.24.4.crate) = b67baf55e7e1b6806063b1e51041069c90afff16afcbbccd278d899f9d84bca4 -SIZE (rust/crates/tree-sitter-0.24.4.crate) = 176161 -SHA256 (rust/crates/tree-sitter-language-0.1.2.crate) = e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600 -SIZE (rust/crates/tree-sitter-language-0.1.2.crate) = 1247 -SHA256 (rust/crates/tree-sitter-python-0.23.6.crate) = 3d065aaa27f3aaceaf60c1f0e0ac09e1cb9eb8ed28e7bcdaa52129cffc7f4b04 -SIZE (rust/crates/tree-sitter-python-0.23.6.crate) = 175831 -SHA256 (rust/crates/tree-sitter-rust-0.23.2.crate) = a4d64d449ca63e683c562c7743946a646671ca23947b9c925c0cfbe65051a4af -SIZE (rust/crates/tree-sitter-rust-0.23.2.crate) = 343880 -SHA256 (rust/crates/unicode-ident-1.0.13.crate) = e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe -SIZE (rust/crates/unicode-ident-1.0.13.crate) = 43279 -SHA256 (rust/crates/unicode-width-0.2.0.crate) = 1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd -SIZE (rust/crates/unicode-width-0.2.0.crate) = 271509 -SHA256 (rust/crates/valuable-0.1.0.crate) = 830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d -SIZE (rust/crates/valuable-0.1.0.crate) = 27718 +SHA256 (rust/crates/tracing-subscriber-0.3.22.crate) = 2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e +SIZE (rust/crates/tracing-subscriber-0.3.22.crate) = 212851 +SHA256 (rust/crates/tree-sitter-0.25.10.crate) = 78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87 +SIZE (rust/crates/tree-sitter-0.25.10.crate) = 197383 +SHA256 (rust/crates/tree-sitter-language-0.1.5.crate) = c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8 +SIZE (rust/crates/tree-sitter-language-0.1.5.crate) = 1887 +SHA256 (rust/crates/tree-sitter-python-0.25.0.crate) = 6bf85fd39652e740bf60f46f4cda9492c3a9ad75880575bf14960f775cb74a1c +SIZE (rust/crates/tree-sitter-python-0.25.0.crate) = 180146 +SHA256 (rust/crates/tree-sitter-rust-0.24.0.crate) = 4b9b18034c684a2420722be8b2a91c9c44f2546b631c039edf575ccba8c61be1 +SIZE (rust/crates/tree-sitter-rust-0.24.0.crate) = 361995 +SHA256 (rust/crates/unicode-ident-1.0.22.crate) = 9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5 +SIZE (rust/crates/unicode-ident-1.0.22.crate) = 47919 +SHA256 (rust/crates/unicode-width-0.2.2.crate) = b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254 +SIZE (rust/crates/unicode-width-0.2.2.crate) = 282768 +SHA256 (rust/crates/valuable-0.1.1.crate) = ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65 +SIZE (rust/crates/valuable-0.1.1.crate) = 28679 SHA256 (rust/crates/walkdir-2.5.0.crate) = 29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b SIZE (rust/crates/walkdir-2.5.0.crate) = 23951 -SHA256 (rust/crates/wasm-bindgen-0.2.93.crate) = a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5 -SIZE (rust/crates/wasm-bindgen-0.2.93.crate) = 43769 -SHA256 (rust/crates/wasm-bindgen-backend-0.2.93.crate) = 9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b -SIZE (rust/crates/wasm-bindgen-backend-0.2.93.crate) = 30344 -SHA256 (rust/crates/wasm-bindgen-macro-0.2.93.crate) = 585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf -SIZE (rust/crates/wasm-bindgen-macro-0.2.93.crate) = 6822 -SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.93.crate) = afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836 -SIZE (rust/crates/wasm-bindgen-macro-support-0.2.93.crate) = 20642 -SHA256 (rust/crates/wasm-bindgen-shared-0.2.93.crate) = c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484 -SIZE (rust/crates/wasm-bindgen-shared-0.2.93.crate) = 7527 -SHA256 (rust/crates/web-sys-0.3.70.crate) = 26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0 -SIZE (rust/crates/web-sys-0.3.70.crate) = 615438 +SHA256 (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b +SIZE (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = 28477 +SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 +SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 +SHA256 (rust/crates/wasm-bindgen-0.2.105.crate) = da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60 +SIZE (rust/crates/wasm-bindgen-0.2.105.crate) = 48215 +SHA256 (rust/crates/wasm-bindgen-macro-0.2.105.crate) = 04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2 +SIZE (rust/crates/wasm-bindgen-macro-0.2.105.crate) = 9264 +SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.105.crate) = 420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc +SIZE (rust/crates/wasm-bindgen-macro-support-0.2.105.crate) = 49633 +SHA256 (rust/crates/wasm-bindgen-shared-0.2.105.crate) = 76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76 +SIZE (rust/crates/wasm-bindgen-shared-0.2.105.crate) = 9269 +SHA256 (rust/crates/web-sys-0.3.82.crate) = 3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1 +SIZE (rust/crates/web-sys-0.3.82.crate) = 644272 SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 -SHA256 (rust/crates/winapi-util-0.1.9.crate) = cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb -SIZE (rust/crates/winapi-util-0.1.9.crate) = 12464 +SHA256 (rust/crates/winapi-util-0.1.11.crate) = c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22 +SIZE (rust/crates/winapi-util-0.1.11.crate) = 13368 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 -SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d -SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877 -SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b -SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 -SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 -SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 -SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 -SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 -SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 -SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 -SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b -SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 -SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 -SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 -SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 -SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 -SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 -SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 -SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d -SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 -SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec -SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 -SHA256 (rust/crates/winnow-0.6.20.crate) = 36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b -SIZE (rust/crates/winnow-0.6.20.crate) = 163617 -SHA256 (sminez-ad-0.3.1_GH0.tar.gz) = 809cd09550daf38b1c4b7d19b975e6dbeb85f424f8942f20fc9cd7808c1ef196 -SIZE (sminez-ad-0.3.1_GH0.tar.gz) = 644795 +SHA256 (rust/crates/windows-link-0.2.1.crate) = f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 +SIZE (rust/crates/windows-link-0.2.1.crate) = 6133 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-sys-0.61.2.crate) = ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc +SIZE (rust/crates/windows-sys-0.61.2.crate) = 2517186 +SHA256 (rust/crates/windows-targets-0.53.5.crate) = 4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3 +SIZE (rust/crates/windows-targets-0.53.5.crate) = 7126 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = 787748 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.1.crate) = b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006 +SIZE (rust/crates/windows_aarch64_msvc-0.53.1.crate) = 838009 +SHA256 (rust/crates/windows_i686_gnu-0.53.1.crate) = 960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3 +SIZE (rust/crates/windows_i686_gnu-0.53.1.crate) = 939775 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.1.crate) = fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c +SIZE (rust/crates/windows_i686_gnullvm-0.53.1.crate) = 857396 +SHA256 (rust/crates/windows_i686_msvc-0.53.1.crate) = 1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2 +SIZE (rust/crates/windows_i686_msvc-0.53.1.crate) = 907688 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499 +SIZE (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 903712 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 787739 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.1.crate) = d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650 +SIZE (rust/crates/windows_x86_64_msvc-0.53.1.crate) = 837950 +SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf +SIZE (rust/crates/winnow-0.7.13.crate) = 174454 +SHA256 (rust/crates/wit-bindgen-0.46.0.crate) = f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59 +SIZE (rust/crates/wit-bindgen-0.46.0.crate) = 60508 +SHA256 (rust/crates/zerocopy-0.8.28.crate) = 43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90 +SIZE (rust/crates/zerocopy-0.8.28.crate) = 253838 +SHA256 (rust/crates/zerocopy-derive-0.8.28.crate) = c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26 +SIZE (rust/crates/zerocopy-derive-0.8.28.crate) = 90241 +SHA256 (sminez-ad-0.4.0_GH0.tar.gz) = e35cf1030bc24bf336066fcd367e8a022d097357b896cb316183993951d4ffb8 +SIZE (sminez-ad-0.4.0_GH0.tar.gz) = 3223056 diff --git a/editors/ad/pkg-plist b/editors/ad/pkg-plist index 1620b10729d5..5e36e8d50fe8 100644 --- a/editors/ad/pkg-plist +++ b/editors/ad/pkg-plist @@ -1,6 +1,12 @@ bin/ad %%PORTDOCS%%%%DOCSDIR%%/9p.md %%PORTDOCS%%%%DOCSDIR%%/address-syntax.md +%%PORTDOCS%%%%DOCSDIR%%/demos/exec/edit-with-external-commands +%%PORTDOCS%%%%DOCSDIR%%/demos/exec/run-external-commands +%%PORTDOCS%%%%DOCSDIR%%/demos/scratch-buffer/fsys +%%PORTDOCS%%%%DOCSDIR%%/demos/scratch-buffer/index +%%PORTDOCS%%%%DOCSDIR%%/demos/scratch-buffer/load-exec +%%PORTDOCS%%%%DOCSDIR%%/demos/scratch-buffer/overview %%PORTDOCS%%%%DOCSDIR%%/design.md %%PORTDOCS%%%%DOCSDIR%%/tour/executing %%PORTDOCS%%%%DOCSDIR%%/tour/fsys diff --git a/editors/diakonos/Makefile b/editors/diakonos/Makefile index d19a081a5394..7911a936e8f2 100644 --- a/editors/diakonos/Makefile +++ b/editors/diakonos/Makefile @@ -4,7 +4,7 @@ DISTVERSION= 0.9.7 PORTREVISION= 1 CATEGORIES= editors ruby -MAINTAINER= cpetrik@proton.me +MAINTAINER= ports@FreeBSD.org COMMENT= Console editor for the masses WWW= https://github.com/Pistos/diakonos diff --git a/editors/vscode/Makefile.version b/editors/vscode/Makefile.version index 57026b24956e..121e47fe5551 100644 --- a/editors/vscode/Makefile.version +++ b/editors/vscode/Makefile.version @@ -1,2 +1,2 @@ -VSCODE_VERSION= 1.107.0 -SOURCE_COMMIT_HASH= 302ff6a2e235c95b88e587d4a4b6eeb1b6613297 +VSCODE_VERSION= 1.107.1 +SOURCE_COMMIT_HASH= 994fd12f8d3a5aa16f17d42c041e5809167e845a diff --git a/editors/vscode/distinfo b/editors/vscode/distinfo index 5bc95718674c..aabacb98c484 100644 --- a/editors/vscode/distinfo +++ b/editors/vscode/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1765693727 -SHA256 (vscode/vscode-node-modules-1.107.0.tar.gz) = 2540f57eab612c3f8d773fa2ddd3634f55916d89e9f26385b21e25663b6e141a -SIZE (vscode/vscode-node-modules-1.107.0.tar.gz) = 467359399 -SHA256 (vscode/vscode-marketplace-exts-1.107.0.tar.gz) = 8b50dde24b1ced293323bb81900da5645dee952866dad8af6247cde6abee784b -SIZE (vscode/vscode-marketplace-exts-1.107.0.tar.gz) = 1711786 -SHA256 (vscode/microsoft-vscode-1.107.0_GH0.tar.gz) = 6233b61cb7b5f62eca82de2d2c6c960eaec4bccbdc27ed00076eb34dd27939e4 -SIZE (vscode/microsoft-vscode-1.107.0_GH0.tar.gz) = 24211409 +TIMESTAMP = 1766179261 +SHA256 (vscode/vscode-node-modules-1.107.1.tar.gz) = e9e393fdfa331362ce63664ffbd278a6951a8d0d5691bf7e2206c21599841e54 +SIZE (vscode/vscode-node-modules-1.107.1.tar.gz) = 467213984 +SHA256 (vscode/vscode-marketplace-exts-1.107.1.tar.gz) = 1c969e8c5d2ef824564888cc425387d585dc0a2926071d4d1d0a5bf425fbdff5 +SIZE (vscode/vscode-marketplace-exts-1.107.1.tar.gz) = 1702815 +SHA256 (vscode/microsoft-vscode-1.107.1_GH0.tar.gz) = 695707e9a46ce79fc03faece47db443ff940df0e59c5094562a0b9e0610caea2 +SIZE (vscode/microsoft-vscode-1.107.1_GH0.tar.gz) = 24211873 diff --git a/editors/zed/Makefile b/editors/zed/Makefile index a31eeed6ef28..043b80818de3 100644 --- a/editors/zed/Makefile +++ b/editors/zed/Makefile @@ -1,7 +1,6 @@ PORTNAME= zed DISTVERSIONPREFIX= v -DISTVERSION= 0.216.1 -PORTREVISION= 1 +DISTVERSION= 0.217.3 CATEGORIES= editors PKGNAMESUFFIX= -editor diff --git a/editors/zed/Makefile.crates b/editors/zed/Makefile.crates index aba971c2fbf0..881cf54fdba2 100644 --- a/editors/zed/Makefile.crates +++ b/editors/zed/Makefile.crates @@ -1,8 +1,8 @@ CARGO_CRATES= addr2line-0.25.1 \ adler2-2.0.1 \ aes-0.8.4 \ - agent-client-protocol-0.8.0 \ - agent-client-protocol-schema-0.9.1 \ + agent-client-protocol-0.9.0 \ + agent-client-protocol-schema-0.10.0 \ ahash-0.7.8 \ ahash-0.8.12 \ aho-corasick-1.1.3 \ @@ -28,8 +28,6 @@ CARGO_CRATES= addr2line-0.25.1 \ approx-0.5.1 \ arbitrary-1.4.2 \ arg_enum_proc_macro-0.3.4 \ - argminmax-0.6.3 \ - array-init-cursor-0.2.1 \ arraydeque-0.5.1 \ arrayref-0.3.9 \ arrayvec-0.7.6 \ @@ -66,7 +64,6 @@ CARGO_CRATES= addr2line-0.25.1 \ async_zip-0.0.18 \ asynchronous-codec-0.7.0 \ atoi-2.0.0 \ - atoi_simd-0.16.1 \ atomic-0.5.3 \ atomic-waker-1.1.2 \ auditable-serde-0.8.0 \ @@ -109,13 +106,9 @@ CARGO_CRATES= addr2line-0.25.1 \ base64ct-1.8.0 \ bigdecimal-0.4.8 \ bincode-1.3.3 \ - bincode-2.0.1 \ - bincode_derive-2.0.1 \ bindgen-0.71.1 \ bindgen-0.72.1 \ - bit-set-0.5.3 \ bit-set-0.8.0 \ - bit-vec-0.6.3 \ bit-vec-0.8.0 \ bit_field-0.10.3 \ bitflags-1.3.2 \ @@ -125,17 +118,15 @@ CARGO_CRATES= addr2line-0.25.1 \ blade-graphics-0.7.0 \ blade-macros-0.3.0 \ blade-util-0.3.0 \ - blake3-1.8.2 \ block-0.1.6 \ block-buffer-0.10.4 \ block-padding-0.3.3 \ block2-0.6.2 \ blocking-1.6.2 \ bm25-2.3.2 \ - borrow-or-share-0.2.2 \ + borrow-or-share-0.2.4 \ borsh-1.5.7 \ borsh-derive-1.5.7 \ - boxcar-0.2.14 \ brotli-8.0.2 \ brotli-decompressor-5.0.0 \ bstr-1.12.0 \ @@ -169,7 +160,6 @@ CARGO_CRATES= addr2line-0.25.1 \ cargo_metadata-0.19.2 \ cargo_toml-0.21.0 \ cast-0.3.0 \ - castaway-0.2.4 \ cbc-0.1.2 \ cbindgen-0.28.0 \ cc-1.2.41 \ @@ -181,7 +171,6 @@ CARGO_CRATES= addr2line-0.25.1 \ cfg_aliases-0.2.1 \ cgl-0.3.2 \ chrono-0.4.42 \ - chrono-tz-0.10.4 \ chunked_transfer-1.5.0 \ ciborium-0.2.2 \ ciborium-io-0.2.2 \ @@ -205,9 +194,7 @@ CARGO_CRATES= addr2line-0.25.1 \ color_quant-1.1.0 \ colorchoice-1.0.4 \ combine-4.6.7 \ - comfy-table-7.2.1 \ command-fds-0.3.2 \ - compact_str-0.9.0 \ compression-codecs-0.4.31 \ compression-core-0.4.29 \ concurrent-queue-2.5.0 \ @@ -218,7 +205,6 @@ CARGO_CRATES= addr2line-0.25.1 \ const_format-0.2.35 \ const_format_proc_macros-0.2.34 \ constant_time_eq-0.1.5 \ - constant_time_eq-0.3.1 \ convert_case-0.4.0 \ convert_case-0.8.0 \ core-foundation-0.9.4 \ @@ -265,8 +251,6 @@ CARGO_CRATES= addr2line-0.25.1 \ crossbeam-epoch-0.9.18 \ crossbeam-queue-0.3.12 \ crossbeam-utils-0.8.21 \ - crossterm-0.29.0 \ - crossterm_winapi-0.9.1 \ crunchy-0.2.4 \ crypto-bigint-0.4.9 \ crypto-bigint-0.5.5 \ @@ -291,7 +275,6 @@ CARGO_CRATES= addr2line-0.25.1 \ data-encoding-2.9.0 \ data-url-0.3.2 \ dbus-0.9.9 \ - debug_unsafe-0.1.3 \ debugid-0.8.0 \ deflate64-0.1.10 \ der-0.6.1 \ @@ -317,7 +300,6 @@ CARGO_CRATES= addr2line-0.25.1 \ dispatch2-0.3.0 \ displaydoc-0.2.5 \ dlib-0.5.2 \ - document-features-0.2.11 \ documented-0.9.2 \ documented-macros-0.9.2 \ dotenvy-0.15.7 \ @@ -362,7 +344,6 @@ CARGO_CRATES= addr2line-0.25.1 \ errno-dragonfly-0.1.2 \ etagere-0.2.15 \ etcetera-0.8.0 \ - ethnum-1.5.2 \ euclid-0.22.11 \ event-listener-2.5.3 \ event-listener-5.4.1 \ @@ -371,10 +352,7 @@ CARGO_CRATES= addr2line-0.25.1 \ exr-1.73.0 \ extended-0.1.0 \ fallible-iterator-0.3.0 \ - fallible-streaming-iterator-0.1.9 \ - fancy-regex-0.13.0 \ - fancy-regex-0.14.0 \ - fast-float2-0.2.3 \ + fancy-regex-0.16.2 \ fast-srgb8-1.0.0 \ fastrand-1.9.0 \ fastrand-2.3.0 \ @@ -392,7 +370,7 @@ CARGO_CRATES= addr2line-0.25.1 \ float-ord-0.3.2 \ float8-0.4.2 \ float_next_after-1.0.0 \ - fluent-uri-0.3.2 \ + fluent-uri-0.4.1 \ flume-0.11.1 \ fnv-1.0.7 \ foldhash-0.1.5 \ @@ -412,7 +390,6 @@ CARGO_CRATES= addr2line-0.25.1 \ freetype-sys-0.20.1 \ fs-set-times-0.20.3 \ fs2-0.4.3 \ - fs4-0.13.1 \ fs_extra-1.3.0 \ fsevent-sys-3.1.0 \ fsevent-sys-4.1.0 \ @@ -447,6 +424,7 @@ CARGO_CRATES= addr2line-0.25.1 \ gemm-f32-0.18.2 \ gemm-f64-0.17.1 \ gemm-f64-0.18.2 \ + generator-0.8.7 \ generic-array-0.14.7 \ gethostname-1.1.0 \ getrandom-0.2.16 \ @@ -473,6 +451,7 @@ CARGO_CRATES= addr2line-0.25.1 \ hashbrown-0.12.3 \ hashbrown-0.14.5 \ hashbrown-0.15.5 \ + hashbrown-0.16.1 \ hashlink-0.8.4 \ hashlink-0.10.0 \ headers-0.3.9 \ @@ -562,7 +541,7 @@ CARGO_CRATES= addr2line-0.25.1 \ jobserver-0.1.34 \ js-sys-0.3.81 \ json_dotpath-1.1.0 \ - jsonschema-0.30.0 \ + jsonschema-0.37.4 \ jsonwebtoken-9.3.1 \ jupyter-protocol-0.10.0 \ jupyter-websocket-client-0.15.0 \ @@ -586,17 +565,16 @@ CARGO_CRATES= addr2line-0.25.1 \ libmimalloc-sys-0.1.44 \ libredox-0.1.10 \ libsqlite3-sys-0.30.1 \ - libz-rs-sys-0.5.2 \ libz-sys-1.1.22 \ link-cplusplus-1.0.12 \ linkify-0.10.0 \ linux-raw-sys-0.4.15 \ linux-raw-sys-0.11.0 \ litemap-0.8.0 \ - litrs-0.4.2 \ lmdb-master-sys-0.2.5 \ lock_api-0.4.14 \ log-0.4.28 \ + loom-0.7.2 \ loop9-0.1.5 \ lru-0.12.5 \ lru-slab-0.1.2 \ @@ -606,8 +584,6 @@ CARGO_CRATES= addr2line-0.25.1 \ lyon_geom-1.0.17 \ lyon_path-1.0.16 \ lyon_tessellation-1.0.16 \ - lz4-1.28.1 \ - lz4-sys-1.11.1+lz4-1.10.0 \ mac-0.1.1 \ mach2-0.4.3 \ mach2-0.5.0 \ @@ -665,7 +641,6 @@ CARGO_CRATES= addr2line-0.25.1 \ normpath-1.5.0 \ notify-6.1.1 \ notify-debouncer-mini-0.4.1 \ - now-0.1.3 \ ntapi-0.4.1 \ nu-ansi-term-0.50.3 \ num-0.4.3 \ @@ -702,7 +677,6 @@ CARGO_CRATES= addr2line-0.25.1 \ objc_id-0.1.1 \ object-0.36.7 \ object-0.37.3 \ - object_store-0.12.4 \ once_cell-1.21.3 \ once_cell_polyfill-1.70.1 \ oo7-0.5.0 \ @@ -771,34 +745,12 @@ CARGO_CRATES= addr2line-0.25.1 \ pkcs8-0.10.2 \ pkg-config-0.3.32 \ plain-0.2.3 \ - planus-1.1.1 \ plist-1.8.0 \ plotters-0.3.7 \ plotters-backend-0.3.7 \ plotters-svg-0.3.7 \ png-0.17.16 \ png-0.18.0 \ - polars-0.51.0 \ - polars-arrow-0.51.0 \ - polars-arrow-format-0.2.1 \ - polars-compute-0.51.0 \ - polars-core-0.51.0 \ - polars-dtype-0.51.0 \ - polars-error-0.51.0 \ - polars-expr-0.51.0 \ - polars-io-0.51.0 \ - polars-lazy-0.51.0 \ - polars-mem-engine-0.51.0 \ - polars-ops-0.51.0 \ - polars-parquet-0.51.0 \ - polars-parquet-format-0.1.0 \ - polars-plan-0.51.0 \ - polars-row-0.51.0 \ - polars-schema-0.51.0 \ - polars-sql-0.51.0 \ - polars-stream-0.51.0 \ - polars-time-0.51.0 \ - polars-utils-0.51.0 \ polling-3.11.0 \ pollster-0.2.5 \ pori-0.0.0 \ @@ -876,15 +828,13 @@ CARGO_CRATES= addr2line-0.25.1 \ read-fonts-0.35.0 \ realfft-3.5.0 \ reborrow-0.5.5 \ - recursive-0.1.1 \ - recursive-proc-macro-impl-0.1.1 \ redox_syscall-0.2.16 \ redox_syscall-0.5.18 \ redox_users-0.4.6 \ redox_users-0.5.2 \ ref-cast-1.0.25 \ ref-cast-impl-1.0.25 \ - referencing-0.30.0 \ + referencing-0.37.4 \ regalloc2-0.11.2 \ regex-1.12.2 \ regex-automata-0.4.13 \ @@ -900,7 +850,6 @@ CARGO_CRATES= addr2line-0.25.1 \ rkyv-0.7.45 \ rkyv_derive-0.7.45 \ rmp-0.8.14 \ - rmp-serde-1.3.0 \ rmpv-1.3.0 \ roxmltree-0.20.0 \ rsa-0.9.9 \ @@ -974,7 +923,6 @@ CARGO_CRATES= addr2line-0.25.1 \ serde_repr-0.1.20 \ serde_spanned-0.6.9 \ serde_spanned-1.0.3 \ - serde_stacker-0.1.14 \ serde_urlencoded-0.7.1 \ serde_yaml-0.9.34+deprecated \ serial2-0.2.33 \ @@ -998,7 +946,6 @@ CARGO_CRATES= addr2line-0.25.1 \ simplecss-0.2.2 \ simplelog-0.12.2 \ siphasher-1.0.1 \ - skiplist-0.6.0 \ skrifa-0.37.0 \ slab-0.4.11 \ slotmap-1.0.7 \ @@ -1006,9 +953,6 @@ CARGO_CRATES= addr2line-0.25.1 \ smart-default-0.7.1 \ smol-2.0.2 \ smol_str-0.2.2 \ - snap-1.1.1 \ - soa-rs-0.8.1 \ - soa-rs-derive-0.8.0 \ socket2-0.5.10 \ socket2-0.6.1 \ spdx-0.10.9 \ @@ -1019,7 +963,6 @@ CARGO_CRATES= addr2line-0.25.1 \ spki-0.7.3 \ sptr-0.3.2 \ sqlformat-0.2.6 \ - sqlparser-0.53.0 \ sqlx-0.8.6 \ sqlx-core-0.8.6 \ sqlx-macros-0.8.6 \ @@ -1033,7 +976,6 @@ CARGO_CRATES= addr2line-0.25.1 \ stacksafe-macro-0.1.4 \ static_assertions-1.1.0 \ stop-words-0.9.0 \ - streaming-decompression-0.1.2 \ streaming-iterator-0.1.9 \ strength_reduce-0.2.4 \ strict-num-0.1.1 \ @@ -1144,12 +1086,15 @@ CARGO_CRATES= addr2line-0.25.1 \ tower-http-0.6.6 \ tower-layer-0.3.3 \ tower-service-0.3.3 \ - tracing-0.1.41 \ - tracing-attributes-0.1.30 \ - tracing-core-0.1.34 \ + tracing-0.1.43 \ + tracing-attributes-0.1.31 \ + tracing-core-0.1.35 \ tracing-log-0.2.0 \ tracing-serde-0.2.0 \ - tracing-subscriber-0.3.20 \ + tracing-subscriber-0.3.22 \ + tracing-tracy-0.11.4 \ + tracy-client-0.18.3 \ + tracy-client-sys-0.27.0 \ trait-variant-0.1.2 \ transpose-0.2.3 \ tree-sitter-0.25.10 \ @@ -1189,11 +1134,11 @@ CARGO_CRATES= addr2line-0.25.1 \ unicode-bidi-mirroring-0.4.0 \ unicode-ccc-0.2.0 \ unicode-ccc-0.4.0 \ + unicode-general-category-1.1.0 \ unicode-ident-1.0.19 \ unicode-linebreak-0.1.5 \ unicode-normalization-0.1.24 \ unicode-properties-0.1.3 \ - unicode-reverse-1.0.9 \ unicode-script-0.5.7 \ unicode-segmentation-1.12.0 \ unicode-vo-0.1.0 \ @@ -1204,7 +1149,6 @@ CARGO_CRATES= addr2line-0.25.1 \ unsafe-libyaml-0.2.11 \ untrusted-0.7.1 \ untrusted-0.9.0 \ - unty-0.0.4 \ url-2.5.7 \ urlencoding-2.1.3 \ usvg-0.45.1 \ @@ -1221,7 +1165,6 @@ CARGO_CRATES= addr2line-0.25.1 \ vcpkg-0.2.15 \ version-compare-0.2.0 \ version_check-0.9.5 \ - virtue-0.0.18 \ vscode_theme-0.2.0 \ vsimd-0.8.0 \ vswhom-0.1.0 \ @@ -1399,7 +1342,6 @@ CARGO_CRATES= addr2line-0.25.1 \ xml5ever-0.18.1 \ xmlparser-0.13.6 \ xmlwriter-0.1.0 \ - xxhash-rust-0.8.15 \ yaml-rust2-0.8.1 \ yansi-1.0.1 \ yawc-0.2.5 \ @@ -1427,11 +1369,8 @@ CARGO_CRATES= addr2line-0.25.1 \ zerovec-derive-0.11.1 \ zip-0.6.6 \ zip-1.1.4 \ - zlib-rs-0.5.2 \ zstd-0.11.2+zstd.1.5.2 \ - zstd-0.13.3 \ zstd-safe-5.0.2+zstd.1.5.2 \ - zstd-safe-7.2.4 \ zstd-sys-2.0.16+zstd.1.5.7 \ zune-core-0.4.12 \ zune-inflate-0.2.54 \ @@ -1442,12 +1381,12 @@ CARGO_CRATES= addr2line-0.25.1 \ candle-core,candle-nn,candle-onnx@git+https://github.com/zed-industries/candle?branch=9.1-patched\#724d75eb3deebefe83f2a7381a45d4fac6eda383 \ tree-sitter-md@git+https://github.com/tree-sitter-grammars/tree-sitter-markdown?rev=9a23c1a96c0513d8fc6520972beedd419a973539\#9a23c1a96c0513d8fc6520972beedd419a973539 \ windows-capture@git+https://github.com/zed-industries/windows-capture.git?rev=f0d6c1b6691db75461b732f6d5ff56eed002eeb9\#f0d6c1b6691db75461b732f6d5ff56eed002eeb9 \ + tiktoken-rs@git+https://github.com/zed-industries/tiktoken-rs?rev=2570c4387a8505fb8f1d3f3557454b474f1e8271\#2570c4387a8505fb8f1d3f3557454b474f1e8271 \ tree-sitter-gomod@git+https://github.com/camdencheek/tree-sitter-go-mod?rev=2e886870578eeba1927a2dc4bd2e2b3f598c5f9a\#2e886870578eeba1927a2dc4bd2e2b3f598c5f9a \ rodio@git+https://github.com/RustAudio/rodio?rev=e2074c6c2acf07b57cf717e076bdda7a9ac6e70b\#e2074c6c2acf07b57cf717e076bdda7a9ac6e70b \ lsp-types@git+https://github.com/zed-industries/lsp-types?rev=b71ab4eeb27d9758be8092020a46fe33fbca4e33\#b71ab4eeb27d9758be8092020a46fe33fbca4e33 \ gh-workflow,gh-workflow-macros@git+https://github.com/zed-industries/gh-workflow?rev=09acfdf2bd5c1d6254abefd609c808ff73547b2c\#09acfdf2bd5c1d6254abefd609c808ff73547b2c \ zed-scap@git+https://github.com/zed-industries/scap?rev=4afea48c3b002197176fb19cd0f9b180dd36eaac\#4afea48c3b002197176fb19cd0f9b180dd36eaac \ - tiktoken-rs@git+https://github.com/zed-industries/tiktoken-rs?rev=7249f999c5fdf9bf3cc5c288c964454e4dac0c00\#7249f999c5fdf9bf3cc5c288c964454e4dac0c00 \ tree-sitter-gitcommit@git+https://github.com/zed-industries/tree-sitter-git-commit?rev=88309716a69dd13ab83443721ba6e0b491d37ee9\#88309716a69dd13ab83443721ba6e0b491d37ee9 \ zed-reqwest@git+https://github.com/zed-industries/reqwest.git?rev=c15662463bda39148ba154100dd44d3fba5873a4\#c15662463bda39148ba154100dd44d3fba5873a4 \ tree-sitter-gowork@git+https://github.com/zed-industries/tree-sitter-go-work?rev=acb0617bf7f4fda02c6217676cc64acb89536dc7\#acb0617bf7f4fda02c6217676cc64acb89536dc7 \ diff --git a/editors/zed/distinfo b/editors/zed/distinfo index c931258626aa..d6fe7fc41e7c 100644 --- a/editors/zed/distinfo +++ b/editors/zed/distinfo @@ -1,14 +1,14 @@ -TIMESTAMP = 1765605659 +TIMESTAMP = 1766151354 SHA256 (rust/crates/addr2line-0.25.1.crate) = 1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b SIZE (rust/crates/addr2line-0.25.1.crate) = 43134 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa SIZE (rust/crates/adler2-2.0.1.crate) = 13366 SHA256 (rust/crates/aes-0.8.4.crate) = b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0 SIZE (rust/crates/aes-0.8.4.crate) = 124812 -SHA256 (rust/crates/agent-client-protocol-0.8.0.crate) = 3e639d6b544ad39f5b4e05802db5eb04e1518284eb05fda1839931003e0244c8 -SIZE (rust/crates/agent-client-protocol-0.8.0.crate) = 26819 -SHA256 (rust/crates/agent-client-protocol-schema-0.9.1.crate) = f182f5e14bef8232b239719bd99166bb11e986c08fc211f28e392f880d3093ba -SIZE (rust/crates/agent-client-protocol-schema-0.9.1.crate) = 43781 +SHA256 (rust/crates/agent-client-protocol-0.9.0.crate) = c2ffe7d502c1e451aafc5aff655000f84d09c9af681354ac0012527009b1af13 +SIZE (rust/crates/agent-client-protocol-0.9.0.crate) = 27246 +SHA256 (rust/crates/agent-client-protocol-schema-0.10.0.crate) = 8af81cc2d5c3f9c04f73db452efd058333735ba9d51c2cf7ef33c9fee038e7e6 +SIZE (rust/crates/agent-client-protocol-schema-0.10.0.crate) = 46372 SHA256 (rust/crates/ahash-0.7.8.crate) = 891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9 SIZE (rust/crates/ahash-0.7.8.crate) = 38550 SHA256 (rust/crates/ahash-0.8.12.crate) = 5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75 @@ -59,10 +59,6 @@ SHA256 (rust/crates/arbitrary-1.4.2.crate) = c3d036a3c4ab069c7b410a2ce876bd74808 SIZE (rust/crates/arbitrary-1.4.2.crate) = 38307 SHA256 (rust/crates/arg_enum_proc_macro-0.3.4.crate) = 0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea SIZE (rust/crates/arg_enum_proc_macro-0.3.4.crate) = 5102 -SHA256 (rust/crates/argminmax-0.6.3.crate) = 70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65 -SIZE (rust/crates/argminmax-0.6.3.crate) = 67236 -SHA256 (rust/crates/array-init-cursor-0.2.1.crate) = ed51fe0f224d1d4ea768be38c51f9f831dee9d05c163c11fba0b8c44387b1fc3 -SIZE (rust/crates/array-init-cursor-0.2.1.crate) = 7102 SHA256 (rust/crates/arraydeque-0.5.1.crate) = 7d902e3d592a523def97af8f317b08ce16b7ab854c1985a0c671e6f15cebc236 SIZE (rust/crates/arraydeque-0.5.1.crate) = 17671 SHA256 (rust/crates/arrayref-0.3.9.crate) = 76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb @@ -135,8 +131,6 @@ SHA256 (rust/crates/asynchronous-codec-0.7.0.crate) = a860072022177f903e59730004 SIZE (rust/crates/asynchronous-codec-0.7.0.crate) = 14271 SHA256 (rust/crates/atoi-2.0.0.crate) = f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528 SIZE (rust/crates/atoi-2.0.0.crate) = 7785 -SHA256 (rust/crates/atoi_simd-0.16.1.crate) = c2a49e05797ca52e312a0c658938b7d00693ef037799ef7187678f212d7684cf -SIZE (rust/crates/atoi_simd-0.16.1.crate) = 18018 SHA256 (rust/crates/atomic-0.5.3.crate) = c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba SIZE (rust/crates/atomic-0.5.3.crate) = 12801 SHA256 (rust/crates/atomic-waker-1.1.2.crate) = 1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0 @@ -221,20 +215,12 @@ SHA256 (rust/crates/bigdecimal-0.4.8.crate) = 1a22f228ab7a1b23027ccc6c350b728680 SIZE (rust/crates/bigdecimal-0.4.8.crate) = 89479 SHA256 (rust/crates/bincode-1.3.3.crate) = b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad SIZE (rust/crates/bincode-1.3.3.crate) = 28958 -SHA256 (rust/crates/bincode-2.0.1.crate) = 36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740 -SIZE (rust/crates/bincode-2.0.1.crate) = 70469 -SHA256 (rust/crates/bincode_derive-2.0.1.crate) = bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09 -SIZE (rust/crates/bincode_derive-2.0.1.crate) = 7404 SHA256 (rust/crates/bindgen-0.71.1.crate) = 5f58bf3d7db68cfbac37cfc485a8d711e87e064c3d0fe0435b92f7a407f9d6b3 SIZE (rust/crates/bindgen-0.71.1.crate) = 237785 SHA256 (rust/crates/bindgen-0.72.1.crate) = 993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895 SIZE (rust/crates/bindgen-0.72.1.crate) = 246071 -SHA256 (rust/crates/bit-set-0.5.3.crate) = 0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1 -SIZE (rust/crates/bit-set-0.5.3.crate) = 14470 SHA256 (rust/crates/bit-set-0.8.0.crate) = 08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3 SIZE (rust/crates/bit-set-0.8.0.crate) = 16289 -SHA256 (rust/crates/bit-vec-0.6.3.crate) = 349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb -SIZE (rust/crates/bit-vec-0.6.3.crate) = 19927 SHA256 (rust/crates/bit-vec-0.8.0.crate) = 5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7 SIZE (rust/crates/bit-vec-0.8.0.crate) = 24132 SHA256 (rust/crates/bit_field-0.10.3.crate) = 1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6 @@ -253,8 +239,6 @@ SHA256 (rust/crates/blade-macros-0.3.0.crate) = 27142319e2f4c264581067eaccb9f80a SIZE (rust/crates/blade-macros-0.3.0.crate) = 3919 SHA256 (rust/crates/blade-util-0.3.0.crate) = 3a6be3a82c001ba7a17b6f8e413ede5d1004e6047213f8efaf0ffc15b5c4904c SIZE (rust/crates/blade-util-0.3.0.crate) = 9089 -SHA256 (rust/crates/blake3-1.8.2.crate) = 3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0 -SIZE (rust/crates/blake3-1.8.2.crate) = 205967 SHA256 (rust/crates/block-0.1.6.crate) = 0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a SIZE (rust/crates/block-0.1.6.crate) = 4077 SHA256 (rust/crates/block-buffer-0.10.4.crate) = 3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71 @@ -267,14 +251,12 @@ SHA256 (rust/crates/blocking-1.6.2.crate) = e83f8d02be6967315521be875afa792a316e SIZE (rust/crates/blocking-1.6.2.crate) = 17754 SHA256 (rust/crates/bm25-2.3.2.crate) = 1cbd8ffdfb7b4c2ff038726178a780a94f90525ed0ad264c0afaa75dd8c18a64 SIZE (rust/crates/bm25-2.3.2.crate) = 29175 -SHA256 (rust/crates/borrow-or-share-0.2.2.crate) = 3eeab4423108c5d7c744f4d234de88d18d636100093ae04caf4825134b9c3a32 -SIZE (rust/crates/borrow-or-share-0.2.2.crate) = 4871 +SHA256 (rust/crates/borrow-or-share-0.2.4.crate) = dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8f3166c +SIZE (rust/crates/borrow-or-share-0.2.4.crate) = 5243 SHA256 (rust/crates/borsh-1.5.7.crate) = ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce SIZE (rust/crates/borsh-1.5.7.crate) = 78062 SHA256 (rust/crates/borsh-derive-1.5.7.crate) = fdd1d3c0c2f5833f22386f252fe8ed005c7f59fdcddeef025c01b4c3b9fd9ac3 SIZE (rust/crates/borsh-derive-1.5.7.crate) = 27246 -SHA256 (rust/crates/boxcar-0.2.14.crate) = 36f64beae40a84da1b4b26ff2761a5b895c12adc41dc25aaee1c4f2bbfe97a6e -SIZE (rust/crates/boxcar-0.2.14.crate) = 28144 SHA256 (rust/crates/brotli-8.0.2.crate) = 4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560 SIZE (rust/crates/brotli-8.0.2.crate) = 741739 SHA256 (rust/crates/brotli-decompressor-5.0.0.crate) = 874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03 @@ -341,8 +323,6 @@ SHA256 (rust/crates/cargo_toml-0.21.0.crate) = 5fbd1fe9db3ebf71b89060adaf7b0504c SIZE (rust/crates/cargo_toml-0.21.0.crate) = 32376 SHA256 (rust/crates/cast-0.3.0.crate) = 37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5 SIZE (rust/crates/cast-0.3.0.crate) = 11452 -SHA256 (rust/crates/castaway-0.2.4.crate) = dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a -SIZE (rust/crates/castaway-0.2.4.crate) = 12546 SHA256 (rust/crates/cbc-0.1.2.crate) = 26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6 SIZE (rust/crates/cbc-0.1.2.crate) = 23501 SHA256 (rust/crates/cbindgen-0.28.0.crate) = eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff @@ -365,8 +345,6 @@ SHA256 (rust/crates/cgl-0.3.2.crate) = 0ced0551234e87afee12411d535648dd89d2e7f34 SIZE (rust/crates/cgl-0.3.2.crate) = 7557 SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 SIZE (rust/crates/chrono-0.4.42.crate) = 238174 -SHA256 (rust/crates/chrono-tz-0.10.4.crate) = a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3 -SIZE (rust/crates/chrono-tz-0.10.4.crate) = 794377 SHA256 (rust/crates/chunked_transfer-1.5.0.crate) = 6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901 SIZE (rust/crates/chunked_transfer-1.5.0.crate) = 9779 SHA256 (rust/crates/ciborium-0.2.2.crate) = 42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e @@ -413,12 +391,8 @@ SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845 SIZE (rust/crates/colorchoice-1.0.4.crate) = 8196 SHA256 (rust/crates/combine-4.6.7.crate) = ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd SIZE (rust/crates/combine-4.6.7.crate) = 134808 -SHA256 (rust/crates/comfy-table-7.2.1.crate) = b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b -SIZE (rust/crates/comfy-table-7.2.1.crate) = 78509 SHA256 (rust/crates/command-fds-0.3.2.crate) = f849b92c694fe237ecd8fafd1ba0df7ae0d45c1df6daeb7f68ed4220d51640bd SIZE (rust/crates/command-fds-0.3.2.crate) = 13157 -SHA256 (rust/crates/compact_str-0.9.0.crate) = 3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a -SIZE (rust/crates/compact_str-0.9.0.crate) = 72135 SHA256 (rust/crates/compression-codecs-0.4.31.crate) = ef8a506ec4b81c460798f572caead636d57d3d7e940f998160f52bd254bf2d23 SIZE (rust/crates/compression-codecs-0.4.31.crate) = 22694 SHA256 (rust/crates/compression-core-0.4.29.crate) = e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb @@ -439,8 +413,6 @@ SHA256 (rust/crates/const_format_proc_macros-0.2.34.crate) = 1d57c2eccfb16dbac1f SIZE (rust/crates/const_format_proc_macros-0.2.34.crate) = 24396 SHA256 (rust/crates/constant_time_eq-0.1.5.crate) = 245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc SIZE (rust/crates/constant_time_eq-0.1.5.crate) = 4936 -SHA256 (rust/crates/constant_time_eq-0.3.1.crate) = 7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6 -SIZE (rust/crates/constant_time_eq-0.3.1.crate) = 11561 SHA256 (rust/crates/convert_case-0.4.0.crate) = 6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e SIZE (rust/crates/convert_case-0.4.0.crate) = 8098 SHA256 (rust/crates/convert_case-0.8.0.crate) = baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f @@ -533,10 +505,6 @@ SHA256 (rust/crates/crossbeam-queue-0.3.12.crate) = 0f58bbc28f91df819d0aa2a2c00c SIZE (rust/crates/crossbeam-queue-0.3.12.crate) = 16270 SHA256 (rust/crates/crossbeam-utils-0.8.21.crate) = d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28 SIZE (rust/crates/crossbeam-utils-0.8.21.crate) = 42691 -SHA256 (rust/crates/crossterm-0.29.0.crate) = d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b -SIZE (rust/crates/crossterm-0.29.0.crate) = 136635 -SHA256 (rust/crates/crossterm_winapi-0.9.1.crate) = acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b -SIZE (rust/crates/crossterm_winapi-0.9.1.crate) = 16027 SHA256 (rust/crates/crunchy-0.2.4.crate) = 460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5 SIZE (rust/crates/crunchy-0.2.4.crate) = 3887 SHA256 (rust/crates/crypto-bigint-0.4.9.crate) = ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef @@ -585,8 +553,6 @@ SHA256 (rust/crates/data-url-0.3.2.crate) = be1e0bca6c3637f992fc1cc7cbc52a78c1ef SIZE (rust/crates/data-url-0.3.2.crate) = 23862 SHA256 (rust/crates/dbus-0.9.9.crate) = 190b6255e8ab55a7b568df5a883e9497edc3e4821c06396612048b430e5ad1e9 SIZE (rust/crates/dbus-0.9.9.crate) = 106151 -SHA256 (rust/crates/debug_unsafe-0.1.3.crate) = 85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b -SIZE (rust/crates/debug_unsafe-0.1.3.crate) = 2065 SHA256 (rust/crates/debugid-0.8.0.crate) = bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d SIZE (rust/crates/debugid-0.8.0.crate) = 12757 SHA256 (rust/crates/deflate64-0.1.10.crate) = 26bf8fc351c5ed29b5c2f0cbbac1b209b74f60ecd62e675a998df72c49af5204 @@ -637,8 +603,6 @@ SHA256 (rust/crates/displaydoc-0.2.5.crate) = 97369cbbc041bc366949bc74d34658d6cd SIZE (rust/crates/displaydoc-0.2.5.crate) = 24219 SHA256 (rust/crates/dlib-0.5.2.crate) = 330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412 SIZE (rust/crates/dlib-0.5.2.crate) = 5806 -SHA256 (rust/crates/document-features-0.2.11.crate) = 95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d -SIZE (rust/crates/document-features-0.2.11.crate) = 14640 SHA256 (rust/crates/documented-0.9.2.crate) = ed6b3e31251e87acd1b74911aed84071c8364fc9087972748ade2f1094ccce34 SIZE (rust/crates/documented-0.9.2.crate) = 4395 SHA256 (rust/crates/documented-macros-0.9.2.crate) = 1149cf7462e5e79e17a3c05fd5b1f9055092bbfa95e04c319395c3beacc9370f @@ -727,8 +691,6 @@ SHA256 (rust/crates/etagere-0.2.15.crate) = fc89bf99e5dc15954a60f707c1e09d7540e5 SIZE (rust/crates/etagere-0.2.15.crate) = 21203 SHA256 (rust/crates/etcetera-0.8.0.crate) = 136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943 SIZE (rust/crates/etcetera-0.8.0.crate) = 13295 -SHA256 (rust/crates/ethnum-1.5.2.crate) = ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b -SIZE (rust/crates/ethnum-1.5.2.crate) = 63016 SHA256 (rust/crates/euclid-0.22.11.crate) = ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48 SIZE (rust/crates/euclid-0.22.11.crate) = 79261 SHA256 (rust/crates/event-listener-2.5.3.crate) = 0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0 @@ -745,14 +707,8 @@ SHA256 (rust/crates/extended-0.1.0.crate) = af9673d8203fcb076b19dfd17e38b3d4ae9f SIZE (rust/crates/extended-0.1.0.crate) = 4393 SHA256 (rust/crates/fallible-iterator-0.3.0.crate) = 2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649 SIZE (rust/crates/fallible-iterator-0.3.0.crate) = 19639 -SHA256 (rust/crates/fallible-streaming-iterator-0.1.9.crate) = 7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a -SIZE (rust/crates/fallible-streaming-iterator-0.1.9.crate) = 9249 -SHA256 (rust/crates/fancy-regex-0.13.0.crate) = 531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2 -SIZE (rust/crates/fancy-regex-0.13.0.crate) = 85930 -SHA256 (rust/crates/fancy-regex-0.14.0.crate) = 6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298 -SIZE (rust/crates/fancy-regex-0.14.0.crate) = 86969 -SHA256 (rust/crates/fast-float2-0.2.3.crate) = f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55 -SIZE (rust/crates/fast-float2-0.2.3.crate) = 44399 +SHA256 (rust/crates/fancy-regex-0.16.2.crate) = 998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f +SIZE (rust/crates/fancy-regex-0.16.2.crate) = 100662 SHA256 (rust/crates/fast-srgb8-1.0.0.crate) = dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1 SIZE (rust/crates/fast-srgb8-1.0.0.crate) = 17214 SHA256 (rust/crates/fastrand-1.9.0.crate) = e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be @@ -787,8 +743,8 @@ SHA256 (rust/crates/float8-0.4.2.crate) = 4203231de188ebbdfb85c11f3c20ca2b063945 SIZE (rust/crates/float8-0.4.2.crate) = 23462 SHA256 (rust/crates/float_next_after-1.0.0.crate) = 8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8 SIZE (rust/crates/float_next_after-1.0.0.crate) = 6965 -SHA256 (rust/crates/fluent-uri-0.3.2.crate) = 1918b65d96df47d3591bed19c5cca17e3fa5d0707318e4b5ef2eae01764df7e5 -SIZE (rust/crates/fluent-uri-0.3.2.crate) = 43604 +SHA256 (rust/crates/fluent-uri-0.4.1.crate) = bc74ac4d8359ae70623506d512209619e5cf8f347124910440dbc221714b328e +SIZE (rust/crates/fluent-uri-0.4.1.crate) = 51205 SHA256 (rust/crates/flume-0.11.1.crate) = da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095 SIZE (rust/crates/flume-0.11.1.crate) = 67947 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 @@ -827,8 +783,6 @@ SHA256 (rust/crates/fs-set-times-0.20.3.crate) = 94e7099f6313ecacbe1256e8ff9d617 SIZE (rust/crates/fs-set-times-0.20.3.crate) = 15964 SHA256 (rust/crates/fs2-0.4.3.crate) = 9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213 SIZE (rust/crates/fs2-0.4.3.crate) = 13138 -SHA256 (rust/crates/fs4-0.13.1.crate) = 8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4 -SIZE (rust/crates/fs4-0.13.1.crate) = 28794 SHA256 (rust/crates/fs_extra-1.3.0.crate) = 42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c SIZE (rust/crates/fs_extra-1.3.0.crate) = 31298 SHA256 (rust/crates/fsevent-sys-3.1.0.crate) = ca6f5e6817058771c10f0eb0f05ddf1e35844266f972004fe8e4b21fda295bd5 @@ -897,6 +851,8 @@ SHA256 (rust/crates/gemm-f64-0.17.1.crate) = aa397a48544fadf0b81ec8741e5c0fba004 SIZE (rust/crates/gemm-f64-0.17.1.crate) = 3515 SHA256 (rust/crates/gemm-f64-0.18.2.crate) = 35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd SIZE (rust/crates/gemm-f64-0.18.2.crate) = 7199 +SHA256 (rust/crates/generator-0.8.7.crate) = 605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2 +SIZE (rust/crates/generator-0.8.7.crate) = 37332 SHA256 (rust/crates/generic-array-0.14.7.crate) = 85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a SIZE (rust/crates/generic-array-0.14.7.crate) = 15950 SHA256 (rust/crates/gethostname-1.1.0.crate) = 1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8 @@ -949,6 +905,8 @@ SHA256 (rust/crates/hashbrown-0.14.5.crate) = e5274423e17b7c9fc20b6e7e208532f9b1 SIZE (rust/crates/hashbrown-0.14.5.crate) = 141498 SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 +SHA256 (rust/crates/hashbrown-0.16.1.crate) = 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 +SIZE (rust/crates/hashbrown-0.16.1.crate) = 147785 SHA256 (rust/crates/hashlink-0.8.4.crate) = e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7 SIZE (rust/crates/hashlink-0.8.4.crate) = 26514 SHA256 (rust/crates/hashlink-0.10.0.crate) = 7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1 @@ -1127,8 +1085,8 @@ SHA256 (rust/crates/js-sys-0.3.81.crate) = ec48937a97411dcb524a265206ccd4c90bb71 SIZE (rust/crates/js-sys-0.3.81.crate) = 56399 SHA256 (rust/crates/json_dotpath-1.1.0.crate) = dbdcfef3cf5591f0cef62da413ae795e3d1f5a00936ccec0b2071499a32efd1a SIZE (rust/crates/json_dotpath-1.1.0.crate) = 9739 -SHA256 (rust/crates/jsonschema-0.30.0.crate) = f1b46a0365a611fbf1d2143104dcf910aada96fafd295bab16c60b802bf6fa1d -SIZE (rust/crates/jsonschema-0.30.0.crate) = 124559 +SHA256 (rust/crates/jsonschema-0.37.4.crate) = 73c9ffb2b5c56d58030e1b532d8e8389da94590515f118cf35b5cb68e4764a7e +SIZE (rust/crates/jsonschema-0.37.4.crate) = 174395 SHA256 (rust/crates/jsonwebtoken-9.3.1.crate) = 5a87cc7a48537badeae96744432de36f4be2b4a34a05a5ef32e9dd8a1c169dde SIZE (rust/crates/jsonwebtoken-9.3.1.crate) = 49398 SHA256 (rust/crates/jupyter-protocol-0.10.0.crate) = d9c047f6b5e551563af2ddb13dafed833f0ec5a5b0f9621d5ad740a9ff1e1095 @@ -1175,8 +1133,6 @@ SHA256 (rust/crates/libredox-0.1.10.crate) = 416f7e718bdb06000964960ffa43b4335ad SIZE (rust/crates/libredox-0.1.10.crate) = 7332 SHA256 (rust/crates/libsqlite3-sys-0.30.1.crate) = 2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149 SIZE (rust/crates/libsqlite3-sys-0.30.1.crate) = 5122296 -SHA256 (rust/crates/libz-rs-sys-0.5.2.crate) = 840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd -SIZE (rust/crates/libz-rs-sys-0.5.2.crate) = 46524 SHA256 (rust/crates/libz-sys-1.1.22.crate) = 8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d SIZE (rust/crates/libz-sys-1.1.22.crate) = 841053 SHA256 (rust/crates/link-cplusplus-1.0.12.crate) = 7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82 @@ -1189,14 +1145,14 @@ SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 SHA256 (rust/crates/litemap-0.8.0.crate) = 241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956 SIZE (rust/crates/litemap-0.8.0.crate) = 34344 -SHA256 (rust/crates/litrs-0.4.2.crate) = f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed -SIZE (rust/crates/litrs-0.4.2.crate) = 43399 SHA256 (rust/crates/lmdb-master-sys-0.2.5.crate) = 864808e0b19fb6dd3b70ba94ee671b82fce17554cf80aeb0a155c65bb08027df SIZE (rust/crates/lmdb-master-sys-0.2.5.crate) = 178812 SHA256 (rust/crates/lock_api-0.4.14.crate) = 224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965 SIZE (rust/crates/lock_api-0.4.14.crate) = 29249 SHA256 (rust/crates/log-0.4.28.crate) = 34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432 SIZE (rust/crates/log-0.4.28.crate) = 51131 +SHA256 (rust/crates/loom-0.7.2.crate) = 419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca +SIZE (rust/crates/loom-0.7.2.crate) = 73989 SHA256 (rust/crates/loop9-0.1.5.crate) = 0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062 SIZE (rust/crates/loop9-0.1.5.crate) = 3406 SHA256 (rust/crates/lru-0.12.5.crate) = 234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38 @@ -1215,10 +1171,6 @@ SHA256 (rust/crates/lyon_path-1.0.16.crate) = 1aeca86bcfd632a15984ba029b539ffb81 SIZE (rust/crates/lyon_path-1.0.16.crate) = 37012 SHA256 (rust/crates/lyon_tessellation-1.0.16.crate) = f3f586142e1280335b1bc89539f7c97dd80f08fc43e9ab1b74ef0a42b04aa353 SIZE (rust/crates/lyon_tessellation-1.0.16.crate) = 185669 -SHA256 (rust/crates/lz4-1.28.1.crate) = a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4 -SIZE (rust/crates/lz4-1.28.1.crate) = 13585 -SHA256 (rust/crates/lz4-sys-1.11.1+lz4-1.10.0.crate) = 6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6 -SIZE (rust/crates/lz4-sys-1.11.1+lz4-1.10.0.crate) = 391317 SHA256 (rust/crates/mac-0.1.1.crate) = c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4 SIZE (rust/crates/mac-0.1.1.crate) = 4838 SHA256 (rust/crates/mach2-0.4.3.crate) = d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44 @@ -1333,8 +1285,6 @@ SHA256 (rust/crates/notify-6.1.1.crate) = 6205bd8bb1e454ad2e27422015fb5e4f2bcc7e SIZE (rust/crates/notify-6.1.1.crate) = 40117 SHA256 (rust/crates/notify-debouncer-mini-0.4.1.crate) = 5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43 SIZE (rust/crates/notify-debouncer-mini-0.4.1.crate) = 10227 -SHA256 (rust/crates/now-0.1.3.crate) = 6d89e9874397a1f0a52fc1f197a8effd9735223cb2390e9dcc83ac6cd02923d0 -SIZE (rust/crates/now-0.1.3.crate) = 5086 SHA256 (rust/crates/ntapi-0.4.1.crate) = e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4 SIZE (rust/crates/ntapi-0.4.1.crate) = 126552 SHA256 (rust/crates/nu-ansi-term-0.50.3.crate) = 7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5 @@ -1407,8 +1357,6 @@ SHA256 (rust/crates/object-0.36.7.crate) = 62948e14d923ea95ea2c7c86c71013138b665 SIZE (rust/crates/object-0.36.7.crate) = 329938 SHA256 (rust/crates/object-0.37.3.crate) = ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe SIZE (rust/crates/object-0.37.3.crate) = 344032 -SHA256 (rust/crates/object_store-0.12.4.crate) = 4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740 -SIZE (rust/crates/object_store-0.12.4.crate) = 275332 SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad @@ -1545,8 +1493,6 @@ SHA256 (rust/crates/pkg-config-0.3.32.crate) = 7edddbd0b52d732b21ad9a5fab5c704c1 SIZE (rust/crates/pkg-config-0.3.32.crate) = 21370 SHA256 (rust/crates/plain-0.2.3.crate) = b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6 SIZE (rust/crates/plain-0.2.3.crate) = 10664 -SHA256 (rust/crates/planus-1.1.1.crate) = 3daf8e3d4b712abe1d690838f6e29fb76b76ea19589c4afa39ec30e12f62af71 -SIZE (rust/crates/planus-1.1.1.crate) = 36523 SHA256 (rust/crates/plist-1.8.0.crate) = 740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07 SIZE (rust/crates/plist-1.8.0.crate) = 54623 SHA256 (rust/crates/plotters-0.3.7.crate) = 5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747 @@ -1559,48 +1505,6 @@ SHA256 (rust/crates/png-0.17.16.crate) = 82151a2fc869e011c153adc57cf2789ccb8d990 SIZE (rust/crates/png-0.17.16.crate) = 117975 SHA256 (rust/crates/png-0.18.0.crate) = 97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0 SIZE (rust/crates/png-0.18.0.crate) = 118041 -SHA256 (rust/crates/polars-0.51.0.crate) = a5f7feb5d56b954e691dff22a8b2d78d77433dcc93c35fe21c3777fdc121b697 -SIZE (rust/crates/polars-0.51.0.crate) = 138847 -SHA256 (rust/crates/polars-arrow-0.51.0.crate) = 32b4fed2343961b3eea3db2cee165540c3e1ad9d5782350cc55a9e76cf440148 -SIZE (rust/crates/polars-arrow-0.51.0.crate) = 302140 -SHA256 (rust/crates/polars-arrow-format-0.2.1.crate) = a556ac0ee744e61e167f34c1eb0013ce740e0ee6cd8c158b2ec0b518f10e6675 -SIZE (rust/crates/polars-arrow-format-0.2.1.crate) = 85059 -SHA256 (rust/crates/polars-compute-0.51.0.crate) = 138785beda4e4a90a025219f09d0d15a671b2be9091513ede58e05db6ad4413f -SIZE (rust/crates/polars-compute-0.51.0.crate) = 110583 -SHA256 (rust/crates/polars-core-0.51.0.crate) = e77b1f08ef6dbb032bb1d0d3365464be950df9905f6827a95b24c4ca5518901d -SIZE (rust/crates/polars-core-0.51.0.crate) = 407346 -SHA256 (rust/crates/polars-dtype-0.51.0.crate) = 89c43d0ea57168be4546c4d8064479ed8b29a9c79c31a0c7c367ee734b9b7158 -SIZE (rust/crates/polars-dtype-0.51.0.crate) = 14828 -SHA256 (rust/crates/polars-error-0.51.0.crate) = b9cb5d98f59f8b94673ee391840440ad9f0d2170afced95fc98aa86f895563c0 -SIZE (rust/crates/polars-error-0.51.0.crate) = 18602 -SHA256 (rust/crates/polars-expr-0.51.0.crate) = 343931b818cf136349135ba11dbc18c27683b52c3477b1ba8ca606cf5ab1965c -SIZE (rust/crates/polars-expr-0.51.0.crate) = 89805 -SHA256 (rust/crates/polars-io-0.51.0.crate) = 10388c64b8155122488229a881d1c6f4fdc393bc988e764ab51b182fcb2307e4 -SIZE (rust/crates/polars-io-0.51.0.crate) = 180604 -SHA256 (rust/crates/polars-lazy-0.51.0.crate) = 0fb6e2c6c2fa4ea0c660df1c06cf56960c81e7c2683877995bae3d4e3d408147 -SIZE (rust/crates/polars-lazy-0.51.0.crate) = 87237 -SHA256 (rust/crates/polars-mem-engine-0.51.0.crate) = 20a856e98e253587c28d8132a5e7e5a75cb2c44731ca090f1481d45f1d123771 -SIZE (rust/crates/polars-mem-engine-0.51.0.crate) = 53492 -SHA256 (rust/crates/polars-ops-0.51.0.crate) = acf6062173fdc9ba05775548beb66e76643a148d9aeadc9984ed712bc4babd76 -SIZE (rust/crates/polars-ops-0.51.0.crate) = 174078 -SHA256 (rust/crates/polars-parquet-0.51.0.crate) = cc1d769180dec070df0dc4b89299b364bf2cfe32b218ecc4ddd8f1a49ae60669 -SIZE (rust/crates/polars-parquet-0.51.0.crate) = 199345 -SHA256 (rust/crates/polars-parquet-format-0.1.0.crate) = c025243dcfe8dbc57e94d9f82eb3bef10b565ab180d5b99bed87fd8aea319ce1 -SIZE (rust/crates/polars-parquet-format-0.1.0.crate) = 55634 -SHA256 (rust/crates/polars-plan-0.51.0.crate) = 1cd3a2e33ae4484fe407ab2d2ba5684f0889d1ccf3ad6b844103c03638e6d0a0 -SIZE (rust/crates/polars-plan-0.51.0.crate) = 408261 -SHA256 (rust/crates/polars-row-0.51.0.crate) = 18734f17e0e348724df3ae65f3ee744c681117c04b041cac969dfceb05edabc0 -SIZE (rust/crates/polars-row-0.51.0.crate) = 32038 -SHA256 (rust/crates/polars-schema-0.51.0.crate) = 8e6c1ab13e04d5167661a9854ed1ea0482b2ed9b8a0f1118dabed7cd994a85e3 -SIZE (rust/crates/polars-schema-0.51.0.crate) = 14037 -SHA256 (rust/crates/polars-sql-0.51.0.crate) = c4e7766da02cc1d464994404d3e88a7a0ccd4933df3627c325480fbd9bbc0a11 -SIZE (rust/crates/polars-sql-0.51.0.crate) = 80123 -SHA256 (rust/crates/polars-stream-0.51.0.crate) = 31f6c6ca1ea01f9dea424d167e4f33f5ec44cd67fbfac9efd40575ed20521f14 -SIZE (rust/crates/polars-stream-0.51.0.crate) = 241363 -SHA256 (rust/crates/polars-time-0.51.0.crate) = f6a3a6e279a7a984a0b83715660f9e880590c6129ec2104396bfa710bcd76dee -SIZE (rust/crates/polars-time-0.51.0.crate) = 65077 -SHA256 (rust/crates/polars-utils-0.51.0.crate) = 57b267021b0e5422d7fbc70fd79e51b9f9a8466c585779373a18b0199e973f29 -SIZE (rust/crates/polars-utils-0.51.0.crate) = 72457 SHA256 (rust/crates/polling-3.11.0.crate) = 5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218 SIZE (rust/crates/polling-3.11.0.crate) = 59387 SHA256 (rust/crates/pollster-0.2.5.crate) = 5da3b0203fd7ee5720aa0b5e790b591aa5d3f41c3ed2c34a3a393382198af2f7 @@ -1755,10 +1659,6 @@ SHA256 (rust/crates/realfft-3.5.0.crate) = f821338fddb99d089116342c46e9f1fbf3828 SIZE (rust/crates/realfft-3.5.0.crate) = 16916 SHA256 (rust/crates/reborrow-0.5.5.crate) = 03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430 SIZE (rust/crates/reborrow-0.5.5.crate) = 3789 -SHA256 (rust/crates/recursive-0.1.1.crate) = 0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e -SIZE (rust/crates/recursive-0.1.1.crate) = 3642 -SHA256 (rust/crates/recursive-proc-macro-impl-0.1.1.crate) = 76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b -SIZE (rust/crates/recursive-proc-macro-impl-0.1.1.crate) = 2213 SHA256 (rust/crates/redox_syscall-0.2.16.crate) = fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a SIZE (rust/crates/redox_syscall-0.2.16.crate) = 24012 SHA256 (rust/crates/redox_syscall-0.5.18.crate) = ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d @@ -1771,8 +1671,8 @@ SHA256 (rust/crates/ref-cast-1.0.25.crate) = f354300ae66f76f1c85c5f84693f0ce81d7 SIZE (rust/crates/ref-cast-1.0.25.crate) = 15192 SHA256 (rust/crates/ref-cast-impl-1.0.25.crate) = b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da SIZE (rust/crates/ref-cast-impl-1.0.25.crate) = 10167 -SHA256 (rust/crates/referencing-0.30.0.crate) = c8eff4fa778b5c2a57e85c5f2fe3a709c52f0e60d23146e2151cbef5893f420e -SIZE (rust/crates/referencing-0.30.0.crate) = 43474 +SHA256 (rust/crates/referencing-0.37.4.crate) = 4283168a506f0dcbdce31c9f9cce3129c924da4c6bca46e46707fcb746d2d70c +SIZE (rust/crates/referencing-0.37.4.crate) = 48782 SHA256 (rust/crates/regalloc2-0.11.2.crate) = dc06e6b318142614e4a48bc725abbf08ff166694835c43c9dae5a9009704639a SIZE (rust/crates/regalloc2-0.11.2.crate) = 139677 SHA256 (rust/crates/regex-1.12.2.crate) = 843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4 @@ -1803,8 +1703,6 @@ SHA256 (rust/crates/rkyv_derive-0.7.45.crate) = 503d1d27590a2b0a3a4ca4c94755aa28 SIZE (rust/crates/rkyv_derive-0.7.45.crate) = 18972 SHA256 (rust/crates/rmp-0.8.14.crate) = 228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4 SIZE (rust/crates/rmp-0.8.14.crate) = 29687 -SHA256 (rust/crates/rmp-serde-1.3.0.crate) = 52e599a477cf9840e92f2cde9a7189e67b42c57532749bf90aea6ec10facd4db -SIZE (rust/crates/rmp-serde-1.3.0.crate) = 33025 SHA256 (rust/crates/rmpv-1.3.0.crate) = 58450723cd9ee93273ce44a20b6ec4efe17f8ed2e3631474387bfdecf18bb2a9 SIZE (rust/crates/rmpv-1.3.0.crate) = 28514 SHA256 (rust/crates/roxmltree-0.20.0.crate) = 6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97 @@ -1951,8 +1849,6 @@ SHA256 (rust/crates/serde_spanned-0.6.9.crate) = bf41e0cfaf7226dca15e8197172c295 SIZE (rust/crates/serde_spanned-0.6.9.crate) = 10210 SHA256 (rust/crates/serde_spanned-1.0.3.crate) = e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392 SIZE (rust/crates/serde_spanned-1.0.3.crate) = 11011 -SHA256 (rust/crates/serde_stacker-0.1.14.crate) = d4936375d50c4be7eff22293a9344f8e46f323ed2b3c243e52f89138d9bb0f4a -SIZE (rust/crates/serde_stacker-0.1.14.crate) = 13257 SHA256 (rust/crates/serde_urlencoded-0.7.1.crate) = d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd SIZE (rust/crates/serde_urlencoded-0.7.1.crate) = 12822 SHA256 (rust/crates/serde_yaml-0.9.34+deprecated.crate) = 6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47 @@ -1999,8 +1895,6 @@ SHA256 (rust/crates/simplelog-0.12.2.crate) = 16257adbfaef1ee58b1363bdc0664c9b8e SIZE (rust/crates/simplelog-0.12.2.crate) = 21548 SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d SIZE (rust/crates/siphasher-1.0.1.crate) = 10351 -SHA256 (rust/crates/skiplist-0.6.0.crate) = f354fd282d3177c2951004953e2fdc4cb342fa159bbee8b829852b6a081c8ea1 -SIZE (rust/crates/skiplist-0.6.0.crate) = 162131 SHA256 (rust/crates/skrifa-0.37.0.crate) = 8c31071dedf532758ecf3fed987cdb4bd9509f900e026ab684b4ecb81ea49841 SIZE (rust/crates/skrifa-0.37.0.crate) = 283031 SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589 @@ -2015,12 +1909,6 @@ SHA256 (rust/crates/smol-2.0.2.crate) = a33bd3e260892199c3ccfc487c88b2da2265080a SIZE (rust/crates/smol-2.0.2.crate) = 275552 SHA256 (rust/crates/smol_str-0.2.2.crate) = dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead SIZE (rust/crates/smol_str-0.2.2.crate) = 15840 -SHA256 (rust/crates/snap-1.1.1.crate) = 1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b -SIZE (rust/crates/snap-1.1.1.crate) = 33763 -SHA256 (rust/crates/soa-rs-0.8.1.crate) = b75ae4668062b095fda87ba54118697bed601f07f6c68bf50289a25ca0c8c935 -SIZE (rust/crates/soa-rs-0.8.1.crate) = 23126 -SHA256 (rust/crates/soa-rs-derive-0.8.0.crate) = 9c09121507da587d3434e5929ce3321162f36bd3eff403873cb163c06b176913 -SIZE (rust/crates/soa-rs-derive-0.8.0.crate) = 10365 SHA256 (rust/crates/socket2-0.5.10.crate) = e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678 SIZE (rust/crates/socket2-0.5.10.crate) = 58169 SHA256 (rust/crates/socket2-0.6.1.crate) = 17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881 @@ -2041,8 +1929,6 @@ SHA256 (rust/crates/sptr-0.3.2.crate) = 3b9b39299b249ad65f3b7e96443bad61c02ca5cd SIZE (rust/crates/sptr-0.3.2.crate) = 14598 SHA256 (rust/crates/sqlformat-0.2.6.crate) = 7bba3a93db0cc4f7bdece8bb09e77e2e785c20bfebf79eb8340ed80708048790 SIZE (rust/crates/sqlformat-0.2.6.crate) = 23871 -SHA256 (rust/crates/sqlparser-0.53.0.crate) = 05a528114c392209b3264855ad491fcce534b94a38771b0a0b97a79379275ce8 -SIZE (rust/crates/sqlparser-0.53.0.crate) = 266820 SHA256 (rust/crates/sqlx-0.8.6.crate) = 1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc SIZE (rust/crates/sqlx-0.8.6.crate) = 190134 SHA256 (rust/crates/sqlx-core-0.8.6.crate) = ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6 @@ -2069,8 +1955,6 @@ SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1 SIZE (rust/crates/static_assertions-1.1.0.crate) = 18480 SHA256 (rust/crates/stop-words-0.9.0.crate) = 645a3d441ccf4bf47f2e4b7681461986681a6eeea9937d4c3bc9febd61d17c71 SIZE (rust/crates/stop-words-0.9.0.crate) = 111799 -SHA256 (rust/crates/streaming-decompression-0.1.2.crate) = bf6cc3b19bfb128a8ad11026086e31d3ce9ad23f8ea37354b31383a187c44cf3 -SIZE (rust/crates/streaming-decompression-0.1.2.crate) = 7641 SHA256 (rust/crates/streaming-iterator-0.1.9.crate) = 2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520 SIZE (rust/crates/streaming-iterator-0.1.9.crate) = 18482 SHA256 (rust/crates/strength_reduce-0.2.4.crate) = fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82 @@ -2291,18 +2175,24 @@ SHA256 (rust/crates/tower-layer-0.3.3.crate) = 121c2a6cda46980bb0fcd1647ffaf6cd3 SIZE (rust/crates/tower-layer-0.3.3.crate) = 6180 SHA256 (rust/crates/tower-service-0.3.3.crate) = 8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3 SIZE (rust/crates/tower-service-0.3.3.crate) = 6950 -SHA256 (rust/crates/tracing-0.1.41.crate) = 784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0 -SIZE (rust/crates/tracing-0.1.41.crate) = 82448 -SHA256 (rust/crates/tracing-attributes-0.1.30.crate) = 81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903 -SIZE (rust/crates/tracing-attributes-0.1.30.crate) = 39142 -SHA256 (rust/crates/tracing-core-0.1.34.crate) = b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678 -SIZE (rust/crates/tracing-core-0.1.34.crate) = 63760 +SHA256 (rust/crates/tracing-0.1.43.crate) = 2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647 +SIZE (rust/crates/tracing-0.1.43.crate) = 90033 +SHA256 (rust/crates/tracing-attributes-0.1.31.crate) = 7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da +SIZE (rust/crates/tracing-attributes-0.1.31.crate) = 39733 +SHA256 (rust/crates/tracing-core-0.1.35.crate) = 7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c +SIZE (rust/crates/tracing-core-0.1.35.crate) = 63837 SHA256 (rust/crates/tracing-log-0.2.0.crate) = ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3 SIZE (rust/crates/tracing-log-0.2.0.crate) = 17561 SHA256 (rust/crates/tracing-serde-0.2.0.crate) = 704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1 SIZE (rust/crates/tracing-serde-0.2.0.crate) = 7755 -SHA256 (rust/crates/tracing-subscriber-0.3.20.crate) = 2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5 -SIZE (rust/crates/tracing-subscriber-0.3.20.crate) = 212274 +SHA256 (rust/crates/tracing-subscriber-0.3.22.crate) = 2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e +SIZE (rust/crates/tracing-subscriber-0.3.22.crate) = 212851 +SHA256 (rust/crates/tracing-tracy-0.11.4.crate) = 0eaa1852afa96e0fe9e44caa53dc0bd2d9d05e0f2611ce09f97f8677af56e4ba +SIZE (rust/crates/tracing-tracy-0.11.4.crate) = 14765 +SHA256 (rust/crates/tracy-client-0.18.3.crate) = 91d722a05fe49b31fef971c4732a7d4aa6a18283d9ba46abddab35f484872947 +SIZE (rust/crates/tracy-client-0.18.3.crate) = 31559 +SHA256 (rust/crates/tracy-client-sys-0.27.0.crate) = 2fb391ac70462b3097a755618fbf9c8f95ecc1eb379a414f7b46f202ed10db1f +SIZE (rust/crates/tracy-client-sys-0.27.0.crate) = 357998 SHA256 (rust/crates/trait-variant-0.1.2.crate) = 70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7 SIZE (rust/crates/trait-variant-0.1.2.crate) = 6008 SHA256 (rust/crates/transpose-0.2.3.crate) = 1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e @@ -2381,6 +2271,8 @@ SHA256 (rust/crates/unicode-ccc-0.2.0.crate) = 1df77b101bcc4ea3d78dafc5ad7e4f58c SIZE (rust/crates/unicode-ccc-0.2.0.crate) = 8872 SHA256 (rust/crates/unicode-ccc-0.4.0.crate) = ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e SIZE (rust/crates/unicode-ccc-0.4.0.crate) = 8942 +SHA256 (rust/crates/unicode-general-category-1.1.0.crate) = 0b993bddc193ae5bd0d623b49ec06ac3e9312875fdae725a975c51db1cc1677f +SIZE (rust/crates/unicode-general-category-1.1.0.crate) = 36486 SHA256 (rust/crates/unicode-ident-1.0.19.crate) = f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d SIZE (rust/crates/unicode-ident-1.0.19.crate) = 47480 SHA256 (rust/crates/unicode-linebreak-0.1.5.crate) = 3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f @@ -2389,8 +2281,6 @@ SHA256 (rust/crates/unicode-normalization-0.1.24.crate) = 5033c97c4262335cded6d6 SIZE (rust/crates/unicode-normalization-0.1.24.crate) = 126536 SHA256 (rust/crates/unicode-properties-0.1.3.crate) = e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0 SIZE (rust/crates/unicode-properties-0.1.3.crate) = 42252 -SHA256 (rust/crates/unicode-reverse-1.0.9.crate) = 4b6f4888ebc23094adfb574fdca9fdc891826287a6397d2cd28802ffd6f20c76 -SIZE (rust/crates/unicode-reverse-1.0.9.crate) = 7739 SHA256 (rust/crates/unicode-script-0.5.7.crate) = 9fb421b350c9aff471779e262955939f565ec18b86c15364e6bdf0d662ca7c1f SIZE (rust/crates/unicode-script-0.5.7.crate) = 47080 SHA256 (rust/crates/unicode-segmentation-1.12.0.crate) = f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493 @@ -2411,8 +2301,6 @@ SHA256 (rust/crates/untrusted-0.7.1.crate) = a156c684c91ea7d62626509bce3cb4e1d9e SIZE (rust/crates/untrusted-0.7.1.crate) = 7924 SHA256 (rust/crates/untrusted-0.9.0.crate) = 8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1 SIZE (rust/crates/untrusted-0.9.0.crate) = 14447 -SHA256 (rust/crates/unty-0.0.4.crate) = 6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae -SIZE (rust/crates/unty-0.0.4.crate) = 7200 SHA256 (rust/crates/url-2.5.7.crate) = 08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b SIZE (rust/crates/url-2.5.7.crate) = 87907 SHA256 (rust/crates/urlencoding-2.1.3.crate) = daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da @@ -2445,8 +2333,6 @@ SHA256 (rust/crates/version-compare-0.2.0.crate) = 852e951cb7832cb45cb1169900d19 SIZE (rust/crates/version-compare-0.2.0.crate) = 13942 SHA256 (rust/crates/version_check-0.9.5.crate) = 0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a SIZE (rust/crates/version_check-0.9.5.crate) = 15554 -SHA256 (rust/crates/virtue-0.0.18.crate) = 051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1 -SIZE (rust/crates/virtue-0.0.18.crate) = 33545 SHA256 (rust/crates/vscode_theme-0.2.0.crate) = 8b3666211944f2e6ba2c359bc9efc1891157e910b1b11c3900892ea9f18179d2 SIZE (rust/crates/vscode_theme-0.2.0.crate) = 20107 SHA256 (rust/crates/vsimd-0.8.0.crate) = 5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64 @@ -2801,8 +2687,6 @@ SHA256 (rust/crates/xmlparser-0.13.6.crate) = 66fee0b777b0f5ac1c69bb06d361268faa SIZE (rust/crates/xmlparser-0.13.6.crate) = 26718 SHA256 (rust/crates/xmlwriter-0.1.0.crate) = ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9 SIZE (rust/crates/xmlwriter-0.1.0.crate) = 6261 -SHA256 (rust/crates/xxhash-rust-0.8.15.crate) = fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3 -SIZE (rust/crates/xxhash-rust-0.8.15.crate) = 21515 SHA256 (rust/crates/yaml-rust2-0.8.1.crate) = 8902160c4e6f2fb145dbe9d6760a75e3c9522d8bf796ed7047c85919ac7115f8 SIZE (rust/crates/yaml-rust2-0.8.1.crate) = 138875 SHA256 (rust/crates/yansi-1.0.1.crate) = cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049 @@ -2857,16 +2741,10 @@ SHA256 (rust/crates/zip-0.6.6.crate) = 760394e246e4c28189f19d488c058bf16f564016a SIZE (rust/crates/zip-0.6.6.crate) = 65789 SHA256 (rust/crates/zip-1.1.4.crate) = 9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164 SIZE (rust/crates/zip-1.1.4.crate) = 77910 -SHA256 (rust/crates/zlib-rs-0.5.2.crate) = 2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2 -SIZE (rust/crates/zlib-rs-0.5.2.crate) = 194342 SHA256 (rust/crates/zstd-0.11.2+zstd.1.5.2.crate) = 20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4 SIZE (rust/crates/zstd-0.11.2+zstd.1.5.2.crate) = 28987 -SHA256 (rust/crates/zstd-0.13.3.crate) = e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a -SIZE (rust/crates/zstd-0.13.3.crate) = 30514 SHA256 (rust/crates/zstd-safe-5.0.2+zstd.1.5.2.crate) = 1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db SIZE (rust/crates/zstd-safe-5.0.2+zstd.1.5.2.crate) = 17273 -SHA256 (rust/crates/zstd-safe-7.2.4.crate) = 8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d -SIZE (rust/crates/zstd-safe-7.2.4.crate) = 29350 SHA256 (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748 SIZE (rust/crates/zstd-sys-2.0.16+zstd.1.5.7.crate) = 775620 SHA256 (rust/crates/zune-core-0.4.12.crate) = 3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a @@ -2887,6 +2765,8 @@ SHA256 (tree-sitter-grammars-tree-sitter-markdown-9a23c1a96c0513d8fc6520972beedd SIZE (tree-sitter-grammars-tree-sitter-markdown-9a23c1a96c0513d8fc6520972beedd419a973539_GH0.tar.gz) = 418620 SHA256 (zed-industries-windows-capture-f0d6c1b6691db75461b732f6d5ff56eed002eeb9_GH0.tar.gz) = 3667ab763b7d3040216f77abc7dedb7994f4624a5a06bca4a36f7df416fba2c8 SIZE (zed-industries-windows-capture-f0d6c1b6691db75461b732f6d5ff56eed002eeb9_GH0.tar.gz) = 40237 +SHA256 (zed-industries-tiktoken-rs-2570c4387a8505fb8f1d3f3557454b474f1e8271_GH0.tar.gz) = 9eb61203ebb61e7bb32e12a106557ec75e5320b7eba8810ad465a2eda29fd016 +SIZE (zed-industries-tiktoken-rs-2570c4387a8505fb8f1d3f3557454b474f1e8271_GH0.tar.gz) = 3815384 SHA256 (camdencheek-tree-sitter-go-mod-2e886870578eeba1927a2dc4bd2e2b3f598c5f9a_GH0.tar.gz) = de080028f29c80b5ca16b8b5199a1ae5e19b04070160a74b7a9bfccf71a3c224 SIZE (camdencheek-tree-sitter-go-mod-2e886870578eeba1927a2dc4bd2e2b3f598c5f9a_GH0.tar.gz) = 31799 SHA256 (RustAudio-rodio-e2074c6c2acf07b57cf717e076bdda7a9ac6e70b_GH0.tar.gz) = 0acce2f7849ee292bd681e4d83e3de4184d48fecb5edc25f0a4902ac69544bd8 @@ -2897,8 +2777,6 @@ SHA256 (zed-industries-gh-workflow-09acfdf2bd5c1d6254abefd609c808ff73547b2c_GH0. SIZE (zed-industries-gh-workflow-09acfdf2bd5c1d6254abefd609c808ff73547b2c_GH0.tar.gz) = 44984 SHA256 (zed-industries-scap-4afea48c3b002197176fb19cd0f9b180dd36eaac_GH0.tar.gz) = 48f60b164435404d1389a090f7a2d06e43acc87c1abba3799109d20f171e7e1d SIZE (zed-industries-scap-4afea48c3b002197176fb19cd0f9b180dd36eaac_GH0.tar.gz) = 5161737 -SHA256 (zed-industries-tiktoken-rs-7249f999c5fdf9bf3cc5c288c964454e4dac0c00_GH0.tar.gz) = b30a099ea15c34663648df1b17dec0ecaa4f230ef57690f01f1d0e8b2fdde48e -SIZE (zed-industries-tiktoken-rs-7249f999c5fdf9bf3cc5c288c964454e4dac0c00_GH0.tar.gz) = 3815394 SHA256 (zed-industries-tree-sitter-git-commit-88309716a69dd13ab83443721ba6e0b491d37ee9_GH0.tar.gz) = 8483d01c4443a016961545bf520c841bbec9b6d927e12a94666ebc4bf0186327 SIZE (zed-industries-tree-sitter-git-commit-88309716a69dd13ab83443721ba6e0b491d37ee9_GH0.tar.gz) = 73789 SHA256 (zed-industries-reqwest-c15662463bda39148ba154100dd44d3fba5873a4_GH0.tar.gz) = a0c40719d6b44db6e6d9018756ae47a2c881441a6f3148f6cf3e60d8d4db8ab0 @@ -2931,5 +2809,5 @@ SHA256 (zed-industries-tree-sitter-yaml-baff0b51c64ef6a1fb1f8390f3ad6015b83ec13a SIZE (zed-industries-tree-sitter-yaml-baff0b51c64ef6a1fb1f8390f3ad6015b83ec13a_GH0.tar.gz) = 145319 SHA256 (zed-industries-calloop-eb6b4fd17b9af5ecc226546bdd04185391b3e265_GH0.tar.gz) = 8698ebc194a6c3ee377cde94f4fdff590f6a7973bc7987c880801fa7fd69e5c3 SIZE (zed-industries-calloop-eb6b4fd17b9af5ecc226546bdd04185391b3e265_GH0.tar.gz) = 94768 -SHA256 (zed-industries-zed-v0.216.1_GH0.tar.gz) = e392f32e2b2d1c3d1251872633a4b6d9abeb633df83346f2d58cc432820338fd -SIZE (zed-industries-zed-v0.216.1_GH0.tar.gz) = 22368372 +SHA256 (zed-industries-zed-v0.217.3_GH0.tar.gz) = fe7b87e70fa68b11350445997e3a1b8f56b75ccf8222b1cc4725af848ed9a08d +SIZE (zed-industries-zed-v0.217.3_GH0.tar.gz) = 22346634 diff --git a/editors/zed/files/patch-Cargo.lock b/editors/zed/files/patch-Cargo.lock index 1752a65915d6..517779c42569 100644 --- a/editors/zed/files/patch-Cargo.lock +++ b/editors/zed/files/patch-Cargo.lock @@ -1,6 +1,6 @@ ---- Cargo.lock.orig 2025-12-11 21:24:05 UTC +--- Cargo.lock.orig 2025-12-19 13:27:12 UTC +++ Cargo.lock -@@ -8382,21 +8382,20 @@ name = "ipc-channel" +@@ -8323,21 +8323,20 @@ name = "ipc-channel" [[package]] name = "ipc-channel" @@ -10,7 +10,7 @@ -checksum = "6fb8251fb7bcd9ccd3725ed8deae9fe7db8e586495c9eb5b0c52e6233e5e75ea" +checksum = "f93600b5616c2d075f8af8dbd23c1d69278c5d24e4913d220cbc60b14c95c180" dependencies = [ - "bincode 1.3.3", + "bincode", "crossbeam-channel", "fnv", - "lazy_static", @@ -26,7 +26,7 @@ ] [[package]] -@@ -19858,16 +19857,6 @@ name = "windows" +@@ -19129,16 +19128,6 @@ name = "windows" [[package]] name = "windows" @@ -43,7 +43,7 @@ version = "0.61.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" -@@ -19926,19 +19915,6 @@ name = "windows-core" +@@ -19197,19 +19186,6 @@ name = "windows-core" [[package]] name = "windows-core" @@ -63,7 +63,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" -@@ -19987,17 +19963,6 @@ name = "windows-implement" +@@ -19258,17 +19234,6 @@ name = "windows-implement" [[package]] name = "windows-implement" @@ -81,7 +81,7 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" -@@ -20020,17 +19985,6 @@ name = "windows-interface" +@@ -19291,17 +19256,6 @@ name = "windows-interface" [[package]] name = "windows-interface" @@ -99,7 +99,7 @@ version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" -@@ -20106,15 +20060,6 @@ name = "windows-result" +@@ -19377,15 +19331,6 @@ name = "windows-result" [[package]] name = "windows-result" @@ -115,7 +115,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" -@@ -20129,16 +20074,6 @@ dependencies = [ +@@ -19400,16 +19345,6 @@ dependencies = [ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ "windows-link 0.2.1", diff --git a/editors/zed/files/patch-crates_project_src_agent__server__store.rs b/editors/zed/files/patch-crates_project_src_agent__server__store.rs index 70e513052587..b47902035b77 100644 --- a/editors/zed/files/patch-crates_project_src_agent__server__store.rs +++ b/editors/zed/files/patch-crates_project_src_agent__server__store.rs @@ -1,6 +1,6 @@ ---- crates/project/src/agent_server_store.rs.orig 2025-12-11 21:24:05 UTC +--- crates/project/src/agent_server_store.rs.orig 2025-12-18 17:41:26 UTC +++ crates/project/src/agent_server_store.rs -@@ -1519,6 +1519,8 @@ fn get_platform_info() -> Option<(&'static str, &'stat +@@ -1576,6 +1576,8 @@ fn get_platform_info() -> Option<(&'static str, &'stat "pc-windows-msvc" } else if cfg!(target_os = "linux") { "unknown-linux-gnu" @@ -9,7 +9,7 @@ } else { return None; }; -@@ -1605,6 +1607,8 @@ impl ExternalAgentServer for LocalExtensionArchiveAgen +@@ -1662,6 +1664,8 @@ impl ExternalAgentServer for LocalExtensionArchiveAgen "linux" } else if cfg!(target_os = "windows") { "windows" diff --git a/editors/zed/files/patch-crates_remote_src_transport_ssh.rs b/editors/zed/files/patch-crates_remote_src_transport.rs index 21fadf3fcc98..cc548bd5396d 100644 --- a/editors/zed/files/patch-crates_remote_src_transport_ssh.rs +++ b/editors/zed/files/patch-crates_remote_src_transport.rs @@ -1,6 +1,6 @@ ---- crates/remote/src/transport/ssh.rs.orig 2025-12-11 21:24:05 UTC -+++ crates/remote/src/transport/ssh.rs -@@ -1087,6 +1087,7 @@ fn parse_platform(output: &str) -> Result<RemotePlatfo +--- crates/remote/src/transport.rs.orig 2025-12-19 13:24:55 UTC ++++ crates/remote/src/transport.rs +@@ -27,6 +27,7 @@ fn parse_platform(output: &str) -> Result<RemotePlatfo let os = match os { "Darwin" => "macos", "Linux" => "linux", @@ -8,13 +8,13 @@ _ => anyhow::bail!( "Prebuilt remote servers are not yet available for {os:?}. See https://zed.dev/docs/remote-development" ), -@@ -1099,7 +1100,9 @@ fn parse_platform(output: &str) -> Result<RemotePlatfo +@@ -39,7 +40,9 @@ fn parse_platform(output: &str) -> Result<RemotePlatfo || arch.starts_with("aarch64") { "aarch64" - } else if arch.starts_with("x86") { + } else if arch.starts_with("x86") -+ || arch.starts_with("amd64") ++ || arch.starts_with("amd64") + { "x86_64" } else { diff --git a/editors/zed/files/patch-crates_zed_Cargo.toml b/editors/zed/files/patch-crates_zed_Cargo.toml index de8af5d6133c..ba3632755404 100644 --- a/editors/zed/files/patch-crates_zed_Cargo.toml +++ b/editors/zed/files/patch-crates_zed_Cargo.toml @@ -1,6 +1,6 @@ ---- crates/zed/Cargo.toml.orig 2025-12-03 16:43:47 UTC +--- crates/zed/Cargo.toml.orig 2025-12-18 17:41:26 UTC +++ crates/zed/Cargo.toml -@@ -42,7 +42,6 @@ copilot.workspace = true +@@ -45,7 +45,6 @@ copilot.workspace = true command_palette.workspace = true component.workspace = true copilot.workspace = true @@ -8,7 +8,7 @@ dap_adapters.workspace = true db.workspace = true debug_adapter_extension.workspace = true -@@ -174,6 +173,9 @@ ashpd.workspace = true +@@ -178,6 +177,9 @@ ashpd.workspace = true [target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies] ashpd.workspace = true diff --git a/editors/zed/files/patch-crates_zed_src_main.rs b/editors/zed/files/patch-crates_zed_src_main.rs index 6f71c25603a2..fcf04fd58ac9 100644 --- a/editors/zed/files/patch-crates_zed_src_main.rs +++ b/editors/zed/files/patch-crates_zed_src_main.rs @@ -1,4 +1,4 @@ ---- crates/zed/src/main.rs.orig 2025-12-11 21:24:05 UTC +--- crates/zed/src/main.rs.orig 2025-12-18 17:41:26 UTC +++ crates/zed/src/main.rs @@ -8,6 +8,7 @@ use collections::HashMap; use client::{Client, ProxySettings, UserStore, parse_zed_link}; @@ -8,7 +8,7 @@ use crashes::InitCrashHandler; use db::kvp::{GLOBAL_KEY_VALUE_STORE, KEY_VALUE_STORE}; use editor::Editor; -@@ -181,6 +182,7 @@ pub fn main() { +@@ -183,6 +184,7 @@ pub fn main() { } // `zed --crash-handler` Makes zed operate in minidump crash handler mode @@ -16,7 +16,7 @@ if let Some(socket) = &args.crash_handler { crashes::crash_server(socket.as_path()); return; -@@ -294,6 +296,7 @@ pub fn main() { +@@ -296,6 +298,7 @@ pub fn main() { .background_executor() .spawn(Session::new(session_id.clone())); @@ -24,7 +24,7 @@ app.background_executor() .spawn(crashes::init(InitCrashHandler { session_id, -@@ -552,6 +555,7 @@ pub fn main() { +@@ -554,6 +557,7 @@ pub fn main() { auto_update::init(client.clone(), cx); dap_adapters::init(cx); auto_update_ui::init(cx); diff --git a/emulators/mesen/Makefile b/emulators/mesen/Makefile index c9c1229e0e55..cfb7ae11d166 100644 --- a/emulators/mesen/Makefile +++ b/emulators/mesen/Makefile @@ -2,7 +2,7 @@ PORTNAME= mesen DISTVERSION= 0.9.9 CATEGORIES= emulators -MAINTAINER= cpetrik@proton.me +MAINTAINER= ports@FreeBSD.org COMMENT= Cross-platform Nintendo Entertainment System (NES/Famicom) emulator WWW= https://www.mesen.ca/ diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile index 2f0dfdc83ee8..7bbdb4e26d37 100644 --- a/emulators/wine-devel/Makefile +++ b/emulators/wine-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= wine -DISTVERSION= 11.0-rc2 +DISTVERSION= 11.0-rc3 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= https://dl.winehq.org/wine/source/11.0/ diff --git a/emulators/wine-devel/distinfo b/emulators/wine-devel/distinfo index 2378c636c5bb..f626c45deaa4 100644 --- a/emulators/wine-devel/distinfo +++ b/emulators/wine-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765613391 -SHA256 (wine-11.0-rc2.tar.xz) = 58c3f4091e94500ba691bd9cd47095137160ccd3b23c365473a6d90c843b55ef -SIZE (wine-11.0-rc2.tar.xz) = 33148876 +TIMESTAMP = 1766260757 +SHA256 (wine-11.0-rc3.tar.xz) = 6f1dcd06fe8d9b19d7b6ce605373fa21c17a56abf67f84dba19e7a68b92a1322 +SIZE (wine-11.0-rc3.tar.xz) = 33168328 diff --git a/emulators/wine-devel/files/pkg32.sh b/emulators/wine-devel/files/pkg32.sh index 04595f6c104c..41fed66b1045 100644 --- a/emulators/wine-devel/files/pkg32.sh +++ b/emulators/wine-devel/files/pkg32.sh @@ -18,6 +18,27 @@ if [ ! -d "$I386_ROOT/usr/share/keys/pkg" ]; then ln -s /usr/share/keys/pkg "$I386_ROOT/usr/share/keys/pkg" fi -# Show what we're going to do, then do it. -echo pkg -o ABI_FILE=$ABI_FILE -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@" -exec pkg -o ABI_FILE=$ABI_FILE -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@" +run_pkg32() +{ + # Show what we're going to do, then do it. + echo pkg -o ABI_FILE=$ABI_FILE -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@"; + pkg -o ABI_FILE=$ABI_FILE -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@"; +} + +run_pkg32_old() +{ + shift + + # Show what we're going to do, then do it. + echo pkg -o ABI="FreeBSD:14:i386" -o OSVERSION=1403000 -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@"; + pkg -o ABI="FreeBSD:14:i386" -o OSVERSION=1403000 -o INSTALL_AS_USER=true -o RUN_SCRIPTS=false --rootdir "$I386_ROOT" "$@"; +} + +if [ $# -gt 0 ]; then + case $1 in + --old) run_pkg32_old "$@" ;; + *) run_pkg32 "$@" ;; + esac +else + run_pkg32 "$@" +fi diff --git a/emulators/wine-devel/files/wine-wow64.sh b/emulators/wine-devel/files/wine-wow64.sh index 23afe20f1514..478b11d43f99 100644 --- a/emulators/wine-devel/files/wine-wow64.sh +++ b/emulators/wine-devel/files/wine-wow64.sh @@ -11,7 +11,9 @@ then printf "%s doesn't exist!\n\n" "$I386_ROOT/$PREFIX/bin/wine" printf "Try installing 32-bit Wine with\n\t%s\n" "$PREFIX/share/wine/pkg32.sh install wine-devel mesa-dri" - printf "In the case of FreeBSD 15.0, use wine64.bin instead or use Poudriere if 32bit is needed\n" + printf "In the case of FreeBSD 15.0, use wine64.bin if 32bit is not needed\n" + printf "If 32bit is needed, then either use the repository from 14.3 with this command:\n\t%s\n" "$PREFIX/share/wine/pkg32.sh --old install -r FreeBSD-ports wine-devel mesa-dri" + printf "Or use Poudriere\n" ABI=$(pkg config ABI | sed s/amd64/i386/) FREEBSD_VERSION_MAJOR=`uname -r | sed "s/\..*//"` @@ -36,6 +38,7 @@ if [ "$WINE32_VERSION" != "$WINE64_VERSION" ] then printf "wine [%s] and wine64 [%s] versions do not match!\n\n" "$WINE32_VERSION" "$WINE64_VERSION" printf "Try updating 32-bit wine with\n\t%s\n" "$PREFIX/share/wine/pkg32.sh upgrade" + printf "If you are on 15.0, then you can use the old repository\n\t%s\n" "$PREFIX/share/wine/pkg32.sh --old upgrade -r FreeBSD-ports" exit 1 fi diff --git a/filesystems/nbt/Makefile b/filesystems/nbt/Makefile index ae706dc35e0b..aa39c72adf37 100644 --- a/filesystems/nbt/Makefile +++ b/filesystems/nbt/Makefile @@ -5,7 +5,7 @@ MASTER_SITES= SF/nbtfsutils PKGNAMEPREFIX= fusefs- DISTNAME= nbtfsutils-${REVISION_DATE}-${REVISION_HASH}-src -MAINTAINER= msl0000023508@gmail.com +MAINTAINER= whr@rivoreo.one COMMENT= Editing Named Binary Tag (NBT) as using a file system WWW= https://sourceforge.net/projects/nbtfsutils/ diff --git a/finance/homebank/Makefile b/finance/homebank/Makefile index cd6441ca67b0..d5a8ab99baa3 100644 --- a/finance/homebank/Makefile +++ b/finance/homebank/Makefile @@ -1,5 +1,5 @@ PORTNAME= homebank -PORTVERSION= 5.8.6 +PORTVERSION= 5.9.6 CATEGORIES= finance MASTER_SITES= https://www.gethomebank.org/public/sources/ diff --git a/finance/homebank/distinfo b/finance/homebank/distinfo index 6141cc5c8489..829cceebedf1 100644 --- a/finance/homebank/distinfo +++ b/finance/homebank/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1736216842 -SHA256 (homebank-5.8.6.tar.gz) = af138a7bf2cd795c1338c5e3d9e99909ee6b33d920c618dc35c6477fd826ddf5 -SIZE (homebank-5.8.6.tar.gz) = 3780388 +TIMESTAMP = 1766298583 +SHA256 (homebank-5.9.6.tar.gz) = f0320bfe04f2b18fded4372eb89e6a63abd7501638b9458da12cd468243eb77a +SIZE (homebank-5.9.6.tar.gz) = 4039965 diff --git a/finance/homebank/pkg-plist b/finance/homebank/pkg-plist index eb392a513039..f58a88078e45 100644 --- a/finance/homebank/pkg-plist +++ b/finance/homebank/pkg-plist @@ -1,71 +1,6 @@ bin/homebank -share/metainfo/homebank.appdata.xml share/application-registry/homebank.applications share/applications/homebank.desktop -share/icons/hicolor/16x16/apps/homebank.png -share/icons/hicolor/22x22/apps/homebank.png -share/icons/hicolor/24x24/apps/homebank.png -share/icons/hicolor/256x256/apps/homebank.png -share/icons/hicolor/32x32/apps/homebank.png -share/icons/hicolor/48x48/apps/homebank.png -share/locale/af/LC_MESSAGES/homebank.mo -share/locale/ar/LC_MESSAGES/homebank.mo -share/locale/be/LC_MESSAGES/homebank.mo -share/locale/bg/LC_MESSAGES/homebank.mo -share/locale/br/LC_MESSAGES/homebank.mo -share/locale/ca/LC_MESSAGES/homebank.mo -share/locale/ckb/LC_MESSAGES/homebank.mo -share/locale/cs/LC_MESSAGES/homebank.mo -share/locale/cy/LC_MESSAGES/homebank.mo -share/locale/da/LC_MESSAGES/homebank.mo -share/locale/de/LC_MESSAGES/homebank.mo -share/locale/el/LC_MESSAGES/homebank.mo -share/locale/en_AU/LC_MESSAGES/homebank.mo -share/locale/en_CA/LC_MESSAGES/homebank.mo -share/locale/en_GB/LC_MESSAGES/homebank.mo -share/locale/es/LC_MESSAGES/homebank.mo -share/locale/et/LC_MESSAGES/homebank.mo -share/locale/eu/LC_MESSAGES/homebank.mo -share/locale/fa/LC_MESSAGES/homebank.mo -share/locale/fi/LC_MESSAGES/homebank.mo -share/locale/fr/LC_MESSAGES/homebank.mo -share/locale/fr_CA/LC_MESSAGES/homebank.mo -share/locale/gl/LC_MESSAGES/homebank.mo -share/locale/he/LC_MESSAGES/homebank.mo -share/locale/hr/LC_MESSAGES/homebank.mo -share/locale/hu/LC_MESSAGES/homebank.mo -share/locale/id/LC_MESSAGES/homebank.mo -share/locale/is/LC_MESSAGES/homebank.mo -share/locale/it/LC_MESSAGES/homebank.mo -share/locale/ja/LC_MESSAGES/homebank.mo -share/locale/ko/LC_MESSAGES/homebank.mo -share/locale/lt/LC_MESSAGES/homebank.mo -share/locale/lv/LC_MESSAGES/homebank.mo -share/locale/ms/LC_MESSAGES/homebank.mo -share/locale/nb/LC_MESSAGES/homebank.mo -share/locale/nds/LC_MESSAGES/homebank.mo -share/locale/nl/LC_MESSAGES/homebank.mo -share/locale/oc/LC_MESSAGES/homebank.mo -share/locale/pl/LC_MESSAGES/homebank.mo -share/locale/pt_BR/LC_MESSAGES/homebank.mo -share/locale/pt/LC_MESSAGES/homebank.mo -share/locale/pt_PT/LC_MESSAGES/homebank.mo -share/locale/ro/LC_MESSAGES/homebank.mo -share/locale/ru/LC_MESSAGES/homebank.mo -share/locale/si/LC_MESSAGES/homebank.mo -share/locale/sl/LC_MESSAGES/homebank.mo -share/locale/sq/LC_MESSAGES/homebank.mo -share/locale/sr/LC_MESSAGES/homebank.mo -share/locale/sv/LC_MESSAGES/homebank.mo -share/locale/ta/LC_MESSAGES/homebank.mo -share/locale/tr/LC_MESSAGES/homebank.mo -share/locale/uk/LC_MESSAGES/homebank.mo -share/locale/vi/LC_MESSAGES/homebank.mo -share/locale/zh_CN/LC_MESSAGES/homebank.mo -share/locale/zh_TW/LC_MESSAGES/homebank.mo -share/mime-info/homebank.keys -share/mime-info/homebank.mime -share/mime/packages/homebank.xml %%DATADIR%%/datas/ChangeLog %%DATADIR%%/datas/example.xhb %%DATADIR%%/datas/hb-categories-cy.csv @@ -80,11 +15,12 @@ share/mime/packages/homebank.xml %%DATADIR%%/datas/hb-categories-pt.csv %%DATADIR%%/datas/hb-categories-ro.csv %%DATADIR%%/datas/hb-categories-ru.csv +%%DATADIR%%/datas/hb-categories-se.csv %%DATADIR%%/datas/hb-categories-sk.csv %%DATADIR%%/help/00-intro.html %%DATADIR%%/help/00-lexicon.html -%%DATADIR%%/help/00-previously.html %%DATADIR%%/help/00-notenglish.html +%%DATADIR%%/help/00-previously.html %%DATADIR%%/help/00-whatsnew.html %%DATADIR%%/help/dlg-acco.html %%DATADIR%%/help/dlg-arch.html @@ -104,17 +40,18 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/frm-main.html %%DATADIR%%/help/frm-navig.html %%DATADIR%%/help/help.css -%%DATADIR%%/help/images/10.png %%DATADIR%%/help/images/1.png +%%DATADIR%%/help/images/10.png %%DATADIR%%/help/images/2.png %%DATADIR%%/help/images/3.png +%%DATADIR%%/help/images/4.png %%DATADIR%%/help/images/45accfilter.png %%DATADIR%%/help/images/45topsending.png %%DATADIR%%/help/images/45txnsplit.png %%DATADIR%%/help/images/46fiscyear.png %%DATADIR%%/help/images/46schedwe.png %%DATADIR%%/help/images/46search.png -%%DATADIR%%/help/images/4.png +%%DATADIR%%/help/images/5.png %%DATADIR%%/help/images/50stackbudget.png %%DATADIR%%/help/images/50txnstatus.png %%DATADIR%%/help/images/53txntype.png @@ -130,13 +67,16 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/images/58flags.png %%DATADIR%%/help/images/58lifeenergy.png %%DATADIR%%/help/images/58tipfilters.png -%%DATADIR%%/help/images/5.png +%%DATADIR%%/help/images/59inlinecalc.png +%%DATADIR%%/help/images/59newicons.png +%%DATADIR%%/help/images/59sched.png %%DATADIR%%/help/images/6.png %%DATADIR%%/help/images/7.png %%DATADIR%%/help/images/8.png %%DATADIR%%/help/images/9.png %%DATADIR%%/help/images/arrow.png %%DATADIR%%/help/images/d-info.png +%%DATADIR%%/help/images/d-warn.png %%DATADIR%%/help/images/dlg-account1.png %%DATADIR%%/help/images/dlg-account2.png %%DATADIR%%/help/images/dlg-account3.png @@ -156,29 +96,34 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/images/dlg-filter6.png %%DATADIR%%/help/images/dlg-payee1.png %%DATADIR%%/help/images/dlg-payee2.png +%%DATADIR%%/help/images/dlg-prefs0.png %%DATADIR%%/help/images/dlg-prefs1.png %%DATADIR%%/help/images/dlg-prefs2.png +%%DATADIR%%/help/images/dlg-prefs2a.png +%%DATADIR%%/help/images/dlg-prefs2b.png %%DATADIR%%/help/images/dlg-prefs3.png %%DATADIR%%/help/images/dlg-prefs4.png -%%DATADIR%%/help/images/dlg-prefs5.png +%%DATADIR%%/help/images/dlg-prefs4a.png +%%DATADIR%%/help/images/dlg-prefs4b.png +%%DATADIR%%/help/images/dlg-prefs4c.png %%DATADIR%%/help/images/dlg-prefs6.png %%DATADIR%%/help/images/dlg-prefs7.png %%DATADIR%%/help/images/dlg-prefs8.png %%DATADIR%%/help/images/dlg-prefs9.png %%DATADIR%%/help/images/dlg-prefsA.png %%DATADIR%%/help/images/dlg-prefsB.png -%%DATADIR%%/help/images/dlg-prefsF.png +%%DATADIR%%/help/images/dlg-prefsC.png %%DATADIR%%/help/images/dlg-properties1.png %%DATADIR%%/help/images/dlg-split1.png %%DATADIR%%/help/images/dlg-tag.png %%DATADIR%%/help/images/dlg-template1.png +%%DATADIR%%/help/images/dlg-template2.png %%DATADIR%%/help/images/dlg-transaction1.png %%DATADIR%%/help/images/dlg-transaction2.png %%DATADIR%%/help/images/dlg-txnmultiple.png %%DATADIR%%/help/images/dlg-xferselection.png %%DATADIR%%/help/images/doc_balance.png %%DATADIR%%/help/images/doc_title.png -%%DATADIR%%/help/images/d-warn.png %%DATADIR%%/help/images/g_translate.png %%DATADIR%%/help/images/hb-ope-auto.png %%DATADIR%%/help/images/hb-ope-budget.png @@ -211,7 +156,6 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/images/pm-transfer.png %%DATADIR%%/help/images/tip-accorder.png %%DATADIR%%/help/images/tip-listsearch.png -%%DATADIR%%/help/images/use-assignment1.png %%DATADIR%%/help/images/use-assignment2b.png %%DATADIR%%/help/images/use-budget1.png %%DATADIR%%/help/images/use-budget2.png @@ -221,7 +165,6 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/images/use-import3a.png %%DATADIR%%/help/images/use-import3b.png %%DATADIR%%/help/images/use-import4.png -%%DATADIR%%/help/images/use-scheduled1.png %%DATADIR%%/help/images/use-scheduled2.png %%DATADIR%%/help/images/use-scheduled3.png %%DATADIR%%/help/images/use-vehiclecost1.png @@ -235,15 +178,9 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/images/win-budget2.png %%DATADIR%%/help/images/win-carcost1.png %%DATADIR%%/help/images/win-main.png -%%DATADIR%%/help/images/win-main1.png -%%DATADIR%%/help/images/win-main2.png -%%DATADIR%%/help/images/win-main3.png -%%DATADIR%%/help/images/win-main4.png -%%DATADIR%%/help/images/win-main5.png %%DATADIR%%/help/images/win-statistics1.png %%DATADIR%%/help/images/win-statistics2.png %%DATADIR%%/help/images/win-statistics3.png -%%DATADIR%%/help/images/win-statistics4.png %%DATADIR%%/help/images/win-trendtime1.png %%DATADIR%%/help/images/win-trendtime2.png %%DATADIR%%/help/index.html @@ -255,8 +192,8 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/use-budget.html %%DATADIR%%/help/use-favfilters.html %%DATADIR%%/help/use-import.html -%%DATADIR%%/help/use-loan-mortgage.html %%DATADIR%%/help/use-lend-refund.html +%%DATADIR%%/help/use-loan-mortgage.html %%DATADIR%%/help/use-reconcile.html %%DATADIR%%/help/use-tipsandtricks.html %%DATADIR%%/help/use-vehiclecost.html @@ -267,13 +204,111 @@ share/mime/packages/homebank.xml %%DATADIR%%/help/win-statistics.html %%DATADIR%%/help/win-trendtime.html %%DATADIR%%/help/win-vehiclecost.html -%%DATADIR%%/icons/hicolor/scalable/actions/data-usage-symbolic.svg -%%DATADIR%%/icons/hicolor/scalable/actions/eye-not-looking-symbolic.svg -%%DATADIR%%/icons/hicolor/scalable/actions/hb-go-down-symbolic.svg -%%DATADIR%%/icons/hicolor/scalable/actions/hb-go-up-symbolic.svg -%%DATADIR%%/icons/hicolor/scalable/actions/list-move-after-symbolic.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-account.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-archive.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-assign.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-budget.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-category.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-clear.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-document-new.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-document-open.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-document-print.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-document-save.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-donate.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-file-export.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-file-import.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-filter.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-go-down.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-go-up.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-help.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-legend.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-life-energy.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-add.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-cleared.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-delete.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-edit.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-future.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-herit.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-multiedit.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-reconciled.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-ope-show.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-payee.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-rate.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-rep-balance.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-rep-budget.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-rep-stats.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-rep-time.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-rep-vehicle.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-bar.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-column.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-donut.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-line.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-list.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-pie.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-progress.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-refresh.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-stack.svg +%%DATADIR%%/icons/Default/scalable/actions/hb-view-stack100.svg +%%DATADIR%%/icons/Default/scalable/status/hb-changes-allow.svg +%%DATADIR%%/icons/Default/scalable/status/hb-changes-prevent.svg +%%DATADIR%%/icons/Default/scalable/status/hb-file-invalid.svg +%%DATADIR%%/icons/Default/scalable/status/hb-file-valid.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-blue.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-green.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-none.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-orange.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-purple.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-red.svg +%%DATADIR%%/icons/Default/scalable/status/hb-gf-yellow.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-added.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-auto.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-budget.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-clear.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-closed.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-edited.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-forced.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-future.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-import.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-pending.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-recon.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-reconlock.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-remind.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-similar.svg +%%DATADIR%%/icons/Default/scalable/status/hb-item-void.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-cash.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-ccard.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-check.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-dcard.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-deposit.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-directdebit.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-epayment.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-fifee.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-intransfer.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-mobphone.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-none.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-standingorder.svg +%%DATADIR%%/icons/Default/scalable/status/hb-pm-transfer.svg +%%DATADIR%%/icons/Default/scalable/status/hb-quicktips.svg +%%DATADIR%%/icons/Default/scalable/status/prf-advanced.svg +%%DATADIR%%/icons/Default/scalable/status/prf-backup.svg +%%DATADIR%%/icons/Default/scalable/status/prf-euro.svg +%%DATADIR%%/icons/Default/scalable/status/prf-folder.svg +%%DATADIR%%/icons/Default/scalable/status/prf-forecast.svg +%%DATADIR%%/icons/Default/scalable/status/prf-general.svg +%%DATADIR%%/icons/Default/scalable/status/prf-import.svg +%%DATADIR%%/icons/Default/scalable/status/prf-interface-color.svg +%%DATADIR%%/icons/Default/scalable/status/prf-interface-theme.svg +%%DATADIR%%/icons/Default/scalable/status/prf-interface.svg +%%DATADIR%%/icons/Default/scalable/status/prf-locale.svg +%%DATADIR%%/icons/Default/scalable/status/prf-report.svg +%%DATADIR%%/icons/Default/scalable/status/prf-transaction-dialog.svg +%%DATADIR%%/icons/Default/scalable/status/prf-transaction-payment.svg +%%DATADIR%%/icons/Default/scalable/status/prf-transaction-transfer.svg +%%DATADIR%%/icons/Default/scalable/status/prf-transaction.svg %%DATADIR%%/icons/hicolor/16x16/status/hb-changes-allow.png %%DATADIR%%/icons/hicolor/16x16/status/hb-changes-prevent.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-file-invalid.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-file-valid.png %%DATADIR%%/icons/hicolor/16x16/status/hb-gf-blue.png %%DATADIR%%/icons/hicolor/16x16/status/hb-gf-green.png %%DATADIR%%/icons/hicolor/16x16/status/hb-gf-none.png @@ -281,66 +316,64 @@ share/mime/packages/homebank.xml %%DATADIR%%/icons/hicolor/16x16/status/hb-gf-purple.png %%DATADIR%%/icons/hicolor/16x16/status/hb-gf-red.png %%DATADIR%%/icons/hicolor/16x16/status/hb-gf-yellow.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-auto.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-budget.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-cleared.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-edit.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-forced.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-future.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-new.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-prefilled.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-reconciled.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-remind.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-similar.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-ope-void.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-added.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-auto.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-budget.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-clear.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-closed.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-edited.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-forced.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-future.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-import.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-pending.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-recon.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-reconlock.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-remind.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-similar.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-item-void.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-cash.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-ccard.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-check.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-dcard.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-deposit.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-directdebit.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-epayment.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-fifee.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-intransfer.png %%DATADIR%%/icons/hicolor/16x16/status/hb-pm-mobphone.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-none.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-standingorder.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-transfer.png +%%DATADIR%%/icons/hicolor/16x16/status/hb-quicktips.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-account.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-archive.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-assign.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-assign-run.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-budget.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-category.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-clear.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-currency.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-document-new.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-document-open.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-document-print.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-document-save-as.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-document-save.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-donate.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-file-export.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-file-import.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-file-invalid.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-file-valid.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-filter.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-go-down.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-go-up.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-help.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-life-energy.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-legend.png +%%DATADIR%%/icons/hicolor/24x24/actions/hb-life-energy.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-add.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-cleared.png -%%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-convert.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-delete.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-edit.png +%%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-future.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-herit.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-multiedit.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-reconciled.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-ope-show.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-payee.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-cash.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-ccard.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-check.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-dcard.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-deposit.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-directdebit.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-epayment.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-fifee.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-intransfer.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-none.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-standingorder.png -%%DATADIR%%/icons/hicolor/16x16/status/hb-pm-transfer.png -%%DATADIR%%/icons/hicolor/48x48/status/prf-advanced.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-rate.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-rep-balance.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-rep-budget.png @@ -357,25 +390,193 @@ share/mime/packages/homebank.xml %%DATADIR%%/icons/hicolor/24x24/actions/hb-view-refresh.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-view-stack.png %%DATADIR%%/icons/hicolor/24x24/actions/hb-view-stack100.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-advanced.png %%DATADIR%%/icons/hicolor/48x48/status/prf-backup.png -%%DATADIR%%/icons/hicolor/48x48/status/prf-columns.png %%DATADIR%%/icons/hicolor/48x48/status/prf-euro.png %%DATADIR%%/icons/hicolor/48x48/status/prf-folder.png %%DATADIR%%/icons/hicolor/48x48/status/prf-forecast.png %%DATADIR%%/icons/hicolor/48x48/status/prf-general.png %%DATADIR%%/icons/hicolor/48x48/status/prf-import.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-interface-color.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-interface-theme.png %%DATADIR%%/icons/hicolor/48x48/status/prf-interface.png %%DATADIR%%/icons/hicolor/48x48/status/prf-locale.png -%%DATADIR%%/icons/hicolor/48x48/status/prf-payment.png %%DATADIR%%/icons/hicolor/48x48/status/prf-report.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-transaction-dialog.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-transaction-payment.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-transaction-transfer.png +%%DATADIR%%/icons/hicolor/48x48/status/prf-transaction.png +%%DATADIR%%/icons/hicolor/scalable/actions/data-usage-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/edit-split-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/emblem-system-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/eye-not-looking-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-account-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-archive-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-assign-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-budget-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-category-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-clear-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-document-new-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-document-open-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-document-print-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-document-save-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-donate-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-file-export-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-file-import-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-filter-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-go-down-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-go-up-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-help-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-legend-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-life-energy-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-add-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-cleared-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-delete-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-edit-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-future-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-herit-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-multiedit-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-reconciled-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-ope-show-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-payee-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-rate-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-rep-balance-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-rep-budget-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-rep-stats-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-rep-time-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-rep-vehicle-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-bar-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-column-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-donut-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-line-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-list-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-pie-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-progress-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-refresh-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-stack-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/hb-view-stack100-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/list-collapse-all-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/list-duplicate-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/list-expand-all-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/list-merge-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/list-move-after-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/open-in-browser-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/actions/open-menu-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/text-casesensitive-symbolic.svg %%DATADIR%%/icons/hicolor/scalable/actions/text-regularexpression-symbolic.svg -%%DATADIR%%/icons/hicolor/scalable/actions/toggle-sign-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-changes-allow-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-changes-prevent-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-file-invalid-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-file-valid-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-added-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-auto-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-budget-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-clear-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-closed-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-edited-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-forced-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-future-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-import-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-pending-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-recon-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-reconlock-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-remind-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-similar-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-item-void-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-cash-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-ccard-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-check-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-dcard-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-deposit-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-directdebit-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-epayment-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-fifee-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-intransfer-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-mobphone-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-none-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-standingorder-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-pm-transfer-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/hb-quicktips-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-advanced-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-backup-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-euro-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-folder-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-forecast-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-general-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-import-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-interface-color-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-interface-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-interface-theme-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-locale-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-report-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-transaction-dialog-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-transaction-payment-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-transaction-symbolic.svg +%%DATADIR%%/icons/hicolor/scalable/status/prf-transaction-transfer-symbolic.svg %%DATADIR%%/images/homebank-icon.svg %%DATADIR%%/images/splash.png +share/icons/hicolor/16x16/apps/homebank.png +share/icons/hicolor/22x22/apps/homebank.png +share/icons/hicolor/24x24/apps/homebank.png +share/icons/hicolor/256x256/apps/homebank.png +share/icons/hicolor/32x32/apps/homebank.png +share/icons/hicolor/48x48/apps/homebank.png +share/locale/af/LC_MESSAGES/homebank.mo +share/locale/ar/LC_MESSAGES/homebank.mo +share/locale/be/LC_MESSAGES/homebank.mo +share/locale/bg/LC_MESSAGES/homebank.mo +share/locale/br/LC_MESSAGES/homebank.mo +share/locale/ca/LC_MESSAGES/homebank.mo +share/locale/ckb/LC_MESSAGES/homebank.mo +share/locale/cs/LC_MESSAGES/homebank.mo +share/locale/cy/LC_MESSAGES/homebank.mo +share/locale/da/LC_MESSAGES/homebank.mo +share/locale/de/LC_MESSAGES/homebank.mo +share/locale/el/LC_MESSAGES/homebank.mo +share/locale/en_AU/LC_MESSAGES/homebank.mo +share/locale/en_CA/LC_MESSAGES/homebank.mo +share/locale/en_GB/LC_MESSAGES/homebank.mo +share/locale/es/LC_MESSAGES/homebank.mo +share/locale/et/LC_MESSAGES/homebank.mo +share/locale/eu/LC_MESSAGES/homebank.mo +share/locale/fa/LC_MESSAGES/homebank.mo +share/locale/fi/LC_MESSAGES/homebank.mo +share/locale/fr/LC_MESSAGES/homebank.mo +share/locale/fr_CA/LC_MESSAGES/homebank.mo +share/locale/gl/LC_MESSAGES/homebank.mo +share/locale/he/LC_MESSAGES/homebank.mo +share/locale/hr/LC_MESSAGES/homebank.mo +share/locale/hu/LC_MESSAGES/homebank.mo +share/locale/id/LC_MESSAGES/homebank.mo +share/locale/is/LC_MESSAGES/homebank.mo +share/locale/it/LC_MESSAGES/homebank.mo +share/locale/ja/LC_MESSAGES/homebank.mo +share/locale/ko/LC_MESSAGES/homebank.mo +share/locale/lt/LC_MESSAGES/homebank.mo +share/locale/lv/LC_MESSAGES/homebank.mo +share/locale/ms/LC_MESSAGES/homebank.mo +share/locale/nb/LC_MESSAGES/homebank.mo +share/locale/nds/LC_MESSAGES/homebank.mo +share/locale/nl/LC_MESSAGES/homebank.mo +share/locale/oc/LC_MESSAGES/homebank.mo +share/locale/pl/LC_MESSAGES/homebank.mo +share/locale/pt/LC_MESSAGES/homebank.mo +share/locale/pt_BR/LC_MESSAGES/homebank.mo +share/locale/pt_PT/LC_MESSAGES/homebank.mo +share/locale/ro/LC_MESSAGES/homebank.mo +share/locale/ru/LC_MESSAGES/homebank.mo +share/locale/si/LC_MESSAGES/homebank.mo +share/locale/sl/LC_MESSAGES/homebank.mo +share/locale/sq/LC_MESSAGES/homebank.mo +share/locale/sr/LC_MESSAGES/homebank.mo +share/locale/sv/LC_MESSAGES/homebank.mo +share/locale/ta/LC_MESSAGES/homebank.mo +share/locale/tr/LC_MESSAGES/homebank.mo +share/locale/uk/LC_MESSAGES/homebank.mo +share/locale/vi/LC_MESSAGES/homebank.mo +share/locale/zh_CN/LC_MESSAGES/homebank.mo +share/locale/zh_TW/LC_MESSAGES/homebank.mo +share/metainfo/homebank.appdata.xml +share/mime-info/homebank.keys +share/mime-info/homebank.mime +share/mime/packages/homebank.xml diff --git a/games/alienarena/Makefile b/games/alienarena/Makefile index 6714ceb36d1b..659748f11f8f 100644 --- a/games/alienarena/Makefile +++ b/games/alienarena/Makefile @@ -49,7 +49,7 @@ CLIENT_LIB_DEPENDS= libcurl.so:ftp/curl \ libogg.so:audio/libogg \ libpng.so:graphics/png \ libvorbis.so:audio/libvorbis \ - libode.so:devel/ode + libode.so:devel/ode@double CLIENT_USES= gl jpeg openal:soft,alut minizip xorg CLIENT_USE= GL=glu XORG=x11,xxf86dga,xxf86vm diff --git a/games/fs2open/Makefile b/games/fs2open/Makefile index 42b562c71f42..723f6532d838 100644 --- a/games/fs2open/Makefile +++ b/games/fs2open/Makefile @@ -7,6 +7,9 @@ MAINTAINER= pkubaj@FreeBSD.org COMMENT= Open source video engine of FreeSpace 2 WWW= http://scp.indiegames.us +# fix build with recent ffmpeg +EXTRA_PATCHES= ${FILESDIR}/af833f059cc0cfc925792e019f6c2b754c6d53c1.patch:-p1 + LICENSE= VOLITION LICENSE_NAME= Volition Copyright LICENSE_FILE= ${WRKSRC}/Copying.md diff --git a/games/fs2open/files/af833f059cc0cfc925792e019f6c2b754c6d53c1.patch b/games/fs2open/files/af833f059cc0cfc925792e019f6c2b754c6d53c1.patch new file mode 100644 index 000000000000..2c456bb22a5f --- /dev/null +++ b/games/fs2open/files/af833f059cc0cfc925792e019f6c2b754c6d53c1.patch @@ -0,0 +1,66 @@ +From af833f059cc0cfc925792e019f6c2b754c6d53c1 Mon Sep 17 00:00:00 2001 +From: Taylor Richards <taylor@notimaginative.com> +Date: Sun, 17 Aug 2025 17:09:41 -0400 +Subject: [PATCH] fix avcodec deprecation warnings + +--- + code/cutscene/ffmpeg/internal.cpp | 9 ++++++--- + code/sound/ffmpeg/FFmpegWaveFile.cpp | 3 ++- + 2 files changed, 8 insertions(+), 4 deletions(-) + +diff --git a/code/cutscene/ffmpeg/internal.cpp b/code/cutscene/ffmpeg/internal.cpp +index be0920a5068..4f087d10191 100644 +--- a/code/cutscene/ffmpeg/internal.cpp ++++ b/code/cutscene/ffmpeg/internal.cpp +@@ -12,9 +12,10 @@ DecoderStatus::~DecoderStatus() { + videoCodec = nullptr; + + if (videoCodecCtx != nullptr) { +- avcodec_close(videoCodecCtx); + #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(57, 24, 255) + avcodec_free_context(&videoCodecCtx); ++#else ++ avcodec_close(videoCodecCtx); + #endif + videoCodecCtx = nullptr; + } +@@ -24,9 +25,10 @@ DecoderStatus::~DecoderStatus() { + audioCodec = nullptr; + + if (audioCodecCtx != nullptr) { +- avcodec_close(audioCodecCtx); + #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(57, 24, 255) + avcodec_free_context(&audioCodecCtx); ++#else ++ avcodec_close(audioCodecCtx); + #endif + audioCodecCtx = nullptr; + } +@@ -36,9 +38,10 @@ DecoderStatus::~DecoderStatus() { + subtitleCodec = nullptr; + + if (subtitleCodecCtx != nullptr) { +- avcodec_close(subtitleCodecCtx); + #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(57, 24, 255) + avcodec_free_context(&subtitleCodecCtx); ++#else ++ avcodec_close(subtitleCodecCtx); + #endif + subtitleCodecCtx = nullptr; + } +diff --git a/code/sound/ffmpeg/FFmpegWaveFile.cpp b/code/sound/ffmpeg/FFmpegWaveFile.cpp +index ab1e0ddc520..77541d7b826 100644 +--- a/code/sound/ffmpeg/FFmpegWaveFile.cpp ++++ b/code/sound/ffmpeg/FFmpegWaveFile.cpp +@@ -151,9 +151,10 @@ FFmpegWaveFile::~FFmpegWaveFile() + av_frame_free(&m_decodeFrame); + + if (m_audioCodecCtx) { +- avcodec_close(m_audioCodecCtx); + #if LIBAVCODEC_VERSION_INT > AV_VERSION_INT(57, 24, 255) + avcodec_free_context(&m_audioCodecCtx); ++#else ++ avcodec_close(m_audioCodecCtx); + #endif + m_audioCodecCtx = nullptr; + } diff --git a/graphics/ImageMagick6/Makefile b/graphics/ImageMagick6/Makefile index 7630e348923d..55152af9125d 100644 --- a/graphics/ImageMagick6/Makefile +++ b/graphics/ImageMagick6/Makefile @@ -1,6 +1,5 @@ PORTNAME= ImageMagick -DISTVERSION= 6.9.13-23 -PORTREVISION= 6 +DISTVERSION= 6.9.13-36 PORTEPOCH= 1 CATEGORIES= graphics perl5 MASTER_SITES= https://ftp.acc.umu.se/mirror/imagemagick.org/ftp/releases/ \ diff --git a/graphics/ImageMagick6/distinfo b/graphics/ImageMagick6/distinfo index 41abc81bdc71..d5ad5a0e517a 100644 --- a/graphics/ImageMagick6/distinfo +++ b/graphics/ImageMagick6/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742232943 -SHA256 (ImageMagick-6.9.13-23.tar.xz) = d076d60a76448923c2054ed9c01eee4dd5f3d5efe41ca96b8249e2887fc0aa48 -SIZE (ImageMagick-6.9.13-23.tar.xz) = 9616068 +TIMESTAMP = 1766159693 +SHA256 (ImageMagick-6.9.13-36.tar.xz) = 9490f450c20cfeefe06d73c38707b70da31d9018bd5a89e6e2ba053ee9fd56ba +SIZE (ImageMagick-6.9.13-36.tar.xz) = 9632600 diff --git a/graphics/R-cran-R.devices/Makefile b/graphics/R-cran-R.devices/Makefile index 263d29ba202c..a21d290acb1e 100644 --- a/graphics/R-cran-R.devices/Makefile +++ b/graphics/R-cran-R.devices/Makefile @@ -1,5 +1,5 @@ PORTNAME= R.devices -DISTVERSION= 2.17.2 +DISTVERSION= 2.17.3 CATEGORIES= graphics DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -13,8 +13,9 @@ LICENSE_COMB= multi RUN_DEPENDS= R-cran-base64enc>=0.1.2:converters/R-cran-base64enc \ R-cran-R.methodsS3>=1.8.1:devel/R-cran-R.methodsS3 \ R-cran-R.oo>=1.24.0:devel/R-cran-R.oo \ - R-cran-R.utils>=2.0.1:devel/R-cran-R.utils -TEST_DEPENDS= R-cran-digest>=0.6.13:security/R-cran-digest + R-cran-R.utils>=2.10.1:devel/R-cran-R.utils +TEST_DEPENDS= R-cran-digest>=0.6.13:security/R-cran-digest \ + R-cran-R.rsp>0:textproc/R-cran-R.rsp USES= cran:auto-plist diff --git a/graphics/R-cran-R.devices/distinfo b/graphics/R-cran-R.devices/distinfo index 26ecc0c9b4a3..68b086ae3eed 100644 --- a/graphics/R-cran-R.devices/distinfo +++ b/graphics/R-cran-R.devices/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739727502 -SHA256 (R.devices_2.17.2.tar.gz) = 403eeaf552dd696142096973dee3460dc52c19b73fd194841dd4638e2bdcec95 -SIZE (R.devices_2.17.2.tar.gz) = 243013 +TIMESTAMP = 1766223997 +SHA256 (R.devices_2.17.3.tar.gz) = 4fa070d83781774e69c8ec5f4b3ffb3751f0d3f292271cdb47d76b0c012f3cf8 +SIZE (R.devices_2.17.3.tar.gz) = 250435 diff --git a/graphics/glslang/Makefile b/graphics/glslang/Makefile index 264c4f18c0d5..c1610dbd0bdd 100644 --- a/graphics/glslang/Makefile +++ b/graphics/glslang/Makefile @@ -1,5 +1,6 @@ PORTNAME= glslang DISTVERSION= 16.1.0 +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= tagattie@FreeBSD.org diff --git a/graphics/gmic-qt/Makefile b/graphics/gmic-qt/Makefile index 4a4fa97881a7..3e5531cb47a4 100644 --- a/graphics/gmic-qt/Makefile +++ b/graphics/gmic-qt/Makefile @@ -1,6 +1,6 @@ PORTNAME= gmic-qt DISTVERSIONPREFIX= v. -DISTVERSION= 3.6.3 +DISTVERSION= 3.6.5 PORTEPOCH= 1 CATEGORIES= graphics kde MASTER_SITES= https://github.com/GreycLab/gmic/releases/download/${DISTVERSIONFULL}/ \ diff --git a/graphics/gmic-qt/distinfo b/graphics/gmic-qt/distinfo index 9c8cb29e06ab..03f18cea3e22 100644 --- a/graphics/gmic-qt/distinfo +++ b/graphics/gmic-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1761629870 -SHA256 (KDE/gmic-qt/gmic_3.6.3.tar.gz) = 45304f179f2200ba527c819bd911bd6a85c4a4999740c730c7ccdd164ce240ac -SIZE (KDE/gmic-qt/gmic_3.6.3.tar.gz) = 20183375 +TIMESTAMP = 1766282141 +SHA256 (KDE/gmic-qt/gmic_3.6.5.tar.gz) = 0987e54d64dc3a82df6a3052e6aa5d5b5f1e9115c6fd4155e1aceb78e462169a +SIZE (KDE/gmic-qt/gmic_3.6.5.tar.gz) = 20259661 diff --git a/graphics/hugin/Makefile b/graphics/hugin/Makefile index f72c76ab3d16..a75fd6ca15a3 100644 --- a/graphics/hugin/Makefile +++ b/graphics/hugin/Makefile @@ -1,5 +1,5 @@ PORTNAME= hugin -DISTVERSION= 2025.0.0 +DISTVERSION= 2025.0.1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION:R} diff --git a/graphics/hugin/distinfo b/graphics/hugin/distinfo index 48b81b1c74fb..085c51a4cd19 100644 --- a/graphics/hugin/distinfo +++ b/graphics/hugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763222621 -SHA256 (hugin-2025.0.0.tar.bz2) = 0de27a5d5432e36d4e5d38ac25d7bcafc7b7dd542aab031640a61ed66767076c -SIZE (hugin-2025.0.0.tar.bz2) = 10226271 +TIMESTAMP = 1765683878 +SHA256 (hugin-2025.0.1.tar.bz2) = 7cf8eb33a6a8848cc7f816faf4bc88389228883d5513136dccb5cb243912ab79 +SIZE (hugin-2025.0.1.tar.bz2) = 10229525 diff --git a/graphics/krita-gmic-plugin/Makefile b/graphics/krita-gmic-plugin/Makefile index ce74b0d39c0d..9f07dfd117e5 100644 --- a/graphics/krita-gmic-plugin/Makefile +++ b/graphics/krita-gmic-plugin/Makefile @@ -1,6 +1,6 @@ PORTNAME= gmic DISTVERSIONPREFIX= v -DISTVERSION= 3.5.3.0 +DISTVERSION= 3.6.4.1 CATEGORIES= graphics kde MASTER_SITES= https://github.com/vanyossi/${PORTNAME}/releases/download/v${PORTVERSION}/ PKGNAMEPREFIX= krita- @@ -20,7 +20,7 @@ BUILD_DEPENDS= bash:shells/bash \ LIB_DEPENDS= libcurl.so:ftp/curl \ libfftw3.so:math/fftw3 \ libkritaqmicinterface.so:graphics/krita \ - libpng.so:graphics/png + libpng16.so:graphics/png USES= cmake compiler:c++14-lang kde:5 pkgconfig qt:5 shebangfix xorg USE_KDE= coreaddons ecm:build diff --git a/graphics/krita-gmic-plugin/distinfo b/graphics/krita-gmic-plugin/distinfo index 1e4b658ff300..0a400f033611 100644 --- a/graphics/krita-gmic-plugin/distinfo +++ b/graphics/krita-gmic-plugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1741759245 -SHA256 (KDE/krita-gmic-plugin/3.5.3.0/gmic-3.5.3.0.tar.gz) = 64a913946a2c41c68c51018c3c21274b78b5a6cd8d75dd43f3b543b642a37d33 -SIZE (KDE/krita-gmic-plugin/3.5.3.0/gmic-3.5.3.0.tar.gz) = 20909283 +TIMESTAMP = 1766282335 +SHA256 (KDE/krita-gmic-plugin/3.6.4.1/gmic-3.6.4.1.tar.gz) = a6b6c69301560be2ea2b5583a8ec19bd7e50e4b41a977745517ce920bc05fafe +SIZE (KDE/krita-gmic-plugin/3.6.4.1/gmic-3.6.4.1.tar.gz) = 21834300 diff --git a/graphics/krita-gmic-plugin/files/patch-CMakeLists.txt b/graphics/krita-gmic-plugin/files/patch-CMakeLists.txt index fee865a8d5dd..74427219efe4 100644 --- a/graphics/krita-gmic-plugin/files/patch-CMakeLists.txt +++ b/graphics/krita-gmic-plugin/files/patch-CMakeLists.txt @@ -1,3 +1,7 @@ +Hunk 1: Don't find Qt6 until we can land a KF6-based Krita +Hunk 2: Link to -lpthread +Hunk 3: bmake doesn't work for this + --- CMakeLists.txt.orig 2023-05-04 22:27:01 UTC +++ CMakeLists.txt @@ -153,7 +153,7 @@ find_package(Threads REQUIRED) diff --git a/graphics/krita/Makefile b/graphics/krita/Makefile index a7420087a194..2faf09f1ac26 100644 --- a/graphics/krita/Makefile +++ b/graphics/krita/Makefile @@ -1,6 +1,5 @@ PORTNAME= krita -DISTVERSION= 5.2.13 -PORTREVISION= 1 +DISTVERSION= 5.2.14 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} DIST_SUBDIR= KDE/${PORTNAME} diff --git a/graphics/krita/distinfo b/graphics/krita/distinfo index db6eeedb974f..decd190d4b73 100644 --- a/graphics/krita/distinfo +++ b/graphics/krita/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759130587 -SHA256 (KDE/krita/krita-5.2.13.tar.xz) = ddd3955d77a9d760499466c9e7e11a51e080020ee52e929e2579a0aab600b45a -SIZE (KDE/krita/krita-5.2.13.tar.xz) = 191046020 +TIMESTAMP = 1766280587 +SHA256 (KDE/krita/krita-5.2.14.tar.xz) = 41770910517a8d4546f7028c4725b3bd44c69d10d328c978a2788dbcc707d3df +SIZE (KDE/krita/krita-5.2.14.tar.xz) = 192461664 diff --git a/graphics/librsvg2-rust/Makefile b/graphics/librsvg2-rust/Makefile index 2aa2c8affec5..518d252804c5 100644 --- a/graphics/librsvg2-rust/Makefile +++ b/graphics/librsvg2-rust/Makefile @@ -1,6 +1,5 @@ PORTNAME= librsvg -DISTVERSION= 2.61.2 -PORTREVISION= 2 +DISTVERSION= 2.61.3 CATEGORIES= graphics gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 2-rust diff --git a/graphics/librsvg2-rust/Makefile.crates b/graphics/librsvg2-rust/Makefile.crates index 374f75ed5d59..a0ce3c702b44 100644 --- a/graphics/librsvg2-rust/Makefile.crates +++ b/graphics/librsvg2-rust/Makefile.crates @@ -1,51 +1,50 @@ CARGO_CRATES= adler2-2.0.1 \ aes-0.8.4 \ ahash-0.8.12 \ - aho-corasick-1.1.3 \ - android-tzdata-0.1.1 \ + aho-corasick-1.1.4 \ android_system_properties-0.1.5 \ anes-0.1.6 \ - anstream-0.6.20 \ - anstyle-1.0.11 \ + anstream-0.6.21 \ + anstyle-1.0.13 \ anstyle-parse-0.2.7 \ anstyle-query-1.1.4 \ anstyle-wincon-3.0.10 \ approx-0.5.1 \ - assert_cmd-2.0.17 \ + assert_cmd-2.1.1 \ autocfg-1.5.0 \ av-data-0.4.4 \ bit-set-0.8.0 \ bit-vec-0.8.0 \ - bitflags-2.9.3 \ + bitflags-2.10.0 \ bitreader-0.3.11 \ block-0.1.6 \ block-buffer-0.10.4 \ block-padding-0.3.3 \ - bstr-1.12.0 \ + bstr-1.12.1 \ bumpalo-3.19.0 \ byte-slice-cast-1.2.3 \ bytecount-0.6.9 \ - bytemuck-1.23.2 \ + bytemuck-1.24.0 \ byteorder-1.5.0 \ byteorder-lite-0.1.0 \ bytes-1.10.1 \ - cairo-rs-0.21.1 \ - cairo-sys-rs-0.21.1 \ + cairo-rs-0.21.2 \ + cairo-sys-rs-0.21.2 \ cast-0.3.0 \ cbc-0.1.2 \ - cc-1.2.35 \ - cfg-expr-0.20.2 \ - cfg-if-1.0.3 \ - chrono-0.4.41 \ + cc-1.2.44 \ + cfg-expr-0.20.4 \ + cfg-if-1.0.4 \ + chrono-0.4.42 \ ciborium-0.2.2 \ ciborium-io-0.2.2 \ ciborium-ll-0.2.2 \ cipher-0.4.4 \ - clap-4.5.46 \ - clap_builder-4.5.46 \ - clap_complete-4.5.57 \ - clap_derive-4.5.45 \ - clap_lex-0.7.5 \ + clap-4.5.51 \ + clap_builder-4.5.51 \ + clap_complete-4.5.60 \ + clap_derive-4.5.49 \ + clap_lex-0.7.6 \ color_quant-1.1.0 \ colorchoice-1.0.4 \ core-foundation-sys-0.8.7 \ @@ -64,26 +63,25 @@ CARGO_CRATES= adler2-2.0.1 \ data-url-0.3.2 \ dav1d-0.10.4 \ dav1d-sys-0.8.3 \ - deranged-0.5.3 \ + deranged-0.5.5 \ derive_more-2.0.1 \ derive_more-impl-2.0.1 \ difflib-0.4.0 \ digest-0.10.7 \ displaydoc-0.2.5 \ dlib-0.5.2 \ - doc-comment-0.3.3 \ dtoa-1.0.10 \ dtoa-short-0.3.5 \ ecb-0.1.2 \ either-1.15.0 \ encoding_rs-0.8.35 \ equivalent-1.0.2 \ - errno-0.3.13 \ + errno-0.3.14 \ fallible_collections-0.4.9 \ fastrand-2.3.0 \ fdeflate-0.3.7 \ - find-msvc-tools-0.1.0 \ - flate2-1.1.2 \ + find-msvc-tools-0.1.4 \ + flate2-1.1.5 \ float-cmp-0.10.0 \ fnv-1.0.7 \ form_urlencoded-1.2.2 \ @@ -96,37 +94,37 @@ CARGO_CRATES= adler2-2.0.1 \ futures-task-0.3.31 \ futures-util-0.3.31 \ fxhash-0.2.1 \ - gdk-pixbuf-0.21.1 \ - gdk-pixbuf-sys-0.21.1 \ - generic-array-0.14.7 \ - getrandom-0.3.3 \ + gdk-pixbuf-0.21.2 \ + gdk-pixbuf-sys-0.21.2 \ + generic-array-0.14.9 \ + getrandom-0.3.4 \ gif-0.13.3 \ - gio-0.21.1 \ - gio-sys-0.21.1 \ - glib-0.21.1 \ - glib-macros-0.21.0 \ - glib-sys-0.21.1 \ - gobject-sys-0.21.1 \ - half-2.6.0 \ + gio-0.21.4 \ + gio-sys-0.21.2 \ + glib-0.21.4 \ + glib-macros-0.21.4 \ + glib-sys-0.21.2 \ + gobject-sys-0.21.2 \ + half-2.7.1 \ hashbrown-0.13.2 \ - hashbrown-0.15.5 \ + hashbrown-0.16.0 \ heck-0.5.0 \ - iana-time-zone-0.1.63 \ + iana-time-zone-0.1.64 \ iana-time-zone-haiku-0.1.2 \ - icu_collections-2.0.0 \ - icu_locale_core-2.0.0 \ - icu_normalizer-2.0.0 \ - icu_normalizer_data-2.0.0 \ - icu_properties-2.0.1 \ - icu_properties_data-2.0.1 \ - icu_provider-2.0.0 \ + icu_collections-2.1.1 \ + icu_locale_core-2.1.1 \ + icu_normalizer-2.1.1 \ + icu_normalizer_data-2.1.1 \ + icu_properties-2.1.1 \ + icu_properties_data-2.1.1 \ + icu_provider-2.1.1 \ idna-1.1.0 \ idna_adapter-1.2.1 \ image-0.25.8 \ image-webp-0.2.4 \ - indexmap-2.11.0 \ + indexmap-2.12.0 \ inout-0.1.4 \ - is_terminal_polyfill-1.70.1 \ + is_terminal_polyfill-1.70.2 \ itertools-0.13.0 \ itertools-0.14.0 \ itoa-1.0.15 \ @@ -134,16 +132,16 @@ CARGO_CRATES= adler2-2.0.1 \ jiff-static-0.2.15 \ jiff-tzdb-0.1.4 \ jiff-tzdb-platform-0.1.3 \ - js-sys-0.3.77 \ + js-sys-0.3.82 \ language-tags-0.3.2 \ lazy_static-1.5.0 \ - libc-0.2.175 \ - libloading-0.8.8 \ - linux-raw-sys-0.9.4 \ - litemap-0.8.0 \ + libc-0.2.177 \ + libloading-0.8.9 \ + linux-raw-sys-0.11.0 \ + litemap-0.8.1 \ locale_config-0.3.0 \ - lock_api-0.4.13 \ - log-0.4.27 \ + lock_api-0.4.14 \ + log-0.4.28 \ lopdf-0.38.0 \ mac-0.1.1 \ malloc_buf-0.0.6 \ @@ -151,9 +149,9 @@ CARGO_CRATES= adler2-2.0.1 \ matches-0.1.10 \ matrixmultiply-0.3.10 \ md-5-0.10.6 \ - memchr-2.7.5 \ + memchr-2.7.6 \ miniz_oxide-0.8.9 \ - moxcms-0.7.5 \ + moxcms-0.7.9 \ mp4parse-0.17.0 \ nalgebra-0.33.2 \ nalgebra-macros-0.2.2 \ @@ -172,14 +170,14 @@ CARGO_CRATES= adler2-2.0.1 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ once_cell-1.21.3 \ - once_cell_polyfill-1.70.1 \ + once_cell_polyfill-1.70.2 \ oorandom-11.1.5 \ - pango-0.21.1 \ - pango-sys-0.21.1 \ - pangocairo-0.21.1 \ - pangocairo-sys-0.21.1 \ - parking_lot-0.12.4 \ - parking_lot_core-0.9.11 \ + pango-0.21.3 \ + pango-sys-0.21.2 \ + pangocairo-0.21.2 \ + pangocairo-sys-0.21.2 \ + parking_lot-0.12.5 \ + parking_lot_core-0.9.12 \ paste-1.0.15 \ percent-encoding-2.3.2 \ phf-0.11.3 \ @@ -197,20 +195,20 @@ CARGO_CRATES= adler2-2.0.1 \ png-0.18.0 \ portable-atomic-1.11.1 \ portable-atomic-util-0.2.4 \ - potential_utf-0.1.3 \ + potential_utf-0.1.4 \ powerfmt-0.2.0 \ ppv-lite86-0.2.21 \ precomputed-hash-0.1.1 \ predicates-3.1.3 \ predicates-core-1.0.9 \ predicates-tree-1.0.12 \ - proc-macro-crate-3.3.0 \ - proc-macro2-1.0.101 \ - proptest-1.7.0 \ - pxfm-0.1.20 \ + proc-macro-crate-3.4.0 \ + proc-macro2-1.0.103 \ + proptest-1.9.0 \ + pxfm-0.1.25 \ quick-error-1.2.3 \ quick-error-2.0.1 \ - quote-1.0.40 \ + quote-1.0.41 \ r-efi-5.3.0 \ rand-0.8.5 \ rand-0.9.2 \ @@ -223,126 +221,129 @@ CARGO_CRATES= adler2-2.0.1 \ rayon-1.11.0 \ rayon-core-1.13.0 \ rctree-0.6.0 \ - redox_syscall-0.5.17 \ - regex-1.11.2 \ - regex-automata-0.4.10 \ - regex-syntax-0.8.6 \ + redox_syscall-0.5.18 \ + regex-1.12.2 \ + regex-automata-0.4.13 \ + regex-syntax-0.8.8 \ rgb-0.8.52 \ - rustix-1.0.8 \ + rustix-1.1.2 \ rustversion-1.0.22 \ - rusty-fork-0.3.0 \ + rusty-fork-0.3.1 \ ryu-1.0.20 \ safe_arch-0.7.4 \ same-file-1.0.6 \ scopeguard-1.2.0 \ selectors-0.31.0 \ - serde-1.0.219 \ - serde_derive-1.0.219 \ - serde_json-1.0.143 \ - serde_spanned-0.6.9 \ + serde-1.0.228 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ + serde_json-1.0.145 \ + serde_spanned-1.0.3 \ servo_arc-0.4.1 \ sha2-0.10.9 \ shell-words-1.1.0 \ shlex-1.3.0 \ - simba-0.9.0 \ + simba-0.9.1 \ simd-adler32-0.3.7 \ siphasher-1.0.1 \ slab-0.4.11 \ smallvec-1.15.1 \ - stable_deref_trait-1.2.0 \ + stable_deref_trait-1.2.1 \ static_assertions-1.1.0 \ string_cache-0.8.9 \ string_cache-0.9.0 \ string_cache_codegen-0.5.4 \ stringprep-0.1.5 \ strsim-0.11.1 \ - syn-2.0.106 \ + syn-2.0.108 \ synstructure-0.13.2 \ - system-deps-7.0.5 \ - target-lexicon-0.13.2 \ - tempfile-3.21.0 \ + system-deps-7.0.7 \ + target-lexicon-0.13.3 \ + tempfile-3.23.0 \ tendril-0.4.3 \ termtree-0.5.1 \ - thiserror-2.0.16 \ - thiserror-impl-2.0.16 \ - time-0.3.42 \ - time-core-0.1.5 \ - time-macros-0.2.23 \ - tinystr-0.8.1 \ + thiserror-2.0.17 \ + thiserror-impl-2.0.17 \ + time-0.3.44 \ + time-core-0.1.6 \ + time-macros-0.2.24 \ + tinystr-0.8.2 \ tinytemplate-1.2.1 \ tinyvec-1.10.0 \ tinyvec_macros-0.1.1 \ - toml-0.8.23 \ - toml_datetime-0.6.11 \ - toml_edit-0.22.27 \ + toml-0.9.8 \ + toml_datetime-0.7.3 \ + toml_edit-0.23.7 \ + toml_parser-1.0.4 \ + toml_writer-1.0.4 \ ttf-parser-0.25.1 \ - typenum-1.18.0 \ + typenum-1.19.0 \ unarray-0.1.4 \ unicode-bidi-0.3.18 \ - unicode-ident-1.0.18 \ - unicode-normalization-0.1.24 \ - unicode-properties-0.1.3 \ + unicode-ident-1.0.22 \ + unicode-normalization-0.1.25 \ + unicode-properties-0.1.4 \ url-2.5.7 \ utf-8-0.7.6 \ utf8_iter-1.0.4 \ utf8parse-0.2.2 \ - version-compare-0.2.0 \ + version-compare-0.2.1 \ version_check-0.9.5 \ wait-timeout-0.2.1 \ walkdir-2.5.0 \ - wasi-0.14.3+wasi-0.2.4 \ - wasm-bindgen-0.2.100 \ - wasm-bindgen-backend-0.2.100 \ - wasm-bindgen-macro-0.2.100 \ - wasm-bindgen-macro-support-0.2.100 \ - wasm-bindgen-shared-0.2.100 \ - web-sys-0.3.77 \ + wasip2-1.0.1+wasi-0.2.4 \ + wasm-bindgen-0.2.105 \ + wasm-bindgen-macro-0.2.105 \ + wasm-bindgen-macro-support-0.2.105 \ + wasm-bindgen-shared-0.2.105 \ + web-sys-0.3.82 \ web_atoms-0.1.3 \ weezl-0.1.10 \ wide-0.7.33 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ - winapi-util-0.1.10 \ + winapi-util-0.1.11 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ - windows-core-0.61.2 \ - windows-implement-0.60.0 \ - windows-interface-0.59.1 \ - windows-link-0.1.3 \ - windows-result-0.3.4 \ - windows-strings-0.4.2 \ + windows-core-0.62.2 \ + windows-implement-0.60.2 \ + windows-interface-0.59.3 \ + windows-link-0.2.1 \ + windows-result-0.4.1 \ + windows-strings-0.5.1 \ windows-sys-0.59.0 \ windows-sys-0.60.2 \ + windows-sys-0.61.2 \ windows-targets-0.52.6 \ - windows-targets-0.53.3 \ + windows-targets-0.53.5 \ windows_aarch64_gnullvm-0.52.6 \ - windows_aarch64_gnullvm-0.53.0 \ + windows_aarch64_gnullvm-0.53.1 \ windows_aarch64_msvc-0.52.6 \ - windows_aarch64_msvc-0.53.0 \ + windows_aarch64_msvc-0.53.1 \ windows_i686_gnu-0.52.6 \ - windows_i686_gnu-0.53.0 \ + windows_i686_gnu-0.53.1 \ windows_i686_gnullvm-0.52.6 \ - windows_i686_gnullvm-0.53.0 \ + windows_i686_gnullvm-0.53.1 \ windows_i686_msvc-0.52.6 \ - windows_i686_msvc-0.53.0 \ + windows_i686_msvc-0.53.1 \ windows_x86_64_gnu-0.52.6 \ - windows_x86_64_gnu-0.53.0 \ + windows_x86_64_gnu-0.53.1 \ windows_x86_64_gnullvm-0.52.6 \ - windows_x86_64_gnullvm-0.53.0 \ + windows_x86_64_gnullvm-0.53.1 \ windows_x86_64_msvc-0.52.6 \ - windows_x86_64_msvc-0.53.0 \ + windows_x86_64_msvc-0.53.1 \ winnow-0.7.13 \ - wit-bindgen-0.45.0 \ - writeable-0.6.1 \ + wit-bindgen-0.46.0 \ + writeable-0.6.2 \ xml5ever-0.35.0 \ yeslogic-fontconfig-sys-6.0.0 \ - yoke-0.8.0 \ - yoke-derive-0.8.0 \ - zerocopy-0.8.26 \ - zerocopy-derive-0.8.26 \ + yoke-0.8.1 \ + yoke-derive-0.8.1 \ + zerocopy-0.8.27 \ + zerocopy-derive-0.8.27 \ zerofrom-0.1.6 \ zerofrom-derive-0.1.6 \ - zerotrie-0.2.2 \ - zerovec-0.11.4 \ - zerovec-derive-0.11.1 \ + zerotrie-0.2.3 \ + zerovec-0.11.5 \ + zerovec-derive-0.11.2 \ zune-core-0.4.12 \ - zune-jpeg-0.4.20 + zune-jpeg-0.4.21 diff --git a/graphics/librsvg2-rust/distinfo b/graphics/librsvg2-rust/distinfo index 7a7df838defe..1fcbf211cd19 100644 --- a/graphics/librsvg2-rust/distinfo +++ b/graphics/librsvg2-rust/distinfo @@ -1,24 +1,22 @@ -TIMESTAMP = 1762039621 -SHA256 (librsvg-2.61.2.tar.xz) = 4644d83623dd61cc4479c2b3c372e1da2b281552ebc90035c8d1ac502eb1dc00 -SIZE (librsvg-2.61.2.tar.xz) = 6758744 +TIMESTAMP = 1765716516 +SHA256 (librsvg-2.61.3.tar.xz) = a56d2c80d744ad2f2718f85df466fe71d24ff1f9bc3e5ef588bde4d7e87815f2 +SIZE (librsvg-2.61.3.tar.xz) = 6761572 SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa SIZE (rust/crates/adler2-2.0.1.crate) = 13366 SHA256 (rust/crates/aes-0.8.4.crate) = b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0 SIZE (rust/crates/aes-0.8.4.crate) = 124812 SHA256 (rust/crates/ahash-0.8.12.crate) = 5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75 SIZE (rust/crates/ahash-0.8.12.crate) = 43413 -SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916 -SIZE (rust/crates/aho-corasick-1.1.3.crate) = 183311 -SHA256 (rust/crates/android-tzdata-0.1.1.crate) = e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0 -SIZE (rust/crates/android-tzdata-0.1.1.crate) = 7674 +SHA256 (rust/crates/aho-corasick-1.1.4.crate) = ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 +SIZE (rust/crates/aho-corasick-1.1.4.crate) = 184015 SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311 SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 SHA256 (rust/crates/anes-0.1.6.crate) = 4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299 SIZE (rust/crates/anes-0.1.6.crate) = 23857 -SHA256 (rust/crates/anstream-0.6.20.crate) = 3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192 -SIZE (rust/crates/anstream-0.6.20.crate) = 28797 -SHA256 (rust/crates/anstyle-1.0.11.crate) = 862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd -SIZE (rust/crates/anstyle-1.0.11.crate) = 15880 +SHA256 (rust/crates/anstream-0.6.21.crate) = 43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a +SIZE (rust/crates/anstream-0.6.21.crate) = 29516 +SHA256 (rust/crates/anstyle-1.0.13.crate) = 5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78 +SIZE (rust/crates/anstyle-1.0.13.crate) = 17651 SHA256 (rust/crates/anstyle-parse-0.2.7.crate) = 4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2 SIZE (rust/crates/anstyle-parse-0.2.7.crate) = 21707 SHA256 (rust/crates/anstyle-query-1.1.4.crate) = 9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2 @@ -27,8 +25,8 @@ SHA256 (rust/crates/anstyle-wincon-3.0.10.crate) = 3e0633414522a32ffaac8ac6cc8f7 SIZE (rust/crates/anstyle-wincon-3.0.10.crate) = 12558 SHA256 (rust/crates/approx-0.5.1.crate) = cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6 SIZE (rust/crates/approx-0.5.1.crate) = 15100 -SHA256 (rust/crates/assert_cmd-2.0.17.crate) = 2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66 -SIZE (rust/crates/assert_cmd-2.0.17.crate) = 26914 +SHA256 (rust/crates/assert_cmd-2.1.1.crate) = bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85 +SIZE (rust/crates/assert_cmd-2.1.1.crate) = 27211 SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 SHA256 (rust/crates/av-data-0.4.4.crate) = fca67ba5d317924c02180c576157afd54babe48a76ebc66ce6d34bb8ba08308e @@ -37,8 +35,8 @@ SHA256 (rust/crates/bit-set-0.8.0.crate) = 08807e080ed7f9d5433fa9b275196cfc35414 SIZE (rust/crates/bit-set-0.8.0.crate) = 16289 SHA256 (rust/crates/bit-vec-0.8.0.crate) = 5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7 SIZE (rust/crates/bit-vec-0.8.0.crate) = 24132 -SHA256 (rust/crates/bitflags-2.9.3.crate) = 34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d -SIZE (rust/crates/bitflags-2.9.3.crate) = 47777 +SHA256 (rust/crates/bitflags-2.10.0.crate) = 812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3 +SIZE (rust/crates/bitflags-2.10.0.crate) = 48427 SHA256 (rust/crates/bitreader-0.3.11.crate) = 886559b1e163d56c765bc3a985febb4eee8009f625244511d8ee3c432e08c066 SIZE (rust/crates/bitreader-0.3.11.crate) = 12077 SHA256 (rust/crates/block-0.1.6.crate) = 0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a @@ -47,38 +45,38 @@ SHA256 (rust/crates/block-buffer-0.10.4.crate) = 3078c7629b62d3f0439517fa394996a SIZE (rust/crates/block-buffer-0.10.4.crate) = 10538 SHA256 (rust/crates/block-padding-0.3.3.crate) = a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93 SIZE (rust/crates/block-padding-0.3.3.crate) = 8504 -SHA256 (rust/crates/bstr-1.12.0.crate) = 234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4 -SIZE (rust/crates/bstr-1.12.0.crate) = 351557 +SHA256 (rust/crates/bstr-1.12.1.crate) = 63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab +SIZE (rust/crates/bstr-1.12.1.crate) = 354916 SHA256 (rust/crates/bumpalo-3.19.0.crate) = 46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43 SIZE (rust/crates/bumpalo-3.19.0.crate) = 96414 SHA256 (rust/crates/byte-slice-cast-1.2.3.crate) = 7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d SIZE (rust/crates/byte-slice-cast-1.2.3.crate) = 7498 SHA256 (rust/crates/bytecount-0.6.9.crate) = 175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e SIZE (rust/crates/bytecount-0.6.9.crate) = 18695 -SHA256 (rust/crates/bytemuck-1.23.2.crate) = 3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677 -SIZE (rust/crates/bytemuck-1.23.2.crate) = 53021 +SHA256 (rust/crates/bytemuck-1.24.0.crate) = 1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4 +SIZE (rust/crates/bytemuck-1.24.0.crate) = 53243 SHA256 (rust/crates/byteorder-1.5.0.crate) = 1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b SIZE (rust/crates/byteorder-1.5.0.crate) = 23288 SHA256 (rust/crates/byteorder-lite-0.1.0.crate) = 8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495 SIZE (rust/crates/byteorder-lite-0.1.0.crate) = 15909 SHA256 (rust/crates/bytes-1.10.1.crate) = d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a SIZE (rust/crates/bytes-1.10.1.crate) = 76779 -SHA256 (rust/crates/cairo-rs-0.21.1.crate) = 1158f326d7b755a9ae2b36c5b5391400e3431f3b77418cedb6d7130126628f10 -SIZE (rust/crates/cairo-rs-0.21.1.crate) = 58404 -SHA256 (rust/crates/cairo-sys-rs-0.21.1.crate) = b963177900ec8e783927e5ed99e16c0ec1b723f1f125dff8992db28ef35c62c3 -SIZE (rust/crates/cairo-sys-rs-0.21.1.crate) = 14498 +SHA256 (rust/crates/cairo-rs-0.21.2.crate) = dfe4354df4da648870e363387679081f8f9fc538ec8b55901e3740c6a0ef81b1 +SIZE (rust/crates/cairo-rs-0.21.2.crate) = 58365 +SHA256 (rust/crates/cairo-sys-rs-0.21.2.crate) = 47d6c3300c7103eb8e4de07591003511aa25664438f8c6fc317a3a9902c103f8 +SIZE (rust/crates/cairo-sys-rs-0.21.2.crate) = 14564 SHA256 (rust/crates/cast-0.3.0.crate) = 37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5 SIZE (rust/crates/cast-0.3.0.crate) = 11452 SHA256 (rust/crates/cbc-0.1.2.crate) = 26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6 SIZE (rust/crates/cbc-0.1.2.crate) = 23501 -SHA256 (rust/crates/cc-1.2.35.crate) = 590f9024a68a8c40351881787f1934dc11afd69090f5edb6831464694d836ea3 -SIZE (rust/crates/cc-1.2.35.crate) = 89972 -SHA256 (rust/crates/cfg-expr-0.20.2.crate) = c8d458d63f0f0f482c8da9b7c8b76c21bd885a02056cc94c6404d861ca2b8206 -SIZE (rust/crates/cfg-expr-0.20.2.crate) = 44758 -SHA256 (rust/crates/cfg-if-1.0.3.crate) = 2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9 -SIZE (rust/crates/cfg-if-1.0.3.crate) = 8719 -SHA256 (rust/crates/chrono-0.4.41.crate) = c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d -SIZE (rust/crates/chrono-0.4.41.crate) = 234621 +SHA256 (rust/crates/cc-1.2.44.crate) = 37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3 +SIZE (rust/crates/cc-1.2.44.crate) = 92035 +SHA256 (rust/crates/cfg-expr-0.20.4.crate) = 9acd0bdbbf4b2612d09f52ba61da432140cb10930354079d0d53fafc12968726 +SIZE (rust/crates/cfg-expr-0.20.4.crate) = 44896 +SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 +SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 +SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 +SIZE (rust/crates/chrono-0.4.42.crate) = 238174 SHA256 (rust/crates/ciborium-0.2.2.crate) = 42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e SIZE (rust/crates/ciborium-0.2.2.crate) = 35611 SHA256 (rust/crates/ciborium-io-0.2.2.crate) = 05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757 @@ -87,16 +85,16 @@ SHA256 (rust/crates/ciborium-ll-0.2.2.crate) = 57663b653d948a338bfb3eeba9bb2fd5f SIZE (rust/crates/ciborium-ll-0.2.2.crate) = 14695 SHA256 (rust/crates/cipher-0.4.4.crate) = 773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad SIZE (rust/crates/cipher-0.4.4.crate) = 19073 -SHA256 (rust/crates/clap-4.5.46.crate) = 2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57 -SIZE (rust/crates/clap-4.5.46.crate) = 58332 -SHA256 (rust/crates/clap_builder-4.5.46.crate) = fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41 -SIZE (rust/crates/clap_builder-4.5.46.crate) = 169831 -SHA256 (rust/crates/clap_complete-4.5.57.crate) = 4d9501bd3f5f09f7bbee01da9a511073ed30a80cd7a509f1214bb74eadea71ad -SIZE (rust/crates/clap_complete-4.5.57.crate) = 48637 -SHA256 (rust/crates/clap_derive-4.5.45.crate) = 14cb31bb0a7d536caef2639baa7fad459e15c3144efefa6dbd1c84562c4739f6 -SIZE (rust/crates/clap_derive-4.5.45.crate) = 33545 -SHA256 (rust/crates/clap_lex-0.7.5.crate) = b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675 -SIZE (rust/crates/clap_lex-0.7.5.crate) = 13469 +SHA256 (rust/crates/clap-4.5.51.crate) = 4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5 +SIZE (rust/crates/clap-4.5.51.crate) = 62030 +SHA256 (rust/crates/clap_builder-4.5.51.crate) = 75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a +SIZE (rust/crates/clap_builder-4.5.51.crate) = 171077 +SHA256 (rust/crates/clap_complete-4.5.60.crate) = 8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971 +SIZE (rust/crates/clap_complete-4.5.60.crate) = 48640 +SHA256 (rust/crates/clap_derive-4.5.49.crate) = 2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671 +SIZE (rust/crates/clap_derive-4.5.49.crate) = 33559 +SHA256 (rust/crates/clap_lex-0.7.6.crate) = a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d +SIZE (rust/crates/clap_lex-0.7.6.crate) = 13466 SHA256 (rust/crates/color_quant-1.1.0.crate) = 3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b SIZE (rust/crates/color_quant-1.1.0.crate) = 6649 SHA256 (rust/crates/colorchoice-1.0.4.crate) = b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75 @@ -133,8 +131,8 @@ SHA256 (rust/crates/dav1d-0.10.4.crate) = 80c3f80814db85397819d464bb553268992c39 SIZE (rust/crates/dav1d-0.10.4.crate) = 16744 SHA256 (rust/crates/dav1d-sys-0.8.3.crate) = c3c91aea6668645415331133ed6f8ddf0e7f40160cd97a12d59e68716a58704b SIZE (rust/crates/dav1d-sys-0.8.3.crate) = 9530 -SHA256 (rust/crates/deranged-0.5.3.crate) = d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc -SIZE (rust/crates/deranged-0.5.3.crate) = 24353 +SHA256 (rust/crates/deranged-0.5.5.crate) = ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587 +SIZE (rust/crates/deranged-0.5.5.crate) = 24438 SHA256 (rust/crates/derive_more-2.0.1.crate) = 093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678 SIZE (rust/crates/derive_more-2.0.1.crate) = 70127 SHA256 (rust/crates/derive_more-impl-2.0.1.crate) = bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3 @@ -147,8 +145,6 @@ SHA256 (rust/crates/displaydoc-0.2.5.crate) = 97369cbbc041bc366949bc74d34658d6cd SIZE (rust/crates/displaydoc-0.2.5.crate) = 24219 SHA256 (rust/crates/dlib-0.5.2.crate) = 330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412 SIZE (rust/crates/dlib-0.5.2.crate) = 5806 -SHA256 (rust/crates/doc-comment-0.3.3.crate) = fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10 -SIZE (rust/crates/doc-comment-0.3.3.crate) = 4123 SHA256 (rust/crates/dtoa-1.0.10.crate) = d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04 SIZE (rust/crates/dtoa-1.0.10.crate) = 17584 SHA256 (rust/crates/dtoa-short-0.3.5.crate) = cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87 @@ -161,18 +157,18 @@ SHA256 (rust/crates/encoding_rs-0.8.35.crate) = 75030f3c4f45dafd7586dd6780965a8c SIZE (rust/crates/encoding_rs-0.8.35.crate) = 1381050 SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 -SHA256 (rust/crates/errno-0.3.13.crate) = 778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad -SIZE (rust/crates/errno-0.3.13.crate) = 12449 +SHA256 (rust/crates/errno-0.3.14.crate) = 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb +SIZE (rust/crates/errno-0.3.14.crate) = 12002 SHA256 (rust/crates/fallible_collections-0.4.9.crate) = a88c69768c0a15262df21899142bc6df9b9b823546d4b4b9a7bc2d6c448ec6fd SIZE (rust/crates/fallible_collections-0.4.9.crate) = 49824 SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 SHA256 (rust/crates/fdeflate-0.3.7.crate) = 1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c SIZE (rust/crates/fdeflate-0.3.7.crate) = 27188 -SHA256 (rust/crates/find-msvc-tools-0.1.0.crate) = e178e4fba8a2726903f6ba98a6d221e76f9c12c650d5dc0e6afdc50677b49650 -SIZE (rust/crates/find-msvc-tools-0.1.0.crate) = 29903 -SHA256 (rust/crates/flate2-1.1.2.crate) = 4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d -SIZE (rust/crates/flate2-1.1.2.crate) = 76495 +SHA256 (rust/crates/find-msvc-tools-0.1.4.crate) = 52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127 +SIZE (rust/crates/find-msvc-tools-0.1.4.crate) = 30817 +SHA256 (rust/crates/flate2-1.1.5.crate) = bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb +SIZE (rust/crates/flate2-1.1.5.crate) = 77015 SHA256 (rust/crates/float-cmp-0.10.0.crate) = b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8 SIZE (rust/crates/float-cmp-0.10.0.crate) = 10702 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 @@ -197,54 +193,54 @@ SHA256 (rust/crates/futures-util-0.3.31.crate) = 9fa08315bb612088cc391249efdc3bc SIZE (rust/crates/futures-util-0.3.31.crate) = 162124 SHA256 (rust/crates/fxhash-0.2.1.crate) = c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c SIZE (rust/crates/fxhash-0.2.1.crate) = 4102 -SHA256 (rust/crates/gdk-pixbuf-0.21.1.crate) = 3c7330cdbbc653df431331ae3d9d59e985a0fecaf33d74c7c1c5d13ab0245f6c -SIZE (rust/crates/gdk-pixbuf-0.21.1.crate) = 21423 -SHA256 (rust/crates/gdk-pixbuf-sys-0.21.1.crate) = e25899cc931dc28cba912ebec793b730f53d2d419f90a562fcb29b53bd10aa82 -SIZE (rust/crates/gdk-pixbuf-sys-0.21.1.crate) = 14021 -SHA256 (rust/crates/generic-array-0.14.7.crate) = 85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a -SIZE (rust/crates/generic-array-0.14.7.crate) = 15950 -SHA256 (rust/crates/getrandom-0.3.3.crate) = 26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4 -SIZE (rust/crates/getrandom-0.3.3.crate) = 49493 +SHA256 (rust/crates/gdk-pixbuf-0.21.2.crate) = 2a3c64459f569154f37616fc28923bfac490d4aaa134aaf5eca58a2c0c13050f +SIZE (rust/crates/gdk-pixbuf-0.21.2.crate) = 21684 +SHA256 (rust/crates/gdk-pixbuf-sys-0.21.2.crate) = 3854ef7a6a8b8f3b4013a01d5f9cb0d1794ec4e810c6cb4e2cc6d980f1baf724 +SIZE (rust/crates/gdk-pixbuf-sys-0.21.2.crate) = 13587 +SHA256 (rust/crates/generic-array-0.14.9.crate) = 4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2 +SIZE (rust/crates/generic-array-0.14.9.crate) = 17439 +SHA256 (rust/crates/getrandom-0.3.4.crate) = 899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd +SIZE (rust/crates/getrandom-0.3.4.crate) = 50932 SHA256 (rust/crates/gif-0.13.3.crate) = 4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b SIZE (rust/crates/gif-0.13.3.crate) = 36010 -SHA256 (rust/crates/gio-0.21.1.crate) = 52b5e3f390d01b79e30da451dd00e27cd1ac2de81658e3abf6c1fc3229b24c5f -SIZE (rust/crates/gio-0.21.1.crate) = 228292 -SHA256 (rust/crates/gio-sys-0.21.1.crate) = a03f2234671e5a588cfe1f59c2b22c103f5772ea351be9cc824a9ce0d06d99fd -SIZE (rust/crates/gio-sys-0.21.1.crate) = 87224 -SHA256 (rust/crates/glib-0.21.1.crate) = 60bdc26493257b5794ba9301f7cbaf7ab0d69a570bfbefa4d7d360e781cb5205 -SIZE (rust/crates/glib-0.21.1.crate) = 298489 -SHA256 (rust/crates/glib-macros-0.21.0.crate) = e772291ebea14c28eb11bb75741f62f4a4894f25e60ce80100797b6b010ef0f9 -SIZE (rust/crates/glib-macros-0.21.0.crate) = 65629 -SHA256 (rust/crates/glib-sys-0.21.1.crate) = dc7c43cff6a7dc43821e45ebf172399437acd6716fa2186b6852d2b397bf622d -SIZE (rust/crates/glib-sys-0.21.1.crate) = 68368 -SHA256 (rust/crates/gobject-sys-0.21.1.crate) = 3e9a190eef2bce144a6aa8434e306974c6062c398e0a33a146d60238f9062d5c -SIZE (rust/crates/gobject-sys-0.21.1.crate) = 23364 -SHA256 (rust/crates/half-2.6.0.crate) = 459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9 -SIZE (rust/crates/half-2.6.0.crate) = 59507 +SHA256 (rust/crates/gio-0.21.4.crate) = daeff3dd716d1ba91850b976b76a1c2d28f99ef6c1602cd8fdaa8fab8017fd9c +SIZE (rust/crates/gio-0.21.4.crate) = 233254 +SHA256 (rust/crates/gio-sys-0.21.2.crate) = 171ed2f6dd927abbe108cfd9eebff2052c335013f5879d55bab0dc1dee19b706 +SIZE (rust/crates/gio-sys-0.21.2.crate) = 86778 +SHA256 (rust/crates/glib-0.21.4.crate) = 5b9dbecb1c33e483a98be4acfea2ab369e1c28f517c6eadb674537409c25c4b2 +SIZE (rust/crates/glib-0.21.4.crate) = 298587 +SHA256 (rust/crates/glib-macros-0.21.4.crate) = 880e524e0085f3546cfb38532b2c202c0d64741d9977a6e4aa24704bfc9f19fb +SIZE (rust/crates/glib-macros-0.21.4.crate) = 70189 +SHA256 (rust/crates/glib-sys-0.21.2.crate) = d09d3d0fddf7239521674e57b0465dfbd844632fec54f059f7f56112e3f927e1 +SIZE (rust/crates/glib-sys-0.21.2.crate) = 67401 +SHA256 (rust/crates/gobject-sys-0.21.2.crate) = 538e41d8776173ec107e7b0f2aceced60abc368d7e1d81c1f0e2ecd35f59080d +SIZE (rust/crates/gobject-sys-0.21.2.crate) = 22329 +SHA256 (rust/crates/half-2.7.1.crate) = 6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b +SIZE (rust/crates/half-2.7.1.crate) = 61040 SHA256 (rust/crates/hashbrown-0.13.2.crate) = 43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e SIZE (rust/crates/hashbrown-0.13.2.crate) = 105265 -SHA256 (rust/crates/hashbrown-0.15.5.crate) = 9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1 -SIZE (rust/crates/hashbrown-0.15.5.crate) = 140908 +SHA256 (rust/crates/hashbrown-0.16.0.crate) = 5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d +SIZE (rust/crates/hashbrown-0.16.0.crate) = 141708 SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea SIZE (rust/crates/heck-0.5.0.crate) = 11517 -SHA256 (rust/crates/iana-time-zone-0.1.63.crate) = b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8 -SIZE (rust/crates/iana-time-zone-0.1.63.crate) = 32919 +SHA256 (rust/crates/iana-time-zone-0.1.64.crate) = 33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb +SIZE (rust/crates/iana-time-zone-0.1.64.crate) = 33152 SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f SIZE (rust/crates/iana-time-zone-haiku-0.1.2.crate) = 7185 -SHA256 (rust/crates/icu_collections-2.0.0.crate) = 200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47 -SIZE (rust/crates/icu_collections-2.0.0.crate) = 83033 -SHA256 (rust/crates/icu_locale_core-2.0.0.crate) = 0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a -SIZE (rust/crates/icu_locale_core-2.0.0.crate) = 74430 -SHA256 (rust/crates/icu_normalizer-2.0.0.crate) = 436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979 -SIZE (rust/crates/icu_normalizer-2.0.0.crate) = 61543 -SHA256 (rust/crates/icu_normalizer_data-2.0.0.crate) = 00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3 -SIZE (rust/crates/icu_normalizer_data-2.0.0.crate) = 68101 -SHA256 (rust/crates/icu_properties-2.0.1.crate) = 016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b -SIZE (rust/crates/icu_properties-2.0.1.crate) = 58165 -SHA256 (rust/crates/icu_properties_data-2.0.1.crate) = 298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632 -SIZE (rust/crates/icu_properties_data-2.0.1.crate) = 159735 -SHA256 (rust/crates/icu_provider-2.0.0.crate) = 03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af -SIZE (rust/crates/icu_provider-2.0.0.crate) = 50966 +SHA256 (rust/crates/icu_collections-2.1.1.crate) = 4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43 +SIZE (rust/crates/icu_collections-2.1.1.crate) = 87233 +SHA256 (rust/crates/icu_locale_core-2.1.1.crate) = edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6 +SIZE (rust/crates/icu_locale_core-2.1.1.crate) = 70876 +SHA256 (rust/crates/icu_normalizer-2.1.1.crate) = 5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599 +SIZE (rust/crates/icu_normalizer-2.1.1.crate) = 67132 +SHA256 (rust/crates/icu_normalizer_data-2.1.1.crate) = 7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a +SIZE (rust/crates/icu_normalizer_data-2.1.1.crate) = 68649 +SHA256 (rust/crates/icu_properties-2.1.1.crate) = e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99 +SIZE (rust/crates/icu_properties-2.1.1.crate) = 59036 +SHA256 (rust/crates/icu_properties_data-2.1.1.crate) = 02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899 +SIZE (rust/crates/icu_properties_data-2.1.1.crate) = 162431 +SHA256 (rust/crates/icu_provider-2.1.1.crate) = 85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614 +SIZE (rust/crates/icu_provider-2.1.1.crate) = 50907 SHA256 (rust/crates/idna-1.1.0.crate) = 3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de SIZE (rust/crates/idna-1.1.0.crate) = 148747 SHA256 (rust/crates/idna_adapter-1.2.1.crate) = 3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344 @@ -253,12 +249,12 @@ SHA256 (rust/crates/image-0.25.8.crate) = 529feb3e6769d234375c4cf1ee2ce713682b8e SIZE (rust/crates/image-0.25.8.crate) = 292229 SHA256 (rust/crates/image-webp-0.2.4.crate) = 525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3 SIZE (rust/crates/image-webp-0.2.4.crate) = 68478 -SHA256 (rust/crates/indexmap-2.11.0.crate) = f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9 -SIZE (rust/crates/indexmap-2.11.0.crate) = 99851 +SHA256 (rust/crates/indexmap-2.12.0.crate) = 6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f +SIZE (rust/crates/indexmap-2.12.0.crate) = 100446 SHA256 (rust/crates/inout-0.1.4.crate) = 879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01 SIZE (rust/crates/inout-0.1.4.crate) = 11280 -SHA256 (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf -SIZE (rust/crates/is_terminal_polyfill-1.70.1.crate) = 7492 +SHA256 (rust/crates/is_terminal_polyfill-1.70.2.crate) = a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695 +SIZE (rust/crates/is_terminal_polyfill-1.70.2.crate) = 7548 SHA256 (rust/crates/itertools-0.13.0.crate) = 413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186 SIZE (rust/crates/itertools-0.13.0.crate) = 146261 SHA256 (rust/crates/itertools-0.14.0.crate) = 2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285 @@ -273,26 +269,26 @@ SHA256 (rust/crates/jiff-tzdb-0.1.4.crate) = c1283705eb0a21404d2bfd6eef2a7593d24 SIZE (rust/crates/jiff-tzdb-0.1.4.crate) = 62435 SHA256 (rust/crates/jiff-tzdb-platform-0.1.3.crate) = 875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8 SIZE (rust/crates/jiff-tzdb-platform-0.1.3.crate) = 3179 -SHA256 (rust/crates/js-sys-0.3.77.crate) = 1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f -SIZE (rust/crates/js-sys-0.3.77.crate) = 55538 +SHA256 (rust/crates/js-sys-0.3.82.crate) = b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65 +SIZE (rust/crates/js-sys-0.3.82.crate) = 56436 SHA256 (rust/crates/language-tags-0.3.2.crate) = d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388 SIZE (rust/crates/language-tags-0.3.2.crate) = 53420 SHA256 (rust/crates/lazy_static-1.5.0.crate) = bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe SIZE (rust/crates/lazy_static-1.5.0.crate) = 14025 -SHA256 (rust/crates/libc-0.2.175.crate) = 6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543 -SIZE (rust/crates/libc-0.2.175.crate) = 788728 -SHA256 (rust/crates/libloading-0.8.8.crate) = 07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667 -SIZE (rust/crates/libloading-0.8.8.crate) = 31345 -SHA256 (rust/crates/linux-raw-sys-0.9.4.crate) = cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12 -SIZE (rust/crates/linux-raw-sys-0.9.4.crate) = 2311088 -SHA256 (rust/crates/litemap-0.8.0.crate) = 241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956 -SIZE (rust/crates/litemap-0.8.0.crate) = 34344 +SHA256 (rust/crates/libc-0.2.177.crate) = 2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976 +SIZE (rust/crates/libc-0.2.177.crate) = 792045 +SHA256 (rust/crates/libloading-0.8.9.crate) = d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55 +SIZE (rust/crates/libloading-0.8.9.crate) = 30222 +SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 +SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 +SHA256 (rust/crates/litemap-0.8.1.crate) = 6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77 +SIZE (rust/crates/litemap-0.8.1.crate) = 34172 SHA256 (rust/crates/locale_config-0.3.0.crate) = 08d2c35b16f4483f6c26f0e4e9550717a2f6575bcd6f12a53ff0c490a94a6934 SIZE (rust/crates/locale_config-0.3.0.crate) = 20808 -SHA256 (rust/crates/lock_api-0.4.13.crate) = 96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765 -SIZE (rust/crates/lock_api-0.4.13.crate) = 28565 -SHA256 (rust/crates/log-0.4.27.crate) = 13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94 -SIZE (rust/crates/log-0.4.27.crate) = 48120 +SHA256 (rust/crates/lock_api-0.4.14.crate) = 224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965 +SIZE (rust/crates/lock_api-0.4.14.crate) = 29249 +SHA256 (rust/crates/log-0.4.28.crate) = 34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432 +SIZE (rust/crates/log-0.4.28.crate) = 51131 SHA256 (rust/crates/lopdf-0.38.0.crate) = c7184fdea2bc3cd272a1acec4030c321a8f9875e877b3f92a53f2f6033fdc289 SIZE (rust/crates/lopdf-0.38.0.crate) = 7476430 SHA256 (rust/crates/mac-0.1.1.crate) = c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4 @@ -307,12 +303,12 @@ SHA256 (rust/crates/matrixmultiply-0.3.10.crate) = a06de3016e9fae57a36fd14dba131 SIZE (rust/crates/matrixmultiply-0.3.10.crate) = 58170 SHA256 (rust/crates/md-5-0.10.6.crate) = d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf SIZE (rust/crates/md-5-0.10.6.crate) = 16161 -SHA256 (rust/crates/memchr-2.7.5.crate) = 32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0 -SIZE (rust/crates/memchr-2.7.5.crate) = 97603 +SHA256 (rust/crates/memchr-2.7.6.crate) = f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273 +SIZE (rust/crates/memchr-2.7.6.crate) = 97616 SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 -SHA256 (rust/crates/moxcms-0.7.5.crate) = ddd32fa8935aeadb8a8a6b6b351e40225570a37c43de67690383d87ef170cd08 -SIZE (rust/crates/moxcms-0.7.5.crate) = 184232 +SHA256 (rust/crates/moxcms-0.7.9.crate) = 0fbdd3d7436f8b5e892b8b7ea114271ff0fa00bc5acae845d53b07d498616ef6 +SIZE (rust/crates/moxcms-0.7.9.crate) = 176419 SHA256 (rust/crates/mp4parse-0.17.0.crate) = 63a35203d3c6ce92d5251c77520acb2e57108c88728695aa883f70023624c570 SIZE (rust/crates/mp4parse-0.17.0.crate) = 82408 SHA256 (rust/crates/nalgebra-0.33.2.crate) = 26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b @@ -349,22 +345,22 @@ SHA256 (rust/crates/objc_id-0.1.1.crate) = c92d4ddb4bd7b50d730c215ff871754d0da6b SIZE (rust/crates/objc_id-0.1.1.crate) = 3258 SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 -SHA256 (rust/crates/once_cell_polyfill-1.70.1.crate) = a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad -SIZE (rust/crates/once_cell_polyfill-1.70.1.crate) = 7510 +SHA256 (rust/crates/once_cell_polyfill-1.70.2.crate) = 384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe +SIZE (rust/crates/once_cell_polyfill-1.70.2.crate) = 7448 SHA256 (rust/crates/oorandom-11.1.5.crate) = d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e SIZE (rust/crates/oorandom-11.1.5.crate) = 23750 -SHA256 (rust/crates/pango-0.21.1.crate) = ab47feb3403aa564edaeb68620c5b9159f8814733a7dd45f0b1a27d19de362fe -SIZE (rust/crates/pango-0.21.1.crate) = 49650 -SHA256 (rust/crates/pango-sys-0.21.1.crate) = 1f855bccb447644e149fae79086e1f81514c30fe5e9b8bd257d9d3c941116c86 -SIZE (rust/crates/pango-sys-0.21.1.crate) = 29211 -SHA256 (rust/crates/pangocairo-0.21.1.crate) = bb23cf0052917cbf75f160d4913a46ce741567f566b514fadc09d761f41eb2fb -SIZE (rust/crates/pangocairo-0.21.1.crate) = 9420 -SHA256 (rust/crates/pangocairo-sys-0.21.1.crate) = dcda09c0b17007d7eb6c5eb1643c5b40b067073c15f0cc5a809a6fc68b5d9be7 -SIZE (rust/crates/pangocairo-sys-0.21.1.crate) = 7365 -SHA256 (rust/crates/parking_lot-0.12.4.crate) = 70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13 -SIZE (rust/crates/parking_lot-0.12.4.crate) = 46779 -SHA256 (rust/crates/parking_lot_core-0.9.11.crate) = bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5 -SIZE (rust/crates/parking_lot_core-0.9.11.crate) = 34773 +SHA256 (rust/crates/pango-0.21.3.crate) = e37b7a678e18c2e9f2485f7e39b7b2dac99590d5ddef08a7f56eae38a145402e +SIZE (rust/crates/pango-0.21.3.crate) = 50452 +SHA256 (rust/crates/pango-sys-0.21.2.crate) = f4f5daf21da43fba9f2a0092da0eebeb77637c23552bccaf58f791c518009c94 +SIZE (rust/crates/pango-sys-0.21.2.crate) = 28458 +SHA256 (rust/crates/pangocairo-0.21.2.crate) = 7fe686297711b9c0499d0e292e86d343d90b4832d19ebff3d50ce3f627b64e17 +SIZE (rust/crates/pangocairo-0.21.2.crate) = 9678 +SHA256 (rust/crates/pangocairo-sys-0.21.2.crate) = e6263d7d919c8f3ccd31874774b5f7924e88f5b82ddee3163b3ef49197786a00 +SIZE (rust/crates/pangocairo-sys-0.21.2.crate) = 6365 +SHA256 (rust/crates/parking_lot-0.12.5.crate) = 93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a +SIZE (rust/crates/parking_lot-0.12.5.crate) = 46735 +SHA256 (rust/crates/parking_lot_core-0.9.12.crate) = 2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1 +SIZE (rust/crates/parking_lot_core-0.9.12.crate) = 34110 SHA256 (rust/crates/paste-1.0.15.crate) = 57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a SIZE (rust/crates/paste-1.0.15.crate) = 18374 SHA256 (rust/crates/percent-encoding-2.3.2.crate) = 9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220 @@ -399,8 +395,8 @@ SHA256 (rust/crates/portable-atomic-1.11.1.crate) = f84267b20a16ea918e43c6a88433 SIZE (rust/crates/portable-atomic-1.11.1.crate) = 185506 SHA256 (rust/crates/portable-atomic-util-0.2.4.crate) = d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507 SIZE (rust/crates/portable-atomic-util-0.2.4.crate) = 47043 -SHA256 (rust/crates/potential_utf-0.1.3.crate) = 84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a -SIZE (rust/crates/potential_utf-0.1.3.crate) = 9698 +SHA256 (rust/crates/potential_utf-0.1.4.crate) = b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77 +SIZE (rust/crates/potential_utf-0.1.4.crate) = 9514 SHA256 (rust/crates/powerfmt-0.2.0.crate) = 439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391 SIZE (rust/crates/powerfmt-0.2.0.crate) = 15165 SHA256 (rust/crates/ppv-lite86-0.2.21.crate) = 85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9 @@ -413,20 +409,20 @@ SHA256 (rust/crates/predicates-core-1.0.9.crate) = 727e462b119fe9c93fd0eb1429a5f SIZE (rust/crates/predicates-core-1.0.9.crate) = 8618 SHA256 (rust/crates/predicates-tree-1.0.12.crate) = 72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c SIZE (rust/crates/predicates-tree-1.0.12.crate) = 8392 -SHA256 (rust/crates/proc-macro-crate-3.3.0.crate) = edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35 -SIZE (rust/crates/proc-macro-crate-3.3.0.crate) = 12432 -SHA256 (rust/crates/proc-macro2-1.0.101.crate) = 89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de -SIZE (rust/crates/proc-macro2-1.0.101.crate) = 53886 -SHA256 (rust/crates/proptest-1.7.0.crate) = 6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f -SIZE (rust/crates/proptest-1.7.0.crate) = 204889 -SHA256 (rust/crates/pxfm-0.1.20.crate) = 6e790881194f6f6e86945f0a42a6981977323669aeb6c40e9c7ec253133b96f8 -SIZE (rust/crates/pxfm-0.1.20.crate) = 1199161 +SHA256 (rust/crates/proc-macro-crate-3.4.0.crate) = 219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983 +SIZE (rust/crates/proc-macro-crate-3.4.0.crate) = 12690 +SHA256 (rust/crates/proc-macro2-1.0.103.crate) = 5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8 +SIZE (rust/crates/proc-macro2-1.0.103.crate) = 60024 +SHA256 (rust/crates/proptest-1.9.0.crate) = bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40 +SIZE (rust/crates/proptest-1.9.0.crate) = 205346 +SHA256 (rust/crates/pxfm-0.1.25.crate) = a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84 +SIZE (rust/crates/pxfm-0.1.25.crate) = 866791 SHA256 (rust/crates/quick-error-1.2.3.crate) = a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0 SIZE (rust/crates/quick-error-1.2.3.crate) = 15066 SHA256 (rust/crates/quick-error-2.0.1.crate) = a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3 SIZE (rust/crates/quick-error-2.0.1.crate) = 14265 -SHA256 (rust/crates/quote-1.0.40.crate) = 1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d -SIZE (rust/crates/quote-1.0.40.crate) = 31063 +SHA256 (rust/crates/quote-1.0.41.crate) = ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1 +SIZE (rust/crates/quote-1.0.41.crate) = 31408 SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 @@ -451,22 +447,22 @@ SHA256 (rust/crates/rayon-core-1.13.0.crate) = 22e18b0f0062d30d4230b2e85ff77fdfe SIZE (rust/crates/rayon-core-1.13.0.crate) = 73151 SHA256 (rust/crates/rctree-0.6.0.crate) = e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9 SIZE (rust/crates/rctree-0.6.0.crate) = 8312 -SHA256 (rust/crates/redox_syscall-0.5.17.crate) = 5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77 -SIZE (rust/crates/redox_syscall-0.5.17.crate) = 30002 -SHA256 (rust/crates/regex-1.11.2.crate) = 23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912 -SIZE (rust/crates/regex-1.11.2.crate) = 166265 -SHA256 (rust/crates/regex-automata-0.4.10.crate) = 6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6 -SIZE (rust/crates/regex-automata-0.4.10.crate) = 622754 -SHA256 (rust/crates/regex-syntax-0.8.6.crate) = caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001 -SIZE (rust/crates/regex-syntax-0.8.6.crate) = 358808 +SHA256 (rust/crates/redox_syscall-0.5.18.crate) = ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d +SIZE (rust/crates/redox_syscall-0.5.18.crate) = 30747 +SHA256 (rust/crates/regex-1.12.2.crate) = 843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4 +SIZE (rust/crates/regex-1.12.2.crate) = 163843 +SHA256 (rust/crates/regex-automata-0.4.13.crate) = 5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c +SIZE (rust/crates/regex-automata-0.4.13.crate) = 625250 +SHA256 (rust/crates/regex-syntax-0.8.8.crate) = 7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58 +SIZE (rust/crates/regex-syntax-0.8.8.crate) = 359141 SHA256 (rust/crates/rgb-0.8.52.crate) = 0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce SIZE (rust/crates/rgb-0.8.52.crate) = 22449 -SHA256 (rust/crates/rustix-1.0.8.crate) = 11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8 -SIZE (rust/crates/rustix-1.0.8.crate) = 416688 +SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e +SIZE (rust/crates/rustix-1.1.2.crate) = 422717 SHA256 (rust/crates/rustversion-1.0.22.crate) = b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d SIZE (rust/crates/rustversion-1.0.22.crate) = 21096 -SHA256 (rust/crates/rusty-fork-0.3.0.crate) = cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f -SIZE (rust/crates/rusty-fork-0.3.0.crate) = 19881 +SHA256 (rust/crates/rusty-fork-0.3.1.crate) = cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2 +SIZE (rust/crates/rusty-fork-0.3.1.crate) = 21108 SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f SIZE (rust/crates/ryu-1.0.20.crate) = 48738 SHA256 (rust/crates/safe_arch-0.7.4.crate) = 96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323 @@ -477,14 +473,16 @@ SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7 SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619 SHA256 (rust/crates/selectors-0.31.0.crate) = 5685b6ae43bfcf7d2e7dfcfb5d8e8f61b46442c902531e41a32a9a8bf0ee0fb6 SIZE (rust/crates/selectors-0.31.0.crate) = 65453 -SHA256 (rust/crates/serde-1.0.219.crate) = 5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6 -SIZE (rust/crates/serde-1.0.219.crate) = 78983 -SHA256 (rust/crates/serde_derive-1.0.219.crate) = 5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00 -SIZE (rust/crates/serde_derive-1.0.219.crate) = 57798 -SHA256 (rust/crates/serde_json-1.0.143.crate) = d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a -SIZE (rust/crates/serde_json-1.0.143.crate) = 155342 -SHA256 (rust/crates/serde_spanned-0.6.9.crate) = bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3 -SIZE (rust/crates/serde_spanned-0.6.9.crate) = 10210 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 +SHA256 (rust/crates/serde_json-1.0.145.crate) = 402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c +SIZE (rust/crates/serde_json-1.0.145.crate) = 155748 +SHA256 (rust/crates/serde_spanned-1.0.3.crate) = e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392 +SIZE (rust/crates/serde_spanned-1.0.3.crate) = 11011 SHA256 (rust/crates/servo_arc-0.4.1.crate) = 204ea332803bd95a0b60388590d59cf6468ec9becf626e2451f1d26a1d972de4 SIZE (rust/crates/servo_arc-0.4.1.crate) = 18512 SHA256 (rust/crates/sha2-0.10.9.crate) = a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283 @@ -493,8 +491,8 @@ SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7 SIZE (rust/crates/shell-words-1.1.0.crate) = 9871 SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 SIZE (rust/crates/shlex-1.3.0.crate) = 18713 -SHA256 (rust/crates/simba-0.9.0.crate) = b3a386a501cd104797982c15ae17aafe8b9261315b5d07e3ec803f2ea26be0fa -SIZE (rust/crates/simba-0.9.0.crate) = 52680 +SHA256 (rust/crates/simba-0.9.1.crate) = c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95 +SIZE (rust/crates/simba-0.9.1.crate) = 57448 SHA256 (rust/crates/simd-adler32-0.3.7.crate) = d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe SIZE (rust/crates/simd-adler32-0.3.7.crate) = 12086 SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d @@ -503,8 +501,8 @@ SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e SIZE (rust/crates/slab-0.4.11.crate) = 18549 SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 -SHA256 (rust/crates/stable_deref_trait-1.2.0.crate) = a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3 -SIZE (rust/crates/stable_deref_trait-1.2.0.crate) = 8054 +SHA256 (rust/crates/stable_deref_trait-1.2.1.crate) = 6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596 +SIZE (rust/crates/stable_deref_trait-1.2.1.crate) = 8186 SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f SIZE (rust/crates/static_assertions-1.1.0.crate) = 18480 SHA256 (rust/crates/string_cache-0.8.9.crate) = bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f @@ -517,58 +515,62 @@ SHA256 (rust/crates/stringprep-0.1.5.crate) = 7b4df3d392d81bd458a8a621b8bffbd230 SIZE (rust/crates/stringprep-0.1.5.crate) = 23573 SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f SIZE (rust/crates/strsim-0.11.1.crate) = 14266 -SHA256 (rust/crates/syn-2.0.106.crate) = ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6 -SIZE (rust/crates/syn-2.0.106.crate) = 301514 +SHA256 (rust/crates/syn-2.0.108.crate) = da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917 +SIZE (rust/crates/syn-2.0.108.crate) = 301754 SHA256 (rust/crates/synstructure-0.13.2.crate) = 728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2 SIZE (rust/crates/synstructure-0.13.2.crate) = 18950 -SHA256 (rust/crates/system-deps-7.0.5.crate) = e4be53aa0cba896d2dc615bd42bbc130acdcffa239e0a2d965ea5b3b2a86ffdb -SIZE (rust/crates/system-deps-7.0.5.crate) = 28669 -SHA256 (rust/crates/target-lexicon-0.13.2.crate) = e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a -SIZE (rust/crates/target-lexicon-0.13.2.crate) = 27923 -SHA256 (rust/crates/tempfile-3.21.0.crate) = 15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e -SIZE (rust/crates/tempfile-3.21.0.crate) = 42581 +SHA256 (rust/crates/system-deps-7.0.7.crate) = 48c8f33736f986f16d69b6cb8b03f55ddcad5c41acc4ccc39dd88e84aa805e7f +SIZE (rust/crates/system-deps-7.0.7.crate) = 28941 +SHA256 (rust/crates/target-lexicon-0.13.3.crate) = df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c +SIZE (rust/crates/target-lexicon-0.13.3.crate) = 28498 +SHA256 (rust/crates/tempfile-3.23.0.crate) = 2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16 +SIZE (rust/crates/tempfile-3.23.0.crate) = 43063 SHA256 (rust/crates/tendril-0.4.3.crate) = d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0 SIZE (rust/crates/tendril-0.4.3.crate) = 37210 SHA256 (rust/crates/termtree-0.5.1.crate) = 8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683 SIZE (rust/crates/termtree-0.5.1.crate) = 8498 -SHA256 (rust/crates/thiserror-2.0.16.crate) = 3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0 -SIZE (rust/crates/thiserror-2.0.16.crate) = 29095 -SHA256 (rust/crates/thiserror-impl-2.0.16.crate) = 6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960 -SIZE (rust/crates/thiserror-impl-2.0.16.crate) = 21214 -SHA256 (rust/crates/time-0.3.42.crate) = 8ca967379f9d8eb8058d86ed467d81d03e81acd45757e4ca341c24affbe8e8e3 -SIZE (rust/crates/time-0.3.42.crate) = 142370 -SHA256 (rust/crates/time-core-0.1.5.crate) = a9108bb380861b07264b950ded55a44a14a4adc68b9f5efd85aafc3aa4d40a68 -SIZE (rust/crates/time-core-0.1.5.crate) = 9110 -SHA256 (rust/crates/time-macros-0.2.23.crate) = 7182799245a7264ce590b349d90338f1c1affad93d2639aed5f8f69c090b334c -SIZE (rust/crates/time-macros-0.2.23.crate) = 24713 -SHA256 (rust/crates/tinystr-0.8.1.crate) = 5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b -SIZE (rust/crates/tinystr-0.8.1.crate) = 23333 +SHA256 (rust/crates/thiserror-2.0.17.crate) = f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8 +SIZE (rust/crates/thiserror-2.0.17.crate) = 28857 +SHA256 (rust/crates/thiserror-impl-2.0.17.crate) = 3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913 +SIZE (rust/crates/thiserror-impl-2.0.17.crate) = 21344 +SHA256 (rust/crates/time-0.3.44.crate) = 91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d +SIZE (rust/crates/time-0.3.44.crate) = 143200 +SHA256 (rust/crates/time-core-0.1.6.crate) = 40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b +SIZE (rust/crates/time-core-0.1.6.crate) = 9105 +SHA256 (rust/crates/time-macros-0.2.24.crate) = 30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3 +SIZE (rust/crates/time-macros-0.2.24.crate) = 24715 +SHA256 (rust/crates/tinystr-0.8.2.crate) = 42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869 +SIZE (rust/crates/tinystr-0.8.2.crate) = 23942 SHA256 (rust/crates/tinytemplate-1.2.1.crate) = be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc SIZE (rust/crates/tinytemplate-1.2.1.crate) = 26490 SHA256 (rust/crates/tinyvec-1.10.0.crate) = bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa SIZE (rust/crates/tinyvec-1.10.0.crate) = 51996 SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20 SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865 -SHA256 (rust/crates/toml-0.8.23.crate) = dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362 -SIZE (rust/crates/toml-0.8.23.crate) = 36050 -SHA256 (rust/crates/toml_datetime-0.6.11.crate) = 22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c -SIZE (rust/crates/toml_datetime-0.6.11.crate) = 16125 -SHA256 (rust/crates/toml_edit-0.22.27.crate) = 41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a -SIZE (rust/crates/toml_edit-0.22.27.crate) = 78602 +SHA256 (rust/crates/toml-0.9.8.crate) = f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8 +SIZE (rust/crates/toml-0.9.8.crate) = 56104 +SHA256 (rust/crates/toml_datetime-0.7.3.crate) = f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533 +SIZE (rust/crates/toml_datetime-0.7.3.crate) = 17827 +SHA256 (rust/crates/toml_edit-0.23.7.crate) = 6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d +SIZE (rust/crates/toml_edit-0.23.7.crate) = 65946 +SHA256 (rust/crates/toml_parser-1.0.4.crate) = c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e +SIZE (rust/crates/toml_parser-1.0.4.crate) = 34978 +SHA256 (rust/crates/toml_writer-1.0.4.crate) = df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2 +SIZE (rust/crates/toml_writer-1.0.4.crate) = 17146 SHA256 (rust/crates/ttf-parser-0.25.1.crate) = d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31 SIZE (rust/crates/ttf-parser-0.25.1.crate) = 201121 -SHA256 (rust/crates/typenum-1.18.0.crate) = 1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f -SIZE (rust/crates/typenum-1.18.0.crate) = 74871 +SHA256 (rust/crates/typenum-1.19.0.crate) = 562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb +SIZE (rust/crates/typenum-1.19.0.crate) = 76414 SHA256 (rust/crates/unarray-0.1.4.crate) = eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94 SIZE (rust/crates/unarray-0.1.4.crate) = 12895 SHA256 (rust/crates/unicode-bidi-0.3.18.crate) = 5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5 SIZE (rust/crates/unicode-bidi-0.3.18.crate) = 58300 -SHA256 (rust/crates/unicode-ident-1.0.18.crate) = 5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512 -SIZE (rust/crates/unicode-ident-1.0.18.crate) = 47743 -SHA256 (rust/crates/unicode-normalization-0.1.24.crate) = 5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956 -SIZE (rust/crates/unicode-normalization-0.1.24.crate) = 126536 -SHA256 (rust/crates/unicode-properties-0.1.3.crate) = e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0 -SIZE (rust/crates/unicode-properties-0.1.3.crate) = 42252 +SHA256 (rust/crates/unicode-ident-1.0.22.crate) = 9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5 +SIZE (rust/crates/unicode-ident-1.0.22.crate) = 47919 +SHA256 (rust/crates/unicode-normalization-0.1.25.crate) = 5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8 +SIZE (rust/crates/unicode-normalization-0.1.25.crate) = 128462 +SHA256 (rust/crates/unicode-properties-0.1.4.crate) = 7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d +SIZE (rust/crates/unicode-properties-0.1.4.crate) = 42752 SHA256 (rust/crates/url-2.5.7.crate) = 08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b SIZE (rust/crates/url-2.5.7.crate) = 87907 SHA256 (rust/crates/utf-8-0.7.6.crate) = 09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9 @@ -577,28 +579,26 @@ SHA256 (rust/crates/utf8_iter-1.0.4.crate) = b6c140620e7ffbb22c2dee59cafe6084a59 SIZE (rust/crates/utf8_iter-1.0.4.crate) = 10437 SHA256 (rust/crates/utf8parse-0.2.2.crate) = 06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821 SIZE (rust/crates/utf8parse-0.2.2.crate) = 13499 -SHA256 (rust/crates/version-compare-0.2.0.crate) = 852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b -SIZE (rust/crates/version-compare-0.2.0.crate) = 13942 +SHA256 (rust/crates/version-compare-0.2.1.crate) = 03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e +SIZE (rust/crates/version-compare-0.2.1.crate) = 14245 SHA256 (rust/crates/version_check-0.9.5.crate) = 0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a SIZE (rust/crates/version_check-0.9.5.crate) = 15554 SHA256 (rust/crates/wait-timeout-0.2.1.crate) = 09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11 SIZE (rust/crates/wait-timeout-0.2.1.crate) = 11435 SHA256 (rust/crates/walkdir-2.5.0.crate) = 29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b SIZE (rust/crates/walkdir-2.5.0.crate) = 23951 -SHA256 (rust/crates/wasi-0.14.3+wasi-0.2.4.crate) = 6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95 -SIZE (rust/crates/wasi-0.14.3+wasi-0.2.4.crate) = 144010 -SHA256 (rust/crates/wasm-bindgen-0.2.100.crate) = 1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5 -SIZE (rust/crates/wasm-bindgen-0.2.100.crate) = 48288 -SHA256 (rust/crates/wasm-bindgen-backend-0.2.100.crate) = 2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6 -SIZE (rust/crates/wasm-bindgen-backend-0.2.100.crate) = 32111 -SHA256 (rust/crates/wasm-bindgen-macro-0.2.100.crate) = 7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407 -SIZE (rust/crates/wasm-bindgen-macro-0.2.100.crate) = 9663 -SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.100.crate) = 8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de -SIZE (rust/crates/wasm-bindgen-macro-support-0.2.100.crate) = 26243 -SHA256 (rust/crates/wasm-bindgen-shared-0.2.100.crate) = 1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d -SIZE (rust/crates/wasm-bindgen-shared-0.2.100.crate) = 8570 -SHA256 (rust/crates/web-sys-0.3.77.crate) = 33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2 -SIZE (rust/crates/web-sys-0.3.77.crate) = 638246 +SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 +SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 +SHA256 (rust/crates/wasm-bindgen-0.2.105.crate) = da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60 +SIZE (rust/crates/wasm-bindgen-0.2.105.crate) = 48215 +SHA256 (rust/crates/wasm-bindgen-macro-0.2.105.crate) = 04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2 +SIZE (rust/crates/wasm-bindgen-macro-0.2.105.crate) = 9264 +SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.105.crate) = 420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc +SIZE (rust/crates/wasm-bindgen-macro-support-0.2.105.crate) = 49633 +SHA256 (rust/crates/wasm-bindgen-shared-0.2.105.crate) = 76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76 +SIZE (rust/crates/wasm-bindgen-shared-0.2.105.crate) = 9269 +SHA256 (rust/crates/web-sys-0.3.82.crate) = 3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1 +SIZE (rust/crates/web-sys-0.3.82.crate) = 644272 SHA256 (rust/crates/web_atoms-0.1.3.crate) = 57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414 SIZE (rust/crates/web_atoms-0.1.3.crate) = 27392 SHA256 (rust/crates/weezl-0.1.10.crate) = a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3 @@ -609,91 +609,93 @@ SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe9399 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 -SHA256 (rust/crates/winapi-util-0.1.10.crate) = 0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22 -SIZE (rust/crates/winapi-util-0.1.10.crate) = 13370 +SHA256 (rust/crates/winapi-util-0.1.11.crate) = c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22 +SIZE (rust/crates/winapi-util-0.1.11.crate) = 13368 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 -SHA256 (rust/crates/windows-core-0.61.2.crate) = c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3 -SIZE (rust/crates/windows-core-0.61.2.crate) = 36771 -SHA256 (rust/crates/windows-implement-0.60.0.crate) = a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836 -SIZE (rust/crates/windows-implement-0.60.0.crate) = 15073 -SHA256 (rust/crates/windows-interface-0.59.1.crate) = bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8 -SIZE (rust/crates/windows-interface-0.59.1.crate) = 11735 -SHA256 (rust/crates/windows-link-0.1.3.crate) = 5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a -SIZE (rust/crates/windows-link-0.1.3.crate) = 6154 -SHA256 (rust/crates/windows-result-0.3.4.crate) = 56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6 -SIZE (rust/crates/windows-result-0.3.4.crate) = 13418 -SHA256 (rust/crates/windows-strings-0.4.2.crate) = 56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57 -SIZE (rust/crates/windows-strings-0.4.2.crate) = 13983 +SHA256 (rust/crates/windows-core-0.62.2.crate) = b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb +SIZE (rust/crates/windows-core-0.62.2.crate) = 36932 +SHA256 (rust/crates/windows-implement-0.60.2.crate) = 053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf +SIZE (rust/crates/windows-implement-0.60.2.crate) = 15325 +SHA256 (rust/crates/windows-interface-0.59.3.crate) = 3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358 +SIZE (rust/crates/windows-interface-0.59.3.crate) = 11809 +SHA256 (rust/crates/windows-link-0.2.1.crate) = f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 +SIZE (rust/crates/windows-link-0.2.1.crate) = 6133 +SHA256 (rust/crates/windows-result-0.4.1.crate) = 7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5 +SIZE (rust/crates/windows-result-0.4.1.crate) = 13381 +SHA256 (rust/crates/windows-strings-0.5.1.crate) = 7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091 +SIZE (rust/crates/windows-strings-0.5.1.crate) = 13966 SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-sys-0.61.2.crate) = ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc +SIZE (rust/crates/windows-sys-0.61.2.crate) = 2517186 SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 -SHA256 (rust/crates/windows-targets-0.53.3.crate) = d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91 -SIZE (rust/crates/windows-targets-0.53.3.crate) = 7099 +SHA256 (rust/crates/windows-targets-0.53.5.crate) = 4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3 +SIZE (rust/crates/windows-targets-0.53.5.crate) = 7126 SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 -SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764 -SIZE (rust/crates/windows_aarch64_gnullvm-0.53.0.crate) = 782443 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = 787748 SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 -SHA256 (rust/crates/windows_aarch64_msvc-0.53.0.crate) = c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c -SIZE (rust/crates/windows_aarch64_msvc-0.53.0.crate) = 834446 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.1.crate) = b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006 +SIZE (rust/crates/windows_aarch64_msvc-0.53.1.crate) = 838009 SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 -SHA256 (rust/crates/windows_i686_gnu-0.53.0.crate) = c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3 -SIZE (rust/crates/windows_i686_gnu-0.53.0.crate) = 936973 +SHA256 (rust/crates/windows_i686_gnu-0.53.1.crate) = 960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3 +SIZE (rust/crates/windows_i686_gnu-0.53.1.crate) = 939775 SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 -SHA256 (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11 -SIZE (rust/crates/windows_i686_gnullvm-0.53.0.crate) = 854056 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.1.crate) = fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c +SIZE (rust/crates/windows_i686_gnullvm-0.53.1.crate) = 857396 SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 -SHA256 (rust/crates/windows_i686_msvc-0.53.0.crate) = 581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d -SIZE (rust/crates/windows_i686_msvc-0.53.0.crate) = 903450 +SHA256 (rust/crates/windows_i686_msvc-0.53.1.crate) = 1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2 +SIZE (rust/crates/windows_i686_msvc-0.53.1.crate) = 907688 SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 -SHA256 (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba -SIZE (rust/crates/windows_x86_64_gnu-0.53.0.crate) = 902585 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499 +SIZE (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 903712 SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 -SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57 -SIZE (rust/crates/windows_x86_64_gnullvm-0.53.0.crate) = 782434 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 787739 SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 -SHA256 (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486 -SIZE (rust/crates/windows_x86_64_msvc-0.53.0.crate) = 834400 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.1.crate) = d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650 +SIZE (rust/crates/windows_x86_64_msvc-0.53.1.crate) = 837950 SHA256 (rust/crates/winnow-0.7.13.crate) = 21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf SIZE (rust/crates/winnow-0.7.13.crate) = 174454 -SHA256 (rust/crates/wit-bindgen-0.45.0.crate) = 052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814 -SIZE (rust/crates/wit-bindgen-0.45.0.crate) = 60405 -SHA256 (rust/crates/writeable-0.6.1.crate) = ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb -SIZE (rust/crates/writeable-0.6.1.crate) = 24068 +SHA256 (rust/crates/wit-bindgen-0.46.0.crate) = f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59 +SIZE (rust/crates/wit-bindgen-0.46.0.crate) = 60508 +SHA256 (rust/crates/writeable-0.6.2.crate) = 9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9 +SIZE (rust/crates/writeable-0.6.2.crate) = 25181 SHA256 (rust/crates/xml5ever-0.35.0.crate) = ee3f1e41afb31a75aef076563b0ad3ecc24f5bd9d12a72b132222664eb76b494 SIZE (rust/crates/xml5ever-0.35.0.crate) = 40626 SHA256 (rust/crates/yeslogic-fontconfig-sys-6.0.0.crate) = 503a066b4c037c440169d995b869046827dbc71263f6e8f3be6d77d4f3229dbd SIZE (rust/crates/yeslogic-fontconfig-sys-6.0.0.crate) = 6677 -SHA256 (rust/crates/yoke-0.8.0.crate) = 5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc -SIZE (rust/crates/yoke-0.8.0.crate) = 28726 -SHA256 (rust/crates/yoke-derive-0.8.0.crate) = 38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6 -SIZE (rust/crates/yoke-derive-0.8.0.crate) = 7521 -SHA256 (rust/crates/zerocopy-0.8.26.crate) = 1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f -SIZE (rust/crates/zerocopy-0.8.26.crate) = 249223 -SHA256 (rust/crates/zerocopy-derive-0.8.26.crate) = 9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181 -SIZE (rust/crates/zerocopy-derive-0.8.26.crate) = 88080 +SHA256 (rust/crates/yoke-0.8.1.crate) = 72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954 +SIZE (rust/crates/yoke-0.8.1.crate) = 32016 +SHA256 (rust/crates/yoke-derive-0.8.1.crate) = b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d +SIZE (rust/crates/yoke-derive-0.8.1.crate) = 7593 +SHA256 (rust/crates/zerocopy-0.8.27.crate) = 0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c +SIZE (rust/crates/zerocopy-0.8.27.crate) = 252663 +SHA256 (rust/crates/zerocopy-derive-0.8.27.crate) = 88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831 +SIZE (rust/crates/zerocopy-derive-0.8.27.crate) = 89827 SHA256 (rust/crates/zerofrom-0.1.6.crate) = 50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5 SIZE (rust/crates/zerofrom-0.1.6.crate) = 5669 SHA256 (rust/crates/zerofrom-derive-0.1.6.crate) = d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502 SIZE (rust/crates/zerofrom-derive-0.1.6.crate) = 8305 -SHA256 (rust/crates/zerotrie-0.2.2.crate) = 36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595 -SIZE (rust/crates/zerotrie-0.2.2.crate) = 74423 -SHA256 (rust/crates/zerovec-0.11.4.crate) = e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b -SIZE (rust/crates/zerovec-0.11.4.crate) = 125080 -SHA256 (rust/crates/zerovec-derive-0.11.1.crate) = 5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f -SIZE (rust/crates/zerovec-derive-0.11.1.crate) = 21294 +SHA256 (rust/crates/zerotrie-0.2.3.crate) = 2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851 +SIZE (rust/crates/zerotrie-0.2.3.crate) = 69547 +SHA256 (rust/crates/zerovec-0.11.5.crate) = 6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002 +SIZE (rust/crates/zerovec-0.11.5.crate) = 119620 +SHA256 (rust/crates/zerovec-derive-0.11.2.crate) = eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3 +SIZE (rust/crates/zerovec-derive-0.11.2.crate) = 21421 SHA256 (rust/crates/zune-core-0.4.12.crate) = 3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a SIZE (rust/crates/zune-core-0.4.12.crate) = 17355 -SHA256 (rust/crates/zune-jpeg-0.4.20.crate) = fc1f7e205ce79eb2da3cd71c5f55f3589785cb7c79f6a03d1c8d1491bda5d089 -SIZE (rust/crates/zune-jpeg-0.4.20.crate) = 67723 +SHA256 (rust/crates/zune-jpeg-0.4.21.crate) = 29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713 +SIZE (rust/crates/zune-jpeg-0.4.21.crate) = 68268 diff --git a/graphics/librsvg2-rust/pkg-plist b/graphics/librsvg2-rust/pkg-plist index f6fe92e7bd53..1a51abaf4c0b 100644 --- a/graphics/librsvg2-rust/pkg-plist +++ b/graphics/librsvg2-rust/pkg-plist @@ -8,7 +8,7 @@ lib/gdk-pixbuf-2.0/%%GTK2_VERSION%%/loaders/libpixbufloader_svg.so lib/girepository-1.0/Rsvg-2.0.typelib lib/librsvg-2.so lib/librsvg-2.so.2 -lib/librsvg-2.so.2.61.2 +lib/librsvg-2.so.2.61.3 libdata/pkgconfig/librsvg-2.0.pc share/man/man1/rsvg-convert.1.gz %%PORTDOCS%%share/doc/Rsvg-2.0/RedHatDisplay-Black.woff diff --git a/graphics/mesa-devel/Makefile b/graphics/mesa-devel/Makefile index 2aadaa8329cb..28bd878de0dd 100644 --- a/graphics/mesa-devel/Makefile +++ b/graphics/mesa-devel/Makefile @@ -1,5 +1,6 @@ PORTNAME= mesa DISTVERSION= 25.3-branchpoint-2585 +PORTREVISION= 1 DISTVERSIONSUFFIX= -gf5351afbc8c CATEGORIES= graphics PKGNAMESUFFIX= -devel diff --git a/graphics/mesa-dri/Makefile b/graphics/mesa-dri/Makefile index b262c644028a..e5771889e5f3 100644 --- a/graphics/mesa-dri/Makefile +++ b/graphics/mesa-dri/Makefile @@ -1,6 +1,6 @@ PORTNAME= mesa-dri PORTVERSION= ${MESAVERSION} -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics COMMENT= OpenGL hardware acceleration drivers for DRI2+ diff --git a/graphics/plutovg/Makefile b/graphics/plutovg/Makefile index 185e0dea38dc..beee953266d5 100644 --- a/graphics/plutovg/Makefile +++ b/graphics/plutovg/Makefile @@ -1,6 +1,6 @@ PORTNAME= plutovg DISTVERSIONPREFIX= v -DISTVERSION= 1.3.1 +DISTVERSION= 1.3.2 CATEGORIES= graphics MAINTAINER= alven@FreeBSD.org diff --git a/graphics/plutovg/distinfo b/graphics/plutovg/distinfo index aa6eef423eca..b6ad64696a86 100644 --- a/graphics/plutovg/distinfo +++ b/graphics/plutovg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757841359 -SHA256 (sammycage-plutovg-v1.3.1_GH0.tar.gz) = bea672eb96ee36c2cbeb911b9bac66dfe989b3ad9a9943101e00aeb2df2aefdb -SIZE (sammycage-plutovg-v1.3.1_GH0.tar.gz) = 236658 +TIMESTAMP = 1766005117 +SHA256 (sammycage-plutovg-v1.3.2_GH0.tar.gz) = 7bd4e79ce18b1d47517e7e91fbb7cf19d4f01942804a519bc7c0bf32b6325dd5 +SIZE (sammycage-plutovg-v1.3.2_GH0.tar.gz) = 236686 diff --git a/graphics/qgis-ltr/Makefile b/graphics/qgis-ltr/Makefile index 540a438a5e91..6672beaf5eb0 100644 --- a/graphics/qgis-ltr/Makefile +++ b/graphics/qgis-ltr/Makefile @@ -1,6 +1,5 @@ PORTNAME= qgis -DISTVERSION= 3.40.13 -PORTREVISION= 2 +DISTVERSION= 3.40.14 CATEGORIES= graphics geography MASTER_SITES= https://qgis.org/downloads/ PKGNAMESUFFIX= -ltr diff --git a/graphics/qgis-ltr/distinfo b/graphics/qgis-ltr/distinfo index 6fd8251baa3c..df71b643d5a8 100644 --- a/graphics/qgis-ltr/distinfo +++ b/graphics/qgis-ltr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763841419 -SHA256 (qgis-3.40.13.tar.bz2) = 2934325e873de4c3c9deba131c40eb3edf10f1f04d0016e2177ad2de90949ef0 -SIZE (qgis-3.40.13.tar.bz2) = 183637998 +TIMESTAMP = 1766241175 +SHA256 (qgis-3.40.14.tar.bz2) = c9277ee2c49de38e70571b3e598d8d17f7c99de088e6f15d4f69c39c290ed1ca +SIZE (qgis-3.40.14.tar.bz2) = 184396131 diff --git a/graphics/qgis/Makefile b/graphics/qgis/Makefile index b3c22b1badc8..4da1b6611f19 100644 --- a/graphics/qgis/Makefile +++ b/graphics/qgis/Makefile @@ -1,6 +1,5 @@ PORTNAME= qgis -DISTVERSION= 3.44.5 -PORTREVISION= 2 +DISTVERSION= 3.44.6 CATEGORIES= graphics geography MASTER_SITES= https://qgis.org/downloads/ diff --git a/graphics/qgis/distinfo b/graphics/qgis/distinfo index 0075b1fbfed7..5c8fe196e01a 100644 --- a/graphics/qgis/distinfo +++ b/graphics/qgis/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763793833 -SHA256 (qgis-3.44.5.tar.bz2) = f1e4d52789b65cd5678a6e9b9c10bdf04df930b847a827bbf8f873db98019f2f -SIZE (qgis-3.44.5.tar.bz2) = 190602610 +TIMESTAMP = 1766212091 +SHA256 (qgis-3.44.6.tar.bz2) = 6a7a0ad471b325f0ac364a7256b415013fc23e3ede3e6b152005739a8d273cd3 +SIZE (qgis-3.44.6.tar.bz2) = 189725834 diff --git a/graphics/shaderc/Makefile b/graphics/shaderc/Makefile index cda290de174c..f4087cc5f11f 100644 --- a/graphics/shaderc/Makefile +++ b/graphics/shaderc/Makefile @@ -1,6 +1,7 @@ PORTNAME= shaderc DISTVERSIONPREFIX= v DISTVERSION= 2025.5 +PORTREVISION= 1 CATEGORIES= graphics devel MAINTAINER= tagattie@FreeBSD.org diff --git a/graphics/skia/Makefile b/graphics/skia/Makefile index 1e784188db25..143369dc5bc2 100644 --- a/graphics/skia/Makefile +++ b/graphics/skia/Makefile @@ -1,6 +1,7 @@ PORTNAME= skia DISTVERSIONPREFIX= chrome/m DISTVERSION= 140 +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= me@svmhdvn.name diff --git a/graphics/vulkan-validation-layers/Makefile b/graphics/vulkan-validation-layers/Makefile index d38163921c43..42f62c44e9e2 100644 --- a/graphics/vulkan-validation-layers/Makefile +++ b/graphics/vulkan-validation-layers/Makefile @@ -1,7 +1,7 @@ PORTNAME= vulkan-validation-layers DISTVERSIONPREFIX= v DISTVERSION= 1.4.327 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= atanubiswas484@gmail.com diff --git a/graphics/wallhaven-cli/Makefile b/graphics/wallhaven-cli/Makefile index e245797c5d91..e95f5f2a7865 100644 --- a/graphics/wallhaven-cli/Makefile +++ b/graphics/wallhaven-cli/Makefile @@ -1,10 +1,9 @@ PORTNAME= wallhaven-cli DISTVERSIONPREFIX= v -DISTVERSION= 2.0.5 -PORTREVISION= 7 +DISTVERSION= 2.0.6 CATEGORIES= graphics -MAINTAINER= ports@FreeBSD.org +MAINTAINER= fuz@FreeBSD.org COMMENT= CLI for wallhaven to browse wallpapers in terminal WWW= https://github.com/r3tr0ananas/wallhaven-cli diff --git a/graphics/wallhaven-cli/distinfo b/graphics/wallhaven-cli/distinfo index f2bc94a6fe43..d8eec77f6e58 100644 --- a/graphics/wallhaven-cli/distinfo +++ b/graphics/wallhaven-cli/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1729951373 -SHA256 (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.5/v2.0.5.mod) = e4046e484528215b298e8c6faac0b34dadd3ae78a71f31dbd4ae59f341690ce5 -SIZE (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.5/v2.0.5.mod) = 250 -SHA256 (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.5/v2.0.5.zip) = 0bd3a574b60018884949f577db69f69a03a8a59a8471bd8a25d59799630b32ca -SIZE (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.5/v2.0.5.zip) = 10615 +TIMESTAMP = 1765677332 +SHA256 (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.6/v2.0.6.mod) = e4046e484528215b298e8c6faac0b34dadd3ae78a71f31dbd4ae59f341690ce5 +SIZE (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.6/v2.0.6.mod) = 250 +SHA256 (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.6/v2.0.6.zip) = 057f7a1a5f969e420c2f469b8d0fe48cc355a5ab0a33f5ea19cd16216db88fa1 +SIZE (go/graphics_wallhaven-cli/wallhaven-cli-v2.0.6/v2.0.6.zip) = 12035 diff --git a/japanese/jvim3/Makefile b/japanese/jvim3/Makefile index 6b92b94e1ef6..8baade2cf92c 100644 --- a/japanese/jvim3/Makefile +++ b/japanese/jvim3/Makefile @@ -2,13 +2,13 @@ PORTNAME= jvim PORTVERSION= 3.0.j2.1b PORTREVISION= 3 CATEGORIES= japanese editors -MASTER_SITES= ftp://ftp.vim.org/pub/vim/unix/ \ - http://hp.vector.co.jp/authors/VA003457/vim/vim3/2.1b/ -DISTFILES= vim-3.0.tar.gz jvim.2.1b.tar.gz +MASTER_SITES= https://ftp.st.ryukoku.ac.jp/pub/editor/vim/unix/:vim \ + https://ftp.st.ryukoku.ac.jp/pub/editor/jvim/jvim3/2.1b/:jvim +DISTFILES= vim-3.0.tar.gz:vim jvim.2.1b.tar.gz:jvim -MAINTAINER= hrs@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Japanized Vim-3.0 -WWW= https://hp.vector.co.jp/authors/VA003457/vim/ +WWW= https://ftp.st.ryukoku.ac.jp/pub/editor/jvim/jvim3/vim.html EXTRA_PATCHES= ${WRKDIR}/${PORTNAME}.diff WRKSRC= ${WRKDIR}/vim diff --git a/lang/clover/Makefile b/lang/clover/Makefile index 0b2b71a8ac4d..e0b9ce519f12 100644 --- a/lang/clover/Makefile +++ b/lang/clover/Makefile @@ -1,6 +1,6 @@ PORTNAME= clover PORTVERSION= ${MESAVERSION} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang COMMENT= Mesa OpenCL implementation for AMD GPUs diff --git a/lang/php81/Makefile b/lang/php81/Makefile index 86179960786f..415d135e1e5d 100644 --- a/lang/php81/Makefile +++ b/lang/php81/Makefile @@ -1,5 +1,5 @@ PORTNAME= php81 -DISTVERSION= 8.1.33 +DISTVERSION= 8.1.34 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions diff --git a/lang/php81/distinfo b/lang/php81/distinfo index 2e4d04ea9231..3b2526858d27 100644 --- a/lang/php81/distinfo +++ b/lang/php81/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751555623 -SHA256 (php-8.1.33.tar.xz) = 9db83bf4590375562bc1a10b353cccbcf9fcfc56c58b7c8fb814e6865bb928d1 -SIZE (php-8.1.33.tar.xz) = 11898724 +TIMESTAMP = 1765959606 +SHA256 (php-8.1.34.tar.xz) = ffa9e0982e82eeaea848f57687b425ed173aa278fe563001310ae2638db5c251 +SIZE (php-8.1.34.tar.xz) = 11903896 diff --git a/lang/php82/Makefile b/lang/php82/Makefile index 3d715f7ff37b..5b2c29424731 100644 --- a/lang/php82/Makefile +++ b/lang/php82/Makefile @@ -1,5 +1,5 @@ PORTNAME= php82 -DISTVERSION= 8.2.29 +DISTVERSION= 8.2.30 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions diff --git a/lang/php82/distinfo b/lang/php82/distinfo index 787fa17aa362..1fb62dee4379 100644 --- a/lang/php82/distinfo +++ b/lang/php82/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1751553447 -SHA256 (php-8.2.29.tar.xz) = 475f991afd2d5b901fb410be407d929bc00c46285d3f439a02c59e8b6fe3589c -SIZE (php-8.2.29.tar.xz) = 12162364 +TIMESTAMP = 1765959655 +SHA256 (php-8.2.30.tar.xz) = bc90523e17af4db46157e75d0c9ef0b9d0030b0514e62c26ba7b513b8c4eb015 +SIZE (php-8.2.30.tar.xz) = 12153868 diff --git a/lang/php83/Makefile b/lang/php83/Makefile index 03103ba0c0af..4c96cc7b691a 100644 --- a/lang/php83/Makefile +++ b/lang/php83/Makefile @@ -1,5 +1,5 @@ PORTNAME= php83 -DISTVERSION= 8.3.28 +DISTVERSION= 8.3.29 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions diff --git a/lang/php83/distinfo b/lang/php83/distinfo index 5a600cd22d18..fbcc0fda1af6 100644 --- a/lang/php83/distinfo +++ b/lang/php83/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763635386 -SHA256 (php-8.3.28.tar.xz) = 25e3860f30198a386242891c0bf9e2955931f7b666b96c3e3103d36a2a322326 -SIZE (php-8.3.28.tar.xz) = 12604244 +TIMESTAMP = 1765959677 +SHA256 (php-8.3.29.tar.xz) = f7950ca034b15a78f5de9f1b22f4d9bad1dd497114d175cb1672a4ca78077af5 +SIZE (php-8.3.29.tar.xz) = 12601944 diff --git a/lang/php84/Makefile b/lang/php84/Makefile index fb750a43e876..52be4c71184e 100644 --- a/lang/php84/Makefile +++ b/lang/php84/Makefile @@ -1,5 +1,5 @@ PORTNAME= php84 -DISTVERSION= 8.4.15 +DISTVERSION= 8.4.16 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions @@ -18,8 +18,7 @@ PHP_VER= 84 CONFLICTS_INSTALL?= php[0-9][0-9]${PKGNAMESUFFIX} .if !defined(PKGNAMESUFFIX) -LIB_DEPENDS= libargon2.so:security/libargon2 \ - libpcre2-8.so:devel/pcre2 +LIB_DEPENDS= libpcre2-8.so:devel/pcre2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= \ @@ -28,8 +27,7 @@ CONFIGURE_ARGS+= \ --with-config-file-scan-dir=${PREFIX}/etc/php \ --with-layout=GNU \ --with-libxml \ - --with-openssl \ - --with-password-argon2=${LOCALBASE} + --with-openssl USES+= autoreconf:build ssl USE_GNOME= libxml2 @@ -79,8 +77,8 @@ FPM_VARS= PHP_SAPI+=fpm \ USE_RC_SUBR+=php_fpm IPV6_CONFIGURE_OFF= --disable-ipv6 LINKTHR_LIBS= -lpthread -NOASLR_USES= elfctl MYSQLND_CONFIGURE_ON= --enable-mysqlnd +NOASLR_USES= elfctl PCRE_BUILD_DEPENDS= re2c>0:devel/re2c PCRE_CONFIGURE_ON= --with-external-pcre=${LOCALBASE} PCRE_PLIST_SUB= BUNDLED_PCRE="@comment " @@ -135,6 +133,13 @@ PLIST_SUB+= SAPI_INC="" PLIST_SUB+= SAPI_INC="@comment " . endif +. if (${OSVERSION} >= 1500000 && ${SSL_DEFAULT} == base) || (${SSL_DEFAULT:Mopenssl*} && ${OPENSSL_SHLIBVER} >= 15) +CONFIGURE_ARGS+= --with-openssl-argon2 +. else +LIB_DEPENDS+= libargon2.so:security/libargon2 +CONFIGURE_ARGS+= --with-password-argon2=${LOCALBASE} +. endif + CONFIGURE_ENV+= ac_cv_decimal_fp_supported="no" \ lt_cv_path_SED="sed" \ OPENSSL_CFLAGS="-I${OPENSSLINC}" \ diff --git a/lang/php84/distinfo b/lang/php84/distinfo index 8a7cefbd1503..703f469c962c 100644 --- a/lang/php84/distinfo +++ b/lang/php84/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763635407 -SHA256 (php-8.4.15.tar.xz) = a060684f614b8344f9b34c334b6ba8db1177555997edb5b1aceab0a4b807da7e -SIZE (php-8.4.15.tar.xz) = 13652564 +TIMESTAMP = 1765959694 +SHA256 (php-8.4.16.tar.xz) = f66f8f48db34e9e29f7bfd6901178e9cf4a1b163e6e497716dfcb8f88bcfae30 +SIZE (php-8.4.16.tar.xz) = 13660836 diff --git a/lang/php85/Makefile b/lang/php85/Makefile index 53b6b9034f59..a1ab876f2788 100644 --- a/lang/php85/Makefile +++ b/lang/php85/Makefile @@ -1,5 +1,5 @@ PORTNAME= php85 -DISTVERSION= 8.5.0 +DISTVERSION= 8.5.1 PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP/distributions @@ -18,8 +18,7 @@ PHP_VER= 85 CONFLICTS_INSTALL?= php[0-9][0-9]${PKGNAMESUFFIX} .if !defined(PKGNAMESUFFIX) -LIB_DEPENDS= libargon2.so:security/libargon2 \ - libcapstone.so:devel/capstone \ +LIB_DEPENDS= libcapstone.so:devel/capstone \ libpcre2-8.so:devel/pcre2 GNU_CONFIGURE= yes @@ -29,8 +28,7 @@ CONFIGURE_ARGS+= \ --with-config-file-scan-dir=${PREFIX}/etc/php \ --with-layout=GNU \ --with-libxml \ - --with-openssl \ - --with-password-argon2=${LOCALBASE} + --with-openssl USES+= autoreconf:build bison ssl USE_GNOME= libxml2 @@ -80,8 +78,8 @@ FPM_VARS= PHP_SAPI+=fpm \ USE_RC_SUBR+=php_fpm IPV6_CONFIGURE_OFF= --disable-ipv6 LINKTHR_LIBS= -lpthread -NOASLR_USES= elfctl MYSQLND_CONFIGURE_ON= --enable-mysqlnd +NOASLR_USES= elfctl PCRE_BUILD_DEPENDS= re2c>0:devel/re2c PCRE_CONFIGURE_ON= --with-external-pcre=${LOCALBASE} PCRE_PLIST_SUB= BUNDLED_PCRE="@comment " @@ -136,6 +134,13 @@ PLIST_SUB+= SAPI_INC="" PLIST_SUB+= SAPI_INC="@comment " . endif +. if (${OSVERSION} >= 1500000 && ${SSL_DEFAULT} == base) || (${SSL_DEFAULT:Mopenssl*} && ${OPENSSL_SHLIBVER} >= 15) +CONFIGURE_ARGS+= --with-openssl-argon2 +. else +LIB_DEPENDS+= libargon2.so:security/libargon2 +CONFIGURE_ARGS+= --with-password-argon2=${LOCALBASE} +. endif + CONFIGURE_ENV+= ac_cv_decimal_fp_supported="no" \ lt_cv_path_SED="sed" \ OPENSSL_CFLAGS="-I${OPENSSLINC}" \ diff --git a/lang/php85/distinfo b/lang/php85/distinfo index 347a809c2401..dc316134078a 100644 --- a/lang/php85/distinfo +++ b/lang/php85/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1763724884 -SHA256 (php-8.5.0.tar.xz) = 39cb6e4acd679b574d3d3276f148213e935fc25f90403eb84fb1b836a806ef1e -SIZE (php-8.5.0.tar.xz) = 14314552 +TIMESTAMP = 1765959962 +SHA256 (php-8.5.1.tar.xz) = 3f5bf99ce81201f526d25e288eddb2cfa111d068950d1e9a869530054ff98815 +SIZE (php-8.5.1.tar.xz) = 14326700 diff --git a/lang/pocl/Makefile b/lang/pocl/Makefile index 505151e0e072..1877e4992413 100644 --- a/lang/pocl/Makefile +++ b/lang/pocl/Makefile @@ -1,6 +1,7 @@ PORTNAME= pocl DISTVERSIONPREFIX= v DISTVERSION= 7.1 +PORTREVISION= 1 CATEGORIES= lang MAINTAINER= ohartmann@walstatt.org diff --git a/lang/rust/Makefile b/lang/rust/Makefile index ed549b63d685..d77d89e0d15a 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -63,7 +63,7 @@ DOCS_VARS= _RUST_BUILD_DOCS=true \ _COMPONENTS+="rust-docs-${_PACKAGE_VERS}-${_RUST_TARGET} rust-docs-json-${_PACKAGE_VERS}-${_RUST_TARGET}" DOCS_VARS_OFF= _RUST_BUILD_DOCS=false GDB_RUN_DEPENDS= ${LOCALBASE}/bin/gdb:devel/gdb -PORT_LLVM_USES= llvm:min=${LLVM_VERSION},lib,noexport +PORT_LLVM_USES= llvm:min=${_LLVM_VERSION},lib,noexport PORT_LLVM_MAKE_ENV= RUSTFLAGS="-Lnative=${LOCALBASE}/lib" SOURCES_VARS= _COMPONENTS+=rust-src-${_PACKAGE_VERS} \ _RUST_TOOLS+=src @@ -74,7 +74,7 @@ WASM_VARS= _COMPONENTS+="rust-analysis-${_PACKAGE_VERS}-wasm32-unknown-unknown BOOTSTRAPS_DATE?= 2025-10-30 RUST_BOOTSTRAP_VERSION?= 1.91.0 -LLVM_VERSION= 20 +_LLVM_VERSION= 20 CARGO_VENDOR_DIR?= ${WRKSRC}/vendor @@ -224,11 +224,17 @@ do-configure: @${ECHO_CMD} 'cxx="${WRKDIR}/cxx-wrapper"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'linker="${CC}"' >> ${WRKSRC}/config.toml .else -# use the builtin clang +# use the builtin clang when not using PORT_LLVM .if ${_target} == "wasm32-unknown-unknown" +.if ${PORT_OPTIONS:MPORT_LLVM} + @${ECHO_CMD} 'cc="${LOCALBASE}/bin/clang${LLVM_VERSION}"' >> ${WRKSRC}/config.toml + @${ECHO_CMD} 'cxx="${LOCALBASE}/bin/clang++${LLVM_VERSION}"' >> ${WRKSRC}/config.toml + @${ECHO_CMD} 'linker="${LOCALBASE}/bin/clang${LLVM_VERSION}"' >> ${WRKSRC}/config.toml +.else @${ECHO_CMD} 'cc="${WRKDIR}/_build/${_RUST_TARGET}/llvm/bin/clang"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cxx="${WRKDIR}/_build/${_RUST_TARGET}/llvm/bin/clang++"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'linker="${WRKDIR}/_build/${_RUST_TARGET}/llvm/bin/clang"' >> ${WRKSRC}/config.toml +.endif .else @${ECHO_CMD} 'cc="${CC}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cxx="${CXX}"' >> ${WRKSRC}/config.toml diff --git a/lang/solidity/Makefile b/lang/solidity/Makefile index ae21cba2c828..60c4b4dd00af 100644 --- a/lang/solidity/Makefile +++ b/lang/solidity/Makefile @@ -1,5 +1,5 @@ PORTNAME= solidity -DISTVERSION= 0.8.32 +DISTVERSION= 0.8.33 CATEGORIES= lang MASTER_SITES= https://github.com/argotorg/solidity/releases/download/v${DISTVERSION}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/solidity/distinfo b/lang/solidity/distinfo index 1729ecacf093..9726223c9791 100644 --- a/lang/solidity/distinfo +++ b/lang/solidity/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1766050858 -SHA256 (solidity_0.8.32.tar.gz) = b3e0a0def18720b5d11dd454f3de4495f52f719dd059a90b4712ca5efb4cc607 -SIZE (solidity_0.8.32.tar.gz) = 7628667 +TIMESTAMP = 1766146069 +SHA256 (solidity_0.8.33.tar.gz) = 2fb0a76b13e25b21bcd50607713a563f64709c8c283ed65464db3a2d546b9abf +SIZE (solidity_0.8.33.tar.gz) = 7629282 diff --git a/math/R-cran-gbutils/Makefile b/math/R-cran-gbutils/Makefile index 9c297cb7af23..5d3cb354afe2 100644 --- a/math/R-cran-gbutils/Makefile +++ b/math/R-cran-gbutils/Makefile @@ -1,12 +1,11 @@ PORTNAME= gbutils -DISTVERSION= 0.5 -PORTREVISION= 1 +DISTVERSION= 0.5.1 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= eduardo@FreeBSD.org COMMENT= Utilities for Simulation, Plots, Quantile Functions and Programming -WWW= https://github.com/GeoBosh/gbutils +WWW= https://cran.r-project.org/package=gbutils LICENSE= GPLv2+ diff --git a/math/R-cran-gbutils/distinfo b/math/R-cran-gbutils/distinfo index 7cd0c8957000..d05064a51a35 100644 --- a/math/R-cran-gbutils/distinfo +++ b/math/R-cran-gbutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1670305562 -SHA256 (gbutils_0.5.tar.gz) = ae53356b4e039d937bdd66ec5dd1f061d651b574fa2671997cb0c7e26265c6be -SIZE (gbutils_0.5.tar.gz) = 110921 +TIMESTAMP = 1766147360 +SHA256 (gbutils_0.5.1.tar.gz) = 097b1479760828d2e715a675a7dfe52dbe803ac352faafd6be3e176620cd517b +SIZE (gbutils_0.5.1.tar.gz) = 168068 diff --git a/math/R-cran-polycor/Makefile b/math/R-cran-polycor/Makefile index a93ce4f94ffe..2c9e22d2b930 100644 --- a/math/R-cran-polycor/Makefile +++ b/math/R-cran-polycor/Makefile @@ -1,6 +1,5 @@ PORTNAME= polycor -DISTVERSION= 0.8-1 -PORTREVISION= 1 +DISTVERSION= 0.8-2 CATEGORIES= math DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/math/R-cran-polycor/distinfo b/math/R-cran-polycor/distinfo index d40615df8e70..0b1efb9720ac 100644 --- a/math/R-cran-polycor/distinfo +++ b/math/R-cran-polycor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1651523290 -SHA256 (polycor_0.8-1.tar.gz) = f05f53e0b5c992de0e5b4c6b2e998148cf83310358821e1bba180d81face0509 -SIZE (polycor_0.8-1.tar.gz) = 13931 +TIMESTAMP = 1766156085 +SHA256 (polycor_0.8-2.tar.gz) = 618e9548f5a63b8487a5aa62d5b9bab8c7e845c693a04986608dcf03f6951f5a +SIZE (polycor_0.8-2.tar.gz) = 14456 diff --git a/math/R-cran-polycor/pkg-descr b/math/R-cran-polycor/pkg-descr index dc67545a140a..5b9b8ba5bb4d 100644 --- a/math/R-cran-polycor/pkg-descr +++ b/math/R-cran-polycor/pkg-descr @@ -2,4 +2,5 @@ Computes polychoric and polyserial correlations by quick "two-step" methods or ML, optionally with standard errors; tetrachoric and biserial correlations are special cases. -See also: https://polycor.r-forge.r-project.org/ +See also: https://r-forge.r-project.org/projects/polycor/ +and https://github.com/dmurdoch/polycor diff --git a/math/R-cran-wk/Makefile b/math/R-cran-wk/Makefile index 67f72e30cab7..b807020e6564 100644 --- a/math/R-cran-wk/Makefile +++ b/math/R-cran-wk/Makefile @@ -1,16 +1,18 @@ PORTNAME= wk -DISTVERSION= 0.9.4 +DISTVERSION= 0.9.5 CATEGORIES= math DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= eduardo@FreeBSD.org COMMENT= Lightweight Well-Known Geometry Parsing -WWW= https://cran.r-project.org/web/packages/wk/ +WWW= https://cran.r-project.org/package=wk LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -TEST_DEPENDS= R-cran-testthat>0:devel/R-cran-testthat \ +TEST_DEPENDS= R-cran-sf>0:math/R-cran-sf \ + R-cran-testthat>0:devel/R-cran-testthat \ + R-cran-tibble>0:devel/R-cran-tibble \ R-cran-vctrs>0:devel/R-cran-vctrs USES= cran:auto-plist,compiles diff --git a/math/R-cran-wk/distinfo b/math/R-cran-wk/distinfo index 3fd4d4e28527..97099eeb777c 100644 --- a/math/R-cran-wk/distinfo +++ b/math/R-cran-wk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1728822794 -SHA256 (wk_0.9.4.tar.gz) = b973dd5fa9aed94efc7ea4027146e804ba54df818a71278d6a5b7df0ae9e348b -SIZE (wk_0.9.4.tar.gz) = 1041219 +TIMESTAMP = 1766144473 +SHA256 (wk_0.9.5.tar.gz) = b720282890f8d322ff8217bd857bab8f5549343ea2a635a3c2ada63ce1206aed +SIZE (wk_0.9.5.tar.gz) = 1041465 diff --git a/math/libsemigroups/Makefile b/math/libsemigroups/Makefile index 9f5ef984dfd8..1bf08334d1b1 100644 --- a/math/libsemigroups/Makefile +++ b/math/libsemigroups/Makefile @@ -1,7 +1,6 @@ PORTNAME= libsemigroups -PORTVERSION= 3.2.0 +PORTVERSION= 3.3.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= math MAINTAINER= thierry@FreeBSD.org diff --git a/math/libsemigroups/distinfo b/math/libsemigroups/distinfo index 9d69f807e767..e5445d26f0ac 100644 --- a/math/libsemigroups/distinfo +++ b/math/libsemigroups/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760883166 -SHA256 (libsemigroups-libsemigroups-v3.2.0_GH0.tar.gz) = 5482c4275f822768fd92b47ec292ecf9b0cdcae5712101cde659a83c05032f7d -SIZE (libsemigroups-libsemigroups-v3.2.0_GH0.tar.gz) = 6566714 +TIMESTAMP = 1766062106 +SHA256 (libsemigroups-libsemigroups-v3.3.0_GH0.tar.gz) = ccfd3d6f71a2b5f8885565c2c7128e83f81d2a4d2dc92e8fdb9c278cf0255ad5 +SIZE (libsemigroups-libsemigroups-v3.3.0_GH0.tar.gz) = 9273189 diff --git a/math/libsemigroups/pkg-plist b/math/libsemigroups/pkg-plist index 567387722742..b7c459743d83 100644 --- a/math/libsemigroups/pkg-plist +++ b/math/libsemigroups/pkg-plist @@ -78,7 +78,10 @@ include/libsemigroups/froidure-pin.tpp include/libsemigroups/gabow.hpp include/libsemigroups/gabow.tpp include/libsemigroups/hpcombi.hpp +include/libsemigroups/hpcombi.tpp include/libsemigroups/hpcombi/arch.hpp +include/libsemigroups/hpcombi/bmat16.hpp +include/libsemigroups/hpcombi/bmat16_impl.hpp include/libsemigroups/hpcombi/bmat8.hpp include/libsemigroups/hpcombi/bmat8_impl.hpp include/libsemigroups/hpcombi/builder.hpp @@ -91,29 +94,32 @@ include/libsemigroups/hpcombi/perm16_impl.hpp include/libsemigroups/hpcombi/perm_generic.hpp include/libsemigroups/hpcombi/perm_generic_impl.hpp include/libsemigroups/hpcombi/power.hpp -include/libsemigroups/hpcombi/simde/arm/neon.h -include/libsemigroups/hpcombi/simde/arm/sve.h -include/libsemigroups/hpcombi/simde/mips/msa.h -include/libsemigroups/hpcombi/simde/wasm/relaxed-simd.h -include/libsemigroups/hpcombi/simde/wasm/simd128.h -include/libsemigroups/hpcombi/simde/x86/avx.h -include/libsemigroups/hpcombi/simde/x86/avx2.h -include/libsemigroups/hpcombi/simde/x86/avx512.h -include/libsemigroups/hpcombi/simde/x86/clmul.h -include/libsemigroups/hpcombi/simde/x86/f16c.h -include/libsemigroups/hpcombi/simde/x86/fma.h -include/libsemigroups/hpcombi/simde/x86/gfni.h -include/libsemigroups/hpcombi/simde/x86/mmx.h -include/libsemigroups/hpcombi/simde/x86/sse.h -include/libsemigroups/hpcombi/simde/x86/sse2.h -include/libsemigroups/hpcombi/simde/x86/sse3.h -include/libsemigroups/hpcombi/simde/x86/sse4.1.h -include/libsemigroups/hpcombi/simde/x86/sse4.2.h -include/libsemigroups/hpcombi/simde/x86/ssse3.h -include/libsemigroups/hpcombi/simde/x86/svml.h -include/libsemigroups/hpcombi/simde/x86/xop.h +include/libsemigroups/hpcombi/simde-0.8.2/arm/neon.h +include/libsemigroups/hpcombi/simde-0.8.2/arm/sve.h +include/libsemigroups/hpcombi/simde-0.8.2/mips/msa.h +include/libsemigroups/hpcombi/simde-0.8.2/wasm/relaxed-simd.h +include/libsemigroups/hpcombi/simde-0.8.2/wasm/simd128.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/aes.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/avx.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/avx2.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/avx512.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/clmul.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/f16c.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/fma.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/gfni.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/mmx.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/sse.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/sse2.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/sse3.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/sse4.1.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/sse4.2.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/ssse3.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/svml.h +include/libsemigroups/hpcombi/simde-0.8.2/x86/xop.h include/libsemigroups/hpcombi/vect16.hpp include/libsemigroups/hpcombi/vect_generic.hpp +include/libsemigroups/is-transf.hpp +include/libsemigroups/is-transf.tpp include/libsemigroups/is_specialization_of.hpp include/libsemigroups/kambites-class.hpp include/libsemigroups/kambites-class.tpp @@ -139,6 +145,9 @@ include/libsemigroups/magic_enum/magic_enum_utility.hpp include/libsemigroups/matrix.hpp include/libsemigroups/obvinf.hpp include/libsemigroups/order.hpp +include/libsemigroups/order.tpp +include/libsemigroups/paths-count.hpp +include/libsemigroups/paths-count.tpp include/libsemigroups/paths.hpp include/libsemigroups/paths.tpp include/libsemigroups/pbr.hpp @@ -165,6 +174,8 @@ include/libsemigroups/to-presentation.hpp include/libsemigroups/to-presentation.tpp include/libsemigroups/to-todd-coxeter.hpp include/libsemigroups/to-todd-coxeter.tpp +include/libsemigroups/to-word-graph.hpp +include/libsemigroups/to-word-graph.tpp include/libsemigroups/todd-coxeter-class.hpp include/libsemigroups/todd-coxeter-class.tpp include/libsemigroups/todd-coxeter-helpers.hpp @@ -175,6 +186,10 @@ include/libsemigroups/transf.tpp include/libsemigroups/types.hpp include/libsemigroups/ukkonen.hpp include/libsemigroups/ukkonen.tpp +include/libsemigroups/word-graph-helpers.hpp +include/libsemigroups/word-graph-helpers.tpp +include/libsemigroups/word-graph-view.hpp +include/libsemigroups/word-graph-view.tpp include/libsemigroups/word-graph.hpp include/libsemigroups/word-graph.tpp include/libsemigroups/word-range.hpp diff --git a/math/ntl/Makefile b/math/ntl/Makefile index 438f635e04ee..cb12ff8ac349 100644 --- a/math/ntl/Makefile +++ b/math/ntl/Makefile @@ -1,10 +1,9 @@ PORTNAME= ntl -PORTVERSION= 11.5.1 -PORTREVISION= 1 +PORTVERSION= 11.6.0 CATEGORIES= math MASTER_SITES= http://www.shoup.net/ntl/ -MAINTAINER= ndowens04@gmail.com +MAINTAINER= wen@FreeBSD.org COMMENT= Victor Shoup's Number Theory Library WWW= https://www.shoup.net/ @@ -25,9 +24,6 @@ WRKSRC_SUBDIR= src MAKEFILE= makefile TEST_TARGET= check -NTLDOCSDIR= share/doc/NTL -PLIST_SUB= NTLDOCS=${NTLDOCSDIR} - OPTIONS_DEFINE= DOCS GF2X GMP NATIVE OPTIONS_DEFAULT= GF2X GMP @@ -44,6 +40,9 @@ NATIVE_DESC= Build with native optimizations (-march=native) NATIVE_CONFIGURE_ON= NATIVE=on NATIVE_CONFIGURE_OFF= NATIVE=off +post-configure: + @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/makefile # avoid install doc twice + do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/../doc/* ${STAGEDIR}${DOCSDIR} diff --git a/math/ntl/distinfo b/math/ntl/distinfo index b6cedc9115fa..e667759c9d82 100644 --- a/math/ntl/distinfo +++ b/math/ntl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1634922406 -SHA256 (ntl-11.5.1.tar.gz) = 210d06c31306cbc6eaf6814453c56c776d9d8e8df36d74eb306f6a523d1c6a8a -SIZE (ntl-11.5.1.tar.gz) = 2304103 +TIMESTAMP = 1766194973 +SHA256 (ntl-11.6.0.tar.gz) = bc0ef9aceb075a6a0673ac8d8f47d5f8458c72fe806e4468fbd5d3daff056182 +SIZE (ntl-11.6.0.tar.gz) = 2599487 diff --git a/math/ntl/pkg-plist b/math/ntl/pkg-plist index c20ad4583650..c8c0fd21fe7c 100644 --- a/math/ntl/pkg-plist +++ b/math/ntl/pkg-plist @@ -1,6 +1,6 @@ include/NTL/ALL_FEATURES.h include/NTL/BasicThreadPool.h -include/NTL/ConfigLog.h +include/NTL/CONFIG_LOG.txt include/NTL/FFT.h include/NTL/FFT_impl.h include/NTL/FacVec.h @@ -37,6 +37,7 @@ include/NTL/PackageInfo.h include/NTL/REPORT_ALL_FEATURES.h include/NTL/RR.h include/NTL/SmartPtr.h +include/NTL/USER_MAKEFILE.txt include/NTL/WordVector.h include/NTL/ZZ.h include/NTL/ZZVec.h @@ -85,6 +86,9 @@ include/NTL/pair_lzz_pEX_long.h include/NTL/pair_lzz_pX_long.h include/NTL/pd_FFT.h include/NTL/quad_float.h +include/NTL/simde_avx.h +include/NTL/simde_fma.h +include/NTL/simde_pclmul.h include/NTL/sp_arith.h include/NTL/thread.h include/NTL/tools.h @@ -118,153 +122,9 @@ include/NTL/version.h include/NTL/xdouble.h lib/libntl.a lib/libntl.so -lib/libntl.so.44 -lib/libntl.so.44.0.1 -%%NTLDOCS%%/BasicThreadPool.cpp.html -%%NTLDOCS%%/BasicThreadPool.txt -%%NTLDOCS%%/GF2.cpp.html -%%NTLDOCS%%/GF2.txt -%%NTLDOCS%%/GF2E.cpp.html -%%NTLDOCS%%/GF2E.txt -%%NTLDOCS%%/GF2EX.cpp.html -%%NTLDOCS%%/GF2EX.txt -%%NTLDOCS%%/GF2EXFactoring.cpp.html -%%NTLDOCS%%/GF2EXFactoring.txt -%%NTLDOCS%%/GF2X.cpp.html -%%NTLDOCS%%/GF2X.txt -%%NTLDOCS%%/GF2XFactoring.cpp.html -%%NTLDOCS%%/GF2XFactoring.txt -%%NTLDOCS%%/GF2XVec.cpp.html -%%NTLDOCS%%/GF2XVec.txt -%%NTLDOCS%%/HNF.cpp.html -%%NTLDOCS%%/HNF.txt -%%NTLDOCS%%/LLL.cpp.html -%%NTLDOCS%%/LLL.txt -%%NTLDOCS%%/Lazy.cpp.html -%%NTLDOCS%%/Lazy.txt -%%NTLDOCS%%/LazyTable.cpp.html -%%NTLDOCS%%/LazyTable.txt -%%NTLDOCS%%/RR.cpp.html -%%NTLDOCS%%/RR.txt -%%NTLDOCS%%/SmartPtr.cpp.html -%%NTLDOCS%%/SmartPtr.txt -%%NTLDOCS%%/ZZ.cpp.html -%%NTLDOCS%%/ZZ.txt -%%NTLDOCS%%/ZZVec.cpp.html -%%NTLDOCS%%/ZZVec.txt -%%NTLDOCS%%/ZZX.cpp.html -%%NTLDOCS%%/ZZX.txt -%%NTLDOCS%%/ZZXFactoring.cpp.html -%%NTLDOCS%%/ZZXFactoring.txt -%%NTLDOCS%%/ZZ_limbs.cpp.html -%%NTLDOCS%%/ZZ_limbs.txt -%%NTLDOCS%%/ZZ_p.cpp.html -%%NTLDOCS%%/ZZ_p.txt -%%NTLDOCS%%/ZZ_pE.cpp.html -%%NTLDOCS%%/ZZ_pE.txt -%%NTLDOCS%%/ZZ_pEX.cpp.html -%%NTLDOCS%%/ZZ_pEX.txt -%%NTLDOCS%%/ZZ_pEXFactoring.cpp.html -%%NTLDOCS%%/ZZ_pEXFactoring.txt -%%NTLDOCS%%/ZZ_pX.cpp.html -%%NTLDOCS%%/ZZ_pX.txt -%%NTLDOCS%%/ZZ_pXFactoring.cpp.html -%%NTLDOCS%%/ZZ_pXFactoring.txt -%%NTLDOCS%%/arrow1.gif -%%NTLDOCS%%/arrow2.gif -%%NTLDOCS%%/arrow3.gif -%%NTLDOCS%%/config.txt -%%NTLDOCS%%/conversions.txt -%%NTLDOCS%%/copying.txt -%%NTLDOCS%%/flags.txt -%%NTLDOCS%%/lzz_p.cpp.html -%%NTLDOCS%%/lzz_p.txt -%%NTLDOCS%%/lzz_pE.cpp.html -%%NTLDOCS%%/lzz_pE.txt -%%NTLDOCS%%/lzz_pEX.cpp.html -%%NTLDOCS%%/lzz_pEX.txt -%%NTLDOCS%%/lzz_pEXFactoring.cpp.html -%%NTLDOCS%%/lzz_pEXFactoring.txt -%%NTLDOCS%%/lzz_pX.cpp.html -%%NTLDOCS%%/lzz_pX.txt -%%NTLDOCS%%/lzz_pXFactoring.cpp.html -%%NTLDOCS%%/lzz_pXFactoring.txt -%%NTLDOCS%%/mat_GF2.cpp.html -%%NTLDOCS%%/mat_GF2.txt -%%NTLDOCS%%/mat_GF2E.cpp.html -%%NTLDOCS%%/mat_GF2E.txt -%%NTLDOCS%%/mat_RR.cpp.html -%%NTLDOCS%%/mat_RR.txt -%%NTLDOCS%%/mat_ZZ.cpp.html -%%NTLDOCS%%/mat_ZZ.txt -%%NTLDOCS%%/mat_ZZ_p.cpp.html -%%NTLDOCS%%/mat_ZZ_p.txt -%%NTLDOCS%%/mat_ZZ_pE.cpp.html -%%NTLDOCS%%/mat_ZZ_pE.txt -%%NTLDOCS%%/mat_lzz_p.cpp.html -%%NTLDOCS%%/mat_lzz_p.txt -%%NTLDOCS%%/mat_lzz_pE.cpp.html -%%NTLDOCS%%/mat_lzz_pE.txt -%%NTLDOCS%%/mat_poly_ZZ.cpp.html -%%NTLDOCS%%/mat_poly_ZZ.txt -%%NTLDOCS%%/mat_poly_ZZ_p.cpp.html -%%NTLDOCS%%/mat_poly_ZZ_p.txt -%%NTLDOCS%%/mat_poly_lzz_p.cpp.html -%%NTLDOCS%%/mat_poly_lzz_p.txt -%%NTLDOCS%%/matrix.cpp.html -%%NTLDOCS%%/matrix.txt -%%NTLDOCS%%/names.txt -%%NTLDOCS%%/pair.cpp.html -%%NTLDOCS%%/pair.txt -%%NTLDOCS%%/quad_float.cpp.html -%%NTLDOCS%%/quad_float.txt -%%NTLDOCS%%/sedscript.txt -%%NTLDOCS%%/tools.cpp.html -%%NTLDOCS%%/tools.txt -%%NTLDOCS%%/tour-ack.html -%%NTLDOCS%%/tour-changes.html -%%NTLDOCS%%/tour-ex1.html -%%NTLDOCS%%/tour-ex2.html -%%NTLDOCS%%/tour-ex3.html -%%NTLDOCS%%/tour-ex4.html -%%NTLDOCS%%/tour-ex5.html -%%NTLDOCS%%/tour-ex6.html -%%NTLDOCS%%/tour-ex7.html -%%NTLDOCS%%/tour-examples.html -%%NTLDOCS%%/tour-gf2x.html -%%NTLDOCS%%/tour-gmp.html -%%NTLDOCS%%/tour-impl.html -%%NTLDOCS%%/tour-intro.html -%%NTLDOCS%%/tour-modules.html -%%NTLDOCS%%/tour-roadmap.html -%%NTLDOCS%%/tour-struct.html -%%NTLDOCS%%/tour-time.html -%%NTLDOCS%%/tour-tips.html -%%NTLDOCS%%/tour-unix.html -%%NTLDOCS%%/tour-win.html -%%NTLDOCS%%/tour.html -%%NTLDOCS%%/vec_GF2.cpp.html -%%NTLDOCS%%/vec_GF2.txt -%%NTLDOCS%%/vec_GF2E.cpp.html -%%NTLDOCS%%/vec_GF2E.txt -%%NTLDOCS%%/vec_RR.cpp.html -%%NTLDOCS%%/vec_RR.txt -%%NTLDOCS%%/vec_ZZ.cpp.html -%%NTLDOCS%%/vec_ZZ.txt -%%NTLDOCS%%/vec_ZZ_p.cpp.html -%%NTLDOCS%%/vec_ZZ_p.txt -%%NTLDOCS%%/vec_ZZ_pE.cpp.html -%%NTLDOCS%%/vec_ZZ_pE.txt -%%NTLDOCS%%/vec_lzz_p.cpp.html -%%NTLDOCS%%/vec_lzz_p.txt -%%NTLDOCS%%/vec_lzz_pE.cpp.html -%%NTLDOCS%%/vec_lzz_pE.txt -%%NTLDOCS%%/vector.cpp.html -%%NTLDOCS%%/vector.txt -%%NTLDOCS%%/version.cpp.html -%%NTLDOCS%%/version.txt -%%NTLDOCS%%/xdouble.cpp.html -%%NTLDOCS%%/xdouble.txt +lib/libntl.so.45 +lib/libntl.so.45.0.0 +libdata/pkgconfig/ntl.pc %%PORTDOCS%%%%DOCSDIR%%/BasicThreadPool.cpp.html %%PORTDOCS%%%%DOCSDIR%%/BasicThreadPool.txt %%PORTDOCS%%%%DOCSDIR%%/GF2.cpp.html diff --git a/math/octave-forge-datatypes/Makefile b/math/octave-forge-datatypes/Makefile index c31b360e3f20..56b7efa31d3e 100644 --- a/math/octave-forge-datatypes/Makefile +++ b/math/octave-forge-datatypes/Makefile @@ -1,6 +1,6 @@ PORTNAME= octave-forge-datatypes DISTVERSIONPREFIX= release- -DISTVERSION= 1.1.3 +DISTVERSION= 1.1.4 PORTEPOCH= 1 CATEGORIES= math diff --git a/math/octave-forge-datatypes/distinfo b/math/octave-forge-datatypes/distinfo index 6ddee6b6d258..9b92b9dbbafd 100644 --- a/math/octave-forge-datatypes/distinfo +++ b/math/octave-forge-datatypes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765577309 -SHA256 (octave-forge/pr0m1th3as-datatypes-release-1.1.3_GH0.tar.gz) = 9eb707cc8a3847cc62eb4ea73a93bf4d5bdd8e07045fb760c8ee614ae1c6c4eb -SIZE (octave-forge/pr0m1th3as-datatypes-release-1.1.3_GH0.tar.gz) = 335921 +TIMESTAMP = 1766172456 +SHA256 (octave-forge/pr0m1th3as-datatypes-release-1.1.4_GH0.tar.gz) = 96ee22096045e8e3269d73c095b8a06172ddbfb14907bbd6dae77b278cfeab35 +SIZE (octave-forge/pr0m1th3as-datatypes-release-1.1.4_GH0.tar.gz) = 336255 diff --git a/misc/qt5ct/Makefile b/misc/qt5ct/Makefile index 48146e305384..a5e6fbfeacc9 100644 --- a/misc/qt5ct/Makefile +++ b/misc/qt5ct/Makefile @@ -1,5 +1,5 @@ PORTNAME= qt5ct -DISTVERSION= 1.8 +DISTVERSION= 1.9 CATEGORIES= misc MASTER_SITES= SF/${PORTNAME} @@ -9,22 +9,17 @@ WWW= https://sourceforge.net/projects/qt5ct/ LICENSE= BSD2CLAUSE -LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 - -USES= cmake compiler:c++11-lang gettext-runtime gl gnome qt:5 \ - tar:bz2 xorg -USE_QT= concurrent core dbus gui paths svg widgets \ - buildtools:build linguisttools:build qmake:build -USE_GL= egl gl -USE_XORG= x11 xext xrender -USE_GNOME= glib20 +USES= cmake compiler:c++11-lang gl qt:5 tar:bz2 xorg +USE_QT= concurrent core dbus gui paths widgets \ + buildtools:build linguisttools:build qmake:build \ + svg:run +USE_GL= gl USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS post-install-DOCS-on: - ${MKDIR} ${STAGEDIR}/${DOCSDIR} && \ - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/misc/qt5ct/distinfo b/misc/qt5ct/distinfo index 77e24eacc32a..ec2557c36d73 100644 --- a/misc/qt5ct/distinfo +++ b/misc/qt5ct/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1697071130 -SHA256 (qt5ct-1.8.tar.bz2) = 23b74054415ea4124328772ef9a6f95083a9b86569e128034a3ff75dfad808e9 -SIZE (qt5ct-1.8.tar.bz2) = 85945 +TIMESTAMP = 1766255501 +SHA256 (qt5ct-1.9.tar.bz2) = dc10e6939d423b925981ce67febb1a015b6f61c022a9cc7e6c8b5efea4588bff +SIZE (qt5ct-1.9.tar.bz2) = 87416 diff --git a/misc/qt5ct/pkg-plist b/misc/qt5ct/pkg-plist index 65564c802436..4872ba691e2d 100644 --- a/misc/qt5ct/pkg-plist +++ b/misc/qt5ct/pkg-plist @@ -1,6 +1,6 @@ bin/qt5ct lib/libqt5ct-common.so -lib/libqt5ct-common.so.1.8 +lib/libqt5ct-common.so.1.9 %%QT_PLUGINDIR%%/platformthemes/libqt5ct.so %%QT_PLUGINDIR%%/styles/libqt5ct-style.so share/applications/qt5ct.desktop diff --git a/misc/qt6ct/Makefile b/misc/qt6ct/Makefile index 4ee6c8b1fb14..ed9197db83c7 100644 --- a/misc/qt6ct/Makefile +++ b/misc/qt6ct/Makefile @@ -20,7 +20,7 @@ USE_QT= base svg:run tools:build OPTIONS_DEFINE= DOCS post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}/${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}/${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> diff --git a/misc/zoneinfo/Makefile b/misc/zoneinfo/Makefile index 52d8f93e0903..a01a35977da8 100644 --- a/misc/zoneinfo/Makefile +++ b/misc/zoneinfo/Makefile @@ -1,5 +1,5 @@ PORTNAME= zoneinfo -DISTVERSION= 2025b +DISTVERSION= 2025c CATEGORIES= misc MASTER_SITES= https://data.iana.org/time-zones/releases/ \ ftp://ftp.iana.org/tz/releases/ diff --git a/misc/zoneinfo/distinfo b/misc/zoneinfo/distinfo index 62200bae4c8a..20476eca4f57 100644 --- a/misc/zoneinfo/distinfo +++ b/misc/zoneinfo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743813627 -SHA256 (tzdata2025b.tar.gz) = 11810413345fc7805017e27ea9fa4885fd74cd61b2911711ad038f5d28d71474 -SIZE (tzdata2025b.tar.gz) = 464295 +TIMESTAMP = 1766271924 +SHA256 (tzdata2025c.tar.gz) = 4aa79e4effee53fc4029ffe5f6ebe97937282ebcdf386d5d2da91ce84142f957 +SIZE (tzdata2025c.tar.gz) = 469363 diff --git a/misc/zoneinfo/files/patch-zone1970.tab b/misc/zoneinfo/files/patch-zone1970.tab index 5d285cc7b189..c35818fa05e8 100644 --- a/misc/zoneinfo/files/patch-zone1970.tab +++ b/misc/zoneinfo/files/patch-zone1970.tab @@ -1,12 +1,14 @@ ---- zone1970.tab.orig 2019-06-22 19:39:01 UTC +--- zone1970.tab.orig 2025-08-30 06:13:30 UTC +++ zone1970.tab -@@ -9,7 +9,8 @@ +@@ -7,9 +7,10 @@ + # civil timestamps have agreed since 1970. Columns are separated by + # a single tab. Lines beginning with ‘#’ are comments. All text uses # UTF-8 encoding. The columns of the table are as follows: - # +-# ++ # 1. The countries that overlap the timezone, as a comma-separated list --# of ISO 3166 2-character country codes. See the file 'iso3166.tab'. -+# of ISO 3166 2-character country codes. + # of ISO 3166 2-character country codes. +# See the file '/usr/share/misc/iso3166'. - # 2. Latitude and longitude of the timezone's principal location + # 2. Latitude and longitude of the timezone’s principal location # in ISO 6709 sign-degrees-minutes-seconds format, # either ±DDMM±DDDMM or ±DDMMSS±DDDMMSS, diff --git a/multimedia/kvazaar/Makefile b/multimedia/kvazaar/Makefile index 90a92c0bd480..6b9b696c03a4 100644 --- a/multimedia/kvazaar/Makefile +++ b/multimedia/kvazaar/Makefile @@ -1,11 +1,11 @@ PORTNAME= kvazaar +PORTVERSION= 2.3.2 DISTVERSIONPREFIX= v -DISTVERSION= 2.3.1 CATEGORIES= multimedia -MAINTAINER= ports@FreeBSD.org +MAINTAINER= danfe@FreeBSD.org COMMENT= H.265/HEVC encoder implemented in C -WWW= https://ultravideo.fi/#encoder_x +WWW= https://ultravideo.fi/kvazaar.html LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE diff --git a/multimedia/kvazaar/distinfo b/multimedia/kvazaar/distinfo index dce8db76b7a3..f2eb6eea656b 100644 --- a/multimedia/kvazaar/distinfo +++ b/multimedia/kvazaar/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1712745755 -SHA256 (ultravideo-kvazaar-v2.3.1_GH0.tar.gz) = c5a1699d0bd50bc6bdba485b3438a5681a43d7b2c4fd6311a144740bfa59c9cc -SIZE (ultravideo-kvazaar-v2.3.1_GH0.tar.gz) = 598516 +TIMESTAMP = 1758103669 +SHA256 (ultravideo-kvazaar-v2.3.2_GH0.tar.gz) = ddd0038696631ca5368d8e40efee36d2bbb805854b9b1dda8b12ea9b397ea951 +SIZE (ultravideo-kvazaar-v2.3.2_GH0.tar.gz) = 600315 SHA256 (silentbicycle-greatest-v1.0.0_GH0.tar.gz) = 18ee57a34869c6f6ce511cd71a5cc8661801cf69d64c4c66ff76773835df659b SIZE (silentbicycle-greatest-v1.0.0_GH0.tar.gz) = 11959 diff --git a/multimedia/kvazaar/pkg-plist b/multimedia/kvazaar/pkg-plist index 1e5081f4f598..8fb9db210a88 100644 --- a/multimedia/kvazaar/pkg-plist +++ b/multimedia/kvazaar/pkg-plist @@ -3,7 +3,7 @@ include/kvazaar.h lib/libkvazaar.a lib/libkvazaar.so lib/libkvazaar.so.7 -lib/libkvazaar.so.7.4.0 +lib/libkvazaar.so.7.5.0 libdata/pkgconfig/kvazaar.pc %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/LICENSE diff --git a/multimedia/libxine/Makefile b/multimedia/libxine/Makefile index e3f6a2d82ad7..b8ca9980f6d7 100644 --- a/multimedia/libxine/Makefile +++ b/multimedia/libxine/Makefile @@ -32,8 +32,15 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libogg.so:audio/libogg \ libdvdnav.so:multimedia/libdvdnav -EXTRA_PATCHES= ${FILESDIR}/ffmpeg8-1.patch:-p1 \ - ${FILESDIR}/ffmpeg8-2.patch:-p1 +# patch obtain via hg export -r <rev> +EXTRA_PATCHES= \ + ${FILESDIR}/771f4ae27e582123ff3500444718fc8f96186d74.patch:-p1 \ + ${FILESDIR}/0a786d63bbdb2d780a9231f6772e84e743c72014.patch:-p1 \ + ${FILESDIR}/6f1000084f6084f49c95c202d12593e49916f58b.patch:-p1 \ + ${FILESDIR}/1e7b184008860c8be2289c3cefd9dee57f06193a.patch:-p1 \ + ${FILESDIR}/73b833e7fe356cd2d9490dda4ebc9bfe16fce958.patch:-p1 \ + ${FILESDIR}/9bb3977ea7e2b652742b3cdd200b0a4a72eb48bc.patch:-p1 \ + ${FILESDIR}/a8fffd1193b2247c7f732d4df83dcc03fce96dbe.patch:-p1 USES= compiler cpe gl gmake gnome iconv libtool:keepla jpeg \ localbase pathfix perl5 pkgconfig tar:xz xorg diff --git a/multimedia/libxine/files/0a786d63bbdb2d780a9231f6772e84e743c72014.patch b/multimedia/libxine/files/0a786d63bbdb2d780a9231f6772e84e743c72014.patch new file mode 100644 index 000000000000..d792fbc858df --- /dev/null +++ b/multimedia/libxine/files/0a786d63bbdb2d780a9231f6772e84e743c72014.patch @@ -0,0 +1,67 @@ +# HG changeset patch +# User Torsten Jager <t.jager@gmx.de> +# Date 1675683900 -3600 +# Mon Feb 06 12:45:00 2023 +0100 +# Node ID 0a786d63bbdb2d780a9231f6772e84e743c72014 +# Parent b0a36ed8ec8f3f2de545502b93ec846561168b64 +Try to silence some cast align warnings 4. + +diff -r b0a36ed8ec8f -r 0a786d63bbdb src/combined/ffmpeg/ff_video_decoder.c +--- a/src/combined/ffmpeg/ff_video_decoder.c Mon Feb 06 12:44:55 2023 +0100 ++++ b/src/combined/ffmpeg/ff_video_decoder.c Mon Feb 06 12:45:00 2023 +0100 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2001-2022 the xine project ++ * Copyright (C) 2001-2023 the xine project + * + * This file is part of xine, a free video player. + * +@@ -1398,7 +1398,7 @@ + #if defined(AV_PIX_FMT_YUV420P9) || defined(AV_PIX_FMT_YUV420P10) + static void ff_get_deep_color (uint8_t *src, int sstride, uint8_t *dest, int dstride, + int width, int height, uint8_t *tab) { +- uint16_t *p = (uint16_t *) src; ++ uint16_t *p = (uint16_t *)ASSUME_ALIGNED_2 (src, 2); + uint8_t *q = dest; + int spad = sstride / 2 - width; + int dpad = dstride - width; +@@ -1804,22 +1804,24 @@ + #ifdef XFF_AVCODEC_SUB_ID + this->context->sub_id = _X_BE_32(&this->buf[30]); + #endif +- this->context->extradata_size = this->size - 26; +- if (this->context->extradata_size < 8) { +- this->context->extradata_size= 8; +- this->context->extradata = calloc(1, this->context->extradata_size + +- AV_INPUT_BUFFER_PADDING_SIZE); +- ((uint32_t *)this->context->extradata)[0] = 0; +- if (codec_type == BUF_VIDEO_RV10) +- ((uint32_t *)this->context->extradata)[1] = 0x10000000; +- else +- ((uint32_t *)this->context->extradata)[1] = 0x10003001; ++ if (this->size < 8 + 26) { ++ uint32_t *b = calloc (1, 8 + AV_INPUT_BUFFER_PADDING_SIZE); ++ if (b) { ++ this->context->extradata_size = 8; ++ this->context->extradata = (uint8_t *)b; ++ b[0] = 0; ++ if (codec_type == BUF_VIDEO_RV10) ++ b[1] = 0x10000000; ++ else ++ b[1] = 0x10003001; ++ } + } else { +- this->context->extradata = malloc(this->context->extradata_size + +- AV_INPUT_BUFFER_PADDING_SIZE); +- memcpy(this->context->extradata, this->buf + 26, +- this->context->extradata_size); +- memset(this->context->extradata + this->context->extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE); ++ this->context->extradata = malloc (this->size - 26 + AV_INPUT_BUFFER_PADDING_SIZE); ++ if (this->context->extradata) { ++ this->context->extradata_size = this->size - 26; ++ memcpy (this->context->extradata, this->buf + 26, this->context->extradata_size); ++ memset (this->context->extradata + this->context->extradata_size, 0, AV_INPUT_BUFFER_PADDING_SIZE); ++ } + } + + xprintf(this->stream->xine, XINE_VERBOSITY_LOG, diff --git a/multimedia/libxine/files/1e7b184008860c8be2289c3cefd9dee57f06193a.patch b/multimedia/libxine/files/1e7b184008860c8be2289c3cefd9dee57f06193a.patch new file mode 100644 index 000000000000..b6b4040a8478 --- /dev/null +++ b/multimedia/libxine/files/1e7b184008860c8be2289c3cefd9dee57f06193a.patch @@ -0,0 +1,475 @@ +# HG changeset patch +# User Torsten Jager <t.jager@gmx.de> +# Date 1715025355 -7200 +# Mon May 06 21:55:55 2024 +0200 +# Node ID 1e7b184008860c8be2289c3cefd9dee57f06193a +# Parent d1954d852980ddc887a67a9f1a26626909561ff5 +ffmpeg compatibility update 1. + +diff -r d1954d852980 -r 1e7b18400886 src/combined/ffmpeg/ff_audio_decoder.c +--- a/src/combined/ffmpeg/ff_audio_decoder.c Mon Apr 08 13:25:10 2024 +0200 ++++ b/src/combined/ffmpeg/ff_audio_decoder.c Mon May 06 21:55:55 2024 +0200 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2001-2023 the xine project ++ * Copyright (C) 2001-2024 the xine project + * + * This file is part of xine, a free video player. + * +@@ -67,6 +67,7 @@ + + xine_t *xine; + float gain; ++ int bitexact; + } ff_audio_class_t; + + typedef struct ff_audio_decoder_s { +@@ -188,14 +189,25 @@ + xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG, + "ffmpeg_audio_dec: found AAC ADTS syncword after %d bytes\n", i); + if (this->buftype == BUF_AUDIO_AAC_LATM) { ++ uint8_t *ed = NULL; ++ int es = 0; + xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG, + "ffmpeg_audio_dec: stream says LATM but is ADTS -> switching decoders\n"); +- if (this->decoder_ok) { +- pthread_mutex_lock (&ffmpeg_lock); +- avcodec_close (this->context); +- pthread_mutex_unlock (&ffmpeg_lock); +- this->decoder_ok = 0; ++ pthread_mutex_lock (&ffmpeg_lock); ++ if (this->context) { ++ ed = this->context->extradata; ++ es = this->context->extradata_size; ++ this->context->extradata = NULL; ++ this->context->extradata_size = 0; ++ XFF_FREE_CONTEXT (this->context); + } ++ this->decoder_ok = 0; ++ this->context = XFF_ALLOC_CONTEXT (); ++ if (this->context) { ++ this->context->extradata = ed; ++ this->context->extradata_size = es; ++ } ++ pthread_mutex_unlock (&ffmpeg_lock); + this->codec = NULL; + ff_audio_open_codec (this, BUF_AUDIO_AAC); + } +@@ -349,6 +361,11 @@ + return -1; + } + ++ if (this->class->bitexact) ++ this->context->flags |= CODEC_FLAG_BITEXACT; ++ else ++ this->context->flags &= ~CODEC_FLAG_BITEXACT; ++ + pthread_mutex_lock (&ffmpeg_lock); + if (XFF_AVCODEC_OPEN (this->context, this->codec) < 0) { + pthread_mutex_unlock (&ffmpeg_lock); +@@ -1377,9 +1394,21 @@ + } + #endif + pthread_mutex_lock (&ffmpeg_lock); +- avcodec_close (this->context); +- if (XFF_AVCODEC_OPEN (this->context, this->codec) < 0) ++ { ++ uint8_t *ed = this->context->extradata; ++ int es = this->context->extradata_size; ++ this->context->extradata = NULL; ++ this->context->extradata_size = 0; ++ XFF_FREE_CONTEXT (this->context); + this->decoder_ok = 0; ++ this->context = XFF_ALLOC_CONTEXT (); ++ if (this->context) { ++ this->context->extradata = ed; ++ this->context->extradata_size = es; ++ } ++ } ++ if (XFF_AVCODEC_OPEN (this->context, this->codec) >= 0) ++ this->decoder_ok = 1; + pthread_mutex_unlock (&ffmpeg_lock); + } + +@@ -1418,20 +1447,20 @@ + XFF_FREE_FRAME (this->av_frame); + } + #endif +- pthread_mutex_lock (&ffmpeg_lock); +- avcodec_close (this->context); +- pthread_mutex_unlock (&ffmpeg_lock); + } ++ pthread_mutex_lock (&ffmpeg_lock); ++ if (this->context) { ++ _x_freep (&this->context->extradata); ++ this->context->extradata_size = 0; ++ XFF_FREE_CONTEXT (this->context); ++ } ++ pthread_mutex_unlock (&ffmpeg_lock); + + ff_audio_output_close(this); + + xine_free_aligned (this->buf); + xine_free_aligned (this->decode_buffer); + +- _x_freep (&this->context->extradata); +- this->context->extradata_size = 0; +- XFF_FREE_CONTEXT (this->context); +- + XFF_PACKET_UNREF (this->avpkt); + + xine_pts_queue_delete (&this->pts_queue); +@@ -1513,6 +1542,12 @@ + free (this); + } + ++static void ff_bitexact_cb (void *user_data, xine_cfg_entry_t *entry) { ++ ff_audio_class_t *class = (ff_audio_class_t *)user_data; ++ ++ class->bitexact = entry->num_value; ++} ++ + void *init_audio_plugin (xine_t *xine, const void *data) { + + ff_audio_class_t *this ; +@@ -1540,5 +1575,12 @@ + 10, ff_gain_cb, this) + / (float)20); + ++ this->bitexact = xine->config->register_bool (xine->config, ++ "audio.processing.ffmpeg_bitexact", 0, ++ _("Let FFmpeg use precise but slower math"), ++ _("Get slightly better sound, at the expense of speed.\n" ++ "Takes effect with next stream."), ++ 10, ff_bitexact_cb, this); ++ + return this; + } +diff -r d1954d852980 -r 1e7b18400886 src/combined/ffmpeg/ff_video_decoder.c +--- a/src/combined/ffmpeg/ff_video_decoder.c Mon Apr 08 13:25:10 2024 +0200 ++++ b/src/combined/ffmpeg/ff_video_decoder.c Mon May 06 21:55:55 2024 +0200 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2001-2023 the xine project ++ * Copyright (C) 2001-2024 the xine project + * + * This file is part of xine, a free video player. + * +@@ -128,6 +128,7 @@ + + int64_t pts; + int64_t last_pts; ++ int64_t tagged_pts; + int video_step; + int reported_video_step; + uint8_t pts_tag_pass; +@@ -551,7 +552,9 @@ + # ifdef XFF_FRAME_AGE + av_frame->age = 1; + # endif ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE + av_frame->reordered_opaque = context->reordered_opaque; ++#endif + + ffsf = ffsf_new (this); + if (!ffsf) +@@ -862,7 +865,9 @@ + # endif + + /* take over pts for this frame to have it reordered */ ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE + av_frame->reordered_opaque = context->reordered_opaque; ++#endif + + return 0; + } +@@ -1142,9 +1147,13 @@ + if (this->codec->id == CODEC_ID_VC1 && + (!this->bih.biWidth || !this->bih.biHeight)) { + /* VC1 codec must be re-opened with correct width and height. */ +- avcodec_close(this->context); +- +- if (XFF_AVCODEC_OPEN (this->context, this->codec) < 0) { ++ if (this->context) { ++ _x_freep (&this->context->extradata); ++ this->context->extradata_size = 0; ++ XFF_FREE_CONTEXT (this->context); ++ } ++ this->context = XFF_ALLOC_CONTEXT (); ++ if (!(this->context && XFF_AVCODEC_OPEN (this->context, this->codec) >= 0)) { + pthread_mutex_unlock(&ffmpeg_lock); + xprintf (this->stream->xine, XINE_VERBOSITY_LOG, + _("ffmpeg_video_dec: couldn't open decoder (pass 2)\n")); +@@ -1211,6 +1220,11 @@ + /* dont want initial AV_NOPTS_VALUE here */ + this->context->reordered_opaque = 0; + #endif ++ ++#ifdef XFF_AVCODEC_FRAME_PTS ++ this->context->time_base.num = 1; ++ this->context->time_base.den = 90000 << 8; ++#endif + } + + #ifdef ENABLE_VAAPI +@@ -1959,7 +1973,26 @@ + return (pts * 256) | this->pts_tag_pass; + } + +-static int64_t ff_untag_pts (ff_video_decoder_t *this, int64_t pts) { ++static int64_t ff_untag_pts (ff_video_decoder_t *this, AVFrame *av_frame) { ++ int64_t pts; ++#if defined(XFF_AVCODEC_FRAME_PTS) ++ pts = (av_frame->pts != AV_NOPTS_VALUE) ? av_frame->pts : 0; ++# if defined(XFF_AVCODEC_REORDERED_OPAQUE) ++ /* paranoia !!! */ ++ if (pts != av_frame->reordered_opaque) { ++ xprintf (this->stream->xine, XINE_VERBOSITY_DEBUG, ++ LOG_MODULE ": WARNING: frame pts %" PRId64 " != reordered_opaque %" PRId64 ".\n", ++ pts, av_frame->reordered_opaque); ++ pts = av_frame->reordered_opaque; ++ } ++ av_frame->reordered_opaque = 0; ++# endif ++#elif defined(XFF_AVCODEC_REORDERED_OPAQUE) ++ pts = av_frame->reordered_opaque; ++ av_frame->reordered_opaque = 0; ++#else ++ pts = this->tagged_pts; ++#endif + if ((uint8_t)(pts & 0xff) == this->pts_tag_pass) { + /* restore sign. */ + return pts >> 8; +@@ -1984,7 +2017,9 @@ + this->avpkt->data = buf; + this->avpkt->size = buf_size; + this->avpkt->flags = AV_PKT_FLAG_KEY; +- ++# ifdef XFF_AVCODEC_FRAME_PTS ++ this->avpkt->pts = this->tagged_pts; ++# endif + # if XFF_PALETTE == 2 || XFF_PALETTE == 3 + if (buf && this->palette_changed) { + uint8_t *sd = av_packet_new_side_data (this->avpkt, AV_PKT_DATA_PALETTE, 256 * 4); +@@ -2094,9 +2129,14 @@ + #endif + + /* apply valid pts to first frame _starting_ thereafter only */ +- if (this->pts && !this->context->reordered_opaque) { +- this->context->reordered_opaque = +- this->av_frame->reordered_opaque = ff_tag_pts (this, this->pts); ++ if (this->pts && !this->tagged_pts) { ++ this->tagged_pts = ff_tag_pts (this, this->pts); ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE ++ this->context->reordered_opaque = this->av_frame->reordered_opaque = this->tagged_pts; ++#endif ++#ifdef XFF_AVCODEC_FRAME_PTS ++ this->av_frame->pts = this->tagged_pts; ++#endif + this->pts = 0; + } + +@@ -2207,9 +2247,11 @@ + img->top_field_first = this->av_frame->top_field_first; + + /* get back reordered pts */ +- img->pts = ff_untag_pts (this, this->av_frame->reordered_opaque); +- this->av_frame->reordered_opaque = 0; ++ img->pts = ff_untag_pts (this, this->av_frame); ++ this->tagged_pts = 0; ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE + this->context->reordered_opaque = 0; ++#endif + + if (this->av_frame->repeat_pict) + img->duration = this->video_step * 3 / 2; +@@ -2330,9 +2372,14 @@ + } + + if (this->size == 0) { ++ this->tagged_pts = ff_tag_pts (this, this->pts); + /* take over pts when we are about to buffer a frame */ +- this->av_frame->reordered_opaque = ff_tag_pts(this, this->pts); +- this->context->reordered_opaque = ff_tag_pts(this, this->pts); ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE ++ this->av_frame->reordered_opaque = this->context->reordered_opaque = this->tagged_pts; ++#endif ++#ifdef XFF_AVCODEC_FRAME_PTS ++ this->av_frame->pts = this->tagged_pts; ++#endif + this->pts = 0; + } + +@@ -2405,7 +2452,10 @@ + need_unref = 1; + #endif + /* reset consumed pts value */ +- this->context->reordered_opaque = ff_tag_pts(this, 0); ++ this->tagged_pts = ff_tag_pts (this, 0); ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE ++ this->context->reordered_opaque = this->tagged_pts; ++#endif + + if (err) { + +@@ -2439,10 +2489,14 @@ + ff_check_bufsize(this, this->size); + memmove (this->buf, &chunk_buf[offset], this->size); + chunk_buf = this->buf; +- + /* take over pts for next access unit */ +- this->av_frame->reordered_opaque = ff_tag_pts(this, this->pts); +- this->context->reordered_opaque = ff_tag_pts(this, this->pts); ++ this->tagged_pts = ff_tag_pts (this, this->pts); ++#ifdef XFF_AVCODEC_REORDERED_OPAQUE ++ this->av_frame->reordered_opaque = this->context->reordered_opaque = this->tagged_pts; ++#endif ++#ifdef XFF_AVCODEC_FRAME_PTS ++ this->av_frame->pts = this->tagged_pts; ++#endif + this->pts = 0; + } + } +@@ -2559,8 +2613,7 @@ + ff_convert_frame(this, img, this->av_frame); + } + +- img->pts = ff_untag_pts(this, this->av_frame->reordered_opaque); +- this->av_frame->reordered_opaque = 0; ++ img->pts = ff_untag_pts(this, this->av_frame); + + /* workaround for weird 120fps streams */ + if( video_step_to_use == 750 ) { +@@ -2600,8 +2653,7 @@ + this->output_format, + VO_BOTH_FIELDS|this->frame_flags); + /* set PTS to allow early syncing */ +- img->pts = ff_untag_pts(this, this->av_frame->reordered_opaque); +- this->av_frame->reordered_opaque = 0; ++ img->pts = ff_untag_pts(this, this->av_frame); + + img->duration = video_step_to_use; + +@@ -2783,7 +2835,7 @@ + ff_convert_frame (this, img, this->av_frame2); + } + +- img->pts = ff_untag_pts (this, this->av_frame2->reordered_opaque); ++ img->pts = ff_untag_pts (this, this->av_frame2); + + if (video_step_to_use == 750) + video_step_to_use = 0; +@@ -2903,7 +2955,9 @@ + if (this->decoder_ok) { + + pthread_mutex_lock(&ffmpeg_lock); +- avcodec_close (this->context); ++ _x_freep (&this->context->extradata); ++ this->context->extradata_size = 0; ++ XFF_FREE_CONTEXT (this->context); + pthread_mutex_unlock(&ffmpeg_lock); + + #ifdef ENABLE_DIRECT_RENDERING +@@ -2912,16 +2966,15 @@ + + this->stream->video_out->close(this->stream->video_out, this->stream); + this->decoder_ok = 0; ++ } else if (this->context) { ++ _x_freep (&this->context->extradata); ++ this->context->extradata_size = 0; ++ XFF_FREE_CONTEXT (this->context); + } + + if (this->slice_offset_table) + free (this->slice_offset_table); + +- if (this->context) { +- _x_freep (&this->context->extradata); +- this->context->extradata_size = 0; +- XFF_FREE_CONTEXT (this->context); +- } + + #if XFF_VIDEO > 1 + XFF_PACKET_UNREF (this->avpkt); +diff -r d1954d852980 -r 1e7b18400886 src/combined/ffmpeg/ffmpeg_compat.h +--- a/src/combined/ffmpeg/ffmpeg_compat.h Mon Apr 08 13:25:10 2024 +0200 ++++ b/src/combined/ffmpeg/ffmpeg_compat.h Mon May 06 21:55:55 2024 +0200 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2000-2022 the xine project ++ * Copyright (C) 2000-2024 the xine project + * + * This file is part of xine, a unix video player. + * +@@ -54,9 +54,16 @@ + #endif + + /* reordered_opaque appeared in libavcodec 51.68.0 */ +-#define XFF_AVCODEC_REORDERED_OPAQUE +-#if LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(51,68,0) +-# undef XFF_AVCODEC_REORDERED_OPAQUE ++#if LIBAVCODEC_VERSION_INT >= XFF_INT_VERSION(51,68,0) && LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(60,0,0) ++# define XFF_AVCODEC_REORDERED_OPAQUE ++#else ++# undef XFF_AVCODEC_REORDERED_OPAQUE ++#endif ++ ++#if LIBAVCODEC_VERSION_INT >= XFF_INT_VERSION(58,33,100) ++# define XFF_AVCODEC_FRAME_PTS ++#else ++# undef XFF_AVCODEC_FRAME_PTS + #endif + + /* colorspace and color_range were added before 52.29.0 */ +@@ -210,9 +217,11 @@ + #endif + + #if LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(55,63,100) +-# define XFF_FREE_CONTEXT(pp) do {av_free(pp); pp = NULL;} while (0) ++# define XFF_FREE_CONTEXT(pp) do {if (pp) avcodec_close (pp); av_free (pp); pp = NULL;} while (0) ++#elif LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(58,33,100) ++# define XFF_FREE_CONTEXT(pp) do {if (pp) avcodec_close (pp); avcodec_free_context (&(pp));} while (0) + #else +-# define XFF_FREE_CONTEXT(pp) avcodec_free_context(&(pp)) ++# define XFF_FREE_CONTEXT(pp) avcodec_free_context (&(pp)) + #endif + + #if LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(54,59,100) +@@ -303,4 +312,3 @@ + #endif /* defined(LIBAVCODEC_VERSION_INT) */ + + #endif /* XINE_AVCODEC_COMPAT_H */ +- +diff -r d1954d852980 -r 1e7b18400886 src/dxr3/ffmpeg_encoder.c +--- a/src/dxr3/ffmpeg_encoder.c Mon Apr 08 13:25:10 2024 +0200 ++++ b/src/dxr3/ffmpeg_encoder.c Mon May 06 21:55:55 2024 +0200 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2000-2022 the xine project ++ * Copyright (C) 2000-2024 the xine project + * + * This file is part of xine, a unix video player. + * +@@ -127,10 +127,8 @@ + unsigned char use_quantizer; + + if (this->context) { +- avcodec_close(this->context); +- free(this->context); ++ XFF_FREE_CONTEXT (this->context); + free(this->picture); +- this->context = NULL; + this->picture = NULL; + } + +@@ -344,10 +342,8 @@ + #if XFF_ENCVIDEO > 1 + XFF_PACKET_UNREF (this->pkt); + #endif +- avcodec_close(this->context); + XFF_FREE_CONTEXT (this->context); + free(this->picture); +- this->context = NULL; + this->picture = NULL; + } + return 1; diff --git a/multimedia/libxine/files/6f1000084f6084f49c95c202d12593e49916f58b.patch b/multimedia/libxine/files/6f1000084f6084f49c95c202d12593e49916f58b.patch new file mode 100644 index 000000000000..36b07bb7e0a0 --- /dev/null +++ b/multimedia/libxine/files/6f1000084f6084f49c95c202d12593e49916f58b.patch @@ -0,0 +1,161 @@ +# HG changeset patch +# User Torsten Jager <t.jager@gmx.de> +# Date 1675683905 -3600 +# Mon Feb 06 12:45:05 2023 +0100 +# Node ID 6f1000084f6084f49c95c202d12593e49916f58b +# Parent 0a786d63bbdb2d780a9231f6772e84e743c72014 +Try to silence some cast align warnings 5. + +diff -r 0a786d63bbdb -r 6f1000084f60 src/combined/ffmpeg/ff_audio_decoder.c +--- a/src/combined/ffmpeg/ff_audio_decoder.c Mon Feb 06 12:45:00 2023 +0100 ++++ b/src/combined/ffmpeg/ff_audio_decoder.c Mon Feb 06 12:45:05 2023 +0100 +@@ -796,7 +796,7 @@ + #define CLIP_16(v) ((v + 0x8000) & ~0xffff ? (v >> 31) ^ 0x7fff : v) + + static int ff_audio_decode (ff_audio_decoder_t *this) { +- int16_t *decode_buffer = (int16_t *)this->send.buf; ++ int16_t *decode_buffer = (int16_t *)ASSUME_ALIGNED_2 (this->send.buf, 2); + int consumed, got_frame = 0; + #if XFF_AUDIO >= 4 + float gain = this->class->gain; +@@ -871,13 +871,13 @@ + const stype *p1, *p2, *p3, *p4;\ + int i, sstep;\ + int8_t *x = idx;\ +- int16_t *dptr = (int16_t *)decode_buffer + dindx;\ ++ int16_t *dptr = decode_buffer + dindx;\ + if (planar) {\ +- p1 = (stype *)this->av_frame->extended_data[x[0]];\ ++ p1 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[0]], sizeof (stype));\ + if (!p1) break;\ + sstep = 1;\ + } else {\ +- p1 = (stype *)this->av_frame->extended_data[0];\ ++ p1 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype));\ + if (!p1) break;\ + p1 += x[0];\ + sstep = this->ff_channels;\ +@@ -893,10 +893,10 @@ + break;\ + }\ + if (planar) {\ +- p2 = (stype *)this->av_frame->extended_data[x[1]];\ ++ p2 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[1]], sizeof (stype));\ + if (!p2) break;\ + } else\ +- p2 = (stype *)this->av_frame->extended_data[0] + x[1];\ ++ p2 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype)) + x[1];\ + if (num == 2) {\ + for (i = 0; i < samples; i++) {\ + int32_t v = MIX_FIX(*p2);\ +@@ -911,10 +911,10 @@ + break;\ + }\ + if (planar) {\ +- p3 = (stype *)this->av_frame->extended_data[x[2]];\ ++ p3 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[2]], sizeof (stype));\ + if (!p3) break;\ + } else\ +- p3 = (stype *)this->av_frame->extended_data[0] + x[2];\ ++ p3 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype)) + x[2];\ + if (num == 3) {\ + for (i = 0; i < samples; i++) {\ + int32_t v = MIX_FIX(*p2);\ +@@ -931,10 +931,10 @@ + break;\ + }\ + if (planar) {\ +- p4 = (stype *)this->av_frame->extended_data[x[3]];\ ++ p4 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[3]], sizeof (stype));\ + if (!p4) break;\ + } else\ +- p4 = (stype *)this->av_frame->extended_data[0] + x[3];\ ++ p4 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype)) + x[3];\ + for (i = 0; i < samples; i++) {\ + int32_t v = MIX_FIX(*p2);\ + p2 += sstep;\ +@@ -1003,13 +1003,13 @@ + int i, sstep;\ + float gain3;\ + int8_t *x = idx;\ +- int16_t *dptr = (int16_t *)decode_buffer + dindx;\ ++ int16_t *dptr = decode_buffer + dindx;\ + if (planar) {\ +- p1 = (stype *)this->av_frame->extended_data[x[0]];\ ++ p1 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[0]], sizeof (stype));\ + if (!p1) break;\ + sstep = 1;\ + } else {\ +- p1 = (stype *)this->av_frame->extended_data[0];\ ++ p1 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype));\ + if (!p1) break;\ + p1 += x[0];\ + sstep = this->ff_channels;\ +@@ -1025,10 +1025,10 @@ + }\ + gain3 = gain * 0.7071;\ + if (planar) {\ +- p2 = (stype *)this->av_frame->extended_data[x[1]];\ ++ p2 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[1]], sizeof (stype));\ + if (!p2) break;\ + } else\ +- p2 = (stype *)this->av_frame->extended_data[0] + x[1];\ ++ p2 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype)) + x[1];\ + if (num == 2) {\ + for (i = 0; i < samples; i++) {\ + int32_t v = (*p1) * gain + (*p2) * gain3;\ +@@ -1040,10 +1040,10 @@ + break;\ + }\ + if (planar) {\ +- p3 = (stype *)this->av_frame->extended_data[x[2]];\ ++ p3 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[2]], sizeof (stype));\ + if (!p3) break;\ + } else\ +- p3 = (stype *)this->av_frame->extended_data[0] + x[2];\ ++ p3 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype)) + x[2];\ + if (num == 3) {\ + for (i = 0; i < samples; i++) {\ + int32_t v = (*p1) * gain + (*p2 + *p3) * gain3;\ +@@ -1056,10 +1056,10 @@ + break;\ + }\ + if (planar) {\ +- p4 = (stype *)this->av_frame->extended_data[x[3]];\ ++ p4 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[x[3]], sizeof (stype));\ + if (!p4) break;\ + } else\ +- p4 = (stype *)this->av_frame->extended_data[0] + x[3];\ ++ p4 = (stype *)ASSUME_ALIGNED_2 (this->av_frame->extended_data[0], sizeof (stype)) + x[3];\ + for (i = 0; i < samples; i++) {\ + int32_t v = (*p1) * gain + (*p2 + *p3 + *p4) * gain3;\ + p1 += sstep;\ +@@ -1240,8 +1240,8 @@ + /* the above codecs output float samples, not 16-bit integers */ + int samples = this->send.len / sizeof(float); + float gain = this->class->gain; +- float *p = (float *)this->decode_buffer; +- int16_t *q = (int16_t *)this->decode_buffer; ++ float *p = (float *)ASSUME_ALIGNED_2 (this->decode_buffer, 4); ++ int16_t *q = (int16_t *)ASSUME_ALIGNED_2 (this->decode_buffer, 2); + int i; + for (i = samples; i; i--) { + int v = *p++ * gain; +@@ -1255,7 +1255,7 @@ + int samples = this->send.len / (this->ff_channels * 2); + int channels = this->ao_channels; + int ff_channels = this->ff_channels; +- int16_t *p = (int16_t *)this->decode_buffer; ++ int16_t *p = (int16_t *)ASSUME_ALIGNED_2 (this->decode_buffer, 2); + int16_t *q = p; + int shift = this->downmix_shift, i, j; + /* downmix mono output to stereo first */ +@@ -1300,7 +1300,7 @@ + } + /* final mono downmix */ + if (channels > this->ao_channels) { +- p = (int16_t *)this->decode_buffer; ++ p = (int16_t *)ASSUME_ALIGNED_2 (this->decode_buffer, 2); + q = p; + for (i = samples; i; i--) { + int v = *p++; diff --git a/multimedia/libxine/files/73b833e7fe356cd2d9490dda4ebc9bfe16fce958.patch b/multimedia/libxine/files/73b833e7fe356cd2d9490dda4ebc9bfe16fce958.patch new file mode 100644 index 000000000000..136750404be2 --- /dev/null +++ b/multimedia/libxine/files/73b833e7fe356cd2d9490dda4ebc9bfe16fce958.patch @@ -0,0 +1,318 @@ +# HG changeset patch +# User Torsten Jager <t.jager@gmx.de> +# Date 1715160885 -7200 +# Wed May 08 11:34:45 2024 +0200 +# Node ID 73b833e7fe356cd2d9490dda4ebc9bfe16fce958 +# Parent 1e7b184008860c8be2289c3cefd9dee57f06193a +ffmpeg compatibility update 2. + +diff -r 1e7b18400886 -r 73b833e7fe35 src/combined/ffmpeg/ff_audio_decoder.c +--- a/src/combined/ffmpeg/ff_audio_decoder.c Mon May 06 21:55:55 2024 +0200 ++++ b/src/combined/ffmpeg/ff_audio_decoder.c Wed May 08 11:34:45 2024 +0200 +@@ -1393,6 +1393,9 @@ + XFF_FREE_FRAME (this->av_frame); + } + #endif ++#if 1 ++ avcodec_flush_buffers (this->context); ++#else + pthread_mutex_lock (&ffmpeg_lock); + { + uint8_t *ed = this->context->extradata; +@@ -1410,6 +1413,7 @@ + if (XFF_AVCODEC_OPEN (this->context, this->codec) >= 0) + this->decoder_ok = 1; + pthread_mutex_unlock (&ffmpeg_lock); ++#endif + } + + ff_audio_reset_parser(this); +diff -r 1e7b18400886 -r 73b833e7fe35 src/combined/ffmpeg/ff_video_decoder.c +--- a/src/combined/ffmpeg/ff_video_decoder.c Mon May 06 21:55:55 2024 +0200 ++++ b/src/combined/ffmpeg/ff_video_decoder.c Wed May 08 11:34:45 2024 +0200 +@@ -89,6 +89,11 @@ + # define ENABLE_EMMS + #endif + ++/* ++#undef XFF_AVCODEC_SLICE_TABLE ++#define XFF_AVCODEC_SLICE_TABLE 1 ++*/ ++ + #define VIDEOBUFSIZE (128*1024) + #define SLICE_BUFFER_SIZE (1194*1024) + +@@ -148,11 +153,11 @@ + int bufsize; + int size; + int skipframes; +- ++#if XFF_AVCODEC_SLICE_TABLE == 1 + int *slice_offset_table; + int slice_offset_size; + int slice_offset_pos; +- ++#endif + AVFrame *av_frame; + AVFrame *av_frame2; + AVCodecContext *context; +@@ -238,6 +243,13 @@ + #if XFF_VIDEO > 1 + XFF_PACKET_DECL (avpkt); + #endif ++ ++#if XFF_AVCODEC_SLICE_TABLE == 2 ++ uint8_t *temp_buf; ++ uint32_t temp_size; ++ int slice_num; ++ uint8_t slice_table[1 + 256 * 8]; ++#endif + }; + + /* import color matrix names */ +@@ -1783,10 +1795,9 @@ + this->size += buf->size; + + if (buf->decoder_flags & BUF_FLAG_FRAME_END) { +- int codec_type; ++ uint32_t codec_type = buf->type & 0xFFFF0000; + + lprintf ("header complete\n"); +- codec_type = buf->type & 0xFFFF0000; + + if (buf->decoder_flags & BUF_FLAG_STDHEADER) { + +@@ -1912,33 +1923,44 @@ + #endif + } + else if (buf->decoder_info[1] == BUF_SPECIAL_RV_CHUNK_TABLE) { +- /* o dear. Multiple decoding threads use individual contexts. +- av_decode_video2 () does only copy the _pointer_ to the offsets, +- not the offsets themselves. So we must not overwrite anything +- that another thread has not yet read. */ +- int i, l, total; +- +- lprintf("BUF_SPECIAL_RV_CHUNK_TABLE\n"); +- l = buf->decoder_info[2] + 1; +- +- total = l * this->class->thread_count; +- if (total < SLICE_OFFSET_SIZE) +- total = SLICE_OFFSET_SIZE; +- if (total > this->slice_offset_size) { +- this->slice_offset_table = realloc (this->slice_offset_table, total * sizeof (int)); +- this->slice_offset_size = total; +- } +- +- if (this->slice_offset_pos + l > this->slice_offset_size) +- this->slice_offset_pos = 0; +- this->context->slice_offset = this->slice_offset_table + this->slice_offset_pos; +- this->context->slice_count = l; +- +- lprintf ("slice_count=%d\n", l); +- for (i = 0; i < l; i++) { +- this->slice_offset_table[this->slice_offset_pos++] = +- ((uint32_t *)buf->decoder_info_ptr[2])[(2 * i) + 1]; +- lprintf("slice_offset[%d]=%d\n", i, this->context->slice_offset[i]); ++ { ++#if XFF_AVCODEC_SLICE_TABLE == 1 ++ /* o dear. Multiple decoding threads use individual contexts. ++ * av_decode_video2 () does only copy the _pointer_ to the offsets, ++ * not the offsets themselves. So we must not overwrite anything ++ * that another thread has not yet read. */ ++ int i, l, total; ++ ++ lprintf("BUF_SPECIAL_RV_CHUNK_TABLE\n"); ++ l = buf->decoder_info[2] + 1; ++ ++ total = l * this->class->thread_count; ++ if (total < SLICE_OFFSET_SIZE) ++ total = SLICE_OFFSET_SIZE; ++ if (total > this->slice_offset_size) { ++ this->slice_offset_table = realloc (this->slice_offset_table, total * sizeof (int)); ++ this->slice_offset_size = total; ++ } ++ ++ if (this->slice_offset_pos + l > this->slice_offset_size) ++ this->slice_offset_pos = 0; ++ this->context->slice_offset = this->slice_offset_table + this->slice_offset_pos; ++ this->context->slice_count = l; ++ ++ lprintf ("slice_count=%d\n", l); ++ for (i = 0; i < l; i++) { ++ this->slice_offset_table[this->slice_offset_pos++] = ++ ((uint32_t *)buf->decoder_info_ptr[2])[(2 * i) + 1]; ++ lprintf("slice_offset[%d]=%d\n", i, this->context->slice_offset[i]); ++ } ++#elif XFF_AVCODEC_SLICE_TABLE == 2 ++ /* (count-1):1, 1:4, (offs[0]):4, 1:4, (offs[1]:4, ... just in front of the frame bitstream. ++ * reverse engineered from ffmpeg/libavcodec/rv34.c. they seem to expect no ++ * external use of rv decoders, and did not document this. */ ++ this->slice_table[0] = buf->decoder_info[2]; ++ this->slice_num = this->slice_table[0] + 1; ++ memcpy (this->slice_table + 1, buf->decoder_info_ptr[2], 8 * this->slice_num); ++#endif + } + } + } +@@ -2004,6 +2026,7 @@ + + static int decode_video_wrapper (ff_video_decoder_t *this, + AVFrame *av_frame, int *err, void *buf, size_t buf_size) { ++ uint32_t tsize = 0; + int len; + + #if ENABLE_VAAPI +@@ -2013,9 +2036,32 @@ + } + #endif /* ENABLE_VAAPI */ + ++#if XFF_AVCODEC_SLICE_TABLE == 2 ++ if ((this->slice_num > 0) && buf) { ++ uint32_t nsize; ++ tsize = 1 + this->slice_num * 8; ++ nsize = tsize + buf_size + AV_INPUT_BUFFER_PADDING_SIZE; ++ if (this->temp_size < nsize) { ++ nsize = nsize * 3 / 2; ++ free (this->temp_buf); ++ this->temp_buf = malloc (nsize); ++ if (!this->temp_buf) ++ nsize = 0; ++ this->temp_size = nsize; ++ nsize = tsize + buf_size + AV_INPUT_BUFFER_PADDING_SIZE; ++ } ++ if (this->temp_size >= nsize) { ++ memcpy (this->temp_buf, this->slice_table, tsize); ++ memcpy (this->temp_buf + tsize, buf, buf_size + AV_INPUT_BUFFER_PADDING_SIZE); ++ buf = this->temp_buf; ++ } ++ this->slice_num = 0; ++ } ++#endif ++ + #if XFF_VIDEO > 1 + this->avpkt->data = buf; +- this->avpkt->size = buf_size; ++ this->avpkt->size = buf_size + tsize; + this->avpkt->flags = AV_PKT_FLAG_KEY; + # ifdef XFF_AVCODEC_FRAME_PTS + this->avpkt->pts = this->tagged_pts; +@@ -2486,7 +2532,6 @@ + this->size -= len; + + if (this->size > 0) { +- ff_check_bufsize(this, this->size); + memmove (this->buf, &chunk_buf[offset], this->size); + chunk_buf = this->buf; + /* take over pts for next access unit */ +@@ -2615,8 +2660,8 @@ + + img->pts = ff_untag_pts(this, this->av_frame); + +- /* workaround for weird 120fps streams */ +- if( video_step_to_use == 750 ) { ++ /* workaround for weird 120fps streams, as well as some rv20 with frame duration 3pts. */ ++ if (video_step_to_use <= 750) { + /* fallback to the VIDEO_PTS_MODE */ + video_step_to_use = 0; + } +@@ -2837,7 +2882,7 @@ + + img->pts = ff_untag_pts (this, this->av_frame2); + +- if (video_step_to_use == 750) ++ if (video_step_to_use <= 750) + video_step_to_use = 0; + img->duration = this->av_frame2->repeat_pict ? video_step_to_use * 3 / 2 : video_step_to_use; + img->progressive_frame = !this->av_frame2->interlaced_frame; +@@ -2941,6 +2986,9 @@ + mpeg_parser_reset(this->mpeg_parser); + + /* this->pts_tag_pass = 0; */ ++#if XFF_AVCODEC_SLICE_TABLE == 2 ++ this->slice_num = 0; ++#endif + } + + static void ff_dispose (video_decoder_t *this_gen) { +@@ -2953,12 +3001,15 @@ + rgb2yuy2_free (this->rgb2yuy2); + + if (this->decoder_ok) { ++ uint8_t *ed; + + pthread_mutex_lock(&ffmpeg_lock); +- _x_freep (&this->context->extradata); ++ ed = this->context->extradata; ++ this->context->extradata = NULL; + this->context->extradata_size = 0; + XFF_FREE_CONTEXT (this->context); + pthread_mutex_unlock(&ffmpeg_lock); ++ _x_freep (&ed); + + #ifdef ENABLE_DIRECT_RENDERING + ff_free_dr1_frames (this, 1); +@@ -2972,9 +3023,11 @@ + XFF_FREE_CONTEXT (this->context); + } + +- if (this->slice_offset_table) +- free (this->slice_offset_table); +- ++#if XFF_AVCODEC_SLICE_TABLE == 1 ++ free (this->slice_offset_table); ++#elif XFF_AVCODEC_SLICE_TABLE == 2 ++ free (this->temp_buf); ++#endif + + #if XFF_VIDEO > 1 + XFF_PACKET_UNREF (this->avpkt); +@@ -3062,21 +3115,25 @@ + this->decoder_ok = 0; + this->aspect_ratio = 0; + this->pts_tag_pass = 0; +-#ifdef HAVE_POSTPROC ++# ifdef HAVE_POSTPROC + this->pp_quality = 0; + this->our_context = NULL; + this->our_mode = NULL; +-#endif ++# endif + this->mpeg_parser = NULL; + this->set_stream_info = 0; + this->rgb2yuy2 = NULL; +-#ifdef ENABLE_VAAPI ++# ifdef ENABLE_VAAPI + this->accel = NULL; + this->accel_img = NULL; +-#endif +-#if XFF_VIDEO == 3 ++# endif ++# if XFF_VIDEO == 3 + this->flush_packet_sent = 0; +-#endif ++# endif ++# if XFF_AVCODEC_SLICE_TABLE == 2 ++ this->temp_size = 0; ++ this->temp_buf = NULL; ++# endif + #endif + + this->video_decoder.decode_data = ff_decode_data; +diff -r 1e7b18400886 -r 73b833e7fe35 src/combined/ffmpeg/ffmpeg_compat.h +--- a/src/combined/ffmpeg/ffmpeg_compat.h Mon May 06 21:55:55 2024 +0200 ++++ b/src/combined/ffmpeg/ffmpeg_compat.h Wed May 08 11:34:45 2024 +0200 +@@ -139,6 +139,14 @@ + # define XFF_PALETTE 3 + #endif + ++#if LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(59,42,100) ++/* AVCodecContext.slice_{offset,count} */ ++# define XFF_AVCODEC_SLICE_TABLE 1 ++#else ++/* inline offset table before the frame. */ ++# define XFF_AVCODEC_SLICE_TABLE 2 ++#endif ++ + #if LIBAVCODEC_VERSION_INT < XFF_INT_VERSION(59,0,100) /** << revise this */ + # define XFF_VAAPI 1 /** << libavcodec/vaapi.h */ + #else diff --git a/multimedia/libxine/files/patch-src_combined_ffmpeg_ff__audio__decoder.c b/multimedia/libxine/files/771f4ae27e582123ff3500444718fc8f96186d74.patch index 2108a84e9540..11056aa8cdbf 100644 --- a/multimedia/libxine/files/patch-src_combined_ffmpeg_ff__audio__decoder.c +++ b/multimedia/libxine/files/771f4ae27e582123ff3500444718fc8f96186d74.patch @@ -1,5 +1,50 @@ ---- src/combined/ffmpeg/ff_audio_decoder.c.orig 2022-09-08 21:43:29 UTC -+++ src/combined/ffmpeg/ff_audio_decoder.c +# HG changeset patch +# User Torsten Jager <t.jager@gmx.de> +# Date 1674929040 -3600 +# Sat Jan 28 19:04:00 2023 +0100 +# Node ID 771f4ae27e582123ff3500444718fc8f96186d74 +# Parent 250f1c09f4244c3e7ca7d414410c57bd387792c3 +ffmpeg compatibility update. + +diff -r 250f1c09f424 -r 771f4ae27e58 src/combined/ffmpeg/demux_avformat.c +--- a/src/combined/ffmpeg/demux_avformat.c Wed Jan 25 17:03:55 2023 +0100 ++++ b/src/combined/ffmpeg/demux_avformat.c Sat Jan 28 19:04:00 2023 +0100 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2013-2022 the xine project ++ * Copyright (C) 2013-2023 the xine project + * Copyright (C) 2013-2020 Petri Hintukainen <phintuka@users.sourceforge.net> + * + * This file is part of xine, a free video player. +@@ -423,8 +423,13 @@ + } + + #ifdef XFF_CODECPAR ++# if XFF_AUDIO_CHANNEL_LAYOUT < 2 + if (st->codecpar && st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && + st->codecpar->sample_rate != 0 && st->codecpar->channels != 0) ++# else ++ if (st->codecpar && st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && ++ st->codecpar->sample_rate != 0 && st->codecpar->ch_layout.nb_channels != 0) ++# endif + #else + if (st->codec && st->codec->codec_type == AVMEDIA_TYPE_AUDIO && + st->codec->sample_rate != 0 && st->codec->channels != 0) +@@ -501,7 +506,11 @@ + buf->size = extradata_size + sizeof(xine_waveformatex); + buf->decoder_info[1] = ctx->sample_rate; + buf->decoder_info[2] = ctx->bits_per_coded_sample; ++#if XFF_AUDIO_CHANNEL_LAYOUT < 2 + buf->decoder_info[3] = ctx->channels; ++#else ++ buf->decoder_info[3] = ctx->ch_layout.nb_channels; ++#endif + buf->decoder_flags = BUF_FLAG_HEADER | BUF_FLAG_STDHEADER | BUF_FLAG_FRAME_END; + + this->stream->audio_fifo->put (this->stream->audio_fifo, buf); +diff -r 250f1c09f424 -r 771f4ae27e58 src/combined/ffmpeg/ff_audio_decoder.c +--- a/src/combined/ffmpeg/ff_audio_decoder.c Wed Jan 25 17:03:55 2023 +0100 ++++ b/src/combined/ffmpeg/ff_audio_decoder.c Sat Jan 28 19:04:00 2023 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2001-2022 the xine project @@ -7,7 +52,7 @@ * * This file is part of xine, a free video player. * -@@ -303,7 +303,11 @@ static void ff_audio_init_codec(ff_audio_decoder_t *th +@@ -303,7 +303,11 @@ this->context->bits_per_sample = this->ff_bits; this->context->sample_rate = this->ff_sample_rate; @@ -19,7 +64,7 @@ this->context->codec_id = this->codec->id; this->context->codec_type = this->codec->type; this->context->codec_tag = _x_stream_info_get(this->stream, XINE_STREAM_INFO_AUDIO_FOURCC); -@@ -527,17 +531,76 @@ static void ff_audio_output_close(ff_audio_decoder_t * +@@ -527,16 +531,75 @@ this->ao_mode = 0; } @@ -49,11 +94,10 @@ +# ifdef AV_CH_FRONT_LEFT ff_map = this->context->channel_layout; if (!ff_map) /* wma2 bug */ --#endif +# endif - ff_map = ((uint64_t)1 << this->context->channels) - 1; ++ ff_map = ((uint64_t)1 << this->context->channels) - 1; + ff_num = ff_list_channels (ff_list, ff_map); - ++ +#else /* XFF_AUDIO_CHANNEL_LAYOUT == 2 */ + + ff_num = this->context->ch_layout.nb_channels; @@ -93,12 +137,12 @@ + ff_num = ff_list_channels (ff_list, ff_map); + } + -+#endif -+ + #endif +- ff_map = ((uint64_t)1 << this->context->channels) - 1; + if ((caps != this->ao_caps) || (ff_map != this->ff_map)) { unsigned int i, j; - /* ff: see names[] below; xine: L R RL RR C LFE */ -@@ -562,7 +625,7 @@ static void ff_map_channels (ff_audio_decoder_t *this) +@@ -562,7 +625,7 @@ this->ao_caps = caps; this->ff_map = ff_map; @@ -107,7 +151,7 @@ /* silence out */ for (i = 0; i < MAX_CHANNELS; i++) -@@ -576,20 +639,23 @@ static void ff_map_channels (ff_audio_decoder_t *this) +@@ -576,20 +639,23 @@ this->left[0] = this->right[0] = 0; tries = wishlist + 0 * num_modes; } else if (this->ff_channels == 2) { /* stereo */ @@ -139,7 +183,7 @@ } this->left[0] = this->map[0] < 0 ? 0 : this->map[0]; this->map[0] = -1; -@@ -641,8 +707,8 @@ static void ff_map_channels (ff_audio_decoder_t *this) +@@ -641,8 +707,8 @@ "rear center", "side left", "side right" }; diff --git a/multimedia/libxine/files/ffmpeg8-1.patch b/multimedia/libxine/files/9bb3977ea7e2b652742b3cdd200b0a4a72eb48bc.patch index be5805b82061..1b5b5aa78e3f 100644 --- a/multimedia/libxine/files/ffmpeg8-1.patch +++ b/multimedia/libxine/files/9bb3977ea7e2b652742b3cdd200b0a4a72eb48bc.patch @@ -9,6 +9,13 @@ FFmpeg compatibilty update. diff -r 9e326869fe0f -r 9bb3977ea7e2 src/combined/ffmpeg/ff_video_decoder.c --- a/src/combined/ffmpeg/ff_video_decoder.c Sat May 31 15:55:00 2025 +0200 +++ b/src/combined/ffmpeg/ff_video_decoder.c Sat Sep 13 10:59:45 2025 +0200 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2001-2024 the xine project ++ * Copyright (C) 2001-2025 the xine project + * + * This file is part of xine, a free video player. + * @@ -60,6 +60,10 @@ #include "ffmpeg_compat.h" @@ -91,6 +98,13 @@ diff -r 9e326869fe0f -r 9bb3977ea7e2 src/combined/ffmpeg/ff_video_decoder.c diff -r 9e326869fe0f -r 9bb3977ea7e2 src/combined/ffmpeg/ffmpeg_compat.h --- a/src/combined/ffmpeg/ffmpeg_compat.h Sat May 31 15:55:00 2025 +0200 +++ b/src/combined/ffmpeg/ffmpeg_compat.h Sat Sep 13 10:59:45 2025 +0200 +@@ -1,5 +1,5 @@ + /* +- * Copyright (C) 2000-2024 the xine project ++ * Copyright (C) 2000-2025 the xine project + * + * This file is part of xine, a unix video player. + * @@ -319,4 +319,20 @@ # error avcodec.h must be included first ! #endif /* defined(LIBAVCODEC_VERSION_INT) */ diff --git a/multimedia/libxine/files/ffmpeg8-2.patch b/multimedia/libxine/files/a8fffd1193b2247c7f732d4df83dcc03fce96dbe.patch index dffc575f70cd..dffc575f70cd 100644 --- a/multimedia/libxine/files/ffmpeg8-2.patch +++ b/multimedia/libxine/files/a8fffd1193b2247c7f732d4df83dcc03fce96dbe.patch diff --git a/multimedia/libxine/files/patch-src_combined_ffmpeg_demux__avformat.c b/multimedia/libxine/files/patch-src_combined_ffmpeg_demux__avformat.c deleted file mode 100644 index 954c65f363e8..000000000000 --- a/multimedia/libxine/files/patch-src_combined_ffmpeg_demux__avformat.c +++ /dev/null @@ -1,35 +0,0 @@ ---- src/combined/ffmpeg/demux_avformat.c.orig 2022-09-08 21:43:29 UTC -+++ src/combined/ffmpeg/demux_avformat.c -@@ -1,5 +1,5 @@ - /* -- * Copyright (C) 2013-2022 the xine project -+ * Copyright (C) 2013-2023 the xine project - * Copyright (C) 2013-2020 Petri Hintukainen <phintuka@users.sourceforge.net> - * - * This file is part of xine, a free video player. -@@ -423,8 +423,13 @@ static int find_avformat_streams(avformat_demux_plugin - } - - #ifdef XFF_CODECPAR -+# if XFF_AUDIO_CHANNEL_LAYOUT < 2 - if (st->codecpar && st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && - st->codecpar->sample_rate != 0 && st->codecpar->channels != 0) -+# else -+ if (st->codecpar && st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO && -+ st->codecpar->sample_rate != 0 && st->codecpar->ch_layout.nb_channels != 0) -+# endif - #else - if (st->codec && st->codec->codec_type == AVMEDIA_TYPE_AUDIO && - st->codec->sample_rate != 0 && st->codec->channels != 0) -@@ -501,7 +506,11 @@ static void send_headers_audio(avformat_demux_plugin_t - buf->size = extradata_size + sizeof(xine_waveformatex); - buf->decoder_info[1] = ctx->sample_rate; - buf->decoder_info[2] = ctx->bits_per_coded_sample; -+#if XFF_AUDIO_CHANNEL_LAYOUT < 2 - buf->decoder_info[3] = ctx->channels; -+#else -+ buf->decoder_info[3] = ctx->ch_layout.nb_channels; -+#endif - buf->decoder_flags = BUF_FLAG_HEADER | BUF_FLAG_STDHEADER | BUF_FLAG_FRAME_END; - - this->stream->audio_fifo->put (this->stream->audio_fifo, buf); diff --git a/multimedia/minisatip/Makefile b/multimedia/minisatip/Makefile index 850d35d5a81d..0b4ddbb34649 100644 --- a/multimedia/minisatip/Makefile +++ b/multimedia/minisatip/Makefile @@ -1,5 +1,5 @@ PORTNAME= minisatip -PORTVERSION= 2.0.43 +PORTVERSION= 2.0.45 DISTVERSIONPREFIX= v PORTEPOCH= 1 CATEGORIES= multimedia diff --git a/multimedia/minisatip/distinfo b/multimedia/minisatip/distinfo index 84655c23941c..3c165a9b4a5d 100644 --- a/multimedia/minisatip/distinfo +++ b/multimedia/minisatip/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764787919 -SHA256 (catalinii-minisatip-v2.0.43_GH0.tar.gz) = 8c2fae9abf2950333f86e59b96a49789772a8eea2e3e62b1e977df04cfa38710 -SIZE (catalinii-minisatip-v2.0.43_GH0.tar.gz) = 1645266 +TIMESTAMP = 1766133944 +SHA256 (catalinii-minisatip-v2.0.45_GH0.tar.gz) = 2a6c65b95bb023fe340e586078f4d64a5e64a50300f5f55c560d2925fdfee2ea +SIZE (catalinii-minisatip-v2.0.45_GH0.tar.gz) = 1644611 diff --git a/multimedia/qt6-multimedia/files/patch-src_multimedia_pipewire_qpipewire__propertydict.cpp b/multimedia/qt6-multimedia/files/patch-src_multimedia_pipewire_qpipewire__propertydict.cpp new file mode 100644 index 000000000000..35699524d9bf --- /dev/null +++ b/multimedia/qt6-multimedia/files/patch-src_multimedia_pipewire_qpipewire__propertydict.cpp @@ -0,0 +1,16 @@ +Fix build on i386. + +error: non-constant-expression cannot be narrowed from type 'uint32_t' (aka +'unsigned int') to 'qsizetype' (aka 'int') in initializer list + +--- src/multimedia/pipewire/qpipewire_propertydict.cpp.orig 2025-11-13 22:23:51 UTC ++++ src/multimedia/pipewire/qpipewire_propertydict.cpp +@@ -31,7 +31,7 @@ PwPropertyDict toPropertyDict(const spa_dict &dict) + + PwPropertyDict toPropertyDict(const spa_dict &dict) + { +- QSpan<const spa_dict_item> items{ dict.items, dict.n_items }; ++ QSpan<const spa_dict_item> items{ dict.items, static_cast<qsizetype>(dict.n_items) }; + + PwPropertyDict map; + for (const spa_dict_item &item : items) diff --git a/multimedia/qt6-multimedia/files/patch-src_multimedia_pipewire_qpipewire__support.cpp b/multimedia/qt6-multimedia/files/patch-src_multimedia_pipewire_qpipewire__support.cpp new file mode 100644 index 000000000000..d2fddc373701 --- /dev/null +++ b/multimedia/qt6-multimedia/files/patch-src_multimedia_pipewire_qpipewire__support.cpp @@ -0,0 +1,16 @@ +Fix build on i386. + +error: non-constant-expression cannot be narrowed from type 'uint32_t' (aka +'unsigned int') to 'qsizetype' (aka 'int') in initializer list + +--- src/multimedia/pipewire/qpipewire_support.cpp.orig 2025-11-13 22:23:51 UTC ++++ src/multimedia/pipewire/qpipewire_support.cpp +@@ -16,7 +16,7 @@ QDebug operator<<(QDebug dbg, const spa_dict &dict) + // debug support + QDebug operator<<(QDebug dbg, const spa_dict &dict) + { +- QSpan<const spa_dict_item> items{ dict.items, dict.n_items }; ++ QSpan<const spa_dict_item> items{ dict.items, static_cast<qsizetype>(dict.n_items) }; + + QDebugStateSaver saver(dbg); + dbg.nospace(); diff --git a/multimedia/qt6-multimedia/files/patch-src_plugins_multimedia_ffmpeg_CMakeLists.txt b/multimedia/qt6-multimedia/files/patch-src_plugins_multimedia_ffmpeg_CMakeLists.txt index e8ba5dbeb30e..4ac8d13cf740 100644 --- a/multimedia/qt6-multimedia/files/patch-src_plugins_multimedia_ffmpeg_CMakeLists.txt +++ b/multimedia/qt6-multimedia/files/patch-src_plugins_multimedia_ffmpeg_CMakeLists.txt @@ -1,6 +1,6 @@ ---- src/plugins/multimedia/ffmpeg/CMakeLists.txt.orig 2025-08-15 19:16:13 UTC +--- src/plugins/multimedia/ffmpeg/CMakeLists.txt.orig 2025-11-13 22:23:51 UTC +++ src/plugins/multimedia/ffmpeg/CMakeLists.txt -@@ -92,7 +92,7 @@ qt_internal_add_module(FFmpegMediaPluginImplPrivate +@@ -94,7 +94,7 @@ qt_internal_add_module(FFmpegMediaPluginImplPrivate ../../../3rdparty/signalsmith-stretch ) diff --git a/multimedia/x264/Makefile b/multimedia/x264/Makefile index 97a5a4643de4..b9dd3cdb4c03 100644 --- a/multimedia/x264/Makefile +++ b/multimedia/x264/Makefile @@ -26,6 +26,8 @@ MAINTAINER= bofh@FreeBSD.org COMMENT?= H.264/MPEG-4 AVC Video Encoding (Front End CLI) WWW= https://www.videolan.org/x264.html +EXTRA_PATCHES= ${FILESDIR}/32c3b801191522961102d4bea292cdb61068d0dd.patch:-p1 + LICENSE= GPLv2 LICENSE_NAME_PGO= PGO LICENSE_FILE= ${WRKSRC}/COPYING diff --git a/multimedia/x264/files/32c3b801191522961102d4bea292cdb61068d0dd.patch b/multimedia/x264/files/32c3b801191522961102d4bea292cdb61068d0dd.patch new file mode 100644 index 000000000000..31ea7fc63bd6 --- /dev/null +++ b/multimedia/x264/files/32c3b801191522961102d4bea292cdb61068d0dd.patch @@ -0,0 +1,38 @@ +From 32c3b801191522961102d4bea292cdb61068d0dd Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st> +Date: Fri, 4 Apr 2025 16:59:34 +0300 +Subject: [PATCH] lavf: Update the code to work with the latest libavutil API + +--- + input/lavf.c | 6 ++++++ + 1 file changed, 6 insertions(+) + +diff --git a/input/lavf.c b/input/lavf.c +index 90f4cec5..e2489963 100644 +--- a/input/lavf.c ++++ b/input/lavf.c +@@ -33,6 +33,7 @@ + #include <libavutil/error.h> + #include <libavutil/mem.h> + #include <libavutil/pixdesc.h> ++#include <libavutil/version.h> + + #define FAIL_IF_ERROR( cond, ... ) FAIL_IF_ERR( cond, "lavf", __VA_ARGS__ ) + +@@ -141,8 +142,13 @@ static int read_frame_internal( cli_pic_t *p_pic, lavf_hnd_t *h, int i_frame, vi + if( info ) + { + info->fullrange = is_fullrange; ++#if LIBAVUTIL_VERSION_MAJOR < 60 + info->interlaced = h->frame->interlaced_frame; + info->tff = h->frame->top_field_first; ++#else ++ info->interlaced = !!(h->frame->flags & AV_FRAME_FLAG_INTERLACED); ++ info->tff = !!(h->frame->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST); ++#endif + } + + if( h->vfr_input ) +-- +GitLab + diff --git a/net-mgmt/netdata/Makefile b/net-mgmt/netdata/Makefile index fb9051d99af2..3507db8482e2 100644 --- a/net-mgmt/netdata/Makefile +++ b/net-mgmt/netdata/Makefile @@ -1,7 +1,6 @@ PORTNAME= netdata DISTVERSIONPREFIX= v -DISTVERSION= 2.8.1 -PORTREVISION= 1 +DISTVERSION= 2.8.4 CATEGORIES= net-mgmt MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${DISTVERSION}/:netdata \ https://raw.githubusercontent.com/netdata/netdata/refs/tags/v${DISTVERSION}/src/go/:goplugin \ @@ -76,7 +75,7 @@ NETDATA_CACHE= /var/cache/${PORTNAME} NETDATA_LOG= /var/log/${PORTNAME} NETDATA_PERST= /var/db/${PORTNAME} NETDATA_RUN= /var/run/${PORTNAME} -NETDATA_DASHBOARD_VERSION= 20251122 +NETDATA_DASHBOARD_VERSION= 20251215 PLIST_SUB= NETDATA_CACHE=${NETDATA_CACHE} \ NETDATA_LOG=${NETDATA_LOG} \ diff --git a/net-mgmt/netdata/distinfo b/net-mgmt/netdata/distinfo index 87b481c0f715..e7d1a6296e72 100644 --- a/net-mgmt/netdata/distinfo +++ b/net-mgmt/netdata/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1763851420 -SHA256 (netdata/netdata-v2.8.1.tar.gz) = 373b61241d5cc80addeb0cc6c9f434abf363333081056a7d7ba6ea1f46ba6f06 -SIZE (netdata/netdata-v2.8.1.tar.gz) = 16478236 -SHA256 (netdata/agent_20251122.tar.gz) = e739127f33bb8065d6baef09f8f9cbd55a16b9e99be11afafd58da76ff8496ef -SIZE (netdata/agent_20251122.tar.gz) = 13569484 +TIMESTAMP = 1766178982 +SHA256 (netdata/netdata-v2.8.4.tar.gz) = 9bc469ff57edb4464864a8b463e509b5676888b1e2d71c4179f4c65e5eab510a +SIZE (netdata/netdata-v2.8.4.tar.gz) = 16490482 +SHA256 (netdata/agent_20251215.tar.gz) = 886bf704a7bca0169a4205c7092fcde604907a1a0bc5e8fa79953df2bf31c0b3 +SIZE (netdata/agent_20251215.tar.gz) = 16562632 SHA256 (netdata/go.mod) = ff9e904bc031b267f3a1ace6ef1970f052873e27ac257976af76075649b98677 SIZE (netdata/go.mod) = 8469 diff --git a/net-mgmt/netdata/pkg-plist b/net-mgmt/netdata/pkg-plist index 6c811bbb687a..ef00135fb0c5 100644 --- a/net-mgmt/netdata/pkg-plist +++ b/net-mgmt/netdata/pkg-plist @@ -575,143 +575,141 @@ sbin/systemd-cat-native %%DASHBOARD%%%%DATADIR%%/web/registry-hello.html %%DASHBOARD%%%%DATADIR%%/web/static/splash.css %%DASHBOARD%%%%DATADIR%%/web/v3/.well-known/assetlinks.json -%%DASHBOARD%%%%DATADIR%%/web/v3/1220.0c035c26a6ba7680115b.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1368.19c1bff2c401faaa738c.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1608.63365f1b0cb024d69e67.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1658.bf72c4c052144d61a66b.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1688.79b083d3cd0d3c26cf16.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1736.04dc032fb0edf1016b2c.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/180.8c8d951273b3504af9f0.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1861.e9b1462ff49ae587c199.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1910.1d344b2c015534876f6f.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1975.ab65e7c5f1b2c6a6aa9b.js -%%DASHBOARD%%%%DATADIR%%/web/v3/1975.ab65e7c5f1b2c6a6aa9b.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/2003.8c22a882463ac7bc7efe.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2108.bedba8e4ed2986aa5d96.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2117.018285cf616da5e909c2.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2143.630d9e70533287c91922.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2177.46bc7dfa408eae510818.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2201.e0a00df722bee40783b8.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2248.9b795f4f0a3a41b76758.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2420.793639ada312f51d09e4.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2436.e3a7244e896337301c59.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2439.41110167280a0c0da0e2.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2558.b9b4dfc9743e40090a4e.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2573.7525c33fb3d0ca8a28d5.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2576.8fb2f6ce8cc77fd56801.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1024.8ba6262dd37f62e8cf9a.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1220.51251801b0cd6fc53c1f.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1354.bc7bc0f42992e31ca533.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1354.bc7bc0f42992e31ca533.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/1646.5afdb407f6806a76d167.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1658.85e41b6525bfe701d595.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1736.c39c6f027fa2b2648d00.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/180.bdc222b3b2a1f7bfae64.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1811.80b20efbb38ab36acf49.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1861.9081faae8dc2e5f42880.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1910.aa1bae327930728fc846.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1975.e0f4a689c9194da77b42.js +%%DASHBOARD%%%%DATADIR%%/web/v3/1975.e0f4a689c9194da77b42.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/2003.beb88a3a60b00dd02639.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2108.8c4693350e92a987785c.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2117.556697628ab0ce0f51b2.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2143.bf8feb264171ce59ee58.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2177.%%PYTHON_SUFFIX%%3a31caa24200c1f32.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2201.0958e54c6f9c5330add5.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2248.18b187ede523a9fa61e9.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2436.9066b1b9cbd2763a52ef.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2439.97cde678185b41d93ab1.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2558.ab26a5071d61d04d1870.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2573.cafdf3d7e2eb26eb4b44.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2576.b7e5d58293b9aee69bfd.chunk.js %%DASHBOARD%%%%DATADIR%%/web/v3/2576.eaad527ad5b2c56e97a0.css -%%DASHBOARD%%%%DATADIR%%/web/v3/2599.78d590551d5a0a98fed0.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2599.78d590551d5a0a98fed0.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/2603.77f7c19e6480c47bc740.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2634.ea00483b1dff8321e543.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/271.e7aefcc74837998c0484.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2904.57f6519b0c503b96c0ea.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/2948.c4e34cab49a3602d9c61.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3083.983abf4bb8b2f8707262.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3185.eebe271edd583b2b95d5.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3427.36b16bb36c3ec9ef50ea.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3427.36b16bb36c3ec9ef50ea.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/3439.a1a5bc8c115b8089c0c1.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3457.3e3406b02f5f4284cbf4.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/35.05706012502a97d1b8f3.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3545.03398fd9061f762de49c.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3600.c630e33afa7e97d9c9f3.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/363.0d6b9dadfe9fea76f0b1.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3677.c756a188963a5b5c48d5.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3718.348fd49027ac26055d9a.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3808.268f52b93602c8e9aa15.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3864.db78bcb2aa320d51fd17.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3961.41c7a0551e7cdb95ce77.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/3961.41c7a0551e7cdb95ce77.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/399.52016e3f953a256adf90.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2599.504d1ccc532aa9213fec.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2599.504d1ccc532aa9213fec.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/2634.d30b4687ae7b385f8ba2.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/271.165714adfc935d3be418.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2792.2b4ea1039d7e7d6c8180.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2904.9b8ac6360124c4c77ce2.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/2948.23047cd2275a924fc437.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3185.dc0ba5ac0091038101a2.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3427.cc06eeab77f45499ff70.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3427.cc06eeab77f45499ff70.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/3439.9303dcdb69716d3a966b.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3457.7777e85ec054f4a245a2.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/35.8f4bd3f1e500fc61464b.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3545.b2eb27e11bb78219281c.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3600.6064da836ec41985218e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/363.f47428fc3ded5d99b084.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3675.dd3f6e272344f18c0934.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3718.f9919366ed5eaa13f560.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3758.96bd550e1cfd788142c9.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3758.96bd550e1cfd788142c9.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/3758.d489f3f6dbbebd1b75d7.css +%%DASHBOARD%%%%DATADIR%%/web/v3/3808.d3f8e2c0ad14b6e86331.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3864.a953c2231324b95467f5.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3961.859c0524a24d1b21e938.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/3961.859c0524a24d1b21e938.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/399.35123f9121b0d02555c7.chunk.js %%DASHBOARD%%%%DATADIR%%/web/v3/3D_PARTY_LICENSES.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/4142.b43408302308e4cc9161.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4211.145a6b08de2209389029.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4265.769fca7317076254e3b0.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4277.6386bd6ed205d389d99e.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4301.426cf2dcfd3d782ec140.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4424.e63815e61709c2309923.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4480.bcdf770bac321a6bb68f.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4484.9ee2bb133287af98b097.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4582.3c40ac0d6c412f3e8c24.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4606.5bb2601edf74d552957f.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4606.5bb2601edf74d552957f.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/4651.1192ce6ff893d5e9dd5f.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/4837.b2be2afd45fdb2d9de63.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5030.33fdeacac57b4b7fcf99.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5178.90192ec0ab5a89cc3e76.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5187.f821f5efbf95905bdf79.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5295.1a8ae445c7f52e5c0e6e.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5297.e875be9b1960e69d4454.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5302.5f6b4df89e1c7bc5f906.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5476.599c67ed3f70b017a1a9.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5566.2496928f0951dbc77290.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/5883.76e297c0fa82ef3745ba.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6003.257010f19e5b84883157.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6025.d914dd2442a2d5be864e.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6141.a9cdac98dd190ca7a168.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6238.4602c7dba1dd728461e2.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6238.4602c7dba1dd728461e2.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/6333.22588757a1136170b3e9.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6394.47a2932093529561ed6f.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6403.e1dd935a1737ded72546.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6497.f9e9840bff52f64203c5.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6554.a9a8464c7f8e3b5da30f.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6554.a9a8464c7f8e3b5da30f.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/6601.7bbab22fa640bfa9a7ba.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/6839.5f19a0d4f1947422cd25.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7044.3879ee39be07550307bb.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7214.cc010f777c6d04ab408a.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7281.457cc958a9b72ce8eafd.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7493.79e49ac98a2fe652d26c.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7530.dfd93c86935a155f2c94.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7543.50384535fb0ffd4f8299.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7799.2558d538a4e71e72cbcc.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7877.82954f935d21fe1df769.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/7931.34606f555192d6613828.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8103.da64458cdbc5f9a1f133.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8399.45009c8ea7952f413fc3.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8496.857f0f2a9d4c4e8c92aa.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8496.857f0f2a9d4c4e8c92aa.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/8643.2a4a46892be5e91704e2.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8761.ca5b76fe5755145eacae.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8791.131d81e398d9028b7967.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8800.54ae1fb08eb2876929df.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/884.1741c2d28bea048333e2.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8904.1840f5188112e612af65.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/8904.1840f5188112e612af65.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/8904.d489f3f6dbbebd1b75d7.css -%%DASHBOARD%%%%DATADIR%%/web/v3/9244.fc1bb71a3842b2f32943.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9341.dca06fd8d7902c399ab7.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9418.0d41b54c58c14ff035d3.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9418.0d41b54c58c14ff035d3.chunk.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/953.5dc8bd6e343ba97c013e.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9822.f928222a1d8030a1210a.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9856.82d776cf34c83bd5b315.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9883.06d3d57e8db8f2f64b61.chunk.js -%%DASHBOARD%%%%DATADIR%%/web/v3/9961.131d7beae1fbe7d0a46e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4142.89c7894aaef%%PYTHON_SUFFIX%%04d21c.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4211.0de89edfff61d6f67625.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4265.4b3c6e16e1b61d4b30a0.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4277.76010c5a5ab91891d22a.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4424.4f2b8e8a37593d27ac77.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4484.0c50b81ceeb7d6620399.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4582.4c61e121fe18ff7da893.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4597.3a6bf6439382159532e4.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4606.17ff79a39dcf38122c64.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/4606.17ff79a39dcf38122c64.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/4837.458b3350e1a8869dccea.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5030.f710a1e4eab2d725606e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5178.f115a6ba7d2bd295942e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5187.bc357224483ef02a9b9e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5295.8fdc00557546d320a276.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5297.2b55bccfb60e5b0d6d74.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5302.feb847646336c1dfc43d.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5476.81448df6d017b24d341a.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5566.a666dcbf6e522467efe6.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5730.b742fe81959ca813a3f5.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/5883.ef3039e16d940caa6fea.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6025.5c1f37b1aba6f49d699f.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6141.314f73551a4b9c94cecb.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6200.dcdc7d4ffaede346e4d7.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6238.0403cecd3f0628d20c06.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6238.0403cecd3f0628d20c06.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/6333.a101d1493b37be23f674.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6360.79660620643ed303d1e0.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6394.e8fb822ab5835ab585f9.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6497.80063f29557acefd6fa5.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6601.cda841f3a3a2dab17646.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/6839.3750da437f0d6a48c783.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7044.d91f1a4f9650b9d9f881.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7214.1d392316a64857afb4bc.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7281.561eb8385a46390fdd99.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7396.484864c9c81ca35c4f78.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7493.8eb8c945adc6b77b2b0d.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7530.beda5fe1f27c6c86f2cf.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7543.2902570ac241b9ed7d46.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7791.8e3cc51d6bc9710e9e31.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7799.49df8cf7f9822c7b37be.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7877.529c863bfc02a54a72f5.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/7931.95a5c4fb7e5f4ac044f4.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/8399.ca4d60385732ff44cb1f.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/8643.ad77e50d1e7c40cff661.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/8662.9ae6261aa8b2e43b931e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/8662.9ae6261aa8b2e43b931e.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/8761.1f550cc37e518fa7734f.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/8791.6626b0bf6f30c6b6d555.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/8800.2712dd2e17fde694d18a.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/884.08ed68ee34e806510c99.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9033.b5262417aee0c046e90e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9244.50923145a25e2b9e65d3.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9341.ecac924df35c7e62899e.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9418.310f5ab0924813e1e564.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9418.310f5ab0924813e1e564.chunk.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/953.b27666defc539e55d003.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9856.955dc2e23755c1356613.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9883.6364d1e83fa4aa270934.chunk.js +%%DASHBOARD%%%%DATADIR%%/web/v3/9961.42fb6e67e280ab7216c9.chunk.js %%DASHBOARD%%%%DATADIR%%/web/v3/LICENSE.md %%DASHBOARD%%%%DATADIR%%/web/v3/LICENSE.txt %%DASHBOARD%%%%DATADIR%%/web/v3/agent.html -%%DASHBOARD%%%%DATADIR%%/web/v3/allFiles.7.75.1.json +%%DASHBOARD%%%%DATADIR%%/web/v3/allFiles.7.80.1.json %%DASHBOARD%%%%DATADIR%%/web/v3/allFiles.7.json -%%DASHBOARD%%%%DATADIR%%/web/v3/app.37ca67c54659741a06f5.js %%DASHBOARD%%%%DATADIR%%/web/v3/app.4da0883c6ce016bf3d81.css +%%DASHBOARD%%%%DATADIR%%/web/v3/app.6ace95733536b29bf257.js %%DASHBOARD%%%%DATADIR%%/web/v3/apple-app-site-association %%DASHBOARD%%%%DATADIR%%/web/v3/bundlesManifest.7.json %%DASHBOARD%%%%DATADIR%%/web/v3/favicon.ico %%DASHBOARD%%%%DATADIR%%/web/v3/index.html %%DASHBOARD%%%%DATADIR%%/web/v3/local-agent.html -%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.charts.d3d2859278a768d7e6c0.js -%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.charts.d3d2859278a768d7e6c0.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.ui.0e9d1b8c948c5858baa6.js -%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.ui.0e9d1b8c948c5858baa6.js.LICENSE.txt -%%DASHBOARD%%%%DATADIR%%/web/v3/npm.react.dom.2ce993ff9a3b4f64332d.js -%%DASHBOARD%%%%DATADIR%%/web/v3/npm.react.dom.2ce993ff9a3b4f64332d.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.charts.b03846acf186c1127dcb.js +%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.charts.b03846acf186c1127dcb.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.ui.cdfd7e6acc08f5a0aa6e.js +%%DASHBOARD%%%%DATADIR%%/web/v3/netdata.ui.cdfd7e6acc08f5a0aa6e.js.LICENSE.txt +%%DASHBOARD%%%%DATADIR%%/web/v3/npm.react.dom.c991357a6928aa2fea58.js +%%DASHBOARD%%%%DATADIR%%/web/v3/npm.react.dom.c991357a6928aa2fea58.js.LICENSE.txt %%DASHBOARD%%%%DATADIR%%/web/v3/registry-access.html %%DASHBOARD%%%%DATADIR%%/web/v3/registry-alert-redirect.html %%DASHBOARD%%%%DATADIR%%/web/v3/registry-hello.html -%%DASHBOARD%%%%DATADIR%%/web/v3/runtime.cb02d0bbda86530b8e5f.js +%%DASHBOARD%%%%DATADIR%%/web/v3/runtime.34769543b53eaf7ee9d5.js %%DASHBOARD%%%%DATADIR%%/web/v3/static/.well-known/assetlinks.json %%DASHBOARD%%%%DATADIR%%/web/v3/static/apple-app-site-association %%DASHBOARD%%%%DATADIR%%/web/v3/static/email/img/clea_badge.png diff --git a/net-p2p/py-stig/Makefile b/net-p2p/py-stig/Makefile index 7167a342ea12..a242fbff83a6 100644 --- a/net-p2p/py-stig/Makefile +++ b/net-p2p/py-stig/Makefile @@ -1,5 +1,5 @@ PORTNAME= stig -DISTVERSION= 0.14.0a0 +DISTVERSION= 0.14.1a0 CATEGORIES= net-p2p MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -23,8 +23,8 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}asynctest>0:devel/py-asynctest@${PY_FLAVOR} USES= python USE_PYTHON= autoplist distutils pytest -NO_ARCH= yes - TESTING_UNSAFE= yes +NO_ARCH= yes + .include <bsd.port.mk> diff --git a/net-p2p/py-stig/distinfo b/net-p2p/py-stig/distinfo index b285bce6b941..0a94f4375957 100644 --- a/net-p2p/py-stig/distinfo +++ b/net-p2p/py-stig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1757510858 -SHA256 (stig-0.14.0a0.tar.gz) = bfdf72e7ece0458845cb9bf3f0f1eb985a66afc8fb1fc532fe3a32efb710a148 -SIZE (stig-0.14.0a0.tar.gz) = 237688 +TIMESTAMP = 1765826913 +SHA256 (stig-0.14.1a0.tar.gz) = 57f18d1add9d86c4e699d0237b2fcc358abaaa16c93cfadc85aea625e4eff88e +SIZE (stig-0.14.1a0.tar.gz) = 237804 diff --git a/net/Makefile b/net/Makefile index a2cfda5f56a8..b3e4f607ca3f 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1658,6 +1658,7 @@ SUBDIR += usbredir SUBDIR += usockets SUBDIR += utftpd + SUBDIR += uvgrtp SUBDIR += v2ray SUBDIR += vde SUBDIR += vde2 diff --git a/net/boinc-client/Makefile b/net/boinc-client/Makefile index a320fd875654..53af41bea60a 100644 --- a/net/boinc-client/Makefile +++ b/net/boinc-client/Makefile @@ -1,6 +1,6 @@ PORTNAME= boinc-client DISTVERSIONPREFIX= client_release/8.2/ -DISTVERSION= 8.2.4 +DISTVERSION= 8.2.8 CATEGORIES= net MAINTAINER= alven@FreeBSD.org @@ -8,7 +8,8 @@ COMMENT= Berkeley Open Infrastructure for Network Computing client WWW= https://boinc.berkeley.edu/ \ https://github.com/BOINC/boinc/ -LICENSE= LGPL3 +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/COPYING.LESSER USES= autoreconf compiler:c++11-lang gmake libtool localbase:ldflags pkgconfig ssl USE_GITHUB= yes @@ -35,6 +36,8 @@ SUB_LIST= BOINC_CLIENT_GROUP="${BOINC_CLIENT_GROUP}" \ USERS= boinc GROUPS= boinc +PLIST_SUB= SOVERSION=${DISTVERSION} + OPTIONS_DEFINE= CLIENT MANAGER NLS SKINS USER X11 OPTIONS_DEFINE_aarch64= LINUX OPTIONS_DEFINE_amd64= LINUX @@ -114,25 +117,6 @@ SUB_LIST+= OPTION_USER="" post-patch: @${REINPLACE_CMD} -e 's|client/scripts||' \ ${WRKSRC}/Makefile.am -# avoid build conflict with archivers/libzip - @${MV} ${WRKSRC}/zip/unzip/zip.h \ - ${WRKSRC}/zip/unzip/boinczip.h - @${MV} ${WRKSRC}/zip/zip/zip.h \ - ${WRKSRC}/zip/zip/boinczip.h - @${REINPLACE_CMD} -e 's|zip/zip.h|zip/boinczip.h|' \ - ${WRKSRC}/zip/boinc_zip.cpp - @${REINPLACE_CMD} -e 's|"zip.h"|"boinczip.h"|' \ - ${WRKSRC}/zip/unzip/crc32.c \ - ${WRKSRC}/zip/unzip/ttyio.c \ - ${WRKSRC}/zip/zip/deflate.c \ - ${WRKSRC}/zip/zip/trees.c \ - ${WRKSRC}/zip/zip/unix/z_unix.c \ - ${WRKSRC}/zip/zip/util.c \ - ${WRKSRC}/zip/zip/z_fileio.c \ - ${WRKSRC}/zip/zip/z_globals.c \ - ${WRKSRC}/zip/zip/zip.c \ - ${WRKSRC}/zip/zip/zipfile.c \ - ${WRKSRC}/zip/zip/zipup.c post-patch-X11-off: @${REINPLACE_CMD} -e 's|enable_xss="yes"|enable_xss="no"|' \ @@ -147,8 +131,8 @@ post-install: post-install-MANAGER-on: ${MKDIR} ${STAGEDIR}${PREFIX}/share/boinc -.for name in 16 32 48 - ${INSTALL_DATA} ${WRKSRC}/packages/generic/sea/boincmgr.${name}x${name}.png \ +.for size in 16 32 48 + ${INSTALL_DATA} ${WRKSRC}/packages/generic/sea/boincmgr.${size}x${size}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps .endfor .if ${PORT_OPTIONS:MSKINS} @@ -168,8 +152,7 @@ post-install-X11-on: ${STAGEDIR}${PREFIX}/include/boinc .endfor ${MKDIR} ${STAGEDIR}${PREFIX}/share/boinc/ttf - (cd ${WRKSRC}/api/ttf/liberation-fonts-ttf-2.00.0 && \ - ${COPYTREE_SHARE} \*.ttf ${STAGEDIR}${PREFIX}/share/boinc/ttf/ \ - ) + cd ${WRKSRC}/api/ttf/liberation-fonts-ttf-2.00.0 && \ + ${COPYTREE_SHARE} \*.ttf ${STAGEDIR}${PREFIX}/share/boinc/ttf/ .include <bsd.port.mk> diff --git a/net/boinc-client/distinfo b/net/boinc-client/distinfo index 83f379cdc7f4..ac79eeb8a0c2 100644 --- a/net/boinc-client/distinfo +++ b/net/boinc-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1753478143 -SHA256 (BOINC-boinc-client_release-8.2-8.2.4_GH0.tar.gz) = a7cd5c562f7fae705f0b68e215d9ee176c2716630a80fc86a6d9aa3a6804e7e4 -SIZE (BOINC-boinc-client_release-8.2-8.2.4_GH0.tar.gz) = 47582706 +TIMESTAMP = 1764582072 +SHA256 (BOINC-boinc-client_release-8.2-8.2.8_GH0.tar.gz) = faaacaff557eba02fe9ae6f40402534b8bbf55343553bf42e1255b0d9f435ca0 +SIZE (BOINC-boinc-client_release-8.2-8.2.8_GH0.tar.gz) = 47052652 diff --git a/net/boinc-client/pkg-plist b/net/boinc-client/pkg-plist index 996dc126c6cd..7b78825ac66e 100644 --- a/net/boinc-client/pkg-plist +++ b/net/boinc-client/pkg-plist @@ -59,12 +59,12 @@ lib/libboinc.a lib/libboinc_api.a lib/libboinc_api.so lib/libboinc_api.so.8 -lib/libboinc_api.so.8.2.4 +lib/libboinc_api.so.%%SOVERSION%% %%CLIENT%%lib/libboinc_crypt.a lib/libboinc_opencl.a lib/libboinc_opencl.so lib/libboinc_opencl.so.8 -lib/libboinc_opencl.so.8.2.4 +lib/libboinc_opencl.so.%%SOVERSION%% libdata/pkgconfig/libboinc.pc libdata/pkgconfig/libboinc_api.pc %%CLIENT%%libdata/pkgconfig/libboinc_crypt.pc @@ -72,7 +72,7 @@ libdata/pkgconfig/libboinc_opencl.pc %%X11%%lib/libboinc_graphics2.a %%X11%%lib/libboinc_graphics2.so %%X11%%lib/libboinc_graphics2.so.8 -%%X11%%lib/libboinc_graphics2.so.8.2.4 +%%X11%%lib/libboinc_graphics2.so.%%SOVERSION%% %%SKINS%%share/boinc/skins/Charity Engine/background_image.png %%SKINS%%share/boinc/skins/Charity Engine/ce_about.ico %%SKINS%%share/boinc/skins/Charity Engine/ce_icon_play.png diff --git a/net/go-pkgsite/Makefile b/net/go-pkgsite/Makefile index 7a3970327d5c..4e31621e0bd0 100644 --- a/net/go-pkgsite/Makefile +++ b/net/go-pkgsite/Makefile @@ -1,7 +1,6 @@ PORTNAME= go-pkgsite PORTVERSION= ${MODVERSION:S/-/./g:R} DISTVERSIONPREFIX= v -PORTREVISION= 4 CATEGORIES= net devel MAINTAINER= fuz@FreeBSD.org @@ -12,7 +11,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= go:modules -MODVERSION= 0.0.0-20250911091732-133263251ca1 +MODVERSION= 0.0.0-20251209150622-7dafa59905ae GO_MODULE= golang.org/x/pkgsite@v${MODVERSION} GO_TARGET= ./cmd/pkgsite diff --git a/net/go-pkgsite/distinfo b/net/go-pkgsite/distinfo index 2fc39fe9d221..addcafcc5f0e 100644 --- a/net/go-pkgsite/distinfo +++ b/net/go-pkgsite/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1757583687 -SHA256 (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.mod) = 1b88b6c23acd887da7959fd300005054c6b4bfa27a3a2dbe94a3f64b83dbc44a -SIZE (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.mod) = 4186 -SHA256 (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.zip) = 03656cb8192c9f2737236b341eba49e97fdb110616ceced77a814c5829fc8762 -SIZE (go/net_go-pkgsite/go-pkgsite-v0.0.0.20250911091732/v0.0.0-20250911091732-133263251ca1.zip) = 22903231 +TIMESTAMP = 1765683232 +SHA256 (go/net_go-pkgsite/go-pkgsite-v0.0.0.20251209150622/v0.0.0-20251209150622-7dafa59905ae.mod) = 6418fee9513013075238acc1ae8a9fc87940b3127e36ccb73cd436a184d79a99 +SIZE (go/net_go-pkgsite/go-pkgsite-v0.0.0.20251209150622/v0.0.0-20251209150622-7dafa59905ae.mod) = 4186 +SHA256 (go/net_go-pkgsite/go-pkgsite-v0.0.0.20251209150622/v0.0.0-20251209150622-7dafa59905ae.zip) = dda83506d8a05c71ee6771f15eec38818c6747b3ad4db117ce856f9356337c5e +SIZE (go/net_go-pkgsite/go-pkgsite-v0.0.0.20251209150622/v0.0.0-20251209150622-7dafa59905ae.zip) = 22904998 diff --git a/net/haproxy33/Makefile b/net/haproxy33/Makefile index 01cd41ed6108..4aed39996f12 100644 --- a/net/haproxy33/Makefile +++ b/net/haproxy33/Makefile @@ -1,5 +1,5 @@ PORTNAME= haproxy -DISTVERSION= 3.3.0 +DISTVERSION= 3.3.1 CATEGORIES= net www MASTER_SITES= http://www.haproxy.org/download/3.3/src/ PKGNAMESUFFIX= 33 diff --git a/net/haproxy33/distinfo b/net/haproxy33/distinfo index 633567464733..70aaef38f86a 100644 --- a/net/haproxy33/distinfo +++ b/net/haproxy33/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764182046 -SHA256 (haproxy-3.3.0.tar.gz) = bf2da6b69f82d7b855be977ab9e1d4704eef5629b657ac72afb5958a869c902e -SIZE (haproxy-3.3.0.tar.gz) = 5239878 +TIMESTAMP = 1766164184 +SHA256 (haproxy-3.3.1.tar.gz) = b77acdae8a7600db9576fc749292742c109167648005513035dea767e45a00df +SIZE (haproxy-3.3.1.tar.gz) = 5242150 diff --git a/net/igmpproxy/Makefile b/net/igmpproxy/Makefile index 169fbe3e8c02..d11554273288 100644 --- a/net/igmpproxy/Makefile +++ b/net/igmpproxy/Makefile @@ -4,7 +4,7 @@ PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net -MAINTAINER= franco@opnsense.org +MAINTAINER= garga@FreeBSD.org COMMENT= Multicast forwarding IGMP proxy WWW= https://github.com/pali/igmpproxy diff --git a/net/nbdkit/Makefile b/net/nbdkit/Makefile index d6fe1b73312f..a69762e098e9 100644 --- a/net/nbdkit/Makefile +++ b/net/nbdkit/Makefile @@ -1,5 +1,5 @@ PORTNAME= nbdkit -PORTVERSION= 1.44.4 +PORTVERSION= 1.46.0 CATEGORIES= net # XXX Although nbdkit uses github for its homepage, the release tarballs served # by github haven't been through autoconf. So we must download the sources @@ -68,6 +68,8 @@ RUBY_CONFIGURE_ENABLE= ruby SSH_LIB_DEPENDS= libssh.so:security/libssh SSH_CONFIGURE_WITH= ssh ZLIB_CONFIGURE_WITH= zlib +# Fix "WARNING: zlib-ng not found, zlib operations will run slower" +ZLIB_LIB_DEPENDS= libz-ng.so:archivers/zlib-ng ZSTD_LIB_DEPENDS= libzstd.so:archivers/zstd ZSTD_CONFIGURE_WITH= libzstd diff --git a/net/nbdkit/distinfo b/net/nbdkit/distinfo index bfeb3cec6b8c..b3e37afe7a71 100644 --- a/net/nbdkit/distinfo +++ b/net/nbdkit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1761865788 -SHA256 (nbdkit-1.44.4.tar.gz) = 281d83daf954e04c739a5f29d10e5440de69e9009654a2935aee7cbf3aebca91 -SIZE (nbdkit-1.44.4.tar.gz) = 2659658 +TIMESTAMP = 1766254321 +SHA256 (nbdkit-1.46.0.tar.gz) = 149aebf9a754786adc619a286e16803e7043fb742f6ee8709b8e26dd7949d0ce +SIZE (nbdkit-1.46.0.tar.gz) = 2739966 diff --git a/net/nbdkit/pkg-plist b/net/nbdkit/pkg-plist index 0a4abbe09224..3b7d0d063b04 100644 --- a/net/nbdkit/pkg-plist +++ b/net/nbdkit/pkg-plist @@ -3,9 +3,10 @@ include/nbdkit-common.h include/nbdkit-filter.h include/nbdkit-plugin.h include/nbdkit-version.h +lib/nbdkit/filters/nbdkit-count-filter.so +lib/nbdkit/filters/nbdkit-map-filter.so lib/nbdkit/filters/nbdkit-blocksize-filter.so lib/nbdkit/filters/nbdkit-cache-filter.so -lib/nbdkit/filters/nbdkit-cacheextents-filter.so lib/nbdkit/filters/nbdkit-cow-filter.so lib/nbdkit/filters/nbdkit-delay-filter.so lib/nbdkit/filters/nbdkit-error-filter.so @@ -38,7 +39,6 @@ lib/nbdkit/plugins/nbdkit-example3-plugin.so lib/nbdkit/plugins/nbdkit-file-plugin.so lib/nbdkit/plugins/nbdkit-floppy-plugin.so lib/nbdkit/plugins/nbdkit-full-plugin.so -%%ZLIB%%lib/nbdkit/plugins/nbdkit-gzip-plugin.so lib/nbdkit/plugins/nbdkit-info-plugin.so %%LIBVIRT%%lib/nbdkit/plugins/nbdkit-libvirt-plugin.so lib/nbdkit/plugins/nbdkit-memory-plugin.so @@ -80,12 +80,13 @@ lib/nbdkit/plugins/nbdkit-cdi-plugin.so lib/nbdkit/plugins/nbdkit-ondemand-plugin.so lib/nbdkit/plugins/nbdkit-ones-plugin.so lib/nbdkit/plugins/nbdkit-sparse-random-plugin.so +%%ZLIB%%lib/nbdkit/filters/nbdkit-gzip-filter.so +%%ZLIB%%lib/nbdkit/filters/nbdkit-indexed-gzip-filter.so libdata/pkgconfig/nbdkit.pc sbin/nbdkit share/bash-completion/completions/nbdkit %%MANPAGES%%share/man/man1/nbdkit-blocksize-filter.1.gz %%MANPAGES%%share/man/man1/nbdkit-cache-filter.1.gz -%%MANPAGES%%share/man/man1/nbdkit-cacheextents-filter.1.gz %%MANPAGES%%share/man/man1/nbdkit-captive.1.gz %%MANPAGES%%share/man/man1/nbdkit-cow-filter.1.gz %%MANPAGES%%%%CURL%%share/man/man1/nbdkit-curl-plugin.1.gz @@ -103,7 +104,8 @@ share/bash-completion/completions/nbdkit %%MANPAGES%%share/man/man1/nbdkit-floppy-plugin.1.gz %%MANPAGES%%share/man/man1/nbdkit-fua-filter.1.gz %%MANPAGES%%share/man/man1/nbdkit-full-plugin.1.gz -%%MANPAGES%%%%ZLIB%%share/man/man1/nbdkit-gzip-plugin.1.gz +%%MANPAGES%%%%ZLIB%%share/man/man1/nbdkit-gzip-filter.1.gz +%%MANPAGES%%%%ZLIB%%share/man/man1/nbdkit-indexed-gzip-filter.1.gz %%MANPAGES%%share/man/man1/nbdkit-info-plugin.1.gz %%MANPAGES%%share/man/man1/nbdkit-ip-filter.1.gz %%MANPAGES%%%%LIBVIRT%%share/man/man1/nbdkit-libvirt-plugin.1.gz @@ -232,3 +234,7 @@ share/bash-completion/completions/nbdkit %%MANPAGES%%share/man/man3/nbdkit_vdebug.3.gz %%MANPAGES%%share/man/man3/nbdkit_verror.3.gz %%MANPAGES%%share/man/man3/nbdkit_vprintf_intern.3.gz +%%MANPAGES%%share/man/man1/nbdkit-count-filter.1.gz +%%MANPAGES%%share/man/man1/nbdkit-map-filter.1.gz +%%MANPAGES%%share/man/man1/nbdkit-release-notes-1.46.1.gz +%%MANPAGES%%share/man/man3/nbdkit_debug_hexdump.3.gz diff --git a/net/samba423/Makefile b/net/samba423/Makefile index 448ab05f8b52..369b53e9279b 100644 --- a/net/samba423/Makefile +++ b/net/samba423/Makefile @@ -303,7 +303,7 @@ GPGME_CONFIGURE_WITH= gpgme GSSAPI_BUILTIN_USES= bison GSSAPI_MIT_USES= bison gssapi:mit -GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 ${GSSAPIBASEDIR} \ +GSSAPI_MIT_CONFIGURE_ON= --with-system-mitkrb5 \ --with-system-mitkdc=${GSSAPIBASEDIR}/sbin/krb5kdc \ --with-experimental-mit-ad-dc GSSAPI_MIT_PLIST_FILES= ${SAMBA_MODULESDIR}/krb5/winbind_krb5_localauth.so \ diff --git a/net/tayga/Makefile b/net/tayga/Makefile index 8b2cb4e6c453..c43973bdbc48 100644 --- a/net/tayga/Makefile +++ b/net/tayga/Makefile @@ -8,7 +8,7 @@ PATCHFILES= 49f64b0.patch:-p1 \ b62e33f.patch:-p1 \ 6c298f2.patch:-p1 -MAINTAINER= franco@opnsense.org +MAINTAINER= ports@FreeBSD.org COMMENT= Userland stateless NAT64 daemon WWW= https://github.com/apalrd/tayga/ diff --git a/net/unfs3/Makefile b/net/unfs3/Makefile index 6808acaf4feb..a71d39b9459d 100644 --- a/net/unfs3/Makefile +++ b/net/unfs3/Makefile @@ -1,10 +1,10 @@ PORTNAME= unfs3 DISTVERSIONPREFIX= unfs3- DISTVERSION= 0.9.23 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net -MAINTAINER= fuz@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= User-space implementation of the NFSv3 server specification WWW= https://unfs3.github.io/ diff --git a/net/uvgrtp/Makefile b/net/uvgrtp/Makefile new file mode 100644 index 000000000000..aac8115be785 --- /dev/null +++ b/net/uvgrtp/Makefile @@ -0,0 +1,24 @@ +PORTNAME= ${GH_PROJECT:tl} +PORTVERSION= 3.1.6 +DISTVERSIONPREFIX= v +CATEGORIES= net + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Open-source C++ library for RTP/SRTP media delivery +WWW= https://ultravideo.fi/uvgrtp.html + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= cmake compiler:c++17-lang pkgconfig +CMAKE_ARGS= -DPKG_CONFIG_PATH:STRING=libdata/pkgconfig +CMAKE_ON= UVGRTP_DISABLE_EXAMPLES UVGRTP_DISABLE_TESTS \ + UVGRTP_RELEASE_COMMIT +LDFLAGS_i386= -Wl,-znotext +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= ultravideo +GH_PROJECT= uvgRTP + +.include <bsd.port.mk> diff --git a/net/uvgrtp/distinfo b/net/uvgrtp/distinfo new file mode 100644 index 000000000000..e37c19ebf5fc --- /dev/null +++ b/net/uvgrtp/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1742464765 +SHA256 (ultravideo-uvgRTP-v3.1.6_GH0.tar.gz) = 3a8b175ae280a26eb6249db879da99e80d39df2443062cce9e3047fc05db5ca2 +SIZE (ultravideo-uvgRTP-v3.1.6_GH0.tar.gz) = 458710 diff --git a/net/uvgrtp/files/patch-CMakeLists.txt b/net/uvgrtp/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..8de1f8941968 --- /dev/null +++ b/net/uvgrtp/files/patch-CMakeLists.txt @@ -0,0 +1,20 @@ +--- CMakeLists.txt.orig 2025-03-20 09:59:25 UTC ++++ CMakeLists.txt +@@ -49,7 +49,7 @@ include(cmake/FindDependencies.cmake) + include(cmake/Versioning.cmake) + + +-add_library(${PROJECT_NAME}) ++add_library(${PROJECT_NAME} SHARED) + set_target_properties(${PROJECT_NAME} PROPERTIES + SOVERSION "${PROJECT_VERSION_MAJOR}" + VERSION "${LIBRARY_VERSION}" +@@ -239,7 +239,7 @@ if (UNIX) + list(APPEND UVGRTP_LINKER_FLAGS "-lpthread") + endif() + # Check PKG_CONFIG_PATH, if not defined, use lib/pkgconfig +- if(NOT DEFINED ENV{PKG_CONFIG_PATH}) ++ if(NOT DEFINED PKG_CONFIG_PATH) + set(PKG_CONFIG_PATH "${CMAKE_INSTALL_LIBDIR}/pkgconfig") + message("PKG_CONFIG_PATH is not set. Setting it to ${PKG_CONFIG_PATH}") + endif(NOT DEFINED ENV{PKG_CONFIG_PATH}) diff --git a/net/uvgrtp/files/patch-src_reception__flow.hh b/net/uvgrtp/files/patch-src_reception__flow.hh new file mode 100644 index 000000000000..c10f3a4dc898 --- /dev/null +++ b/net/uvgrtp/files/patch-src_reception__flow.hh @@ -0,0 +1,10 @@ +--- src/reception_flow.hh.orig 2025-03-20 09:59:25 UTC ++++ src/reception_flow.hh +@@ -16,6 +16,7 @@ + #ifdef _WIN32 + #include <ws2ipdef.h> + #else ++#include <arpa/inet.h> + #include <netinet/ip.h> + #include <sys/socket.h> + #endif diff --git a/net/uvgrtp/files/patch-src_socket.hh b/net/uvgrtp/files/patch-src_socket.hh new file mode 100644 index 000000000000..15f8603f5390 --- /dev/null +++ b/net/uvgrtp/files/patch-src_socket.hh @@ -0,0 +1,12 @@ +--- src/socket.hh.orig 2025-03-20 09:59:25 UTC ++++ src/socket.hh +@@ -10,8 +10,8 @@ + #include <ws2ipdef.h> + #include <WS2tcpip.h> + #else +-#include <netinet/ip.h> + #include <arpa/inet.h> ++#include <netinet/ip.h> + #include <sys/uio.h> + #include <sys/socket.h> + #include <netinet/in.h> diff --git a/net/uvgrtp/files/patch-src_srtp_base.hh b/net/uvgrtp/files/patch-src_srtp_base.hh new file mode 100644 index 000000000000..dab7f0449533 --- /dev/null +++ b/net/uvgrtp/files/patch-src_srtp_base.hh @@ -0,0 +1,12 @@ +--- src/srtp/base.hh.orig 2025-03-20 09:59:25 UTC ++++ src/srtp/base.hh +@@ -7,8 +7,8 @@ + #include <mswsock.h> + #include <inaddr.h> + #else +-#include <netinet/ip.h> + #include <arpa/inet.h> ++#include <netinet/ip.h> + #endif + + #include <cstdint> diff --git a/net/uvgrtp/pkg-descr b/net/uvgrtp/pkg-descr new file mode 100644 index 000000000000..42e6fc3a8011 --- /dev/null +++ b/net/uvgrtp/pkg-descr @@ -0,0 +1,10 @@ +uvgRTP is an Real-Time Transport Protocol (RTP) library written in C++ +with a focus on simple to use and high-efficiency media delivery over the +Internet. It features an intuitive and easy-to-use API, built-in support +for transporting Versatile Video Coding (VVC), High Efficiency Video +Coding (HEVC), Advanced Video Coding (AVC) encoded video and Opus encoded +audio. Furthermore, uvgRTP can be used to transport Visual Volumetric +Video-based Coding (V3C) encoded volumetric video. uvgRTP also supports +End-to-End Encrypted (E2EE) media delivery using the combination of +Secure RTP (SRTP) and ZRTP. uvgRTP has been designed to minimize memory +operations to reduce its CPU usage and latency. diff --git a/net/uvgrtp/pkg-plist b/net/uvgrtp/pkg-plist new file mode 100644 index 000000000000..dad4affbf956 --- /dev/null +++ b/net/uvgrtp/pkg-plist @@ -0,0 +1,19 @@ +include/uvgrtp/clock.hh +include/uvgrtp/context.hh +include/uvgrtp/frame.hh +include/uvgrtp/lib.hh +include/uvgrtp/media_stream.hh +include/uvgrtp/rtcp.hh +include/uvgrtp/session.hh +include/uvgrtp/util.hh +include/uvgrtp/version.hh +include/uvgrtp/wrapper_c.hh +lib/cmake/uvgrtp/uvgrtpConfig.cmake +lib/cmake/uvgrtp/uvgrtpConfigVersion.cmake +lib/cmake/uvgrtp/uvgrtpMacros.cmake +lib/cmake/uvgrtp/uvgrtpTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/uvgrtp/uvgrtpTargets.cmake +lib/libuvgrtp.so +lib/libuvgrtp.so.3 +lib/libuvgrtp.so.3.1.6 +libdata/pkgconfig/uvgrtp.pc diff --git a/print/rubygem-color_diff/Makefile b/print/rubygem-color_diff/Makefile index b2f77f4837d0..c6884be9c592 100644 --- a/print/rubygem-color_diff/Makefile +++ b/print/rubygem-color_diff/Makefile @@ -1,9 +1,9 @@ PORTNAME= color_diff -PORTVERSION= 0.1 +DISTVERSION= 0.2 CATEGORIES= print rubygems MASTER_SITES= RG -MAINTAINER= bofh@FreeBSD.org +MAINTAINER= ruby@FreeBSD.org COMMENT= Calculate RGB color distances using CIEDE2000 formula WWW= https://github.com/hansondr/color_diff diff --git a/print/rubygem-color_diff/distinfo b/print/rubygem-color_diff/distinfo index 70f7b0fd895e..0781d481b083 100644 --- a/print/rubygem-color_diff/distinfo +++ b/print/rubygem-color_diff/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1668837642 -SHA256 (rubygem/color_diff-0.1.gem) = 99dc39f4453e42aa3bbc6d738f82194870b974993135cee61deb2eff29deb705 -SIZE (rubygem/color_diff-0.1.gem) = 7680 +TIMESTAMP = 1766220594 +SHA256 (rubygem/color_diff-0.2.gem) = ce5f1e287b4682e0e9cdc1bba06fad9495edcffeb6423f3036f5f493efde9024 +SIZE (rubygem/color_diff-0.2.gem) = 7680 diff --git a/science/R-cran-e1071/Makefile b/science/R-cran-e1071/Makefile index ae5f9cb90bc8..c3ef9c28bb62 100644 --- a/science/R-cran-e1071/Makefile +++ b/science/R-cran-e1071/Makefile @@ -1,11 +1,11 @@ PORTNAME= e1071 -DISTVERSION= 1.7-16 +DISTVERSION= 1.7-17 CATEGORIES= science DISTNAME= ${PORTNAME}_${DISTVERSION} MAINTAINER= eduardo@FreeBSD.org COMMENT= Misc Functions of the Department of Statistics (e1071), TU Wien -WWW= https://cran.r-project.org/web/packages/e1071/ +WWW= https://cran.r-project.org/package=e1071 LICENSE= GPLv2+ diff --git a/science/R-cran-e1071/distinfo b/science/R-cran-e1071/distinfo index afa5a1d0ae40..ef816f55ad4a 100644 --- a/science/R-cran-e1071/distinfo +++ b/science/R-cran-e1071/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1726646778 -SHA256 (e1071_1.7-16.tar.gz) = 12d565e3033fdb94c96c1e49f1a08202fcfb9e2a804a2e6b8fd204bdd97c3a4f -SIZE (e1071_1.7-16.tar.gz) = 326734 +TIMESTAMP = 1766181199 +SHA256 (e1071_1.7-17.tar.gz) = 6debc371ad478c2aa6de1f6510e254e80e797de4974b855f63b35509a3c2ac87 +SIZE (e1071_1.7-17.tar.gz) = 318056 diff --git a/science/afni/Makefile b/science/afni/Makefile index 769ec31d6078..34ba89750d14 100644 --- a/science/afni/Makefile +++ b/science/afni/Makefile @@ -1,6 +1,6 @@ PORTNAME= afni DISTVERSIONPREFIX= AFNI_ -DISTVERSION= 25.3.03 +DISTVERSION= 25.3.04 CATEGORIES= science biology graphics perl5 python MAINTAINER= fernape@FreeBSD.org diff --git a/science/afni/distinfo b/science/afni/distinfo index 180cfc9188c5..c7f2994532ab 100644 --- a/science/afni/distinfo +++ b/science/afni/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765278441 -SHA256 (afni-afni-AFNI_25.3.03_GH0.tar.gz) = ee896e0168661fd7d708fa1dd454ab7334ae96bbba7c0ec93e63a5a21c69540d -SIZE (afni-afni-AFNI_25.3.03_GH0.tar.gz) = 53428208 +TIMESTAMP = 1766142229 +SHA256 (afni-afni-AFNI_25.3.04_GH0.tar.gz) = 0079691f2044d0986c2a1bfd10cc3002dafd20b6f97a51983f470c376015eb7c +SIZE (afni-afni-AFNI_25.3.04_GH0.tar.gz) = 53431518 diff --git a/science/gnudatalanguage/Makefile b/science/gnudatalanguage/Makefile index b05b532e61d9..1ff10398c473 100644 --- a/science/gnudatalanguage/Makefile +++ b/science/gnudatalanguage/Makefile @@ -1,6 +1,5 @@ PORTNAME= gnudatalanguage -PORTVERSION= 1.1.1 -PORTREVISION= 3 +PORTVERSION= 1.1.3 DISTVERSIONPREFIX= v CATEGORIES= science lang MASTER_SITES= https://github.com/${PORTNAME}/gdl/releases/download/v${PORTVERSION}/ @@ -128,18 +127,4 @@ post-install: (cd ${WRKSRC}/testsuite && ${COPYTREE_SHARE} \* ${STAGEDIR}${EXAMPLESDIR}/testsuite/) .endif -.if defined(MAINTAINER_MODE) -regression-test: install -. if defined(BUILD_PYTHON_MODULE) - @${ECHO_CMD} 'import GDL' > ${WRKDIR}/testgdl.py - @${ECHO_CMD} 'print GDL.function("sin",(1,))' >> ${WRKDIR}/testgdl.py - ${PYTHON_CMD} ${WRKDIR}/testgdl.py -. else - @${ECHO_CMD} ".RUN ${EXAMPLESDIR}/testsuite/test_suite.pro" \ - > ${WRKDIR}/testgdl - @${ECHO_CMD} "exit" >> ${WRKDIR}/testgdl - ${PREFIX}/bin/gdl < ${WRKDIR}/testgdl -. endif -.endif - .include <bsd.port.mk> diff --git a/science/gnudatalanguage/distinfo b/science/gnudatalanguage/distinfo index 8e691c6239fd..dbdfde76869f 100644 --- a/science/gnudatalanguage/distinfo +++ b/science/gnudatalanguage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1742749829 -SHA256 (gdl-v1.1.1.tar.gz) = 744ed3abcdc5e1bbf31147a8a0c21c33662f200b6096ee3d3adedd160a3a9662 -SIZE (gdl-v1.1.1.tar.gz) = 33813887 +TIMESTAMP = 1766140431 +SHA256 (gdl-v1.1.3.tar.gz) = 7f2b39cec13d7589e7d810ca2197ffb080f80d3de0de440a8cba26e21cadf8a1 +SIZE (gdl-v1.1.3.tar.gz) = 33933705 diff --git a/science/gnudatalanguage/files/patch-testsuite_get__path__to__exe.pro b/science/gnudatalanguage/files/patch-testsuite_get__path__to__exe.pro new file mode 100644 index 000000000000..748a4629e36f --- /dev/null +++ b/science/gnudatalanguage/files/patch-testsuite_get__path__to__exe.pro @@ -0,0 +1,11 @@ +--- testsuite/get_path_to_exe.pro.orig 2025-12-18 17:13:01 UTC ++++ testsuite/get_path_to_exe.pro +@@ -11,7 +11,7 @@ known_case=0 + ; + ; On Linux, this is fine with GDL, IDL & FL + ; +-if (STRLOWCASE(!version.os) EQ 'linux') then begin ++if (STRLOWCASE(!version.os_family) eq 'unix') then begin + get_pid=FILE_READLINK('/proc/self') + get_abspath_to_exe=FILE_READLINK('/proc/'+get_pid+'/exe') + known_case=1 diff --git a/science/gnudatalanguage/pkg-plist b/science/gnudatalanguage/pkg-plist index b3df28380cfd..6c13765948b4 100644 --- a/science/gnudatalanguage/pkg-plist +++ b/science/gnudatalanguage/pkg-plist @@ -37,6 +37,9 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/demo_graphics1.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/demo_graphics2.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/demo_graphics3.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/dlm/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/dlm/testmodule.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/dlm/testmodule.dlm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/errors_add.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/errors_cumul.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/errors_reset.pro @@ -63,6 +66,7 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/hdf5-struct-test.h5 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/idl.xdr %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/indgen_sample.sav +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/example_event_handling.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_all_projs.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_axis.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/interactive_tests/test_besel.pro @@ -111,15 +115,12 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_file_info.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_point_lun.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_ps_decomposed.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_readf.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_skip_lun.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_spawn_unit.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_step.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/spawn_is_dangerous/test_zip.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/string.h5 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-read_ascii.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-read_ascii.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test-swap_endian.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_ac_correlate.pro.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_all_basic_functions.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_angles.pro @@ -147,7 +148,6 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3061072.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3081887.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3085858.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3086851.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3091599.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3091610.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3100945.pro @@ -161,7 +161,6 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3189072.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3199465.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3285659.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3286031.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3290532.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3296360.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3298378.pro @@ -175,7 +174,6 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3559291.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3572473.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_3595172.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_573.tmp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_635.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_635.f90 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_bug_635.pro @@ -221,6 +219,7 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_erfs.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_erode.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_execute.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_expand_path.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_expint.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_extra_keywords.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_factorial.pro @@ -269,6 +268,7 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_idl_validname.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_idlneturl.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_image_statistics.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_imsl_zeropoly.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_indepth_basic_functions.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_indgen.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_interpol.pro @@ -340,7 +340,9 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_qromb.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_qromo.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_r_correlate.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_read_ascii.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_read_jpeg.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_readf.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_readf_with_crlf.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_reads.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_rebin.pro @@ -374,6 +376,7 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_struct_assign.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_structures.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_suite.pro +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_swap_endian.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_systime.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tag_names.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_tic_toc.pro @@ -400,13 +403,13 @@ bin/gdl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_xmlsax.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_xyztick_get.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_zero_divide.pro -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/test_zeropoly.pro %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/24bit_color.tif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/24bit_color.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_geo.tif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_geo.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_tiled.tif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/tiff/8bit_gray_tiled.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/vlen_strings.h5 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/testsuite/wrong/test_sem.pro %%DATADIR%%/AUTHORS %%DATADIR%%/README @@ -438,6 +441,7 @@ bin/gdl %%DATADIR%%/lib/cvttobm.pro %%DATADIR%%/lib/cw_bgroup.pro %%DATADIR%%/lib/cw_bgroup_donotuseyet.pro +%%DATADIR%%/lib/cw_field.pro %%DATADIR%%/lib/define_msgblk.pro %%DATADIR%%/lib/define_msgblk_from_file.pro %%DATADIR%%/lib/delvar.pro @@ -497,10 +501,10 @@ bin/gdl %%DATADIR%%/lib/loadct.pro %%DATADIR%%/lib/make_dll.pro %%DATADIR%%/lib/map/gdl_map_proj_init_common.pro -%%DATADIR%%/lib/map/gdl_set_map_limits.pro %%DATADIR%%/lib/map/gdlcommon_mapprojections_common.pro %%DATADIR%%/lib/map/gdldrawshapecompound.pro %%DATADIR%%/lib/map/gdldrawshapefile.pro +%%DATADIR%%/lib/map/griddata.pro %%DATADIR%%/lib/map/map_adjlon.pro %%DATADIR%%/lib/map/map_clip_set.pro %%DATADIR%%/lib/map/map_continents.pro @@ -651,6 +655,7 @@ bin/gdl %%DATADIR%%/lib/utilities/app_user_dir.pro %%DATADIR%%/lib/utilities/app_user_dir_query.pro %%DATADIR%%/lib/utilities/color2color.pro +%%DATADIR%%/lib/utilities/dlm_register.pro %%DATADIR%%/lib/utilities/funct.pro %%DATADIR%%/lib/utilities/gdl_gaussfunct.pro %%DATADIR%%/lib/utilities/gdl_implied_print.pro @@ -740,3 +745,4 @@ bin/gdl %%DATADIR%%/resource/maps/projections.ods %%DATADIR%%/resource/randomgenerators_parallel.cpp share/man/man1/gdl.1.gz +@dir %%DATADIR%%/dlm diff --git a/security/easy-rsa/Makefile b/security/easy-rsa/Makefile index 4a7e4df1f41f..b10997333c64 100644 --- a/security/easy-rsa/Makefile +++ b/security/easy-rsa/Makefile @@ -1,6 +1,6 @@ PORTNAME= easy-rsa DISTVERSION= 3.2.5 -PORTREVISION= 0 # leave in if 0 to avoid accidental PORTEPOCH bumps +PORTREVISION= 1 # leave in if 0 to avoid accidental PORTEPOCH bumps PORTEPOCH= 1 CATEGORIES= security net-mgmt MASTER_SITES= https://github.com/OpenVPN/easy-rsa/releases/download/v${DISTVERSION}/ \ diff --git a/security/easy-rsa/files/pkg-message.in b/security/easy-rsa/files/pkg-message.in index aa6fcbb7be4b..7094bcc18cdb 100644 --- a/security/easy-rsa/files/pkg-message.in +++ b/security/easy-rsa/files/pkg-message.in @@ -12,8 +12,7 @@ See %%PREFIX%%/share/doc/easy-rsa/README.quickstart.md for further information. An on-line help is available, you can run: - easyrsa help # for help on commands - easyrsa help options # for help on options + easyrsa help # for help on commands and options **** SECURITY WARNING FOR PAST security/easy-rsa versions **** **** easyrsa may have encrypted your CA private key with a weak cipher diff --git a/security/keychain/Makefile b/security/keychain/Makefile index 4f071b73d6fd..304d63403853 100644 --- a/security/keychain/Makefile +++ b/security/keychain/Makefile @@ -1,5 +1,5 @@ PORTNAME= keychain -PORTVERSION= 2.9.6 +PORTVERSION= 2.9.8 CATEGORIES= security MAINTAINER= garga@FreeBSD.org diff --git a/security/keychain/distinfo b/security/keychain/distinfo index 588c263ce07b..18a187f1d543 100644 --- a/security/keychain/distinfo +++ b/security/keychain/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1759928737 -SHA256 (funtoo-keychain-2.9.6_GH0.tar.gz) = 23e58da1f3ea7cbe15069e7d3c730277d0cb6a4bec2db76adc20a06acd4c0a42 -SIZE (funtoo-keychain-2.9.6_GH0.tar.gz) = 51990 +TIMESTAMP = 1766160351 +SHA256 (funtoo-keychain-2.9.8_GH0.tar.gz) = 589cf55ae5c4b65af1d977d705beb319006efca5bcdda8352b8558d0dcff5a84 +SIZE (funtoo-keychain-2.9.8_GH0.tar.gz) = 61665 diff --git a/security/krb5-121/Makefile b/security/krb5-121/Makefile index e5b2c56906d2..3fd6a66b5c37 100644 --- a/security/krb5-121/Makefile +++ b/security/krb5-121/Makefile @@ -43,10 +43,10 @@ CPE_PRODUCT= kerberos FLAVORS= default ldap OPTIONS_DEFINE= EXAMPLES NLS DOCS DNS_FOR_REALM LDAP LMDB -OPTIONS_DEFAULT= DOCS READLINE BUILTIN +OPTIONS_DEFAULT= DOCS READLINE CRYPTO_BUILTIN OPTIONS_RADIO= CMD_LINE_EDITING CRYPTO OPTIONS_RADIO_CMD_LINE_EDITING= READLINE LIBEDIT LIBEDIT_BASE -OPTIONS_RADIO_CRYPTO= BUILTIN OPENSSL +OPTIONS_RADIO_CRYPTO= CRYPTO_BUILTIN CRYPTO_OPENSSL CMD_LINE_EDITING_DESC= Command line editing for kadmin and ktutil DNS_FOR_REALM_DESC= Enable DNS lookups for Kerberos realm names DNS_FOR_REALM_CONFIGURE_ENABLE= dns-for-realm @@ -65,10 +65,10 @@ LIBEDIT_USES= libedit LIBEDIT_CONFIGURE_WITH= libedit LIBEDIT_BASE_CONFIGURE_WITH= libedit LIBEDIT_BASE_DESC= Use libedit in FreeBSD base -BUILTIN_DESC= Use crypto built into KRB5 -BUILTIN_CONFIGURE_ON= --with-crypto-impl=builtin -OPENSSL_DESC= Use OpenSSL crypto -OPENSSL_CONFIGURE_ON= --with-crypto-impl=openssl +CRYPTO_BUILTIN_DESC= Use crypto built into KRB5 +CRYPTO_BUILTIN_CONFIGURE_ON= --with-crypto-impl=builtin +CRYPTO_OPENSSL_DESC= Use OpenSSL crypto +CRYPTO_OPENSSL_CONFIGURE_ON= --with-crypto-impl=openssl .if ${FLAVOR:U} == ldap OPTIONS_DEFAULT+= LDAP LMDB diff --git a/security/krb5-122/Makefile b/security/krb5-122/Makefile index 2ae37b61fd34..af51d1ea6fdc 100644 --- a/security/krb5-122/Makefile +++ b/security/krb5-122/Makefile @@ -42,10 +42,10 @@ CPE_PRODUCT= kerberos FLAVORS= default ldap OPTIONS_DEFINE= EXAMPLES NLS DOCS DNS_FOR_REALM LDAP LMDB -OPTIONS_DEFAULT= DOCS READLINE BUILTIN +OPTIONS_DEFAULT= DOCS READLINE CRYPTO_BUILTIN OPTIONS_RADIO= CMD_LINE_EDITING CRYPTO OPTIONS_RADIO_CMD_LINE_EDITING= READLINE LIBEDIT LIBEDIT_BASE -OPTIONS_RADIO_CRYPTO= BUILTIN OPENSSL +OPTIONS_RADIO_CRYPTO= CRYPTO_BUILTIN CRYPTO_OPENSSL CMD_LINE_EDITING_DESC= Command line editing for kadmin and ktutil DNS_FOR_REALM_DESC= Enable DNS lookups for Kerberos realm names DNS_FOR_REALM_CONFIGURE_ENABLE= dns-for-realm @@ -64,10 +64,10 @@ LIBEDIT_USES= libedit LIBEDIT_CONFIGURE_WITH= libedit LIBEDIT_BASE_CONFIGURE_WITH= libedit LIBEDIT_BASE_DESC= Use libedit in FreeBSD base -BUILTIN_DESC= Use crypto built into KRB5 -BUILTIN_CONFIGURE_ON= --with-crypto-impl=builtin -OPENSSL_DESC= Use OpenSSL crypto -OPENSSL_CONFIGURE_ON= --with-crypto-impl=openssl +CRYPTO_BUILTIN_DESC= Use crypto built into KRB5 +CRYPTO_BUILTIN_CONFIGURE_ON= --with-crypto-impl=builtin +CRYPTO_OPENSSL_DESC= Use OpenSSL crypto +CRYPTO_OPENSSL_CONFIGURE_ON= --with-crypto-impl=openssl .if ${FLAVOR:U} == ldap OPTIONS_DEFAULT+= LDAP LMDB diff --git a/security/krb5-devel/Makefile b/security/krb5-devel/Makefile index b7f77986aee8..0bb9349d6ca7 100644 --- a/security/krb5-devel/Makefile +++ b/security/krb5-devel/Makefile @@ -45,10 +45,10 @@ CPE_PRODUCT= kerberos FLAVORS= default ldap OPTIONS_DEFINE= EXAMPLES NLS DNS_FOR_REALM LDAP LMDB -OPTIONS_DEFAULT= KRB5_PDF KRB5_HTML READLINE BUILTIN +OPTIONS_DEFAULT= KRB5_PDF KRB5_HTML READLINE CRYPTO_BUILTIN OPTIONS_RADIO= CMD_LINE_EDITING CRYPTO OPTIONS_RADIO_CMD_LINE_EDITING= READLINE LIBEDIT LIBEDIT_BASE -OPTIONS_RADIO_CRYPTO= BUILTIN OPENSSL +OPTIONS_RADIO_CRYPTO= CRYPTO_BUILTIN CRYPTO_OPENSSL CMD_LINE_EDITING_DESC= Command line editing for kadmin and ktutil DNS_FOR_REALM_DESC= Enable DNS lookups for Kerberos realm names DNS_FOR_REALM_CONFIGURE_ENABLE= dns-for-realm @@ -67,10 +67,10 @@ LIBEDIT_USES= libedit LIBEDIT_CONFIGURE_WITH= libedit LIBEDIT_BASE_CONFIGURE_WITH= libedit LIBEDIT_BASE_DESC= Use libedit in FreeBSD base -BUILTIN_DESC= Use crypto built into KRB5 -BUILTIN_CONFIGURE_ON= --with-crypto-impl=builtin -OPENSSL_DESC= Use OpenSSL crypto -OPENSSL_CONFIGURE_ON= --with-crypto-impl=openssl +CRYPTO_BUILTIN_DESC= Use crypto built into KRB5 +CRYPTO_BUILTIN_CONFIGURE_ON= --with-crypto-impl=builtin +CRYPTO_OPENSSL_DESC= Use OpenSSL crypto +CRYPTO_OPENSSL_CONFIGURE_ON= --with-crypto-impl=openssl .if ${FLAVOR:U} == ldap OPTIONS_DEFAULT+= LDAP LMDB diff --git a/security/snuffleupagus/Makefile b/security/snuffleupagus/Makefile index 5783534cd0a0..51cb5fe20f1d 100644 --- a/security/snuffleupagus/Makefile +++ b/security/snuffleupagus/Makefile @@ -8,7 +8,7 @@ PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ PATCHFILES= b005df2.patch:-p2 -MAINTAINER= franco@opnsense.org +MAINTAINER= ports@FreeBSD.org COMMENT= Security module for PHP WWW= https://snuffleupagus.readthedocs.io/ diff --git a/security/sqlmap/Makefile b/security/sqlmap/Makefile index b22c8675730e..5ce8ab82c277 100644 --- a/security/sqlmap/Makefile +++ b/security/sqlmap/Makefile @@ -1,5 +1,5 @@ PORTNAME= sqlmap -PORTVERSION= 1.8 +PORTVERSION= 1.9.12 CATEGORIES= security python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -18,7 +18,10 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} USES= python shebangfix USE_PYTHON= autoplist pep517 -SHEBANG_FILES= *.py sqlmap/extra/shutils/*.sh sqlmap/extra/shutils/*.py +SHEBANG_FILES= *.py sqlmap/extra/shutils/*.sh sqlmap/extra/shutils/*.py \ + sqlmap/plugins/dbms/clickhouse/*.py \ + sqlmap/thirdparty/identywaf/identYwaf.py + NO_ARCH= yes OPTIONS_DEFINE= MSF diff --git a/security/sqlmap/distinfo b/security/sqlmap/distinfo index 396332c41449..ea6d5a319c34 100644 --- a/security/sqlmap/distinfo +++ b/security/sqlmap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1716077230 -SHA256 (sqlmap-1.8.tar.gz) = 8dbb204ee36e57c123ff50f042345174dfd262f3ed0a044ed8d7251379472ba1 -SIZE (sqlmap-1.8.tar.gz) = 7208171 +TIMESTAMP = 1766217194 +SHA256 (sqlmap-1.9.12.tar.gz) = 0b3f37ccb8c6aaf0e3c15166322e001c1f0961bc601e44272875d5c32c44a757 +SIZE (sqlmap-1.9.12.tar.gz) = 7216017 diff --git a/security/suricata/Makefile b/security/suricata/Makefile index 6d56f51eba60..14275450849d 100644 --- a/security/suricata/Makefile +++ b/security/suricata/Makefile @@ -4,7 +4,7 @@ PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://www.openinfosecfoundation.org/download/ -MAINTAINER= franco@opnsense.org +MAINTAINER= bofh@FreeBSD.org COMMENT= High Performance Network IDS, IPS and Security Monitoring engine WWW= https://suricata.io diff --git a/security/vuxml/vuln/2025.xml b/security/vuxml/vuln/2025.xml index 8daf847a93d7..3e5428cd52a1 100644 --- a/security/vuxml/vuln/2025.xml +++ b/security/vuxml/vuln/2025.xml @@ -1,3 +1,97 @@ + <vuln vid="c32cb4b7-ddcb-11f0-902c-b42e991fc52e"> + <topic>smb4k -- Critical vulnerabilities in Mount Helper</topic> + <affects> +<package> +<name>smb4k</name> +<range><lt>4.0.4</lt></range> +</package> + </affects> + <description> + <body xmlns="http://www.w3.org/1999/xhtml"> + <p>vulndb reports:</p> + <blockquote cite="https://vuldb.com/?id.336198"> + <p>A vulnerability, which was classified as critical, was + found in smb4k up to 4.0.4. Affected is some unknown + functionality of the component Mount Helper. The + manipulation with an unknown input leads to a access control + vulnerability. CWE is classifying the issue as CWE-284. The + product does not restrict or incorrectly restricts access to + a resource from an unauthorized actor. This is going to have + an impact on integrity, and availability. The advisory is + available at seclists.org. The exploitability is told to be + easy. Local access is required to approach this attack. The + technical details are unknown and an exploit is not + available.</p> + </blockquote> + </body> + </description> + <references> + <cvename>CVE-2025-66002</cvename> + <url>https://vuldb.com/?id.336198</url> + <cvename>CVE-2025-66003</cvename> + <url>https://vuldb.com/?id.336199</url> + </references> + <dates> + <discovery>2025-12-20</discovery> + <entry>2025-12-20</entry> + </dates> + </vuln> + + <vuln vid="2a33d28e-ddc0-11f0-902c-b42e991fc52e"> + <topic>Firefox -- Use-after-free</topic> + <affects> + <package> + <name>firefox</name> + <range><lt>146.0.1,2</lt></range> + </package> + </affects> + <description> + <body xmlns="http://www.w3.org/1999/xhtml"> + <p>https://bugzilla.mozilla.org/show_bug.cgi?id=2000597 reports:</p> + <blockquote cite="https://bugzilla.mozilla.org/show_bug.cgi?id=2000597"> + <p>Use-after-free in the Disability Access APIs component.</p> + </blockquote> + </body> + </description> + <references> + <cvename>CVE-2025-14860</cvename> + <url>https://cveawg.mitre.org/api/cve/CVE-2025-14860</url> + </references> + <dates> + <discovery>2025-12-18</discovery> + <entry>2025-12-20</entry> + </dates> + </vuln> + + <vuln vid="23437e07-ddc0-11f0-902c-b42e991fc52e"> + <topic>Firefox -- Memory safety bugs</topic> + <affects> + <package> + <name>firefox</name> + <range><lt>146.0.1,2</lt></range> + </package> + </affects> + <description> + <body xmlns="http://www.w3.org/1999/xhtml"> + <p>https://bugzilla.mozilla.org/buglist.cgi?bug_id=1996570%2C1999700 reports:</p> + <blockquote cite="https://bugzilla.mozilla.org/buglist.cgi?bug_id=1996570%2C1999700"> + <p>Memory safety bugs present in Firefox 146. Some of these + bugs showed evidence of memory corruption and we presume + that with enough effort some of these could have been + exploited to run arbitrary code.</p> + </blockquote> + </body> + </description> + <references> + <cvename>CVE-2025-14861</cvename> + <url>https://cveawg.mitre.org/api/cve/CVE-2025-14861</url> + </references> + <dates> + <discovery>2025-12-18</discovery> + <entry>2025-12-20</entry> + </dates> + </vuln> + <vuln vid="f99e70c2-dcb8-11f0-a15a-a8a1599412c6"> <topic>chromium -- multiple security fixes</topic> <affects> diff --git a/security/wazuh-manager/distinfo b/security/wazuh-manager/distinfo index b6ada3611ec3..2dcbd4f32364 100644 --- a/security/wazuh-manager/distinfo +++ b/security/wazuh-manager/distinfo @@ -67,12 +67,12 @@ SHA256 (wazuh-4.14.1/wazuh-cache-fbsd14-amd64-4.14.1.tar.gz) = f2b26a36b116348e3 SIZE (wazuh-4.14.1/wazuh-cache-fbsd14-amd64-4.14.1.tar.gz) = 25055515 SHA256 (wazuh-4.14.1/wazuh-cache-fbsd15-aarch64-4.14.1.tar.gz) = c63484af8fd157f61b6bf0297b4233c3e2a3eee481f35c7d15fcb5b90d711489 SIZE (wazuh-4.14.1/wazuh-cache-fbsd15-aarch64-4.14.1.tar.gz) = 24690859 -SHA256 (wazuh-4.14.1/wazuh-cache-fbsd15-amd64-4.14.1.tar.gz) = bf77697d47df3eeb6ccc0d1e43841f5dd3570a7e11e8dd669d5098890b985657 -SIZE (wazuh-4.14.1/wazuh-cache-fbsd15-amd64-4.14.1.tar.gz) = 26650464 +SHA256 (wazuh-4.14.1/wazuh-cache-fbsd15-amd64-4.14.1.tar.gz) = 3818a9e752e29e661d4b577b3fb0a5a8bf691da6bde264453f2323d37b46408e +SIZE (wazuh-4.14.1/wazuh-cache-fbsd15-amd64-4.14.1.tar.gz) = 26650237 SHA256 (wazuh-4.14.1/wazuh-cache-fbsd16-aarch64-4.14.1.tar.gz) = 1510ef710bcae78e22db88f443504d006e9e4b45d27c66bb84984211409f7e65 SIZE (wazuh-4.14.1/wazuh-cache-fbsd16-aarch64-4.14.1.tar.gz) = 24863114 -SHA256 (wazuh-4.14.1/wazuh-cache-fbsd16-amd64-4.14.1.tar.gz) = f706a10b1e31dc959e1751a015b3ec2e74ddbda0362ab192ba3918852731635c -SIZE (wazuh-4.14.1/wazuh-cache-fbsd16-amd64-4.14.1.tar.gz) = 26653845 +SHA256 (wazuh-4.14.1/wazuh-cache-fbsd16-amd64-4.14.1.tar.gz) = 03e92ad3b8cc1d06f9e31d07aa13d1ba3dca85b302d869ec5ec3a2b517d3dbf0 +SIZE (wazuh-4.14.1/wazuh-cache-fbsd16-amd64-4.14.1.tar.gz) = 26653557 SHA256 (wazuh-4.14.1/wazuh-wazuh-v4.14.1_GH0.tar.gz) = aa59cb2baa7e7d38d8bb4ff6a22afbf2945de4fb555f9b8bb2657b6f89a773ed SIZE (wazuh-4.14.1/wazuh-wazuh-v4.14.1_GH0.tar.gz) = 19810038 SHA256 (wazuh-4.14.1/alonsobsd-wazuh-freebsd-2f1307c_GH0.tar.gz) = a955c569217122779ab5b6b58bdfabbfa1cd452b4719cc35c791f7047b1f364f diff --git a/security/xray-core/Makefile b/security/xray-core/Makefile index 8874c68da3a4..744509ed5a3c 100644 --- a/security/xray-core/Makefile +++ b/security/xray-core/Makefile @@ -1,6 +1,7 @@ PORTNAME= xray-core DISTVERSIONPREFIX= v DISTVERSION= 25.12.8 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://github.com/v2fly/geoip/releases/download/202512050148/:geoip \ https://github.com/v2fly/domain-list-community/releases/download/20251212112114/:geosite diff --git a/security/xray-core/files/xray.in b/security/xray-core/files/xray.in index 87516c9759d0..18c9beeb4f5c 100644 --- a/security/xray-core/files/xray.in +++ b/security/xray-core/files/xray.in @@ -20,6 +20,8 @@ name="xray" rcvar="xray_enable" +load_rc_config "$name" + : ${xray_enable="NO"} : ${xray_config="%%PREFIX%%/etc/${name}-core"} : ${xray_logdir="/var/log/${name}-core"} @@ -43,5 +45,4 @@ xray_startprecmd() { chown -R ${xray_user}:${xray_group} "${xray_logdir}" } -load_rc_config "$name" run_rc_command "$1" diff --git a/shells/xonsh/Makefile b/shells/xonsh/Makefile index 066d58833f42..fa37959a1843 100644 --- a/shells/xonsh/Makefile +++ b/shells/xonsh/Makefile @@ -1,5 +1,5 @@ PORTNAME= xonsh -DISTVERSION= 0.21.2 +DISTVERSION= 0.22.0 CATEGORIES= shells python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/shells/xonsh/distinfo b/shells/xonsh/distinfo index 845fc291df7f..7a0e68081d64 100644 --- a/shells/xonsh/distinfo +++ b/shells/xonsh/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765482511 -SHA256 (xonsh-0.21.2.tar.gz) = 85bdc5577e22f587b3a3be7b5789335dbf9efb25e2f5f9d7a518eb7db39307aa -SIZE (xonsh-0.21.2.tar.gz) = 818375 +TIMESTAMP = 1766182822 +SHA256 (xonsh-0.22.0.tar.gz) = e4bd25a1d6be698444634212029109cefedccc3a6a85f2bacfde33bfd5461488 +SIZE (xonsh-0.22.0.tar.gz) = 820314 diff --git a/sysutils/Makefile b/sysutils/Makefile index 2ce5f3d8dc01..7b71b1c7ea29 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -1101,6 +1101,7 @@ SUBDIR += py-queuelib SUBDIR += py-ranger SUBDIR += py-rdiff-backup + SUBDIR += py-rendercv SUBDIR += py-resolve-march-native SUBDIR += py-salt SUBDIR += py-salt-tower diff --git a/sysutils/consul/Makefile b/sysutils/consul/Makefile index d83c39158ed1..4134ca82c27c 100644 --- a/sysutils/consul/Makefile +++ b/sysutils/consul/Makefile @@ -1,7 +1,6 @@ PORTNAME= consul DISTVERSIONPREFIX= v -DISTVERSION= 1.22.1 -PORTREVISION= 1 +DISTVERSION= 1.22.2 CATEGORIES= sysutils MASTER_SITES= https://raw.githubusercontent.com/hashicorp/consul/${DISTVERSIONFULL}/ DISTFILES= go.mod \ @@ -44,7 +43,7 @@ CONSUL_USER?= consul CONSUL_GROUP?= consul CONSUL_DBDIR?= /var/db/${PORTNAME} -GITID= 3831feb +GITID= 71f21bf # Bring DISTINFO_FILE into scope so we can get the timestamp. .include <bsd.port.pre.mk> diff --git a/sysutils/consul/distinfo b/sysutils/consul/distinfo index a8d81b856758..6795f6cea0da 100644 --- a/sysutils/consul/distinfo +++ b/sysutils/consul/distinfo @@ -1,15 +1,15 @@ -TIMESTAMP = 1764317920 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/go.mod) = 1231f01a41aa03813ba3daf8fea306c36df5a2b265fe9d89595fcf0b66ac657e -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/go.mod) = 15516 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/api/go.mod) = 7f88971c6f3605924f215b20b52cb87dbc11f85b5a4468f23cca5a9bc3e5a673 -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/api/go.mod) = 1910 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/envoyextensions/go.mod) = 300f8d29f91a03b0e64698b5e3a5121f62bbb9c5f05fe3f74daf90b9956bfbd6 -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/envoyextensions/go.mod) = 2128 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/proto-public/go.mod) = 5c6add582bbee29f43f38f40ce894606ca8754c8df642cb604f8e3b48db14f59 -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/proto-public/go.mod) = 343 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/sdk/go.mod) = 9dc73c35e3549431c5f5b75c0e02b59bb125b2d2e9d0387aadde4e7fca45b1d3 -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/sdk/go.mod) = 822 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/troubleshoot/go.mod) = df3b54e0d481f30a2451ba35635ec5ef655f43da70086a8b8dc261f0cf6b4997 -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/troubleshoot/go.mod) = 2915 -SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/hashicorp-consul-v1.22.1_GH0.tar.gz) = 3a397f1d9e10fabf7dba713e633406efe73f2192ef6c8b5a9e21c975bfb7e460 -SIZE (go/sysutils_consul/hashicorp-consul-v1.22.1_GH0/hashicorp-consul-v1.22.1_GH0.tar.gz) = 50628621 +TIMESTAMP = 1766220396 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/go.mod) = 0765401cc9fceb26588fc6ec31c31f9e5899894bc8e00185110f3fe35ec8281b +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/go.mod) = 15516 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/api/go.mod) = 9666057ddfbd6aff9a070a9d7c3d4f1fcfcda9545f1b09d67d13d20c9f341886 +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/api/go.mod) = 1910 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/envoyextensions/go.mod) = f40812e29b5972b71ec65de3c255656d838b13a1769b3b07cc917893586f2251 +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/envoyextensions/go.mod) = 2128 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/proto-public/go.mod) = 43a50190b5a07b33f2eef063b997c763645fe83b8bff54901cfb288eb48b69a2 +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/proto-public/go.mod) = 343 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/sdk/go.mod) = 774954de6ececabaf766bfa1ec81d58c5e39feef43023110a68b45b2c79789cc +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/sdk/go.mod) = 822 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/troubleshoot/go.mod) = c6266774a745ad0ebb86d5c5613f1c004d600e43ec4376b061bff1accdb504a4 +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/troubleshoot/go.mod) = 2915 +SHA256 (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/hashicorp-consul-v1.22.2_GH0.tar.gz) = 61124ea62fa4eb34f2367648a331d20a5916915e38efeb9d8eb96cbb84da81de +SIZE (go/sysutils_consul/hashicorp-consul-v1.22.2_GH0/hashicorp-consul-v1.22.2_GH0.tar.gz) = 50618145 diff --git a/sysutils/containerd/Makefile b/sysutils/containerd/Makefile index c7d24e5df0e4..34c801f0b405 100644 --- a/sysutils/containerd/Makefile +++ b/sysutils/containerd/Makefile @@ -1,6 +1,6 @@ PORTNAME= containerd DISTVERSIONPREFIX=v -DISTVERSION= 2.2.0 +DISTVERSION= 2.2.1 CATEGORIES= sysutils MAINTAINER= decke@FreeBSD.org diff --git a/sysutils/containerd/distinfo b/sysutils/containerd/distinfo index 5f50b9428fcc..17ca95c5a6db 100644 --- a/sysutils/containerd/distinfo +++ b/sysutils/containerd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1766089181 -SHA256 (containerd-containerd-v2.2.0_GH0.tar.gz) = 86e7a268fc73f5332522baef86082c1d6c17986e2957a9ad842ead35d1080fca -SIZE (containerd-containerd-v2.2.0_GH0.tar.gz) = 11475770 +TIMESTAMP = 1766133382 +SHA256 (containerd-containerd-v2.2.1_GH0.tar.gz) = af5707a26891486332142cc0ade4f0c543f707d3954838f5cecee73b833cf9b4 +SIZE (containerd-containerd-v2.2.1_GH0.tar.gz) = 11492859 diff --git a/sysutils/flock/Makefile b/sysutils/flock/Makefile index af2350634725..9497e5e74ae7 100644 --- a/sysutils/flock/Makefile +++ b/sysutils/flock/Makefile @@ -1,12 +1,10 @@ PORTNAME= flock -PORTVERPREFIX= 2.37 -PORTVERSION= ${PORTVERPREFIX}.2 -PORTREVISION= 1 +PORTVERSION= 2.41.3 CATEGORIES= sysutils -MASTER_SITES= KERNEL_ORG/linux/utils/util-linux/v${PORTVERPREFIX}/ +MASTER_SITES= KERNEL_ORG/linux/utils/util-linux/v${PORTVERSION:R}/ DISTNAME= util-linux-${PORTVERSION} -MAINTAINER= franco@opnsense.org +MAINTAINER= garga@FreeBSD.org COMMENT= Manage locks from shell scripts WWW= https://www.kernel.org/pub/linux/utils/util-linux/ @@ -16,9 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= libtool pkgconfig GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-nls +CONFIGURE_ARGS= --disable-liblastlog2 --disable-nls -CFLAGS= -D_WITH_CPU_SET_T +CFLAGS+= -D_WITH_CPU_SET_T PLIST_FILES= bin/flock share/man/man1/flock.1.gz \ etc/bash_completion.d/flock diff --git a/sysutils/flock/distinfo b/sysutils/flock/distinfo index e570a67f7445..81ce561ff9d8 100644 --- a/sysutils/flock/distinfo +++ b/sysutils/flock/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1640072142 -SHA256 (util-linux-2.37.2.tar.gz) = 15db966474e459b33fa390a6b892190a92079a73ca45384cde4c86e6ed265a86 -SIZE (util-linux-2.37.2.tar.gz) = 12232498 +TIMESTAMP = 1766159136 +SHA256 (util-linux-2.41.3.tar.gz) = 24160e7c3bfc6feecb9076706437fdb1212817549aaf9b4408f5a8e0b94e3eca +SIZE (util-linux-2.41.3.tar.gz) = 20687833 diff --git a/sysutils/opentofu/Makefile b/sysutils/opentofu/Makefile index a7d8298f62ac..05730c7ed79d 100644 --- a/sysutils/opentofu/Makefile +++ b/sysutils/opentofu/Makefile @@ -1,6 +1,6 @@ PORTNAME= opentofu DISTVERSIONPREFIX= v -DISTVERSION= 1.11.1 +DISTVERSION= 1.11.2 CATEGORIES= sysutils MAINTAINER= bofh@FreeBSD.org @@ -10,7 +10,7 @@ WWW= https://opentofu.org/ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:1.25,modules +USES= go:modules GO_MODULE= github.com/opentofu/opentofu GO_TARGET= ./cmd/tofu GO_BUILDFLAGS= -o bin/ diff --git a/sysutils/opentofu/distinfo b/sysutils/opentofu/distinfo index 48860a5fe3ec..19c8e66b17c5 100644 --- a/sysutils/opentofu/distinfo +++ b/sysutils/opentofu/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1765709105 -SHA256 (go/sysutils_opentofu/opentofu-v1.11.1/v1.11.1.mod) = acb009cfc614d9cbee62cdef67c24c51929ef58dcda02490419a91daed29f5cf -SIZE (go/sysutils_opentofu/opentofu-v1.11.1/v1.11.1.mod) = 17136 -SHA256 (go/sysutils_opentofu/opentofu-v1.11.1/v1.11.1.zip) = 0c6aa7bcd31cc17ec1f751e2ae654867636b69f7c8c8a63190d6afebcc14341c -SIZE (go/sysutils_opentofu/opentofu-v1.11.1/v1.11.1.zip) = 7006172 +TIMESTAMP = 1766220684 +SHA256 (go/sysutils_opentofu/opentofu-v1.11.2/v1.11.2.mod) = 3c52d38ad621e98d1c069fa595d7968dd3f83b7f1416af0ed2225a0e1e45f71e +SIZE (go/sysutils_opentofu/opentofu-v1.11.2/v1.11.2.mod) = 17136 +SHA256 (go/sysutils_opentofu/opentofu-v1.11.2/v1.11.2.zip) = d19b6c43b8ed5d301a28c1bd7c8c9558beeb2305321a0696a0966945656f267c +SIZE (go/sysutils_opentofu/opentofu-v1.11.2/v1.11.2.zip) = 6998754 diff --git a/sysutils/pfstat/Makefile b/sysutils/pfstat/Makefile index a89e00609971..7062f41a81f8 100644 --- a/sysutils/pfstat/Makefile +++ b/sysutils/pfstat/Makefile @@ -1,23 +1,24 @@ PORTNAME= pfstat -PORTVERSION= 2.5 -PORTREVISION= 8 +DISTVERSION= 2.5 +PORTREVISION= 9 CATEGORIES= sysutils net MASTER_SITES= https://www.benzedrine.ch/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= rootnode+freebsd@wollwage.com COMMENT= Utility to render graphical statistics for pf WWW= https://www.benzedrine.ch/pfstat.html LICENSE= BSD2CLAUSE LIB_DEPENDS= libgd.so:graphics/gd \ + libpfctl.so:net/libpfctl \ libpng.so:graphics/png -USES= iconv jpeg - +USES= iconv jpeg localbase:ldflags USE_RC_SUBR= pfstatd -MAKE_ARGS= "LD_GD=gd" +CFLAGS+= -I/usr/include/net +LDFLAGS+= -lpfctl PLIST_FILES= bin/pfstat \ bin/pfstatd \ @@ -25,16 +26,13 @@ PLIST_FILES= bin/pfstat \ share/man/man8/pfstatd.8.gz post-patch: - @${REINPLACE_CMD} -e 's|-lgd|-l$${LD_GD}|; s| -lttf||' \ - ${WRKSRC}/Makefile @${REINPLACE_CMD} -e "s|/etc/|${PREFIX}/etc/|" \ ${WRKSRC}/pfstat.[c8] - @${REINPLACE_CMD} 's|altq/|net/&|' ${WRKSRC}/pf.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/pfstat ${STAGEDIR}/${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/pfstatd/pfstatd ${STAGEDIR}/${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/pfstat.8 ${STAGEDIR}/${PREFIX}/share/man/man8 - ${INSTALL_MAN} ${WRKSRC}/pfstatd/pfstatd.8 ${STAGEDIR}/${PREFIX}/share/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/pfstat \ + ${WRKSRC}/pfstatd/pfstatd ${STAGEDIR}/${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/pfstat.8 \ + ${WRKSRC}/pfstatd/pfstatd.8 ${STAGEDIR}/${PREFIX}/share/man/man8 .include <bsd.port.mk> diff --git a/sysutils/pfstat/files/patch-pf.c b/sysutils/pfstat/files/patch-pf.c new file mode 100644 index 000000000000..a5ee52b7b909 --- /dev/null +++ b/sysutils/pfstat/files/patch-pf.c @@ -0,0 +1,50 @@ +--- pf.c.orig 2007-01-11 16:01:58 UTC ++++ pf.c +@@ -46,6 +46,7 @@ static const char rcsid[] = "$Id: pf.c,v 1.1.1.1 2007/ + #include <err.h> + #include <errno.h> + #include <fcntl.h> ++#include <libpfctl.h> + #include <stdio.h> + #include <stdlib.h> + #include <string.h> +@@ -167,20 +168,29 @@ query_counters(int fd, void (*cb)(int, const char *, i + static int + query_counters(int fd, void (*cb)(int, const char *, int, double)) + { +- struct pf_status s; +- int i; ++ struct pfctl_status *s; ++ struct pfctl_status_counter *np; + +- memset(&s, 0, sizeof(s)); +- if (ioctl(fd, DIOCGETSTATUS, &s)) { +- fprintf(stderr, "ioctl: DIOCGETSTATUS: %s\n", strerror(errno)); ++ s = pfctl_get_status(fd); ++ if (s == NULL) { ++ fputs("pfctl_get_status failure.\n",stderr); + return (1); + } +- (*cb)(COL_TYPE_SINCE, "", 0, s.since); +- (*cb)(COL_TYPE_GLOBAL, "", 0, s.states); +- for (i = 0; i < FCNT_MAX; ++i) +- (*cb)(COL_TYPE_GLOBAL, "", 1 + i, s.fcounters[i]); +- for (i = 0; i < PFRES_MAX; ++i) +- (*cb)(COL_TYPE_GLOBAL, "", 1 + FCNT_MAX + i, s.counters[i]); ++ ++ (*cb)(COL_TYPE_SINCE, "", 0, s->since); ++ (*cb)(COL_TYPE_GLOBAL, "", 0, s->states); ++ ++ TAILQ_FOREACH(np, &s->fcounters, entry) { ++ if (np->id < FCNT_MAX) ++ (*cb)(COL_TYPE_GLOBAL, "", 1 + np->id, np->counter); ++ } ++ ++ TAILQ_FOREACH(np, &s->counters, entry) { ++ if (np->id < PFRES_MAX) ++ (*cb)(COL_TYPE_GLOBAL, "", 1 + FCNT_MAX + np->id, np->counter); ++ } ++ ++ pfctl_free_status(s); + return (0); + } diff --git a/sysutils/py-hcloud/Makefile b/sysutils/py-hcloud/Makefile index 6c7e24195143..b40c2c92102e 100644 --- a/sysutils/py-hcloud/Makefile +++ b/sysutils/py-hcloud/Makefile @@ -1,5 +1,5 @@ PORTNAME= hcloud -DISTVERSION= 2.12.0 +DISTVERSION= 2.13.0 CATEGORIES= sysutils python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/py-hcloud/distinfo b/sysutils/py-hcloud/distinfo index 7e211ca87b40..95367c84c550 100644 --- a/sysutils/py-hcloud/distinfo +++ b/sysutils/py-hcloud/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765457422 -SHA256 (hcloud-2.12.0.tar.gz) = f145b18efc6d70fff3d48b244edfde29c0fe3dddfbbadcfe71d63f41f52441f7 -SIZE (hcloud-2.12.0.tar.gz) = 152256 +TIMESTAMP = 1766235980 +SHA256 (hcloud-2.13.0.tar.gz) = 974b22a36c347e113ff8b25abd2cd3868011288485192b562729dba6b22375e1 +SIZE (hcloud-2.13.0.tar.gz) = 153639 diff --git a/sysutils/py-rendercv/Makefile b/sysutils/py-rendercv/Makefile new file mode 100644 index 000000000000..4eb46c2ca27c --- /dev/null +++ b/sysutils/py-rendercv/Makefile @@ -0,0 +1,43 @@ +PORTNAME= rendercv +DISTVERSION= 2.5 +CATEGORIES= sysutils python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT= Typst-based CV/resume generator +WWW= https://github.com/rendercv/rendercv \ + https://pypi.org/project/rendercv + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}uv-build>=0:devel/py-uv-build@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}phonenumbers>=0:devel/py-phonenumbers@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic2>=0:devel/py-pydantic2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic-extra-types>=0:devel/py-pydantic-extra-types@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}email-validator>=0:mail/py-email-validator@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ruamel.yaml>=0:devel/py-ruamel.yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist pep517 + +NO_ARCH= yes + +OPTIONS_DEFINE= CLI MARKDOWN WATCHDOG TYPST FONT +OPTIONS_DEFAULT= CLI MARKDOWN WATCHDOG TYPST FONT + +CLI_DESC= Enable Command-line interface support +MARKDOWN_DESC= Convert Markdown to HTML +WATCHDOG_DESC= Monitor files for updates +TYPST_DESC= Render PDF from Typst source files +FONT_DESC= Font files for RenderCV + +CLI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}typer>=0:devel/py-typer@${PY_FLAVOR} +MARKDOWN_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}markdown>=0:textproc/py-markdown@${PY_FLAVOR} +WATCHDOG_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}watchdog>=0:devel/py-watchdog@${PY_FLAVOR} +TYPST_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}typst>=0:textproc/py-typst@${PY_FLAVOR} +FONT_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}rendercv-fonts>=0:x11-fonts/py-rendercv-fonts@${PY_FLAVOR} + +.include <bsd.port.mk> diff --git a/sysutils/py-rendercv/distinfo b/sysutils/py-rendercv/distinfo new file mode 100644 index 000000000000..c6f5b4128d33 --- /dev/null +++ b/sysutils/py-rendercv/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1766178034 +SHA256 (rendercv-2.5.tar.gz) = 7e5b51c7ed4340fa2e78084a3d74aa4784aa3e42e53d585c3c8433082982434b +SIZE (rendercv-2.5.tar.gz) = 77147 diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_cli_error__handler.py b/sysutils/py-rendercv/files/patch-src_rendercv_cli_error__handler.py new file mode 100644 index 000000000000..7c8350de5c53 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_cli_error__handler.py @@ -0,0 +1,20 @@ +--- src/rendercv/cli/error_handler.py.orig 2025-12-20 00:46:25 UTC ++++ src/rendercv/cli/error_handler.py +@@ -8,7 +8,7 @@ from rendercv.exception import RenderCVUserError + from rendercv.exception import RenderCVUserError + + +-def handle_user_errors[T, **P](function: Callable[P, None]) -> Callable[P, None]: ++def handle_user_errors(function): + """Decorator that catches user errors and displays friendly messages without stack traces. + + Why: +@@ -33,7 +33,7 @@ def handle_user_errors[T, **P](function: Callable[P, N + """ + + @functools.wraps(function) +- def wrapper(*args: P.args, **kwargs: P.kwargs) -> None: ++ def wrapper(*args, **kwargs) -> None: + try: + return function(*args, **kwargs) + except RenderCVUserError as e: diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_cli_render__command_run__rendercv.py b/sysutils/py-rendercv/files/patch-src_rendercv_cli_render__command_run__rendercv.py new file mode 100644 index 000000000000..3ede1d8e2ce3 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_cli_render__command_run__rendercv.py @@ -0,0 +1,21 @@ +--- src/rendercv/cli/render_command/run_rendercv.py.orig 2025-12-20 00:43:25 UTC ++++ src/rendercv/cli/render_command/run_rendercv.py +@@ -19,13 +19,13 @@ from .progress_panel import ProgressPanel + from .progress_panel import ProgressPanel + + +-def timed_step[T, **P]( ++def timed_step( + message: str, + progress_panel: ProgressPanel, +- func: Callable[P, T], +- *args: P.args, +- **kwargs: P.kwargs, +-) -> T: ++ func, ++ *args, ++ **kwargs, ++): + """Execute function, measure timing, and update progress panel with result. + + Why: diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_renderer_templater_entry__templates__from__input.py b/sysutils/py-rendercv/files/patch-src_rendercv_renderer_templater_entry__templates__from__input.py new file mode 100644 index 000000000000..d3fbd6e1175e --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_renderer_templater_entry__templates__from__input.py @@ -0,0 +1,20 @@ +--- src/rendercv/renderer/templater/entry_templates_from_input.py.orig 2025-12-20 00:49:48 UTC ++++ src/rendercv/renderer/templater/entry_templates_from_input.py +@@ -14,14 +14,14 @@ uppercase_word_pattern = re.compile(r"\b[A-Z_]+\b") + uppercase_word_pattern = re.compile(r"\b[A-Z_]+\b") + + +-def render_entry_templates[EntryType: Entry]( +- entry: EntryType, ++def render_entry_templates( ++ entry, + *, + templates: Templates, + locale: Locale, + show_time_span: bool, + current_date: Date, +-) -> EntryType: ++): + """Expand entry templates by substituting field placeholders with processed values. + + Why: diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_entries_bases_entry__with__complex__fields.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_entries_bases_entry__with__complex__fields.py new file mode 100644 index 000000000000..c3e40f6ba6fd --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_entries_bases_entry__with__complex__fields.py @@ -0,0 +1,11 @@ +--- src/rendercv/schema/models/cv/entries/bases/entry_with_complex_fields.py.orig 2025-12-19 21:42:57 UTC ++++ src/rendercv/schema/models/cv/entries/bases/entry_with_complex_fields.py +@@ -37,7 +37,7 @@ def validate_exact_date(date: str | int) -> str | int: + return date + + +-type ExactDate = Annotated[str | int, pydantic.AfterValidator(validate_exact_date)] ++ExactDate = Annotated[str | int, pydantic.AfterValidator(validate_exact_date)] + + + def get_date_object(date: str | int, current_date: Date | None = None) -> Date: diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_entries_bases_entry__with__date.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_entries_bases_entry__with__date.py new file mode 100644 index 000000000000..8c792c689936 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_entries_bases_entry__with__date.py @@ -0,0 +1,11 @@ +--- src/rendercv/schema/models/cv/entries/bases/entry_with_date.py.orig 2025-12-19 21:34:29 UTC ++++ src/rendercv/schema/models/cv/entries/bases/entry_with_date.py +@@ -31,7 +31,7 @@ def validate_arbitrary_date(date: int | str) -> int | + return date + + +-type ArbitraryDate = Annotated[ ++ArbitraryDate = Annotated[ + int | str, pydantic.AfterValidator(validate_arbitrary_date) + ] + diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_section.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_section.py new file mode 100644 index 000000000000..d2f7a9c12c81 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_section.py @@ -0,0 +1,46 @@ +--- src/rendercv/schema/models/cv/section.py.orig 2025-12-19 21:43:39 UTC ++++ src/rendercv/schema/models/cv/section.py +@@ -21,7 +21,7 @@ from .entries.reversed_numbered import ReversedNumbere + # Below needs to be updated when new entry types are added. + + # str is an entry type (TextEntry) but not a model, so it's not included in EntryModel. +-type EntryModel = ( ++EntryModel = ( + OneLineEntry + | NormalEntry + | ExperienceEntry +@@ -31,13 +31,22 @@ type EntryModel = ( + | NumberedEntry + | ReversedNumberedEntry + ) +-type Entry = EntryModel | str ++Entry = EntryModel | str + ######################################################################################## +-available_entry_models: tuple[type[EntryModel], ...] = get_args(EntryModel.__value__) ++available_entry_models: tuple[type[EntryModel], ...] = ( ++ OneLineEntry, ++ NormalEntry, ++ ExperienceEntry, ++ EducationEntry, ++ PublicationEntry, ++ BulletEntry, ++ NumberedEntry, ++ ReversedNumberedEntry ++) + available_entry_type_names: tuple[str, ...] = tuple( + [entry_type.__name__ for entry_type in available_entry_models] + ["TextEntry"] + ) +-type ListOfEntries = list[str] | reduce( # pyright: ignore[reportInvalidTypeForm] ++ListOfEntries = list[str] | reduce( # pyright: ignore[reportInvalidTypeForm] + or_, [list[entry_type] for entry_type in available_entry_models] + ) + +@@ -244,7 +253,7 @@ def validate_section(sections_input: Any) -> Any: + # Create a custom type named Section, which is a list of entries. The entries can be any + # of the available entry types. The section is validated with the `validate_section` + # function. +-type Section = Annotated[ ++Section = Annotated[ + pydantic.json_schema.SkipJsonSchema[Any] | ListOfEntries, + pydantic.BeforeValidator(lambda entries: validate_section(entries)), + ] diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_social__network.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_social__network.py new file mode 100644 index 000000000000..50d71355c92c --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_cv_social__network.py @@ -0,0 +1,20 @@ +--- src/rendercv/schema/models/cv/social_network.py.orig 2025-12-19 21:44:26 UTC ++++ src/rendercv/schema/models/cv/social_network.py +@@ -10,7 +10,7 @@ url_validator = pydantic.TypeAdapter(pydantic.HttpUrl) + from ..base import BaseModelWithoutExtraKeys + + url_validator = pydantic.TypeAdapter(pydantic.HttpUrl) +-type SocialNetworkName = Literal[ ++SocialNetworkName = Literal[ + "LinkedIn", + "GitHub", + "GitLab", +@@ -27,7 +27,7 @@ type SocialNetworkName = Literal[ + "Leetcode", + "X", + ] +-available_social_networks = get_args(SocialNetworkName.__value__) ++#available_social_networks = get_args(SocialNetworkName.__value__) + url_dictionary: dict[SocialNetworkName, str] = { + "LinkedIn": "https://linkedin.com/in/", + "GitHub": "https://github.com/", diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_built__in__design.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_built__in__design.py new file mode 100644 index 000000000000..2519ce6c6ec4 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_built__in__design.py @@ -0,0 +1,22 @@ +--- src/rendercv/schema/models/design/built_in_design.py.orig 2025-12-19 21:32:57 UTC ++++ src/rendercv/schema/models/design/built_in_design.py +@@ -37,14 +37,13 @@ def discover_other_themes() -> list[type[ClassicTheme] + + return discovered + ++discovered_other_themes = discover_other_themes() + + # Build discriminated union dynamically +-type BuiltInDesign = Annotated[ +- ClassicTheme | reduce(or_, discover_other_themes()), # pyright: ignore[reportInvalidTypeForm] ++BuiltInDesign = Annotated[ ++ ClassicTheme | reduce(or_, discovered_other_themes), # pyright: ignore[reportInvalidTypeForm] + pydantic.Field(discriminator="theme"), + ] +-available_themes: list[str] = [ +- ThemeClass.model_fields["theme"].default +- for ThemeClass in get_args(get_args(BuiltInDesign.__value__)[0]) +-] ++discovered_other_themes.append(ClassicTheme) ++available_themes: list[str] = [ThemeClass.model_fields["theme"].default for ThemeClass in discovered_other_themes] + built_in_design_adapter = pydantic.TypeAdapter(BuiltInDesign) diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_classic__theme.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_classic__theme.py new file mode 100644 index 000000000000..30f05b163fbc --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_classic__theme.py @@ -0,0 +1,23 @@ +--- src/rendercv/schema/models/design/classic_theme.py.orig 2025-12-19 21:33:55 UTC ++++ src/rendercv/schema/models/design/classic_theme.py +@@ -7,14 +7,14 @@ from rendercv.schema.models.design.typst_dimension imp + from rendercv.schema.models.design.font_family import FontFamily as FontFamilyType + from rendercv.schema.models.design.typst_dimension import TypstDimension + +-type Bullet = Literal["●", "•", "◦", "-", "◆", "★", "■", "—", "○"] +-type BodyAlignment = Literal["left", "justified", "justified-with-no-hyphenation"] +-type Alignment = Literal["left", "center", "right"] +-type SectionTitleType = Literal[ ++Bullet = Literal["●", "•", "◦", "-", "◆", "★", "■", "—", "○"] ++BodyAlignment = Literal["left", "justified", "justified-with-no-hyphenation"] ++Alignment = Literal["left", "center", "right"] ++SectionTitleType = Literal[ + "with_partial_line", "with_full_line", "without_line", "moderncv" + ] +-type PhoneNumberFormatType = Literal["national", "international", "E164"] +-type PageSize = Literal["a4", "a5", "us-letter", "us-executive"] ++PhoneNumberFormatType = Literal["national", "international", "E164"] ++PageSize = Literal["a4", "a5", "us-letter", "us-executive"] + + length_common_description = ( + "It can be specified with units (cm, in, pt, mm, ex, em). For example, `0.1cm`." diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_font__family.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_font__family.py new file mode 100644 index 000000000000..0563084ad505 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_font__family.py @@ -0,0 +1,8 @@ +--- src/rendercv/schema/models/design/font_family.py.orig 2025-12-19 21:33:15 UTC ++++ src/rendercv/schema/models/design/font_family.py +@@ -50,4 +50,4 @@ available_font_families = sorted( + ) + + +-type FontFamily = SkipJsonSchema[str] | Literal[*tuple(available_font_families)] # pyright: ignore[reportInvalidTypeForm] ++FontFamily = SkipJsonSchema[str] | Literal[*tuple(available_font_families)] # pyright: ignore[reportInvalidTypeForm] diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_typst__dimension.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_typst__dimension.py new file mode 100644 index 000000000000..f9c2dfb78d2c --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_design_typst__dimension.py @@ -0,0 +1,8 @@ +--- src/rendercv/schema/models/design/typst_dimension.py.orig 2025-12-19 21:33:37 UTC ++++ src/rendercv/schema/models/design/typst_dimension.py +@@ -29,4 +29,4 @@ def validate_typst_dimension(dimension: str) -> str: + return dimension + + +-type TypstDimension = Annotated[str, pydantic.AfterValidator(validate_typst_dimension)] ++TypstDimension = Annotated[str, pydantic.AfterValidator(validate_typst_dimension)] diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_locale_locale.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_locale_locale.py new file mode 100644 index 000000000000..78889b6444b0 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_locale_locale.py @@ -0,0 +1,22 @@ +--- src/rendercv/schema/models/locale/locale.py.orig 2025-12-19 21:44:44 UTC ++++ src/rendercv/schema/models/locale/locale.py +@@ -37,14 +37,13 @@ def discover_other_locales() -> list[type[EnglishLocal + + return discovered + ++discovered_other_locales = discover_other_locales() + + # Build discriminated union dynamically +-type Locale = Annotated[ +- EnglishLocale | reduce(or_, discover_other_locales()), # pyright: ignore[reportInvalidTypeForm] ++Locale = Annotated[ ++ EnglishLocale | reduce(or_, discovered_other_locales), # pyright: ignore[reportInvalidTypeForm] + pydantic.Field(discriminator="language"), + ] +-available_locales = [ +- LocaleModel.model_fields["language"].default +- for LocaleModel in get_args(get_args(Locale.__value__)[0]) +-] ++discovered_other_locales.append(EnglishLocale) ++available_locales = [LocaleModel.model_fields["language"].default for LocaleModel in discovered_other_locales] + locale_adapter = pydantic.TypeAdapter(Locale) diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_path.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_path.py new file mode 100644 index 000000000000..74b7cab315b6 --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_models_path.py @@ -0,0 +1,19 @@ +--- src/rendercv/schema/models/path.py.orig 2025-12-19 21:40:25 UTC ++++ src/rendercv/schema/models/path.py +@@ -60,14 +60,14 @@ def serialize_path(path: pathlib.Path) -> str: + return str(path.relative_to(pathlib.Path.cwd())) + + +-type ExistingPathRelativeToInput = Annotated[ ++ExistingPathRelativeToInput = Annotated[ + pathlib.Path, + pydantic.AfterValidator( + lambda path, info: resolve_relative_path(path, info, must_exist=True) + ), + ] + +-type PlannedPathRelativeToInput = Annotated[ ++PlannedPathRelativeToInput = Annotated[ + pathlib.Path, + pydantic.AfterValidator( + lambda path, info: resolve_relative_path(path, info, must_exist=False) diff --git a/sysutils/py-rendercv/files/patch-src_rendercv_schema_variant__pydantic__model__generator.py b/sysutils/py-rendercv/files/patch-src_rendercv_schema_variant__pydantic__model__generator.py new file mode 100644 index 000000000000..8760ecb47deb --- /dev/null +++ b/sysutils/py-rendercv/files/patch-src_rendercv_schema_variant__pydantic__model__generator.py @@ -0,0 +1,38 @@ +--- src/rendercv/schema/variant_pydantic_model_generator.py.orig 2025-12-19 21:48:58 UTC ++++ src/rendercv/schema/variant_pydantic_model_generator.py +@@ -6,17 +6,17 @@ from rendercv.exception import RenderCVInternalError + + from rendercv.exception import RenderCVInternalError + +-type FieldSpec = tuple[type[Any], FieldInfo] ++FieldSpec = tuple[type[Any], FieldInfo] + + +-def create_variant_pydantic_model[T: pydantic.BaseModel]( ++def create_variant_pydantic_model( + variant_name: str, + defaults: dict[str, Any], +- base_class: type[T], ++ base_class, + discriminator_field: str, + class_name_suffix: str, + module_name: str, +-) -> type[T]: ++): + """Create Pydantic model variant with customized defaults. + + Why: +@@ -190,10 +190,10 @@ def create_discriminator_field_spec( + return (cast(type[Any], field_annotation), new_field) + + +-def deep_merge_nested_object[T: pydantic.BaseModel]( +- base_nested_obj: T, ++def deep_merge_nested_object( ++ base_nested_obj, + updates: dict[str, Any], +-) -> T: ++): + """Recursively merge nested dictionary updates into Pydantic model instance. + + Why: diff --git a/sysutils/py-rendercv/pkg-descr b/sysutils/py-rendercv/pkg-descr new file mode 100644 index 000000000000..58a97762cbe9 --- /dev/null +++ b/sysutils/py-rendercv/pkg-descr @@ -0,0 +1,5 @@ +RenderCV is a python tool for creating a CV from YAML. + +Write your CV or resume as YAML, then run RenderCV, and get a PDF +with perfect typography. No template wrestling. No broken layouts. +Consistent spacing, every time. diff --git a/sysutils/stackit/Makefile b/sysutils/stackit/Makefile index 4b2f65437cbf..5592fe5c0a4b 100644 --- a/sysutils/stackit/Makefile +++ b/sysutils/stackit/Makefile @@ -1,6 +1,6 @@ PORTNAME= stackit DISTVERSIONPREFIX= v -DISTVERSION= 0.49.0 +DISTVERSION= 0.50.0 CATEGORIES= sysutils MAINTAINER= gogolok@gmail.com diff --git a/sysutils/stackit/distinfo b/sysutils/stackit/distinfo index f8d4cedfaa61..9867f310b019 100644 --- a/sysutils/stackit/distinfo +++ b/sysutils/stackit/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1763545637 -SHA256 (go/sysutils_stackit/stackit-v0.49.0/v0.49.0.mod) = 797faa7ab87026392e261ed99577d6b02d9378ccddae6ad489fca5c0a8293781 -SIZE (go/sysutils_stackit/stackit-v0.49.0/v0.49.0.mod) = 13164 -SHA256 (go/sysutils_stackit/stackit-v0.49.0/v0.49.0.zip) = 56aad46ff0818177228b4535073854422a2582cbf51aac000fdf5120800f9f9a -SIZE (go/sysutils_stackit/stackit-v0.49.0/v0.49.0.zip) = 2242129 +TIMESTAMP = 1766261352 +SHA256 (go/sysutils_stackit/stackit-v0.50.0/v0.50.0.mod) = 56b10a440ca1768e1039a02bb536a61c37ab6d3e0bb9396f76c5f83d0c610f94 +SIZE (go/sysutils_stackit/stackit-v0.50.0/v0.50.0.mod) = 14248 +SHA256 (go/sysutils_stackit/stackit-v0.50.0/v0.50.0.zip) = 34c8150ee8211b6e3584856ee3eed7d90a7742bafea457daac02f1ecddca47b0 +SIZE (go/sysutils_stackit/stackit-v0.50.0/v0.50.0.zip) = 2342831 diff --git a/sysutils/usb_modeswitch/Makefile b/sysutils/usb_modeswitch/Makefile index cfe0b5f766ae..c1a68fa9d067 100644 --- a/sysutils/usb_modeswitch/Makefile +++ b/sysutils/usb_modeswitch/Makefile @@ -7,7 +7,7 @@ DISTNAME= ${PORTNAME:S|_|-|}-${PORTVERSION} DISTFILES= ${DISTNAME}.tar.bz2 \ ${DATANAME}.tar.bz2 -MAINTAINER= franco@opnsense.org +MAINTAINER= ports@FreeBSD.org COMMENT= Handling Mode-Switching USB Devices WWW= https://www.draisberghof.de/usb_modeswitch/ diff --git a/textproc/Makefile b/textproc/Makefile index 3c3c7be8edd0..a960bb4c4eb9 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1721,6 +1721,7 @@ SUBDIR += py-ttp SUBDIR += py-ttp-templates SUBDIR += py-typogrify + SUBDIR += py-typst SUBDIR += py-uc-micro-py SUBDIR += py-ucl SUBDIR += py-ufal.udpipe diff --git a/textproc/R-cran-litedown/Makefile b/textproc/R-cran-litedown/Makefile index 0e8252c78fa8..f97f50d7409b 100644 --- a/textproc/R-cran-litedown/Makefile +++ b/textproc/R-cran-litedown/Makefile @@ -1,5 +1,5 @@ PORTNAME= litedown -DISTVERSION= 0.8 +DISTVERSION= 0.9 CATEGORIES= textproc DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -11,7 +11,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= R-cran-commonmark>=2.0.0:textproc/R-cran-commonmark \ - R-cran-xfun>=0.54:misc/R-cran-xfun + R-cran-xfun>=0.55:misc/R-cran-xfun TEST_DEPENDS= R-cran-rbibutils>0:textproc/R-cran-rbibutils \ R-cran-rstudioapi>0:devel/R-cran-rstudioapi \ R-cran-tinytex>0:print/R-cran-tinytex diff --git a/textproc/R-cran-litedown/distinfo b/textproc/R-cran-litedown/distinfo index a96e433c3001..091abd5aa147 100644 --- a/textproc/R-cran-litedown/distinfo +++ b/textproc/R-cran-litedown/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1762181533 -SHA256 (litedown_0.8.tar.gz) = 13d004556dee69130c151f8232b0f78ff6006f0bf77389314a04542ea35ab138 -SIZE (litedown_0.8.tar.gz) = 101850 +TIMESTAMP = 1766246162 +SHA256 (litedown_0.9.tar.gz) = 35e1c58fd063c300d37ee0b1874827dbcbbc43b625a2d0011e4f4d5556e3f53f +SIZE (litedown_0.9.tar.gz) = 103182 diff --git a/textproc/libmrss/Makefile b/textproc/libmrss/Makefile index 0d1bf0791394..96aa534b9729 100644 --- a/textproc/libmrss/Makefile +++ b/textproc/libmrss/Makefile @@ -1,12 +1,10 @@ PORTNAME= libmrss -PORTVERSION= 0.19.2 -PORTREVISION= 8 +DISTVERSION= 0.19.4 CATEGORIES= textproc -MASTER_SITES= http://www.autistici.org/bakunin/libmrss/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= juw@posteo.de COMMENT= C library for parsing, writing, and creating RSS -WWW= http://www2.autistici.org/bakunin/libmrss/doc/ +WWW= https://github.com/bakulf/libmrss/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING @@ -14,12 +12,12 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libcurl.so:ftp/curl \ libnxml.so:textproc/libnxml +USES= autoreconf libtool localbase pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= bakulf +USE_LDCONFIG= yes + GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib INSTALL_TARGET= install-strip -USES= libtool pathfix pkgconfig -USE_LDCONFIG= yes - .include <bsd.port.mk> diff --git a/textproc/libmrss/distinfo b/textproc/libmrss/distinfo index dfa49400401e..7f74d9150964 100644 --- a/textproc/libmrss/distinfo +++ b/textproc/libmrss/distinfo @@ -1,2 +1,3 @@ -SHA256 (libmrss-0.19.2.tar.gz) = 071416adcae5c1a9317a4a313f2deb34667e3cc2be4487fb3076528ce45b210b -SIZE (libmrss-0.19.2.tar.gz) = 375238 +TIMESTAMP = 1765649342 +SHA256 (bakulf-libmrss-0.19.4_GH0.tar.gz) = 28022247056b04ca3f12a9e21134d42304526b2a67b7d6baf139e556af1151c6 +SIZE (bakulf-libmrss-0.19.4_GH0.tar.gz) = 43963 diff --git a/textproc/libmrss/pkg-plist b/textproc/libmrss/pkg-plist index 07fec9456eed..276d6fcfaa16 100644 --- a/textproc/libmrss/pkg-plist +++ b/textproc/libmrss/pkg-plist @@ -2,5 +2,5 @@ include/mrss.h lib/libmrss.a lib/libmrss.so lib/libmrss.so.0 -lib/libmrss.so.0.19.2 +lib/libmrss.so.0.19.4 libdata/pkgconfig/mrss.pc diff --git a/textproc/php81-xml/files/patch-compat.c b/textproc/php81-xml/files/patch-compat.c index af608e129191..89925810a65b 100644 --- a/textproc/php81-xml/files/patch-compat.c +++ b/textproc/php81-xml/files/patch-compat.c @@ -1,4 +1,4 @@ ---- compat.c.orig 2025-07-01 21:17:52 UTC +--- compat.c.orig 2025-12-16 18:33:34 UTC +++ compat.c @@ -14,6 +14,10 @@ +----------------------------------------------------------------------+ @@ -11,14 +11,12 @@ #include "php.h" #if defined(HAVE_LIBXML) && (defined(HAVE_XML) || defined(HAVE_XMLRPC)) && !defined(HAVE_LIBEXPAT) #include "expat_compat.h" -@@ -375,7 +379,9 @@ _get_entity(void *user, const xmlChar *name) - if (ret == NULL) +@@ -376,7 +380,7 @@ _get_entity(void *user, const xmlChar *name) ret = xmlGetDocEntity(parser->parser->myDoc, name); + ZEND_DIAGNOSTIC_IGNORED_START("-Wdeprecated-declarations") - if (ret == NULL || (parser->parser->instate != XML_PARSER_ENTITY_VALUE && parser->parser->instate != XML_PARSER_ATTRIBUTE_VALUE)) { -+/* Fix parse error on some XML files so that devel/pear work again. */ -+/* See https://github.com/php/php-src/issues/14834 for details. */ + if (ret == NULL || parser->parser->instate == XML_PARSER_CONTENT) { + ZEND_DIAGNOSTIC_IGNORED_END if (ret == NULL || ret->etype == XML_INTERNAL_GENERAL_ENTITY || ret->etype == XML_INTERNAL_PARAMETER_ENTITY || ret->etype == XML_INTERNAL_PREDEFINED_ENTITY) { /* Predefined entities will expand unless no cdata handler is present */ - if (parser->h_default && ! (ret && ret->etype == XML_INTERNAL_PREDEFINED_ENTITY && parser->h_cdata)) { diff --git a/textproc/py-typst/Makefile b/textproc/py-typst/Makefile new file mode 100644 index 000000000000..64cdf90dd288 --- /dev/null +++ b/textproc/py-typst/Makefile @@ -0,0 +1,27 @@ +PORTNAME= typst +DISTVERSIONPREFIX= v +DISTVERSION= 0.14.4 +CATEGORIES= textproc python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT= Python binding to typst +WWW= https://github.com/messense/typst-py \ + https://pypi.org/project/typst + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}maturin>=0:devel/py-maturin@${PY_FLAVOR} + +USES= cargo python ssl +USE_GITHUB= yes +GH_ACCOUNT= messense +GH_PROJECT= typst-py +USE_PYTHON= autoplist pep517 + +CARGO_BUILD= no +CARGO_INSTALL= no +CARGO_TEST= no + +.include <bsd.port.mk> diff --git a/textproc/py-typst/Makefile.crates b/textproc/py-typst/Makefile.crates new file mode 100644 index 000000000000..275a575c4cf2 --- /dev/null +++ b/textproc/py-typst/Makefile.crates @@ -0,0 +1,381 @@ +CARGO_CRATES= adler2-2.0.1 \ + aho-corasick-1.1.4 \ + android_system_properties-0.1.5 \ + approx-0.5.1 \ + ar_archive_writer-0.2.0 \ + arrayref-0.3.9 \ + arrayvec-0.7.6 \ + autocfg-1.5.0 \ + az-1.2.1 \ + base64-0.22.1 \ + biblatex-0.11.0 \ + bincode-1.3.3 \ + bit-set-0.8.0 \ + bit-vec-0.8.0 \ + bitflags-1.3.2 \ + bitflags-2.10.0 \ + bumpalo-3.19.0 \ + by_address-1.2.1 \ + bytemuck-1.24.0 \ + bytemuck_derive-1.10.2 \ + byteorder-lite-0.1.0 \ + cc-1.2.48 \ + cfg-if-1.0.4 \ + chinese-number-0.7.7 \ + chinese-variant-1.1.3 \ + chrono-0.4.42 \ + ciborium-0.2.2 \ + ciborium-io-0.2.2 \ + ciborium-ll-0.2.2 \ + citationberg-0.6.1 \ + cobs-0.3.0 \ + codespan-reporting-0.13.1 \ + codex-0.2.0 \ + color_quant-1.1.0 \ + comemo-0.5.0 \ + comemo-macros-0.5.0 \ + core-foundation-0.9.4 \ + core-foundation-sys-0.8.7 \ + core_maths-0.1.1 \ + crc32fast-1.5.0 \ + crossbeam-deque-0.8.6 \ + crossbeam-epoch-0.9.18 \ + crossbeam-utils-0.8.21 \ + crunchy-0.2.4 \ + csv-1.4.0 \ + csv-core-0.1.13 \ + data-url-0.3.2 \ + deranged-0.5.5 \ + dirs-6.0.0 \ + dirs-sys-0.5.0 \ + displaydoc-0.2.5 \ + ecow-0.2.6 \ + either-1.15.0 \ + embedded-io-0.4.0 \ + embedded-io-0.6.1 \ + enum-ordinalize-4.3.2 \ + enum-ordinalize-derive-4.3.2 \ + env_proxy-0.4.1 \ + equivalent-1.0.2 \ + errno-0.3.14 \ + euclid-0.22.11 \ + fancy-regex-0.16.2 \ + fast-srgb8-1.0.0 \ + fastrand-2.3.0 \ + fdeflate-0.3.7 \ + filetime-0.2.26 \ + find-msvc-tools-0.1.5 \ + flate2-1.1.5 \ + float-cmp-0.9.0 \ + float-cmp-0.10.0 \ + fnv-1.0.7 \ + font-types-0.10.1 \ + fontconfig-parser-0.5.8 \ + fontdb-0.23.0 \ + foreign-types-0.3.2 \ + foreign-types-shared-0.1.1 \ + form_urlencoded-1.2.2 \ + getrandom-0.2.16 \ + getrandom-0.3.4 \ + gif-0.13.3 \ + gif-0.14.1 \ + glidesort-0.1.2 \ + half-2.7.1 \ + hashbrown-0.16.1 \ + hayagriva-0.9.1 \ + hayro-0.4.0 \ + hayro-font-0.3.0 \ + hayro-interpret-0.4.0 \ + hayro-svg-0.2.0 \ + hayro-syntax-0.4.0 \ + hayro-write-0.3.0 \ + heck-0.5.0 \ + hypher-0.1.6 \ + iana-time-zone-0.1.64 \ + iana-time-zone-haiku-0.1.2 \ + icu_collections-1.5.0 \ + icu_collections-2.1.1 \ + icu_locale_core-2.1.1 \ + icu_locid-1.5.0 \ + icu_locid_transform-1.5.0 \ + icu_locid_transform_data-1.5.1 \ + icu_normalizer-2.1.1 \ + icu_normalizer_data-2.1.1 \ + icu_properties-1.5.1 \ + icu_properties-2.1.1 \ + icu_properties_data-1.5.1 \ + icu_properties_data-2.1.1 \ + icu_provider-1.5.0 \ + icu_provider-2.1.1 \ + icu_provider_adapters-1.5.0 \ + icu_provider_blob-1.5.0 \ + icu_provider_macros-1.5.0 \ + icu_segmenter-1.5.0 \ + icu_segmenter_data-1.5.1 \ + idna-1.1.0 \ + idna_adapter-1.2.1 \ + image-0.25.9 \ + image-webp-0.2.4 \ + imagesize-0.13.0 \ + imagesize-0.14.0 \ + indexmap-2.12.1 \ + indoc-2.0.7 \ + infer-0.19.0 \ + itoa-1.0.15 \ + js-sys-0.3.83 \ + kamadak-exif-0.6.1 \ + krilla-0.6.0 \ + krilla-svg-0.3.0 \ + kurbo-0.11.3 \ + kurbo-0.12.0 \ + libc-0.2.178 \ + libm-0.2.15 \ + libredox-0.1.10 \ + libz-rs-sys-0.5.3 \ + linked-hash-map-0.5.6 \ + linux-raw-sys-0.11.0 \ + lipsum-0.9.1 \ + litemap-0.7.5 \ + litemap-0.8.1 \ + lock_api-0.4.14 \ + log-0.4.29 \ + memchr-2.7.6 \ + memmap2-0.9.9 \ + memoffset-0.9.1 \ + miniz_oxide-0.8.9 \ + moxcms-0.7.10 \ + mutate_once-0.1.2 \ + native-tls-0.2.14 \ + num-bigint-0.4.6 \ + num-conv-0.1.0 \ + num-integer-0.1.46 \ + num-traits-0.2.19 \ + object-0.32.2 \ + once_cell-1.21.3 \ + openssl-0.10.75 \ + openssl-macros-0.1.1 \ + openssl-probe-0.1.6 \ + openssl-src-300.5.4+3.5.4 \ + openssl-sys-0.9.111 \ + option-ext-0.2.0 \ + palette-0.7.6 \ + palette_derive-0.7.6 \ + parking_lot-0.12.5 \ + parking_lot_core-0.9.12 \ + paste-1.0.15 \ + pathdiff-0.2.3 \ + pdf-writer-0.14.0 \ + percent-encoding-2.3.2 \ + phf-0.13.1 \ + phf_generator-0.13.1 \ + phf_macros-0.13.1 \ + phf_shared-0.13.1 \ + pico-args-0.5.0 \ + pixglyph-0.6.0 \ + pkg-config-0.3.32 \ + plist-1.8.0 \ + png-0.17.16 \ + png-0.18.0 \ + portable-atomic-1.11.1 \ + postcard-1.1.3 \ + potential_utf-0.1.4 \ + powerfmt-0.2.0 \ + ppv-lite86-0.2.21 \ + proc-macro-hack-0.5.20+deprecated \ + proc-macro2-1.0.103 \ + psm-0.1.28 \ + pxfm-0.1.26 \ + pyo3-0.27.2 \ + pyo3-build-config-0.27.2 \ + pyo3-ffi-0.27.2 \ + pyo3-macros-0.27.2 \ + pyo3-macros-backend-0.27.2 \ + python3-dll-a-0.2.14 \ + qcms-0.3.0 \ + quick-error-2.0.1 \ + quick-xml-0.38.4 \ + quote-1.0.42 \ + r-efi-5.3.0 \ + rand-0.8.5 \ + rand_chacha-0.3.1 \ + rand_core-0.6.4 \ + rayon-1.11.0 \ + rayon-core-1.13.0 \ + read-fonts-0.35.0 \ + redox_syscall-0.5.18 \ + redox_users-0.5.2 \ + regex-1.12.2 \ + regex-automata-0.4.13 \ + regex-syntax-0.8.8 \ + resvg-0.45.1 \ + rgb-0.8.52 \ + roman-numerals-rs-3.1.0 \ + roxmltree-0.20.0 \ + rust_decimal-1.39.0 \ + rustc-hash-2.1.1 \ + rustix-1.1.2 \ + rustversion-1.0.22 \ + rustybuzz-0.20.1 \ + ryu-1.0.20 \ + same-file-1.0.6 \ + schannel-0.1.28 \ + scopeguard-1.2.0 \ + security-framework-2.11.1 \ + security-framework-sys-2.15.0 \ + serde-1.0.228 \ + serde_core-1.0.228 \ + serde_derive-1.0.228 \ + serde_json-1.0.145 \ + serde_spanned-0.6.9 \ + serde_yaml-0.9.34+deprecated \ + shlex-1.3.0 \ + simd-adler32-0.3.7 \ + simplecss-0.2.2 \ + siphasher-1.0.1 \ + skrifa-0.37.0 \ + slab-0.4.11 \ + slotmap-1.0.7 \ + smallvec-1.15.1 \ + spin-0.9.8 \ + stable_deref_trait-1.2.1 \ + stacker-0.1.22 \ + strict-num-0.1.1 \ + strum-0.27.2 \ + strum_macros-0.27.2 \ + subsetter-0.2.3 \ + svgtypes-0.15.3 \ + syn-2.0.111 \ + synstructure-0.13.2 \ + syntect-5.3.0 \ + tar-0.4.44 \ + target-lexicon-0.13.3 \ + tempfile-3.23.0 \ + termcolor-1.4.1 \ + thin-vec-0.2.14 \ + thiserror-2.0.17 \ + thiserror-impl-2.0.17 \ + time-0.3.44 \ + time-core-0.1.6 \ + time-macros-0.2.24 \ + tiny-skia-0.11.4 \ + tiny-skia-path-0.11.4 \ + tinystr-0.7.6 \ + tinystr-0.8.2 \ + tinyvec-1.10.0 \ + tinyvec_macros-0.1.1 \ + toml-0.8.23 \ + toml_datetime-0.6.11 \ + toml_edit-0.22.27 \ + toml_write-0.1.2 \ + ttf-parser-0.25.1 \ + two-face-0.4.4 \ + typed-arena-2.0.2 \ + typst-0.14.1 \ + typst-assets-0.14.1 \ + typst-eval-0.14.1 \ + typst-html-0.14.1 \ + typst-kit-0.14.1 \ + typst-layout-0.14.1 \ + typst-library-0.14.1 \ + typst-macros-0.14.1 \ + typst-pdf-0.14.1 \ + typst-realize-0.14.1 \ + typst-render-0.14.1 \ + typst-svg-0.14.1 \ + typst-syntax-0.14.1 \ + typst-timing-0.14.1 \ + typst-utils-0.14.1 \ + unic-langid-0.9.6 \ + unic-langid-impl-0.9.6 \ + unic-langid-macros-0.9.6 \ + unic-langid-macros-impl-0.9.6 \ + unicode-bidi-0.3.18 \ + unicode-bidi-mirroring-0.4.0 \ + unicode-ccc-0.4.0 \ + unicode-ident-1.0.22 \ + unicode-math-class-0.1.0 \ + unicode-normalization-0.1.25 \ + unicode-properties-0.1.4 \ + unicode-script-0.5.8 \ + unicode-segmentation-1.12.0 \ + unicode-vo-0.1.0 \ + unicode-width-0.2.2 \ + unindent-0.2.4 \ + unsafe-libyaml-0.2.11 \ + unscanny-0.1.0 \ + ureq-2.12.1 \ + url-2.5.7 \ + usvg-0.45.1 \ + utf8_iter-1.0.4 \ + vcpkg-0.2.15 \ + version_check-0.9.5 \ + walkdir-2.5.0 \ + wasi-0.11.1+wasi-snapshot-preview1 \ + wasip2-1.0.1+wasi-0.2.4 \ + wasm-bindgen-0.2.106 \ + wasm-bindgen-macro-0.2.106 \ + wasm-bindgen-macro-support-0.2.106 \ + wasm-bindgen-shared-0.2.106 \ + wasmi-0.51.2 \ + wasmi_collections-0.51.2 \ + wasmi_core-0.51.2 \ + wasmi_ir-0.51.2 \ + wasmparser-0.228.0 \ + weezl-0.1.12 \ + winapi-util-0.1.11 \ + windows-core-0.62.2 \ + windows-implement-0.60.2 \ + windows-interface-0.59.3 \ + windows-link-0.2.1 \ + windows-result-0.4.1 \ + windows-strings-0.5.1 \ + windows-sys-0.59.0 \ + windows-sys-0.60.2 \ + windows-sys-0.61.2 \ + windows-targets-0.52.6 \ + windows-targets-0.53.5 \ + windows_aarch64_gnullvm-0.52.6 \ + windows_aarch64_gnullvm-0.53.1 \ + windows_aarch64_msvc-0.52.6 \ + windows_aarch64_msvc-0.53.1 \ + windows_i686_gnu-0.52.6 \ + windows_i686_gnu-0.53.1 \ + windows_i686_gnullvm-0.52.6 \ + windows_i686_gnullvm-0.53.1 \ + windows_i686_msvc-0.52.6 \ + windows_i686_msvc-0.53.1 \ + windows_x86_64_gnu-0.52.6 \ + windows_x86_64_gnu-0.53.1 \ + windows_x86_64_gnullvm-0.52.6 \ + windows_x86_64_gnullvm-0.53.1 \ + windows_x86_64_msvc-0.52.6 \ + windows_x86_64_msvc-0.53.1 \ + winnow-0.7.14 \ + wit-bindgen-0.46.0 \ + write-fonts-0.43.0 \ + writeable-0.5.5 \ + writeable-0.6.2 \ + xattr-1.6.1 \ + xmlparser-0.13.6 \ + xmlwriter-0.1.0 \ + xmp-writer-0.3.2 \ + yaml-rust-0.4.5 \ + yoke-0.7.5 \ + yoke-0.8.1 \ + yoke-derive-0.7.5 \ + yoke-derive-0.8.1 \ + zerocopy-0.8.31 \ + zerocopy-derive-0.8.31 \ + zerofrom-0.1.6 \ + zerofrom-derive-0.1.6 \ + zerotrie-0.1.3 \ + zerotrie-0.2.3 \ + zerovec-0.10.4 \ + zerovec-0.11.5 \ + zerovec-derive-0.10.3 \ + zerovec-derive-0.11.2 \ + zlib-rs-0.5.3 \ + zune-core-0.4.12 \ + zune-core-0.5.0 \ + zune-jpeg-0.4.21 \ + zune-jpeg-0.5.5 diff --git a/textproc/py-typst/distinfo b/textproc/py-typst/distinfo new file mode 100644 index 000000000000..a6f7820fe9de --- /dev/null +++ b/textproc/py-typst/distinfo @@ -0,0 +1,765 @@ +TIMESTAMP = 1766173952 +SHA256 (rust/crates/adler2-2.0.1.crate) = 320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa +SIZE (rust/crates/adler2-2.0.1.crate) = 13366 +SHA256 (rust/crates/aho-corasick-1.1.4.crate) = ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301 +SIZE (rust/crates/aho-corasick-1.1.4.crate) = 184015 +SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311 +SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243 +SHA256 (rust/crates/approx-0.5.1.crate) = cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6 +SIZE (rust/crates/approx-0.5.1.crate) = 15100 +SHA256 (rust/crates/ar_archive_writer-0.2.0.crate) = f0c269894b6fe5e9d7ada0cf69b5bf847ff35bc25fc271f08e1d080fce80339a +SIZE (rust/crates/ar_archive_writer-0.2.0.crate) = 31814 +SHA256 (rust/crates/arrayref-0.3.9.crate) = 76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb +SIZE (rust/crates/arrayref-0.3.9.crate) = 9186 +SHA256 (rust/crates/arrayvec-0.7.6.crate) = 7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50 +SIZE (rust/crates/arrayvec-0.7.6.crate) = 31237 +SHA256 (rust/crates/autocfg-1.5.0.crate) = c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8 +SIZE (rust/crates/autocfg-1.5.0.crate) = 18729 +SHA256 (rust/crates/az-1.2.1.crate) = 7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973 +SIZE (rust/crates/az-1.2.1.crate) = 27842 +SHA256 (rust/crates/base64-0.22.1.crate) = 72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6 +SIZE (rust/crates/base64-0.22.1.crate) = 81597 +SHA256 (rust/crates/biblatex-0.11.0.crate) = 53d0c374feba1b9a59042a7c1cf00ce7c34b977b9134fe7c42b08e5183729f66 +SIZE (rust/crates/biblatex-0.11.0.crate) = 98441 +SHA256 (rust/crates/bincode-1.3.3.crate) = b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad +SIZE (rust/crates/bincode-1.3.3.crate) = 28958 +SHA256 (rust/crates/bit-set-0.8.0.crate) = 08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3 +SIZE (rust/crates/bit-set-0.8.0.crate) = 16289 +SHA256 (rust/crates/bit-vec-0.8.0.crate) = 5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7 +SIZE (rust/crates/bit-vec-0.8.0.crate) = 24132 +SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a +SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 +SHA256 (rust/crates/bitflags-2.10.0.crate) = 812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3 +SIZE (rust/crates/bitflags-2.10.0.crate) = 48427 +SHA256 (rust/crates/bumpalo-3.19.0.crate) = 46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43 +SIZE (rust/crates/bumpalo-3.19.0.crate) = 96414 +SHA256 (rust/crates/by_address-1.2.1.crate) = 64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06 +SIZE (rust/crates/by_address-1.2.1.crate) = 8437 +SHA256 (rust/crates/bytemuck-1.24.0.crate) = 1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4 +SIZE (rust/crates/bytemuck-1.24.0.crate) = 53243 +SHA256 (rust/crates/bytemuck_derive-1.10.2.crate) = f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff +SIZE (rust/crates/bytemuck_derive-1.10.2.crate) = 25678 +SHA256 (rust/crates/byteorder-lite-0.1.0.crate) = 8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495 +SIZE (rust/crates/byteorder-lite-0.1.0.crate) = 15909 +SHA256 (rust/crates/cc-1.2.48.crate) = c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a +SIZE (rust/crates/cc-1.2.48.crate) = 92458 +SHA256 (rust/crates/cfg-if-1.0.4.crate) = 9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801 +SIZE (rust/crates/cfg-if-1.0.4.crate) = 9360 +SHA256 (rust/crates/chinese-number-0.7.7.crate) = 49fccaef6346f6d6a741908d3b79fe97c2debe2fbb5eb3a7d00ff5981b52bb6c +SIZE (rust/crates/chinese-number-0.7.7.crate) = 17318 +SHA256 (rust/crates/chinese-variant-1.1.3.crate) = 7588475145507237ded760e52bf2f1085495245502033756d28ea72ade0e498b +SIZE (rust/crates/chinese-variant-1.1.3.crate) = 2179 +SHA256 (rust/crates/chrono-0.4.42.crate) = 145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2 +SIZE (rust/crates/chrono-0.4.42.crate) = 238174 +SHA256 (rust/crates/ciborium-0.2.2.crate) = 42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e +SIZE (rust/crates/ciborium-0.2.2.crate) = 35611 +SHA256 (rust/crates/ciborium-io-0.2.2.crate) = 05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757 +SIZE (rust/crates/ciborium-io-0.2.2.crate) = 6697 +SHA256 (rust/crates/ciborium-ll-0.2.2.crate) = 57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9 +SIZE (rust/crates/ciborium-ll-0.2.2.crate) = 14695 +SHA256 (rust/crates/citationberg-0.6.1.crate) = 1f6597e8bdbca37f1f56e5a80d15857b0932aead21a78d20de49e99e74933046 +SIZE (rust/crates/citationberg-0.6.1.crate) = 66778 +SHA256 (rust/crates/cobs-0.3.0.crate) = 0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1 +SIZE (rust/crates/cobs-0.3.0.crate) = 15639 +SHA256 (rust/crates/codespan-reporting-0.13.1.crate) = af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681 +SIZE (rust/crates/codespan-reporting-0.13.1.crate) = 57424 +SHA256 (rust/crates/codex-0.2.0.crate) = 9589e1effc5cacbea347899645c654158b03b2053d24bb426fd3128ced6e423c +SIZE (rust/crates/codex-0.2.0.crate) = 43026 +SHA256 (rust/crates/color_quant-1.1.0.crate) = 3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b +SIZE (rust/crates/color_quant-1.1.0.crate) = 6649 +SHA256 (rust/crates/comemo-0.5.0.crate) = 649d7b2d867b569729c03c0f6968db10bc95921182a1f2b2012b1b549492f39d +SIZE (rust/crates/comemo-0.5.0.crate) = 28954 +SHA256 (rust/crates/comemo-macros-0.5.0.crate) = 51c87fc7e85487493ddedae1a3a34b897c77ad8825375b79265a8a162c28d535 +SIZE (rust/crates/comemo-macros-0.5.0.crate) = 10000 +SHA256 (rust/crates/core-foundation-0.9.4.crate) = 91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f +SIZE (rust/crates/core-foundation-0.9.4.crate) = 27743 +SHA256 (rust/crates/core-foundation-sys-0.8.7.crate) = 773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b +SIZE (rust/crates/core-foundation-sys-0.8.7.crate) = 37712 +SHA256 (rust/crates/core_maths-0.1.1.crate) = 77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30 +SIZE (rust/crates/core_maths-0.1.1.crate) = 6528 +SHA256 (rust/crates/crc32fast-1.5.0.crate) = 9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511 +SIZE (rust/crates/crc32fast-1.5.0.crate) = 40723 +SHA256 (rust/crates/crossbeam-deque-0.8.6.crate) = 9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51 +SIZE (rust/crates/crossbeam-deque-0.8.6.crate) = 22471 +SHA256 (rust/crates/crossbeam-epoch-0.9.18.crate) = 5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e +SIZE (rust/crates/crossbeam-epoch-0.9.18.crate) = 46875 +SHA256 (rust/crates/crossbeam-utils-0.8.21.crate) = d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28 +SIZE (rust/crates/crossbeam-utils-0.8.21.crate) = 42691 +SHA256 (rust/crates/crunchy-0.2.4.crate) = 460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5 +SIZE (rust/crates/crunchy-0.2.4.crate) = 3887 +SHA256 (rust/crates/csv-1.4.0.crate) = 52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938 +SIZE (rust/crates/csv-1.4.0.crate) = 888642 +SHA256 (rust/crates/csv-core-0.1.13.crate) = 704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782 +SIZE (rust/crates/csv-core-0.1.13.crate) = 26119 +SHA256 (rust/crates/data-url-0.3.2.crate) = be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376 +SIZE (rust/crates/data-url-0.3.2.crate) = 23862 +SHA256 (rust/crates/deranged-0.5.5.crate) = ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587 +SIZE (rust/crates/deranged-0.5.5.crate) = 24438 +SHA256 (rust/crates/dirs-6.0.0.crate) = c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e +SIZE (rust/crates/dirs-6.0.0.crate) = 14190 +SHA256 (rust/crates/dirs-sys-0.5.0.crate) = e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab +SIZE (rust/crates/dirs-sys-0.5.0.crate) = 10157 +SHA256 (rust/crates/displaydoc-0.2.5.crate) = 97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0 +SIZE (rust/crates/displaydoc-0.2.5.crate) = 24219 +SHA256 (rust/crates/ecow-0.2.6.crate) = 78e4f79b296fbaab6ce2e22d52cb4c7f010fe0ebe7a32e34fa25885fd797bd02 +SIZE (rust/crates/ecow-0.2.6.crate) = 29987 +SHA256 (rust/crates/either-1.15.0.crate) = 48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719 +SIZE (rust/crates/either-1.15.0.crate) = 20114 +SHA256 (rust/crates/embedded-io-0.4.0.crate) = ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced +SIZE (rust/crates/embedded-io-0.4.0.crate) = 12901 +SHA256 (rust/crates/embedded-io-0.6.1.crate) = edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d +SIZE (rust/crates/embedded-io-0.6.1.crate) = 13133 +SHA256 (rust/crates/enum-ordinalize-4.3.2.crate) = 4a1091a7bb1f8f2c4b28f1fe2cef4980ca2d410a3d727d67ecc3178c9b0800f0 +SIZE (rust/crates/enum-ordinalize-4.3.2.crate) = 4465 +SHA256 (rust/crates/enum-ordinalize-derive-4.3.2.crate) = 8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631 +SIZE (rust/crates/enum-ordinalize-derive-4.3.2.crate) = 8434 +SHA256 (rust/crates/env_proxy-0.4.1.crate) = 3a5019be18538406a43b5419a5501461f0c8b49ea7dfda0cfc32f4e51fc44be1 +SIZE (rust/crates/env_proxy-0.4.1.crate) = 11256 +SHA256 (rust/crates/equivalent-1.0.2.crate) = 877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f +SIZE (rust/crates/equivalent-1.0.2.crate) = 7419 +SHA256 (rust/crates/errno-0.3.14.crate) = 39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb +SIZE (rust/crates/errno-0.3.14.crate) = 12002 +SHA256 (rust/crates/euclid-0.22.11.crate) = ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48 +SIZE (rust/crates/euclid-0.22.11.crate) = 79261 +SHA256 (rust/crates/fancy-regex-0.16.2.crate) = 998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f +SIZE (rust/crates/fancy-regex-0.16.2.crate) = 100662 +SHA256 (rust/crates/fast-srgb8-1.0.0.crate) = dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1 +SIZE (rust/crates/fast-srgb8-1.0.0.crate) = 17214 +SHA256 (rust/crates/fastrand-2.3.0.crate) = 37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be +SIZE (rust/crates/fastrand-2.3.0.crate) = 15076 +SHA256 (rust/crates/fdeflate-0.3.7.crate) = 1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c +SIZE (rust/crates/fdeflate-0.3.7.crate) = 27188 +SHA256 (rust/crates/filetime-0.2.26.crate) = bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed +SIZE (rust/crates/filetime-0.2.26.crate) = 17273 +SHA256 (rust/crates/find-msvc-tools-0.1.5.crate) = 3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844 +SIZE (rust/crates/find-msvc-tools-0.1.5.crate) = 30942 +SHA256 (rust/crates/flate2-1.1.5.crate) = bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb +SIZE (rust/crates/flate2-1.1.5.crate) = 77015 +SHA256 (rust/crates/float-cmp-0.9.0.crate) = 98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4 +SIZE (rust/crates/float-cmp-0.9.0.crate) = 10102 +SHA256 (rust/crates/float-cmp-0.10.0.crate) = b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8 +SIZE (rust/crates/float-cmp-0.10.0.crate) = 10702 +SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 +SIZE (rust/crates/fnv-1.0.7.crate) = 11266 +SHA256 (rust/crates/font-types-0.10.1.crate) = 39a654f404bbcbd48ea58c617c2993ee91d1cb63727a37bf2323a4edeed1b8c5 +SIZE (rust/crates/font-types-0.10.1.crate) = 24859 +SHA256 (rust/crates/fontconfig-parser-0.5.8.crate) = bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646 +SIZE (rust/crates/fontconfig-parser-0.5.8.crate) = 40928 +SHA256 (rust/crates/fontdb-0.23.0.crate) = 457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905 +SIZE (rust/crates/fontdb-0.23.0.crate) = 108324 +SHA256 (rust/crates/foreign-types-0.3.2.crate) = f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1 +SIZE (rust/crates/foreign-types-0.3.2.crate) = 7504 +SHA256 (rust/crates/foreign-types-shared-0.1.1.crate) = 00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b +SIZE (rust/crates/foreign-types-shared-0.1.1.crate) = 5672 +SHA256 (rust/crates/form_urlencoded-1.2.2.crate) = cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf +SIZE (rust/crates/form_urlencoded-1.2.2.crate) = 9347 +SHA256 (rust/crates/getrandom-0.2.16.crate) = 335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592 +SIZE (rust/crates/getrandom-0.2.16.crate) = 40163 +SHA256 (rust/crates/getrandom-0.3.4.crate) = 899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd +SIZE (rust/crates/getrandom-0.3.4.crate) = 50932 +SHA256 (rust/crates/gif-0.13.3.crate) = 4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b +SIZE (rust/crates/gif-0.13.3.crate) = 36010 +SHA256 (rust/crates/gif-0.14.1.crate) = f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e +SIZE (rust/crates/gif-0.14.1.crate) = 38581 +SHA256 (rust/crates/glidesort-0.1.2.crate) = f2e102e6eb644d3e0b186fc161e4460417880a0a0b87d235f2e5b8fb30f2e9e0 +SIZE (rust/crates/glidesort-0.1.2.crate) = 33672 +SHA256 (rust/crates/half-2.7.1.crate) = 6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b +SIZE (rust/crates/half-2.7.1.crate) = 61040 +SHA256 (rust/crates/hashbrown-0.16.1.crate) = 841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100 +SIZE (rust/crates/hashbrown-0.16.1.crate) = 147785 +SHA256 (rust/crates/hayagriva-0.9.1.crate) = 1cb69425736f184173b3ca6e27fcba440a61492a790c786b1c6af7e06a03e575 +SIZE (rust/crates/hayagriva-0.9.1.crate) = 460242 +SHA256 (rust/crates/hayro-0.4.0.crate) = 048488ba88552bb0fb2a7e4001c64d5bed65d1a92167186a1bb9151571f32e60 +SIZE (rust/crates/hayro-0.4.0.crate) = 36512 +SHA256 (rust/crates/hayro-font-0.3.0.crate) = 10e7e97ce840a6a70e7901e240ec65ba61106b66b37a4a1b899a2ce484248463 +SIZE (rust/crates/hayro-font-0.3.0.crate) = 38468 +SHA256 (rust/crates/hayro-interpret-0.4.0.crate) = 56204c972d08e844f3db13b1e14be769f846e576699b46d4f4637cc4f8f70102 +SIZE (rust/crates/hayro-interpret-0.4.0.crate) = 365232 +SHA256 (rust/crates/hayro-svg-0.2.0.crate) = e8c673304cec6e0dfd3b4f71fccecd45646899aa70279b62d3f933842abc4ac5 +SIZE (rust/crates/hayro-svg-0.2.0.crate) = 14532 +SHA256 (rust/crates/hayro-syntax-0.4.0.crate) = 3f9e5c7dbc0f11dc42775d1a6cc00f5f5137b90b6288dd7fe5f71d17b14d10be +SIZE (rust/crates/hayro-syntax-0.4.0.crate) = 116992 +SHA256 (rust/crates/hayro-write-0.3.0.crate) = cc05d8b4bc878b9aee48d980ecb25ed08f1dd9fad6da5ab4d9b7c56ec03a0cf6 +SIZE (rust/crates/hayro-write-0.3.0.crate) = 7835 +SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea +SIZE (rust/crates/heck-0.5.0.crate) = 11517 +SHA256 (rust/crates/hypher-0.1.6.crate) = 74e25026c579b170c59f8d3ddfc523d7dab0abe079f09eb8edaebd2417044f60 +SIZE (rust/crates/hypher-0.1.6.crate) = 852784 +SHA256 (rust/crates/iana-time-zone-0.1.64.crate) = 33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb +SIZE (rust/crates/iana-time-zone-0.1.64.crate) = 33152 +SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f +SIZE (rust/crates/iana-time-zone-haiku-0.1.2.crate) = 7185 +SHA256 (rust/crates/icu_collections-1.5.0.crate) = db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526 +SIZE (rust/crates/icu_collections-1.5.0.crate) = 82762 +SHA256 (rust/crates/icu_collections-2.1.1.crate) = 4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43 +SIZE (rust/crates/icu_collections-2.1.1.crate) = 87233 +SHA256 (rust/crates/icu_locale_core-2.1.1.crate) = edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6 +SIZE (rust/crates/icu_locale_core-2.1.1.crate) = 70876 +SHA256 (rust/crates/icu_locid-1.5.0.crate) = 13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637 +SIZE (rust/crates/icu_locid-1.5.0.crate) = 55131 +SHA256 (rust/crates/icu_locid_transform-1.5.0.crate) = 01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e +SIZE (rust/crates/icu_locid_transform-1.5.0.crate) = 29094 +SHA256 (rust/crates/icu_locid_transform_data-1.5.1.crate) = 7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d +SIZE (rust/crates/icu_locid_transform_data-1.5.1.crate) = 42937 +SHA256 (rust/crates/icu_normalizer-2.1.1.crate) = 5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599 +SIZE (rust/crates/icu_normalizer-2.1.1.crate) = 67132 +SHA256 (rust/crates/icu_normalizer_data-2.1.1.crate) = 7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a +SIZE (rust/crates/icu_normalizer_data-2.1.1.crate) = 68649 +SHA256 (rust/crates/icu_properties-1.5.1.crate) = 93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5 +SIZE (rust/crates/icu_properties-1.5.1.crate) = 64479 +SHA256 (rust/crates/icu_properties-2.1.1.crate) = e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99 +SIZE (rust/crates/icu_properties-2.1.1.crate) = 59036 +SHA256 (rust/crates/icu_properties_data-1.5.1.crate) = 85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2 +SIZE (rust/crates/icu_properties_data-1.5.1.crate) = 229231 +SHA256 (rust/crates/icu_properties_data-2.1.1.crate) = 02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899 +SIZE (rust/crates/icu_properties_data-2.1.1.crate) = 162431 +SHA256 (rust/crates/icu_provider-1.5.0.crate) = 6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9 +SIZE (rust/crates/icu_provider-1.5.0.crate) = 52722 +SHA256 (rust/crates/icu_provider-2.1.1.crate) = 85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614 +SIZE (rust/crates/icu_provider-2.1.1.crate) = 50907 +SHA256 (rust/crates/icu_provider_adapters-1.5.0.crate) = d6324dfd08348a8e0374a447ebd334044d766b1839bb8d5ccf2482a99a77c0bc +SIZE (rust/crates/icu_provider_adapters-1.5.0.crate) = 16576 +SHA256 (rust/crates/icu_provider_blob-1.5.0.crate) = c24b98d1365f55d78186c205817631a4acf08d7a45bdf5dc9dcf9c5d54dccf51 +SIZE (rust/crates/icu_provider_blob-1.5.0.crate) = 14296 +SHA256 (rust/crates/icu_provider_macros-1.5.0.crate) = 1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6 +SIZE (rust/crates/icu_provider_macros-1.5.0.crate) = 6436 +SHA256 (rust/crates/icu_segmenter-1.5.0.crate) = a717725612346ffc2d7b42c94b820db6908048f39434504cb130e8b46256b0de +SIZE (rust/crates/icu_segmenter-1.5.0.crate) = 610798 +SHA256 (rust/crates/icu_segmenter_data-1.5.1.crate) = a1e52775179941363cc594e49ce99284d13d6948928d8e72c755f55e98caa1eb +SIZE (rust/crates/icu_segmenter_data-1.5.1.crate) = 3385006 +SHA256 (rust/crates/idna-1.1.0.crate) = 3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de +SIZE (rust/crates/idna-1.1.0.crate) = 148747 +SHA256 (rust/crates/idna_adapter-1.2.1.crate) = 3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344 +SIZE (rust/crates/idna_adapter-1.2.1.crate) = 10389 +SHA256 (rust/crates/image-0.25.9.crate) = e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a +SIZE (rust/crates/image-0.25.9.crate) = 294591 +SHA256 (rust/crates/image-webp-0.2.4.crate) = 525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3 +SIZE (rust/crates/image-webp-0.2.4.crate) = 68478 +SHA256 (rust/crates/imagesize-0.13.0.crate) = edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285 +SIZE (rust/crates/imagesize-0.13.0.crate) = 17033 +SHA256 (rust/crates/imagesize-0.14.0.crate) = 09e54e57b4c48b40f7aec75635392b12b3421fa26fe8b4332e63138ed278459c +SIZE (rust/crates/imagesize-0.14.0.crate) = 22706 +SHA256 (rust/crates/indexmap-2.12.1.crate) = 0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2 +SIZE (rust/crates/indexmap-2.12.1.crate) = 100184 +SHA256 (rust/crates/indoc-2.0.7.crate) = 79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706 +SIZE (rust/crates/indoc-2.0.7.crate) = 17184 +SHA256 (rust/crates/infer-0.19.0.crate) = a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7 +SIZE (rust/crates/infer-0.19.0.crate) = 19091 +SHA256 (rust/crates/itoa-1.0.15.crate) = 4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c +SIZE (rust/crates/itoa-1.0.15.crate) = 11231 +SHA256 (rust/crates/js-sys-0.3.83.crate) = 464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8 +SIZE (rust/crates/js-sys-0.3.83.crate) = 56425 +SHA256 (rust/crates/kamadak-exif-0.6.1.crate) = 1130d80c7374efad55a117d715a3af9368f0fa7a2c54573afc15a188cd984837 +SIZE (rust/crates/kamadak-exif-0.6.1.crate) = 57852 +SHA256 (rust/crates/krilla-0.6.0.crate) = a0ddfec86fec13d068075e14f22a7e217c281f3ed69ddcb427bf3f5d504fd674 +SIZE (rust/crates/krilla-0.6.0.crate) = 176861 +SHA256 (rust/crates/krilla-svg-0.3.0.crate) = f485e1a850201a01dcd8d73e7cf09f2cd4c4cc85c2cd296359094d49336d8ef7 +SIZE (rust/crates/krilla-svg-0.3.0.crate) = 19060 +SHA256 (rust/crates/kurbo-0.11.3.crate) = c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62 +SIZE (rust/crates/kurbo-0.11.3.crate) = 137586 +SHA256 (rust/crates/kurbo-0.12.0.crate) = ce9729cc38c18d86123ab736fd2e7151763ba226ac2490ec092d1dd148825e32 +SIZE (rust/crates/kurbo-0.12.0.crate) = 153541 +SHA256 (rust/crates/libc-0.2.178.crate) = 37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091 +SIZE (rust/crates/libc-0.2.178.crate) = 783720 +SHA256 (rust/crates/libm-0.2.15.crate) = f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de +SIZE (rust/crates/libm-0.2.15.crate) = 156108 +SHA256 (rust/crates/libredox-0.1.10.crate) = 416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb +SIZE (rust/crates/libredox-0.1.10.crate) = 7332 +SHA256 (rust/crates/libz-rs-sys-0.5.3.crate) = 8b484ba8d4f775eeca644c452a56650e544bf7e617f1d170fe7298122ead5222 +SIZE (rust/crates/libz-rs-sys-0.5.3.crate) = 47421 +SHA256 (rust/crates/linked-hash-map-0.5.6.crate) = 0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f +SIZE (rust/crates/linked-hash-map-0.5.6.crate) = 15049 +SHA256 (rust/crates/linux-raw-sys-0.11.0.crate) = df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039 +SIZE (rust/crates/linux-raw-sys-0.11.0.crate) = 2659624 +SHA256 (rust/crates/lipsum-0.9.1.crate) = 636860251af8963cc40f6b4baadee105f02e21b28131d76eba8e40ce84ab8064 +SIZE (rust/crates/lipsum-0.9.1.crate) = 34495 +SHA256 (rust/crates/litemap-0.7.5.crate) = 23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856 +SIZE (rust/crates/litemap-0.7.5.crate) = 29962 +SHA256 (rust/crates/litemap-0.8.1.crate) = 6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77 +SIZE (rust/crates/litemap-0.8.1.crate) = 34172 +SHA256 (rust/crates/lock_api-0.4.14.crate) = 224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965 +SIZE (rust/crates/lock_api-0.4.14.crate) = 29249 +SHA256 (rust/crates/log-0.4.29.crate) = 5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897 +SIZE (rust/crates/log-0.4.29.crate) = 51515 +SHA256 (rust/crates/memchr-2.7.6.crate) = f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273 +SIZE (rust/crates/memchr-2.7.6.crate) = 97616 +SHA256 (rust/crates/memmap2-0.9.9.crate) = 744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490 +SIZE (rust/crates/memmap2-0.9.9.crate) = 34576 +SHA256 (rust/crates/memoffset-0.9.1.crate) = 488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a +SIZE (rust/crates/memoffset-0.9.1.crate) = 9032 +SHA256 (rust/crates/miniz_oxide-0.8.9.crate) = 1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316 +SIZE (rust/crates/miniz_oxide-0.8.9.crate) = 67132 +SHA256 (rust/crates/moxcms-0.7.10.crate) = 80986bbbcf925ebd3be54c26613d861255284584501595cf418320c078945608 +SIZE (rust/crates/moxcms-0.7.10.crate) = 176635 +SHA256 (rust/crates/mutate_once-0.1.2.crate) = 13d2233c9842d08cfe13f9eac96e207ca6a2ea10b80259ebe8ad0268be27d2af +SIZE (rust/crates/mutate_once-0.1.2.crate) = 4508 +SHA256 (rust/crates/native-tls-0.2.14.crate) = 87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e +SIZE (rust/crates/native-tls-0.2.14.crate) = 29385 +SHA256 (rust/crates/num-bigint-0.4.6.crate) = a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9 +SIZE (rust/crates/num-bigint-0.4.6.crate) = 102801 +SHA256 (rust/crates/num-conv-0.1.0.crate) = 51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9 +SIZE (rust/crates/num-conv-0.1.0.crate) = 7444 +SHA256 (rust/crates/num-integer-0.1.46.crate) = 7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f +SIZE (rust/crates/num-integer-0.1.46.crate) = 22331 +SHA256 (rust/crates/num-traits-0.2.19.crate) = 071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841 +SIZE (rust/crates/num-traits-0.2.19.crate) = 51631 +SHA256 (rust/crates/object-0.32.2.crate) = a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441 +SIZE (rust/crates/object-0.32.2.crate) = 286994 +SHA256 (rust/crates/once_cell-1.21.3.crate) = 42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d +SIZE (rust/crates/once_cell-1.21.3.crate) = 34534 +SHA256 (rust/crates/openssl-0.10.75.crate) = 08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328 +SIZE (rust/crates/openssl-0.10.75.crate) = 288136 +SHA256 (rust/crates/openssl-macros-0.1.1.crate) = a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c +SIZE (rust/crates/openssl-macros-0.1.1.crate) = 5601 +SHA256 (rust/crates/openssl-probe-0.1.6.crate) = d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e +SIZE (rust/crates/openssl-probe-0.1.6.crate) = 8128 +SHA256 (rust/crates/openssl-src-300.5.4+3.5.4.crate) = a507b3792995dae9b0df8a1c1e3771e8418b7c2d9f0baeba32e6fe8b06c7cb72 +SIZE (rust/crates/openssl-src-300.5.4+3.5.4.crate) = 7102203 +SHA256 (rust/crates/openssl-sys-0.9.111.crate) = 82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321 +SIZE (rust/crates/openssl-sys-0.9.111.crate) = 80871 +SHA256 (rust/crates/option-ext-0.2.0.crate) = 04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d +SIZE (rust/crates/option-ext-0.2.0.crate) = 7345 +SHA256 (rust/crates/palette-0.7.6.crate) = 4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6 +SIZE (rust/crates/palette-0.7.6.crate) = 230913 +SHA256 (rust/crates/palette_derive-0.7.6.crate) = f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30 +SIZE (rust/crates/palette_derive-0.7.6.crate) = 17073 +SHA256 (rust/crates/parking_lot-0.12.5.crate) = 93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a +SIZE (rust/crates/parking_lot-0.12.5.crate) = 46735 +SHA256 (rust/crates/parking_lot_core-0.9.12.crate) = 2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1 +SIZE (rust/crates/parking_lot_core-0.9.12.crate) = 34110 +SHA256 (rust/crates/paste-1.0.15.crate) = 57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a +SIZE (rust/crates/paste-1.0.15.crate) = 18374 +SHA256 (rust/crates/pathdiff-0.2.3.crate) = df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3 +SIZE (rust/crates/pathdiff-0.2.3.crate) = 7495 +SHA256 (rust/crates/pdf-writer-0.14.0.crate) = 92a79477295a713c2ed425aa82a8b5d20cec3fdee203706cbe6f3854880c1c81 +SIZE (rust/crates/pdf-writer-0.14.0.crate) = 1944789 +SHA256 (rust/crates/percent-encoding-2.3.2.crate) = 9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220 +SIZE (rust/crates/percent-encoding-2.3.2.crate) = 11583 +SHA256 (rust/crates/phf-0.13.1.crate) = c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf +SIZE (rust/crates/phf-0.13.1.crate) = 24786 +SHA256 (rust/crates/phf_generator-0.13.1.crate) = 135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737 +SIZE (rust/crates/phf_generator-0.13.1.crate) = 15952 +SHA256 (rust/crates/phf_macros-0.13.1.crate) = 812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef +SIZE (rust/crates/phf_macros-0.13.1.crate) = 21732 +SHA256 (rust/crates/phf_shared-0.13.1.crate) = e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266 +SIZE (rust/crates/phf_shared-0.13.1.crate) = 16141 +SHA256 (rust/crates/pico-args-0.5.0.crate) = 5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315 +SIZE (rust/crates/pico-args-0.5.0.crate) = 11545 +SHA256 (rust/crates/pixglyph-0.6.0.crate) = 3c1106193bc18a4b840eb075ff6664c8a0b0270f0531bb12a7e9c803e53b55c5 +SIZE (rust/crates/pixglyph-0.6.0.crate) = 23135 +SHA256 (rust/crates/pkg-config-0.3.32.crate) = 7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c +SIZE (rust/crates/pkg-config-0.3.32.crate) = 21370 +SHA256 (rust/crates/plist-1.8.0.crate) = 740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07 +SIZE (rust/crates/plist-1.8.0.crate) = 54623 +SHA256 (rust/crates/png-0.17.16.crate) = 82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526 +SIZE (rust/crates/png-0.17.16.crate) = 117975 +SHA256 (rust/crates/png-0.18.0.crate) = 97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0 +SIZE (rust/crates/png-0.18.0.crate) = 118041 +SHA256 (rust/crates/portable-atomic-1.11.1.crate) = f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483 +SIZE (rust/crates/portable-atomic-1.11.1.crate) = 185506 +SHA256 (rust/crates/postcard-1.1.3.crate) = 6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24 +SIZE (rust/crates/postcard-1.1.3.crate) = 43968 +SHA256 (rust/crates/potential_utf-0.1.4.crate) = b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77 +SIZE (rust/crates/potential_utf-0.1.4.crate) = 9514 +SHA256 (rust/crates/powerfmt-0.2.0.crate) = 439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391 +SIZE (rust/crates/powerfmt-0.2.0.crate) = 15165 +SHA256 (rust/crates/ppv-lite86-0.2.21.crate) = 85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9 +SIZE (rust/crates/ppv-lite86-0.2.21.crate) = 22522 +SHA256 (rust/crates/proc-macro-hack-0.5.20+deprecated.crate) = dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068 +SIZE (rust/crates/proc-macro-hack-0.5.20+deprecated.crate) = 15045 +SHA256 (rust/crates/proc-macro2-1.0.103.crate) = 5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8 +SIZE (rust/crates/proc-macro2-1.0.103.crate) = 60024 +SHA256 (rust/crates/psm-0.1.28.crate) = d11f2fedc3b7dafdc2851bc52f277377c5473d378859be234bc7ebb593144d01 +SIZE (rust/crates/psm-0.1.28.crate) = 24836 +SHA256 (rust/crates/pxfm-0.1.26.crate) = b3502d6155304a4173a5f2c34b52b7ed0dd085890326cb50fd625fdf39e86b3b +SIZE (rust/crates/pxfm-0.1.26.crate) = 862711 +SHA256 (rust/crates/pyo3-0.27.2.crate) = ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d +SIZE (rust/crates/pyo3-0.27.2.crate) = 1171342 +SHA256 (rust/crates/pyo3-build-config-0.27.2.crate) = b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6 +SIZE (rust/crates/pyo3-build-config-0.27.2.crate) = 35564 +SHA256 (rust/crates/pyo3-ffi-0.27.2.crate) = 1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089 +SIZE (rust/crates/pyo3-ffi-0.27.2.crate) = 78552 +SHA256 (rust/crates/pyo3-macros-0.27.2.crate) = 0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02 +SIZE (rust/crates/pyo3-macros-0.27.2.crate) = 8913 +SHA256 (rust/crates/pyo3-macros-backend-0.27.2.crate) = 03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9 +SIZE (rust/crates/pyo3-macros-backend-0.27.2.crate) = 82513 +SHA256 (rust/crates/python3-dll-a-0.2.14.crate) = d381ef313ae70b4da5f95f8a4de773c6aa5cd28f73adec4b4a31df70b66780d8 +SIZE (rust/crates/python3-dll-a-0.2.14.crate) = 103489 +SHA256 (rust/crates/qcms-0.3.0.crate) = edecfcd5d755a5e5d98e24cf43113e7cdaec5a070edd0f6b250c03a573da30fa +SIZE (rust/crates/qcms-0.3.0.crate) = 53550 +SHA256 (rust/crates/quick-error-2.0.1.crate) = a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3 +SIZE (rust/crates/quick-error-2.0.1.crate) = 14265 +SHA256 (rust/crates/quick-xml-0.38.4.crate) = b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c +SIZE (rust/crates/quick-xml-0.38.4.crate) = 205035 +SHA256 (rust/crates/quote-1.0.42.crate) = a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f +SIZE (rust/crates/quote-1.0.42.crate) = 31504 +SHA256 (rust/crates/r-efi-5.3.0.crate) = 69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f +SIZE (rust/crates/r-efi-5.3.0.crate) = 64532 +SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 +SIZE (rust/crates/rand-0.8.5.crate) = 87113 +SHA256 (rust/crates/rand_chacha-0.3.1.crate) = e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88 +SIZE (rust/crates/rand_chacha-0.3.1.crate) = 15251 +SHA256 (rust/crates/rand_core-0.6.4.crate) = ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c +SIZE (rust/crates/rand_core-0.6.4.crate) = 22666 +SHA256 (rust/crates/rayon-1.11.0.crate) = 368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f +SIZE (rust/crates/rayon-1.11.0.crate) = 182470 +SHA256 (rust/crates/rayon-core-1.13.0.crate) = 22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91 +SIZE (rust/crates/rayon-core-1.13.0.crate) = 73151 +SHA256 (rust/crates/read-fonts-0.35.0.crate) = 6717cf23b488adf64b9d711329542ba34de147df262370221940dfabc2c91358 +SIZE (rust/crates/read-fonts-0.35.0.crate) = 416793 +SHA256 (rust/crates/redox_syscall-0.5.18.crate) = ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d +SIZE (rust/crates/redox_syscall-0.5.18.crate) = 30747 +SHA256 (rust/crates/redox_users-0.5.2.crate) = a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac +SIZE (rust/crates/redox_users-0.5.2.crate) = 17280 +SHA256 (rust/crates/regex-1.12.2.crate) = 843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4 +SIZE (rust/crates/regex-1.12.2.crate) = 163843 +SHA256 (rust/crates/regex-automata-0.4.13.crate) = 5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c +SIZE (rust/crates/regex-automata-0.4.13.crate) = 625250 +SHA256 (rust/crates/regex-syntax-0.8.8.crate) = 7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58 +SIZE (rust/crates/regex-syntax-0.8.8.crate) = 359141 +SHA256 (rust/crates/resvg-0.45.1.crate) = a8928798c0a55e03c9ca6c4c6846f76377427d2c1e1f7e6de3c06ae57942df43 +SIZE (rust/crates/resvg-0.45.1.crate) = 78002 +SHA256 (rust/crates/rgb-0.8.52.crate) = 0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce +SIZE (rust/crates/rgb-0.8.52.crate) = 22449 +SHA256 (rust/crates/roman-numerals-rs-3.1.0.crate) = c85cd47a33a4510b1424fe796498e174c6a9cf94e606460ef022a19f3e4ff85e +SIZE (rust/crates/roman-numerals-rs-3.1.0.crate) = 5308 +SHA256 (rust/crates/roxmltree-0.20.0.crate) = 6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97 +SIZE (rust/crates/roxmltree-0.20.0.crate) = 54594 +SHA256 (rust/crates/rust_decimal-1.39.0.crate) = 35affe401787a9bd846712274d97654355d21b2a2c092a3139aabe31e9022282 +SIZE (rust/crates/rust_decimal-1.39.0.crate) = 154142 +SHA256 (rust/crates/rustc-hash-2.1.1.crate) = 357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d +SIZE (rust/crates/rustc-hash-2.1.1.crate) = 14154 +SHA256 (rust/crates/rustix-1.1.2.crate) = cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e +SIZE (rust/crates/rustix-1.1.2.crate) = 422717 +SHA256 (rust/crates/rustversion-1.0.22.crate) = b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d +SIZE (rust/crates/rustversion-1.0.22.crate) = 21096 +SHA256 (rust/crates/rustybuzz-0.20.1.crate) = fd3c7c96f8a08ee34eff8857b11b49b07d71d1c3f4e88f8a88d4c9e9f90b1702 +SIZE (rust/crates/rustybuzz-0.20.1.crate) = 272721 +SHA256 (rust/crates/ryu-1.0.20.crate) = 28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f +SIZE (rust/crates/ryu-1.0.20.crate) = 48738 +SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 +SIZE (rust/crates/same-file-1.0.6.crate) = 10183 +SHA256 (rust/crates/schannel-0.1.28.crate) = 891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1 +SIZE (rust/crates/schannel-0.1.28.crate) = 42312 +SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49 +SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619 +SHA256 (rust/crates/security-framework-2.11.1.crate) = 897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02 +SIZE (rust/crates/security-framework-2.11.1.crate) = 80188 +SHA256 (rust/crates/security-framework-sys-2.15.0.crate) = cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0 +SIZE (rust/crates/security-framework-sys-2.15.0.crate) = 20718 +SHA256 (rust/crates/serde-1.0.228.crate) = 9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e +SIZE (rust/crates/serde-1.0.228.crate) = 83652 +SHA256 (rust/crates/serde_core-1.0.228.crate) = 41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad +SIZE (rust/crates/serde_core-1.0.228.crate) = 63111 +SHA256 (rust/crates/serde_derive-1.0.228.crate) = d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79 +SIZE (rust/crates/serde_derive-1.0.228.crate) = 59605 +SHA256 (rust/crates/serde_json-1.0.145.crate) = 402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c +SIZE (rust/crates/serde_json-1.0.145.crate) = 155748 +SHA256 (rust/crates/serde_spanned-0.6.9.crate) = bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3 +SIZE (rust/crates/serde_spanned-0.6.9.crate) = 10210 +SHA256 (rust/crates/serde_yaml-0.9.34+deprecated.crate) = 6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47 +SIZE (rust/crates/serde_yaml-0.9.34+deprecated.crate) = 65290 +SHA256 (rust/crates/shlex-1.3.0.crate) = 0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64 +SIZE (rust/crates/shlex-1.3.0.crate) = 18713 +SHA256 (rust/crates/simd-adler32-0.3.7.crate) = d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe +SIZE (rust/crates/simd-adler32-0.3.7.crate) = 12086 +SHA256 (rust/crates/simplecss-0.2.2.crate) = 7a9c6883ca9c3c7c90e888de77b7a5c849c779d25d74a1269b0218b14e8b136c +SIZE (rust/crates/simplecss-0.2.2.crate) = 22136 +SHA256 (rust/crates/siphasher-1.0.1.crate) = 56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d +SIZE (rust/crates/siphasher-1.0.1.crate) = 10351 +SHA256 (rust/crates/skrifa-0.37.0.crate) = 8c31071dedf532758ecf3fed987cdb4bd9509f900e026ab684b4ecb81ea49841 +SIZE (rust/crates/skrifa-0.37.0.crate) = 283031 +SHA256 (rust/crates/slab-0.4.11.crate) = 7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589 +SIZE (rust/crates/slab-0.4.11.crate) = 18549 +SHA256 (rust/crates/slotmap-1.0.7.crate) = dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a +SIZE (rust/crates/slotmap-1.0.7.crate) = 61390 +SHA256 (rust/crates/smallvec-1.15.1.crate) = 67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03 +SIZE (rust/crates/smallvec-1.15.1.crate) = 38116 +SHA256 (rust/crates/spin-0.9.8.crate) = 6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67 +SIZE (rust/crates/spin-0.9.8.crate) = 38958 +SHA256 (rust/crates/stable_deref_trait-1.2.1.crate) = 6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596 +SIZE (rust/crates/stable_deref_trait-1.2.1.crate) = 8186 +SHA256 (rust/crates/stacker-0.1.22.crate) = e1f8b29fb42aafcea4edeeb6b2f2d7ecd0d969c48b4cf0d2e64aafc471dd6e59 +SIZE (rust/crates/stacker-0.1.22.crate) = 17269 +SHA256 (rust/crates/strict-num-0.1.1.crate) = 6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731 +SIZE (rust/crates/strict-num-0.1.1.crate) = 5104 +SHA256 (rust/crates/strum-0.27.2.crate) = af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf +SIZE (rust/crates/strum-0.27.2.crate) = 8489 +SHA256 (rust/crates/strum_macros-0.27.2.crate) = 7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7 +SIZE (rust/crates/strum_macros-0.27.2.crate) = 30522 +SHA256 (rust/crates/subsetter-0.2.3.crate) = cb6895a12ac5599bb6057362f00e8a3cf1daab4df33f553a55690a44e4fed8d0 +SIZE (rust/crates/subsetter-0.2.3.crate) = 47016 +SHA256 (rust/crates/svgtypes-0.15.3.crate) = 68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc +SIZE (rust/crates/svgtypes-0.15.3.crate) = 43696 +SHA256 (rust/crates/syn-2.0.111.crate) = 390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87 +SIZE (rust/crates/syn-2.0.111.crate) = 302117 +SHA256 (rust/crates/synstructure-0.13.2.crate) = 728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2 +SIZE (rust/crates/synstructure-0.13.2.crate) = 18950 +SHA256 (rust/crates/syntect-5.3.0.crate) = 656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925 +SIZE (rust/crates/syntect-5.3.0.crate) = 833348 +SHA256 (rust/crates/tar-0.4.44.crate) = 1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a +SIZE (rust/crates/tar-0.4.44.crate) = 61020 +SHA256 (rust/crates/target-lexicon-0.13.3.crate) = df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c +SIZE (rust/crates/target-lexicon-0.13.3.crate) = 28498 +SHA256 (rust/crates/tempfile-3.23.0.crate) = 2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16 +SIZE (rust/crates/tempfile-3.23.0.crate) = 43063 +SHA256 (rust/crates/termcolor-1.4.1.crate) = 06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755 +SIZE (rust/crates/termcolor-1.4.1.crate) = 18773 +SHA256 (rust/crates/thin-vec-0.2.14.crate) = 144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d +SIZE (rust/crates/thin-vec-0.2.14.crate) = 35087 +SHA256 (rust/crates/thiserror-2.0.17.crate) = f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8 +SIZE (rust/crates/thiserror-2.0.17.crate) = 28857 +SHA256 (rust/crates/thiserror-impl-2.0.17.crate) = 3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913 +SIZE (rust/crates/thiserror-impl-2.0.17.crate) = 21344 +SHA256 (rust/crates/time-0.3.44.crate) = 91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d +SIZE (rust/crates/time-0.3.44.crate) = 143200 +SHA256 (rust/crates/time-core-0.1.6.crate) = 40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b +SIZE (rust/crates/time-core-0.1.6.crate) = 9105 +SHA256 (rust/crates/time-macros-0.2.24.crate) = 30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3 +SIZE (rust/crates/time-macros-0.2.24.crate) = 24715 +SHA256 (rust/crates/tiny-skia-0.11.4.crate) = 83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab +SIZE (rust/crates/tiny-skia-0.11.4.crate) = 201082 +SHA256 (rust/crates/tiny-skia-path-0.11.4.crate) = 9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93 +SIZE (rust/crates/tiny-skia-path-0.11.4.crate) = 47764 +SHA256 (rust/crates/tinystr-0.7.6.crate) = 9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f +SIZE (rust/crates/tinystr-0.7.6.crate) = 16971 +SHA256 (rust/crates/tinystr-0.8.2.crate) = 42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869 +SIZE (rust/crates/tinystr-0.8.2.crate) = 23942 +SHA256 (rust/crates/tinyvec-1.10.0.crate) = bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa +SIZE (rust/crates/tinyvec-1.10.0.crate) = 51996 +SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20 +SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865 +SHA256 (rust/crates/toml-0.8.23.crate) = dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362 +SIZE (rust/crates/toml-0.8.23.crate) = 36050 +SHA256 (rust/crates/toml_datetime-0.6.11.crate) = 22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c +SIZE (rust/crates/toml_datetime-0.6.11.crate) = 16125 +SHA256 (rust/crates/toml_edit-0.22.27.crate) = 41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a +SIZE (rust/crates/toml_edit-0.22.27.crate) = 78602 +SHA256 (rust/crates/toml_write-0.1.2.crate) = 5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801 +SIZE (rust/crates/toml_write-0.1.2.crate) = 15660 +SHA256 (rust/crates/ttf-parser-0.25.1.crate) = d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31 +SIZE (rust/crates/ttf-parser-0.25.1.crate) = 201121 +SHA256 (rust/crates/two-face-0.4.4.crate) = 3d112cfd41c1387546416bcf49c4ae2a1fcacda0d42c9e97120e9798c90c0923 +SIZE (rust/crates/two-face-0.4.4.crate) = 3454955 +SHA256 (rust/crates/typed-arena-2.0.2.crate) = 6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a +SIZE (rust/crates/typed-arena-2.0.2.crate) = 11848 +SHA256 (rust/crates/typst-0.14.1.crate) = e6be5a48cf976b492e1c8a538f02ced94fc3b71eae85984eb24f22f3eb9d01e8 +SIZE (rust/crates/typst-0.14.1.crate) = 27567 +SHA256 (rust/crates/typst-assets-0.14.1.crate) = 98b250f6c1ddd0f435db2283c7eb36a9b72bee34d6397625bf7f817c64ad7c62 +SIZE (rust/crates/typst-assets-0.14.1.crate) = 6376952 +SHA256 (rust/crates/typst-eval-0.14.1.crate) = a9b70724d6eb428b7a07bc15ea1a148c950a37eda34d8f26930812e9f5abfa3c +SIZE (rust/crates/typst-eval-0.14.1.crate) = 43170 +SHA256 (rust/crates/typst-html-0.14.1.crate) = 4985608c896e00fc4219403040662ca771a58be79cc3d2c105b61f33715f6be2 +SIZE (rust/crates/typst-html-0.14.1.crate) = 59485 +SHA256 (rust/crates/typst-kit-0.14.1.crate) = 2beb0686fd072c53b1fd7c37fa2d6639df6fdaa75f86765d39bbee6c78d8eece +SIZE (rust/crates/typst-kit-0.14.1.crate) = 33286 +SHA256 (rust/crates/typst-layout-0.14.1.crate) = 02c528f8279f9557f28a37af07d26ed7cd293884a9ffa79f5d604bf4cded1a1f +SIZE (rust/crates/typst-layout-0.14.1.crate) = 209308 +SHA256 (rust/crates/typst-library-0.14.1.crate) = 839303e0c6e49bc893fafc51ed761eab44b97aa38dce913242fafbd553b2557c +SIZE (rust/crates/typst-library-0.14.1.crate) = 516051 +SHA256 (rust/crates/typst-macros-0.14.1.crate) = 405ca56a99f8dd89df041ca53f42c4f0fb9ff287e52b255f44e5a9100bbc3605 +SIZE (rust/crates/typst-macros-0.14.1.crate) = 25331 +SHA256 (rust/crates/typst-pdf-0.14.1.crate) = 60dfaf70750b95d0389a8448bb8105600dcf6ba24443e28557627b7b51c47db0 +SIZE (rust/crates/typst-pdf-0.14.1.crate) = 83058 +SHA256 (rust/crates/typst-realize-0.14.1.crate) = c31c5d5374f04f06a430355e6fc40b6539d641bad6d0da386c5492065e210c5b +SIZE (rust/crates/typst-realize-0.14.1.crate) = 35893 +SHA256 (rust/crates/typst-render-0.14.1.crate) = 7315528cda4882c33baa39f6ea1abf993b5a36f883b98b46e5dc05c4e9ade9fa +SIZE (rust/crates/typst-render-0.14.1.crate) = 32960 +SHA256 (rust/crates/typst-svg-0.14.1.crate) = 045a396e4543906fae4868c0c621a2a6322aa56d4023d207cdab30517e39787a +SIZE (rust/crates/typst-svg-0.14.1.crate) = 37609 +SHA256 (rust/crates/typst-syntax-0.14.1.crate) = 19e223636668a2930e0a46b18e3786d4ae02f69ac5d9dda58e34ca431403d05c +SIZE (rust/crates/typst-syntax-0.14.1.crate) = 77819 +SHA256 (rust/crates/typst-timing-0.14.1.crate) = 3347a043b8659b104f198abe825a6c419d0675da276489c310a5620aea799816 +SIZE (rust/crates/typst-timing-0.14.1.crate) = 11867 +SHA256 (rust/crates/typst-utils-0.14.1.crate) = 737d445f5c0cb75b382a6841953a9e22daadad2c264402b41ebf5388356369fd +SIZE (rust/crates/typst-utils-0.14.1.crate) = 23764 +SHA256 (rust/crates/unic-langid-0.9.6.crate) = a28ba52c9b05311f4f6e62d5d9d46f094bd6e84cb8df7b3ef952748d752a7d05 +SIZE (rust/crates/unic-langid-0.9.6.crate) = 9031 +SHA256 (rust/crates/unic-langid-impl-0.9.6.crate) = dce1bf08044d4b7a94028c93786f8566047edc11110595914de93362559bc658 +SIZE (rust/crates/unic-langid-impl-0.9.6.crate) = 90020 +SHA256 (rust/crates/unic-langid-macros-0.9.6.crate) = d5957eb82e346d7add14182a3315a7e298f04e1ba4baac36f7f0dbfedba5fc25 +SIZE (rust/crates/unic-langid-macros-0.9.6.crate) = 6517 +SHA256 (rust/crates/unic-langid-macros-impl-0.9.6.crate) = a1249a628de3ad34b821ecb1001355bca3940bcb2f88558f1a8bd82e977f75b5 +SIZE (rust/crates/unic-langid-macros-impl-0.9.6.crate) = 7073 +SHA256 (rust/crates/unicode-bidi-0.3.18.crate) = 5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5 +SIZE (rust/crates/unicode-bidi-0.3.18.crate) = 58300 +SHA256 (rust/crates/unicode-bidi-mirroring-0.4.0.crate) = 5dfa6e8c60bb66d49db113e0125ee8711b7647b5579dc7f5f19c42357ed039fe +SIZE (rust/crates/unicode-bidi-mirroring-0.4.0.crate) = 8169 +SHA256 (rust/crates/unicode-ccc-0.4.0.crate) = ce61d488bcdc9bc8b5d1772c404828b17fc481c0a582b5581e95fb233aef503e +SIZE (rust/crates/unicode-ccc-0.4.0.crate) = 8942 +SHA256 (rust/crates/unicode-ident-1.0.22.crate) = 9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5 +SIZE (rust/crates/unicode-ident-1.0.22.crate) = 47919 +SHA256 (rust/crates/unicode-math-class-0.1.0.crate) = 7d246cf599d5fae3c8d56e04b20eb519adb89a8af8d0b0fbcded369aa3647d65 +SIZE (rust/crates/unicode-math-class-0.1.0.crate) = 15441 +SHA256 (rust/crates/unicode-normalization-0.1.25.crate) = 5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8 +SIZE (rust/crates/unicode-normalization-0.1.25.crate) = 128462 +SHA256 (rust/crates/unicode-properties-0.1.4.crate) = 7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d +SIZE (rust/crates/unicode-properties-0.1.4.crate) = 42752 +SHA256 (rust/crates/unicode-script-0.5.8.crate) = 383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee +SIZE (rust/crates/unicode-script-0.5.8.crate) = 48253 +SHA256 (rust/crates/unicode-segmentation-1.12.0.crate) = f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493 +SIZE (rust/crates/unicode-segmentation-1.12.0.crate) = 106323 +SHA256 (rust/crates/unicode-vo-0.1.0.crate) = b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94 +SIZE (rust/crates/unicode-vo-0.1.0.crate) = 8084 +SHA256 (rust/crates/unicode-width-0.2.2.crate) = b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254 +SIZE (rust/crates/unicode-width-0.2.2.crate) = 282768 +SHA256 (rust/crates/unindent-0.2.4.crate) = 7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3 +SIZE (rust/crates/unindent-0.2.4.crate) = 7422 +SHA256 (rust/crates/unsafe-libyaml-0.2.11.crate) = 673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861 +SIZE (rust/crates/unsafe-libyaml-0.2.11.crate) = 62101 +SHA256 (rust/crates/unscanny-0.1.0.crate) = e9df2af067a7953e9c3831320f35c1cc0600c30d44d9f7a12b01db1cd88d6b47 +SIZE (rust/crates/unscanny-0.1.0.crate) = 10338 +SHA256 (rust/crates/ureq-2.12.1.crate) = 02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d +SIZE (rust/crates/ureq-2.12.1.crate) = 115366 +SHA256 (rust/crates/url-2.5.7.crate) = 08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b +SIZE (rust/crates/url-2.5.7.crate) = 87907 +SHA256 (rust/crates/usvg-0.45.1.crate) = 80be9b06fbae3b8b303400ab20778c80bbaf338f563afe567cf3c9eea17b47ef +SIZE (rust/crates/usvg-0.45.1.crate) = 136945 +SHA256 (rust/crates/utf8_iter-1.0.4.crate) = b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be +SIZE (rust/crates/utf8_iter-1.0.4.crate) = 10437 +SHA256 (rust/crates/vcpkg-0.2.15.crate) = accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426 +SIZE (rust/crates/vcpkg-0.2.15.crate) = 228735 +SHA256 (rust/crates/version_check-0.9.5.crate) = 0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a +SIZE (rust/crates/version_check-0.9.5.crate) = 15554 +SHA256 (rust/crates/walkdir-2.5.0.crate) = 29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b +SIZE (rust/crates/walkdir-2.5.0.crate) = 23951 +SHA256 (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b +SIZE (rust/crates/wasi-0.11.1+wasi-snapshot-preview1.crate) = 28477 +SHA256 (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7 +SIZE (rust/crates/wasip2-1.0.1+wasi-0.2.4.crate) = 132087 +SHA256 (rust/crates/wasm-bindgen-0.2.106.crate) = 0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd +SIZE (rust/crates/wasm-bindgen-0.2.106.crate) = 48417 +SHA256 (rust/crates/wasm-bindgen-macro-0.2.106.crate) = 48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3 +SIZE (rust/crates/wasm-bindgen-macro-0.2.106.crate) = 9266 +SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.106.crate) = cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40 +SIZE (rust/crates/wasm-bindgen-macro-support-0.2.106.crate) = 49711 +SHA256 (rust/crates/wasm-bindgen-shared-0.2.106.crate) = cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4 +SIZE (rust/crates/wasm-bindgen-shared-0.2.106.crate) = 10115 +SHA256 (rust/crates/wasmi-0.51.2.crate) = 118030b2d125bc893e0cc5b1ce156eb41461f4373308cb5f2e3c698533b5e547 +SIZE (rust/crates/wasmi-0.51.2.crate) = 244288 +SHA256 (rust/crates/wasmi_collections-0.51.2.crate) = 653fa20efc966818934524dceb54b1b81e6f845bbcc2e155d6e9fc32becf667e +SIZE (rust/crates/wasmi_collections-0.51.2.crate) = 19338 +SHA256 (rust/crates/wasmi_core-0.51.2.crate) = 65701f60308c7e46cca85f273ad17e80c60998cc63d3fa168ac393f62b123038 +SIZE (rust/crates/wasmi_core-0.51.2.crate) = 50291 +SHA256 (rust/crates/wasmi_ir-0.51.2.crate) = a6539f63bf2a6838f27876e2877f0b00a088e84f91e92445620cc6b977fde032 +SIZE (rust/crates/wasmi_ir-0.51.2.crate) = 34476 +SHA256 (rust/crates/wasmparser-0.228.0.crate) = 4abf1132c1fdf747d56bbc1bb52152400c70f336870f968b85e89ea422198ae3 +SIZE (rust/crates/wasmparser-0.228.0.crate) = 249009 +SHA256 (rust/crates/weezl-0.1.12.crate) = a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88 +SIZE (rust/crates/weezl-0.1.12.crate) = 46045 +SHA256 (rust/crates/winapi-util-0.1.11.crate) = c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22 +SIZE (rust/crates/winapi-util-0.1.11.crate) = 13368 +SHA256 (rust/crates/windows-core-0.62.2.crate) = b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb +SIZE (rust/crates/windows-core-0.62.2.crate) = 36932 +SHA256 (rust/crates/windows-implement-0.60.2.crate) = 053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf +SIZE (rust/crates/windows-implement-0.60.2.crate) = 15325 +SHA256 (rust/crates/windows-interface-0.59.3.crate) = 3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358 +SIZE (rust/crates/windows-interface-0.59.3.crate) = 11809 +SHA256 (rust/crates/windows-link-0.2.1.crate) = f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5 +SIZE (rust/crates/windows-link-0.2.1.crate) = 6133 +SHA256 (rust/crates/windows-result-0.4.1.crate) = 7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5 +SIZE (rust/crates/windows-result-0.4.1.crate) = 13381 +SHA256 (rust/crates/windows-strings-0.5.1.crate) = 7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091 +SIZE (rust/crates/windows-strings-0.5.1.crate) = 13966 +SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b +SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323 +SHA256 (rust/crates/windows-sys-0.60.2.crate) = f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb +SIZE (rust/crates/windows-sys-0.60.2.crate) = 2518479 +SHA256 (rust/crates/windows-sys-0.61.2.crate) = ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc +SIZE (rust/crates/windows-sys-0.61.2.crate) = 2517186 +SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973 +SIZE (rust/crates/windows-targets-0.52.6.crate) = 6403 +SHA256 (rust/crates/windows-targets-0.53.5.crate) = 4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3 +SIZE (rust/crates/windows-targets-0.53.5.crate) = 7126 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3 +SIZE (rust/crates/windows_aarch64_gnullvm-0.52.6.crate) = 435718 +SHA256 (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53 +SIZE (rust/crates/windows_aarch64_gnullvm-0.53.1.crate) = 787748 +SHA256 (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469 +SIZE (rust/crates/windows_aarch64_msvc-0.52.6.crate) = 832615 +SHA256 (rust/crates/windows_aarch64_msvc-0.53.1.crate) = b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006 +SIZE (rust/crates/windows_aarch64_msvc-0.53.1.crate) = 838009 +SHA256 (rust/crates/windows_i686_gnu-0.52.6.crate) = 8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b +SIZE (rust/crates/windows_i686_gnu-0.52.6.crate) = 880402 +SHA256 (rust/crates/windows_i686_gnu-0.53.1.crate) = 960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3 +SIZE (rust/crates/windows_i686_gnu-0.53.1.crate) = 939775 +SHA256 (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66 +SIZE (rust/crates/windows_i686_gnullvm-0.52.6.crate) = 475940 +SHA256 (rust/crates/windows_i686_gnullvm-0.53.1.crate) = fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c +SIZE (rust/crates/windows_i686_gnullvm-0.53.1.crate) = 857396 +SHA256 (rust/crates/windows_i686_msvc-0.52.6.crate) = 240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66 +SIZE (rust/crates/windows_i686_msvc-0.52.6.crate) = 901163 +SHA256 (rust/crates/windows_i686_msvc-0.53.1.crate) = 1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2 +SIZE (rust/crates/windows_i686_msvc-0.53.1.crate) = 907688 +SHA256 (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78 +SIZE (rust/crates/windows_x86_64_gnu-0.52.6.crate) = 836363 +SHA256 (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499 +SIZE (rust/crates/windows_x86_64_gnu-0.53.1.crate) = 903712 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d +SIZE (rust/crates/windows_x86_64_gnullvm-0.52.6.crate) = 435707 +SHA256 (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1 +SIZE (rust/crates/windows_x86_64_gnullvm-0.53.1.crate) = 787739 +SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec +SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564 +SHA256 (rust/crates/windows_x86_64_msvc-0.53.1.crate) = d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650 +SIZE (rust/crates/windows_x86_64_msvc-0.53.1.crate) = 837950 +SHA256 (rust/crates/winnow-0.7.14.crate) = 5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829 +SIZE (rust/crates/winnow-0.7.14.crate) = 184718 +SHA256 (rust/crates/wit-bindgen-0.46.0.crate) = f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59 +SIZE (rust/crates/wit-bindgen-0.46.0.crate) = 60508 +SHA256 (rust/crates/write-fonts-0.43.0.crate) = 886614b5ce857341226aa091f3c285e450683894acaaa7887f366c361efef79d +SIZE (rust/crates/write-fonts-0.43.0.crate) = 254330 +SHA256 (rust/crates/writeable-0.5.5.crate) = 1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51 +SIZE (rust/crates/writeable-0.5.5.crate) = 22354 +SHA256 (rust/crates/writeable-0.6.2.crate) = 9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9 +SIZE (rust/crates/writeable-0.6.2.crate) = 25181 +SHA256 (rust/crates/xattr-1.6.1.crate) = 32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156 +SIZE (rust/crates/xattr-1.6.1.crate) = 15952 +SHA256 (rust/crates/xmlparser-0.13.6.crate) = 66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4 +SIZE (rust/crates/xmlparser-0.13.6.crate) = 26718 +SHA256 (rust/crates/xmlwriter-0.1.0.crate) = ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9 +SIZE (rust/crates/xmlwriter-0.1.0.crate) = 6261 +SHA256 (rust/crates/xmp-writer-0.3.2.crate) = ce9e2f4a404d9ebffc0a9832cf4f50907220ba3d7fffa9099261a5cab52f2dd7 +SIZE (rust/crates/xmp-writer-0.3.2.crate) = 21529 +SHA256 (rust/crates/yaml-rust-0.4.5.crate) = 56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85 +SIZE (rust/crates/yaml-rust-0.4.5.crate) = 47783 +SHA256 (rust/crates/yoke-0.7.5.crate) = 120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40 +SIZE (rust/crates/yoke-0.7.5.crate) = 29673 +SHA256 (rust/crates/yoke-0.8.1.crate) = 72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954 +SIZE (rust/crates/yoke-0.8.1.crate) = 32016 +SHA256 (rust/crates/yoke-derive-0.7.5.crate) = 2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154 +SIZE (rust/crates/yoke-derive-0.7.5.crate) = 7525 +SHA256 (rust/crates/yoke-derive-0.8.1.crate) = b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d +SIZE (rust/crates/yoke-derive-0.8.1.crate) = 7593 +SHA256 (rust/crates/zerocopy-0.8.31.crate) = fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3 +SIZE (rust/crates/zerocopy-0.8.31.crate) = 257633 +SHA256 (rust/crates/zerocopy-derive-0.8.31.crate) = d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a +SIZE (rust/crates/zerocopy-derive-0.8.31.crate) = 90835 +SHA256 (rust/crates/zerofrom-0.1.6.crate) = 50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5 +SIZE (rust/crates/zerofrom-0.1.6.crate) = 5669 +SHA256 (rust/crates/zerofrom-derive-0.1.6.crate) = d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502 +SIZE (rust/crates/zerofrom-derive-0.1.6.crate) = 8305 +SHA256 (rust/crates/zerotrie-0.1.3.crate) = fb594dd55d87335c5f60177cee24f19457a5ec10a065e0a3014722ad252d0a1f +SIZE (rust/crates/zerotrie-0.1.3.crate) = 74008 +SHA256 (rust/crates/zerotrie-0.2.3.crate) = 2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851 +SIZE (rust/crates/zerotrie-0.2.3.crate) = 69547 +SHA256 (rust/crates/zerovec-0.10.4.crate) = aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079 +SIZE (rust/crates/zerovec-0.10.4.crate) = 126398 +SHA256 (rust/crates/zerovec-0.11.5.crate) = 6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002 +SIZE (rust/crates/zerovec-0.11.5.crate) = 119620 +SHA256 (rust/crates/zerovec-derive-0.10.3.crate) = 6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6 +SIZE (rust/crates/zerovec-derive-0.10.3.crate) = 19438 +SHA256 (rust/crates/zerovec-derive-0.11.2.crate) = eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3 +SIZE (rust/crates/zerovec-derive-0.11.2.crate) = 21421 +SHA256 (rust/crates/zlib-rs-0.5.3.crate) = 36134c44663532e6519d7a6dfdbbe06f6f8192bde8ae9ed076e9b213f0e31df7 +SIZE (rust/crates/zlib-rs-0.5.3.crate) = 206418 +SHA256 (rust/crates/zune-core-0.4.12.crate) = 3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a +SIZE (rust/crates/zune-core-0.4.12.crate) = 17355 +SHA256 (rust/crates/zune-core-0.5.0.crate) = 111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773 +SIZE (rust/crates/zune-core-0.5.0.crate) = 27393 +SHA256 (rust/crates/zune-jpeg-0.4.21.crate) = 29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713 +SIZE (rust/crates/zune-jpeg-0.4.21.crate) = 68268 +SHA256 (rust/crates/zune-jpeg-0.5.5.crate) = dc6fb7703e32e9a07fb3f757360338b3a567a5054f21b5f52a666752e333d58e +SIZE (rust/crates/zune-jpeg-0.5.5.crate) = 77168 +SHA256 (messense-typst-py-v0.14.4_GH0.tar.gz) = a3983d668d56483d473a10b8395695bea28f06444ac15f3eaae988488eef85d4 +SIZE (messense-typst-py-v0.14.4_GH0.tar.gz) = 55686 diff --git a/textproc/py-typst/files/patch-Cargo.lock b/textproc/py-typst/files/patch-Cargo.lock new file mode 100644 index 000000000000..737c34cce5e4 --- /dev/null +++ b/textproc/py-typst/files/patch-Cargo.lock @@ -0,0 +1,26 @@ +--- Cargo.lock.orig 2025-12-19 20:10:04 UTC ++++ Cargo.lock +@@ -1505,15 +1505,6 @@ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00 + checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" + + [[package]] +-name = "openssl-src" +-version = "300.5.4+3.5.4" +-source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "a507b3792995dae9b0df8a1c1e3771e8418b7c2d9f0baeba32e6fe8b06c7cb72" +-dependencies = [ +- "cc", +-] +- +-[[package]] + name = "openssl-sys" + version = "0.9.111" + source = "registry+https://github.com/rust-lang/crates.io-index" +@@ -1521,7 +1512,6 @@ dependencies = [ + dependencies = [ + "cc", + "libc", +- "openssl-src", + "pkg-config", + "vcpkg", + ] diff --git a/textproc/py-typst/files/patch-Cargo.toml b/textproc/py-typst/files/patch-Cargo.toml new file mode 100644 index 000000000000..96edc6b3f87d --- /dev/null +++ b/textproc/py-typst/files/patch-Cargo.toml @@ -0,0 +1,12 @@ +--- Cargo.toml.orig 2025-12-19 20:11:31 UTC ++++ Cargo.toml +@@ -27,8 +27,7 @@ typst-kit = { version = "0.14.1", features = [ + typst = "0.14.1" + typst-kit = { version = "0.14.1", features = [ + "downloads", +- "embed-fonts", +- "vendor-openssl", ++ "embed-fonts" + ] } + typst-pdf = "0.14.1" + typst-svg = "0.14.1" diff --git a/textproc/py-typst/pkg-descr b/textproc/py-typst/pkg-descr new file mode 100644 index 000000000000..5d3c3642d67c --- /dev/null +++ b/textproc/py-typst/pkg-descr @@ -0,0 +1,2 @@ +Python binding to typst, a new markup-based typesetting system that +is powerful and easy to learn. diff --git a/www/bozohttpd/Makefile b/www/bozohttpd/Makefile index 3d57f47b5b09..ec5539311c4d 100644 --- a/www/bozohttpd/Makefile +++ b/www/bozohttpd/Makefile @@ -3,7 +3,7 @@ DISTVERSION= 20240126 CATEGORIES= www MASTER_SITES= http://eterna23.net/bozohttpd/ -MAINTAINER= cpetrik@proton.me +MAINTAINER= ports@FreeBSD.org COMMENT= Bozotic HTTP server from NetBSD WWW= http://eterna23.net/bozohttpd/ diff --git a/www/chawan/Makefile b/www/chawan/Makefile index b570e3b044df..21e5ff3b3ce1 100644 --- a/www/chawan/Makefile +++ b/www/chawan/Makefile @@ -1,6 +1,6 @@ PORTNAME= chawan DISTVERSIONPREFIX= v -DISTVERSION= 0.3.0 +DISTVERSION= 0.3.2 CATEGORIES= www MASTER_SITES= https://git.sr.ht/~bptato/chawan/archive/ DISTNAME= ${DISTVERSIONFULL} diff --git a/www/chawan/distinfo b/www/chawan/distinfo index 96c7dbc13bb3..9cfc4c73b92b 100644 --- a/www/chawan/distinfo +++ b/www/chawan/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1764177873 -SHA256 (v0.3.0.tar.gz) = d97319848ceb98407dc4ba2303bec48787ab1e444cd166eeb0b928360ebda08d -SIZE (v0.3.0.tar.gz) = 3641219 +TIMESTAMP = 1766155750 +SHA256 (v0.3.2.tar.gz) = 08f98ddf0040d0bf25dce62eac86d3ec5d2f11b2bc471213eb9c4c861a8d321a +SIZE (v0.3.2.tar.gz) = 3641359 diff --git a/www/chromium/Makefile b/www/chromium/Makefile index d76b052f36cc..2e03a6d6e80a 100644 --- a/www/chromium/Makefile +++ b/www/chromium/Makefile @@ -1,5 +1,5 @@ PORTNAME= chromium -PORTVERSION= 143.0.7499.146 +PORTVERSION= 143.0.7499.169 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= www wayland diff --git a/www/chromium/distinfo b/www/chromium/distinfo index 05d5bf52031b..fd4a01af3eb9 100644 --- a/www/chromium/distinfo +++ b/www/chromium/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1766134552 -SHA256 (chromium-143.0.7499.146-lite.tar.xz) = d79916348f34ecb154201ba2908a0c1ffaf8ae9670215c575b76cf95b10fb076 -SIZE (chromium-143.0.7499.146-lite.tar.xz) = 1140736788 +TIMESTAMP = 1766182467 +SHA256 (chromium-143.0.7499.169-lite.tar.xz) = 0d03408450e552a1012321b61f5bb6e0f07a7f6e2ef111b519066876c1a5e747 +SIZE (chromium-143.0.7499.169-lite.tar.xz) = 1140789336 SHA256 (pulseaudio-16.1.tar.gz) = 027266c62f2a84422ac45fa721a649508f0f1628fb1fd9242315ac54ce2d7c92 SIZE (pulseaudio-16.1.tar.gz) = 2763111 -SHA256 (chromium-143.0.7499.146-testdata.tar.xz) = 20b86e1557beeb1654005a7793dd796205a3b75fdb05df94ffbedf376485db17 -SIZE (chromium-143.0.7499.146-testdata.tar.xz) = 1155417248 +SHA256 (chromium-143.0.7499.169-testdata.tar.xz) = 5b6f7f71ee54fe0ac61730b6f58b4a767b2bd6ff9f646cfbc6cc707d6205851f +SIZE (chromium-143.0.7499.169-testdata.tar.xz) = 1155268416 diff --git a/www/forgejo-lts/Makefile b/www/forgejo-lts/Makefile index 6e90cfe00845..3a218d6ed1c5 100644 --- a/www/forgejo-lts/Makefile +++ b/www/forgejo-lts/Makefile @@ -1,6 +1,7 @@ PORTNAME= forgejo DISTVERSIONPREFIX= v DISTVERSION= 11.0.8 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://codeberg.org/forgejo/forgejo/releases/download/${DISTVERSIONFULL}/ PKGNAMESUFFIX= -lts @@ -10,7 +11,7 @@ MAINTAINER= des@FreeBSD.org COMMENT= Compact self-hosted Git forge WWW= https://forgejo.org/ -LICENSE= MIT +LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= git:devel/git diff --git a/www/forgejo/Makefile b/www/forgejo/Makefile index 03c8b5a8861c..0f70a63e6007 100644 --- a/www/forgejo/Makefile +++ b/www/forgejo/Makefile @@ -1,6 +1,7 @@ PORTNAME= forgejo DISTVERSIONPREFIX= v DISTVERSION= 13.0.3 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://codeberg.org/forgejo/forgejo/releases/download/${DISTVERSIONFULL}/ DISTNAME= forgejo-src-${DISTVERSION} @@ -9,7 +10,7 @@ MAINTAINER= des@FreeBSD.org COMMENT= Compact self-hosted Git forge WWW= https://forgejo.org/ -LICENSE= MIT +LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= git:devel/git diff --git a/www/gallery-dl/Makefile b/www/gallery-dl/Makefile index 136b1997104d..d51acefe7c87 100644 --- a/www/gallery-dl/Makefile +++ b/www/gallery-dl/Makefile @@ -1,5 +1,5 @@ PORTNAME= gallery-dl -DISTVERSION= 1.31.0 +DISTVERSION= 1.31.1 CATEGORIES= www MASTER_SITES= PYPI \ https://github.com/mikf/${PORTNAME}/releases/download/v${DISTVERSION}/ diff --git a/www/gallery-dl/distinfo b/www/gallery-dl/distinfo index 3f7915ed1078..536199a661d3 100644 --- a/www/gallery-dl/distinfo +++ b/www/gallery-dl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1743510441 -SHA256 (gallery_dl-1.31.0.tar.gz) = 7326b75f1c0b0def9fe19e4abb41f2816551fa85da48bfdd19bf51dacc6e0251 -SIZE (gallery_dl-1.31.0.tar.gz) = 631169 +TIMESTAMP = 1766224201 +SHA256 (gallery_dl-1.31.1.tar.gz) = 5255279a06dcb7e6d0594f80cf693f7f8f07ae94deb8a797358c372a900959d4 +SIZE (gallery_dl-1.31.1.tar.gz) = 633786 diff --git a/www/gohugo/Makefile b/www/gohugo/Makefile index 4d84b8508b54..ff4a76a2806f 100644 --- a/www/gohugo/Makefile +++ b/www/gohugo/Makefile @@ -1,7 +1,6 @@ PORTNAME= hugo DISTVERSIONPREFIX= v -DISTVERSION= 0.152.2 -PORTREVISION= 2 +DISTVERSION= 0.153.1 PORTEPOCH= 1 CATEGORIES= www PKGNAMEPREFIX= go diff --git a/www/gohugo/distinfo b/www/gohugo/distinfo index a2485e8ef8c1..17eaf0d053ab 100644 --- a/www/gohugo/distinfo +++ b/www/gohugo/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1761321118 -SHA256 (go/www_gohugo/hugo-v0.152.2/v0.152.2.mod) = 9fd5c3cb063cae52d4453818b583cedd7c38539a89c826e19603ebd82f28b9a3 -SIZE (go/www_gohugo/hugo-v0.152.2/v0.152.2.mod) = 9321 -SHA256 (go/www_gohugo/hugo-v0.152.2/v0.152.2.zip) = 5e540330b50c9936664c346da038023e37c0060f92d973a1f42e43c30d807322 -SIZE (go/www_gohugo/hugo-v0.152.2/v0.152.2.zip) = 5778064 +TIMESTAMP = 1766246231 +SHA256 (go/www_gohugo/hugo-v0.153.1/v0.153.1.mod) = 98394a8bb29b6f7eb3c6c8f2a8a137dcd26dfeb913f40cceb9fb0f731624701c +SIZE (go/www_gohugo/hugo-v0.153.1/v0.153.1.mod) = 9373 +SHA256 (go/www_gohugo/hugo-v0.153.1/v0.153.1.zip) = c9d231b18033de5d1cae4955c69bf5e50c2a24e8305c51adbd48b8b7f6996a53 +SIZE (go/www_gohugo/hugo-v0.153.1/v0.153.1.zip) = 6850749 diff --git a/www/hiawatha-monitor/Makefile b/www/hiawatha-monitor/Makefile index 6614d0fbd899..f9d32fafa3b5 100644 --- a/www/hiawatha-monitor/Makefile +++ b/www/hiawatha-monitor/Makefile @@ -5,7 +5,7 @@ MASTER_SITES= https://hiawatha.leisink.net/files/ PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} DISTNAME= monitor-${DISTVERSION} -MAINTAINER= cpetrik@proton.me +MAINTAINER= pkaipila@gmail.com COMMENT= Monitoring tool for the Hiawatha web server WWW= https://hiawatha.leisink.net/monitor diff --git a/www/hiawatha/Makefile b/www/hiawatha/Makefile index d3839b186483..b62e498760e7 100644 --- a/www/hiawatha/Makefile +++ b/www/hiawatha/Makefile @@ -3,7 +3,7 @@ DISTVERSION= 11.8 CATEGORIES= www MASTER_SITES= https://hiawatha.leisink.net/files/ -MAINTAINER= cpetrik@proton.me +MAINTAINER= pkaipila@gmail.com COMMENT= Advanced and secure web server for Unix WWW= https://hiawatha.leisink.net/ diff --git a/www/iridium/Makefile b/www/iridium/Makefile index 900ffb3932ed..a347668bd872 100644 --- a/www/iridium/Makefile +++ b/www/iridium/Makefile @@ -1,5 +1,5 @@ PORTNAME= iridium -PORTVERSION= 2025.12.143.2 +PORTVERSION= 2025.12.143.3 PULSEMV= 16 PULSEV= ${PULSEMV}.1 CATEGORIES= www wayland diff --git a/www/iridium/distinfo b/www/iridium/distinfo index 55059834a91f..605901164013 100644 --- a/www/iridium/distinfo +++ b/www/iridium/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1766134983 -SHA256 (iridium-browser-2025.12.143.2.tar.xz) = 1d87b7e54aba0dce38ef4e5c0ed5d3e54ed4ba5083417eb19332c10fa8b48122 -SIZE (iridium-browser-2025.12.143.2.tar.xz) = 1099082032 +TIMESTAMP = 1766183891 +SHA256 (iridium-browser-2025.12.143.3.tar.xz) = 33d058038d87b589ea5033a1c6b249d146292ec9d4b4137df06741473680ccee +SIZE (iridium-browser-2025.12.143.3.tar.xz) = 1098982548 SHA256 (pulseaudio-16.1.tar.gz) = 027266c62f2a84422ac45fa721a649508f0f1628fb1fd9242315ac54ce2d7c92 SIZE (pulseaudio-16.1.tar.gz) = 2763111 diff --git a/www/lexbor/Makefile b/www/lexbor/Makefile index 1da0d4d8bef1..8cd725b1b541 100644 --- a/www/lexbor/Makefile +++ b/www/lexbor/Makefile @@ -1,6 +1,6 @@ PORTNAME= lexbor DISTVERSIONPREFIX= v -DISTVERSION= 2.5.0 +DISTVERSION= 2.6.0 CATEGORIES= www MAINTAINER= alven@FreeBSD.org @@ -18,8 +18,9 @@ USE_LDCONFIG= yes CMAKE_TESTING_ON= LEXBOR_BUILD_TESTS PLIST_SUB= SOVERSION=${DISTVERSION} +PORTEXAMPLES= * -OPTIONS_DEFINE= ASAN EXAMPLES STATIC +OPTIONS_DEFINE= ASAN EXAMPLES STATIC OPTIONS_SUB= yes ASAN_DESC= Enable Address Sanitizer if possible @@ -30,6 +31,6 @@ STATIC_CMAKE_BOOL= LEXBOR_BUILD_STATIC post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> diff --git a/www/lexbor/distinfo b/www/lexbor/distinfo index 6a93973a4514..0e9505f442a1 100644 --- a/www/lexbor/distinfo +++ b/www/lexbor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1755378162 -SHA256 (lexbor-lexbor-v2.5.0_GH0.tar.gz) = d89060bb2fb6f7d0e0f399495155dd15e06697aa2c6568eab70ecd4a43084ba9 -SIZE (lexbor-lexbor-v2.5.0_GH0.tar.gz) = 5371588 +TIMESTAMP = 1764458162 +SHA256 (lexbor-lexbor-v2.6.0_GH0.tar.gz) = e9bb1aa8027ab92f11d5e8e6e7dc9b7bd632248c11a288eec95ade97bb7951a3 +SIZE (lexbor-lexbor-v2.6.0_GH0.tar.gz) = 5549881 diff --git a/www/lexbor/pkg-plist b/www/lexbor/pkg-plist index e28df80150cc..a74367da2de7 100644 --- a/www/lexbor/pkg-plist +++ b/www/lexbor/pkg-plist @@ -159,7 +159,9 @@ include/lexbor/html/interfaces/pre_element.h include/lexbor/html/interfaces/progress_element.h include/lexbor/html/interfaces/quote_element.h include/lexbor/html/interfaces/script_element.h +include/lexbor/html/interfaces/search_element.h include/lexbor/html/interfaces/select_element.h +include/lexbor/html/interfaces/selectedcontent_element.h include/lexbor/html/interfaces/slot_element.h include/lexbor/html/interfaces/source_element.h include/lexbor/html/interfaces/span_element.h @@ -236,68 +238,3 @@ lib/liblexbor.so lib/liblexbor.so.2 lib/liblexbor.so.%%SOVERSION%% %%STATIC%%lib/liblexbor_static.a -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/StyleSheet.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/base.h -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/selectors/list_easy_way.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/selectors/list_fast_way.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/syntax/simple_colorize.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/syntax/structure_parse_file.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/syntax/tokenizer/from_file.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/css/syntax/tokenizer/print_raw.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/decode/decode.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/decode/decoder.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/decode/validate.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/encode/encode.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/encode/encoder.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/encode/validate.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/buffer/from_to.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/data_by_name.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/decode/decode.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/decode/decoder.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/decode/validate.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/encode/encode.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/encode/encoder.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/encode/validate.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/encoding/single/from_to.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/base.h -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/document_parse.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/document_parse_chunk.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/document_title.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/element_attributes.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/element_create.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/element_innerHTML.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/elements_by_attr.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/elements_by_class_name.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/elements_by_tag_name.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/encoding.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/html2sexpr.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/parse.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/parse_chunk.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/tokenizer/callback.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/tokenizer/simple.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/tokenizer/tag_attributes.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/html/tokenizer/text.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/punycode/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/punycode/decode.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/punycode/encode.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/selectors/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/selectors/easy_way.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/selectors/normal_way.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/selectors/unique_nodes.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/styles/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/styles/attribute_style.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/styles/base.h -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/styles/events_insert.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/styles/stylesheet.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/styles/walk.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/unicode/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/unicode/idna_to_ascii.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/unicode/normalization_form.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/unicode/normalization_form_stdin.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/url/CMakeLists.txt -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/url/parse.c -%%EXAMPLES%%%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lexbor/url/relative.c diff --git a/www/librewolf/Makefile b/www/librewolf/Makefile index e7255f246530..ddce36213844 100644 --- a/www/librewolf/Makefile +++ b/www/librewolf/Makefile @@ -1,8 +1,7 @@ PORTNAME= librewolf -DISTVERSION= 146.0 -LWPATCH= -2 +DISTVERSION= 146.0.1 +LWPATCH= -1 DISTVERSIONSUFFIX= ${LWPATCH}.source -PORTREVISION= 2 CATEGORIES= www wayland MASTER_SITES= https://gitlab.com/api/v4/projects/32320088/packages/generic/${PORTNAME}-source/${DISTVERSION}${LWPATCH}/ @@ -14,7 +13,7 @@ LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= nspr>=4.32:devel/nspr \ - nss>=3.117:security/nss \ + nss>=3.118:security/nss \ icu>=76.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=10.1.0:print/harfbuzz \ diff --git a/www/librewolf/distinfo b/www/librewolf/distinfo index 07bf6bf48938..df04845d7571 100644 --- a/www/librewolf/distinfo +++ b/www/librewolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1765483043 -SHA256 (librewolf-146.0-2.source.tar.gz) = 244784bac847344feb091ef7605370a8267df04bf0a71a4a03f01c11b8610046 -SIZE (librewolf-146.0-2.source.tar.gz) = 1033240389 +TIMESTAMP = 1766128003 +SHA256 (librewolf-146.0.1-1.source.tar.gz) = f872b12327543e1e454f9a50be9a7675450aed3e04cc87e1a8c7fb4f235c2bf7 +SIZE (librewolf-146.0.1-1.source.tar.gz) = 1033671870 diff --git a/www/oauth2-proxy/Makefile b/www/oauth2-proxy/Makefile index 6048d54429e7..7adba9273e5c 100644 --- a/www/oauth2-proxy/Makefile +++ b/www/oauth2-proxy/Makefile @@ -1,114 +1,21 @@ PORTNAME= oauth2-proxy -PORTVERSION= 7.8.0 +PORTVERSION= 7.13.0 DISTVERSIONPREFIX= v -PORTREVISION= 2 CATEGORIES= www -MAINTAINER= freebsd@rheinwolf.de +MAINTAINER= dtxdf@FreeBSD.org COMMENT= OAuth 2.0 proxy server WWW= https://github.com/oauth2-proxy/oauth2-proxy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go:modules,1.22 - +USES= go:modules,1.25+ USE_GITHUB= yes -GH_TUPLE= \ - Bose:minisentinel:917c5a9223bb:bose_minisentinel/vendor/github.com/Bose/minisentinel \ - a8m:envsubst:v1.4.2:a8m_envsubst/vendor/github.com/a8m/envsubst \ - alicebob:gopher-json:906a9b012302:alicebob_gopher_json/vendor/github.com/alicebob/gopher-json \ - alicebob:miniredis:v2.33.0:alicebob_miniredis_v2/vendor/github.com/alicebob/miniredis/v2 \ - benbjohnson:clock:v1.3.5:benbjohnson_clock/vendor/github.com/benbjohnson/clock \ - beorn7:perks:v1.0.1:beorn7_perks/vendor/github.com/beorn7/perks \ - bitly:go-simplejson:v0.5.1:bitly_go_simplejson/vendor/github.com/bitly/go-simplejson \ - bmizerany:assert:b7ed37b82869:bmizerany_assert/vendor/github.com/bmizerany/assert \ - bsm:redislock:v0.9.4:bsm_redislock/vendor/github.com/bsm/redislock \ - census-instrumentation:opencensus-go:v0.24.0:census_instrumentation_opencensus_go/vendor/go.opencensus.io \ - cespare:xxhash:v2.3.0:cespare_xxhash_v2/vendor/github.com/cespare/xxhash/v2 \ - coreos:go-oidc:v3.11.0:coreos_go_oidc_v3/vendor/github.com/coreos/go-oidc/v3 \ - coreos:go-systemd:d3cd4ed1dbcf:coreos_go_systemd/vendor/github.com/coreos/go-systemd \ - davecgh:go-spew:d8f796af33cc:davecgh_go_spew/vendor/github.com/davecgh/go-spew \ - dgryski:go-rendezvous:9f7001d12a5f:dgryski_go_rendezvous/vendor/github.com/dgryski/go-rendezvous \ - felixge:httpsnoop:v1.0.4:felixge_httpsnoop/vendor/github.com/felixge/httpsnoop \ - fsnotify:fsnotify:v1.8.0:fsnotify_fsnotify/vendor/github.com/fsnotify/fsnotify \ - ghodss:yaml:d8423dcdf344:ghodss_yaml/vendor/github.com/ghodss/yaml \ - go-ini:ini:v1.67.0:go_ini_ini/vendor/gopkg.in/ini.v1 \ - go-jose:go-jose:v3.0.3:go_jose_go_jose_v3/vendor/github.com/go-jose/go-jose/v3 \ - go-jose:go-jose:v4.0.4:go_jose_go_jose_v4/vendor/github.com/go-jose/go-jose/v4 \ - go-logr:logr:v1.4.2:go_logr_logr/vendor/github.com/go-logr/logr \ - go-logr:stdr:v1.2.2:go_logr_stdr/vendor/github.com/go-logr/stdr \ - go-task:slim-sprig:v3.0.0:go_task_slim_sprig_v3/vendor/github.com/go-task/slim-sprig/v3 \ - go-yaml:yaml:v2.4.0:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \ - go-yaml:yaml:v3.0.1:go_yaml_yaml_1/vendor/gopkg.in/yaml.v3 \ - golang-jwt:jwt:v5.2.1:golang_jwt_jwt_v5/vendor/github.com/golang-jwt/jwt/v5 \ - golang:crypto:v0.31.0:golang_crypto/vendor/golang.org/x/crypto \ - golang:exp:2d47ceb2692f:golang_exp/vendor/golang.org/x/exp \ - golang:groupcache:41bb18bfe9da:golang_groupcache/vendor/github.com/golang/groupcache \ - golang:net:v0.33.0:golang_net/vendor/golang.org/x/net \ - golang:oauth2:v0.24.0:golang_oauth2/vendor/golang.org/x/oauth2 \ - golang:sync:v0.10.0:golang_sync/vendor/golang.org/x/sync \ - golang:sys:v0.28.0:golang_sys/vendor/golang.org/x/sys \ - golang:text:v0.21.0:golang_text/vendor/golang.org/x/text \ - golang:tools:v0.27.0:golang_tools/vendor/golang.org/x/tools \ - google:go-cmp:v0.6.0:google_go_cmp/vendor/github.com/google/go-cmp \ - google:go-genproto:324edc3d5d38:google_go_genproto/vendor/google.golang.org/genproto \ - google:pprof:d1b30febd7db:google_pprof/vendor/github.com/google/pprof \ - google:s2a-go:v0.1.8:google_s2a_go/vendor/github.com/google/s2a-go \ - google:uuid:v1.6.0:google_uuid/vendor/github.com/google/uuid \ - googleapis:enterprise-certificate-proxy:v0.3.4:googleapis_enterprise_certificate_proxy/vendor/github.com/googleapis/enterprise-certificate-proxy \ - googleapis:gax-go:v2.13.0:googleapis_gax_go_v2/vendor/github.com/googleapis/gax-go \ - googleapis:google-api-go-client:v0.205.0:googleapis_google_api_go_client/vendor/google.golang.org/api \ - googleapis:google-cloud-go:auth/v0.10.1:googleapis_google_cloud_go_auth/vendor/cloud.google.com/go \ - googleapis:google-cloud-go:auth/oauth2adapt/v0.2.5:googleapis_google_cloud_go/vendor/cloud.google.com/go/auth/oauth2adapt \ - googleapis:google-cloud-go:compute/metadata/v0.5.2:googleapis_google_cloud_go_1/vendor/cloud.google.com/go/compute/metadata \ - gorilla:mux:v1.8.1:gorilla_mux/vendor/github.com/gorilla/mux \ - grpc:grpc-go:v1.67.1:grpc_grpc_go/vendor/google.golang.org/grpc \ - hashicorp:hcl:v1.0.0:hashicorp_hcl/vendor/github.com/hashicorp/hcl \ - justinas:alice:v1.2.0:justinas_alice/vendor/github.com/justinas/alice \ - klauspost:compress:v1.17.10:klauspost_compress/vendor/github.com/klauspost/compress \ - kubernetes:apimachinery:v0.31.2:kubernetes_apimachinery/vendor/k8s.io/apimachinery \ - kubernetes:gengo:a0386bf69313:kubernetes_gengo/vendor/k8s.io/gengo \ - kubernetes:klog:v2.130.1:kubernetes_klog/vendor/k8s.io/klog/v2 \ - kylelemons:godebug:v1.1.0:kylelemons_godebug/vendor/github.com/kylelemons/godebug \ - magiconair:properties:v1.8.7:magiconair_properties/vendor/github.com/magiconair/properties \ - mbland:hmacauth:44256dfd4bfa:mbland_hmacauth/vendor/github.com/mbland/hmacauth \ - mitchellh:mapstructure:v1.5.0:mitchellh_mapstructure/vendor/github.com/mitchellh/mapstructure \ - munnerz:goautoneg:a7dc8b61c822:munnerz_goautoneg/vendor/github.com/munnerz/goautoneg \ - natefinch:lumberjack:v2.2.1:natefinch_lumberjack/vendor/gopkg.in/natefinch/lumberjack.v2 \ - nxadm:tail:v1.4.11:nxadm_tail/vendor/github.com/nxadm/tail \ - oauth2-proxy:mockoidc:caebfff84d25:oauth2_proxy_mockoidc/vendor/github.com/oauth2-proxy/mockoidc \ - oauth2-proxy:tools:d3b50d1a591a:oauth2_proxy_tools_reference_gen/vendor/github.com/oauth2-proxy/tools \ - onsi:ginkgo:v1.16.5:onsi_ginkgo/vendor/github.com/onsi/ginkgo \ - onsi:ginkgo:v2.21.0:onsi_ginkgo_v2/vendor/github.com/onsi/ginkgo/v2 \ - onsi:gomega:v1.35.1:onsi_gomega/vendor/github.com/onsi/gomega \ - open-telemetry:opentelemetry-go-contrib:v1.30.0:open_telemetry_opentelemetry_go_contrib/vendor/go.opentelemetry.io/contrib \ - open-telemetry:opentelemetry-go:v1.30.0:open_telemetry_opentelemetry_go/vendor/go.opentelemetry.io/otel \ - pelletier:go-toml:v2.2.3:pelletier_go_toml_v2/vendor/github.com/pelletier/go-toml/v2 \ - pierrec:lz4:v4.1.21:pierrec_lz4_v4/vendor/github.com/pierrec/lz4/v4 \ - pmezard:go-difflib:5d4384ee4fb2:pmezard_go_difflib/vendor/github.com/pmezard/go-difflib \ - prometheus:client_golang:v1.20.5:prometheus_client_golang/vendor/github.com/prometheus/client_golang \ - prometheus:client_model:v0.6.1:prometheus_client_model/vendor/github.com/prometheus/client_model \ - prometheus:common:v0.59.1:prometheus_common/vendor/github.com/prometheus/common \ - prometheus:procfs:v0.15.1:prometheus_procfs/vendor/github.com/prometheus/procfs \ - protocolbuffers:protobuf-go:v1.35.1:protocolbuffers_protobuf_go/vendor/google.golang.org/protobuf \ - redis:go-redis:v9.7.0:redis_go_redis_v9/vendor/github.com/redis/go-redis/v9 \ - sagikazarmark:locafero:v0.6.0:sagikazarmark_locafero/vendor/github.com/sagikazarmark/locafero \ - sagikazarmark:slog-shim:v0.1.0:sagikazarmark_slog_shim/vendor/github.com/sagikazarmark/slog-shim \ - sourcegraph:conc:v0.3.0:sourcegraph_conc/vendor/github.com/sourcegraph/conc \ - spf13:afero:v1.11.0:spf13_afero/vendor/github.com/spf13/afero \ - spf13:cast:v1.7.0:spf13_cast/vendor/github.com/spf13/cast \ - spf13:pflag:v1.0.5:spf13_pflag/vendor/github.com/spf13/pflag \ - spf13:viper:v1.19.0:spf13_viper/vendor/github.com/spf13/viper \ - stretchr:testify:v1.9.0:stretchr_testify/vendor/github.com/stretchr/testify \ - subosito:gotenv:v1.6.0:subosito_gotenv/vendor/github.com/subosito/gotenv \ - uber-go:multierr:v1.11.0:uber_go_multierr/vendor/go.uber.org/multierr \ - vmihailenco:msgpack:v5.4.1:vmihailenco_msgpack_v5/vendor/github.com/vmihailenco/msgpack/v5 \ - vmihailenco:tagparser:v2.0.0:vmihailenco_tagparser_v2/vendor/github.com/vmihailenco/tagparser/v2 \ - yuin:gopher-lua:v1.1.1:yuin_gopher_lua/vendor/github.com/yuin/gopher-lua - USE_RC_SUBR= oauth2_proxy +GO_MOD_DIST= github +GO_MODULE= github.com/${PORTNAME}/${PORTNAME} GO_BUILDFLAGS= -v -ldflags="-s -X github.com/${PORTNAME}/${PORTNAME}/v7/pkg/version.VERSION=${PORTVERSION}" USER= www diff --git a/www/oauth2-proxy/distinfo b/www/oauth2-proxy/distinfo index 4e5360e2888f..d473d517a4c4 100644 --- a/www/oauth2-proxy/distinfo +++ b/www/oauth2-proxy/distinfo @@ -1,185 +1,5 @@ -TIMESTAMP = 1736858583 -SHA256 (oauth2-proxy-oauth2-proxy-v7.8.0_GH0.tar.gz) = 022ab4e949cd541f9709d6cbca7f4fce6fa8123404bc9a2f8f73892a8609d734 -SIZE (oauth2-proxy-oauth2-proxy-v7.8.0_GH0.tar.gz) = 1408013 -SHA256 (Bose-minisentinel-917c5a9223bb_GH0.tar.gz) = c765c12a0ed631ae864f74ee606279a0962f3a87c4274cea6e8d922b0ad8a98e -SIZE (Bose-minisentinel-917c5a9223bb_GH0.tar.gz) = 8352 -SHA256 (a8m-envsubst-v1.4.2_GH0.tar.gz) = 3692eb658657ffdec5725ae2accd96a05ac6097d770a7bdfd622410983962387 -SIZE (a8m-envsubst-v1.4.2_GH0.tar.gz) = 12316 -SHA256 (alicebob-gopher-json-906a9b012302_GH0.tar.gz) = 5899fe9fd1e1401062ef8330e63be498cfbfeabe2efb4394610c1062b1a73e1d -SIZE (alicebob-gopher-json-906a9b012302_GH0.tar.gz) = 3634 -SHA256 (alicebob-miniredis-v2.33.0_GH0.tar.gz) = 0d0f1be7d1708ce2b814f11dc17e192efdd330404a47ae216613f69a89673e76 -SIZE (alicebob-miniredis-v2.33.0_GH0.tar.gz) = 187511 -SHA256 (benbjohnson-clock-v1.3.5_GH0.tar.gz) = d26928c5301d8f7feedebeda0506599fa8c9aeb0b724de619b9d468df441a33c -SIZE (benbjohnson-clock-v1.3.5_GH0.tar.gz) = 9183 -SHA256 (beorn7-perks-v1.0.1_GH0.tar.gz) = 98db84bb0224a26094e6adba91b7ee7a1a7ace28cb648d818f8e779e6a19f825 -SIZE (beorn7-perks-v1.0.1_GH0.tar.gz) = 10867 -SHA256 (bitly-go-simplejson-v0.5.1_GH0.tar.gz) = ef4c1cc5aa25a5d681b7cc22c6eac7d60efd705a1ac4da60e5d8fd7ab942db48 -SIZE (bitly-go-simplejson-v0.5.1_GH0.tar.gz) = 6177 -SHA256 (bmizerany-assert-b7ed37b82869_GH0.tar.gz) = f7dc11f10c5e52a94c836e15e7aff05ad4afba7436f66e5f4506806627c4635e -SIZE (bmizerany-assert-b7ed37b82869_GH0.tar.gz) = 1469 -SHA256 (bsm-redislock-v0.9.4_GH0.tar.gz) = b77a6f71c12dc6d3aa3ad17aa634b01542aae352da2e2ae6c24a9b9ba85f3f92 -SIZE (bsm-redislock-v0.9.4_GH0.tar.gz) = 7326 -SHA256 (census-instrumentation-opencensus-go-v0.24.0_GH0.tar.gz) = 048708914541817193330ce052026deb0c617c9d953ac15ae601ab2bde5788d1 -SIZE (census-instrumentation-opencensus-go-v0.24.0_GH0.tar.gz) = 176752 -SHA256 (cespare-xxhash-v2.3.0_GH0.tar.gz) = 0e3dda07b03a5f3733506218860ecb2d50c0f01f16299b5d60902ef5158cbde5 -SIZE (cespare-xxhash-v2.3.0_GH0.tar.gz) = 12696 -SHA256 (coreos-go-oidc-v3.11.0_GH0.tar.gz) = 2d1bdf5f218d60a1b16cdaeff5c6ae85a620227e9bdc57a00217a26e70256455 -SIZE (coreos-go-oidc-v3.11.0_GH0.tar.gz) = 31542 -SHA256 (coreos-go-systemd-d3cd4ed1dbcf_GH0.tar.gz) = 89fc7afa3593ee4d6f91087fa47d02ade4103882f0a33225faec7b922ce5ebc4 -SIZE (coreos-go-systemd-d3cd4ed1dbcf_GH0.tar.gz) = 67792 -SHA256 (davecgh-go-spew-d8f796af33cc_GH0.tar.gz) = 21505c2cb5cb4e2b8ae3007f3f6db6edb9f1c28511f98975b6b0dedf0e3fa24e -SIZE (davecgh-go-spew-d8f796af33cc_GH0.tar.gz) = 42183 -SHA256 (dgryski-go-rendezvous-9f7001d12a5f_GH0.tar.gz) = 29584550745fd4b8fce2e2f3def7b9d9ffe2b86cf9b6596b53a660c9bbfe27b6 -SIZE (dgryski-go-rendezvous-9f7001d12a5f_GH0.tar.gz) = 1699 -SHA256 (felixge-httpsnoop-v1.0.4_GH0.tar.gz) = ffb63ba081e4c2360342dea2079d08b8560c315b2f458885fd34639786a1aa3d -SIZE (felixge-httpsnoop-v1.0.4_GH0.tar.gz) = 11954 -SHA256 (fsnotify-fsnotify-v1.8.0_GH0.tar.gz) = 3c4cbec6225307397717f18bb87ffc496e59d0f802a41fff572bf09e5dbf6e2b -SIZE (fsnotify-fsnotify-v1.8.0_GH0.tar.gz) = 72325 -SHA256 (ghodss-yaml-d8423dcdf344_GH0.tar.gz) = 1595e11cd70d828f1fab36d2d6569df0f852f464d812f903692f9cabc03974fc -SIZE (ghodss-yaml-d8423dcdf344_GH0.tar.gz) = 14394 -SHA256 (go-ini-ini-v1.67.0_GH0.tar.gz) = 06ba51234140118d1b6064f1817aa89cc971c6e7ce04cb9d286e6660d89296c8 -SIZE (go-ini-ini-v1.67.0_GH0.tar.gz) = 53531 -SHA256 (go-jose-go-jose-v3.0.3_GH0.tar.gz) = 219d024b85ea217ac466c4ced46e2071d6ea52269d399b610723b7c905c0f8a5 -SIZE (go-jose-go-jose-v3.0.3_GH0.tar.gz) = 320882 -SHA256 (go-jose-go-jose-v4.0.4_GH0.tar.gz) = d7bbccbad3d94d0ba54daea2bf590c9262c390863a911eca7d7063dd0336734d -SIZE (go-jose-go-jose-v4.0.4_GH0.tar.gz) = 319335 -SHA256 (go-logr-logr-v1.4.2_GH0.tar.gz) = d06d6b9c3aa0cc42ba65ebcecd789addd149c859ca33a8878308f89590bf9fbd -SIZE (go-logr-logr-v1.4.2_GH0.tar.gz) = 57464 -SHA256 (go-logr-stdr-v1.2.2_GH0.tar.gz) = 37d975b280d884ca0d55a800bc6e47314b6e86268e56254f9d15d19ca9404eb8 -SIZE (go-logr-stdr-v1.2.2_GH0.tar.gz) = 9098 -SHA256 (go-task-slim-sprig-v3.0.0_GH0.tar.gz) = 673b1acc819c60899e78b00f20da2b8270a0e370c01d3def9cda0a86167881fb -SIZE (go-task-slim-sprig-v3.0.0_GH0.tar.gz) = 40249 -SHA256 (go-yaml-yaml-v2.4.0_GH0.tar.gz) = d8e94679e5fff6bd1a35e10241543929a5f3da44f701755babf99b3daf0faac0 -SIZE (go-yaml-yaml-v2.4.0_GH0.tar.gz) = 73209 -SHA256 (go-yaml-yaml-v3.0.1_GH0.tar.gz) = cf05411540d3e6ef8f1fd88434b34f94cedaceb540329031d80e23b74540c4e5 -SIZE (go-yaml-yaml-v3.0.1_GH0.tar.gz) = 91173 -SHA256 (golang-jwt-jwt-v5.2.1_GH0.tar.gz) = 76d1c81a7cd38ed03309f770f60ac3417f16c75b4c53a0c01bb783863783fef0 -SIZE (golang-jwt-jwt-v5.2.1_GH0.tar.gz) = 61340 -SHA256 (golang-crypto-v0.31.0_GH0.tar.gz) = 36e325f89d4cd03ec568d92c74d6affd2b1fb88fcdc63aeb15d1df41e11200ca -SIZE (golang-crypto-v0.31.0_GH0.tar.gz) = 1837859 -SHA256 (golang-exp-2d47ceb2692f_GH0.tar.gz) = 3ed4f8b00a52b74a82e544a66175dba5394c287ed9d70453085479795f1e0167 -SIZE (golang-exp-2d47ceb2692f_GH0.tar.gz) = 1750245 -SHA256 (golang-groupcache-41bb18bfe9da_GH0.tar.gz) = 1e89795970d6593affdafe1d09dcf947681ca1ea82528e8e4fb9974a77f2e394 -SIZE (golang-groupcache-41bb18bfe9da_GH0.tar.gz) = 26101 -SHA256 (golang-net-v0.33.0_GH0.tar.gz) = 675e0ceaf54baf4f6e2a5152fe148906119c97e7b1d37d1c44ec2621faeab0e8 -SIZE (golang-net-v0.33.0_GH0.tar.gz) = 1466426 -SHA256 (golang-oauth2-v0.24.0_GH0.tar.gz) = b14b6ae831727f39534bd617dbb53cd139074dbadcf58eafe8566145ed0231f0 -SIZE (golang-oauth2-v0.24.0_GH0.tar.gz) = 98494 -SHA256 (golang-sync-v0.10.0_GH0.tar.gz) = 2a7b7c36a89b444213ec3237a21dd1ca6ed351adf423666cc6bf853711a13f3d -SIZE (golang-sync-v0.10.0_GH0.tar.gz) = 18099 -SHA256 (golang-sys-v0.28.0_GH0.tar.gz) = 62726b1ccbb09c7e8de2215756a26012751bdded12b5bacc6de83296db694ebf -SIZE (golang-sys-v0.28.0_GH0.tar.gz) = 1519898 -SHA256 (golang-text-v0.21.0_GH0.tar.gz) = d64dbf40a8ae06c4805895e48553ecdadaed07089d8ed2168a0d61551d17ff22 -SIZE (golang-text-v0.21.0_GH0.tar.gz) = 8964782 -SHA256 (golang-tools-v0.27.0_GH0.tar.gz) = 7e187e6ab17b0b9df1870ce52e27e335bcaf3d5e1e3a7df1d0e047816ccf6d82 -SIZE (golang-tools-v0.27.0_GH0.tar.gz) = 7084838 -SHA256 (google-go-cmp-v0.6.0_GH0.tar.gz) = d14f7d57b0f6d25771bee3d7d5d038f532539e71bfc934772b1c0467ab90fa86 -SIZE (google-go-cmp-v0.6.0_GH0.tar.gz) = 104784 -SHA256 (google-go-genproto-324edc3d5d38_GH0.tar.gz) = 573361f8e0118efd9d0ea127270402de7a891cdc4ef36f748473cf004e92c96d -SIZE (google-go-genproto-324edc3d5d38_GH0.tar.gz) = 5879419 -SHA256 (google-pprof-d1b30febd7db_GH0.tar.gz) = fc3a4f103342ea85bec2d14dc769e82ab223ab4cc6ef45bf33a471f5039fe4b1 -SIZE (google-pprof-d1b30febd7db_GH0.tar.gz) = 4757636 -SHA256 (google-s2a-go-v0.1.8_GH0.tar.gz) = f242c36165429f4ffbd73e49dd18a6b1f39fa040ad8cdfdf9a60080ad84e8960 -SIZE (google-s2a-go-v0.1.8_GH0.tar.gz) = 275964 -SHA256 (google-uuid-v1.6.0_GH0.tar.gz) = ee63376b5675376c60e055ed66e5f3651ccc703bd580c022b8ad00cea309252d -SIZE (google-uuid-v1.6.0_GH0.tar.gz) = 20896 -SHA256 (googleapis-enterprise-certificate-proxy-v0.3.4_GH0.tar.gz) = 3bb00eaeb1ec49b8a39bf134d0f23b161f655b50ce15ccd78ff51e6149152bce -SIZE (googleapis-enterprise-certificate-proxy-v0.3.4_GH0.tar.gz) = 39560 -SHA256 (googleapis-gax-go-v2.13.0_GH0.tar.gz) = b27ac1a2d9b458bdf0857ff2be66c3e5aec8034316d5dbba5ff624095bd97614 -SIZE (googleapis-gax-go-v2.13.0_GH0.tar.gz) = 63684 -SHA256 (googleapis-google-api-go-client-v0.205.0_GH0.tar.gz) = 2e1db8d544786938c8af79217e7e6af0d9ffac06a3cfe84f07e4f8d222dc3695 -SIZE (googleapis-google-api-go-client-v0.205.0_GH0.tar.gz) = 35903881 -SHA256 (googleapis-google-cloud-go-auth-v0.10.1_GH0.tar.gz) = f43aca25626277fa67cc658b18b9b9178a28c6311451e34e93dd43031db7613d -SIZE (googleapis-google-cloud-go-auth-v0.10.1_GH0.tar.gz) = 31313887 -SHA256 (googleapis-google-cloud-go-auth-oauth2adapt-v0.2.5_GH0.tar.gz) = ca8ee7c1fbd4d2d5d05d821beeafe24e8d10bc12bb8411adbf6a275d716e2fba -SIZE (googleapis-google-cloud-go-auth-oauth2adapt-v0.2.5_GH0.tar.gz) = 31273589 -SHA256 (googleapis-google-cloud-go-compute-metadata-v0.5.2_GH0.tar.gz) = 4db3b2bc0e383d3282aaab93e207117a97bfd5d35ae1ca2f6fc105319245f7af -SIZE (googleapis-google-cloud-go-compute-metadata-v0.5.2_GH0.tar.gz) = 30572898 -SHA256 (gorilla-mux-v1.8.1_GH0.tar.gz) = c2a09e78d1886abb2d291b472eba3ac9185acb35234c1f5616669664ba893d6d -SIZE (gorilla-mux-v1.8.1_GH0.tar.gz) = 47033 -SHA256 (grpc-grpc-go-v1.67.1_GH0.tar.gz) = b2a3efc5e4d48ee7b3e9c2f5b9659571f4c2b9045b0b567be7887ad7bef87ef8 -SIZE (grpc-grpc-go-v1.67.1_GH0.tar.gz) = 2206223 -SHA256 (hashicorp-hcl-v1.0.0_GH0.tar.gz) = 50632428210503070fd2fde748c88b7414bf84a6a0eadebf9d8e596a033bead2 -SIZE (hashicorp-hcl-v1.0.0_GH0.tar.gz) = 70658 -SHA256 (justinas-alice-v1.2.0_GH0.tar.gz) = 12171459da7096e0d34a0972387e15978ad7b0e73c83ce04ba2f89c44a22336b -SIZE (justinas-alice-v1.2.0_GH0.tar.gz) = 4568 -SHA256 (klauspost-compress-v1.17.10_GH0.tar.gz) = e6968d229011a9323aab4d09b717db26ebebfaeff04ef15a93f7334d6bac5ac5 -SIZE (klauspost-compress-v1.17.10_GH0.tar.gz) = 38748986 -SHA256 (kubernetes-apimachinery-v0.31.2_GH0.tar.gz) = ca048e6eb19d99bd5da77a6345dc7ddf80d1922deff8d457998ed7d7b4e61112 -SIZE (kubernetes-apimachinery-v0.31.2_GH0.tar.gz) = 736809 -SHA256 (kubernetes-gengo-a0386bf69313_GH0.tar.gz) = 38722818db9004d83437724473dca40166974a7c4059565c39325e88f584bcd6 -SIZE (kubernetes-gengo-a0386bf69313_GH0.tar.gz) = 150799 -SHA256 (kubernetes-klog-v2.130.1_GH0.tar.gz) = 22abd8126261ef47d92e3faa4100b7a309eb9be6c2a709b4268d81b85cc48768 -SIZE (kubernetes-klog-v2.130.1_GH0.tar.gz) = 106990 -SHA256 (kylelemons-godebug-v1.1.0_GH0.tar.gz) = 72cc6f274fbd165b7674280f836a6b400e80dbae055919e101920dedf50e79db -SIZE (kylelemons-godebug-v1.1.0_GH0.tar.gz) = 17637 -SHA256 (magiconair-properties-v1.8.7_GH0.tar.gz) = 09e950df1970975400edc7f6c2f9e3edace4e1ea49f823006387d130fb0f4f03 -SIZE (magiconair-properties-v1.8.7_GH0.tar.gz) = 31425 -SHA256 (mbland-hmacauth-44256dfd4bfa_GH0.tar.gz) = f5b9d6aff7eba04766d11cdc780d08458324f158f893ba84479f045dde75cb23 -SIZE (mbland-hmacauth-44256dfd4bfa_GH0.tar.gz) = 6192 -SHA256 (mitchellh-mapstructure-v1.5.0_GH0.tar.gz) = 81106cbac93000812c194b4a2069dd32913ec18819b1e99e8436595ce4939413 -SIZE (mitchellh-mapstructure-v1.5.0_GH0.tar.gz) = 30123 -SHA256 (munnerz-goautoneg-a7dc8b61c822_GH0.tar.gz) = 3a455e3bcf8237ecee0385f97223ca821ec2547284e827e90f94a4984801ca1c -SIZE (munnerz-goautoneg-a7dc8b61c822_GH0.tar.gz) = 2810 -SHA256 (natefinch-lumberjack-v2.2.1_GH0.tar.gz) = 935582f3f3377f09604bce4ab0488092d71c0d9ff3e9359a397f00ab6caed658 -SIZE (natefinch-lumberjack-v2.2.1_GH0.tar.gz) = 12568 -SHA256 (nxadm-tail-v1.4.11_GH0.tar.gz) = f20a022655bb5acdb364382418d0481f938e761be7d4233af61b0d4659ae1812 -SIZE (nxadm-tail-v1.4.11_GH0.tar.gz) = 1175268 -SHA256 (oauth2-proxy-mockoidc-caebfff84d25_GH0.tar.gz) = 8dd06edfda30b798af4305012cd2999df8985499ff3ccff0045d785cdf66d884 -SIZE (oauth2-proxy-mockoidc-caebfff84d25_GH0.tar.gz) = 20679 -SHA256 (oauth2-proxy-tools-d3b50d1a591a_GH0.tar.gz) = 11076a32e1fed39b4f02a7b86dae35ff1a3ba20d68464c281f185c1ba30aad04 -SIZE (oauth2-proxy-tools-d3b50d1a591a_GH0.tar.gz) = 20290 -SHA256 (onsi-ginkgo-v1.16.5_GH0.tar.gz) = 0380c81321b764b75e76a7aa8fc8ab1ab361232a88d5b6124ef8b9a9e75d5287 -SIZE (onsi-ginkgo-v1.16.5_GH0.tar.gz) = 164965 -SHA256 (onsi-ginkgo-v2.21.0_GH0.tar.gz) = 77736d4f5c76cbf8147c708f0da249c6658de1c7327cca2095a934952228e68d -SIZE (onsi-ginkgo-v2.21.0_GH0.tar.gz) = 643200 -SHA256 (onsi-gomega-v1.35.1_GH0.tar.gz) = 3b37c591e1d3b5809379ab7eac333d28ecf576e7f4242504e87a8bdbafccd0b6 -SIZE (onsi-gomega-v1.35.1_GH0.tar.gz) = 320285 -SHA256 (open-telemetry-opentelemetry-go-contrib-v1.30.0_GH0.tar.gz) = 045e59b01768cedcfbed54d8a08367a18c91e585246755c034d9c51d9a32f0bb -SIZE (open-telemetry-opentelemetry-go-contrib-v1.30.0_GH0.tar.gz) = 642233 -SHA256 (open-telemetry-opentelemetry-go-v1.30.0_GH0.tar.gz) = 1c9a09665e4e259ac333c29162f877081498a03e2736688bea6b57a00daa4171 -SIZE (open-telemetry-opentelemetry-go-v1.30.0_GH0.tar.gz) = 1793133 -SHA256 (pelletier-go-toml-v2.2.3_GH0.tar.gz) = 3a5dfdc1e543efd6032813cb27a5b06d66bbefbbcc88bb664f69d605725c42af -SIZE (pelletier-go-toml-v2.2.3_GH0.tar.gz) = 909237 -SHA256 (pierrec-lz4-v4.1.21_GH0.tar.gz) = 8b8d3f7b3fe39ce4ae117b45949d6dbb9c496e719d87a2d7c2ce33ad0228e53a -SIZE (pierrec-lz4-v4.1.21_GH0.tar.gz) = 40916350 -SHA256 (pmezard-go-difflib-5d4384ee4fb2_GH0.tar.gz) = 8574a5cbc435057352a17ff9e6ad40190f3b9d623cd9ab0cdfa6c1d8f0bea0b2 -SIZE (pmezard-go-difflib-5d4384ee4fb2_GH0.tar.gz) = 11395 -SHA256 (prometheus-client_golang-v1.20.5_GH0.tar.gz) = ab8aa5a2a56f2fb739ea7db4485d0a05df30476924a872b28cce3a319a347af8 -SIZE (prometheus-client_golang-v1.20.5_GH0.tar.gz) = 1103272 -SHA256 (prometheus-client_model-v0.6.1_GH0.tar.gz) = b9b690bc35d80061f255faa7df7621eae39fe157179ccd78ff6409c3b004f05e -SIZE (prometheus-client_model-v0.6.1_GH0.tar.gz) = 17373 -SHA256 (prometheus-common-v0.59.1_GH0.tar.gz) = 667945e10c2d90771ae66765d483a8cceb9966fe031444401162a1b8ccf6235c -SIZE (prometheus-common-v0.59.1_GH0.tar.gz) = 151575 -SHA256 (prometheus-procfs-v0.15.1_GH0.tar.gz) = ba96bb6d45f1fcbff820c7d844e6acdef4416bb0ff2d9e24656f5cbacb8e46b5 -SIZE (prometheus-procfs-v0.15.1_GH0.tar.gz) = 243687 -SHA256 (protocolbuffers-protobuf-go-v1.35.1_GH0.tar.gz) = 7cead1a711d682796b343931a9b54b3b07dd83456baeda6c069432235de45437 -SIZE (protocolbuffers-protobuf-go-v1.35.1_GH0.tar.gz) = 1522321 -SHA256 (redis-go-redis-v9.7.0_GH0.tar.gz) = 9d3b851826714defd3c9348cefcd262528ecf22aeb747d00ca14fa22bb3f85bb -SIZE (redis-go-redis-v9.7.0_GH0.tar.gz) = 319712 -SHA256 (sagikazarmark-locafero-v0.6.0_GH0.tar.gz) = 2a1ba4cb44d1858b77fb750f6f72f1b3b3d013ef8731644bdc0a6fdc9e3f28be -SIZE (sagikazarmark-locafero-v0.6.0_GH0.tar.gz) = 11140 -SHA256 (sagikazarmark-slog-shim-v0.1.0_GH0.tar.gz) = a594ec7e138265768a5c23f8ab460724d8215db45dc1bddde4743bca3373803d -SIZE (sagikazarmark-slog-shim-v0.1.0_GH0.tar.gz) = 10872 -SHA256 (sourcegraph-conc-v0.3.0_GH0.tar.gz) = c20a36ef6e8cd4721b8824d3e0a590d78f56ce72ace53ec7fdd2f7a978e9240f -SIZE (sourcegraph-conc-v0.3.0_GH0.tar.gz) = 23021 -SHA256 (spf13-afero-v1.11.0_GH0.tar.gz) = f83f67c4a03d8bba2b7fe1a496e848b2b1b7d97d0b951d85d2b401e7488a4ed4 -SIZE (spf13-afero-v1.11.0_GH0.tar.gz) = 89257 -SHA256 (spf13-cast-v1.7.0_GH0.tar.gz) = ba68ec49ece842dd15ea5a0f4293510617fefcf2d175f780bcf710dce42567b3 -SIZE (spf13-cast-v1.7.0_GH0.tar.gz) = 15675 -SHA256 (spf13-pflag-v1.0.5_GH0.tar.gz) = 9a2cae1f8e8ab0d2cc8ebe468e871af28d9ac0962cf0520999e3ba85f0c7b808 -SIZE (spf13-pflag-v1.0.5_GH0.tar.gz) = 50796 -SHA256 (spf13-viper-v1.19.0_GH0.tar.gz) = bd754a586de7b8f6e54037b715765833f8120cb8bdbb4240a69c6537a0ccdfd5 -SIZE (spf13-viper-v1.19.0_GH0.tar.gz) = 119990 -SHA256 (stretchr-testify-v1.9.0_GH0.tar.gz) = ee651d4d4427d55096007190398102383498e6b5cf97ea9e89ad6e72b4115fbb -SIZE (stretchr-testify-v1.9.0_GH0.tar.gz) = 108663 -SHA256 (subosito-gotenv-v1.6.0_GH0.tar.gz) = 51a5a8e36f30ddd97866779e93c4e93b0d4958a60fabd1d17fc2226bfe7823db -SIZE (subosito-gotenv-v1.6.0_GH0.tar.gz) = 11470 -SHA256 (uber-go-multierr-v1.11.0_GH0.tar.gz) = 8aa599cf7de733306cf8770f854f8a38e6c819b1ae4296f15e44b1e7c6698f34 -SIZE (uber-go-multierr-v1.11.0_GH0.tar.gz) = 16900 -SHA256 (vmihailenco-msgpack-v5.4.1_GH0.tar.gz) = cffb190f68ddf9d248e1587080466981ed911cf08901c6a81f4edc8d66b69f90 -SIZE (vmihailenco-msgpack-v5.4.1_GH0.tar.gz) = 37770 -SHA256 (vmihailenco-tagparser-v2.0.0_GH0.tar.gz) = 676b99c051fef68d1b0fb0385103de0e42a3ee556919b2b54ff5d3445bac56dd -SIZE (vmihailenco-tagparser-v2.0.0_GH0.tar.gz) = 3683 -SHA256 (yuin-gopher-lua-v1.1.1_GH0.tar.gz) = 9e706d96c11314a4b3e2034eb10726e48cc7e7e7e31d4765a675f901ee6a9a7e -SIZE (yuin-gopher-lua-v1.1.1_GH0.tar.gz) = 170691 +TIMESTAMP = 1766124297 +SHA256 (go/www_oauth2-proxy/oauth2-proxy-oauth2-proxy-v7.13.0_GH0/go.mod) = 243c71806d34c5b14499725b5d613c9d3ababd728b85d0dacf25a7cbb9304113 +SIZE (go/www_oauth2-proxy/oauth2-proxy-oauth2-proxy-v7.13.0_GH0/go.mod) = 3908 +SHA256 (go/www_oauth2-proxy/oauth2-proxy-oauth2-proxy-v7.13.0_GH0/oauth2-proxy-oauth2-proxy-v7.13.0_GH0.tar.gz) = 86d005585f753cda3495cf68f231bcb3be13d7c96d80c8890c0f9939e0bddcad +SIZE (go/www_oauth2-proxy/oauth2-proxy-oauth2-proxy-v7.13.0_GH0/oauth2-proxy-oauth2-proxy-v7.13.0_GH0.tar.gz) = 1661775 diff --git a/www/oauth2-proxy/files/patch-go.mod b/www/oauth2-proxy/files/patch-go.mod deleted file mode 100644 index 897d617d0268..000000000000 --- a/www/oauth2-proxy/files/patch-go.mod +++ /dev/null @@ -1,10 +0,0 @@ ---- go.mod.orig 2024-10-07 07:27:24 UTC -+++ go.mod -@@ -1,6 +1,6 @@ module github.com/oauth2-proxy/oauth2-proxy/v7 - module github.com/oauth2-proxy/oauth2-proxy/v7 - --go 1.22.7 -+go 1.22 - - require ( - cloud.google.com/go/compute/metadata v0.5.2 diff --git a/www/phalcon/Makefile b/www/phalcon/Makefile index d242a733b106..d3cc35eecdbe 100644 --- a/www/phalcon/Makefile +++ b/www/phalcon/Makefile @@ -4,7 +4,7 @@ DISTVERSION= 5.9.3 CATEGORIES= www PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} -MAINTAINER= franco@opnsense.org +MAINTAINER= vanilla@FreeBSD.org COMMENT= Phalcon PHP Framework written in C-language WWW= https://phalcon.io/ diff --git a/www/ungoogled-chromium/Makefile b/www/ungoogled-chromium/Makefile index e8b7c37ecaa9..57fc0c40b069 100644 --- a/www/ungoogled-chromium/Makefile +++ b/www/ungoogled-chromium/Makefile @@ -1,5 +1,5 @@ PORTNAME= ungoogled-chromium -PORTVERSION= 143.0.7499.146 +PORTVERSION= 143.0.7499.169 PULSEMV= 16 PULSEV= ${PULSEMV}.1 UGVERSION= ${DISTVERSION}-1 diff --git a/www/ungoogled-chromium/distinfo b/www/ungoogled-chromium/distinfo index 8971ac611eac..51ea10b43a14 100644 --- a/www/ungoogled-chromium/distinfo +++ b/www/ungoogled-chromium/distinfo @@ -1,9 +1,9 @@ -TIMESTAMP = 1766134663 -SHA256 (chromium-143.0.7499.146-lite.tar.xz) = d79916348f34ecb154201ba2908a0c1ffaf8ae9670215c575b76cf95b10fb076 -SIZE (chromium-143.0.7499.146-lite.tar.xz) = 1140736788 +TIMESTAMP = 1766182620 +SHA256 (chromium-143.0.7499.169-lite.tar.xz) = 0d03408450e552a1012321b61f5bb6e0f07a7f6e2ef111b519066876c1a5e747 +SIZE (chromium-143.0.7499.169-lite.tar.xz) = 1140789336 SHA256 (pulseaudio-16.1.tar.gz) = 027266c62f2a84422ac45fa721a649508f0f1628fb1fd9242315ac54ce2d7c92 SIZE (pulseaudio-16.1.tar.gz) = 2763111 -SHA256 (chromium-143.0.7499.146-testdata.tar.xz) = 20b86e1557beeb1654005a7793dd796205a3b75fdb05df94ffbedf376485db17 -SIZE (chromium-143.0.7499.146-testdata.tar.xz) = 1155417248 -SHA256 (ungoogled-software-ungoogled-chromium-143.0.7499.146-143.0.7499.146-1_GH0.tar.gz) = 705de8c2619c4d26a796f8425643f0e66b4706ac501cf9dc1f7acdd8a5290173 -SIZE (ungoogled-software-ungoogled-chromium-143.0.7499.146-143.0.7499.146-1_GH0.tar.gz) = 651128 +SHA256 (chromium-143.0.7499.169-testdata.tar.xz) = 5b6f7f71ee54fe0ac61730b6f58b4a767b2bd6ff9f646cfbc6cc707d6205851f +SIZE (chromium-143.0.7499.169-testdata.tar.xz) = 1155268416 +SHA256 (ungoogled-software-ungoogled-chromium-143.0.7499.169-143.0.7499.169-1_GH0.tar.gz) = 9061f9e31b36d1038a0880ca20749f8471ab5c48a8410e288ccce9721c467c84 +SIZE (ungoogled-software-ungoogled-chromium-143.0.7499.169-143.0.7499.169-1_GH0.tar.gz) = 651167 diff --git a/www/webgrind/Makefile b/www/webgrind/Makefile index 4c6a05718440..c6a2ac53da75 100644 --- a/www/webgrind/Makefile +++ b/www/webgrind/Makefile @@ -3,7 +3,7 @@ DISTVERSIONPREFIX= v DISTVERSION= 1.9.2 CATEGORIES= www -MAINTAINER= franco@opnsense.org +MAINTAINER= ports@FreeBSD.org COMMENT= Xdebug Profiling Web Frontend in PHP WWW= https://github.com/jokkedk/webgrind diff --git a/x11-fonts/Makefile b/x11-fonts/Makefile index 5f8d5d603db9..6f0d896a1ba0 100644 --- a/x11-fonts/Makefile +++ b/x11-fonts/Makefile @@ -303,6 +303,7 @@ SUBDIR += py-opentype-sanitizer SUBDIR += py-opentypespec SUBDIR += py-shaperglot + SUBDIR += py-rendercv-fonts SUBDIR += py-ufo2ft SUBDIR += py-ufoLib SUBDIR += py-ufolint diff --git a/x11-fonts/py-rendercv-fonts/Makefile b/x11-fonts/py-rendercv-fonts/Makefile new file mode 100644 index 000000000000..747ffd25d739 --- /dev/null +++ b/x11-fonts/py-rendercv-fonts/Makefile @@ -0,0 +1,21 @@ +PORTNAME= rendercv-fonts +DISTVERSION= 0.5.1 +CATEGORIES= x11-fonts python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= rendercv_fonts-${DISTVERSION} + +MAINTAINER= dtxdf@FreeBSD.org +COMMENT= Some fonts for RenderCV +WWW= https://github.com/rendercv/rendercv-fonts \ + https://pypi.org/project/rendercv-fonts + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist pep517 + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR} + +.include <bsd.port.mk> diff --git a/x11-fonts/py-rendercv-fonts/distinfo b/x11-fonts/py-rendercv-fonts/distinfo new file mode 100644 index 000000000000..d04daf0d8249 --- /dev/null +++ b/x11-fonts/py-rendercv-fonts/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1766177557 +SHA256 (rendercv_fonts-0.5.1.tar.gz) = f7ea8f33bb1338d9ce41c036066ffb8a482cc182c0f36e183d73a42e2da91ee5 +SIZE (rendercv_fonts-0.5.1.tar.gz) = 33041210 diff --git a/x11-fonts/py-rendercv-fonts/files/patch-pyproject.toml b/x11-fonts/py-rendercv-fonts/files/patch-pyproject.toml new file mode 100644 index 000000000000..02b4185a9237 --- /dev/null +++ b/x11-fonts/py-rendercv-fonts/files/patch-pyproject.toml @@ -0,0 +1,9 @@ +--- pyproject.toml.orig 2025-12-19 20:56:16 UTC ++++ pyproject.toml +@@ -1,5 +1,5 @@ + [build-system] +-requires = ["hatchling==1.26.3"] ++requires = ["hatchling"] + build-backend = "hatchling.build" + + [tool.hatch.build.targets.wheel] diff --git a/x11-fonts/py-rendercv-fonts/pkg-descr b/x11-fonts/py-rendercv-fonts/pkg-descr new file mode 100644 index 000000000000..79118867a96d --- /dev/null +++ b/x11-fonts/py-rendercv-fonts/pkg-descr @@ -0,0 +1,2 @@ +rendercv-fonts is a python package with some fonts for the rendercv +package. diff --git a/x11-wm/chamfer/Makefile b/x11-wm/chamfer/Makefile index aa8e04736d0f..f18aa73f59ff 100644 --- a/x11-wm/chamfer/Makefile +++ b/x11-wm/chamfer/Makefile @@ -1,6 +1,6 @@ PORTNAME= chamfer DISTVERSION= s20240928 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-wm MAINTAINER= jbeich@FreeBSD.org diff --git a/x11-wm/cosmic-comp/Makefile b/x11-wm/cosmic-comp/Makefile index d6aaa78376b2..54f69d8e7ad6 100644 --- a/x11-wm/cosmic-comp/Makefile +++ b/x11-wm/cosmic-comp/Makefile @@ -4,7 +4,7 @@ DISTVERSION= 1.0.0 PORTREVISION= 1 CATEGORIES= x11-wm wayland -MAINTAINER= jbeich@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Compositor for the COSMIC desktop environment WWW= https://github.com/pop-os/cosmic-comp diff --git a/x11-wm/niri/Makefile b/x11-wm/niri/Makefile index 24b6f3add62d..708b669beb0b 100644 --- a/x11-wm/niri/Makefile +++ b/x11-wm/niri/Makefile @@ -4,7 +4,7 @@ DISTVERSION= 25.11 PORTREVISION= 1 CATEGORIES= x11-wm wayland -MAINTAINER= jbeich@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Scrollable-tiling Wayland compositor WWW= https://github.com/YaLTeR/niri diff --git a/x11/lemonbar/Makefile b/x11/lemonbar/Makefile index 8c79e488a272..eee62d57c048 100644 --- a/x11/lemonbar/Makefile +++ b/x11/lemonbar/Makefile @@ -1,10 +1,9 @@ PORTNAME= lemonbar DISTVERSIONPREFIX=v -DISTVERSION= 1.4 -PORTREVISION= 2 +DISTVERSION= 1.5 CATEGORIES= x11 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= nxjoseph@protonmail.com COMMENT= Lightweight xcb based bar WWW= https://github.com/LemonBoy/bar @@ -16,10 +15,8 @@ USES= compiler:c11 gmake localbase:ldflags perl5 xorg USE_GITHUB= yes GH_ACCOUNT= LemonBoy GH_PROJECT= bar - USE_PERL5= build USE_XORG= xcb -CFLAGS+= -D__BSD_VISIBLE # for memrchr(3) CONFLICTS_INSTALL= lemonbar-xft diff --git a/x11/lemonbar/distinfo b/x11/lemonbar/distinfo index 3e64bc5ed0af..d81a6b5d94b6 100644 --- a/x11/lemonbar/distinfo +++ b/x11/lemonbar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1605961087 -SHA256 (LemonBoy-bar-v1.4_GH0.tar.gz) = 7bfd36d7a4a950f61ed0d32c7d219678e7787a546d9ef4bc33f02393d60e4939 -SIZE (LemonBoy-bar-v1.4_GH0.tar.gz) = 16810 +TIMESTAMP = 1766168083 +SHA256 (LemonBoy-bar-v1.5_GH0.tar.gz) = bc8defe0ce6e4c1b16fd6ba3080a08e4502d6cf9d09440186044eae6b2d7460d +SIZE (LemonBoy-bar-v1.5_GH0.tar.gz) = 16944 diff --git a/x11/xkbcomp/Makefile b/x11/xkbcomp/Makefile index 3c4f379a719f..88d3f30ff5ae 100644 --- a/x11/xkbcomp/Makefile +++ b/x11/xkbcomp/Makefile @@ -1,17 +1,16 @@ PORTNAME= xkbcomp -DISTVERSION= 1.4.7 +DISTVERSION= 1.5.0 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org -COMMENT= Compile XKB keyboard description +COMMENT= XKB keyboard description compiler +WWW= https://gitlab.freedesktop.org/xorg/app/xkbcomp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= pathfix tar:xz xorg xorg-cat:app -USE_XORG= x11 xkbfile - -GNU_CONFIGURE_MANPREFIX=${PREFIX}/share +USE_XORG= x11 xkbfile xorgproto PLIST_FILES= bin/xkbcomp \ libdata/pkgconfig/xkbcomp.pc \ diff --git a/x11/xkbcomp/distinfo b/x11/xkbcomp/distinfo index 1cf4991107a9..2161e6704ab1 100644 --- a/x11/xkbcomp/distinfo +++ b/x11/xkbcomp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1707032579 -SHA256 (xorg/app/xkbcomp-1.4.7.tar.xz) = 0a288114e5f44e31987042c79aecff1ffad53a8154b8ec971c24a69a80f81f77 -SIZE (xorg/app/xkbcomp-1.4.7.tar.xz) = 239324 +TIMESTAMP = 1764962846 +SHA256 (xorg/app/xkbcomp-1.5.0.tar.xz) = 2ac31f26600776db6d9cd79b3fcd272263faebac7eb85fb2f33c7141b8486060 +SIZE (xorg/app/xkbcomp-1.5.0.tar.xz) = 247996 diff --git a/x11/xkbcomp/pkg-descr b/x11/xkbcomp/pkg-descr index 074524733411..fb6c42eea535 100644 --- a/x11/xkbcomp/pkg-descr +++ b/x11/xkbcomp/pkg-descr @@ -1 +1,4 @@ -This package contains xkbcomp, the X.Org keymap compiler. +The xkbcomp keymap compiler converts a description of an XKB keymap +into one of several output formats. The most common use for xkbcomp is +to create a compiled keymap file (.xkm extension) which can be read +directly by XKB-capable X servers or utilities. diff --git a/x11/xpra/Makefile b/x11/xpra/Makefile index fa5216892de3..f0acb8407d59 100644 --- a/x11/xpra/Makefile +++ b/x11/xpra/Makefile @@ -1,6 +1,5 @@ PORTNAME= xpra -PORTVERSION= 6.3.4 -PORTREVISION= 1 +PORTVERSION= 6.4 CATEGORIES= x11 MASTER_SITES= https://xpra.org/src/ @@ -11,7 +10,9 @@ WWW= https://xpra.org/ LICENSE= GPLv2 BUILD_DEPENDS= pandoc:textproc/hs-pandoc -LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ +LIB_DEPENDS= libaom.so:multimedia/aom \ + libavcodec.so:multimedia/ffmpeg \ + libavif.so:graphics/libavif \ libbrotlidec.so:archivers/brotli \ libdrm.so:graphics/libdrm \ libharfbuzz.so:print/harfbuzz \ @@ -47,11 +48,14 @@ USES= desktop-file-utils gettext-runtime gnome localbase pkgconfig \ USE_GNOME= cairo gdkpixbuf gtk30 pygobject3 USE_PYTHON= cryptography cython3 distutils noflavors -USE_XORG= x11 xcomposite xdamage xext xfixes xi xkbfile xrandr xres xtst +USE_XORG= x11 xcomposite xcursor xdamage xext xfixes xi xkbfile xrandr \ + xres xtst PLIST_SUB+= PORTVERSION=${PORTVERSION} \ PYTHON_SUFFIX=${PYTHON_SUFFIX} \ PYTHON_VER=${PYTHON_VER} -SHEBANG_FILES= fs/lib/cups/backend/xpraforwarder fs/libexec/xpra/auth_dialog \ +SHEBANG_FILES= fs/lib/cups/backend/xpraforwarder \ + fs/libexec/xpra/auth_dialog \ + fs/libexec/xpra/daemonizer \ fs/libexec/xpra/gnome-open fs/libexec/xpra/gvfs-open \ fs/libexec/xpra/xdg-open fs/libexec/xpra/xpra_signal_listener \ fs/libexec/xpra/xpra_udev_product_version \ diff --git a/x11/xpra/distinfo b/x11/xpra/distinfo index 8e521cd7ce06..ad5a23811713 100644 --- a/x11/xpra/distinfo +++ b/x11/xpra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1760194662 -SHA256 (xpra-6.3.4.tar.xz) = 64b58cf34e51c009bac550b1355fa5e839a3e4f5187ce8492f439bb4ebba90ac -SIZE (xpra-6.3.4.tar.xz) = 9094256 +TIMESTAMP = 1766219439 +SHA256 (xpra-6.4.tar.xz) = 3cf2d025bfdbec1cfc56dcd3f66e799991d2b58f0f9a259a23b4a63836df35b2 +SIZE (xpra-6.4.tar.xz) = 9918548 diff --git a/x11/xpra/pkg-plist b/x11/xpra/pkg-plist index 9f56869c9966..b345424f1e39 100644 --- a/x11/xpra/pkg-plist +++ b/x11/xpra/pkg-plist @@ -49,6 +49,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/__pycache__/os_util%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/__pycache__/src_info%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/__pycache__/src_info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/__pycache__/tray_base%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/__pycache__/tray_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/audio/__init__.py %%PYTHON_SITELIBDIR%%/xpra/audio/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/audio/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -130,6 +132,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/none%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/otp%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/otp%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/otpscreen%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/otpscreen%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/pam%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/pam%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/auth/__pycache__/password%%PYTHON_TAG%%.opt-1.pyc @@ -171,6 +175,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/auth/mysql.py %%PYTHON_SITELIBDIR%%/xpra/auth/none.py %%PYTHON_SITELIBDIR%%/xpra/auth/otp.py +%%PYTHON_SITELIBDIR%%/xpra/auth/otpscreen.py %%PYTHON_SITELIBDIR%%/xpra/auth/pam.py %%PYTHON_SITELIBDIR%%/xpra/auth/password.py %%PYTHON_SITELIBDIR%%/xpra/auth/peercred.py @@ -221,35 +226,68 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/client/base/__init__.py %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/adapter%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/adapter%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/aes%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/aes%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/challenge%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/challenge%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/client%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/client%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/command%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/command%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/control%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/control%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/debug%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/debug%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/encode%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/encode%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/factory%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/factory%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/features%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/features%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/fileprint%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/fileprint%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/file%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/file%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/glib_adapter%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/glib_adapter%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/gobject%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/gobject%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/network%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/network%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/printer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/printer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/progress%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/progress%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/rfb_protocol%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/rfb_protocol%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/serverinfo%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/serverinfo%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/stub_client_mixin%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/stub_client_mixin%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/ssl_upgrade%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/ssl_upgrade%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/stub%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/stub%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/top%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/base/__pycache__/top%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/base/adapter.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/aes.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/challenge.py %%PYTHON_SITELIBDIR%%/xpra/client/base/client.py %%PYTHON_SITELIBDIR%%/xpra/client/base/command.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/control.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/debug.py %%PYTHON_SITELIBDIR%%/xpra/client/base/encode.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/factory.py %%PYTHON_SITELIBDIR%%/xpra/client/base/features.py -%%PYTHON_SITELIBDIR%%/xpra/client/base/fileprint.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/file.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/glib_adapter.py %%PYTHON_SITELIBDIR%%/xpra/client/base/gobject.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/network.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/printer.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/progress.py %%PYTHON_SITELIBDIR%%/xpra/client/base/rfb_protocol.py %%PYTHON_SITELIBDIR%%/xpra/client/base/serverinfo.py -%%PYTHON_SITELIBDIR%%/xpra/client/base/stub_client_mixin.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/ssl_upgrade.py +%%PYTHON_SITELIBDIR%%/xpra/client/base/stub.py %%PYTHON_SITELIBDIR%%/xpra/client/base/top.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__init__.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc @@ -270,18 +308,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/menu_helper%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/notifier%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/notifier%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/statusicon_tray%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/statusicon_tray%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/tray_menu%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/tray_menu%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window_base%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window_base%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window_info%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window_info%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window_menu%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/__pycache__/window_menu%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/cairo_backing.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/cairo_backing_base.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/client.py @@ -308,12 +336,55 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/opengl/glarea_backing.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/opengl/glarea_window.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/opengl/native_window.py -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/statusicon_tray.py %%PYTHON_SITELIBDIR%%/xpra/client/gtk3/tray_menu.py -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window.py -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window_base.py -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window_info.py -%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window_menu.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/base%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/base%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/dragndrop%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/dragndrop%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/factory%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/factory%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/focus%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/focus%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/grab%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/grab%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/headerbar%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/headerbar%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/keyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/keyboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/menu%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/menu%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/pointer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/shape%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/shape%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/stub_window%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/stub_window%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/window%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/window%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/window_info%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/window_info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/workspace%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/__pycache__/workspace%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/base.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/common.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/dragndrop.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/factory.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/focus.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/grab.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/headerbar.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/keyboard.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/menu.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/pointer.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/shape.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/stub_window.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/window.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/window_info.py +%%PYTHON_SITELIBDIR%%/xpra/client/gtk3/window/workspace.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/__init__.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -333,14 +404,10 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/paint_colors%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/spinner%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/spinner%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/tray_base%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/tray_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/ui_client_base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/ui_client_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/widget_base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/widget_base%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/window_backing_base%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/window_backing_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/window_base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/window_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/client/gui/__pycache__/window_border%%PYTHON_TAG%%.opt-1.pyc @@ -353,62 +420,102 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/client/gui/keyboard_shortcuts_parser.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/paint_colors.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/spinner.py -%%PYTHON_SITELIBDIR%%/xpra/client/gui/tray_base.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/ui_client_base.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/widget_base.py -%%PYTHON_SITELIBDIR%%/xpra/client/gui/window_backing_base.py +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/action%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/action%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/backing%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/backing%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/stub_window%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/__pycache__/stub_window%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/action.py +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/backing.py +%%PYTHON_SITELIBDIR%%/xpra/client/gui/window/stub_window.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/window_base.py %%PYTHON_SITELIBDIR%%/xpra/client/gui/window_border.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__init__.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/audio%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/audio%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/clipboard%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/cursors%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/cursors%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/display%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/display%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/encodings%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/encodings%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/logging%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/logging%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/mmap%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/mmap%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/network_listener%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/network_listener%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/network_state%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/network_state%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/notification%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/tray%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/tray%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/webcam%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/windows%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/__pycache__/windows%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/audio.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/clipboard.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/cursors.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/display.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/encodings.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/logging.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/mmap.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/network_listener.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/network_state.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/notification.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/tray.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/webcam.py -%%PYTHON_SITELIBDIR%%/xpra/client/mixins/windows.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/audio%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/audio%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/bandwidth%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/bandwidth%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/clipboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/command%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/command%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/cursor%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/cursor%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/display%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/display%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/encoding%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/encoding%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/keyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/keyboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/logging%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/logging%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/mmap%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/mmap%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/notification%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/ping%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/ping%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/pointer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/power%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/power%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/server_info%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/server_info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/socket%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/socket%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/ssh_agent%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/ssh_agent%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/tray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/tray%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/webcam%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/window%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/__pycache__/window%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/audio.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/bandwidth.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/clipboard.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/command.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/cursor.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/display.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/encoding.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/keyboard.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/logging.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/mmap.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/notification.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/ping.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/pointer.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/power.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/server_info.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/socket.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/ssh_agent.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/tray.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/webcam.py +%%PYTHON_SITELIBDIR%%/xpra/client/subsystem/window.py %%PYTHON_SITELIBDIR%%/xpra/clipboard/__init__.py %%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/common%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/core%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/core%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/proxy%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/proxy%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/targets%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/targets%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/timeout%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/clipboard/__pycache__/timeout%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/clipboard/common.py %%PYTHON_SITELIBDIR%%/xpra/clipboard/core.py +%%PYTHON_SITELIBDIR%%/xpra/clipboard/proxy.py +%%PYTHON_SITELIBDIR%%/xpra/clipboard/targets.py %%PYTHON_SITELIBDIR%%/xpra/clipboard/timeout.py %%PYTHON_SITELIBDIR%%/xpra/codecs/__init__.py %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc @@ -425,10 +532,19 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/image%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/loader%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/loader%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/protocols%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/protocols%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/rgb_transform%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/rgb_transform%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/screenshot%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/screenshot%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/video%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/__pycache__/video%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/aom/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/codecs/aom/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/aom/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/codecs/aom/api%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/codecs/aom/decoder%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/codecs/argb/__init__.py %%PYTHON_SITELIBDIR%%/xpra/codecs/argb/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/argb/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -512,12 +628,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/codecs/pillow/__pycache__/encoder%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/pillow/decoder.py %%PYTHON_SITELIBDIR%%/xpra/codecs/pillow/encoder.py -%%PYTHON_SITELIBDIR%%/xpra/codecs/proxy/__init__.py -%%PYTHON_SITELIBDIR%%/xpra/codecs/proxy/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/codecs/proxy/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/codecs/proxy/__pycache__/encoder%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/codecs/proxy/__pycache__/encoder%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/codecs/proxy/encoder.py +%%PYTHON_SITELIBDIR%%/xpra/codecs/protocols.py %%PYTHON_SITELIBDIR%%/xpra/codecs/remote/__init__.py %%PYTHON_SITELIBDIR%%/xpra/codecs/remote/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/remote/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -528,6 +639,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/codecs/remote/common.py %%PYTHON_SITELIBDIR%%/xpra/codecs/remote/encoder.py %%PYTHON_SITELIBDIR%%/xpra/codecs/rgb_transform.py +%%PYTHON_SITELIBDIR%%/xpra/codecs/screenshot.py %%PYTHON_SITELIBDIR%%/xpra/codecs/video.py %%PYTHON_SITELIBDIR%%/xpra/codecs/webp/__init__.py %%PYTHON_SITELIBDIR%%/xpra/codecs/webp/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc @@ -539,6 +651,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/codecs/x264/__pycache__/__init__%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/codecs/x264/encoder%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/common.py +%%PYTHON_SITELIBDIR%%/xpra/cyshared%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/dbus/__init__.py %%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -546,11 +659,11 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/common%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/helper%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/helper%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/notifications_forwarder%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/notifications_forwarder%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/notifications%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/dbus/__pycache__/notifications%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/dbus/common.py %%PYTHON_SITELIBDIR%%/xpra/dbus/helper.py -%%PYTHON_SITELIBDIR%%/xpra/dbus/notifications_forwarder.py +%%PYTHON_SITELIBDIR%%/xpra/dbus/notifications.py %%PYTHON_SITELIBDIR%%/xpra/exit_codes.py %%PYTHON_SITELIBDIR%%/xpra/gstreamer/__init__.py %%PYTHON_SITELIBDIR%%/xpra/gstreamer/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc @@ -564,16 +677,14 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/__init__.py %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/capture%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/capture%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/clipboard%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/css_overrides%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/css_overrides%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/cursors%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/cursors%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/error%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/error%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/gobject%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/gobject%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/graph%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/graph%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/info%%PYTHON_TAG%%.opt-1.pyc @@ -584,8 +695,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/notifier%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/pixbuf%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/pixbuf%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/signals%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/signals%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/statusicon_tray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/statusicon_tray%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/util%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/util%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/__pycache__/versions%%PYTHON_TAG%%.opt-1.pyc @@ -600,12 +711,15 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/bindings/atoms%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/gtk/bindings/gobject%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/gtk/cairo_image%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/gtk/capture.py %%PYTHON_SITELIBDIR%%/xpra/gtk/clipboard.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__init__.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/__init__%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/debug%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/debug%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/encodings%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/encodings%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/features%%PYTHON_TAG%%.opt-1.pyc @@ -620,11 +734,14 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/opengl%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/packages%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/packages%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/settings%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/settings%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/shadow%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/shadow%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/vfb%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/__pycache__/vfb%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/common.py +%%PYTHON_SITELIBDIR%%/xpra/gtk/configure/debug.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/encodings.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/features.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/gstreamer.py @@ -632,6 +749,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/main.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/opengl.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/packages.py +%%PYTHON_SITELIBDIR%%/xpra/gtk/configure/settings.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/shadow.py %%PYTHON_SITELIBDIR%%/xpra/gtk/configure/vfb.py %%PYTHON_SITELIBDIR%%/xpra/gtk/css_overrides.py @@ -649,6 +767,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/bug_report%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/confirm_dialog%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/confirm_dialog%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/debug%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/debug%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/desktop_greeter%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/desktop_greeter%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/gui%%PYTHON_TAG%%.opt-1.pyc @@ -657,6 +777,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/mdns_gui%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/open_requests%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/open_requests%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/otp%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/otp%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/pass_dialog%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/pass_dialog%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/__pycache__/qrcode%%PYTHON_TAG%%.opt-1.pyc @@ -696,10 +818,12 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/base_gui_window.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/bug_report.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/confirm_dialog.py +%%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/debug.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/desktop_greeter.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/gui.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/mdns_gui.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/open_requests.py +%%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/otp.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/pass_dialog.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/qrcode.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/qrcode_client.py @@ -717,7 +841,6 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/util.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/view_clipboard.py %%PYTHON_SITELIBDIR%%/xpra/gtk/dialogs/view_keyboard.py -%%PYTHON_SITELIBDIR%%/xpra/gtk/error.py %%PYTHON_SITELIBDIR%%/xpra/gtk/examples/__init__.py %%PYTHON_SITELIBDIR%%/xpra/gtk/examples/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/gtk/examples/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -790,13 +913,12 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/gtk/examples/window_states.py %%PYTHON_SITELIBDIR%%/xpra/gtk/examples/window_title.py %%PYTHON_SITELIBDIR%%/xpra/gtk/examples/window_transient.py -%%PYTHON_SITELIBDIR%%/xpra/gtk/gobject.py %%PYTHON_SITELIBDIR%%/xpra/gtk/graph.py %%PYTHON_SITELIBDIR%%/xpra/gtk/info.py %%PYTHON_SITELIBDIR%%/xpra/gtk/keymap.py %%PYTHON_SITELIBDIR%%/xpra/gtk/notifier.py %%PYTHON_SITELIBDIR%%/xpra/gtk/pixbuf.py -%%PYTHON_SITELIBDIR%%/xpra/gtk/signals.py +%%PYTHON_SITELIBDIR%%/xpra/gtk/statusicon_tray.py %%PYTHON_SITELIBDIR%%/xpra/gtk/util.py %%PYTHON_SITELIBDIR%%/xpra/gtk/versions.py %%PYTHON_SITELIBDIR%%/xpra/gtk/widget.py @@ -812,10 +934,13 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/keyboard/__pycache__/layouts%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/keyboard/__pycache__/mask%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/keyboard/__pycache__/mask%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/keyboard/__pycache__/nokeyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/keyboard/__pycache__/nokeyboard%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/keyboard/common.py %%PYTHON_SITELIBDIR%%/xpra/keyboard/ibus.py %%PYTHON_SITELIBDIR%%/xpra/keyboard/layouts.py %%PYTHON_SITELIBDIR%%/xpra/keyboard/mask.py +%%PYTHON_SITELIBDIR%%/xpra/keyboard/nokeyboard.py %%PYTHON_SITELIBDIR%%/xpra/log.py %%PYTHON_SITELIBDIR%%/xpra/net/__init__.py %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc @@ -826,6 +951,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/common%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/compression%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/compression%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/connect%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/connect%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/crypto%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/crypto%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/device_info%%PYTHON_TAG%%.opt-1.pyc @@ -838,20 +965,22 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/glib_handler%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/libproxy%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/libproxy%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/mmap%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/mmap%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/net_util%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/net_util%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/packet_encoding%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/packet_encoding%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/socket_util%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/socket_util%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/ssl_util%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/ssl_util%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/subprocess_wrapper%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/subprocess_wrapper%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/upnp%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/__pycache__/upnp%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/asyncio/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/net/asyncio/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/asyncio/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/asyncio/__pycache__/thread%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/asyncio/__pycache__/thread%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/asyncio/thread.py %%PYTHON_SITELIBDIR%%/xpra/net/brotli/__init__.py %%PYTHON_SITELIBDIR%%/xpra/net/brotli/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/brotli/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -860,6 +989,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/bytestreams.py %%PYTHON_SITELIBDIR%%/xpra/net/common.py %%PYTHON_SITELIBDIR%%/xpra/net/compression.py +%%PYTHON_SITELIBDIR%%/xpra/net/connect.py %%PYTHON_SITELIBDIR%%/xpra/net/control/__init__.py %%PYTHON_SITELIBDIR%%/xpra/net/control/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/control/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -894,22 +1024,27 @@ etc/dbus-1/system.d/xpra.conf %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__init__.py %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/avahi_listener%%PYTHON_TAG%%.opt-1.pyc -%%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/avahi_listener%%PYTHON_TAG%%.pyc -%%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/avahi_publisher%%PYTHON_TAG%%.opt-1.pyc -%%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/avahi_publisher%%PYTHON_TAG%%.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/util%%PYTHON_TAG%%.opt-1.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/util%%PYTHON_TAG%%.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/zeroconf_listener%%PYTHON_TAG%%.opt-1.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/zeroconf_listener%%PYTHON_TAG%%.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/zeroconf_publisher%%PYTHON_TAG%%.opt-1.pyc %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/__pycache__/zeroconf_publisher%%PYTHON_TAG%%.pyc -%%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/avahi_listener.py -%%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/avahi_publisher.py %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/util.py %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/zeroconf_listener.py %%AVAHI%%%%PYTHON_SITELIBDIR%%/xpra/net/mdns/zeroconf_publisher.py -%%PYTHON_SITELIBDIR%%/xpra/net/mmap.py +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/io%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/io%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/objects%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/__pycache__/objects%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/common.py +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/io.py +%%PYTHON_SITELIBDIR%%/xpra/net/mmap/objects.py %%PYTHON_SITELIBDIR%%/xpra/net/net_util.py %%PYTHON_SITELIBDIR%%/xpra/net/packet_encoding.py %%PYTHON_SITELIBDIR%%/xpra/net/protocol/__init__.py @@ -933,8 +1068,6 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/quic/__init__.py %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/asyncio_thread%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/asyncio_thread%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/client%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/client%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc @@ -951,7 +1084,6 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/websocket%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/webtransport%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/quic/__pycache__/webtransport%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/quic/asyncio_thread.py %%PYTHON_SITELIBDIR%%/xpra/net/quic/client.py %%PYTHON_SITELIBDIR%%/xpra/net/quic/common.py %%PYTHON_SITELIBDIR%%/xpra/net/quic/connection.py @@ -984,18 +1116,38 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/agent%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/exec_client%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/exec_client%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/paramiko_client%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/paramiko_client%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/sshfp%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/sshfp%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/util%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/__pycache__/util%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/net/ssh/agent.py %%PYTHON_SITELIBDIR%%/xpra/net/ssh/exec_client.py -%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko_client.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__pycache__/client%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__pycache__/client%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__pycache__/util%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/__pycache__/util%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/client.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssh/paramiko/util.py %%PYTHON_SITELIBDIR%%/xpra/net/ssh/sshfp.py %%PYTHON_SITELIBDIR%%/xpra/net/ssh/util.py -%%PYTHON_SITELIBDIR%%/xpra/net/ssl_util.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/file%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/file%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/parsing%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/parsing%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/socket%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/__pycache__/socket%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/common.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/file.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/parsing.py +%%PYTHON_SITELIBDIR%%/xpra/net/ssl/socket.py %%PYTHON_SITELIBDIR%%/xpra/net/subprocess_wrapper.py %%PYTHON_SITELIBDIR%%/xpra/net/upnp.py %%PYTHON_SITELIBDIR%%/xpra/net/websockets/__init__.py @@ -1026,21 +1178,21 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/net/websockets/headers/env_cookie.py %%PYTHON_SITELIBDIR%%/xpra/net/websockets/mask%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/net/websockets/protocol.py -%%PYTHON_SITELIBDIR%%/xpra/notifications/__init__.py -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/common%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/dbus_notifier%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/dbus_notifier%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/notifier_base%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/notifier_base%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/pynotify_notifier%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/__pycache__/pynotify_notifier%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/notifications/common.py -%%PYTHON_SITELIBDIR%%/xpra/notifications/dbus_notifier.py -%%PYTHON_SITELIBDIR%%/xpra/notifications/notifier_base.py -%%PYTHON_SITELIBDIR%%/xpra/notifications/pynotify_notifier.py +%%PYTHON_SITELIBDIR%%/xpra/notification/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/base%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/base%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/dbus_backend%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/dbus_backend%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/pynotify_backend%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/__pycache__/pynotify_backend%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/notification/base.py +%%PYTHON_SITELIBDIR%%/xpra/notification/common.py +%%PYTHON_SITELIBDIR%%/xpra/notification/dbus_backend.py +%%PYTHON_SITELIBDIR%%/xpra/notification/pynotify_backend.py %%PYTHON_SITELIBDIR%%/xpra/opengl/__init__.py %%PYTHON_SITELIBDIR%%/xpra/opengl/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/opengl/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1071,6 +1223,10 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/__init__%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/autostart%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/autostart%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/client%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/client%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/clipboard%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/displayfd%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/displayfd%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/dotxpra%%PYTHON_TAG%%.opt-1.pyc @@ -1095,8 +1251,12 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/menu_helper%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/netdev_query%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/netdev_query%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/notification%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/paths%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/paths%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/pointer%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/printing%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/printing%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/proxy_server%%PYTHON_TAG%%.opt-1.pyc @@ -1105,11 +1265,16 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/pycups_printing%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/shadow_server%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/shadow_server%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/systray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/systray%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/ui_thread_watcher%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/ui_thread_watcher%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/__pycache__/webcam%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/autostart.py +%%PYTHON_SITELIBDIR%%/xpra/platform/bsd/peercred%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/platform/client.py +%%PYTHON_SITELIBDIR%%/xpra/platform/clipboard.py %%PYTHON_SITELIBDIR%%/xpra/platform/displayfd.py %%PYTHON_SITELIBDIR%%/xpra/platform/dotxpra.py %%PYTHON_SITELIBDIR%%/xpra/platform/dotxpra_common.py @@ -1122,7 +1287,9 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/keyboard_base.py %%PYTHON_SITELIBDIR%%/xpra/platform/menu_helper.py %%PYTHON_SITELIBDIR%%/xpra/platform/netdev_query.py +%%PYTHON_SITELIBDIR%%/xpra/platform/notification.py %%PYTHON_SITELIBDIR%%/xpra/platform/paths.py +%%PYTHON_SITELIBDIR%%/xpra/platform/pointer.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__init__.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1130,6 +1297,10 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/appindicator_tray%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/autostart%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/autostart%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/client%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/client%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/clipboard%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/dotxpra%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/dotxpra%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/events%%PYTHON_TAG%%.opt-1.pyc @@ -1150,8 +1321,12 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/keyboard%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/menu_helper%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/menu_helper%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/notification%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/paths%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/paths%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/pointer%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/printing%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/printing%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/proc%%PYTHON_TAG%%.opt-1.pyc @@ -1162,10 +1337,16 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/screencast%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/shadow_server%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/shadow_server%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/systray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/systray%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/webcam%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/xi2%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/__pycache__/xi2%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/platform/posix/appindicator_tray.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/autostart.py +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/client.py +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/clipboard.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/dotxpra.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/events.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/fd_portal.py @@ -1176,19 +1357,30 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/platform/posix/info.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/keyboard.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/menu_helper.py +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/notification.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/paths.py +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/pointer.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/printing.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/proc.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/remotedesktop.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/screencast.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/shadow_server.py +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/systray.py %%PYTHON_SITELIBDIR%%/xpra/platform/posix/webcam.py +%%PYTHON_SITELIBDIR%%/xpra/platform/posix/xi2.py %%PYTHON_SITELIBDIR%%/xpra/platform/printing.py %%PYTHON_SITELIBDIR%%/xpra/platform/proxy_server.py %%PYTHON_SITELIBDIR%%/xpra/platform/pycups_printing.py %%PYTHON_SITELIBDIR%%/xpra/platform/shadow_server.py +%%PYTHON_SITELIBDIR%%/xpra/platform/systray.py %%PYTHON_SITELIBDIR%%/xpra/platform/ui_thread_watcher.py %%PYTHON_SITELIBDIR%%/xpra/platform/webcam.py +%%PYTHON_SITELIBDIR%%/xpra/pointer/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/pointer/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/pointer/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/pointer/__pycache__/nopointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/pointer/__pycache__/nopointer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/pointer/nopointer.py %%PYTHON_SITELIBDIR%%/xpra/scripts/__init__.py %%PYTHON_SITELIBDIR%%/xpra/scripts/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/scripts/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1219,8 +1411,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/__init__.py %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/background_worker%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/background_worker%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/auth%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/auth%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/core%%PYTHON_TAG%%.opt-1.pyc @@ -1229,17 +1421,17 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/factory%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/features%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/features%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/gtk_server%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/gtk_server%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/glib_server%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/glib_server%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/keyboard_config_base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/keyboard_config_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/menu_provider%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/menu_provider%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/runner_script%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/runner_script%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/ssh%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/ssh%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/util%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/__pycache__/util%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/background_worker.py +%%PYTHON_SITELIBDIR%%/xpra/server/auth.py %%PYTHON_SITELIBDIR%%/xpra/server/base.py %%PYTHON_SITELIBDIR%%/xpra/server/core.py %%PYTHON_SITELIBDIR%%/xpra/server/cystats%%PYTHON_TAG%%.so @@ -1272,75 +1464,9 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/encoder/server.py %%PYTHON_SITELIBDIR%%/xpra/server/factory.py %%PYTHON_SITELIBDIR%%/xpra/server/features.py -%%PYTHON_SITELIBDIR%%/xpra/server/gtk_server.py +%%PYTHON_SITELIBDIR%%/xpra/server/glib_server.py %%PYTHON_SITELIBDIR%%/xpra/server/keyboard_config_base.py %%PYTHON_SITELIBDIR%%/xpra/server/menu_provider.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__init__.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/audio%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/audio%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/child_command%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/child_command%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/clipboard%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/control%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/control%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/controlcommands%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/controlcommands%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/cursors%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/cursors%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/dbus%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/dbus%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/display%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/display%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/encoding%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/encoding%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/fileprint%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/fileprint%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/http%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/http%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/input%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/input%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/logging%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/logging%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/mmap%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/mmap%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/networkstate%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/networkstate%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/notification%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/shell%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/shell%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/ssh_agent%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/ssh_agent%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/stub_server_mixin%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/stub_server_mixin%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/webcam%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/window%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/__pycache__/window%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/audio.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/child_command.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/clipboard.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/control.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/controlcommands.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/cursors.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/dbus.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/display.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/encoding.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/fileprint.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/http.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/input.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/logging.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/mmap.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/networkstate.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/notification.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/shell.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/ssh_agent.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/stub_server_mixin.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/webcam.py -%%PYTHON_SITELIBDIR%%/xpra/server/mixins/window.py %%PYTHON_SITELIBDIR%%/xpra/server/proxy/__init__.py %%PYTHON_SITELIBDIR%%/xpra/server/proxy/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/proxy/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1374,18 +1500,25 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/rfb/protocol.py %%PYTHON_SITELIBDIR%%/xpra/server/rfb/server.py %%PYTHON_SITELIBDIR%%/xpra/server/rfb/source.py +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__pycache__/factory%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__pycache__/factory%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__pycache__/server%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/runner/__pycache__/server%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/runner/factory.py +%%PYTHON_SITELIBDIR%%/xpra/server/runner/server.py +%%PYTHON_SITELIBDIR%%/xpra/server/runner_script.py %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__init__.py %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/gtk_root_window_model%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/gtk_root_window_model%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/gtk_shadow_server_base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/gtk_shadow_server_base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/root_window_model%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/root_window_model%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/shadow_server_base%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/shadow/__pycache__/shadow_server_base%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/shadow/gtk_root_window_model.py %%PYTHON_SITELIBDIR%%/xpra/server/shadow/gtk_shadow_server_base.py %%PYTHON_SITELIBDIR%%/xpra/server/shadow/root_window_model.py %%PYTHON_SITELIBDIR%%/xpra/server/shadow/shadow_server_base.py @@ -1396,67 +1529,207 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/audio%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/avsync%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/avsync%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/bandwidth%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/bandwidth%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/client_connection%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/client_connection%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/client_connection_factory%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/client_connection_factory%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/clientinfo%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/clientinfo%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/clipboard%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/cursors%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/cursors%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/cursor%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/cursor%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/dbus%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/dbus%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/display%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/display%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/encodings%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/encodings%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/fileprint%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/fileprint%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/encoding%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/encoding%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/factory%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/factory%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/file%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/file%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/idle_mixin%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/idle_mixin%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/input%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/input%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/keyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/keyboard%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/mmap%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/mmap%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/networkstate%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/networkstate%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/notification%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/ping%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/ping%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/pointer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/printer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/printer%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/shell%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/shell%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/source_stats%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/source_stats%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/stub_source_mixin%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/stub_source_mixin%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/stub%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/stub%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/webcam%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/windows%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/windows%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/window%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/source/__pycache__/window%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/source/audio.py %%PYTHON_SITELIBDIR%%/xpra/server/source/avsync.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/bandwidth.py %%PYTHON_SITELIBDIR%%/xpra/server/source/client_connection.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/client_connection_factory.py %%PYTHON_SITELIBDIR%%/xpra/server/source/clientinfo.py %%PYTHON_SITELIBDIR%%/xpra/server/source/clipboard.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/cursors.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/cursor.py %%PYTHON_SITELIBDIR%%/xpra/server/source/dbus.py %%PYTHON_SITELIBDIR%%/xpra/server/source/display.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/encodings.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/fileprint.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/encoding.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/factory.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/file.py %%PYTHON_SITELIBDIR%%/xpra/server/source/idle_mixin.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/input.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/keyboard.py %%PYTHON_SITELIBDIR%%/xpra/server/source/mmap.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/networkstate.py %%PYTHON_SITELIBDIR%%/xpra/server/source/notification.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/ping.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/pointer.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/printer.py %%PYTHON_SITELIBDIR%%/xpra/server/source/shell.py %%PYTHON_SITELIBDIR%%/xpra/server/source/source_stats.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/stub_source_mixin.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/stub.py %%PYTHON_SITELIBDIR%%/xpra/server/source/webcam.py -%%PYTHON_SITELIBDIR%%/xpra/server/source/windows.py +%%PYTHON_SITELIBDIR%%/xpra/server/source/window.py %%PYTHON_SITELIBDIR%%/xpra/server/ssh.py -%%PYTHON_SITELIBDIR%%/xpra/server/util.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/audio%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/audio%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/bandwidth%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/bandwidth%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/clipboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/command%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/command%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/control%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/control%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/controlcommands%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/controlcommands%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/cursor%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/cursor%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/daemon%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/daemon%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/dbus%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/dbus%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/debug%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/debug%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/display%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/display%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/drm%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/drm%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/encoding%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/encoding%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/encryption%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/encryption%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/file%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/file%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/gtk%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/gtk%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/http%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/http%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/id%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/id%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/idle%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/idle%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/info%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/keyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/keyboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/logging%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/logging%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/mdns%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/mdns%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/mmap%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/mmap%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/notification%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/notification%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/opengl%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/opengl%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/ping%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/ping%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/platform%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/platform%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/pointer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/power%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/power%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/printer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/printer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/pulseaudio%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/pulseaudio%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/sessionfiles%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/sessionfiles%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/shell%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/shell%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/splash%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/splash%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/ssh_agent%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/ssh_agent%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/stub%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/stub%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/suspend%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/suspend%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/tray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/tray%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/version%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/version%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/watcher%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/watcher%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/webcam%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/webcam%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/window%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/__pycache__/window%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/audio.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/bandwidth.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/clipboard.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/command.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/control.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/controlcommands.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/cursor.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/daemon.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/dbus.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/debug.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/display.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/drm.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/encoding.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/encryption.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/file.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/gtk.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/http.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/id.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/idle.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/info.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/keyboard.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/logging.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/mdns.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/mmap.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/notification.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/opengl.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/ping.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/platform.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/pointer.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/power.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/printer.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/pulseaudio.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/sessionfiles.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/shell.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/splash.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/ssh_agent.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/stub.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/suspend.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/tray.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/version.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/watcher.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/webcam.py +%%PYTHON_SITELIBDIR%%/xpra/server/subsystem/window.py %%PYTHON_SITELIBDIR%%/xpra/server/window/__init__.py %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1472,6 +1745,8 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/filters%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/metadata%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/metadata%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/model%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/model%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/perfstats%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/perfstats%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/server/window/__pycache__/video_compress%%PYTHON_TAG%%.opt-1.pyc @@ -1488,6 +1763,7 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/window/content_guesser.py %%PYTHON_SITELIBDIR%%/xpra/server/window/filters.py %%PYTHON_SITELIBDIR%%/xpra/server/window/metadata.py +%%PYTHON_SITELIBDIR%%/xpra/server/window/model.py %%PYTHON_SITELIBDIR%%/xpra/server/window/motion%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/server/window/perfstats.py %%PYTHON_SITELIBDIR%%/xpra/server/window/video_compress.py @@ -1495,27 +1771,40 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/server/window/video_subregion.py %%PYTHON_SITELIBDIR%%/xpra/server/window/windowicon.py %%PYTHON_SITELIBDIR%%/xpra/src_info.py +%%PYTHON_SITELIBDIR%%/xpra/tray_base.py %%PYTHON_SITELIBDIR%%/xpra/util/__init__.py %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/background_worker%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/background_worker%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/child_reaper%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/child_reaper%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/colorstreamhandler%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/colorstreamhandler%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/config%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/config%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/daemon%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/daemon%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/env%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/env%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/glib%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/glib%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/gobject%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/gobject%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/io%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/io%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/objects%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/objects%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/parsing%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/parsing%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/pid%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/pid%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/pysystem%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/pysystem%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/screen%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/screen%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/signal_emitter%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/signal_emitter%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/stats%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/stats%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/str_fn%%PYTHON_TAG%%.opt-1.pyc @@ -1526,16 +1815,22 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/thread%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/version%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/util/__pycache__/version%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/util/background_worker.py %%PYTHON_SITELIBDIR%%/xpra/util/child_reaper.py %%PYTHON_SITELIBDIR%%/xpra/util/colorstreamhandler.py %%PYTHON_SITELIBDIR%%/xpra/util/config.py +%%PYTHON_SITELIBDIR%%/xpra/util/daemon.py %%PYTHON_SITELIBDIR%%/xpra/util/env.py +%%PYTHON_SITELIBDIR%%/xpra/util/glib.py +%%PYTHON_SITELIBDIR%%/xpra/util/gobject.py %%PYTHON_SITELIBDIR%%/xpra/util/io.py %%PYTHON_SITELIBDIR%%/xpra/util/objects.py %%PYTHON_SITELIBDIR%%/xpra/util/parsing.py +%%PYTHON_SITELIBDIR%%/xpra/util/pid.py %%PYTHON_SITELIBDIR%%/xpra/util/pysystem.py %%PYTHON_SITELIBDIR%%/xpra/util/rectangle%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/util/screen.py +%%PYTHON_SITELIBDIR%%/xpra/util/signal_emitter.py %%PYTHON_SITELIBDIR%%/xpra/util/stats.py %%PYTHON_SITELIBDIR%%/xpra/util/str_fn.py %%PYTHON_SITELIBDIR%%/xpra/util/system.py @@ -1544,8 +1839,17 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/wayland/__init__.py %%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/example%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/example%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/keyboard_config%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/keyboard_config%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/server%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/server%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/wait%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/wayland/__pycache__/wait%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/wayland/example.py +%%PYTHON_SITELIBDIR%%/xpra/wayland/keyboard_config.py +%%PYTHON_SITELIBDIR%%/xpra/wayland/server.py %%PYTHON_SITELIBDIR%%/xpra/wayland/wait.py %%PYTHON_SITELIBDIR%%/xpra/wayland/wait_for_display%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/__init__.py @@ -1553,10 +1857,22 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/__init__%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/composite%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/composite%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/damage%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/damage%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/dispatch%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/dispatch%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/error%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/error%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/info%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/prop%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/prop%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/prop_conv%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/prop_conv%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/uinput_device%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/uinput_device%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/tray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/tray%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/vfb_util%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/vfb_util%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/wait%%PYTHON_TAG%%.opt-1.pyc @@ -1565,17 +1881,19 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/window_filters%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/window_info%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/window_info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/wm%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/wm%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/wm_check%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/wm_check%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xkbhelper%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xkbhelper%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xroot_props%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xroot_props%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xsettings%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xsettings%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xsettings_prop%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/__pycache__/xsettings_prop%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__init__.py %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/info%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/info%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/randr_info%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/randr_info%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/record_tool%%PYTHON_TAG%%.opt-1.pyc @@ -1584,25 +1902,38 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/send_wm%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/xwayland_info%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/__pycache__/xwayland_info%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/classhint%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/composite%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/core%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/cursor%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/damage%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/display_source%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/events%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/fixes%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/info.py %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/keyboard%%PYTHON_TAG%%.so -%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/posix_display_source%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/loop%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/randr%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/randr_info.py %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/record%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/record_tool.py %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/res%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/saveset%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/send_wm.py +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/shape%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/shm%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/test%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/wait_for_x_server%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/window%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/xi2%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/ximage%%PYTHON_TAG%%.so +%%PYTHON_SITELIBDIR%%/xpra/x11/bindings/xkb%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/xwait%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/xwayland%%PYTHON_TAG%%.so %%PYTHON_SITELIBDIR%%/xpra/x11/bindings/xwayland_info.py %%PYTHON_SITELIBDIR%%/xpra/x11/common.py +%%PYTHON_SITELIBDIR%%/xpra/x11/composite.py +%%PYTHON_SITELIBDIR%%/xpra/x11/damage.py %%PYTHON_SITELIBDIR%%/xpra/x11/dbus/__init__.py %%PYTHON_SITELIBDIR%%/xpra/x11/dbus/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/dbus/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1630,47 +1961,17 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/x11/desktop/model_base.py %%PYTHON_SITELIBDIR%%/xpra/x11/desktop/monitor_model.py %%PYTHON_SITELIBDIR%%/xpra/x11/desktop/monitor_server.py +%%PYTHON_SITELIBDIR%%/xpra/x11/dispatch.py +%%PYTHON_SITELIBDIR%%/xpra/x11/error.py %%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__init__.py %%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/clipboard%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/common%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/composite%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/composite%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/damage%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/damage%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/keys%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/keys%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/native_window%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/native_window%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/prop%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/prop%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/selection%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/selection%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/tray%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/tray%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/wm%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/wm%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/wm_check%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/wm_check%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/world_window%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/world_window%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/error%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/__pycache__/error%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/gtk/bindings%%PYTHON_TAG%%.so -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/clipboard.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/common.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/composite.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/damage.py %%PYTHON_SITELIBDIR%%/xpra/x11/gtk/display_source%%PYTHON_TAG%%.so -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/keys.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/native_window.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/prop.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/selection.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/tray.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/wm.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/wm_check.py -%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/world_window.py +%%PYTHON_SITELIBDIR%%/xpra/x11/gtk/error.py +%%PYTHON_SITELIBDIR%%/xpra/x11/info.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/__init__.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/__init__%%PYTHON_TAG%%.pyc @@ -1678,8 +1979,6 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/base%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/core%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/core%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/model_stub%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/model_stub%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/or_window%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/or_window%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/size_hints_util%%PYTHON_TAG%%.opt-1.pyc @@ -1690,47 +1989,117 @@ etc/dbus-1/system.d/xpra.conf %%PYTHON_SITELIBDIR%%/xpra/x11/models/__pycache__/window%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/models/base.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/core.py -%%PYTHON_SITELIBDIR%%/xpra/x11/models/model_stub.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/or_window.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/size_hints_util.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/systray.py %%PYTHON_SITELIBDIR%%/xpra/x11/models/window.py +%%PYTHON_SITELIBDIR%%/xpra/x11/prop.py %%PYTHON_SITELIBDIR%%/xpra/x11/prop_conv.py +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/clipboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/clipboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/common%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/common%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/manager%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/manager%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/proxy%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/__pycache__/proxy%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/clipboard.py +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/common.py +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/manager.py +%%PYTHON_SITELIBDIR%%/xpra/x11/selection/proxy.py %%PYTHON_SITELIBDIR%%/xpra/x11/server/__init__.py %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/__init__%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/base%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/base%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/core%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/core%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/expand%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/expand%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/keyboard_config%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/keyboard_config%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/root_overlay%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/root_overlay%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/seamless%%PYTHON_TAG%%.opt-1.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/seamless%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/server_uuid%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/server_uuid%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/shadow%%PYTHON_TAG%%.opt-1.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/shadow%%PYTHON_TAG%%.pyc -%%PYTHON_SITELIBDIR%%/xpra/x11/server/base.py -%%PYTHON_SITELIBDIR%%/xpra/x11/server/core.py +%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/xtest_keyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/xtest_keyboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/xtest_pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/server/__pycache__/xtest_pointer%%PYTHON_TAG%%.pyc %%PYTHON_SITELIBDIR%%/xpra/x11/server/expand.py %%PYTHON_SITELIBDIR%%/xpra/x11/server/keyboard_config.py +%%PYTHON_SITELIBDIR%%/xpra/x11/server/root_overlay.py %%PYTHON_SITELIBDIR%%/xpra/x11/server/seamless.py -%%PYTHON_SITELIBDIR%%/xpra/x11/server/server_uuid.py -%%PYTHON_SITELIBDIR%%/xpra/x11/server/shadow.py -%%PYTHON_SITELIBDIR%%/xpra/x11/uinput_device.py +%%PYTHON_SITELIBDIR%%/xpra/x11/server/xtest_keyboard.py +%%PYTHON_SITELIBDIR%%/xpra/x11/server/xtest_pointer.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/backends%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/backends%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/filter%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/filter%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/model%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/model%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/screenshot%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/screenshot%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/server%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/server%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/ximage_capture%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/__pycache__/ximage_capture%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/backends.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/filter.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/model.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/screenshot.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/server.py +%%PYTHON_SITELIBDIR%%/xpra/x11/shadow/ximage_capture.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__init__.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/__init__%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/__init__%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/bell%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/bell%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/cursor%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/cursor%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/display%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/display%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/icc%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/icc%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/keyboard%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/keyboard%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/pointer%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/pointer%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/systray%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/systray%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/x11init%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/x11init%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/xsettings%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/xsettings%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/xsettings_manager%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/xsettings_manager%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/xsettings_prop%%PYTHON_TAG%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/__pycache__/xsettings_prop%%PYTHON_TAG%%.pyc +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/bell.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/cursor.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/display.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/icc.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/keyboard.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/pointer.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/systray.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/x11init.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/xsettings.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/xsettings_manager.py +%%PYTHON_SITELIBDIR%%/xpra/x11/subsystem/xsettings_prop.py +%%PYTHON_SITELIBDIR%%/xpra/x11/tray.py %%PYTHON_SITELIBDIR%%/xpra/x11/vfb_util.py %%PYTHON_SITELIBDIR%%/xpra/x11/wait.py %%PYTHON_SITELIBDIR%%/xpra/x11/window_filters.py %%PYTHON_SITELIBDIR%%/xpra/x11/window_info.py +%%PYTHON_SITELIBDIR%%/xpra/x11/wm.py +%%PYTHON_SITELIBDIR%%/xpra/x11/wm_check.py %%PYTHON_SITELIBDIR%%/xpra/x11/xkbhelper.py %%PYTHON_SITELIBDIR%%/xpra/x11/xroot_props.py -%%PYTHON_SITELIBDIR%%/xpra/x11/xsettings.py -%%PYTHON_SITELIBDIR%%/xpra/x11/xsettings_prop.py %%CUPS%%libexec/cups/backend/xpraforwarder libexec/xpra/auth_dialog +libexec/xpra/daemonizer libexec/xpra/gnome-open libexec/xpra/gvfs-open libexec/xpra/xdg-open @@ -1749,6 +2118,7 @@ share/dbus-1/system.d/xpra.conf %%PORTDOCS%%%%DOCSDIR%%/Build/Other.html %%PORTDOCS%%%%DOCSDIR%%/Build/Packaging.html %%PORTDOCS%%%%DOCSDIR%%/Build/RPM.html +%%PORTDOCS%%%%DOCSDIR%%/Build/Source.html %%PORTDOCS%%%%DOCSDIR%%/Build/graphs/all.png %%PORTDOCS%%%%DOCSDIR%%/Build/graphs/codecs.png %%PORTDOCS%%%%DOCSDIR%%/Build/graphs/gtk3.png @@ -1756,6 +2126,8 @@ share/dbus-1/system.d/xpra.conf %%PORTDOCS%%%%DOCSDIR%%/Build/graphs/python3.png %%PORTDOCS%%%%DOCSDIR%%/Build/graphs/tools.png %%PORTDOCS%%%%DOCSDIR%%/Build/index.html +%%PORTDOCS%%%%DOCSDIR%%/Build/sonarqube-overview.png +%%PORTDOCS%%%%DOCSDIR%%/Build/subpackages.png %%PORTDOCS%%%%DOCSDIR%%/CHANGELOG.html %%PORTDOCS%%%%DOCSDIR%%/FAQ.html %%PORTDOCS%%%%DOCSDIR%%/Features/Audio.html @@ -1782,11 +2154,25 @@ share/dbus-1/system.d/xpra.conf %%PORTDOCS%%%%DOCSDIR%%/SECURITY.html %%PORTDOCS%%%%DOCSDIR%%/SPONSORS.html %%PORTDOCS%%%%DOCSDIR%%/Subsystems/Audio.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Bandwidth.html %%PORTDOCS%%%%DOCSDIR%%/Subsystems/Clipboard.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Command.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Cursor.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Display.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Encoding.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Info.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Keyboard.html %%PORTDOCS%%%%DOCSDIR%%/Subsystems/Logging.html %%PORTDOCS%%%%DOCSDIR%%/Subsystems/MMAP.html -%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Notifications.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Notification.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Ping.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Pointer.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Power.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/SSH_Agent.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Socket.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Tray.html %%PORTDOCS%%%%DOCSDIR%%/Subsystems/Webcam.html +%%PORTDOCS%%%%DOCSDIR%%/Subsystems/Window.html %%PORTDOCS%%%%DOCSDIR%%/Subsystems/index.html %%PORTDOCS%%%%DOCSDIR%%/Usage/Apache-Proxy.html %%PORTDOCS%%%%DOCSDIR%%/Usage/Authentication.html @@ -1866,6 +2252,7 @@ share/pixmaps/xpra.png %%DATADIR%%/bell.wav %%DATADIR%%/css/10_header_bar.css %%DATADIR%%/css/20_progress_bar.css +%%DATADIR%%/icons/alert.png %%DATADIR%%/icons/audio.png %%DATADIR%%/icons/authentication-small.png %%DATADIR%%/icons/authentication.png @@ -1909,6 +2296,7 @@ share/pixmaps/xpra.png %%DATADIR%%/icons/mdns.png %%DATADIR%%/icons/microphone.png %%DATADIR%%/icons/minimize.png +%%DATADIR%%/icons/monitor.png %%DATADIR%%/icons/noicon.png %%DATADIR%%/icons/open.png %%DATADIR%%/icons/openbox.png |
