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

677708 Commits

Author SHA1 Message Date
Jan Beich
cab9a6db6e graphics/vulkan-caps-viewer: update to 3.42
Changes:	https://github.com/SaschaWillems/VulkanCapsViewer/releases/tag/3.42
Reported by:	GitHub (watch releases)
2024-09-15 15:38:20 +02:00
Jan Beich
2ef83d7e79 graphics/gimp-jxl-plugin: update to 0.11.0
Changes:	https://github.com/libjxl/libjxl/releases/tag/v0.11.0
Reported by:	portscout
2024-09-15 15:38:19 +02:00
Zsolt Udvari
ae82330564 devel/R-cran-brio: Update to 1.1.5
Changelog: https://brio.r-lib.org/news/index.html
2024-09-15 14:55:10 +02:00
Nuno Teixeira
b846151bab devel/R-cran-pkgsearch: Update to 3.1.3
- Take maintainership
- Switch WWW url to r-project.org
- Pet portfmt

ChangeLog: https://cran.r-project.org/web/packages/pkgsearch/news/news.html
2024-09-15 13:19:56 +01:00
Nuno Teixeira
a20fbcbf13 devel/R-cran-mockery: Update to 0.4.4
- Take maintainership
- Switch WWW url to r-project.org

ChangeLog: https://cran.r-project.org/web/packages/mockery/news/news.html
2024-09-15 13:19:56 +01:00
Pietro Cerutti
97c00d922e lang/tcl90: update to 9.0.0 rc0 2024-09-15 12:17:26 +00:00
Dimitry Andric
88af7aa2d0 math/z3: fix build with clang 19
Clang 19 has become more strict about errors in member functions, which
results in:

/wrkdirs/usr/ports/math/z3/work/z3-z3-4.13.0/src/math/lp/static_matrix.h:82:72: error: no member named 'get' in 'static_matrix<T, X>'; did you mean 'set'?
 82 |         ref operator=(ref & v) { m_matrix.set(m_row, m_col, v.m_matrix.get(v.m_row, v.m_col)); return *this; }
    |                                                                        ^~~
    |                                                                        set
/wrkdirs/usr/ports/math/z3/work/z3-z3-4.13.0/src/math/lp/static_matrix.h:164:10: note: 'set' declared here
164 |     void set(unsigned row, unsigned col, T const & val);
    |          ^

Upstream fixed this as part of a few other changes for gcc 15 in
<https://github.com/Z3Prover/z3/commit/2ce89e5f4>, but it does not apply
cleanly to this version, so add a backported patch.

PR:		281512
MFH:		2024Q3
2024-09-15 15:03:37 +03:00
Daniel Engberg
2e9449bde9 net/liveMedia: Update to 2024.08.01
Changelog: http://www.live555.com/liveMedia/public/changelog.txt

PR:		281185
2024-09-15 13:54:31 +02:00
Daniel Engberg
f5cfb7ec00 textproc/expat2: Update to 2.6.3
Fixes CVEs:
CVE-2024-45490
CVE-2024-45491
CVE-2024-45492

* Remove GNU_CONFIGURE_MANPREFIX

Changelog:
https://github.com/libexpat/libexpat/blob/R_2_6_3/expat/Changes

PR:		281273
Approved by:	desktop (fluffy)
Exp-run by:	antoine
2024-09-15 13:54:31 +02:00
Daniel Engberg
9441ca687e textproc/libxml2: Update to 2.11.9
Fixes CVE-2024-40896

Changelog: https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.11.9

PR:		281350
Approved by:	desktop (fluffy)
Exp-run by:	antoine
2024-09-15 13:54:31 +02:00
Dan Langille
600b4959b2 security/acme.sh: Update to 3.8.0
https://github.com/acmesh-official/acme.sh/releases/tag/3.0.8

See diff for changes to pkg-plist
2024-09-15 11:45:04 +00:00
Dimitry Andric
b3459442f7 devel/folly: fix build with clang 19
As noted in the libc++ 19 release notes [1], std::char_traits<> is now
only provided for char, char8_t, char16_t, char32_t and wchar_t, and any
instantiation for other types will fail.

