summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* devel/electron27: fix build with clang 18release/13.3.0Dimitry Andric2024-02-233-0/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clang 18 has become more stringent about narrowing in initializer lists, resulting in errors when building devel/electron27: ../../third_party/webrtc/pc/legacy_stats_collector.cc:191:54: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference] 191 | {StatsReport::kStatsValueNameTotalAudioEnergy, info.total_output_energy}, | ^~~~~~~~~~~~~~~~~~~~~~~~ ../../third_party/webrtc/pc/legacy_stats_collector.cc:193:8: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference] 193 | info.total_output_duration}}; | ^~~~~~~~~~~~~~~~~~~~~~~~~~ and later: In file included from ../../cc/layers/mirror_layer_impl.cc:5: ../../cc/layers/mirror_layer_impl.h:59:40: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned long' in initializer list [-Wc++11-narrowing-const-reference] 59 | return viz::CompositorRenderPassId{mirrored_layer_id()}; | ^~~~~~~~~~~~~~~~~~~ The first batch of errors can be fixed similarly to bug 276997, by cherry-picking <https://webrtc.googlesource.com/src/+/267f9bdd53> into the thirdparty directory. The second batch of errors can be fixed by cherry-picking <https://chromium.googlesource.com/chromium/src/+/5e9fb4130a537>. PR: 277129 MFH: 2024Q1 (cherry picked from commit d5ded9f64f41384f59958ae78dc79468b8365f39)
* devel/electron26: fix build with clang 18Dimitry Andric2024-02-233-0/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clang 18 has become more stringent about narrowing in initializer lists, resulting in errors when building devel/electron26: ../../third_party/webrtc/pc/legacy_stats_collector.cc:191:54: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference] 191 | {StatsReport::kStatsValueNameTotalAudioEnergy, info.total_output_energy}, | ^~~~~~~~~~~~~~~~~~~~~~~~ ../../third_party/webrtc/pc/legacy_stats_collector.cc:193:8: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference] 193 | info.total_output_duration}}; | ^~~~~~~~~~~~~~~~~~~~~~~~~~ and later: In file included from ../../cc/layers/mirror_layer_impl.cc:5: ../../cc/layers/mirror_layer_impl.h:59:40: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned long' in initializer list [-Wc++11-narrowing-const-reference] 59 | return viz::CompositorRenderPassId{mirrored_layer_id()}; | ^~~~~~~~~~~~~~~~~~~ The first batch of errors can be fixed similarly to bug 276997, by cherry-picking <https://webrtc.googlesource.com/src/+/267f9bdd53> into the thirdparty directory. The second batch of errors can be fixed by cherry-picking <https://chromium.googlesource.com/chromium/src/+/5e9fb4130a537>. PR: 277129 MFH: 2024Q1 (cherry picked from commit 664c5df7607834a4345b4bc99490db6681ac06c2)
* devel/electron25: fix build with clang 18Dimitry Andric2024-02-224-1/+149
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Clang 18 has become more stringent about narrowing in initializer lists, resulting in errors when building devel/electron25: ../../third_party/webrtc/pc/legacy_stats_collector.cc:191:54: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference] 191 | {StatsReport::kStatsValueNameTotalAudioEnergy, info.total_output_energy}, | ^~~~~~~~~~~~~~~~~~~~~~~~ ../../third_party/webrtc/pc/legacy_stats_collector.cc:193:8: error: non-constant-expression cannot be narrowed from type 'double' to 'float' in initializer list [-Wc++11-narrowing-const-reference] 193 | info.total_output_duration}}; | ^~~~~~~~~~~~~~~~~~~~~~~~~~ and later: In file included from ../../cc/layers/mirror_layer_impl.cc:5: ../../cc/layers/mirror_layer_impl.h:59:40: error: non-constant-expression cannot be narrowed from type 'int' to 'unsigned long' in initializer list [-Wc++11-narrowing-const-reference] 59 | return viz::CompositorRenderPassId{mirrored_layer_id()}; | ^~~~~~~~~~~~~~~~~~~ The first batch of errors can be fixed similarly to bug 276997, by cherry-picking <https://webrtc.googlesource.com/src/+/267f9bdd53> into the thirdparty directory. The second batch of errors can be fixed by cherry-picking <https://chromium.googlesource.com/chromium/src/+/5e9fb4130a537>. PR: 277129 Approved by: tagattie (maintainer) MFH: 2024Q1 (cherry picked from commit 76cb9bc437fd1e15ff71068d6eeea8c212d844d4)
* devel/ruby-build: Update to 20240221Koichiro Iwao2024-02-222-4/+4
| | | | | Changes: https://github.com/rbenv/ruby-build/releases/tag/v20240221 (cherry picked from commit 916a2bf28c84c6f52d423268d1141d067c09ae32)
* games/veloren-weekly: update to s20240221Jan Beich2024-02-223-8/+8
| | | | | Changes: https://gitlab.com/veloren/veloren/-/compare/99c997fab...7a77fa6bf (cherry picked from commit 3b4c9069789e9e88ada6d1c1dc4230d56eab24fa)
* emulators/yuzu: update to s20240221Jan Beich2024-02-222-5/+5
| | | | | Changes: https://github.com/yuzu-emu/yuzu/compare/d1eaeeed8c...8bbc209950 (cherry picked from commit 2ee6dda38e2c24f38c00b5ec1837e44947d69fab)
* emulators/rpcs3: update to 0.0.30.16124Jan Beich2024-02-222-5/+5
| | | | | Changes: https://github.com/RPCS3/rpcs3/compare/7abc5f3ead...6b43e5c80e (cherry picked from commit 183d7378ac78d7f03ff841ec68a17688b4255627)
* x11/xdg-desktop-portal-hyprland: unbreak build on i386 after c2647d8cb1fcJan Beich2024-02-212-0/+5
| | | | (cherry picked from commit e74d301dda6cd795bdd31872ca4521ba29488772)
* x11/hyprpaper: unbreak build on i386 after c2647d8cb1fcJan Beich2024-02-212-0/+5
| | | | (cherry picked from commit 39c436cb177732e5f3af611824f9bee594cb4d15)
* devel/hyprlang: update to 0.4.0Jan Beich2024-02-214-7/+7
| | | | | | | Changes: https://github.com/hyprwm/hyprlang/releases/tag/v0.4.0 Reported by: GitHub (watch releases) (cherry picked from commit 5ef61de221a30deef28bb00a4af987119d9afc26)
* devel/hyprlang: update to 0.3.2Jan Beich2024-02-212-4/+4
| | | | | | | Changes: https://github.com/hyprwm/hyprlang/releases/tag/v0.3.2 Reported by: GitHub (watch releases) (cherry picked from commit 3e8e22e9a097a51ea687378b1c30a0757c42f6b8)
* devel/hyprlang: update to 0.3.1Jan Beich2024-02-212-10/+31
| | | | | | | Changes: https://github.com/hyprwm/hyprlang/releases/tag/v0.3.1 Reported by: GitHub (watch releases) (cherry picked from commit e4e07338f4f9bce1be4d852d83d6295c7b3f6ef7)
* devel/hyprlang: update to 0.3.0Jan Beich2024-02-215-43/+9
| | | | | | | Changes: https://github.com/hyprwm/hyprlang/releases/tag/v0.3.0 Reported by: GitHub (watch releases) (cherry picked from commit 0fe941b4c27b527d9249e42c4a84cdda7997811a)
* mail/snappymail: Update to 2.35.0Yasuhiro Kimura2024-02-213-4/+10
| | | | | | ChangeLog: https://github.com/the-djmaze/snappymail/releases/tag/v2.35.0 MFH: 2024Q1 (cherry picked from commit 59a7615a8646a3ef3834d3d3e69d7ce6de12bec5)
* dns/powerdns-recursor: Fix buildFernando Apesteguía2024-02-205-22/+51
| | | | | | PR: 277048 Reported by: linus.sundqvist@loopia.se Fixes: 569307de85501076ff89553a4dc14d58bfda108e
* sysutils/nut-devel: Trailing whitespace cleanupCy Schubert2024-02-201-1/+1
| | | | (cherry picked from commit f6c9a715549eda1928ca8cd99cabe36d6f091870)
* sysutils/nut*: Fix arm buildCy Schubert2024-02-202-8/+16
| | | | | | | | Fix arm build by removing FREEIPMI from arm PR: 277089 MFH: 2024Q1 (cherry picked from commit 24114c15d5e7e3c9d1428460ca05a7067afa09d6)
* dns/unbound: Update to 1.19.1Cy Schubert2024-02-203-5/+5
| | | | | | | | | | Release notes at https://www.nlnetlabs.nl/news/2024/Feb/13/unbound-1.19.1-released/ Security: CVE-2023-50387, CVE-2023-50868 Approved by: Jaap Akkerhuis <jaap@NLnetLabs.nl> (cherry picked from commit efa763f5ae59537388818334ecf1aa0954a67459)
* emulators/yuzu: update to s20240219Jan Beich2024-02-202-5/+5
| | | | | Changes: https://github.com/yuzu-emu/yuzu/compare/53f8383354...d1eaeeed8c (cherry picked from commit 0c2fdd3cc57dc0e5863aa016b81d4b2c3861b7e8)
* x11/nwg-menu: update to 0.1.3Jan Beich2024-02-203-7/+21
| | | | | | | Changes: https://github.com/nwg-piotr/nwg-menu/releases/tag/v0.1.3 Reported by: GitHub (watch releases) (cherry picked from commit d1a2325f62f323fdbd86066877de570dc404b670)
* science/agrum: update 1.10.0 → 1.12.1Yuri Victorovich2024-02-193-6/+6
| | | | (cherry picked from commit 7851061d9f095a06469a086207a5e53d4fbb5338)
* www/tomcat85: update to 8.5.99Vladimir Druzenko2024-02-192-4/+8
| | | | | | | | | | Changelog: https://tomcat.apache.org/tomcat-8.5-doc/changelog.html#Tomcat_8.5.99_(schultz) Approved by: arrowd (mentor, implicit) MFH: 2024Q1 (cherry picked from commit 081c57ba8ff209ed9721453e4032d733b1a26f40)
* www/tomcat101: update to 10.1.19Vladimir Druzenko2024-02-193-5/+5
| | | | | | | | | | Changelog: https://tomcat.apache.org/tomcat-10.1-doc/changelog.html#Tomcat_10.1.19_(schultz) Approved by: arrowd (mentor, implicit) MFH: 2024Q1 (cherry picked from commit 55a6939fe03f81d7900003ec12ae24a3d1b47b84)
* www/tomcat-devel: update to 11.0.0-M17Vladimir Druzenko2024-02-193-5/+5
| | | | | | | | | | Changelog: https://tomcat.apache.org/tomcat-11.0-doc/changelog.html#Tomcat_11.0.0-M17_(markt) Approved by: arrowd (mentor, implicit) MFH: 2024Q1 (cherry picked from commit 20b6d1fe2104e40f8af90c89514531ca563f5f22)
* www/tomcat9: update to 9.0.86Vladimir Druzenko2024-02-192-4/+4
| | | | | | | | | | Changelog: https://tomcat.apache.org/tomcat-9.0-doc/changelog.html#Tomcat_9.0.86_(remm) Approved by: arrowd (mentor, implicit) MFH: 2024Q1 (cherry picked from commit 928904f9c5f4e423bb1b46a5eebf69d9605cff56)
* */*: Replace format=bsdtar with format=ustar in tar archive operationsYuri Victorovich2024-02-188-9/+9
| | | | | | | | | | | | ... because the undocumented format bsdtar adds paxheaders on some systems, therefore breaking the fetch. The documentation for format=bsdtar should be added: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277139 Approved by: portmgr (blanket unbreak) (cherry picked from commit 2ad82a1068e1e06f47843bbbb7df1e281bd53d29)
* graphics/oidn: Replace format=bsdtar with format=ustarYuri Victorovich2024-02-181-1/+1
| | | | | | | | | | | | | ... because the undocumented format bsdtar adds paxheaders on some systems, therefore breaking the fetch. The documentation for format=bsdtar should be added: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277139 PR: 253814 Reported by: Mamoru IWAKI <1wkmmr@gmail.com> (cherry picked from commit c22e29d08774bc5ad5eee4406ae59898c5903619)
* PySide6: Update to 6.6.2Jason E. Hale2024-02-186-10/+17
| | | | | | | https://code.qt.io/cgit/pyside/pyside-setup.git/tree/doc/changelogs/changes-6.6.2?h=6.6.2 MFH: 2024Q1 (cherry picked from commit 72b072107e3d23013fc033599c9fd33a97ae6c34)
* www/phpmyfaq: Update to 3.2.5Florian Smeets2024-02-183-4/+8
| | | | | | MFH: 2024Q1 Security: cbfc1591-c8c0-11ee-b45a-589cfc0f81b0 (cherry picked from commit 20edfb5b87723da9a48476a1b2c42dab208d7b4f)
* www/phpmyfaq: Update to 3.2.4Florian Smeets2024-02-183-4/+12
| | | | (cherry picked from commit bc48f81941f436863305955b542164e110725a26)
* multimedia/kodi: Update to 20.4Fernando Apesteguía2024-02-183-6/+7
| | | | | | | | | ChangeLog: https://kodi.tv/article/kodi-20-4-nexus-release/ PR: 276993 Reported by: yzrh@noema.org (maintainer) (cherry picked from commit 5faa652f119a0e7bc22d5079fefe06b1463d9eae)
* dns/powerdns-recursor: update to 5.0.2 (fixes CVE-2023-50387 and CVE-2023-50868)Ralf van der Enden2024-02-182-4/+64
| | | | | | | | | | | | ChangeLog: https://blog.powerdns.com/2024/02/13/powerdns-recursor-4-8-6-4-9-3-5-0-2-released PR: 277048 Reported by: tremere@cainites.net (maintainer) MFH: 2024Q1 (security fixes) Security: CVE-2023-50387 CVE-2023-50868 (cherry picked from commit 9d2a670205d7cc61754955a072434a2980700d25)
* www/gitea: update to 1.21.5 (fixes security vulnerabilities)Paul Armstrong2024-02-182-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ChangeLog: https://github.com/go-gitea/gitea/releases/tag/v1.21.5 SECURITY * Prevent anonymous container access if RequireSignInView is enabled * Update go dependencies and fix go-git BUGFIXES * Revert "Speed up loading the dashboard on mysql/mariadb * Fix an actions schedule bug * Fix update enable_prune even if mirror_interval is not provided * Fix uploaded artifacts should be overwritten * Preserve BOM in web editor * Strip / from relative links * Don't remove all mirror repository's releases when mirroring * Implement MigrateRepository for the actions notifier * Respect branch info for relative links * Don't reload timeline page when (un)resolving or replying conversation * Only migrate the first 255 chars of a Github issue title * Fix sort bug on repository issues list * Fix DeleteCollaboration transaction behaviour * Fix schedule not trigger bug because matching full ref name with short ref name * Fix migrate storage bug * Fix archive creating LFS hooks and breaking pull requests * Fix reverting a merge commit failing * Upgrade xorm to v1.3.7 to fix a resource leak problem caused by Iterate * Fix incorrect PostgreSQL connection string for Unix sockets ENHANCEMENTS * Make loading animation less aggressive * Avoid duplicate JS error messages on UI * Bump @github/relative-time-element to 4.3.1 MISC * Warn that DISABLE_QUERY_AUTH_TOKEN is false only if it's explicitly defined * Remove duplicated checkinit on git module PR: 277066 Reported by: freebsd@otoh.org MFH: 2024Q1 (security fixes, bug fixes) (cherry picked from commit a68308673e12c6cc3dda0a622ed967e49c7a33f5)
* www/miniflux: Update to 2.1.0Kirill Ponomarev2024-02-182-54/+52
| | | | (cherry picked from commit d99e25f55aa726d90030666a18f637a2190f1215)
* emulators/yuzu: update to s20240217Jan Beich2024-02-182-5/+5
| | | | | Changes: https://github.com/yuzu-emu/yuzu/compare/a40adbc142...53f8383354 (cherry picked from commit 7901dfeda942db46fa6ad8c210955666a111674b)
* emulators/rpcs3: update to 0.0.30.16122Jan Beich2024-02-182-5/+5
| | | | | Changes: https://github.com/RPCS3/rpcs3/compare/e3d4c067df...7abc5f3ead (cherry picked from commit 540671114f307cebf870f2bda62bacc1561ceb3c)
* www/gallery-dl: update to 1.26.8Jan Beich2024-02-182-4/+4
| | | | | | | Changes: https://github.com/mikf/gallery-dl/releases/tag/v1.26.8 Reported by: GitHub (watch releases) (cherry picked from commit a0f07b3941fd4f00c1c6eac6c6ad6ce7a31c6fc6)
* multimedia/av1an: update to 0.4.2Jan Beich2024-02-183-471/+539
| | | | | | | Changes: https://github.com/master-of-zen/Av1an/releases/tag/0.4.2 Reported by: GitHub (watch releases) (cherry picked from commit b426de30a0cfe5b0c40fed560f65c1d72c4c896d)
* multimedia/dav1d: update to 1.4.0Jan Beich2024-02-182-6/+6
| | | | | | | Changes: https://code.videolan.org/videolan/dav1d/-/tags/1.4.0 Reported by: /r/AV1, Phoronix (cherry picked from commit 116a9f1ac2f703b297e6457d06831e7744bed11d)
* x11-wm/sway-devel: update to 1.9-rc4Jan Beich2024-02-182-4/+4
| | | | | | | Changes: https://github.com/swaywm/sway/releases/tag/1.9-rc4 Reported by: GitHub (watch releases) (cherry picked from commit 35fba08b53c0572926bc72eb98b2a442ec1e355f)
* devel/android-tools: Fix build, include functionalMikael Urankar2024-02-172-2/+13
| | | | | | | | | | While here, pet portlint. PR: 276983 Reported by: Ale <discipline@tiscali.it> MFH: 2024Q1 (cherry picked from commit 6dbc3df04ebbe95dcad623ce76554fb52e26be3d)
* misc/freebsd-doc-*: Update to rev. 24f2c7c from FreeBSD docsetMarc Fonvieille2024-02-174-6/+9
| | | | | | | Revision 24f2c7c is also 13.3-R version Approved by: doceng (implicit) (cherry picked from commit 9ccb5ae86bd4dfa329361a703484a5ea97edcb94)
* misc/freebsd-doc-*: Update to rev. d97a087 from the FreeBSD docsetDanilo G. Baio2024-02-173-5/+5
| | | | | | | | | | | This change mainly increases the timeout configuration for Hugo. We are receiving several reports of pkg-fallouts with the error message "... timed out after 1m0s." Approved by: doceng (implicit) (cherry picked from commit 99cfa5a67c1408c919a5434522f37328d66811d8)
* misc/freebsd-doc-*: Update to rev. ba67c25 from FreeBSD docsetMarc Fonvieille2024-02-173-6/+6
| | | | | | Approved by: doceng (implicit) (cherry picked from commit f5737a50a9ed83f4f3ac0a9d553062f739353170)
* mail/thunderbird: update to 115.8.0 (rc1)Christoph Moench-Tegeder2024-02-172-4/+4
| | | | | | | Release Notes: https://www.thunderbird.net/en-US/thunderbird/115.8.0/releasenotes/ (cherry picked from commit 54306e38f17be39b6316194792d9ca26b810413a)
* x11-wm/niri: update to 0.1.2Jan Beich2024-02-177-251/+251
| | | | | | | Changes: https://github.com/YaLTeR/niri/releases/tag/v0.1.2 Reported by: GitHub (watch releases) (cherry picked from commit e181328160a92a664884aea7df8b3f9e98753987)
* editors/openoffice-4: Upgrade to version 4.1.15Don Lewis2024-02-162-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | Upgrade to version 4.1.15, which has bug and security fixes. Release notes: https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.15+Release+Notes Since we use the ports version of expat instead of bundling it into the openoffice-* packagea, CVE-2022-43680: "Use after free" fixed in libexpat does not apply to our ports. This issue was fixed when we upgraded the expat port. Remove the point release from the suffix appended to the names of the wrapper script and the program directory. It is annoying when the suffix changes and we'll never support the simultaneous installation of multiple versions where these values differ. MFH: 2024Q1 tree branch name you plan to merge to.> Security: CVE-2012-5639 Security: CVE-2023-1183 Security: CVE-2023-47804 (cherry picked from commit e5a8e3c915f143a3b9d3728a14deabf151f94f03)
* editors/openoffice-4: fix crash in fontconfigArrigo Marchiori2024-02-161-0/+10
| | | | | | | | | | | | | | | | Ensure default substitutions on patterns This is requested by the documentation of function FcFontMatch(). Addresses bug #128583. [cherry-picked from upstream 96cc864ad79ef0ed2b9769f074673a55e4056b44] [converted to FreeBSD ports patch by Don Lewis <truckman@FreeBSD.org] [Skipping PORTREVSION bump, the next commit will be a version upgrade] PR: 248161 MFH: 2024Q1 (cherry picked from commit 53702f0d70ca6a495f7e8158656bd1aa125d898a)
* games/veloren-weekly: update to s20240215Jan Beich2024-02-172-4/+4
| | | | | Changes: https://gitlab.com/veloren/veloren/-/compare/5c4e68cce...99c997fab (cherry picked from commit 3242afc60564765d5b48c3edd84b2301675d8301)
* Qt6: Update to 6.6.2Jason E. Hale2024-02-1656-5484/+615
| | | | | | | | | | | | | As a patch release, Qt 6.6.2 does not introduce any new features but contains more than 400 bug fixes, security updates, and other improvements on top of Qt 6.6.1 release. See more information about the most important changes and bug fixes from the Qt 6.6.2 release note. Announcement: https://www.qt.io/blog/qt-6.6.2-released Release note: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.6.2/release-note.md MFH: 2024Q1 (cherry picked from commit d0f54524687fbacb4ab4c2854f4f3856c3512bde)