1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-28 10:08:24 +00:00
Commit Graph

673895 Commits

Author SHA1 Message Date
Florian Smeets
be702307e4 net-mgmt/icinga-ipl-i18n: Update to 0.2.2 2024-08-09 23:55:17 +02:00
Denis Shaposhnikov
b65f905765 deskutils/syncthingtray: update 1.5.5 → 1.6.0
Commit log:
https://github.com/Martchus/syncthingtray/compare/v1.5.5...v1.6.0

While here: align GH_TUPLE.

PR:	280703
2024-08-10 00:47:58 +03:00
Gleb Popov
ed8cebcadf lang/ldc: Update to 1.39.0
Sponsored by:	Serenity Cybersecurity, LLC

Pull Request:	https://github.com/freebsd/freebsd-ports/pull/290
2024-08-09 23:32:08 +03:00
Stefan Eßer
27424909fb devel/jujutsu: upgrade to version 0.20.0
This version contains a number of fixes and improvements.

See the release notes at

    https://github.com/martinvonz/jj/releases/tag/v0.20.0

for details.
2024-08-09 22:24:51 +02:00
Yuri Victorovich
c2f3cc9e6b misc/llama-cpp: update 3542 → 3560 2024-08-09 13:11:43 -07:00
Yuri Victorovich
cdddefd582 misc/py-ollama: New port: Official Python client for Ollama 2024-08-09 13:11:43 -07:00
Nicola Vitale
7802dd6ac0
misc/py-oterm: Update to 0.2.10
- Remove files/patch-oterm_app_oterm.py

Release changes:	https://github.com/ggozad/oterm/releases/tag/0.2.10
Reported by:	Yiorgis Gozadinos <notifications@github.com>
2024-08-09 21:46:29 +02:00
Vladimir Druzenko
22f3e1e89f net/freerdp3: update 3.6.3 → 3.7.0
Changelog:
https://github.com/FreeRDP/FreeRDP/releases/tag/3.7.0
2024-08-09 22:22:10 +03:00
Benjamin Jacobs
5743ea29ee archivers/ocaml-bz2: update to 0.8.0
Use ocaml:dune.
Add DOCS and EXAMPLES options.
Update WWW, using GITLAB.
Submitter takes maintainership.
Switch to DISTVERSION.

PR:		280294
2024-08-09 21:11:36 +02:00
Benjamin Jacobs
708c14c806 databases/ocaml-sqlite3: update to 5.1.0
Add DOCS option.
Add ocaml:dune to USES.
Remove patch of sqlite3_stubs.c.
Submitter takes maintainership.
Switch to DISTVERSION.