This causes devel/folly to fail to compile with clang 19 and libc++ 19,
resulting in errors similar to:

  /usr/include/c++/v1/string_view:300:42: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
    300 |   static_assert(is_same<_CharT, typename traits_type::char_type>::value,
        |                                          ^
  /wrkdirs/share/dim/ports/devel/folly/work/folly-2024.09.09.00/folly/io/Cursor.h:686:35: note: in instantiation of template class 'std::basic_string_view<unsigned char>' requested here
    686 |   std::basic_string_view<uint8_t> peekView() {
        |                                   ^
  /usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
     23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
        |                             ^

Since the peekView() function is supposed to return a no longer existing
type, conditionalize it for libc++ versions before 19. As far as I can
see, there are no consumers of this function, except for some of the
tests.

[1] https://libcxx.llvm.org/ReleaseNotes/19.html#deprecations-and-removals

PR:		281499
Approved by:	yuri (maintainer)
MFH:		2024Q3
2024-09-15 13:38:17 +02:00
Dimitry Andric
3378cc494d java/openjdk8 java/openjdk11 java/openjdk17 java/openjdk18 java/openjdk19 java/openjdk20 java/openjdk21 java/openjdk22: disable warnings as errors
Generally disable warnings-as-errors for all openjdk ports, removing all
the conditionals we have now for particular architectures and/or
compilers. It does not make sense to have this on by default, unless you
are an upstream maintainer.

PR:		281188
Approved by:	maintainer timeout (2 weeks)
MFH:		2024Q3
2024-09-15 13:36:13 +02:00
Daniel Engberg
ad05a2f3d0 sysutils/coreutils: Fix GMP option
Toggle is libgmp not gmp, while at adjust layout in Makefile

PR:		281075
Approved by:	portmgr (maintainer timeout, 2+ weeks)
2024-09-15 13:15:16 +02:00
Daniel Engberg
c4d5a141aa audio/fluidsynth: Update to 2.3.6 and drop sndio support
Drop sndio patches as maintaining our "custom fork/set of patches" will
cause bitrot further down the road

PR:		281184
2024-09-15 13:09:37 +02:00
Daniel Engberg
f02d9da752 comms/tio: Update to 3.7
Changelog: https://github.com/tio/tio/releases/tag/v3.7

PR:		281174
Approved by:	portmgr (maintainer timeout, 2+ weeks)
2024-09-15 13:06:35 +02:00
Nuno Teixeira
e58351e7a2 math/R-cran-stabledist: Update to 0.7-2
- Take maintainership

ChangeLog: https://cran.r-project.org/web/packages/stabledist/ChangeLog
2024-09-15 12:01:29 +01:00
Danilo Egea Gondolfo
1b635b9a9c sysutils/kops: Update to 1.30.1 2024-09-15 11:54:35 +01:00
Nuno Teixeira
6aac9cf2f9 math/R-cran-maps: Update to 3.4.2
- Take maintainership

ChangeLog: https://github.com/cran/maps/compare/3.4.1.1...3.4.2
2024-09-15 11:51:46 +01:00
Matías Pizarro
885525e473 editors/linux-bcompare: Update 4.3.7 → 4.4.7
Changelogs:
https://www.scootersoftware.com/download/v4changelog

Port improvements:
- remove unnecessary CDs in do-install
- split long lines
- pet portclippy

PR:	281438
2024-09-15 13:45:16 +03:00
Nuno Teixeira
81b048e654 math/R-cran-hexbin: Update to 1.18.4
- Take maintainership
- Switch WWW url to r-project.org

ChangeLog:
b401b6e8f7
2024-09-15 11:43:22 +01:00
Nuno Teixeira
0b53f60dab math/R-cran-gsl: Take maintainership
- Switch WWW url to r-project.org
2024-09-15 11:33:47 +01:00
Nuno Teixeira
bf4b3fdabd math/R-cran-energy: Update to 1.7-12
- Take maintainership
- Switch WWW url to r-project.org

ChangeLog: https://cran.r-project.org/web/packages/energy/news/news.html
2024-09-15 11:29:28 +01:00
Guido Falsi
f400afa462 deskutils/calibre: Update to 7.18.0
- Move main MASTER_SITE to https
- Sort some variables and plist items
2024-09-15 10:14:40 +02:00
Torsten Zuehlsdorff
723f5302fb databases/pgvector: Update from 0.7.3 to 0.7.4
Changelog:

    * Fixed locking for parallel HNSW index builds
    * Fixed compilation error with GCC 14 on i386 when SSE2 is not enabled

  Taken from:

    https://github.com/pgvector/pgvector/blob/master/CHANGELOG.md

Sponsored by:	P. Variablis
2024-09-15 09:45:01 +02:00
Po-Chuan Hsieh
ebe85cc6fc
www/websocketd: Take maintainership 2024-09-15 15:18:47 +08:00
Po-Chuan Hsieh
a06239692b
www/py-pyocclient: Take maintainership 2024-09-15 15:18:44 +08:00
Po-Chuan Hsieh
57ac1957d1
www/py-flask-bootstrap: Take maintainership 2024-09-15 15:18:41 +08:00
Po-Chuan Hsieh
ad4d9f9d10
sysutils/py-pkginfo: Take maintainership 2024-09-15 15:18:37 +08:00
Po-Chuan Hsieh
eecae404a2
sysutils/py-diffoscope: Take maintainership 2024-09-15 15:18:34 +08:00
Po-Chuan Hsieh
4b04efecaf
games/py-pysol-cards: Take maintainership 2024-09-15 15:18:31 +08:00
Po-Chuan Hsieh
dd428f0e63
devel/py-thriftpy2: Take maintainership 2024-09-15 15:18:30 +08:00
Po-Chuan Hsieh
c2b2af1bf8
devel/py-sh: Take maintainership 2024-09-15 15:18:29 +08:00
Po-Chuan Hsieh
51cedb6f70
devel/py-python-pcre: Take maintainership 2024-09-15 15:18:28 +08:00
Po-Chuan Hsieh
209aa5bcdb
devel/py-pycognito: Take maintainership 2024-09-15 15:18:27 +08:00
Po-Chuan Hsieh
60cd3b3de2
devel/py-gitpython: Take maintainership 2024-09-15 15:18:26 +08:00
Po-Chuan Hsieh
59532e0d17
devel/py-git-up: Take maintainership 2024-09-15 15:18:25 +08:00
Po-Chuan Hsieh
74986cf4a6
devel/py-decorator: Take maintainership 2024-09-15 15:18:23 +08:00
Po-Chuan Hsieh
ff7b9ed1f2
devel/py-colorama: Take maintainership 2024-09-15 15:18:22 +08:00
Po-Chuan Hsieh
a9f5829b00
devel/py-codecov: Take maintainership 2024-09-15 15:18:21 +08:00
Po-Chuan Hsieh
da90959b80
devel/py-ciso8601: Take maintainership 2024-09-15 15:18:20 +08:00
Po-Chuan Hsieh
08c8121ec3
devel/py-backports.zoneinfo: Take maintainership 2024-09-15 15:18:19 +08:00
Po-Chuan Hsieh
28b976677b
devel/py-awesomeversion: Take maintainership 2024-09-15 15:18:18 +08:00
Po-Chuan Hsieh
0ab4e50b26
devel/py-atomicwrites: Take maintainership 2024-09-15 15:18:17 +08:00
Po-Chuan Hsieh
1120c9a4a8
astro/py-astral: Take maintainership 2024-09-15 15:18:16 +08:00
Hiroki Tagato
b360c05409 editors/vscode: update to 1.93.1
Changelog: https://code.visualstudio.com/updates/v1_93

Reported by:	GitHub (watch releases)
2024-09-15 16:11:25 +09:00
Zsolt Udvari
04cd579754 */*: Take maintainership
devel/R-cran-brio
devel/R-cran-callr
devel/R-cran-covr
devel/R-cran-crayon
devel/R-cran-cyclocomp
devel/R-cran-desc
devel/R-cran-diffobj
devel/R-cran-ini
devel/R-cran-lintr
devel/R-cran-pkgbuild
devel/R-cran-pkgload
devel/R-cran-prettycode
devel/R-cran-rappdirs
devel/R-cran-rematch2
devel/R-cran-remotes
devel/R-cran-rversions
devel/R-cran-sessioninfo
devel/R-cran-waldo
devel/R-cran-whisker
graphics/R-cran-jpeg
math/R-cran-date
math/R-cran-intervals
security/R-cran-gitcreds
sysutils/R-cran-fs
sysutils/R-cran-processx
sysutils/R-cran-xopen
textproc/R-cran-hunspell
textproc/R-cran-rex
textproc/R-cran-xmlparsedata
www/R-cran-gh
www/R-cran-webshot
2024-09-15 08:35:23 +02:00
TAKATSU Tomonari
c7988b3ae1 devel/R-cran-caTools: Update to 1.18.3
Reported by:	portscout
2024-09-15 06:22:13 +00:00
Zsolt Udvari
6f3f4acff3 audio/milkytracker: Bump PORTREVISION
Bump PORTREVISION because of upgrade archivers/lhasa.
2024-09-15 08:16:36 +02:00
mew14930xvi
4070cc4c4b archivers/lhasa: Update to 0.4.0
Add TEST_TARGETS and TEST_DEPENDS.
Switch to DISTVERSION.
Pet portlint, portfmt.

Changelog: https://github.com/fragglet/lhasa/blob/master/NEWS

PR:		277586
Approved by:	maintainer timeout (2+ weeks)
2024-09-15 08:14:45 +02:00