1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
Commit Graph

622648 Commits

Author SHA1 Message Date
Jack
5f20ea875c audio/audacity: upgrade to 3.3.3
Changes:	https://support.audacityteam.org/additional-resources/changelog/audacity-3.3
PR:		271942
2023-06-11 19:00:59 +01:00
Goran Mekić
c837a0cc58 databases/py-peewee_migrate: Update to 1.10.1
PR: 271934
Changelog: https://github.com/klen/peewee_migrate/compare/1.10.0...1.10.1
2023-06-11 19:00:58 +01:00
Gabriel M. Dutra
857a5abe6a net-mgmt/pushgateway: Update to 1.6.0
Update maintainer e-mal address

ChangeLog:`	https://github.com/prometheus/pushgateway/blob/master/CHANGELOG.md#160--2023-05-25
PR:		271943
2023-06-11 19:00:58 +01:00
Jan Beich
77fa3b757d sysutils/czkawka: update to 6.0.0
Changes:	https://github.com/qarmin/czkawka/releases/tag/6.0.0
Reported by:	GitHub (watch releases)
2023-06-11 17:43:49 +00:00
Yuri Victorovich
8ed6070ee6 www/cobalt: Update 0.18.3 → 0.19.0
Reported by:	portscout
2023-06-11 09:18:20 -07:00
Dimitry Andric
7393af6f4f graphics/qt5-imageformats: fix build with clang 16
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because graphics/qt5-imageformats 's build infrastructure does not
explicitly set its C++ standard, this leads to an issue detecting libmng
in the configure stage:

  Configure summary:

  Further Image Formats:
    JasPer ................................. yes
    MNG .................................... no
    TIFF ................................... yes
      Using system libtiff ................. yes
    WEBP ................................... yes
      Using system libwebp ................. yes

This is because the small configure test program for libmng includes
libmng.h, which transitively includes lcms.h, and the latter fails due
to 'register' keywords in the header. With lcms2.h there is a special
define CMS_NO_REGISTER_KEYWORD to avoid usage of the register keyword,
but lcms.h is very old and does not support that.

As a workaround, define the register keyword away via a "head" object in
src/imageformats/configure.json, and via CXXFLAGS for the rest of the
build.

PR:		271914
Approved by:	tcberner (maintainer)
MFH:		2023Q2
2023-06-11 18:15:58 +02:00
Matthias Andree
de944977f7 security/easy-rsa: update to v3.1.5
Changelog: https://github.com/OpenVPN/easy-rsa/releases/tag/v3.1.5
2023-06-11 16:27:43 +02:00
Rodrigo Osorio
24d4fb0164 ports-mgmt/pkg-provides: Fix package message
Fix package message who has two different messages displayed
for the same upgrade.
Remove the oldest one done for versions under 0.6.0 released
in 2019.

PR:		271688
Reported by:	grahamperrin
2023-06-11 15:23:37 +02:00
Marc Fonvieille
8fb45c1aa9 misc/freebsd-doc-*: Update to rev. d190a55 from the FreeBSD docset.
Approved by:	doceng (implicit)
2023-06-11 15:33:34 +02:00
Jan Beich
41c988ba8e x11/eww: unbreak build after 6b9789547d
error[E0557]: feature has been removed
 --> crates/simplexpr/src/lib.rs:3:12
  |
3 | #![feature(box_syntax)]
  |            ^^^^^^^^^^ feature has been removed
  |
  = note: replaced with `#[rustc_box]`

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:72:58
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, box a.try_map_var_refs(f)?, op, box b.try_map_var_refs(f)?),
   |                                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, Box::new(a.try_map_var_refs(f)?), op, box b.try_map_var_refs(f)?),
   |                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:72:90
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, box a.try_map_var_refs(f)?, op, box b.try_map_var_refs(f)?),
   |                                                                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
72 |             BinOp(span, box a, op, box b) => BinOp(span, box a.try_map_var_refs(f)?, op, Box::new(b.try_map_var_refs(f)?)),
   |                                                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:74:59
   |