PR:		280295
2024-08-09 20:59:10 +02:00
Florian Smeets
6ddc541efb net-mgmt/icinga*: Take a couple of icinga ports
joneum offered me to take over the icinga2 ports a while ago.
Approved by:	joneum (private mail)
2024-08-09 20:31:04 +02:00
Florian Smeets
15d386f17b */*: Release a couple of ports 2024-08-09 20:31:03 +02:00
Lars Herschke
c27d298826 security/amavisd-new: rar is available for both i386 and amd64
PR:		280672
2024-08-09 20:31:03 +02:00
Alexander Leidinger
577ee27d11 security/amavisd-new: service jails readiness + fixes
Rename rc script to comply to the rc scripting recommendations (netchild)
Make script service jail aware (netchild)
Remove amavis-milter.in that should most likely have been removed with
4c8100486c ~18 years ago, the script hasn't been part of the package
for a long time (flo)

PR:		280139
2024-08-09 20:31:03 +02:00
Florian Smeets
fb537367d1 devel/pecl-dio: Update to 0.3.0 2024-08-09 20:31:03 +02:00
Florian Smeets
351e7f516e www/limesurvey: Update to 6.6.1 2024-08-09 20:31:03 +02:00
Florian Smeets
7493aae5c1 www/phpmyfaq: Update to 3.2.9 2024-08-09 20:31:03 +02:00
Ashish SHUKLA
91fa0d0673
textproc/ugrep: Update to 6.4.1 2024-08-09 18:26:52 +00:00
Zsolt Udvari
44392d8091 deskutils/fet: update to 6.22.3
Changelog: https://lalescu.ro/liviu/fet/news.html
2024-08-09 20:15:48 +02:00
Dimitry Andric
eddc2f815b net/kea: fix build with libc++ 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 net/kea to fail to compile with clang 19 and libc++ 19,
resulting in errors similar to:

    In file included from edns.cc:9:
    In file included from ../../../src/lib/exceptions/exceptions.h:11:
    /usr/include/c++/v1/string:820:42: error: implicit instantiation of undefined template 'std::char_traits<unsigned char>'
      820 |   static_assert(is_same<_CharT, typename traits_type::char_type>::value,
          |                                          ^
    ../../../src/lib/dns/name.h:727:16: note: in instantiation of template class 'std::basic_string<unsigned char>' requested here
      727 |     NameString ndata_;
          |                ^
    /usr/include/c++/v1/__fwd/string.h:23:29: note: template is declared here
       23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
          |                             ^

`NameString` is defined as `std::basic_string<unsigned char>`, which is
no longer possible. So redefine it as a `std::vector<unsigned char>`
instead.

This requires a few adjustments in other places: adjusting the arguments
for the `assign()` method, which for `std::vector` takes a begin and end
iterator, instead of a begin iterator and a size, and replacing the
`append()` method with an equivalent `insert()`.

These changes have also been sent upstream [2].

[1] https://libcxx.llvm.org/ReleaseNotes/19.html#deprecations-and-removals
[2] https://gitlab.isc.org/isc-projects/kea/-/merge_requests/2410

PR:		280696
Approved by:	apevnev@me.com (maintainer)
MFH:		2024Q3
2024-08-09 19:34:46 +02:00
Stefan Schlosser
20dee3ad45 games/libretro-shaders-slang: update g20240719 → g20240804
Comparing changes:
7d6751a..b327343

Port changes:
- remove PORTDOCS from Makefile, keep it listed in pkg-plist instead
- set DATADIR to its actual non-standard directory
- remove patch, install with COPYTREE_SHARE instead
- use the more commonly used post-install-DOCS-on target again
- pet portclippy, portfmt, portlint

PR:	280700
2024-08-09 20:32:40 +03:00
Alexey Dokuchaev
4325c909ac misc/py-pytorch: adjust `devel/abseil' dependency after recent update
As of commit 6c2f347f45 libabsl_flags.so library is gone, switch to
the base library to unbreak the build (this also improves consistency
against other ports).
2024-08-09 17:24:28 +00:00
FiLiS
bf9e519b1c sysutils/duplicity: Update to 3.0.2
ChangeLog:	https://duplicity.gitlab.io/stable/CHANGELOG.html
PR:		280712
MFH:		2024Q3
2024-08-09 17:58:10 +01:00
Älven
5fe1657834 textproc/hs-pandoc-crossref: Update to 0.3.17.1
PR:		279447
2024-08-09 17:22:50 +03:00
Älven
5aca12be6d devel/stack: Update to 3.1.1
PR:		280669
2024-08-09 17:22:50 +03:00
Älven
dff114f7cc devel/hs-spago: Update to 0.21.0
PR:		279440
2024-08-09 17:22:50 +03:00
Älven
060f524d27 devel/hs-ormolu: Update to 0.7.7.0
PR:		280656
2024-08-09 17:22:50 +03:00
Älven
db11b61711 devel/hs-hpack: Update to 0.37.0
PR:		280652
2024-08-09 17:22:49 +03:00
Älven
1844d4beb1 textproc/hs-pandoc: Update to 3.3
PR:		280641
2024-08-09 17:22:49 +03:00
Tom Jones
8ac9dd794c
net/vpp: New port for layer 2-4 multi-platform network stack
Sponsored by:	The FreeBSD Foundation

Co-authored-by:	Joseph Mingrone <jrm@FreeBSD.org>
2024-08-09 11:09:18 -03:00
Tom Jones
9bdaee5453
net/dpdk: Enable SDK driver
PR:		280691
Approved by:	bruce.richardson@intel.com (maintainer)
Sponsored by:	The FreeBSD Foundation

Co-authored-by: Joseph Mingrone <jrm@FreeBSD.org>
2024-08-09 11:03:29 -03:00
Piotr Kubaj
efaf11f8d9 sysutils/fastfetch: update to 2.21.1
Changelog:	https://github.com/fastfetch-cli/fastfetch/releases/tag/2.21.1
2024-08-09 15:19:24 +02:00
Fernando Apesteguía
bf2690f4be MOVED: fix entries
Fixes my previous commit b7fcdc240b
and another entry added at the top of the list.
2024-08-09 15:01:22 +02:00
Fernando Apesteguía
b7fcdc240b dns/knot3-lib: Remove port
The port is superseded by knot3-lib.
Consumer has been modified accordingly.

PR:	280626
2024-08-09 13:15:49 +02:00
Ashish SHUKLA
932245df1a
security/vuxml: Document soft-serve vulnerability 2024-08-09 11:14:55 +00:00
Alex Dupre
0d1079780c math/secp256k1: update to 0.5.1 release. 2024-08-09 11:32:40 +02:00
Nicola Vitale
53b90ee074
misc/py-oterm: Fix a runtime error
- Due to an incompatibility with the recent version of textproc/py-textual,
  oterm crashes when there are saved chats, with the following error

│ /usr/local/lib/python3.11/site-packages/textual/widget.py:984 in mount                                                                                                                                                                                                  │
│                                                                                                                                                                                                                                                                         │
│    981 │   │   if self._closing or self._pruning:                                               ╭──────────── locals ────────────╮                                                                                                                                      │
│    982 │   │   │   return AwaitMount(self, [])                                                  │   after = None                 │                                                                                                                                      │
│    983 │   │   if not self.is_attached:                                                         │  before = None                 │                                                                                                                                      │
│ ❱  984 │   │   │   raise MountError(f"Can't mount widget(s) before {self!r} is mounted")        │    self = TabPane(id='chat-1') │                                                                                                                                      │
│    985 │   │   # Check for duplicate IDs in the incoming widgets                                │ widgets = (ChatContainer(),)   │                                                                                                                                      │
│    986 │   │   ids_to_mount = [                                                                 ╰────────────────────────────────╯                                                                                                                                      │
│    987 │   │   │   widget_id for widget in widgets if (widget_id := widget.id) is not None                                                                                                                                                                              │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
MountError: Can't mount widget(s) before TabPane(id='chat-1') is mounted

So add the patch patch-oterm_app_oterm.py, that is a simple workaround
waiting for an official solution by upstream.

- Bump PORTREVISION
2024-08-09 11:05:48 +02:00
Alex Dupre
32c1423426 mail/roundcube: update to 1.6.8 release
PR:		280649
Submitted by:	Fabian Wenk <fabian@wenks.ch>
2024-08-09 10:48:27 +02:00
Michael Grimm
04151eb383 dns/knot-resolver: Depend on knot3
In preparation for the removal of dns/knot3-lib
2024-08-09 09:26:52 +02:00
Daniel Schaefer
1b376deea0
Add sysutils/qmk_hid: Framework Computer QMK HID Utility
Signed-off-by:	Daniel Schaefer <dhs@frame.work>
Sponsored by:	Framework Computer Inc
Sponsored by:	The FreeBSD Foundation
2024-08-09 14:38:00 +08:00
Daniel Schaefer
a91cb3b793
Add sysutils/framework-system: Framework Computer System Utility
Signed-off-by:	Daniel Schaefer <dhs@frame.work>
Sponsored by:	Framework Computer Inc
Sponsored by:	The FreeBSD Foundation
2024-08-09 14:37:59 +08:00
Ralf van der Enden
2c1a1bb675 net-p2p/jackett: update to 0.22.410
ChangeLog: https://github.com/Jackett/Jackett/releases/

 * torrentsir: bump domain
 * assorted unit3d: detect banned on config save
 * uniotaku: new cat
 * rudub: bump domain
 * assorted unblockit: new domain

PR:		280622
Reported by:	tremere@cainites.net (maintainer)
2024-08-09 08:30:15 +02:00
Ashish SHUKLA
aeb0113515
all: Bump after lang/go122 update 2024-08-09 06:24:09 +00:00
Ashish SHUKLA
aa8c0111bf
all: Bump after lang/go121 update 2024-08-09 06:24:08 +00:00
Ashish SHUKLA
a46526de43
lang/go122: Update to 1.22.6 2024-08-09 06:24:07 +00:00
Ashish SHUKLA
1eb4dc5872
lang/go121: Update to 1.21.13 2024-08-09 06:24:07 +00:00
Gerald Pfeifer
182263cd72 emulators/wine: Also package include/wine/windows/ddk on 32-bit
PR:		280448, 220950
Reported by:	Alexander Vereeken <Alexander88207@protonmail.com>
2024-08-09 06:16:03 +00:00
Nuno Teixeira
b045d7c367 deskutils/treesheets: Update to 20240808 snapshot
- Remove local patch added upstream

ChangeLog:
1021860527...1030969438
2024-08-09 06:58:50 +01:00
Nuno Teixeira
26fc3a5d06 mail/cone: Update to 1.14
- Pet Q/A check: drop USES=fam
- Drop USES=compiler

ChangeLog:
https://sourceforge.net/p/courier/courier.git/ci/master/tree/cone/ChangeLog
2024-08-09 06:58:50 +01:00
Nuno Teixeira
7c42140de2 math/intx: Update to 0.11.0
ChangeLog: https://github.com/chfast/intx/releases/tag/v0.11.0
2024-08-09 06:58:50 +01:00