74 |             UnaryOp(span, op, box a) => UnaryOp(span, op, box a.try_map_var_refs(f)?),
   |                                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
74 |             UnaryOp(span, op, box a) => UnaryOp(span, op, Box::new(a.try_map_var_refs(f)?)),
   |                                                           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:76:30
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                              ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
76 |                 IfElse(span, Box::new(a.try_map_var_refs(f)?), box b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:76:58
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                                                          ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, Box::new(b.try_map_var_refs(f)?), box c.try_map_var_refs(f)?)
   |                                                          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:76:86
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?, box c.try_map_var_refs(f)?)
   |                                                                                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
76 |                 IfElse(span, box a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?, Box::new(c.try_map_var_refs(f)?))
   |                                                                                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:78:64
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, box a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?),
   |                                                                ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, Box::new(a.try_map_var_refs(f)?), box b.try_map_var_refs(f)?),
   |                                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: `box_syntax` has been removed
  --> crates/simplexpr/src/eval.rs:78:92
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, box a.try_map_var_refs(f)?, box b.try_map_var_refs(f)?),
   |                                                                                            ^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `Box::new()` instead
   |
78 |             JsonAccess(span, box a, box b) => JsonAccess(span, box a.try_map_var_refs(f)?, Box::new(b.try_map_var_refs(f)?)),
   |                                                                                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Reported by:	pkg-fallout
2023-06-11 13:22:58 +00:00
Koichiro Iwao
b87754e818 textproc/{zed,zq}: Update to 1.8.1
Changes:	https://github.com/brimdata/zed/releases/tag/v1.8.1
2023-06-11 22:08:52 +09:00
Michael Gmelin
a74e4cf1e2 sysutils/pftop: Fix output on 14.0-CURRENT
Reported by:	herbert@gojira.at
2023-06-11 14:42:31 +02:00
Bernard Spil
e30350e582 www/mod_http2: Update to 2.0.18 2023-06-11 12:57:36 +02:00
Bernard Spil
aad4385ddf security/nextcloud-end_to_end_encryption: Update to 1.12.5 2023-06-11 12:23:29 +02:00
Bernard Spil
6173ae4ef9 security/nextcloud-twofactor_nextcloud_notification: Update to 3.7.0 2023-06-11 12:23:15 +02:00
Hiroki Tagato
9372917933 net/sniffnet: update to 1.2.1
Changelog: https://github.com/GyulyVGC/sniffnet/blob/v1.2.1/CHANGELOG.md

Reported by:	GitHub (watch releases)
2023-06-11 16:59:47 +09:00
Yuri Victorovich
531a547341 math/{,py-}spot: Update 2.11.4 → 2.11.5
Reported by:	portscout
2023-06-11 00:55:56 -07:00
Yuri Victorovich
35781cd14a math/py-slepc4py: Update 3.18.3 → 3.19.1
Reported by:	portscout
2023-06-11 00:55:56 -07:00
Yuri Victorovich
3d3e49f41a math/slepc: Update 3.19.0 → 3.19.1
Reported by:	portscout
2023-06-11 00:55:55 -07:00
Yuri Victorovich
0c0c493820 math/py-petsc4py: Update 3.19.0 → 3.19.1
Reported by:	portscout
2023-06-11 00:55:55 -07:00
Yuri Victorovich
8e29e9dc69 science/PETSc: Update 3.19.1 → 3.19.2
Reported by:	portscout
2023-06-11 00:55:54 -07:00
Yuri Victorovich
88d3d4a4e0 math/cbc: Update 2.10.8 → 2.10.10
Reported by:	portscout
2023-06-11 00:55:54 -07:00
Yuri Victorovich
7cc570e984 science/py-hoomd-blue: Update 3.11.0 → 4.0.0
Reported by:	portscout
2023-06-11 00:55:54 -07:00
Yuri Victorovich
3b544c2d0c math/ipopt: Update 3.14.11 → 3.14.12
Reported by:	portscout
2023-06-11 00:55:53 -07:00
Yuri Victorovich
8aea4d1c10 math/osi: Update 0.108.7 → 0.108.8
Reported by:	portscout
2023-06-11 00:55:53 -07:00
Yuri Victorovich
adc5841feb audio/noise-suppression-for-voice-lv2: Fix build on non-amd64 systems
Reported by:	fallout
2023-06-11 00:55:53 -07:00
Yuri Victorovich
d6a439712b security/libxcrypt: Update 4.4.34 → 4.4.35
Reported by:	portscout
2023-06-11 00:55:52 -07:00
TAKATSU Tomonari
f49af1ea15 devel/R-cran-broom: Update to 1.0.5
Reported by:	portscout
2023-06-11 05:35:09 +00:00
TAKATSU Tomonari
42a5d68625 www/R-cran-bslib: Update to 0.5.0
Reported by:	portscout
2023-06-11 05:35:09 +00:00
Yuri Victorovich
3d412f2fb6 science/py-qiskit-dynamics: Update 0.4.0 → 0.4.1
Reported by:	portscout
2023-06-10 22:19:33 -07:00
Yuri Victorovich
7f0cbda74d www/cpp-httplib: Update 0.12.5 → 0.12.6
Reported by:	portscout
2023-06-10 21:04:07 -07:00
Yuri Victorovich
a91f6fab70 graphics/bgfx: Update 1.118.8455-425 → 1.118.8467-427
Reported by:	portscout
2023-06-10 20:56:54 -07:00
Yuri Victorovich
856eba4e2e multimedia/webcamoid: Update 9.0.0-204 → 9.1.0
Reported by:	portscout
2023-06-10 20:20:36 -07:00
Yuri Victorovich
a9a63eab9f net/fb303: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:35 -07:00
Yuri Victorovich
c03270a1a0 devel/fatal: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:35 -07:00
Yuri Victorovich
a321d36cff www/proxygen: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:34 -07:00
Yuri Victorovich
d88e317b74 devel/fbthrift: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:34 -07:00
Yuri Victorovich
6f9876c3fa net/wangle: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:34 -07:00
Yuri Victorovich
49a1c5c988 security/fizz: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:33 -07:00
Yuri Victorovich
b0bae80bce devel/folly: Update 2023.05.08.00 → 2023.06.08.00 2023-06-10 20:20:33 -07:00
Sergey A. Osokin
4cec5e5f0e devel/mercurial: update 6.4.3 -> 6.4.4 2023-06-10 20:52:27 -04:00
Wen Heping
7c31d2964a www/moodle311: Update to 3.11.15 2023-06-11 07:47:48 +08:00
Wen Heping
a1180c9de0 www/moodle40: Update to 4.0.9 2023-06-11 07:47:47 +08:00
Wen Heping
0256ac0b1e www/moodle41: Update to 4.1.4 2023-06-11 07:47:47 +08:00
Wen Heping
1d1572a0da www/moodle42: Update to 4.2.1 2023-06-11 07:47:47 +08:00
Jan Beich
c457b002db x11/squeekboard: drop unused dependency after c77d062b30
https://gitlab.gnome.org/World/Phosh/squeekboard/-/commit/f473a47eb8f3
2023-06-10 23:31:31 +00:00
Jan Beich
6a7fc4e02f emulators/yuzu: update to s20230610
Changes:	55b543f46...6b898c6d6
2023-06-10 23:13:47 +00:00
Jan Beich
bd94c21de5 multimedia/gstreamer1-plugins-rust: update to 0.10.8
Changes:	https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/compare/0.10.7...0.10.8
2023-06-10 23:13:46 +00:00
Jan Beich
3bed3511a6 deskutils/solanum: update to 4.0.0
Changes:	https://gitlab.gnome.org/World/Solanum/-/compare/v3.0.1...4.0.0
Reported by:	GitLab (notify releases)
2023-06-10 23:13:46 +00:00
Jan Beich
cf3782eb5d x11/squeekboard: update to 1.22.0
Changes:	https://gitlab.gnome.org/World/Phosh/squeekboard/-/releases/v1.22.0
Reported by:	GitLab (notify releases)
2023-06-10 23:13:45 +00:00