Friday, April 04, 2025

Re: OpenVPN listening on dual-stack socket

On 2025-04-04, Stuart Henderson <stu.lists@spacehopper.org> wrote:
>
> - Java is a total pain - it relies on inet6 sockets working with v4+v6
> to be able to use dual-stack at all - otherwise you have to set a flag
> when you run a program to tell the jdk whether it should be v4-only or
> v6-only.

(and that is for client-side connections too, not just server-side)

Re: OpenVPN listening on dual-stack socket

On 2025-04-04, David Gwynne <david@gwynne.id.au> wrote:
> On Fri, Apr 04, 2025 at 07:26:34AM +1000, Stuart Longland VK4MSL wrote:
>>
>> I've kludged around this in L2 configurations by running two OpenVPN daemons
>> on different `tap` interfaces and bridging them (along with the Ethernet
>> they connect to), but I cannot do this with a `tun` device, and it's a
>> really icky way to work around an issue that shouldn't exist in 2025 anyway.

That's the way you need to do it.

Various programs including OpenVPN only support binding to a single
socket.

OpenVPN is relatively straightforward because at least you can run two
copies without too much trouble. (You also need to do this if you want
to accept connections over TCP. So, 4 instances if you want TCP and
UDP across both v4+v6).

Others I've noticed:

- Asterisk chan_sip only allows binding to a single socket; chan_pjsip
allows creating multiple transports so it can be handled there now
(with more complex config).

- MySQL/MariaDB used to be a problem but are ok now (since MySQL 8.0.13
or MariaDB 10.11 multiple bind addresses are allowed).

- Java is a total pain - it relies on inet6 sockets working with v4+v6
to be able to use dual-stack at all - otherwise you have to set a flag
when you run a program to tell the jdk whether it should be v4-only or
v6-only.

>> One daemon can do both on Linux simultaneously, it should likewise be able
>> to do both on OpenBSD.

Why? OpenBSD is not Linux.

> so linux has a feature where it will map ipv4 connections into the ipv4
> mapped address space in ipv6 and let you handle them all with a single
> ipv6 listener. have a look for the doco around the "net.ipv6.bindv6only"
> sysctl on linux for a bit more explanaion. openbsd does not implement
> this.

That selects whether IPV6_V6ONLY (as described in
https://www.rfc-editor.org/rfc/rfc3493#page-22) should be set
automatically on new sockets. Without touching the sysctl the default
is to allow v4 on inet6 sockets. Most common unix-like OS except
OpenBSD have a similar mechanism and similar default (i.e. normally
inet6 sockets are dual-stack).

OpenBSD doesn't allow this at all - it always behaves as if IPV6_V6ONLY
is set and it cannot be disabled.

Windows used to be similar to OpenBSD, but in Vista it was changed so
that you could change to dual-stack with setsockopt.
(https://learn.microsoft.com/en-us/windows/win32/winsock/dual-stack-sockets)

--
Please keep replies on the mailing list.

UPDATE net/prosody 13.0.1 from MAINTAINER

Hello,

Prosody had a new release yesterday. Notes can be found at
https://blog.prosody.im/prosody-13.0.1-released/ . Of particular
interest are

- mod_tls: Enable Prosody's certificate checking for incoming s2s
connections (fixes #1916: Impossible to override certificate
verification policy in 13.0)
[In non-direct TLS case, alternative certificate validation methods
like DANE stopped working.]
- portmanager: Multiple fixes to use correct certificates for direct TLS
ports (fixes #1915)
[If the default mechanism for discovering certificates isn't used, a
wrong certificate could be served under some circumstances.]

When I asked upstream about it, they replied "definitely nice to have,
tho no need to panic :)".

OK for now?

Lucas


diff refs/heads/master 664fb014a66f86da352f7f145c5e9fed1224e1c4
commit - c1d5b260450f0314b9b27f0b600b31d866e3dac8
commit + 664fb014a66f86da352f7f145c5e9fed1224e1c4
blob - 3d46c2ab7ad598ee9e565069202bad82a985654a
blob + e6680f5d1d270a27ad3bc18168a8a7e3733d5eb9
--- net/prosody/Makefile
+++ net/prosody/Makefile
@@ -1,5 +1,5 @@
COMMENT = communications server for Jabber/XMPP written in Lua
-DISTNAME = prosody-13.0.0
+DISTNAME = prosody-13.0.1
CATEGORIES = net
HOMEPAGE = https://prosody.im/

blob - c3e36688f98fa57f4319de4922e58a0f8861f4c9
blob + 95cdd447a4218b4c190b6ef080262a676748dc05
--- net/prosody/distinfo
+++ net/prosody/distinfo
@@ -1,2 +1,2 @@
-SHA256 (prosody-13.0.0.tar.gz) = QwnFz+sadNP5cYX2JDoMEGjrOfp+kavELPIZS/Bn/FQ=
-SIZE (prosody-13.0.0.tar.gz) = 731936
+SHA256 (prosody-13.0.1.tar.gz) = e96KW/PM4ZX9RUlwABufrqwaRgG8qlx07tfGt05I2AY=
+SIZE (prosody-13.0.1.tar.gz) = 735228
blob - a458c5fbf9177a84da1fcbe4c24aca6f4759c509
blob + 1e580a4c604d233895fe8a4ffb806ab9b8672c4c
--- net/prosody/patches/patch-core_certmanager_lua
+++ net/prosody/patches/patch-core_certmanager_lua
@@ -1,7 +1,7 @@
Index: core/certmanager.lua
--- core/certmanager.lua.orig
+++ core/certmanager.lua
-@@ -181,7 +181,7 @@ end
+@@ -184,7 +184,7 @@ end

-- Built-in defaults
local core_defaults = {

Re: OpenVPN listening on dual-stack socket

On Fri, Apr 04, 2025 at 02:47:42PM +1000, Stuart Longland VK4MSL wrote:
> On 4/4/25 14:18, David Gwynne wrote:
> > so linux has a feature where it will map ipv4 connections into the ipv4
> > mapped address space in ipv6 and let you handle them all with a single
> > ipv6 listener. have a look for the doco around the "net.ipv6.bindv6only"
> > sysctl on linux for a bit more explanaion. openbsd does not implement
> > this.
> >
> > i'm guessing that openvpn is relying on this feature though.
>
> I'd say so. Normally IPv6 sockets are dual-stack unless you specify
> IPV6_V6ONLY.
>
> > the right solution is to configure the software to bind separate sockets
> > for each address family. i believe you can do this with openvpn by
> > specifying multiple "--local" arguments to the daemon. you should be
> > able to bind to ipv4 with "--local 0.0.0.0" and ipv6 with "--local ::".
> >
> > i could be completely wrong though. i havent tried this myself, so it
> > may not work at all in practice.
>
> Well, it was worth a try, What happened is the --local specified last took
> precedence. So `--local :: --local 0.0.0.0` yielded IPv4, reversing those
> yielded IPv6.

You will need to run two instances of openvpn for this, using separate
tun interfaces and client subnets.

In a config I maintain, the differences are:

-dev tun0
+dev tun1
dev-type tun
-proto udp
+proto udp6
-local (server's public IPv4-address)
-server (IPv4 client subnet 1)
-server-ipv6 (IPv6 client subnet 1)
+local (server's public IPv6-address)
+server (Ipv4 client subnet 2)
+server-ipv6 (IPv6-client subnet 2)

Then I start openvpn processes via /etc/rc.local like this:

echo -n ' openvpn(udp)'
/usr/local/sbin/openvpn /etc/openvpn/server.conf >/dev/null

echo -n ' openvpn(udp6)'
/usr/local/sbin/openvpn /etc/openvpn/server.ipv6.conf >/dev/null

Thursday, April 03, 2025

Re: OpenVPN listening on dual-stack socket

On 4/4/25 14:18, David Gwynne wrote:
> so linux has a feature where it will map ipv4 connections into the ipv4
> mapped address space in ipv6 and let you handle them all with a single
> ipv6 listener. have a look for the doco around the "net.ipv6.bindv6only"
> sysctl on linux for a bit more explanaion. openbsd does not implement
> this.
>
> i'm guessing that openvpn is relying on this feature though.

I'd say so. Normally IPv6 sockets are dual-stack unless you specify
IPV6_V6ONLY.

> the right solution is to configure the software to bind separate sockets
> for each address family. i believe you can do this with openvpn by
> specifying multiple "--local" arguments to the daemon. you should be
> able to bind to ipv4 with "--local 0.0.0.0" and ipv6 with "--local ::".
>
> i could be completely wrong though. i havent tried this myself, so it
> may not work at all in practice.

Well, it was worth a try, What happened is the --local specified last
took precedence. So `--local :: --local 0.0.0.0` yielded IPv4,
reversing those yielded IPv6.
--
Stuart Longland (aka Redhatter, VK4MSL)

I haven't lost my mind...
...it's backed up on a tape somewhere.

Re: OpenVPN listening on dual-stack socket

On Fri, Apr 04, 2025 at 07:26:34AM +1000, Stuart Longland VK4MSL wrote:
> Hi all,
>
> I run OpenVPN for my virtual private networking as it's a workhorse I've
> gotten to know well over the years and is also one of the few that supports
> layer 2 networking (that is, forwarding Ethernet frames over the VPN).
>
> I also use it in L3 mode with Android clients for forwarding VoIP traffic.
>
> OpenVPN circa release 2.3 introduced `proto udp6`, which is supposed to bind
> to the port dual-stack. I notice when I do this though, connections via
> IPv4 get refused.
>
> Relevant software versions:
> > vk4msl-gap# openvpn --version
> > OpenVPN 2.6.12 x86_64-unknown-openbsd7.6 [SSL (OpenSSL)] [LZO] [LZ4] [MH/RECVDA] [AEAD]
> > library versions: LibreSSL 4.0.0, LZO 2.10
> > Originally developed by James Yonan
> > Copyright (C) 2002-2024 OpenVPN Inc <sales@openvpn.net>
> > Compile time defines: enable_async_push=no enable_comp_stub=no enable_crypto_ofb_cfb=yes enable_dco=no enable_debug=yes enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown enable_fast_install=needless enable_fragment=yes enable_gtk_doc=no enable_iproute2=no enable_libtool_lock=yes enable_lz4=yes enable_lzo=yes enable_management=yes enable_pam_dlopen=no enable_pedantic=no enable_pkcs11=no enable_plugin_auth_pam=no enable_plugin_down_root=yes enable_plugins=yes enable_port_share=yes enable_selinux=no enable_shared=yes enable_shared_with_static_runtimes=no enable_silent_rules=no enable_small=no enable_static=yes enable_strict=no enable_strict_options=no enable_systemd=no enable_werror=no enable_win32_dll=yes enable_wolfssl_options_h=yes enable_x509_alt_username=no with_aix_soname=aix with_crypto_library=openssl with_gnu_ld=no with_mem_check=no with_openssl_engine=no with_sysroot=no
> > vk4msl-gap# uname -a
> > OpenBSD vk4msl-gap.dmz.longlandclan.id.au 7.6 GENERIC.MP#1 amd64
>
> I've kludged around this in L2 configurations by running two OpenVPN daemons
> on different `tap` interfaces and bridging them (along with the Ethernet
> they connect to), but I cannot do this with a `tun` device, and it's a
> really icky way to work around an issue that shouldn't exist in 2025 anyway.
> One daemon can do both on Linux simultaneously, it should likewise be able
> to do both on OpenBSD.
>
> When I use `proto udp6` I see the following in `netstat`:
> > vk4msl-gap# netstat -nl | grep 1194
> > udp6 0 0 *.1194 *.*
>
> In this situation from OpenVPN on my Android 10 phone, I see connection
> refusals on IPv4 (and strangely, "network is unreachable" on IPv6??? I'll
> blame Telstra's 4G network for that).
>
> Obviously, `proto udp4` does what it says on the tin. `proto udp` seems to
> behave as an alias for `proto udp4`. `proto udp6` is supposed to listen
> dual-stack, making it possible to connect via either, however on OpenBSD, it
> seems to be IPv6-exclusive.
>
> How do I get it to bind to both IPv4 and IPv6?

so linux has a feature where it will map ipv4 connections into the ipv4
mapped address space in ipv6 and let you handle them all with a single
ipv6 listener. have a look for the doco around the "net.ipv6.bindv6only"
sysctl on linux for a bit more explanaion. openbsd does not implement
this.

i'm guessing that openvpn is relying on this feature though.

the right solution is to configure the software to bind separate sockets
for each address family. i believe you can do this with openvpn by
specifying multiple "--local" arguments to the daemon. you should be
able to bind to ipv4 with "--local 0.0.0.0" and ipv6 with "--local ::".

i could be completely wrong though. i havent tried this myself, so it
may not work at all in practice.

dlg

> --
> Stuart Longland (aka Redhatter, VK4MSL)
>
> I haven't lost my mind...
> ...it's backed up on a tape somewhere.
>

Re: Client OTP activation to secure web apps

For now I implemented a CSRF check on the given sites.


Dan <dan@nnnne-o-o-o.com> wrote:

> Hello,
>
> Between one migration and the others I came to fantasticate, or
> better, to conceive about the easy possibility to activate a web app
> without round trip, let say starting from a qrcode and finishing job
> with node.js on the client side maybe working on mirror.
>
> I would try tackle the matter on two sides. As first, I would like to
> deny my web app downloads from the repo by clients coming equipped
> with mirroring software; AFYI: there is excess use of it. As second,
> I would like to deny my web apps to activate interfaces if not via a
> client OTP code processed by my js library or php backend.
>
> Stating that I'm not drunk at all, does it exist any library of this
> kind to start from?
>
>
> Dan
>
> ------
> Blog: http://bsd.gaoxio.com - Repo: https://code.5mode.com
>
> Please reply to the mailing-list, leveraging technical stuff.
>




Dan

------
bsdload.com - Repo: https://code.5mode.com

Please reply to the mailing-list, leveraging technical stuff.

Re: [UPDATE] net/dnscrypt-proxy 2.1.7 -> 2.1.8

Stuart Henderson writes:

> On 2025/04/01 17:30, Igor Zornik wrote:
>> Hello,
>>
>> A bugfix version for dnscrypt was released a few days ago. Still builds
>> with Go 1.24.1 and resolves just fine on amd64 VM. I hope there is
>> still enough time for this to make it in 7.7. Diff below.
>
> Reading through changelog, I think there are some good reasons to have
> this for our release, and upstream is pretty reliable. This is ok sthen@
> if someone would like to commit it (the diff was q-p encoded, to apply
> from mutt use v first then |).

can I commit this still for the QUIC denial-of-service concerns? it is
nearing port lock. sthen gave an ok earlier.

>
>
> ----
> Version 2.1.8
>
> Dependencies have been updated, notably the QUIC implementation,
> which could be vulnerable to denial-of-service attacks.
> In forwarding rules, the target can now optionally include a
> non-standard DNS port number. The port number is also now optional
> when using IPv6.
> An annoying log message related to permissions on Windows has been suppressed.
> Resolver IP addresses can now be refreshed more
> frequently. Additionally, jitter has been introduced to prevent all
> resolvers from being refreshed simultaneously. Further changes have
> been implemented to mitigate issues arising from multiple concurrent
> attempts to resolve a resolver's IP address.
> An empty value for "tls_cipher_suite" is now equivalent to leaving
> the property undefined. Previously, it disabled all TLS cipher suites,
> which had little practical justification.
> In forwarding rules, an optional *. prefix is now accepted.
> ----
>
>
>
>> Index: Makefile
>> ===================================================================
>> RCS file: /cvs/ports/net/dnscrypt-proxy/Makefile,v
>> retrieving revision 1.69
>> diff -u -p -u -p -r1.69 Makefile
>> --- Makefile 18 Jan 2025 04:32:55 -0000 1.69
>> +++ Makefile 1 Apr 2025 15:20:42 -0000
>> @@ -2,7 +2,7 @@ COMMENT = flexible DNS proxy with suppor
>>
>> GH_ACCOUNT = DNSCrypt
>> GH_PROJECT = dnscrypt-proxy
>> -GH_TAGNAME = 2.1.7
>> +GH_TAGNAME = 2.1.8
>>
>> CATEGORIES = net
>>
>> Index: distinfo
>> ===================================================================
>> RCS file: /cvs/ports/net/dnscrypt-proxy/distinfo,v
>> retrieving revision 1.38
>> diff -u -p -u -p -r1.38 distinfo
>> --- distinfo 18 Jan 2025 04:32:55 -0000 1.38
>> +++ distinfo 1 Apr 2025 15:20:42 -0000
>> @@ -1,2 +1,2 @@
>> -SHA256 (dnscrypt-proxy-2.1.7.tar.gz) = Y5TNLXPe3Kkxeu7kmLbCUguEHOoELYPzmMM1WhPFD3w=
>> -SIZE (dnscrypt-proxy-2.1.7.tar.gz) = 4195998
>> +SHA256 (dnscrypt-proxy-2.1.8.tar.gz) = 2y1ZPQhNA0I1+q8JdDMYtAOftb4tOm4XywFXCR0j9Ns=
>> +SIZE (dnscrypt-proxy-2.1.8.tar.gz) = 4185376
>>

7.7: Heading into lock... OK required

I'm about ready to lock the ports tree for the 7.7 release.

All commits now need approval by sthen@ or naddy@, and please make
an argument _why_ you think a change should still go in.

--
Christian "naddy" Weisgerber naddy@mips.inka.de

OpenVPN listening on dual-stack socket

Hi all,

I run OpenVPN for my virtual private networking as it's a workhorse I've
gotten to know well over the years and is also one of the few that
supports layer 2 networking (that is, forwarding Ethernet frames over
the VPN).

I also use it in L3 mode with Android clients for forwarding VoIP traffic.

OpenVPN circa release 2.3 introduced `proto udp6`, which is supposed to
bind to the port dual-stack. I notice when I do this though,
connections via IPv4 get refused.

Relevant software versions:
> vk4msl-gap# openvpn --version
> OpenVPN 2.6.12 x86_64-unknown-openbsd7.6 [SSL (OpenSSL)] [LZO] [LZ4] [MH/RECVDA] [AEAD]
> library versions: LibreSSL 4.0.0, LZO 2.10
> Originally developed by James Yonan
> Copyright (C) 2002-2024 OpenVPN Inc <sales@openvpn.net>
> Compile time defines: enable_async_push=no enable_comp_stub=no enable_crypto_ofb_cfb=yes enable_dco=no enable_debug=yes enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown enable_fast_install=needless enable_fragment=yes enable_gtk_doc=no enable_iproute2=no enable_libtool_lock=yes enable_lz4=yes enable_lzo=yes enable_management=yes enable_pam_dlopen=no enable_pedantic=no enable_pkcs11=no enable_plugin_auth_pam=no enable_plugin_down_root=yes enable_plugins=yes enable_port_share=yes enable_selinux=no enable_shared=yes enable_shared_with_static_runtimes=no enable_silent_rules=no enable_small=no enable_static=yes enable_strict=no enable_strict_options=no enable_systemd=no enable_werror=no enable_win32_dll=yes enable_wolfssl_options_h=yes enable_x509_alt_username=no with_aix_soname=aix with_crypto_library=openssl with_gnu_ld=no with_mem_check=no with_openssl_engine=no with_sysroot=no
> vk4msl-gap# uname -a
> OpenBSD vk4msl-gap.dmz.longlandclan.id.au 7.6 GENERIC.MP#1 amd64

I've kludged around this in L2 configurations by running two OpenVPN
daemons on different `tap` interfaces and bridging them (along with the
Ethernet they connect to), but I cannot do this with a `tun` device, and
it's a really icky way to work around an issue that shouldn't exist in
2025 anyway. One daemon can do both on Linux simultaneously, it should
likewise be able to do both on OpenBSD.

When I use `proto udp6` I see the following in `netstat`:
> vk4msl-gap# netstat -nl | grep 1194
> udp6 0 0 *.1194 *.*

In this situation from OpenVPN on my Android 10 phone, I see connection
refusals on IPv4 (and strangely, "network is unreachable" on IPv6… I'll
blame Telstra's 4G network for that).

Obviously, `proto udp4` does what it says on the tin. `proto udp` seems
to behave as an alias for `proto udp4`. `proto udp6` is supposed to
listen dual-stack, making it possible to connect via either, however on
OpenBSD, it seems to be IPv6-exclusive.

How do I get it to bind to both IPv4 and IPv6?
--
Stuart Longland (aka Redhatter, VK4MSL)

I haven't lost my mind...
...it's backed up on a tape somewhere.

Re: udpate to hledger-1.42.1

Hi,

On Sun, Mar 30, 2025 at 10:24:50AM -0700, Greg Steuck wrote:
> Just realized I didn't update this port in this cycle. I tested that it
> works for me on amd64. I'm building it on arm64 now.
>
> I'm equally happy to merge now or wait until 7.7 is cut.

The diff works for me (in that it builds fine on amd64). Wether
this should go in now or after the unlock: no idea. I'd say yes,
because it's a leaf port and can't break anything else, but I'm not
involved in building packages for release ;-)

Ciao,
Kili

> ---
> productivity/hledger/Makefile | 135 +++++++--------
> productivity/hledger/distinfo | 308 ++++++++++++++++------------------
> 2 files changed, 202 insertions(+), 241 deletions(-)
>
> diff --git a/productivity/hledger/Makefile b/productivity/hledger/Makefile
> index 0336e939085..072d7271201 100644
> --- a/productivity/hledger/Makefile
> +++ b/productivity/hledger/Makefile
> @@ -15,132 +15,121 @@ LIB_DEPENDS = converters/libiconv \
>
> MODULES = devel/cabal
> MODCABAL_STEM = hledger
> -MODCABAL_VERSION = 1.40
> +MODCABAL_VERSION = 1.42.1
>
> post-install:
> @${INSTALL_MAN} ${WRKSRC}/embeddedfiles/hledger.1 ${PREFIX}/man/man1
>
> MODCABAL_MANIFEST = \
> Decimal 0.5.2 0 \
> - Diff 0.5 1 \
> + Diff 1.0.2 0 \
> Glob 0.10.2 3 \
> - OneTuple 0.4.2 0 \
> + OneTuple 0.4.2 1 \
> Only 0.1 2 \
> - QuickCheck 2.15.0.1 0 \
> + QuickCheck 2.15.0.1 1 \
> StateVar 1.2.2 0 \
> - aeson 2.2.3.0 2 \
> + aeson 2.2.3.0 3 \
> aeson-pretty 0.8.10 0 \
> - ansi-terminal 1.1.1 0 \
> + ansi-terminal 1.1.2 0 \
> ansi-terminal-types 1.1 0 \
> - assoc 1.1.1 0 \
> - async 2.2.5 2 \
> - attoparsec 0.14.4 5 \
> - base-compat 0.14.0 0 \
> - base-orphans 0.9.2 0 \
> - bifunctors 5.6.2 0 \
> - bitvec 1.1.5.0 1 \
> + assoc 1.1.1 1 \
> + attoparsec 0.14.4 6 \
> + base-compat 0.14.1 0 \
> + base-orphans 0.9.3 0 \
> + bifunctors 5.6.2 2 \
> blaze-builder 0.4.2.3 0 \
> blaze-html 0.9.2.0 1 \
> blaze-markup 0.8.3.0 2 \
> - cabal-doctest 1.0.10 0 \
> call-stack 0.4.0 0 \
> case-insensitive 1.2.1.0 0 \
> - cassava 0.5.3.2 0 \
> + cassava 0.5.3.2 1 \
> cassava-megaparsec 2.1.1 0 \
> character-ps 0.1 0 \
> clock 0.8.4 0 \
> cmdargs 0.10.22 0 \
> colour 2.3.6 0 \
> - comonad 5.0.8 2 \
> - conduit 1.3.6 0 \
> - conduit-extra 1.3.6 0 \
> + comonad 5.0.9 1 \
> contravariant 1.5.5 0 \
> control-monad-free 0.6.2 0 \
> csv 0.1.2 0 \
> - data-default 0.7.1.3 0 \
> - data-default-class 0.1.2.2 0 \
> - data-default-instances-containers 0.1.0.3 0 \
> - data-default-instances-dlist 0.0.1.2 0 \
> - data-default-instances-old-locale 0.0.1.2 0 \
> - data-fix 0.3.4 0 \
> + data-default 0.8.0.1 0 \
> + data-default-class 0.2.0.0 0 \
> + data-fix 0.3.4 1 \
> distributive 0.6.2.1 1 \
> dlist 1.0 2 \
> doclayout 0.5 0 \
> emojis 0.1.4.1 0 \
> - extra 1.7.16 0 \
> + encoding 0.10 0 \
> + extensible-exceptions 0.1.1.4 0 \
> + extra 1.8 0 \
> file-embed 0.0.16.0 0 \
> - generically 0.1.1 3 \
> + generically 0.1.1 4 \
> githash 0.1.7.0 0 \
> - hashable 1.4.7.0 0 \
> - hashtables 1.3.1 0 \
> - hledger-lib 1.40 0 \
> - hsc2hs 0.68.10 2 \
> + hashable 1.5.0.0 1 \
> + hashtables 1.4.2 0 \
> + hledger-lib 1.42.1 0 \
> + hsc2hs 0.68.10 4 \
> html 1.0.1.2 0 \
> - indexed-traversable 0.1.4 0 \
> - indexed-traversable-instances 0.1.2 0 \
> - integer-conversion 0.1.1 0 \
> - integer-logarithms 1.0.3.1 6 \
> - lucid 2.11.20230408 2 \
> + indexed-traversable 0.1.4 1 \
> + indexed-traversable-instances 0.1.2 1 \
> + integer-conversion 0.1.1 1 \
> + integer-logarithms 1.0.4 0 \
> + lucid 2.11.20250303 0 \
> math-functions 0.3.4.4 0 \
> - megaparsec 9.6.1 0 \
> - microlens 0.4.13.1 1 \
> - microlens-th 0.4.3.15 0 \
> + megaparsec 9.7.0 0 \
> + microlens 0.4.14.0 0 \
> + microlens-th 0.4.3.17 0 \
> mmorph 1.2.0 3 \
> - mono-traversable 1.0.20.0 0 \
> - network 3.2.4.0 0 \
> + modern-uri 0.3.6.1 3 \
> network-uri 2.6.4.2 1 \
> - old-locale 1.0.0.7 2 \
> - optparse-applicative 0.18.1.0 0 \
> - os-string 2.0.6 0 \
> - pager 0.1.1.0 0 \
> + optparse-applicative 0.18.1.0 1 \
> + os-string 2.0.7 0 \
> parser-combinators 1.3.0 1 \
> - pretty-simple 4.1.2.0 0 \
> + pretty-simple 4.1.3.0 0 \
> prettyprinter 1.7.1 0 \
> prettyprinter-ansi-terminal 1.1.3 0 \
> - primitive 0.9.0.0 1 \
> + primitive 0.9.0.0 2 \
> + profunctors 5.6.2 3 \
> quote-quot 0.2.1.0 0 \
> - random 1.2.1.2 0 \
> - regex-base 0.94.0.2 4 \
> - regex-tdfa 1.3.2.2 3 \
> - resourcet 1.3.0 0 \
> + random 1.2.1.3 0 \
> + reflection 2.1.9 1 \
> + regex-base 0.94.0.3 0 \
> + regex-compat 0.95.2.2 0 \
> + regex-posix 0.96.0.2 0 \
> + regex-tdfa 1.3.2.3 0 \
> safe 0.3.21 1 \
> - scientific 0.3.8.0 1 \
> - semialign 1.3.1 1 \
> - semigroupoids 6.0.1 1 \
> + scientific 0.3.8.0 2 \
> + semialign 1.3.1 2 \
> + semigroupoids 6.0.1 2 \
> shakespeare 2.1.0.1 0 \
> split 0.2.5 0 \
> - splitmix 0.1.0.5 1 \
> - streaming-commons 0.2.2.6 1 \
> + splitmix 0.1.1 0 \
> strict 0.5.1 1 \
> tabular 0.2.2.8 1 \
> - tagged 0.8.8 1 \
> - tasty 1.5 2 \
> + tagged 0.8.9 0 \
> + tasty 1.5.3 1 \
> tasty-hunit 0.10.2 0 \
> temporary 1.3 0 \
> terminal-size 0.3.4 1 \
> - text-ansi 0.3.0.1 1 \
> + text-ansi 0.3.0.1 2 \
> text-builder-linear 0.1.3 0 \
> - text-iso8601 0.1.1 1 \
> - text-short 0.1.6 2 \
> - th-abstraction 0.7.0.0 0 \
> - th-compat 0.1.5 2 \
> - th-lift 0.8.4 2 \
> - these 1.2.1 1 \
> - time-compat 1.9.7 2 \
> + text-iso8601 0.1.1 2 \
> + text-short 0.1.6 3 \
> + th-abstraction 0.7.1.0 1 \
> + th-compat 0.1.6 0 \
> + th-lift 0.8.6 0 \
> + these 1.2.1 2 \
> + time-compat 1.9.8 0 \
> timeit 2.0 2 \
> transformers-compat 0.7.2 0 \
> - typed-process 0.2.12.0 0 \
> uglymemo 0.1.0.1 0 \
> - unliftio-core 0.2.1.0 4 \
> - unordered-containers 0.2.20 3 \
> + unordered-containers 0.2.20 4 \
> utf8-string 1.0.2 0 \
> utility-ht 0.0.17.2 0 \
> - uuid-types 1.0.6 1 \
> - vector 0.13.1.0 1 \
> - vector-algorithms 0.9.0.2 1 \
> - vector-stream 0.1.0.1 1 \
> + uuid-types 1.0.6 2 \
> + vector 0.13.2.0 1 \
> + vector-stream 0.1.0.1 3 \
> witherable 0.5 1 \
> wizards 1.0.3 3 \
> - zlib 0.7.1.0 1 \
>
> .include <bsd.port.mk>
> diff --git a/productivity/hledger/distinfo b/productivity/hledger/distinfo
> index 082469fad7b..b86e19aff58 100644
> --- a/productivity/hledger/distinfo
> +++ b/productivity/hledger/distinfo
> @@ -1,348 +1,320 @@
> SHA256 (hackage/Decimal-0.5.2.tar.gz) = o3oCIEJOS8uMrh04hExwJ+4xREl1jQ0U/z4uClyKh6c=
> -SHA256 (hackage/Diff-0.5.tar.gz) = A8yE3t+xj6aT8LC3BU1l6Sw4jQZXz0WtXp++P+i1RVE=
> -SHA256 (hackage/Diff-0.5_1.cabal) = nIqXLurZ4Hm5DGWB+o71dVZiwQ3QdZUbMrgBFFcEr7s=
> +SHA256 (hackage/Diff-1.0.2.tar.gz) = zX4m09Xr9/LBp1Ja6+JR+8v/7ipjYttjS0viO541TYU=
> SHA256 (hackage/Glob-0.10.2.tar.gz) = avZyrIQn01y9QtZBQtwoj+qyZvC+ktrjxpbohg2Bc8A=
> SHA256 (hackage/Glob-0.10.2_3.cabal) = 3S3b7K6PhOj0ystbhWkBoZwlzqoR8lJdPuiNA0rLAIE=
> SHA256 (hackage/OneTuple-0.4.2.tar.gz) = F02ooPQATRewgYLLJbDgRfzl3h/eroTp11/eooZ6q1U=
> +SHA256 (hackage/OneTuple-0.4.2_1.cabal) = 3XJm+YPaKXDlZiFordgQ2rrauzpLubE3GB6vwKx+pNQ=
> SHA256 (hackage/Only-0.1.tar.gz) = q3qhk+jCV9O9prCzwcvPdM2qhasIyyDC3WK6JIwasmU=
> SHA256 (hackage/Only-0.1_2.cabal) = xgM9GB4PgC6ehUP2g/qcUK6wHP32yDzVu3L7R6qGOwc=
> SHA256 (hackage/QuickCheck-2.15.0.1.tar.gz) = o7IhbduvSB28gkFLYSD4tybZads/C1HyCnpFQl7zbn8=
> +SHA256 (hackage/QuickCheck-2.15.0.1_1.cabal) = DP0ze7nm+/CSVb0ku0mKFW8dm81GU5ashleyUDS57jE=
> SHA256 (hackage/StateVar-1.2.2.tar.gz) = Xks52jlWVqWYJ7AoBQiq/ccDNXmLUOXW/VJZYCYlGCU=
> SHA256 (hackage/aeson-2.2.3.0.tar.gz) = 2qJc9CglatBdIfK/pEB3wbFNbHhLeTCiAu6QHxHMa6o=
> -SHA256 (hackage/aeson-2.2.3.0_2.cabal) = AR+i1n16ghql7FyCWtyRm7Bn1C3ej6x8bl2yMjmliGY=
> +SHA256 (hackage/aeson-2.2.3.0_3.cabal) = YeVZ8rrWGpiqxWTypP2JLSHp4XEuFOPbkzJjF6qUSps=
> SHA256 (hackage/aeson-pretty-0.8.10.tar.gz) = KiHyzXityxSc66dwI57WZFGVUpEedoAXKxj/aVz6euU=
> -SHA256 (hackage/ansi-terminal-1.1.1.tar.gz) = fkSPzfilqX89MOUWj4NGQd+ZRfr6ZfLofXP/lVahvEw=
> +SHA256 (hackage/ansi-terminal-1.1.2.tar.gz) = qNBKPgRR4ipkmakjEfDfEZbcZbaH330Q4/MNkkIBVrA=
> SHA256 (hackage/ansi-terminal-types-1.1.tar.gz) = 8uUzPreNpfTdMw/KDIGlknbMFQxiVkfNIPV7fyl6XSU=
> SHA256 (hackage/assoc-1.1.1.tar.gz) = IxFJt/7wn13ZWvUSKGFeOyltvQ+q3soFPgZEpLE7D/Y=
> -SHA256 (hackage/async-2.2.5.tar.gz) = GBhHPrq5ISr60u12KXrv3l+ui11EBNrzaTmuzmqPFvc=
> -SHA256 (hackage/async-2.2.5_2.cabal) = z55q+6jgGDDKDTKhK5jUgc84loh2LIDRhwodsgYevzU=
> +SHA256 (hackage/assoc-1.1.1_1.cabal) = CrObTR/rTKypWsbjFPSHgrJ6hqa40fXo3Evp++0RGF8=
> SHA256 (hackage/attoparsec-0.14.4.tar.gz) = PzN/5YYkVl3hJCb2B8I+YMewnIa04638gnyhiMmXnmw=
> -SHA256 (hackage/attoparsec-0.14.4_5.cabal) = 7HCVObiB1kMWIL18QPv6aAqvSpjG81tRU22PRVaCsa4=
> -SHA256 (hackage/base-compat-0.14.0.tar.gz) = 8UbeZkrIOOvhjsk2Dfgto2YBSdx9Uf0pvLYdZTt5nFA=
> -SHA256 (hackage/base-orphans-0.9.2.tar.gz) = YhGQCRaVW4RofGG15PqYzhEOURqWCGt6k/Bt1jyXupM=
> +SHA256 (hackage/attoparsec-0.14.4_6.cabal) = NRKdCrF0HwAPGn0vyDlUSRnub7uPLW5/CmKcQfkQNfM=
> +SHA256 (hackage/base-compat-0.14.1.tar.gz) = dOZVVB5kXo/Hqt4eahtpc1Yb4LypNpvBYjqjRQGaNek=
> +SHA256 (hackage/base-orphans-0.9.3.tar.gz) = F6NQechxkBRWDAKNmAXsEwG5AJcq3yEuAK8j/j6/q9g=
> SHA256 (hackage/bifunctors-5.6.2.tar.gz) = EIapKFBh7tDCxdPLZaoiPe/VL8ptBRW7ad3y28PZaXo=
> -SHA256 (hackage/bitvec-1.1.5.0.tar.gz) = g9J87lvh1TQt2/OZmdDI6lTLQz0Ike6lRx+/qin43sU=
> -SHA256 (hackage/bitvec-1.1.5.0_1.cabal) = yz79drcanoqTD0zl2Mka3LY6wNjcPS1KEy1JC9Hss5E=
> +SHA256 (hackage/bifunctors-5.6.2_2.cabal) = EVpiHE6qq7B4NPnk3TNx4h850DQwUGL0vVzXLC+IgNI=
> SHA256 (hackage/blaze-builder-0.4.2.3.tar.gz) = ZikYdCNrc0KtqwM+PN2uQUojooZd+0QJXfxOC51GcDs=
> SHA256 (hackage/blaze-html-0.9.2.0.tar.gz) = ZVQu8592RKPXavyt65dtPjNMaUdRa3MT/LWRZc6hYI8=
> SHA256 (hackage/blaze-html-0.9.2.0_1.cabal) = hcQvhPTq0sSIRPvghlBprdO7O7MyLThgfpPVUVpMnFg=
> SHA256 (hackage/blaze-markup-0.8.3.0.tar.gz) = hgasi0off48bvAdwsnUum2+IzMn73LszqiBXfQ5ZMOg=
> SHA256 (hackage/blaze-markup-0.8.3.0_2.cabal) = An8hi4HSinwKM7k9RWxOWqktFF6dzuFINPutc6Oa1+Q=
> -SHA256 (hackage/cabal-doctest-1.0.10.tar.gz) = gcrQ/EhhVyncvuw+zRK7QpdX8pmsrRS5LvC5VxA+lNM=
> SHA256 (hackage/call-stack-0.4.0.tar.gz) = QwvPijQE9+VTGVc8C4B7E1aUbwyPKJuz2a+yecY2uHs=
> SHA256 (hackage/case-insensitive-1.2.1.0.tar.gz) = KW3BfgxfPfs9gs7YPkycRMM47N50myeLbq5RLx0E5AY=
> SHA256 (hackage/cassava-0.5.3.2.tar.gz) = OtJdIl0sDbVO8XNy2L8gY1a8t+AqDn/zj3B48UHQqck=
> +SHA256 (hackage/cassava-0.5.3.2_1.cabal) = suUigq9sp7Qr3Q+0JwebkIorLks1C3ffGc20XuT+eHY=
> SHA256 (hackage/cassava-megaparsec-2.1.1.tar.gz) = RjGWMzdnXbFFwr+XUr8ntLrmi3xI/8rGC0KPVXtj54Y=
> SHA256 (hackage/character-ps-0.1.tar.gz) = It5x/eOLI20+kWioMrXh510ftPQChme990eztMjBUpw=
> SHA256 (hackage/clock-0.8.4.tar.gz) = aumJiv54il4zTNX61dGKPC6OWfoJqve5V9uzikdn3y4=
> SHA256 (hackage/cmdargs-0.10.22.tar.gz) = uLEuf4eVzxMDe7Bi1FO4bHiOrmJVhYb1npQZqr5um+8=
> SHA256 (hackage/colour-2.3.6.tar.gz) = LNNdzWlEpavJ8Qil617lZLax+pip7HnO/MILWImR+HE=
> -SHA256 (hackage/comonad-5.0.8.tar.gz) = 72zfLMKSzEPuaqlsWBsjX96oq0Sgv/sk3HmuKy7zPRM=
> -SHA256 (hackage/comonad-5.0.8_2.cabal) = Sk2/vQP7SWOYdxD8qZTotWJL0Foz5flbdYGyb4IpxeM=
> -SHA256 (hackage/conduit-1.3.6.tar.gz) = M+aaSMdCsgxXqFTKmrnm4hfV83OHrrvY9sBoWR7eUY0=
> -SHA256 (hackage/conduit-extra-1.3.6.tar.gz) = iVDDgEnYksOFkNOJvtSez4gGcfWOxj3UcJ2f49S48VM=
> +SHA256 (hackage/comonad-5.0.9.tar.gz) = afsOtJqABVqbdtMdClZId3xAUKyNv1apNEuGLth4p4k=
> +SHA256 (hackage/comonad-5.0.9_1.cabal) = da3teb9YPJCOTkaHwK4GfyVuJQdTa3X1j/undIdnw1M=
> SHA256 (hackage/contravariant-1.5.5.tar.gz) = Bi/WZYDXqtC1upPmRP+n/u5pJ271DyDU7Z8d63ZC3/o=
> SHA256 (hackage/control-monad-free-0.6.2.tar.gz) = Y8gwvSryPjcuv+5ijZ9TijLYNoz3T4lzcNg5v457S8E=
> SHA256 (hackage/csv-0.1.2.tar.gz) = jPQ0QjJfqhNo+bVa2VK+zPZ32ZgM3/o9cKfyBKI65gA=
> -SHA256 (hackage/data-default-0.7.1.3.tar.gz) = dgQHQgDh1GMnAePxlgmfz79ABbOmvuJ1/W4A9LqsphA=
> -SHA256 (hackage/data-default-class-0.1.2.2.tar.gz) = 9ADCAV7feDafRd9PjaEXvLXXQjTjBnRf/BnQ1lr3ruM=
> -SHA256 (hackage/data-default-instances-containers-0.1.0.3.tar.gz) = ud36/Q5jmxufcAl9JhCiIKmLO5udTcEcZoFhOEsxkys=
> -SHA256 (hackage/data-default-instances-dlist-0.0.1.2.tar.gz) = 4L3xkMGlA3piYBYWnn36q8S8wrJ8G976heKXZnA+ngs=
> -SHA256 (hackage/data-default-instances-old-locale-0.0.1.2.tar.gz) = cICY/wFIt4YUGYiFjwmhR5tLegkuV4rAln2HW+HJuG8=
> +SHA256 (hackage/data-default-0.8.0.1.tar.gz) = zghd6OwhlvDB0wrwrYpRfVc3ye39Tr+7SehoffxAtso=
> +SHA256 (hackage/data-default-class-0.2.0.0.tar.gz) = CuUwxPsL1sioujmUKczZx1+cdpYEkRcXj0zusr0I1bQ=
> SHA256 (hackage/data-fix-0.3.4.tar.gz) = jfBS0YwEernpIAU2qHmbWvOZfr7Luwkac4S2voQWqzc=
> +SHA256 (hackage/data-fix-0.3.4_1.cabal) = 7ni+YWjKCHjWcP7elXGV096/SjeoBtE9chgrJ0kBJhs=
> SHA256 (hackage/distributive-0.6.2.1.tar.gz) = 1zUTkuB49YyqRmMKS5xkPh4und3uRYSMXINY57Exa5E=
> SHA256 (hackage/distributive-0.6.2.1_1.cabal) = D5n1VBzKBKz4m2RDKwNCK2QI6DCo3/MObEM07xpIaAw=
> SHA256 (hackage/dlist-1.0.tar.gz) = Fz1jcyi7Fz/MNl8w0p/0qUKSoeDlVYrrPfwR3oFRARU=
> SHA256 (hackage/dlist-1.0_2.cabal) = hUcnWUxagWqz0Q8VsbxP7a+eP30e9Reiu5AR8puiYdI=
> SHA256 (hackage/doclayout-0.5.tar.gz) = sDBBAkXZ3qch5b11URuVvAOA7+FZBm85FJFuOtKvJJY=
> SHA256 (hackage/emojis-0.1.4.1.tar.gz) = gADWGXsdQ7mzzQcRw08SBCDzWNBCUWfS+35hbWVHCuU=
> -SHA256 (hackage/extra-1.7.16.tar.gz) = JQxtQ8MLLHHyz0mKEOaeQ6wDWXTTgZUpOF2Z5CznfHA=
> +SHA256 (hackage/encoding-0.10.tar.gz) = 8tcLUIol9vIO5UCCplpLiovj+aSwNZ5bMrbfmwRRtQw=
> +SHA256 (hackage/extensible-exceptions-0.1.1.4.tar.gz) = bOXogBdgOFpAjatxtTVQ+HYp5mGyYL3CzUHGpDm244g=
> +SHA256 (hackage/extra-1.8.tar.gz) = L6TOXq5QVgu6gPGIORPPLtUrPYf9KQ2uJ9g4yU9TiaE=
> SHA256 (hackage/file-embed-0.0.16.0.tar.gz) = XxhnLv+TY1VVfN0WOQVFEgXX7iJ0LtrDE90nz0Kj9BU=
> SHA256 (hackage/generically-0.1.1.tar.gz) = BMWkNr7EsEH3GnM/VqG9f0NfY93o0+tcH0jVW028Q88=
> -SHA256 (hackage/generically-0.1.1_3.cabal) = GxtjisAi0kBL7LbBF7BL/cIkdCm6WFliccos3EEyiMI=
> +SHA256 (hackage/generically-0.1.1_4.cabal) = P2Qnj1xYLdfGljlnsSkAebzQO4NImJ+Qmsm9ly3cRS4=
> SHA256 (hackage/githash-0.1.7.0.tar.gz) = GtXnwmvZycTkwyMiBmlLFThF/hHyJ+OdIU7vDZXzMNQ=
> -SHA256 (hackage/hashable-1.4.7.0.tar.gz) = O67kyQJ6CIMNFI7FJMvARx3mReHoQm1GeA7ydY3w6No=
> -SHA256 (hackage/hashtables-1.3.1.tar.gz) = bz1A6yKrhyebmgv1HCIwdwayQMkKZkyCv64jkiaMWcM=
> -SHA256 (hackage/hledger-1.40.tar.gz) = Z51W0UI9CYak/gH8gC9Et0BUpZn2vF9m7DO92tJdNKE=
> -SHA256 (hackage/hledger-lib-1.40.tar.gz) = caOKj+VrnvUARGGz1DpTp6kgYMQSNGrk8QNS+ea5ahY=
> +SHA256 (hackage/hashable-1.5.0.0.tar.gz) = 5Ys6jhjaX2zX6Tfl/Wg+UAux+CdrN2gml1kRnKDN22o=
> +SHA256 (hackage/hashable-1.5.0.0_1.cabal) = LyMUbL4DJQKZJ7IhZHaVpMfW6XVI/3MREJeeNDYfWO8=
> +SHA256 (hackage/hashtables-1.4.2.tar.gz) = yg4pn+5sDJGPRc4JB6+/8cOJGZi7eS0XF+TV8SNQ7w0=
> +SHA256 (hackage/hledger-1.42.1.tar.gz) = eNiPFUHi/JqiqGssnLQs/+QbFpf14NlPA2mNN9nYgjM=
> +SHA256 (hackage/hledger-lib-1.42.1.tar.gz) = 1O7DZ1fHg98p3dTgXjY3bWGwI6Lz/gc43AkgnmLfqTA=
> SHA256 (hackage/hsc2hs-0.68.10.tar.gz) = b04014j+LKcJHuChAwfuinwGChuokPK/+tFqfU1c73Y=
> -SHA256 (hackage/hsc2hs-0.68.10_2.cabal) = YOeLbGDcMqd85sN+1cpOg4/F928Cg272TZPNIcwAIyU=
> +SHA256 (hackage/hsc2hs-0.68.10_4.cabal) = cl722gPT1uMy203go1vuRdcuTTHezF7H8VPmg3r18D4=
> SHA256 (hackage/html-1.0.1.2.tar.gz) = DDVJXqM9Zeacabx0QeyOGvafu0NDPCqjQGwKE6OrMGE=
> SHA256 (hackage/indexed-traversable-0.1.4.tar.gz) = WL4Jr9861aJcKqDSp9+A1gLfCfTnbTq/K3zbDnXQOyI=
> +SHA256 (hackage/indexed-traversable-0.1.4_1.cabal) = QtnoSmWgwXwkgjPKuYrahy/2FA36JNEJ1usoUgTQfn0=
> SHA256 (hackage/indexed-traversable-instances-0.1.2.tar.gz) = PCu2L7oUHWaWF3Bw1juIvFaxlLxg9rc9ImOwJE4vx8E=
> +SHA256 (hackage/indexed-traversable-instances-0.1.2_1.cabal) = aN8PyAcK4sFfnm/r8USf7jZMExptHpPKxF54lbqG3Yk=
> SHA256 (hackage/integer-conversion-0.1.1.tar.gz) = wYFkoEgHMxD2NT68ZMkDe1KkuCmZY84F4Ce89g4iFVo=
> -SHA256 (hackage/integer-logarithms-1.0.3.1.tar.gz) = mwqfn6tgmxXNAVhlch+wX3RKG8d66S/RM4ct5Si76n8=
> -SHA256 (hackage/integer-logarithms-1.0.3.1_6.cabal) = BZWhbUWMnFyqQl3I67612a3/sMja9HIMHZPfz8Md1pA=
> -SHA256 (hackage/lucid-2.11.20230408.tar.gz) = DxEpkP7pxbHGLGTJJhRyclNHge2KciXTndAkimcPRB0=
> -SHA256 (hackage/lucid-2.11.20230408_2.cabal) = 0nV6jBkKlC1JMTUGkmQ6X5Ts/t7UZ5aaA9EF2cNsDo4=
> +SHA256 (hackage/integer-conversion-0.1.1_1.cabal) = lB1K4W4hJMv/Xe/iq+20nvyOA6WU+BcDW/Ixoxfmwck=
> +SHA256 (hackage/integer-logarithms-1.0.4.tar.gz) = apPHbCUYy+LXKrF9pq5G2MrpPL+3xaWtV4P5A8FEj0U=
> +SHA256 (hackage/lucid-2.11.20250303.tar.gz) = u+YjV+lEVJzn9FyPmY6CtNkMWv9kYkRvsBzzLN23RPQ=
> SHA256 (hackage/math-functions-0.3.4.4.tar.gz) = JEHY3VDv9EU1YEiyoM34jEp7oPVmFCk9SXXhsIH6+Po=
> -SHA256 (hackage/megaparsec-9.6.1.tar.gz) = oyJXvoR9vnGsItUSqxFfnOJvoIvNvqfKi1JWoXANy/8=
> -SHA256 (hackage/microlens-0.4.13.1.tar.gz) = ClSr7o/09q60vqB4NAmj29KKTnqJK6yRaw+2pxOC1/w=
> -SHA256 (hackage/microlens-0.4.13.1_1.cabal) = /CVuK1146OTzmz3TWcV7jBnfUIU6hur48VShdEGlpR0=
> -SHA256 (hackage/microlens-th-0.4.3.15.tar.gz) = D86zJxKXrSmiv6PmKVPeu7RNulE8Q5o2Os9iX5VORck=
> +SHA256 (hackage/megaparsec-9.7.0.tar.gz) = ue1CNiW/IK56ckgNQNLdFgGKZ+LsRa+4QKNgeqkx7Jc=
> +SHA256 (hackage/microlens-0.4.14.0.tar.gz) = VnkqYT5PsGNL3t9U3LdzrEuq6L4P7IvYjhu4t6ZJki4=
> +SHA256 (hackage/microlens-th-0.4.3.17.tar.gz) = HXYsAnyjMq6QbLAx6HpCPCu+3r47udmIGIaSpd5MCpQ=
> SHA256 (hackage/mmorph-1.2.0.tar.gz) = YTOAWOtna0ZqRiykXVn0Nqd6O9a4FuQmjG2IUitqQoA=
> SHA256 (hackage/mmorph-1.2.0_3.cabal) = 35shPsGPgRyzE3tHjRSPPxaA7kP4Qct3WDX6KC/bApU=
> -SHA256 (hackage/mono-traversable-1.0.20.0.tar.gz) = 5iHqlTyUstr8WChhMuna50ZKB8aWfwxZHJFpaNP5NUU=
> -SHA256 (hackage/network-3.2.4.0.tar.gz) = LHB30IJnJ8EVbuA8MAaeGcCsiutl+KVO1kLMcZmct5s=
> +SHA256 (hackage/modern-uri-0.3.6.1.tar.gz) = Akb5z87RInq+OmQD7qzGtfeffjMZdZpN0f00HBJFT+k=
> +SHA256 (hackage/modern-uri-0.3.6.1_3.cabal) = H/APvX5pWwaVuzJaH+N1zIyDtVzXt8CK8INSaAmo12o=
> SHA256 (hackage/network-uri-2.6.4.2.tar.gz) = nBiJcxJuiTJQuIHyDogR3KBsIjwjQCsG96Hy6ZV5cig=
> SHA256 (hackage/network-uri-2.6.4.2_1.cabal) = b/+1c3OWK1ZRotuLCvcyCYs78CmnztdqmFVhXeICZYg=
> -SHA256 (hackage/old-locale-1.0.0.7.tar.gz) = 26+L9riI+5iEVwUHkpaiPD9A7i9EnfcxL39/HeGNe1A=
> -SHA256 (hackage/old-locale-1.0.0.7_2.cabal) = +pmL4sfgDNJqbpB1vqeQyq85Msqj6Ul61pvCA4DdaRE=
> SHA256 (hackage/optparse-applicative-0.18.1.0.tar.gz) = Y4EatP0m6Cm4hoNkMlqIvjrMeYGfW7UAWy3TuWHsxJE=
> -SHA256 (hackage/os-string-2.0.6.tar.gz) = IvzH1fxmZ2td/Fe3FNLK+TzOLVp50kIWg1L56w/i8Yo=
> -SHA256 (hackage/pager-0.1.1.0.tar.gz) = Ph5PLKF75t1o0tSA8p56dwwPfKMQmqGYDaZ32WzU7vM=
> +SHA256 (hackage/optparse-applicative-0.18.1.0_1.cabal) = 8wlzhhrH5+v/Bf+MfD0eTSg6HzhQ4cwUEGsGk+wbbYI=
> +SHA256 (hackage/os-string-2.0.7.tar.gz) = M5w1/TopBSLyPeTjNShCPP0LCo8ilGsLmBaoF7kmy6A=
> SHA256 (hackage/parser-combinators-1.3.0.tar.gz) = kxDvDUn4qJIqzaELHN7ZhUy+4E3qcX7/xu5ZgwcuREc=
> SHA256 (hackage/parser-combinators-1.3.0_1.cabal) = hllXPg1EPVc/W1P4G4Ha+9yYjSgrkMEePac1YrTqeHY=
> -SHA256 (hackage/pretty-simple-4.1.2.0.tar.gz) = PLR8OXFZnLjAMw4aLb1jxnv75XC9h5Uk7oAugeewJzY=
> +SHA256 (hackage/pretty-simple-4.1.3.0.tar.gz) = KqsdsBzbHMeEey0R2RWsgKffjhK8DlVn5TMak7eC0A4=
> SHA256 (hackage/prettyprinter-1.7.1.tar.gz) = Xm6mkDEU+hGPzDWWM9+37N3suSwGyFPQKne3KyUfC0U=
> SHA256 (hackage/prettyprinter-ansi-terminal-1.1.3.tar.gz) = gTc5MIrWBQYgV4mU7/4hBYoXCjQXFqz1JXP65CtbHbM=
> SHA256 (hackage/primitive-0.9.0.0.tar.gz) = aW1L0pHJTXNhQtYYIRfcpCWNPvKL/v22SayLXs0Jmcc=
> -SHA256 (hackage/primitive-0.9.0.0_1.cabal) = LgjFQJ41WcfxZp71DpoNmjl+aOz1ERDV4s7fBc3X2Tw=
> +SHA256 (hackage/primitive-0.9.0.0_2.cabal) = 3iC/Tv8flyCIhUyO/abqyi0xR6/2IjLDcH8FkVJjh1k=
> +SHA256 (hackage/profunctors-5.6.2.tar.gz) = ZZVde1BSWko7zNqx2YLSrjQol/04FA1alLXvOADYySo=
> +SHA256 (hackage/profunctors-5.6.2_3.cabal) = 4Xi6RGiYIyZlZibiCJ4pb2RIXmj93cn0R23NXWErT3g=
> SHA256 (hackage/quote-quot-0.2.1.0.tar.gz) = Z9wlkJxbm7NzxmqcnBch0ec5Fb1VGPQtH5e3k/QuTfc=
> -SHA256 (hackage/random-1.2.1.2.tar.gz) = eQ9NwtIyfEU/9qrHvxU5n9Ej1V6SeTX2j4S130LZpLQ=
> -SHA256 (hackage/regex-base-0.94.0.2.tar.gz) = e5lAj1gPW7Z6HEE+C8c1iGYIJRMxrTYyICDyFprqLvE=
> -SHA256 (hackage/regex-base-0.94.0.2_4.cabal) = AyKy/NE1jzNV4Mhgjvpg0nsU0cnUdkUdvLkYE2O9iyc=
> -SHA256 (hackage/regex-tdfa-1.3.2.2.tar.gz) = kz7VxUJGu1DjNdhriE/7cLwlK193b7KR8WKoCie9dbc=
> -SHA256 (hackage/regex-tdfa-1.3.2.2_3.cabal) = 5eoVsomMYsY/rnmHhLxAKzhicz2XpPfuPsT5rm9EdHg=
> -SHA256 (hackage/resourcet-1.3.0.tar.gz) = 7GAXhe5CogHzKtsgW4aFyYPxh1exvTPS6AbVceD5mWs=
> +SHA256 (hackage/random-1.2.1.3.tar.gz) = 6cgZJqfR5AMo9kX3NZKzHvycYxWJZpp/EwaHucwwUdw=
> +SHA256 (hackage/reflection-2.1.9.tar.gz) = xqfV5BrQ7hoFxmCs9P00sh84Mw7sFl0ka3//s5jln7M=
> +SHA256 (hackage/reflection-2.1.9_1.cabal) = 6vKNyYhHGKMG7R4MIVoks2xouKo75CVhf2bYhtQ/4eA=
> +SHA256 (hackage/regex-base-0.94.0.3.tar.gz) = 6Mot7lmMeQ3RwcQ1m90eSV2biB9aofU5wi8N1VY3R78=
> +SHA256 (hackage/regex-compat-0.95.2.2.tar.gz) = 4n7R2MNhanvUccZpUMfdO73+Q12oMZ1ke/6hIDG7MBw=
> +SHA256 (hackage/regex-posix-0.96.0.2.tar.gz) = flcEYMNcXe7FTRukYwXdtGecfUquhPYx3Qxh2q6qgVA=
> +SHA256 (hackage/regex-tdfa-1.3.2.3.tar.gz) = hXG8+Fgl5QPHaNL/uGj8XdzM7QatOFIo8e2F7m0y3G8=
> SHA256 (hackage/safe-0.3.21.tar.gz) = LIH+pCu+eexIh3QEPB7FTzDvugWd+aTzaBzoPYUAfwE=
> SHA256 (hackage/safe-0.3.21_1.cabal) = uSjqFkWHZ4gVWzjOhcfkbRV6G7QdKwX1dwsT1gvGo/c=
> SHA256 (hackage/scientific-0.3.8.0.tar.gz) = E7NDvKiqJtdxjlLmIuWhGAVmU+2vy8fMxTM75yFyGM8=
> -SHA256 (hackage/scientific-0.3.8.0_1.cabal) = IUji5qsfH9Ls7iUGfg7mDaiGvolzbopU1JVWQH1xE84=
> +SHA256 (hackage/scientific-0.3.8.0_2.cabal) = uoOmcB3QEQE4RDdXrKSkJ4avqUJytzBF74eP2GDRcy4=
> SHA256 (hackage/semialign-1.3.1.tar.gz) = Zuh7wlT/7C7pCL9iXELTtzYyONarHPuok0u+51kMnfc=
> -SHA256 (hackage/semialign-1.3.1_1.cabal) = Drr9ucO/rIxTEZma4ZURXBRSogWyc9VOexFFplwb9hA=
> +SHA256 (hackage/semialign-1.3.1_2.cabal) = 3+UVqeQyMPUwhWSmSaBOoVOEme2YuURkS3e+1TlLnes=
> SHA256 (hackage/semigroupoids-6.0.1.tar.gz) = HVMgMIYkFPXU8vbwAXg/d6oU5fBe6OPEotISn8opzB8=
> -SHA256 (hackage/semigroupoids-6.0.1_1.cabal) = 9liS9l+UHHNoM0vf3Nudsq05UlAulOiHhaWkKPovP04=
> +SHA256 (hackage/semigroupoids-6.0.1_2.cabal) = v+4GptiAOKiN3RD8IcIwv17joU0FhNxqt61UqSUsLCE=
> SHA256 (hackage/shakespeare-2.1.0.1.tar.gz) = bLZV83NN4bkg+vZ/MT1F4x/H+PzwouAKRfmG2OEH0i8=
> SHA256 (hackage/split-0.2.5.tar.gz) = UtpAToOXwasjg1TI1P2afpxcrIhJzCzi5F+syF50qRM=
> -SHA256 (hackage/splitmix-0.1.0.5.tar.gz) = nfB6lhHvRfGxJYoLQS9NAskgJI9p0uLOjM2jKPfhMAI=
> -SHA256 (hackage/splitmix-0.1.0.5_1.cabal) = yqm0qSq/FJbH9qPA9ONXQmpUiAB3y58E4mCov6A0t3s=
> -SHA256 (hackage/streaming-commons-0.2.2.6.tar.gz) = AYCViogusPYmK4Ev6IbCsbgoVHS1uVj4FK5PBUCfv3k=
> -SHA256 (hackage/streaming-commons-0.2.2.6_1.cabal) = 1cb7me/U5xvbA1HVXy2H4WwRiA9CmY45Nj62PwV64ks=
> +SHA256 (hackage/splitmix-0.1.1.tar.gz) = 1njEGmA6YgMs9+X4M2u4IiyTmQ5LWciykbfKJsfrEsc=
> SHA256 (hackage/strict-0.5.1.tar.gz) = d3GSgMKoYxLnSCJ7+nMu6q4OffSNV6zDwuW3sHr+L4s=
> SHA256 (hackage/strict-0.5.1_1.cabal) = WMNzt8d0jLtKWmyMFQc/maHBCpqbtolKwz9Dpc25AfI=
> SHA256 (hackage/tabular-0.2.2.8.tar.gz) = y30G6ux5Rc132yOA7UqbegSMX2q8+6dmwygii+AzI30=
> SHA256 (hackage/tabular-0.2.2.8_1.cabal) = OYCfSP5xWCXwUnaqN+0Ve6g0II3HgzbzS6ttpkEwi9I=
> -SHA256 (hackage/tagged-0.8.8.tar.gz) = oIP6eDVRYgPBaEM6HI38ApCpSwX+2rVmrQZA/JE3pqc=
> -SHA256 (hackage/tagged-0.8.8_1.cabal) = kZPe+9492plyNszBGh2z4HPMUx/lI+E+llnfd2/rCzI=
> -SHA256 (hackage/tasty-1.5.tar.gz) = ylz3hSohDmkdTc5n7jTefMuK45Cjpo7P/eMH4ybQKaw=
> -SHA256 (hackage/tasty-1.5_2.cabal) = jaP0f/95BxT31nZpLxIHqsFWtB9wXFXxTR2BR6dRJks=
> +SHA256 (hackage/tagged-0.8.9.tar.gz) = barYjrtBS6alVtKJjSy+dlDkJ2AQ46bu2Tna9UuVZ4Q=
> +SHA256 (hackage/tasty-1.5.3.tar.gz) = VKDHtkSBOvhxo3JqyHcbXhe1FYx5KnrPj54tOuk2B4A=
> +SHA256 (hackage/tasty-1.5.3_1.cabal) = nVbqnbwnT8hT/FMTc7LJG/42DiFGDCxqWDiJfYbj9tA=
> SHA256 (hackage/tasty-hunit-0.10.2.tar.gz) = WvAfp8HvmLMk2gYuNveZhqixuD/wz2/VP5XZdrQeA/Y=
> SHA256 (hackage/temporary-1.3.tar.gz) = jEQpk2lLX/yoI86GSvlb0oQftSZO5RHGHPSMxx2HmJA=
> SHA256 (hackage/terminal-size-0.3.4.tar.gz) = sPBw1pJs2qzzpBLFUY5cI6/KHg7QCAilMoyW5Gi2f0k=
> SHA256 (hackage/terminal-size-0.3.4_1.cabal) = IdfxMg7rhhd+hg7Aej2OdRCXextBWpbrti7krXKVV3A=
> SHA256 (hackage/text-ansi-0.3.0.1.tar.gz) = AHi24a37P7u04kHiARaCnD7eAvOQbrKSq0VAyegvOEY=
> -SHA256 (hackage/text-ansi-0.3.0.1_1.cabal) = pjsvHI/+VyXO7JbqfYNUK7Asq8apW6HPv5fsAp07I5I=
> +SHA256 (hackage/text-ansi-0.3.0.1_2.cabal) = EMnbfcHpFLz470LK00cRCaX5eH55VfkHuBgnBgmKWa4=
> SHA256 (hackage/text-builder-linear-0.1.3.tar.gz) = Scu7v0UV7Ovjg5cQ5b9iQCc+CcPeO7tdpn7mHL96gts=
> SHA256 (hackage/text-iso8601-0.1.1.tar.gz) = nerSt87q5A/g/AYL1UeVwy6ZJsnRrrro+bmmIfuoggI=
> -SHA256 (hackage/text-iso8601-0.1.1_1.cabal) = CvUPbS6EebmpVsnGEuwnDqCd9MeMiMWxvdmAZvV21z0=
> +SHA256 (hackage/text-iso8601-0.1.1_2.cabal) = 4HpiXu+WkziZK/m7qOXcc/B6xl+ZG6Y2uPEXWJDRWEk=
> SHA256 (hackage/text-short-0.1.6.tar.gz) = gXPqE419w5h0e2NgEr9ueeFxhlYLinp/yeZFbXhVbqs=
> -SHA256 (hackage/text-short-0.1.6_2.cabal) = WVPcFMcbYEftqy3InpImeP9cvi6Y0WuecHgVAIOUC+Q=
> -SHA256 (hackage/th-abstraction-0.7.0.0.tar.gz) = soVMYS8vpK36Hsu0CJoiEf2csyEK7Be6SkVa5IayJyE=
> -SHA256 (hackage/th-compat-0.1.5.tar.gz) = gfVfr8evrXdjwJy4t7QWXKN2Xtz3D/pCxzkwQ6E4Kh4=
> -SHA256 (hackage/th-compat-0.1.5_2.cabal) = EppZujzPzQYZL9baiZ4nEa4nakZpFaBHvWcn5KAyHS4=
> -SHA256 (hackage/th-lift-0.8.4.tar.gz) = +cV3I41Lpl/j54vHfwzKVPF9AsD2B1skh9pcY720phs=
> -SHA256 (hackage/th-lift-0.8.4_2.cabal) = LzLIeKQqal1yVRRVbVhR2KY6NoowGXCUjTctBAgmjLM=
> +SHA256 (hackage/text-short-0.1.6_3.cabal) = Qb6UzNP2ZGq2mwsFxRMOo8eRGkWYq5uRkvIa0lppFjo=
> +SHA256 (hackage/th-abstraction-0.7.1.0.tar.gz) = +bYYSrpMa2HdDZb32tQaTJ2woB082/mTp9hgSI8cBMU=
> +SHA256 (hackage/th-abstraction-0.7.1.0_1.cabal) = MBFAPYWwBwYw4z1muTcFNczR4OZyrlj4R1ULKxW7T9g=
> +SHA256 (hackage/th-compat-0.1.6.tar.gz) = t4GgwFmHK8lUBtAOmPb6fZ6B50RzD3UYZYPLTc6gpOs=
> +SHA256 (hackage/th-lift-0.8.6.tar.gz) = BDCa1w74DtBU69pbfTSmZkIBdgQBn55ErTIe7ASh7x8=
> SHA256 (hackage/these-1.2.1.tar.gz) = F9bZMzZe2r+AGhaELBQDvdN8xTAPqi/MqYDezasi5N4=
> -SHA256 (hackage/these-1.2.1_1.cabal) = wE9XNTGzeGRQawcQRuAQp6aq0RZQz4lUZ/nyedATC4s=
> -SHA256 (hackage/time-compat-1.9.7.tar.gz) = yY++oh0DbDJjrxht8FabhCXIetNTsCE1N5R0Pk5jHcw=
> -SHA256 (hackage/time-compat-1.9.7_2.cabal) = 8L/xWvb6rv82tnnmuBD6cVNLL4WpG/mNdUHaxqRpsg8=
> +SHA256 (hackage/these-1.2.1_2.cabal) = NcV67elsFeof7VWawoexFo6ysoadeeYu2MhFeAt+oTY=
> +SHA256 (hackage/time-compat-1.9.8.tar.gz) = UC74aUpbExtHwOXfLpBT0AWjs0WzD1IlrwTwgdPvXPA=
> SHA256 (hackage/timeit-2.0.tar.gz) = oU305XjbNx5cYJ8HhCCRRFRfnK6QAm0kozmAQvfFkeo=
> SHA256 (hackage/timeit-2.0_2.cabal) = NdfDzmS0WLuxIAMgID8hKByXXIWsxjamNFAGAcR0/e0=
> SHA256 (hackage/transformers-compat-0.7.2.tar.gz) = tixzBMnzy8lGPQc5qoXLlInyF+oJK51iXUF1FPvMnWo=
> -SHA256 (hackage/typed-process-0.2.12.0.tar.gz) = TO49OuhR3nIPQM5nFRDAS3k4ynZVKVK9fF6LG+wWG+E=
> SHA256 (hackage/uglymemo-0.1.0.1.tar.gz) = /onvScDLFYZ8WIFbBQsz8X05TUxIqbckCjl4Clp5uEc=
> -SHA256 (hackage/unliftio-core-0.2.1.0.tar.gz) = mThMuo1W2dYbheOKMTqT6823i+ZWY2fwkw71gFl/4+M=
> -SHA256 (hackage/unliftio-core-0.2.1.0_4.cabal) = 9qJzb4WLU5DZOE3KQ9PqTZbpyhchd5F5HKSVG6boByo=
> SHA256 (hackage/unordered-containers-0.2.20.tar.gz) = 2c+yh88AWS053Jw8rIuZYn6gjywBeY5wEw/Dn3yQ8R0=
> -SHA256 (hackage/unordered-containers-0.2.20_3.cabal) = x/6cukBe2ZBeEticet07PrmGjfunl15wugzdZLexGrw=
> +SHA256 (hackage/unordered-containers-0.2.20_4.cabal) = Izy83abCaYkyuzkc4JNftE+AwRViHugVoh7TOsjt5CI=
> SHA256 (hackage/utf8-string-1.0.2.tar.gz) = 7kjeradgA3ByjEFWywAkQd53DQEhrjOmgTmp7ZwZsJo=
> SHA256 (hackage/utility-ht-0.0.17.2.tar.gz) = Co7AgZVtGPjKhPWKrPOaWrGn3AgwLizii0rDdouwNyw=
> SHA256 (hackage/uuid-types-1.0.6.tar.gz) = fg3ZU0g9b9PKSbyu1rEfnjwnhyE0ebJYHgd0eDa4NX4=
> -SHA256 (hackage/uuid-types-1.0.6_1.cabal) = WVZEUA02kIvoXNAvtEbEEVVezFxZt84z0SBc/JzrVaY=
> -SHA256 (hackage/vector-0.13.1.0.tar.gz) = Y/JyJ56rirlBGg//sSUqwwmylzE/jjO+nrvC+YHt7O4=
> -SHA256 (hackage/vector-0.13.1.0_1.cabal) = vAMsz7Udd1629AgsX8AvVBaw6g1mRKYNh2d6aTfy1w0=
> -SHA256 (hackage/vector-algorithms-0.9.0.2.tar.gz) = gu4NDLhzSUR4HTysGGzC/kWqx4WbKvNl8vjqMqF6JTo=
> -SHA256 (hackage/vector-algorithms-0.9.0.2_1.cabal) = Y2Jnz2I2yUUWB3ngjAPVL0W7hPigEzqXWQy20Mxuboc=
> +SHA256 (hackage/uuid-types-1.0.6_2.cabal) = iOeMEAtpnLgpUkr5FM6oJCK9UYzpBiUSLr5MgEiu4T0=
> +SHA256 (hackage/vector-0.13.2.0.tar.gz) = KPIDx4bL+Kxtw/6jN47DbzQXPVBftKHdYPyEGK2RxCM=
> +SHA256 (hackage/vector-0.13.2.0_1.cabal) = tzale3NSDSrPSGXj4rQAMNaXgvNfhw43bccX7iUI2B8=
> SHA256 (hackage/vector-stream-0.1.0.1.tar.gz) = 0PUHM0vepUMaLwf1Jal/KedlIsMiEPXebVorTx1Cv3w=
> -SHA256 (hackage/vector-stream-0.1.0.1_1.cabal) = FqaeLtcdezXhaGD6xSD5T6TaEg65c9n4+/CqOnA9Sp8=
> +SHA256 (hackage/vector-stream-0.1.0.1_3.cabal) = WslmlSEqRa59wW2AMdv1MR2lPgUsNfetSo4tt/r7ZR4=
> SHA256 (hackage/witherable-0.5.tar.gz) = SENMweRlsTy8ATOpDD7A2CfJO3fOlYB/4KOLZfSRjNE=
> SHA256 (hackage/witherable-0.5_1.cabal) = hbq1iOvKN5lvwxcbnYsuBl6wU2yfRCJLzwN8CEmogd4=
> SHA256 (hackage/wizards-1.0.3.tar.gz) = BWUNe/bdDmuH0Nfab7ADYBzl17Hz1pVxEn7DyUJbm7I=
> SHA256 (hackage/wizards-1.0.3_3.cabal) = y3eYiV7jXgbACmnrHNijxFkh48X7dv/PEadqFfvaQ2U=
> -SHA256 (hackage/zlib-0.7.1.0.tar.gz) = bt04trgd+NJ0lSqoWv+mloroayIx4dQpzovJCD5qVbw=
> -SHA256 (hackage/zlib-0.7.1.0_1.cabal) = uuHFpgktZcXnYyRvkeBP7z9D43ywVRMHJcmpc8iKJQ8=
> SIZE (hackage/Decimal-0.5.2.tar.gz) = 9546
> -SIZE (hackage/Diff-0.5.tar.gz) = 9122
> -SIZE (hackage/Diff-0.5_1.cabal) = 1814
> +SIZE (hackage/Diff-1.0.2.tar.gz) = 10936
> SIZE (hackage/Glob-0.10.2.tar.gz) = 30226
> SIZE (hackage/Glob-0.10.2_3.cabal) = 2938
> SIZE (hackage/OneTuple-0.4.2.tar.gz) = 5207
> +SIZE (hackage/OneTuple-0.4.2_1.cabal) = 2013
> SIZE (hackage/Only-0.1.tar.gz) = 1960
> SIZE (hackage/Only-0.1_2.cabal) = 1398
> SIZE (hackage/QuickCheck-2.15.0.1.tar.gz) = 81502
> +SIZE (hackage/QuickCheck-2.15.0.1_1.cabal) = 9046
> SIZE (hackage/StateVar-1.2.2.tar.gz) = 5048
> SIZE (hackage/aeson-2.2.3.0.tar.gz) = 340855
> -SIZE (hackage/aeson-2.2.3.0_2.cabal) = 6589
> +SIZE (hackage/aeson-2.2.3.0_3.cabal) = 6378
> SIZE (hackage/aeson-pretty-0.8.10.tar.gz) = 5894
> -SIZE (hackage/ansi-terminal-1.1.1.tar.gz) = 35398
> +SIZE (hackage/ansi-terminal-1.1.2.tar.gz) = 36259
> SIZE (hackage/ansi-terminal-types-1.1.tar.gz) = 4746
> SIZE (hackage/assoc-1.1.1.tar.gz) = 3158
> -SIZE (hackage/async-2.2.5.tar.gz) = 15742
> -SIZE (hackage/async-2.2.5_2.cabal) = 3257
> +SIZE (hackage/assoc-1.1.1_1.cabal) = 1420
> SIZE (hackage/attoparsec-0.14.4.tar.gz) = 160701
> -SIZE (hackage/attoparsec-0.14.4_5.cabal) = 5703
> -SIZE (hackage/base-compat-0.14.0.tar.gz) = 42744
> -SIZE (hackage/base-orphans-0.9.2.tar.gz) = 26705
> +SIZE (hackage/attoparsec-0.14.4_6.cabal) = 5914
> +SIZE (hackage/base-compat-0.14.1.tar.gz) = 32244
> +SIZE (hackage/base-orphans-0.9.3.tar.gz) = 19923
> SIZE (hackage/bifunctors-5.6.2.tar.gz) = 38193
> -SIZE (hackage/bitvec-1.1.5.0.tar.gz) = 40076
> -SIZE (hackage/bitvec-1.1.5.0_1.cabal) = 4920
> +SIZE (hackage/bifunctors-5.6.2_2.cabal) = 3332
> SIZE (hackage/blaze-builder-0.4.2.3.tar.gz) = 60777
> SIZE (hackage/blaze-html-0.9.2.0.tar.gz) = 81915
> SIZE (hackage/blaze-html-0.9.2.0_1.cabal) = 3087
> SIZE (hackage/blaze-markup-0.8.3.0.tar.gz) = 14647
> SIZE (hackage/blaze-markup-0.8.3.0_2.cabal) = 2360
> -SIZE (hackage/cabal-doctest-1.0.10.tar.gz) = 11930
> SIZE (hackage/call-stack-0.4.0.tar.gz) = 2757
> SIZE (hackage/case-insensitive-1.2.1.0.tar.gz) = 53609
> SIZE (hackage/cassava-0.5.3.2.tar.gz) = 37741
> +SIZE (hackage/cassava-0.5.3.2_1.cabal) = 4977
> SIZE (hackage/cassava-megaparsec-2.1.1.tar.gz) = 7428
> SIZE (hackage/character-ps-0.1.tar.gz) = 8192
> SIZE (hackage/clock-0.8.4.tar.gz) = 9322
> SIZE (hackage/cmdargs-0.10.22.tar.gz) = 65154
> SIZE (hackage/colour-2.3.6.tar.gz) = 20675
> -SIZE (hackage/comonad-5.0.8.tar.gz) = 15227
> -SIZE (hackage/comonad-5.0.8_2.cabal) = 3631
> -SIZE (hackage/conduit-1.3.6.tar.gz) = 89043
> -SIZE (hackage/conduit-extra-1.3.6.tar.gz) = 33321
> +SIZE (hackage/comonad-5.0.9.tar.gz) = 14455
> +SIZE (hackage/comonad-5.0.9_1.cabal) = 3587
> SIZE (hackage/contravariant-1.5.5.tar.gz) = 13815
> SIZE (hackage/control-monad-free-0.6.2.tar.gz) = 3665
> SIZE (hackage/csv-0.1.2.tar.gz) = 2923
> -SIZE (hackage/data-default-0.7.1.3.tar.gz) = 2735
> -SIZE (hackage/data-default-class-0.1.2.2.tar.gz) = 2573
> -SIZE (hackage/data-default-instances-containers-0.1.0.3.tar.gz) = 1761
> -SIZE (hackage/data-default-instances-dlist-0.0.1.2.tar.gz) = 1601
> -SIZE (hackage/data-default-instances-old-locale-0.0.1.2.tar.gz) = 1611
> +SIZE (hackage/data-default-0.8.0.1.tar.gz) = 5821
> +SIZE (hackage/data-default-class-0.2.0.0.tar.gz) = 1589
> SIZE (hackage/data-fix-0.3.4.tar.gz) = 5992
> +SIZE (hackage/data-fix-0.3.4_1.cabal) = 1406
> SIZE (hackage/distributive-0.6.2.1.tar.gz) = 8140
> SIZE (hackage/distributive-0.6.2.1_1.cabal) = 2996
> SIZE (hackage/dlist-1.0.tar.gz) = 18667
> SIZE (hackage/dlist-1.0_2.cabal) = 3942
> SIZE (hackage/doclayout-0.5.tar.gz) = 43437
> SIZE (hackage/emojis-0.1.4.1.tar.gz) = 52794
> -SIZE (hackage/extra-1.7.16.tar.gz) = 46190
> +SIZE (hackage/encoding-0.10.tar.gz) = 652997
> +SIZE (hackage/extensible-exceptions-0.1.1.4.tar.gz) = 8531
> +SIZE (hackage/extra-1.8.tar.gz) = 47005
> SIZE (hackage/file-embed-0.0.16.0.tar.gz) = 7198
> SIZE (hackage/generically-0.1.1.tar.gz) = 2870
> -SIZE (hackage/generically-0.1.1_3.cabal) = 1203
> +SIZE (hackage/generically-0.1.1_4.cabal) = 1203
> SIZE (hackage/githash-0.1.7.0.tar.gz) = 7661
> -SIZE (hackage/hashable-1.4.7.0.tar.gz) = 89467
> -SIZE (hackage/hashtables-1.3.1.tar.gz) = 58697
> -SIZE (hackage/hledger-1.40.tar.gz) = 815655
> -SIZE (hackage/hledger-lib-1.40.tar.gz) = 322762
> +SIZE (hackage/hashable-1.5.0.0.tar.gz) = 89062
> +SIZE (hackage/hashable-1.5.0.0_1.cabal) = 5914
> +SIZE (hackage/hashtables-1.4.2.tar.gz) = 58869
> +SIZE (hackage/hledger-1.42.1.tar.gz) = 858638
> +SIZE (hackage/hledger-lib-1.42.1.tar.gz) = 344711
> SIZE (hackage/hsc2hs-0.68.10.tar.gz) = 40517
> -SIZE (hackage/hsc2hs-0.68.10_2.cabal) = 3032
> +SIZE (hackage/hsc2hs-0.68.10_4.cabal) = 3114
> SIZE (hackage/html-1.0.1.2.tar.gz) = 11021
> SIZE (hackage/indexed-traversable-0.1.4.tar.gz) = 9465
> +SIZE (hackage/indexed-traversable-0.1.4_1.cabal) = 2098
> SIZE (hackage/indexed-traversable-instances-0.1.2.tar.gz) = 3673
> +SIZE (hackage/indexed-traversable-instances-0.1.2_1.cabal) = 2401
> SIZE (hackage/integer-conversion-0.1.1.tar.gz) = 6179
> -SIZE (hackage/integer-logarithms-1.0.3.1.tar.gz) = 9023
> -SIZE (hackage/integer-logarithms-1.0.3.1_6.cabal) = 3295
> -SIZE (hackage/lucid-2.11.20230408.tar.gz) = 21451
> -SIZE (hackage/lucid-2.11.20230408_2.cabal) = 3180
> +SIZE (hackage/integer-conversion-0.1.1_1.cabal) = 2256
> +SIZE (hackage/integer-logarithms-1.0.4.tar.gz) = 8948
> +SIZE (hackage/lucid-2.11.20250303.tar.gz) = 21416
> SIZE (hackage/math-functions-0.3.4.4.tar.gz) = 429048
> -SIZE (hackage/megaparsec-9.6.1.tar.gz) = 64913
> -SIZE (hackage/microlens-0.4.13.1.tar.gz) = 27436
> -SIZE (hackage/microlens-0.4.13.1_1.cabal) = 4703
> -SIZE (hackage/microlens-th-0.4.3.15.tar.gz) = 24239
> +SIZE (hackage/megaparsec-9.7.0.tar.gz) = 67078
> +SIZE (hackage/microlens-0.4.14.0.tar.gz) = 28262
> +SIZE (hackage/microlens-th-0.4.3.17.tar.gz) = 24258
> SIZE (hackage/mmorph-1.2.0.tar.gz) = 6861
> SIZE (hackage/mmorph-1.2.0_3.cabal) = 1083
> -SIZE (hackage/mono-traversable-1.0.20.0.tar.gz) = 42584
> -SIZE (hackage/network-3.2.4.0.tar.gz) = 145051
> +SIZE (hackage/modern-uri-0.3.6.1.tar.gz) = 26185
> +SIZE (hackage/modern-uri-0.3.6.1_3.cabal) = 3602
> SIZE (hackage/network-uri-2.6.4.2.tar.gz) = 31309
> SIZE (hackage/network-uri-2.6.4.2_1.cabal) = 3217
> -SIZE (hackage/old-locale-1.0.0.7.tar.gz) = 3384
> -SIZE (hackage/old-locale-1.0.0.7_2.cabal) = 1071
> SIZE (hackage/optparse-applicative-0.18.1.0.tar.gz) = 60682
> -SIZE (hackage/os-string-2.0.6.tar.gz) = 44363
> -SIZE (hackage/pager-0.1.1.0.tar.gz) = 3751
> +SIZE (hackage/optparse-applicative-0.18.1.0_1.cabal) = 5289
> +SIZE (hackage/os-string-2.0.7.tar.gz) = 44683
> SIZE (hackage/parser-combinators-1.3.0.tar.gz) = 11699
> SIZE (hackage/parser-combinators-1.3.0_1.cabal) = 1640
> -SIZE (hackage/pretty-simple-4.1.2.0.tar.gz) = 40519
> +SIZE (hackage/pretty-simple-4.1.3.0.tar.gz) = 40919
> SIZE (hackage/prettyprinter-1.7.1.tar.gz) = 56907
> SIZE (hackage/prettyprinter-ansi-terminal-1.1.3.tar.gz) = 8879
> SIZE (hackage/primitive-0.9.0.0.tar.gz) = 60580
> -SIZE (hackage/primitive-0.9.0.0_1.cabal) = 3171
> +SIZE (hackage/primitive-0.9.0.0_2.cabal) = 3203
> +SIZE (hackage/profunctors-5.6.2.tar.gz) = 28522
> +SIZE (hackage/profunctors-5.6.2_3.cabal) = 2484
> SIZE (hackage/quote-quot-0.2.1.0.tar.gz) = 6731
> -SIZE (hackage/random-1.2.1.2.tar.gz) = 47229
> -SIZE (hackage/regex-base-0.94.0.2.tar.gz) = 10488
> -SIZE (hackage/regex-base-0.94.0.2_4.cabal) = 2601
> -SIZE (hackage/regex-tdfa-1.3.2.2.tar.gz) = 83016
> -SIZE (hackage/regex-tdfa-1.3.2.2_3.cabal) = 6997
> -SIZE (hackage/resourcet-1.3.0.tar.gz) = 17620
> +SIZE (hackage/random-1.2.1.3.tar.gz) = 47117
> +SIZE (hackage/reflection-2.1.9.tar.gz) = 17560
> +SIZE (hackage/reflection-2.1.9_1.cabal) = 4171
> +SIZE (hackage/regex-base-0.94.0.3.tar.gz) = 10550
> +SIZE (hackage/regex-compat-0.95.2.2.tar.gz) = 4658
> +SIZE (hackage/regex-posix-0.96.0.2.tar.gz) = 13343
> +SIZE (hackage/regex-tdfa-1.3.2.3.tar.gz) = 83017
> SIZE (hackage/safe-0.3.21.tar.gz) = 11778
> SIZE (hackage/safe-0.3.21_1.cabal) = 2400
> SIZE (hackage/scientific-0.3.8.0.tar.gz) = 24314
> -SIZE (hackage/scientific-0.3.8.0_1.cabal) = 4380
> +SIZE (hackage/scientific-0.3.8.0_2.cabal) = 4397
> SIZE (hackage/semialign-1.3.1.tar.gz) = 10117
> -SIZE (hackage/semialign-1.3.1_1.cabal) = 2209
> +SIZE (hackage/semialign-1.3.1_2.cabal) = 2224
> SIZE (hackage/semigroupoids-6.0.1.tar.gz) = 36372
> -SIZE (hackage/semigroupoids-6.0.1_1.cabal) = 7539
> +SIZE (hackage/semigroupoids-6.0.1_2.cabal) = 7539
> SIZE (hackage/shakespeare-2.1.0.1.tar.gz) = 71698
> SIZE (hackage/split-0.2.5.tar.gz) = 16008
> -SIZE (hackage/splitmix-0.1.0.5.tar.gz) = 22399
> -SIZE (hackage/splitmix-0.1.0.5_1.cabal) = 6596
> -SIZE (hackage/streaming-commons-0.2.2.6.tar.gz) = 37959
> -SIZE (hackage/streaming-commons-0.2.2.6_1.cabal) = 4827
> +SIZE (hackage/splitmix-0.1.1.tar.gz) = 21981
> SIZE (hackage/strict-0.5.1.tar.gz) = 11798
> SIZE (hackage/strict-0.5.1_1.cabal) = 3557
> SIZE (hackage/tabular-0.2.2.8.tar.gz) = 6346
> SIZE (hackage/tabular-0.2.2.8_1.cabal) = 2821
> -SIZE (hackage/tagged-0.8.8.tar.gz) = 10094
> -SIZE (hackage/tagged-0.8.8_1.cabal) = 2732
> -SIZE (hackage/tasty-1.5.tar.gz) = 65023
> -SIZE (hackage/tasty-1.5_2.cabal) = 2787
> +SIZE (hackage/tagged-0.8.9.tar.gz) = 8151
> +SIZE (hackage/tasty-1.5.3.tar.gz) = 66548
> +SIZE (hackage/tasty-1.5.3_1.cabal) = 2923
> SIZE (hackage/tasty-hunit-0.10.2.tar.gz) = 7808
> SIZE (hackage/temporary-1.3.tar.gz) = 5686
> SIZE (hackage/terminal-size-0.3.4.tar.gz) = 4457
> SIZE (hackage/terminal-size-0.3.4_1.cabal) = 1364
> SIZE (hackage/text-ansi-0.3.0.1.tar.gz) = 6149
> -SIZE (hackage/text-ansi-0.3.0.1_1.cabal) = 1806
> +SIZE (hackage/text-ansi-0.3.0.1_2.cabal) = 1819
> SIZE (hackage/text-builder-linear-0.1.3.tar.gz) = 30161
> SIZE (hackage/text-iso8601-0.1.1.tar.gz) = 9599
> -SIZE (hackage/text-iso8601-0.1.1_1.cabal) = 2478
> +SIZE (hackage/text-iso8601-0.1.1_2.cabal) = 2411
> SIZE (hackage/text-short-0.1.6.tar.gz) = 24691
> -SIZE (hackage/text-short-0.1.6_2.cabal) = 2812
> -SIZE (hackage/th-abstraction-0.7.0.0.tar.gz) = 49904
> -SIZE (hackage/th-compat-0.1.5.tar.gz) = 14893
> -SIZE (hackage/th-compat-0.1.5_2.cabal) = 3330
> -SIZE (hackage/th-lift-0.8.4.tar.gz) = 14711
> -SIZE (hackage/th-lift-0.8.4_2.cabal) = 2791
> +SIZE (hackage/text-short-0.1.6_3.cabal) = 2827
> +SIZE (hackage/th-abstraction-0.7.1.0.tar.gz) = 45428
> +SIZE (hackage/th-abstraction-0.7.1.0_1.cabal) = 2268
> +SIZE (hackage/th-compat-0.1.6.tar.gz) = 14622
> +SIZE (hackage/th-lift-0.8.6.tar.gz) = 14310
> SIZE (hackage/these-1.2.1.tar.gz) = 9906
> -SIZE (hackage/these-1.2.1_1.cabal) = 2279
> -SIZE (hackage/time-compat-1.9.7.tar.gz) = 57331
> -SIZE (hackage/time-compat-1.9.7_2.cabal) = 4486
> +SIZE (hackage/these-1.2.1_2.cabal) = 2294
> +SIZE (hackage/time-compat-1.9.8.tar.gz) = 63414
> SIZE (hackage/timeit-2.0.tar.gz) = 2117
> SIZE (hackage/timeit-2.0_2.cabal) = 1197
> SIZE (hackage/transformers-compat-0.7.2.tar.gz) = 46485
> -SIZE (hackage/typed-process-0.2.12.0.tar.gz) = 18957
> SIZE (hackage/uglymemo-0.1.0.1.tar.gz) = 887
> -SIZE (hackage/unliftio-core-0.2.1.0.tar.gz) = 3865
> -SIZE (hackage/unliftio-core-0.2.1.0_4.cabal) = 996
> SIZE (hackage/unordered-containers-0.2.20.tar.gz) = 59823
> -SIZE (hackage/unordered-containers-0.2.20_3.cabal) = 3921
> +SIZE (hackage/unordered-containers-0.2.20_4.cabal) = 3921
> SIZE (hackage/utf8-string-1.0.2.tar.gz) = 10726
> SIZE (hackage/utility-ht-0.0.17.2.tar.gz) = 33604
> SIZE (hackage/uuid-types-1.0.6.tar.gz) = 11222
> -SIZE (hackage/uuid-types-1.0.6_1.cabal) = 2604
> -SIZE (hackage/vector-0.13.1.0.tar.gz) = 156855
> -SIZE (hackage/vector-0.13.1.0_1.cabal) = 9015
> -SIZE (hackage/vector-algorithms-0.9.0.2.tar.gz) = 29259
> -SIZE (hackage/vector-algorithms-0.9.0.2_1.cabal) = 4042
> +SIZE (hackage/uuid-types-1.0.6_2.cabal) = 2619
> +SIZE (hackage/vector-0.13.2.0.tar.gz) = 185739
> +SIZE (hackage/vector-0.13.2.0_1.cabal) = 8804
> SIZE (hackage/vector-stream-0.1.0.1.tar.gz) = 12577
> -SIZE (hackage/vector-stream-0.1.0.1_1.cabal) = 1583
> +SIZE (hackage/vector-stream-0.1.0.1_3.cabal) = 1642
> SIZE (hackage/witherable-0.5.tar.gz) = 10819
> SIZE (hackage/witherable-0.5_1.cabal) = 2343
> SIZE (hackage/wizards-1.0.3.tar.gz) = 8243
> SIZE (hackage/wizards-1.0.3_3.cabal) = 3533
> -SIZE (hackage/zlib-0.7.1.0.tar.gz) = 29318
> -SIZE (hackage/zlib-0.7.1.0_1.cabal) = 5223
> --
> 2.49.0

[Maintainer Update] archivers/zpaqfranz-62.2

diff --git a/archivers/zpaqfranz/Makefile b/archivers/zpaqfranz/Makefile
index c663e0a9bd6..0603f4a915d 100644
--- a/archivers/zpaqfranz/Makefile
+++ b/archivers/zpaqfranz/Makefile
@@ -1,7 +1,7 @@
BROKEN-sparc64 = SIGBUS due to unaligned access when running tests

COMMENT = journaling archiver for incremental backup, fork of ZPAQ
-DIST_TUPLE = github fcorbelli zpaqfranz 60.6 .
+DIST_TUPLE = github fcorbelli zpaqfranz 62.2 .
CATEGORIES = archivers
MAINTAINER = tux0r <tux0r@rosaelefanten.org>

diff --git a/archivers/zpaqfranz/distinfo b/archivers/zpaqfranz/distinfo
index c685da312ef..6e41da1838b 100644
--- a/archivers/zpaqfranz/distinfo
+++ b/archivers/zpaqfranz/distinfo
@@ -1,2 +1,2 @@
-SHA256 (fcorbelli-zpaqfranz-60.6.tar.gz) = CFk/X9C3Eg9ClCrr8C9nSsT/ZTnc5rYkFPwEcuSd8G8=
-SIZE (fcorbelli-zpaqfranz-60.6.tar.gz) = 1976227
+SHA256 (fcorbelli-zpaqfranz-62.2.tar.gz) = EsrXFDmYeviGY5vldtk22XwJf1Bcqk1evV5FT/hEYQs=
+SIZE (fcorbelli-zpaqfranz-62.2.tar.gz) = 2004628
Time for another update. This patch replaces the previously ignored
updates... ;-)

Changes:
https://github.com/fcorbelli/zpaqfranz/releases/tag/62.2

Patch attached.

update net/profanity to 0.15.0

Hello,

please find below a diff to update profanity to 0.15.0. The full
changelog is available here:

https://github.com/profanity-im/profanity/releases/tag/0.15.0

it's quite long, but it fixes so many things that it'd be really nice to
have it in stable. in particular, /save now finally works! that's the
best fix in this release IMHO!

the USE_GMAKE thingy is because otherwise it fails at configure with:

<<<<<<<
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/config.h
config.status: executing libtool commands
config.status: executing depfiles commands
config.status: error: in `/usr/ports/pobj/profanity-0.15.0/build-amd64':
config.status: error: Something went wrong bootstrapping makefile fragments
for automatic dependency tracking. If GNU make was not used, consider
re-running the configure script with MAKE="gmake" (or whatever is
necessary). You can also try re-running configure with the
'--disable-dependency-tracking' option to at least be able to build
the package (albeit without support for automatic dependency tracking).
>>>>>>>

tests/oks are welcome :)

Index: Makefile
===================================================================
RCS file: /home/cvs/ports/net/profanity/Makefile,v
diff -u -p -r1.36 Makefile
--- Makefile 25 Dec 2024 15:59:24 -0000 1.36
+++ Makefile 2 Apr 2025 20:42:51 -0000
@@ -1,6 +1,5 @@
COMMENT = console based XMPP client
-DISTNAME = profanity-0.14.0
-REVISION = 3
+DISTNAME = profanity-0.15.0
CATEGORIES = net

HOMEPAGE = https://profanity-im.github.io/
@@ -35,6 +34,8 @@ LIB_DEPENDS += databases/sqlite3 \
# Only needed for tests, but cannot be a TEST_DEPENDS.
# Check must be present at build time for tests to work.
BUILD_DEPENDS += devel/cmocka
+
+USE_GMAKE = Yes

CONFIGURE_STYLE = autoconf
AUTOCONF_VERSION = 2.71
Index: distinfo
===================================================================
RCS file: /home/cvs/ports/net/profanity/distinfo,v
diff -u -p -r1.17 distinfo
--- distinfo 25 Sep 2023 09:12:42 -0000 1.17
+++ distinfo 2 Apr 2025 17:57:12 -0000
@@ -1,2 +1,2 @@
-SHA256 (profanity-0.14.0.tar.gz) = /SP/04oxkHl0poCjkAyVnhTUThbx+33yvbf2xnvXz38=
-SIZE (profanity-0.14.0.tar.gz) = 936272
+SHA256 (profanity-0.15.0.tar.gz) = Sp9Xj3UOyafCpEEroi5gGBG5K7qHfGNmMcw8zHzqx/s=
+SIZE (profanity-0.15.0.tar.gz) = 967640
Index: patches/patch-configure_ac
===================================================================
RCS file: /home/cvs/ports/net/profanity/patches/patch-configure_ac,v
diff -u -p -r1.11 patch-configure_ac
--- patches/patch-configure_ac 13 Oct 2022 07:19:27 -0000 1.11
+++ patches/patch-configure_ac 2 Apr 2025 20:39:08 -0000
@@ -4,7 +4,7 @@ Use ${LOCALBASE} instead of hard-coded /
Index: configure.ac
--- configure.ac.orig
+++ configure.ac
-@@ -104,7 +104,7 @@ elif test "x$enable_python_plugins" != xno; then
+@@ -110,7 +110,7 @@ elif test "x$enable_python_plugins" != xno; then
rm -f Python.framework
ln -s $PYTHON_FRAMEWORK Python.framework ])
PKG_CHECK_MODULES([python], [python-embed], [PYTHON_CONFIG_EXISTS=yes], [PYTHON_CONFIG_EXISTS=no])
@@ -13,7 +13,7 @@ Index: configure.ac
if test "$PYTHON_CONFIG_EXISTS" = "yes" || test "$PYTHON3_CONFIG_EXISTS" = "yes"; then
AM_CONDITIONAL([BUILD_PYTHON_API], [true])
AC_DEFINE([HAVE_PYTHON], [1], [Python support])
-@@ -223,10 +223,10 @@ AS_IF([test "x$PLATFORM" = xosx],
+@@ -229,10 +229,10 @@ AS_IF([test "x$PLATFORM" = xosx],
[AC_MSG_ERROR([libreadline is required for profanity. Install it with Homebrew, MacPorts, or manually into /usr/local])])],

[test "x$PLATFORM" = xopenbsd],
Index: patches/patch-src_pgp_gpg_c
===================================================================
RCS file: patches/patch-src_pgp_gpg_c
diff -N patches/patch-src_pgp_gpg_c
--- patches/patch-src_pgp_gpg_c 25 Dec 2024 15:59:24 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-Fix crashes on startup.
-Taken from upstream commit 0995b1a180e24ebc0383621d3d5bfaff98e1f877.
-
-Index: src/pgp/gpg.c
---- src/pgp/gpg.c.orig
-+++ src/pgp/gpg.c
-@@ -889,7 +889,8 @@ out:
- static ProfPGPKey*
- _gpgme_key_to_ProfPGPKey(gpgme_key_t key)
- {
-- if (key == NULL) {
-+ if (key == NULL || key->uids == NULL
-+ || key->subkeys == NULL || key->uids->uid == NULL) {
- return NULL;
- }
Index: pkg/PLIST
===================================================================
RCS file: /home/cvs/ports/net/profanity/pkg/PLIST,v
diff -u -p -r1.12 PLIST
--- pkg/PLIST 25 Sep 2023 09:12:42 -0000 1.12
+++ pkg/PLIST 2 Apr 2025 20:44:23 -0000
@@ -72,6 +72,7 @@ lib/libprofanity.la
@man man/man1/profanity-quit.1
@man man/man1/profanity-receipts.1
@man man/man1/profanity-reconnect.1
+@man man/man1/profanity-redraw.1
@man man/man1/profanity-register.1
@man man/man1/profanity-reload.1
@man man/man1/profanity-resource.1

aarch64 bulk build report

bulk build on arm64.ports.openbsd.org
started on Mon Mar 31 01:00:19 MDT 2025
finished at Thu Apr 3 11:12:06 MDT 2025
lasted 3D10h11m
done with kern.version=OpenBSD 7.7-beta (GENERIC.MP) #349: Fri Mar 28 00:13:35 MDT 2025

built packages:12533
Mar 31:4363
Apr 1:442
Apr 2:2674
Apr 3:5053


critical path missing pkgs: http://build-failures.rhaalovely.net/aarch64/2025-03-31/summary.log

build failures: 0

Re: [update] editors/neovim 0.11.0

On 2025/04/03 17:23, Laurent Cheylus wrote:
> Hi Stuart,
>
> On Thu, 3 Apr 2025 15:00:13 +0100, Stuart Henderson wrote:
>
> > On 2025/03/28 10:51, Laurent Cheylus wrote:
> >> - utf8proc library (https://github.com/JuliaStrings/utf8proc) needed to
> >> build neovim 0.11
> >> * download v2.10.0 via DIST_TUPLE * build it with cmake and install
> >> {include,lib} in ${STATIC_DEPS_INST}
> >> * set UTF8PROC_LIBRARY and UTF8PROC_INCLUDE_DIR vars for configure
> >
> > there might be a problem between this and www/netsurf/libutf8proc
>
> No issue IMHO, libutf8proc v2.10.0 library is included **statically** for neovim v0.11.
>
> On current/amd64, with my updated Neovim port:
>
> $ nvim -v
> NVIM v0.11.0
> Build type: Release
> LuaJIT 2.1.1741730670
> Run "nvim -V1 -v" for more info
>
> $ ldd $(which nvim)
> /usr/local/bin/nvim:
> Start End Type Open Ref GrpRef Name
> 00000edf92319000 00000edf929c4000 exe 2 0 0 /usr/local/bin/nvim
> 00000ee279d5a000 00000ee279e6c000 rlib 0 2 0 /usr/local/lib/libiconv.so.7.1
> 00000ee196c29000 00000ee196c3b000 rlib 0 1 0 /usr/local/lib/lua/5.1/lpeg.so
> 00000ee23c7d8000 00000ee23c809000 rlib 0 1 0 /usr/local/lib/libtree-sitter.so.5.0
> 00000ee21d476000 00000ee21d48c000 rlib 0 1 0 /usr/local/lib/libunibilium.so.1.1
> 00000ee28315f000 00000ee283183000 rlib 0 1 0 /usr/local/lib/libintl.so.8.1
> 00000ee1cc703000 00000ee1cc735000 rlib 0 1 0 /usr/lib/libm.so.10.1
> 00000ee20cf12000 00000ee20cf2b000 rlib 0 1 0 /usr/lib/libutil.so.20.0
> 00000ee1c747f000 00000ee1c748c000 rlib 0 3 0 /usr/lib/libpthread.so.27.1
> 00000ee26c6b2000 00000ee26c6fa000 rlib 0 1 0 /usr/lib/libc++abi.so.7.0
> 00000ee1b00f1000 00000ee1b0125000 rlib 0 1 0 /usr/local/lib/libuv.so.5.1
> 00000ee2703a4000 00000ee2704ab000 rlib 0 1 0 /usr/lib/libc.so.100.3
> 00000ee242533000 00000ee242533000 ld.so 0 1 0 /usr/libexec/ld.so
>
> I chose not to update and use www/netsurf/libutf8proc port because it's a specific dependency for www/netsurf port (by the way, very outdated, last update = August 2019).
>
> Laurent
>

You still need to be careful even if it's statically linked. In
particular you need to make sure that it can't accidentally pick up
anything from /usr/local/{include,lib} if present at build time.
Especially considering what Laurie reported.

Re: Ethernet interface set to the wrong group

Hi,

Your use case is an outlier. Having both interfaces on the same network
is not a standard configuration.

Just quit using the magic word "egress" in your pf.conf and use the
specific interface names.

I went years (I started using OpenBSD 2.6) before I discovered the
"egress" magic word.

Just hard code the interface names in variables.

myegress="xl0"
mylocal="em0"

And use those in the pf.conf.

Good luck!
Cheers,
Steve W.

On 4/2/2025 11:06 PM, otto.cooper wrote:
> Lessons learned are gold.
>
> I am still stuck with the basic case of one firewall for one ISP, because in the PCI bus the interface connecting with the LAN switch (ix0) sits before the interface connecting with the gateway (em0), causing obsd to assign ix0 to egress. Attempts to correct this via hostname have failed, including explicit group assignment and change of priority. I am also experiencing ssh disconnections. The system is unstable because of wrong egress.
>
>
> -------- Original Message --------
> On 4/3/25 00:03, <obsdml@loopw.com> wrote:
>
>>
>> > The problem is the conflict that occurs naturally when connecting any two ISPs.
>>
>> in my not at all humble opinion, with this topology (each ISP presenting the same subnet on its client side), I would use multiple firewalls. One per ISP. Use carp if you want to failover or do fancy tricks (You can use multiple carps - one that represents going out firewall A, the other B, and they failover to each other. Much easier than editing every "LAN" boxes gateways otherwise.)
>>
>> fwiw, even if they have different subnets, I use one firewall per ISP. I learned the hard way - Crossing ISPs through the same firewall has generally seemed like path to losing sanity.
>>
>>
>>

Re: [update] editors/neovim 0.11.0

Hi Stuart,

On Thu, 3 Apr 2025 15:00:13 +0100, Stuart Henderson wrote:

> On 2025/03/28 10:51, Laurent Cheylus wrote:
>> - utf8proc library (https://github.com/JuliaStrings/utf8proc) needed to
>> build neovim 0.11
>> * download v2.10.0 via DIST_TUPLE * build it with cmake and install
>> {include,lib} in ${STATIC_DEPS_INST}
>> * set UTF8PROC_LIBRARY and UTF8PROC_INCLUDE_DIR vars for configure
>
> there might be a problem between this and www/netsurf/libutf8proc

No issue IMHO, libutf8proc v2.10.0 library is included **statically** for neovim v0.11.

On current/amd64, with my updated Neovim port:

$ nvim -v
NVIM v0.11.0
Build type: Release
LuaJIT 2.1.1741730670
Run "nvim -V1 -v" for more info

$ ldd $(which nvim)
/usr/local/bin/nvim:
Start End Type Open Ref GrpRef Name
00000edf92319000 00000edf929c4000 exe 2 0 0 /usr/local/bin/nvim
00000ee279d5a000 00000ee279e6c000 rlib 0 2 0 /usr/local/lib/libiconv.so.7.1
00000ee196c29000 00000ee196c3b000 rlib 0 1 0 /usr/local/lib/lua/5.1/lpeg.so
00000ee23c7d8000 00000ee23c809000 rlib 0 1 0 /usr/local/lib/libtree-sitter.so.5.0
00000ee21d476000 00000ee21d48c000 rlib 0 1 0 /usr/local/lib/libunibilium.so.1.1
00000ee28315f000 00000ee283183000 rlib 0 1 0 /usr/local/lib/libintl.so.8.1
00000ee1cc703000 00000ee1cc735000 rlib 0 1 0 /usr/lib/libm.so.10.1
00000ee20cf12000 00000ee20cf2b000 rlib 0 1 0 /usr/lib/libutil.so.20.0
00000ee1c747f000 00000ee1c748c000 rlib 0 3 0 /usr/lib/libpthread.so.27.1
00000ee26c6b2000 00000ee26c6fa000 rlib 0 1 0 /usr/lib/libc++abi.so.7.0
00000ee1b00f1000 00000ee1b0125000 rlib 0 1 0 /usr/local/lib/libuv.so.5.1
00000ee2703a4000 00000ee2704ab000 rlib 0 1 0 /usr/lib/libc.so.100.3
00000ee242533000 00000ee242533000 ld.so 0 1 0 /usr/libexec/ld.so

I chose not to update and use www/netsurf/libutf8proc port because it's a specific dependency for www/netsurf port (by the way, very outdated, last update = August 2019).

Laurent

Re: [update] editors/neovim 0.11.0

On Thu, Apr 03, 2025 at 03:00:13PM +0100, Stuart Henderson wrote:
> > * set UTF8PROC_LIBRARY and UTF8PROC_INCLUDE_DIR vars for configure
>
> there might be a problem between this and www/netsurf/libutf8proc

In addition to this, I think we should hold off the neovim+treesitter update
until after unlock anyway.

--
Best Regards
Edd Barrett

https://www.theunixzoo.co.uk

Re: How does pkg_info get the dependencies of a package?

On 2025-04-03, Neel Chakraborty <neelroboinfo365@gmail.com> wrote:
> On Thu, Apr 03, 2025 at 11:20:41AM +0000, Stuart Henderson wrote:
>> On 2025-04-03, Neel Chakraborty <neelroboinfo365@gmail.com> wrote:
>> > Hello everyone, hope you're having a good day.
>> >
>> > I am trying to understand how does pkg_info -f
>> > show the dependencies of a certain package?
>>
>> It just looks at the +CONTENTS file, either in a package from a mirror,
>> or from /var/db/pkg/(pkgname)/+CONTENTS
>>
>> Any dependencies in there are recorded when the package was built
>>
> So, it downloads the package from a mirror,extracts it
> and then looks at the CONTENTS file?

It only fetches enough to look at +CONTENTS (and checks the signature
before using it), doesn't need to fetch the full package.


--
Please keep replies on the mailing list.

Re: How does pkg_info get the dependencies of a package?

On Thu, Apr 03, 2025 at 11:20:41AM +0000, Stuart Henderson wrote:
> On 2025-04-03, Neel Chakraborty <neelroboinfo365@gmail.com> wrote:
> > Hello everyone, hope you're having a good day.
> >
> > I am trying to understand how does pkg_info -f
> > show the dependencies of a certain package?
>
> It just looks at the +CONTENTS file, either in a package from a mirror,
> or from /var/db/pkg/(pkgname)/+CONTENTS
>
> Any dependencies in there are recorded when the package was built
>
>
> --
> Please keep replies on the mailing list.
>
So, it downloads the package from a mirror,extracts it
and then looks at the CONTENTS file?

Re: [update] editors/neovim 0.11.0

On 2025/03/28 10:51, Laurent Cheylus wrote:
> - utf8proc library (https://github.com/JuliaStrings/utf8proc) needed to build neovim 0.11
> * download v2.10.0 via DIST_TUPLE
> * build it with cmake and install {include,lib} in ${STATIC_DEPS_INST}
> * set UTF8PROC_LIBRARY and UTF8PROC_INCLUDE_DIR vars for configure

there might be a problem between this and www/netsurf/libutf8proc

> - tree-sitter>=0.25.3 needed for neovim 0.11.0
> => see my update for textproc/tree-sitter port https://marc.info/?l=openbsd-ports&m=174134265730131&w=2
>
> Build and tests OK on current/amd64
> My functional tests are OK with my Lua configuration and ~25 plugins :)
>
> Tests welcome and please commit if OK.
>
> Laurent
>
>
>
>
>
>
>

> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/editors/neovim/Makefile,v
> diff -u -p -r1.54 Makefile
> --- Makefile 4 Feb 2025 21:51:43 -0000 1.54
> +++ Makefile 28 Mar 2025 08:44:53 -0000
> @@ -11,7 +11,7 @@ EMBED_LUAJIT = No
>
> COMMENT = continuation and extension of Vim
>
> -DIST_TUPLE = github neovim neovim v0.10.4 .
> +DIST_TUPLE = github neovim neovim v0.11.0 .
>
> # embedded luajit
> USE_NOBTCFI = Yes
> @@ -22,23 +22,25 @@ MAINTAINER = Edd Barrett <edd@openbsd.or
>
> # The versions listed here must match those in cmake.deps/deps.txt.
> STATIC_DEPS_WRKSRC = ${WRKDIST}/static-deps/
> -DIST_TUPLE += github luvit luv 1.48.0-2 ${STATIC_DEPS_WRKSRC}/luv
> -DIST_TUPLE += github LuaJIT LuaJIT 75e92777988017fe47c5eb290998021bbf972d1f \
> +DIST_TUPLE += github luvit luv 1.50.0-1 ${STATIC_DEPS_WRKSRC}/luv
> +DIST_TUPLE += github LuaJIT LuaJIT 538a82133ad6fddfd0ca64de167c4aca3bc1a2da \
> ${STATIC_DEPS_WRKSRC}/luajit
> DIST_TUPLE += github keplerproject lua-compat-5.3 v0.13 \
> ${STATIC_DEPS_WRKSRC}/lua-compat-5.3
> -DIST_TUPLE += github tree-sitter tree-sitter-c v0.21.3 \
> +DIST_TUPLE += github tree-sitter tree-sitter-c v0.23.4 \
> ${STATIC_DEPS_WRKSRC}/parsers/treesitter_c
> -DIST_TUPLE += github tree-sitter-grammars tree-sitter-lua v0.1.0 \
> +DIST_TUPLE += github tree-sitter-grammars tree-sitter-lua v0.3.0 \
> ${STATIC_DEPS_WRKSRC}/parsers/treesitter_lua
> -DIST_TUPLE += github neovim tree-sitter-vim v0.4.0 \
> +DIST_TUPLE += github neovim tree-sitter-vim v0.5.0 \
> ${STATIC_DEPS_WRKSRC}/parsers/treesitter_vim
> -DIST_TUPLE += github neovim tree-sitter-vimdoc v3.0.0 \
> +DIST_TUPLE += github neovim tree-sitter-vimdoc v3.0.1 \
> ${STATIC_DEPS_WRKSRC}/parsers/treesitter_vimdoc
> -DIST_TUPLE += github tree-sitter-grammars tree-sitter-query v0.4.0 \
> +DIST_TUPLE += github tree-sitter-grammars tree-sitter-query v0.5.1 \
> ${STATIC_DEPS_WRKSRC}/parsers/treesitter_query
> -DIST_TUPLE += github MDeiml tree-sitter-markdown v0.2.3 \
> +DIST_TUPLE += github MDeiml tree-sitter-markdown v0.4.1 \
> ${STATIC_DEPS_WRKSRC}/parsers/treesitter_markdown
> +DIST_TUPLE += github JuliaStrings utf8proc v2.10.0 \
> + ${STATIC_DEPS_WRKSRC}/utf8proc
>
> # Neovim: Apache 2.0 + Vim License
> # LuaJIT: MIT + public domain
> @@ -47,8 +49,8 @@ PERMIT_PACKAGE = Yes
>
> DEBUG_PACKAGES = ${BUILD_PACKAGES}
>
> -WANTLIB += c iconv intl m msgpack-c pthread
> -WANTLIB += tree-sitter unibilium util uv vterm
> +WANTLIB += c iconv intl m pthread
> +WANTLIB += tree-sitter unibilium util uv
>
> .if ${EMBED_LUAJIT} != "Yes"
> WANTLIB += ${MODLUA_WANTLIB}
> @@ -73,10 +75,8 @@ BUILD_DEPENDS = ${RUN_DEPENDS} \
>
> LIB_DEPENDS = devel/gettext,-runtime \
> devel/libuv \
> - devel/libvterm>=0.3.3 \
> - devel/msgpack \
> devel/unibilium \
> - textproc/tree-sitter>=0.20.9
> + textproc/tree-sitter>=0.25.3
>
> RUN_DEPENDS += devel/libmpack/lua \
> devel/libmpack/main \
> @@ -88,7 +88,9 @@ RUN_DEPENDS += devel/libmpack/lua \
> SEPARATE_BUILD = Yes
> CONFIGURE_ARGS += -DUSE_BUNDLED=OFF \
> -DLUV_INCLUDE_DIR=${STATIC_DEPS_INST}/include \
> - -DLUV_LIBRARY=${STATIC_DEPS_INST}/lib/libluv.a
> + -DLUV_LIBRARY=${STATIC_DEPS_INST}/lib/libluv.a \
> + -DUTF8PROC_LIBRARY=${STATIC_DEPS_INST}/lib/libutf8proc.a \
> + -DUTF8PROC_INCLUDE_DIR=${STATIC_DEPS_INST}/include/utf8proc
> .if ${EMBED_LUAJIT} == "Yes"
> CONFIGURE_ARGS += -DLUA_PRG=${STATIC_DEPS_INST}/bin/luajit \
> -DLUAJIT_INCLUDE_DIR=${STATIC_DEPS_INST}/include/luajit-2.1 \
> @@ -197,6 +199,19 @@ pre-configure:
> mkdir -p ${WRKBUILD}/lib/nvim/parser
> cp -r ${PARSERS_WRKBUILD}/usr/lib/nvim/parser/*.so \
> ${WRKBUILD}/lib/nvim/parser/
> +
> + # Build utf8proc.
> + mkdir -p ${STATIC_DEPS_WRKBUILD}/utf8proc
> + ${MAKE_ENV} ${LOCALBASE}/bin/cmake -S ${STATIC_DEPS_WRKSRC}/utf8proc \
> + -B ${STATIC_DEPS_WRKBUILD}/utf8proc
> + ${MAKE_ENV} ${LOCALBASE}/bin/cmake --build \
> + ${STATIC_DEPS_WRKBUILD}/utf8proc -- VERBOSE=1
> +
> + mkdir -p ${STATIC_DEPS_INST}/lib
> + cp ${STATIC_DEPS_WRKBUILD}/utf8proc/libutf8proc.a ${STATIC_DEPS_INST}/lib/
> + mkdir -p ${STATIC_DEPS_INST}/include/utf8proc
> + cp ${STATIC_DEPS_WRKSRC}/utf8proc/utf8proc.h \
> + ${STATIC_DEPS_INST}/include/utf8proc
>
> # These are the "old tests". There is also a new suite, but we would need the
> # "busted" test suite for Lua, which is not yet ported.
> Index: distinfo
> ===================================================================
> RCS file: /cvs/ports/editors/neovim/distinfo,v
> diff -u -p -r1.30 distinfo
> --- distinfo 4 Feb 2025 21:51:43 -0000 1.30
> +++ distinfo 28 Mar 2025 08:44:53 -0000
> @@ -1,20 +1,22 @@
> -SHA256 (LuaJIT-LuaJIT-75e92777988017fe47c5eb290998021bbf972d1f.tar.gz) = D2kogZACTXMsZ2ReQO1bE31nqpUP7fD0SprQ89um1dI=
> -SHA256 (MDeiml-tree-sitter-markdown-v0.2.3.tar.gz) = SQnWAjZD8a/DqyGVhdQDW3QD86F4SXgquAPF9zyKMdU=
> +SHA256 (JuliaStrings-utf8proc-v2.10.0.tar.gz) = b08bY52qbcqfgLxdsSM+nLqjGmd5CIcQYWCzPvdD8TY=
> +SHA256 (LuaJIT-LuaJIT-538a82133ad6fddfd0ca64de167c4aca3bc1a2da.tar.gz) = esvDa+jyEHJCLrml5fxGjQ6qVb7BtwJg1lHoRWhGIeI=
> +SHA256 (MDeiml-tree-sitter-markdown-v0.4.1.tar.gz) = 4P2y3KHrMGOUASLhR1ycKwaQYqY4yVk543TFQn7d7p8=
> SHA256 (keplerproject-lua-compat-5.3-v0.13.tar.gz) = 9dww57H9qFbuTTkr5FdkLB8MJZJkqbm/vLaAMCzoj8I=
> -SHA256 (luvit-luv-1.48.0-2.tar.gz) = 5kzYoBl0SSiLN99soFgSDo0jCPwwX1QxYrW/PpInOgU=
> -SHA256 (neovim-neovim-v0.10.4.tar.gz) = EEEyZakVEz+KhT3HV1cTNK2m5PCqFfTEzIzEg0EYbKI=
> -SHA256 (neovim-tree-sitter-vim-v0.4.0.tar.gz) = n4Vvi0oQq0M0hVD6LTyyhGrj2OYPRYhyAFScBRxm+dU=
> -SHA256 (neovim-tree-sitter-vimdoc-v3.0.0.tar.gz) = pjm/kr9Xv6HNyQyhavJ7+vJql3kGR3bdS+NMHvFFP2w=
> -SHA256 (tree-sitter-grammars-tree-sitter-lua-v0.1.0.tar.gz) = Iwz8v6dO0fe4FJ6aHzTC78TFiacf4PXchWBiL4Ag1yI=
> -SHA256 (tree-sitter-grammars-tree-sitter-query-v0.4.0.tar.gz) = 06Qjq2bcYrKWliXigBFmeKiiJYK1/wh3lSIhCNsvam4=
> -SHA256 (tree-sitter-tree-sitter-c-v0.21.3.tar.gz) = daN4DfYRTNN0lnYcSnyf2QDHi+46Jwf1kNeMDKOiQ2g=
> -SIZE (LuaJIT-LuaJIT-75e92777988017fe47c5eb290998021bbf972d1f.tar.gz) = 1081633
> -SIZE (MDeiml-tree-sitter-markdown-v0.2.3.tar.gz) = 418293
> +SHA256 (luvit-luv-1.50.0-1.tar.gz) = u08FcFceQMHSp2RPb5wTCabM2xm/TTl+jXv9DGuI5hM=
> +SHA256 (neovim-neovim-v0.11.0.tar.gz) = aCbEgS6WmV0pqYWG1E++58myBFSF1Q0XS+zW1SQrMxk=
> +SHA256 (neovim-tree-sitter-vim-v0.5.0.tar.gz) = kAGdEtLaB1HAJxJPJ/UzW6vwaaBQRXra7VNpO16c8Qo=
> +SHA256 (neovim-tree-sitter-vimdoc-v3.0.1.tar.gz) = drZeW+6f946yElZhmxmVqsTYDyUsGeHHEKSDlIHe0J4=
> +SHA256 (tree-sitter-grammars-tree-sitter-lua-v0.3.0.tar.gz) = o0zHCr/Y0tSw+r8BQD6gX4SOGkvDfYpL/qcWRlezXTE=
> +SHA256 (tree-sitter-grammars-tree-sitter-query-v0.5.1.tar.gz) = /oxxKIClKdRUNHzUxYM2rC2yIkO65QVb21hE+z6lYZI=
> +SHA256 (tree-sitter-tree-sitter-c-v0.23.4.tar.gz) = tmxQQ+JthOXxegWa9xsVe88gIiEGntIgqhaW19HSino=
> +SIZE (JuliaStrings-utf8proc-v2.10.0.tar.gz) = 199045
> +SIZE (LuaJIT-LuaJIT-538a82133ad6fddfd0ca64de167c4aca3bc1a2da.tar.gz) = 1083676
> +SIZE (MDeiml-tree-sitter-markdown-v0.4.1.tar.gz) = 419261
> SIZE (keplerproject-lua-compat-5.3-v0.13.tar.gz) = 60960
> -SIZE (luvit-luv-1.48.0-2.tar.gz) = 134821
> -SIZE (neovim-neovim-v0.10.4.tar.gz) = 12808381
> -SIZE (neovim-tree-sitter-vim-v0.4.0.tar.gz) = 356704
> -SIZE (neovim-tree-sitter-vimdoc-v3.0.0.tar.gz) = 58110
> -SIZE (tree-sitter-grammars-tree-sitter-lua-v0.1.0.tar.gz) = 56812
> -SIZE (tree-sitter-grammars-tree-sitter-query-v0.4.0.tar.gz) = 42944
> -SIZE (tree-sitter-tree-sitter-c-v0.21.3.tar.gz) = 366957
> +SIZE (luvit-luv-1.50.0-1.tar.gz) = 142052
> +SIZE (neovim-neovim-v0.11.0.tar.gz) = 12901255
> +SIZE (neovim-tree-sitter-vim-v0.5.0.tar.gz) = 357652
> +SIZE (neovim-tree-sitter-vimdoc-v3.0.1.tar.gz) = 58427
> +SIZE (tree-sitter-grammars-tree-sitter-lua-v0.3.0.tar.gz) = 62157
> +SIZE (tree-sitter-grammars-tree-sitter-query-v0.5.1.tar.gz) = 45070
> +SIZE (tree-sitter-tree-sitter-c-v0.23.4.tar.gz) = 380057
> Index: pkg/PLIST
> ===================================================================
> RCS file: /cvs/ports/editors/neovim/pkg/PLIST,v
> diff -u -p -r1.24 PLIST
> --- pkg/PLIST 16 Oct 2024 18:49:31 -0000 1.24
> +++ pkg/PLIST 28 Mar 2025 08:44:53 -0000
> @@ -12,50 +12,6 @@ lib/nvim/parser/
> share/applications/nvim.desktop
> share/doc/pkg-readmes/${PKGSTEM}
> share/icons/hicolor/128x128/apps/nvim.png
> -share/locale/af/LC_MESSAGES/nvim.mo
> -share/locale/ca/LC_MESSAGES/nvim.mo
> -share/locale/cs.cp1250/
> -share/locale/cs.cp1250/LC_MESSAGES/
> -share/locale/cs.cp1250/LC_MESSAGES/nvim.mo
> -share/locale/cs/LC_MESSAGES/nvim.mo
> -share/locale/da/LC_MESSAGES/nvim.mo
> -share/locale/de/LC_MESSAGES/nvim.mo
> -share/locale/en_GB/LC_MESSAGES/nvim.mo
> -share/locale/eo/LC_MESSAGES/nvim.mo
> -share/locale/es/LC_MESSAGES/nvim.mo
> -share/locale/fi/LC_MESSAGES/nvim.mo
> -share/locale/fr/LC_MESSAGES/nvim.mo
> -share/locale/ga/LC_MESSAGES/nvim.mo
> -share/locale/it/LC_MESSAGES/nvim.mo
> -share/locale/ja.euc-jp/
> -share/locale/ja.euc-jp/LC_MESSAGES/
> -share/locale/ja.euc-jp/LC_MESSAGES/nvim.mo
> -share/locale/ja/LC_MESSAGES/nvim.mo
> -share/locale/ko.UTF-8/
> -share/locale/ko.UTF-8/LC_MESSAGES/
> -share/locale/ko.UTF-8/LC_MESSAGES/nvim.mo
> -share/locale/nb/LC_MESSAGES/nvim.mo
> -share/locale/nl/LC_MESSAGES/nvim.mo
> -share/locale/no/LC_MESSAGES/nvim.mo
> -share/locale/pl.UTF-8/
> -share/locale/pl.UTF-8/LC_MESSAGES/
> -share/locale/pl.UTF-8/LC_MESSAGES/nvim.mo
> -share/locale/pt_BR/LC_MESSAGES/nvim.mo
> -share/locale/ru/LC_MESSAGES/nvim.mo
> -share/locale/sk.cp1250/
> -share/locale/sk.cp1250/LC_MESSAGES/
> -share/locale/sk.cp1250/LC_MESSAGES/nvim.mo
> -share/locale/sk/LC_MESSAGES/nvim.mo
> -share/locale/sv/LC_MESSAGES/nvim.mo
> -share/locale/tr/LC_MESSAGES/nvim.mo
> -share/locale/uk/LC_MESSAGES/nvim.mo
> -share/locale/vi/LC_MESSAGES/nvim.mo
> -share/locale/zh_CN.UTF-8/
> -share/locale/zh_CN.UTF-8/LC_MESSAGES/
> -share/locale/zh_CN.UTF-8/LC_MESSAGES/nvim.mo
> -share/locale/zh_TW.UTF-8/
> -share/locale/zh_TW.UTF-8/LC_MESSAGES/
> -share/locale/zh_TW.UTF-8/LC_MESSAGES/nvim.mo
> share/nvim/
> share/nvim/runtime/
> share/nvim/runtime/autoload/
> @@ -79,16 +35,14 @@ share/nvim/runtime/autoload/dist/vim.vim
> share/nvim/runtime/autoload/freebasic.vim
> share/nvim/runtime/autoload/gnat.vim
> share/nvim/runtime/autoload/gzip.vim
> +share/nvim/runtime/autoload/hare.vim
> share/nvim/runtime/autoload/haskellcomplete.vim
> -share/nvim/runtime/autoload/health.vim
> +share/nvim/runtime/autoload/hcl.vim
> share/nvim/runtime/autoload/htmlcomplete.vim
> +share/nvim/runtime/autoload/javaformat.vim
> share/nvim/runtime/autoload/javascriptcomplete.vim
> share/nvim/runtime/autoload/modula2.vim
> share/nvim/runtime/autoload/msgpack.vim
> -share/nvim/runtime/autoload/netrw.vim
> -share/nvim/runtime/autoload/netrwFileHandlers.vim
> -share/nvim/runtime/autoload/netrwSettings.vim
> -share/nvim/runtime/autoload/netrw_gitignore.vim
> share/nvim/runtime/autoload/paste.vim
> share/nvim/runtime/autoload/phpcomplete.vim
> share/nvim/runtime/autoload/provider/
> @@ -112,10 +66,12 @@ share/nvim/runtime/autoload/rust/debuggi
> share/nvim/runtime/autoload/rustfmt.vim
> share/nvim/runtime/autoload/shada.vim
> share/nvim/runtime/autoload/spellfile.vim
> +share/nvim/runtime/autoload/spotbugs.vim
> share/nvim/runtime/autoload/sqlcomplete.vim
> share/nvim/runtime/autoload/syntaxcomplete.vim
> share/nvim/runtime/autoload/tar.vim
> share/nvim/runtime/autoload/tutor.vim
> +share/nvim/runtime/autoload/typst.vim
> share/nvim/runtime/autoload/vimexpect.vim
> share/nvim/runtime/autoload/xml/
> share/nvim/runtime/autoload/xml/html32.vim
> @@ -133,8 +89,6 @@ share/nvim/runtime/autoload/xml/xsd.vim
> share/nvim/runtime/autoload/xml/xsl.vim
> share/nvim/runtime/autoload/xmlcomplete.vim
> share/nvim/runtime/autoload/xmlformat.vim
> -share/nvim/runtime/autoload/zig/
> -share/nvim/runtime/autoload/zig/fmt.vim
> share/nvim/runtime/autoload/zip.vim
> share/nvim/runtime/colors/
> share/nvim/runtime/colors/README.txt
> @@ -160,6 +114,7 @@ share/nvim/runtime/colors/shine.vim
> share/nvim/runtime/colors/slate.vim
> share/nvim/runtime/colors/sorbet.vim
> share/nvim/runtime/colors/torte.vim
> +share/nvim/runtime/colors/unokai.vim
> share/nvim/runtime/colors/vim.lua
> share/nvim/runtime/colors/wildcharm.vim
> share/nvim/runtime/colors/zaibatsu.vim
> @@ -167,12 +122,14 @@ share/nvim/runtime/colors/zellner.vim
> share/nvim/runtime/compiler/
> share/nvim/runtime/compiler/README.txt
> share/nvim/runtime/compiler/ant.vim
> +share/nvim/runtime/compiler/bash.vim
> share/nvim/runtime/compiler/bcc.vim
> share/nvim/runtime/compiler/bdf.vim
> share/nvim/runtime/compiler/cargo.vim
> share/nvim/runtime/compiler/checkstyle.vim
> share/nvim/runtime/compiler/cm3.vim
> share/nvim/runtime/compiler/context.vim
> +share/nvim/runtime/compiler/cppcheck.vim
> share/nvim/runtime/compiler/cs.vim
> share/nvim/runtime/compiler/csslint.vim
> share/nvim/runtime/compiler/cucumber.vim
> @@ -205,6 +162,7 @@ share/nvim/runtime/compiler/gjs.vim
> share/nvim/runtime/compiler/gm2.vim
> share/nvim/runtime/compiler/gnat.vim
> share/nvim/runtime/compiler/go.vim
> +share/nvim/runtime/compiler/groff.vim
> share/nvim/runtime/compiler/haml.vim
> share/nvim/runtime/compiler/hare.vim
> share/nvim/runtime/compiler/hp_acc.vim
> @@ -221,6 +179,8 @@ share/nvim/runtime/compiler/jjs.vim
> share/nvim/runtime/compiler/jq.vim
> share/nvim/runtime/compiler/jshint.vim
> share/nvim/runtime/compiler/jsonlint.vim
> +share/nvim/runtime/compiler/make.vim
> +share/nvim/runtime/compiler/maven.vim
> share/nvim/runtime/compiler/mcs.vim
> share/nvim/runtime/compiler/mips_c.vim
> share/nvim/runtime/compiler/mipspro_c89.vim
> @@ -228,6 +188,7 @@ share/nvim/runtime/compiler/mipspro_cpp.
> share/nvim/runtime/compiler/modelsim_vcom.vim
> share/nvim/runtime/compiler/msbuild.vim
> share/nvim/runtime/compiler/msvc.vim
> +share/nvim/runtime/compiler/mypy.vim
> share/nvim/runtime/compiler/neato.vim
> share/nvim/runtime/compiler/ocaml.vim
> share/nvim/runtime/compiler/onsgmls.vim
> @@ -240,6 +201,7 @@ share/nvim/runtime/compiler/pip_compile.
> share/nvim/runtime/compiler/podchecker.vim
> share/nvim/runtime/compiler/powershell.vim
> share/nvim/runtime/compiler/pylint.vim
> +share/nvim/runtime/compiler/pytest.vim
> share/nvim/runtime/compiler/pyunit.vim
> share/nvim/runtime/compiler/raco.vim
> share/nvim/runtime/compiler/racomake.vim
> @@ -253,6 +215,7 @@ share/nvim/runtime/compiler/rst.vim
> share/nvim/runtime/compiler/rubocop.vim
> share/nvim/runtime/compiler/ruby.vim
> share/nvim/runtime/compiler/rubyunit.vim
> +share/nvim/runtime/compiler/ruff.vim
> share/nvim/runtime/compiler/rustc.vim
> share/nvim/runtime/compiler/sass.vim
> share/nvim/runtime/compiler/scdoc.vim
> @@ -261,15 +224,18 @@ share/nvim/runtime/compiler/shellcheck.v
> share/nvim/runtime/compiler/sml.vim
> share/nvim/runtime/compiler/spectral.vim
> share/nvim/runtime/compiler/splint.vim
> +share/nvim/runtime/compiler/spotbugs.vim
> share/nvim/runtime/compiler/stack.vim
> share/nvim/runtime/compiler/standard.vim
> share/nvim/runtime/compiler/stylelint.vim
> +share/nvim/runtime/compiler/svelte-check.vim
> share/nvim/runtime/compiler/tcl.vim
> share/nvim/runtime/compiler/tex.vim
> share/nvim/runtime/compiler/tidy.vim
> share/nvim/runtime/compiler/ts-node.vim
> share/nvim/runtime/compiler/tsc.vim
> share/nvim/runtime/compiler/typedoc.vim
> +share/nvim/runtime/compiler/typst.vim
> share/nvim/runtime/compiler/vimdoc.vim
> share/nvim/runtime/compiler/xbuild.vim
> share/nvim/runtime/compiler/xmllint.vim
> @@ -286,13 +252,14 @@ share/nvim/runtime/doc/
> share/nvim/runtime/doc/api.txt
> share/nvim/runtime/doc/arabic.txt
> share/nvim/runtime/doc/autocmd.txt
> -share/nvim/runtime/doc/backers.txt
> share/nvim/runtime/doc/builtin.txt
> share/nvim/runtime/doc/change.txt
> share/nvim/runtime/doc/channel.txt
> share/nvim/runtime/doc/cmdline.txt
> +share/nvim/runtime/doc/credits.txt
> share/nvim/runtime/doc/debug.txt
> share/nvim/runtime/doc/deprecated.txt
> +share/nvim/runtime/doc/dev_arch.txt
> share/nvim/runtime/doc/dev_style.txt
> share/nvim/runtime/doc/dev_theme.txt
> share/nvim/runtime/doc/dev_tools.txt
> @@ -308,11 +275,13 @@ share/nvim/runtime/doc/faq.txt
> share/nvim/runtime/doc/filetype.txt
> share/nvim/runtime/doc/fold.txt
> share/nvim/runtime/doc/ft_ada.txt
> +share/nvim/runtime/doc/ft_hare.txt
> share/nvim/runtime/doc/ft_ps1.txt
> share/nvim/runtime/doc/ft_raku.txt
> share/nvim/runtime/doc/ft_rust.txt
> share/nvim/runtime/doc/ft_sql.txt
> share/nvim/runtime/doc/gui.txt
> +share/nvim/runtime/doc/health.txt
> share/nvim/runtime/doc/hebrew.txt
> share/nvim/runtime/doc/help.txt
> share/nvim/runtime/doc/helphelp.txt
> @@ -325,6 +294,7 @@ share/nvim/runtime/doc/insert.txt
> share/nvim/runtime/doc/intro.txt
> share/nvim/runtime/doc/job_control.txt
> share/nvim/runtime/doc/lsp.txt
> +share/nvim/runtime/doc/lua-bit.txt
> share/nvim/runtime/doc/lua-guide.txt
> share/nvim/runtime/doc/lua.txt
> share/nvim/runtime/doc/luaref.txt
> @@ -334,16 +304,14 @@ share/nvim/runtime/doc/mbyte.txt
> share/nvim/runtime/doc/message.txt
> share/nvim/runtime/doc/mlang.txt
> share/nvim/runtime/doc/motion.txt
> +share/nvim/runtime/doc/news-0.10.txt
> share/nvim/runtime/doc/news-0.9.txt
> share/nvim/runtime/doc/news.txt
> share/nvim/runtime/doc/nvim.txt
> -share/nvim/runtime/doc/nvim_terminal_emulator.txt
> share/nvim/runtime/doc/options.txt
> share/nvim/runtime/doc/pattern.txt
> share/nvim/runtime/doc/pi_gzip.txt
> -share/nvim/runtime/doc/pi_health.txt
> share/nvim/runtime/doc/pi_msgpack.txt
> -share/nvim/runtime/doc/pi_netrw.txt
> share/nvim/runtime/doc/pi_paren.txt
> share/nvim/runtime/doc/pi_spec.txt
> share/nvim/runtime/doc/pi_tar.txt
> @@ -367,10 +335,11 @@ share/nvim/runtime/doc/syntax.txt
> share/nvim/runtime/doc/tabpage.txt
> share/nvim/runtime/doc/tags
> share/nvim/runtime/doc/tagsrch.txt
> -share/nvim/runtime/doc/term.txt
> +share/nvim/runtime/doc/terminal.txt
> share/nvim/runtime/doc/testing.txt
> share/nvim/runtime/doc/tips.txt
> share/nvim/runtime/doc/treesitter.txt
> +share/nvim/runtime/doc/tui.txt
> share/nvim/runtime/doc/uganda.txt
> share/nvim/runtime/doc/ui.txt
> share/nvim/runtime/doc/undo.txt
> @@ -409,6 +378,7 @@ share/nvim/runtime/doc/usr_45.txt
> share/nvim/runtime/doc/usr_toc.txt
> share/nvim/runtime/doc/various.txt
> share/nvim/runtime/doc/vi_diff.txt
> +share/nvim/runtime/doc/vietnamese.txt
> share/nvim/runtime/doc/vim_diff.txt
> share/nvim/runtime/doc/visual.txt
> share/nvim/runtime/doc/vvars.txt
> @@ -426,18 +396,24 @@ share/nvim/runtime/ftplugin/abaqus.vim
> share/nvim/runtime/ftplugin/ada.vim
> share/nvim/runtime/ftplugin/alsaconf.vim
> share/nvim/runtime/ftplugin/ant.vim
> +share/nvim/runtime/ftplugin/antlr4.vim
> share/nvim/runtime/ftplugin/apache.vim
> share/nvim/runtime/ftplugin/arch.vim
> +share/nvim/runtime/ftplugin/arduino.lua
> +share/nvim/runtime/ftplugin/arduino.vim
> share/nvim/runtime/ftplugin/art.vim
> share/nvim/runtime/ftplugin/asciidoc.vim
> share/nvim/runtime/ftplugin/asm.vim
> share/nvim/runtime/ftplugin/aspvbs.vim
> share/nvim/runtime/ftplugin/astro.vim
> +share/nvim/runtime/ftplugin/asy.vim
> +share/nvim/runtime/ftplugin/autohotkey.vim
> share/nvim/runtime/ftplugin/automake.vim
> share/nvim/runtime/ftplugin/awk.vim
> share/nvim/runtime/ftplugin/bash.vim
> share/nvim/runtime/ftplugin/basic.vim
> share/nvim/runtime/ftplugin/bdf.vim
> +share/nvim/runtime/ftplugin/bindzone.vim
> share/nvim/runtime/ftplugin/bitbake.vim
> share/nvim/runtime/ftplugin/bp.vim
> share/nvim/runtime/ftplugin/bst.vim
> @@ -445,23 +421,29 @@ share/nvim/runtime/ftplugin/btm.vim
> share/nvim/runtime/ftplugin/bzl.vim
> share/nvim/runtime/ftplugin/c.lua
> share/nvim/runtime/ftplugin/c.vim
> +share/nvim/runtime/ftplugin/c3.vim
> +share/nvim/runtime/ftplugin/cabal.vim
> share/nvim/runtime/ftplugin/calendar.vim
> -share/nvim/runtime/ftplugin/calender.lua
> share/nvim/runtime/ftplugin/cdrdaoconf.vim
> +share/nvim/runtime/ftplugin/cedar.vim
> share/nvim/runtime/ftplugin/cfg.vim
> share/nvim/runtime/ftplugin/cgdbrc.vim
> +share/nvim/runtime/ftplugin/ch.lua
> share/nvim/runtime/ftplugin/ch.vim
> share/nvim/runtime/ftplugin/changelog.vim
> share/nvim/runtime/ftplugin/chatito.vim
> +share/nvim/runtime/ftplugin/checkhealth.lua
> share/nvim/runtime/ftplugin/checkhealth.vim
> share/nvim/runtime/ftplugin/chicken.vim
> share/nvim/runtime/ftplugin/clojure.vim
> share/nvim/runtime/ftplugin/cmake.vim
> +share/nvim/runtime/ftplugin/cmakecache.vim
> share/nvim/runtime/ftplugin/cobol.vim
> share/nvim/runtime/ftplugin/conf.vim
> share/nvim/runtime/ftplugin/config.vim
> share/nvim/runtime/ftplugin/confini.vim
> share/nvim/runtime/ftplugin/context.vim
> +share/nvim/runtime/ftplugin/cook.vim
> share/nvim/runtime/ftplugin/corn.vim
> share/nvim/runtime/ftplugin/cpp.vim
> share/nvim/runtime/ftplugin/crm.vim
> @@ -470,11 +452,13 @@ share/nvim/runtime/ftplugin/cs.lua
> share/nvim/runtime/ftplugin/cs.vim
> share/nvim/runtime/ftplugin/csc.vim
> share/nvim/runtime/ftplugin/csh.vim
> -share/nvim/runtime/ftplugin/css.lua
> share/nvim/runtime/ftplugin/css.vim
> +share/nvim/runtime/ftplugin/csv.vim
> share/nvim/runtime/ftplugin/cucumber.vim
> +share/nvim/runtime/ftplugin/cuda.vim
> share/nvim/runtime/ftplugin/cvsrc.vim
> share/nvim/runtime/ftplugin/d.lua
> +share/nvim/runtime/ftplugin/dart.vim
> share/nvim/runtime/ftplugin/deb822sources.vim
> share/nvim/runtime/ftplugin/debchangelog.vim
> share/nvim/runtime/ftplugin/debcontrol.vim
> @@ -485,6 +469,7 @@ share/nvim/runtime/ftplugin/dictconf.vim
> share/nvim/runtime/ftplugin/dictdconf.vim
> share/nvim/runtime/ftplugin/diff.vim
> share/nvim/runtime/ftplugin/dircolors.vim
> +share/nvim/runtime/ftplugin/dnsmasq.vim
> share/nvim/runtime/ftplugin/docbk.vim
> share/nvim/runtime/ftplugin/dockerfile.vim
> share/nvim/runtime/ftplugin/dosbatch.vim
> @@ -494,6 +479,7 @@ share/nvim/runtime/ftplugin/dtd.vim
> share/nvim/runtime/ftplugin/dtrace.vim
> share/nvim/runtime/ftplugin/dts.vim
> share/nvim/runtime/ftplugin/dune.vim
> +share/nvim/runtime/ftplugin/editorconfig.vim
> share/nvim/runtime/ftplugin/eiffel.vim
> share/nvim/runtime/ftplugin/elinks.vim
> share/nvim/runtime/ftplugin/elixir.vim
> @@ -502,6 +488,7 @@ share/nvim/runtime/ftplugin/erlang.vim
> share/nvim/runtime/ftplugin/eruby.vim
> share/nvim/runtime/ftplugin/eterm.vim
> share/nvim/runtime/ftplugin/expect.vim
> +share/nvim/runtime/ftplugin/exports.vim
> share/nvim/runtime/ftplugin/falcon.vim
> share/nvim/runtime/ftplugin/faust.lua
> share/nvim/runtime/ftplugin/fennel.vim
> @@ -518,6 +505,7 @@ share/nvim/runtime/ftplugin/fvwm.vim
> share/nvim/runtime/ftplugin/gdb.vim
> share/nvim/runtime/ftplugin/gdscript.vim
> share/nvim/runtime/ftplugin/gdshader.vim
> +share/nvim/runtime/ftplugin/gel.vim
> share/nvim/runtime/ftplugin/git.vim
> share/nvim/runtime/ftplugin/gitattributes.vim
> share/nvim/runtime/ftplugin/gitcommit.vim
> @@ -525,10 +513,14 @@ share/nvim/runtime/ftplugin/gitconfig.vi
> share/nvim/runtime/ftplugin/gitignore.vim
> share/nvim/runtime/ftplugin/gitrebase.vim
> share/nvim/runtime/ftplugin/gitsendemail.vim
> +share/nvim/runtime/ftplugin/gleam.vim
> share/nvim/runtime/ftplugin/glsl.lua
> share/nvim/runtime/ftplugin/go.vim
> +share/nvim/runtime/ftplugin/goaccess.vim
> +share/nvim/runtime/ftplugin/gomod.vim
> share/nvim/runtime/ftplugin/gpg.vim
> share/nvim/runtime/ftplugin/gprof.vim
> +share/nvim/runtime/ftplugin/graphql.vim
> share/nvim/runtime/ftplugin/groovy.vim
> share/nvim/runtime/ftplugin/group.vim
> share/nvim/runtime/ftplugin/grub.vim
> @@ -536,28 +528,37 @@ share/nvim/runtime/ftplugin/gyp.vim
> share/nvim/runtime/ftplugin/haml.vim
> share/nvim/runtime/ftplugin/hamster.vim
> share/nvim/runtime/ftplugin/hare.vim
> +share/nvim/runtime/ftplugin/haredoc.vim
> share/nvim/runtime/ftplugin/haskell.vim
> +share/nvim/runtime/ftplugin/hcl.vim
> share/nvim/runtime/ftplugin/heex.vim
> share/nvim/runtime/ftplugin/help.lua
> share/nvim/runtime/ftplugin/help.vim
> share/nvim/runtime/ftplugin/hgcommit.vim
> +share/nvim/runtime/ftplugin/hlsplaylist.vim
> share/nvim/runtime/ftplugin/hog.vim
> share/nvim/runtime/ftplugin/hostconf.vim
> share/nvim/runtime/ftplugin/hostsaccess.vim
> share/nvim/runtime/ftplugin/html.vim
> +share/nvim/runtime/ftplugin/htmlangular.vim
> share/nvim/runtime/ftplugin/htmldjango.vim
> +share/nvim/runtime/ftplugin/http.vim
> share/nvim/runtime/ftplugin/hurl.vim
> +share/nvim/runtime/ftplugin/hyprlang.vim
> share/nvim/runtime/ftplugin/i3config.vim
> share/nvim/runtime/ftplugin/icon.vim
> +share/nvim/runtime/ftplugin/idris2.vim
> share/nvim/runtime/ftplugin/indent.lua
> share/nvim/runtime/ftplugin/indent.vim
> share/nvim/runtime/ftplugin/initex.vim
> +share/nvim/runtime/ftplugin/ipkg.vim
> share/nvim/runtime/ftplugin/ishd.vim
> share/nvim/runtime/ftplugin/j.vim
> share/nvim/runtime/ftplugin/java.vim
> +share/nvim/runtime/ftplugin/javacc.vim
> share/nvim/runtime/ftplugin/javascript.vim
> share/nvim/runtime/ftplugin/javascriptreact.vim
> -share/nvim/runtime/ftplugin/jj.vim
> +share/nvim/runtime/ftplugin/jjdescription.vim
> share/nvim/runtime/ftplugin/jproperties.vim
> share/nvim/runtime/ftplugin/jq.vim
> share/nvim/runtime/ftplugin/json.vim
> @@ -566,17 +567,28 @@ share/nvim/runtime/ftplugin/jsonc.vim
> share/nvim/runtime/ftplugin/jsonnet.vim
> share/nvim/runtime/ftplugin/jsp.vim
> share/nvim/runtime/ftplugin/julia.vim
> +share/nvim/runtime/ftplugin/just.vim
> +share/nvim/runtime/ftplugin/karel.vim
> share/nvim/runtime/ftplugin/kconfig.vim
> +share/nvim/runtime/ftplugin/kdl.vim
> +share/nvim/runtime/ftplugin/kivy.vim
> share/nvim/runtime/ftplugin/kotlin.vim
> share/nvim/runtime/ftplugin/kwt.vim
> +share/nvim/runtime/ftplugin/lc.vim
> share/nvim/runtime/ftplugin/ld.vim
> +share/nvim/runtime/ftplugin/ldapconf.vim
> +share/nvim/runtime/ftplugin/leo.vim
> share/nvim/runtime/ftplugin/less.vim
> +share/nvim/runtime/ftplugin/lex.vim
> share/nvim/runtime/ftplugin/lftp.vim
> share/nvim/runtime/ftplugin/libao.vim
> share/nvim/runtime/ftplugin/limits.vim
> share/nvim/runtime/ftplugin/liquid.vim
> share/nvim/runtime/ftplugin/lisp.vim
> share/nvim/runtime/ftplugin/livebook.vim
> +share/nvim/runtime/ftplugin/llvm.vim
> +share/nvim/runtime/ftplugin/lnk.vim
> +share/nvim/runtime/ftplugin/lnkmap.vim
> share/nvim/runtime/ftplugin/logcheck.vim
> share/nvim/runtime/ftplugin/loginaccess.vim
> share/nvim/runtime/ftplugin/logindefs.vim
> @@ -587,6 +599,7 @@ share/nvim/runtime/ftplugin/lua.lua
> share/nvim/runtime/ftplugin/lua.vim
> share/nvim/runtime/ftplugin/luau.vim
> share/nvim/runtime/ftplugin/lynx.vim
> +share/nvim/runtime/ftplugin/m17ndb.vim
> share/nvim/runtime/ftplugin/m3build.vim
> share/nvim/runtime/ftplugin/m3quake.vim
> share/nvim/runtime/ftplugin/m4.vim
> @@ -596,29 +609,39 @@ share/nvim/runtime/ftplugin/mailcap.vim
> share/nvim/runtime/ftplugin/make.vim
> share/nvim/runtime/ftplugin/man.vim
> share/nvim/runtime/ftplugin/manconf.vim
> +share/nvim/runtime/ftplugin/markdown.lua
> share/nvim/runtime/ftplugin/markdown.vim
> share/nvim/runtime/ftplugin/masm.vim
> share/nvim/runtime/ftplugin/matlab.vim
> +share/nvim/runtime/ftplugin/mediawiki.vim
> share/nvim/runtime/ftplugin/mermaid.vim
> share/nvim/runtime/ftplugin/meson.vim
> share/nvim/runtime/ftplugin/mf.vim
> +share/nvim/runtime/ftplugin/mlir.vim
> share/nvim/runtime/ftplugin/mma.vim
> share/nvim/runtime/ftplugin/modconf.vim
> share/nvim/runtime/ftplugin/modula2.vim
> share/nvim/runtime/ftplugin/modula3.vim
> +share/nvim/runtime/ftplugin/mojo.vim
> share/nvim/runtime/ftplugin/mp.vim
> share/nvim/runtime/ftplugin/mplayerconf.vim
> share/nvim/runtime/ftplugin/mrxvtrc.vim
> share/nvim/runtime/ftplugin/msmessages.vim
> +share/nvim/runtime/ftplugin/mss.vim
> share/nvim/runtime/ftplugin/muttrc.vim
> +share/nvim/runtime/ftplugin/mysql.vim
> share/nvim/runtime/ftplugin/nanorc.vim
> share/nvim/runtime/ftplugin/neomuttrc.vim
> share/nvim/runtime/ftplugin/netrc.vim
> share/nvim/runtime/ftplugin/nginx.vim
> +share/nvim/runtime/ftplugin/nim.vim
> share/nvim/runtime/ftplugin/nix.vim
> share/nvim/runtime/ftplugin/nroff.vim
> share/nvim/runtime/ftplugin/nsis.vim
> +share/nvim/runtime/ftplugin/nu.vim
> +share/nvim/runtime/ftplugin/objc.lua
> share/nvim/runtime/ftplugin/objc.vim
> +share/nvim/runtime/ftplugin/objcpp.vim
> share/nvim/runtime/ftplugin/objdump.vim
> share/nvim/runtime/ftplugin/obse.vim
> share/nvim/runtime/ftplugin/ocaml.vim
> @@ -626,7 +649,9 @@ share/nvim/runtime/ftplugin/occam.vim
> share/nvim/runtime/ftplugin/octave.vim
> share/nvim/runtime/ftplugin/odin.vim
> share/nvim/runtime/ftplugin/ondir.vim
> +share/nvim/runtime/ftplugin/opencl.vim
> share/nvim/runtime/ftplugin/openvpn.vim
> +share/nvim/runtime/ftplugin/org.vim
> share/nvim/runtime/ftplugin/pamconf.vim
> share/nvim/runtime/ftplugin/pascal.vim
> share/nvim/runtime/ftplugin/passwd.vim
> @@ -636,15 +661,20 @@ share/nvim/runtime/ftplugin/perl.vim
> share/nvim/runtime/ftplugin/php.vim
> share/nvim/runtime/ftplugin/pinfo.vim
> share/nvim/runtime/ftplugin/plaintex.vim
> +share/nvim/runtime/ftplugin/plsql.vim
> share/nvim/runtime/ftplugin/pod.vim
> share/nvim/runtime/ftplugin/poefilter.vim
> share/nvim/runtime/ftplugin/poke.vim
> share/nvim/runtime/ftplugin/postscr.vim
> +share/nvim/runtime/ftplugin/prisma.vim
> share/nvim/runtime/ftplugin/procmail.vim
> share/nvim/runtime/ftplugin/prolog.vim
> +share/nvim/runtime/ftplugin/proto.vim
> share/nvim/runtime/ftplugin/protocols.vim
> share/nvim/runtime/ftplugin/ps1.vim
> share/nvim/runtime/ftplugin/ps1xml.vim
> +share/nvim/runtime/ftplugin/ptx.vim
> +share/nvim/runtime/ftplugin/purescript.vim
> share/nvim/runtime/ftplugin/pymanifest.vim
> share/nvim/runtime/ftplugin/pyrex.vim
> share/nvim/runtime/ftplugin/python.vim
> @@ -658,9 +688,11 @@ share/nvim/runtime/ftplugin/r.vim
> share/nvim/runtime/ftplugin/racc.vim
> share/nvim/runtime/ftplugin/racket.vim
> share/nvim/runtime/ftplugin/raku.vim
> +share/nvim/runtime/ftplugin/rasi.vim
> share/nvim/runtime/ftplugin/readline.vim
> share/nvim/runtime/ftplugin/registry.vim
> share/nvim/runtime/ftplugin/requirements.vim
> +share/nvim/runtime/ftplugin/rescript.vim
> share/nvim/runtime/ftplugin/reva.vim
> share/nvim/runtime/ftplugin/rhelp.vim
> share/nvim/runtime/ftplugin/rmd.vim
> @@ -673,6 +705,7 @@ share/nvim/runtime/ftplugin/rrst.vim
> share/nvim/runtime/ftplugin/rst.vim
> share/nvim/runtime/ftplugin/ruby.vim
> share/nvim/runtime/ftplugin/rust.vim
> +share/nvim/runtime/ftplugin/samba.vim
> share/nvim/runtime/ftplugin/sass.vim
> share/nvim/runtime/ftplugin/sbt.vim
> share/nvim/runtime/ftplugin/scala.vim
> @@ -688,21 +721,29 @@ share/nvim/runtime/ftplugin/sexplib.vim
> share/nvim/runtime/ftplugin/sgml.vim
> share/nvim/runtime/ftplugin/sh.vim
> share/nvim/runtime/ftplugin/shada.vim
> +share/nvim/runtime/ftplugin/shaderslang.vim
> share/nvim/runtime/ftplugin/sieve.vim
> +share/nvim/runtime/ftplugin/slint.vim
> share/nvim/runtime/ftplugin/slpconf.vim
> share/nvim/runtime/ftplugin/slpreg.vim
> share/nvim/runtime/ftplugin/slpspi.vim
> +share/nvim/runtime/ftplugin/snakemake.vim
> share/nvim/runtime/ftplugin/solidity.vim
> share/nvim/runtime/ftplugin/solution.vim
> +share/nvim/runtime/ftplugin/spajson.vim
> share/nvim/runtime/ftplugin/spec.vim
> share/nvim/runtime/ftplugin/sql.vim
> +share/nvim/runtime/ftplugin/squirrel.vim
> share/nvim/runtime/ftplugin/ssa.vim
> share/nvim/runtime/ftplugin/sshconfig.vim
> +share/nvim/runtime/ftplugin/sshdconfig.vim
> share/nvim/runtime/ftplugin/stata.lua
> share/nvim/runtime/ftplugin/stylus.vim
> share/nvim/runtime/ftplugin/sudoers.vim
> share/nvim/runtime/ftplugin/supercollider.lua
> +share/nvim/runtime/ftplugin/svelte.vim
> share/nvim/runtime/ftplugin/svg.vim
> +share/nvim/runtime/ftplugin/sway.vim
> share/nvim/runtime/ftplugin/swayconfig.vim
> share/nvim/runtime/ftplugin/swift.lua
> share/nvim/runtime/ftplugin/swift.vim
> @@ -714,9 +755,14 @@ share/nvim/runtime/ftplugin/systemverilo
> share/nvim/runtime/ftplugin/tap.vim
> share/nvim/runtime/ftplugin/tcl.vim
> share/nvim/runtime/ftplugin/tcsh.vim
> +share/nvim/runtime/ftplugin/tera.vim
> share/nvim/runtime/ftplugin/terminfo.vim
> +share/nvim/runtime/ftplugin/terraform.vim
> share/nvim/runtime/ftplugin/tex.vim
> share/nvim/runtime/ftplugin/text.vim
> +share/nvim/runtime/ftplugin/tf.vim
> +share/nvim/runtime/ftplugin/thrift.vim
> +share/nvim/runtime/ftplugin/tiasm.vim
> share/nvim/runtime/ftplugin/tidy.vim
> share/nvim/runtime/ftplugin/tmux.vim
> share/nvim/runtime/ftplugin/toml.vim
> @@ -725,6 +771,7 @@ share/nvim/runtime/ftplugin/tt2html.vim
> share/nvim/runtime/ftplugin/tutor.vim
> share/nvim/runtime/ftplugin/typescript.vim
> share/nvim/runtime/ftplugin/typescriptreact.vim
> +share/nvim/runtime/ftplugin/typst.vim
> share/nvim/runtime/ftplugin/uci.vim
> share/nvim/runtime/ftplugin/udevconf.vim
> share/nvim/runtime/ftplugin/udevperm.vim
> @@ -733,6 +780,7 @@ share/nvim/runtime/ftplugin/unison.vim
> share/nvim/runtime/ftplugin/updatedb.vim
> share/nvim/runtime/ftplugin/urlshortcut.vim
> share/nvim/runtime/ftplugin/usd.vim
> +share/nvim/runtime/ftplugin/v.vim
> share/nvim/runtime/ftplugin/vb.vim
> share/nvim/runtime/ftplugin/vdf.vim
> share/nvim/runtime/ftplugin/verilog.vim
> @@ -744,16 +792,17 @@ share/nvim/runtime/ftplugin/wat.vim
> share/nvim/runtime/ftplugin/wget.vim
> share/nvim/runtime/ftplugin/wget2.vim
> share/nvim/runtime/ftplugin/xcompose.vim
> -share/nvim/runtime/ftplugin/xdefaults.lua
> share/nvim/runtime/ftplugin/xdefaults.vim
> share/nvim/runtime/ftplugin/xf86conf.vim
> share/nvim/runtime/ftplugin/xhtml.vim
> share/nvim/runtime/ftplugin/xinetd.vim
> share/nvim/runtime/ftplugin/xml.vim
> share/nvim/runtime/ftplugin/xmodmap.vim
> +share/nvim/runtime/ftplugin/xs.lua
> share/nvim/runtime/ftplugin/xs.vim
> share/nvim/runtime/ftplugin/xsd.vim
> share/nvim/runtime/ftplugin/xslt.vim
> +share/nvim/runtime/ftplugin/yacc.vim
> share/nvim/runtime/ftplugin/yaml.vim
> share/nvim/runtime/ftplugin/zathurarc.vim
> share/nvim/runtime/ftplugin/zig.vim
> @@ -767,7 +816,7 @@ share/nvim/runtime/indent/README.txt
> share/nvim/runtime/indent/aap.vim
> share/nvim/runtime/indent/ada.vim
> share/nvim/runtime/indent/ant.vim
> -share/nvim/runtime/indent/asm.vim
> +share/nvim/runtime/indent/arduino.vim
> share/nvim/runtime/indent/astro.vim
> share/nvim/runtime/indent/automake.vim
> share/nvim/runtime/indent/awk.vim
> @@ -818,15 +867,19 @@ share/nvim/runtime/indent/freebasic.vim
> share/nvim/runtime/indent/gdscript.vim
> share/nvim/runtime/indent/gitconfig.vim
> share/nvim/runtime/indent/gitolite.vim
> +share/nvim/runtime/indent/glsl.vim
> share/nvim/runtime/indent/go.vim
> +share/nvim/runtime/indent/graphql.vim
> share/nvim/runtime/indent/gyp.vim
> share/nvim/runtime/indent/haml.vim
> share/nvim/runtime/indent/hamster.vim
> share/nvim/runtime/indent/hare.vim
> +share/nvim/runtime/indent/hcl.vim
> share/nvim/runtime/indent/hog.vim
> share/nvim/runtime/indent/html.vim
> share/nvim/runtime/indent/htmldjango.vim
> share/nvim/runtime/indent/idlang.vim
> +share/nvim/runtime/indent/idris2.vim
> share/nvim/runtime/indent/ishd.vim
> share/nvim/runtime/indent/j.vim
> share/nvim/runtime/indent/java.vim
> @@ -837,6 +890,8 @@ share/nvim/runtime/indent/json5.vim
> share/nvim/runtime/indent/jsonc.vim
> share/nvim/runtime/indent/jsp.vim
> share/nvim/runtime/indent/julia.vim
> +share/nvim/runtime/indent/just.vim
> +share/nvim/runtime/indent/kdl.vim
> share/nvim/runtime/indent/kotlin.vim
> share/nvim/runtime/indent/krl.vim
> share/nvim/runtime/indent/ld.vim
> @@ -848,12 +903,14 @@ share/nvim/runtime/indent/livebook.vim
> share/nvim/runtime/indent/logtalk.vim
> share/nvim/runtime/indent/lua.vim
> share/nvim/runtime/indent/luau.vim
> +share/nvim/runtime/indent/m17ndb.vim
> share/nvim/runtime/indent/mail.vim
> share/nvim/runtime/indent/make.vim
> share/nvim/runtime/indent/matlab.vim
> share/nvim/runtime/indent/meson.vim
> share/nvim/runtime/indent/mf.vim
> share/nvim/runtime/indent/mma.vim
> +share/nvim/runtime/indent/mojo.vim
> share/nvim/runtime/indent/mp.vim
> share/nvim/runtime/indent/nginx.vim
> share/nvim/runtime/indent/nsis.vim
> @@ -868,6 +925,7 @@ share/nvim/runtime/indent/php.vim
> share/nvim/runtime/indent/postscr.vim
> share/nvim/runtime/indent/pov.vim
> share/nvim/runtime/indent/prolog.vim
> +share/nvim/runtime/indent/proto.vim
> share/nvim/runtime/indent/ps1.vim
> share/nvim/runtime/indent/pyrex.vim
> share/nvim/runtime/indent/python.vim
> @@ -898,6 +956,7 @@ share/nvim/runtime/indent/sdl.vim
> share/nvim/runtime/indent/sh.vim
> share/nvim/runtime/indent/sml.vim
> share/nvim/runtime/indent/solidity.vim
> +share/nvim/runtime/indent/spajson.vim
> share/nvim/runtime/indent/sql.vim
> share/nvim/runtime/indent/sqlanywhere.vim
> share/nvim/runtime/indent/sshconfig.vim
> @@ -906,8 +965,11 @@ share/nvim/runtime/indent/systemverilog.
> share/nvim/runtime/indent/tcl.vim
> share/nvim/runtime/indent/tcsh.vim
> share/nvim/runtime/indent/teraterm.vim
> +share/nvim/runtime/indent/terraform.vim
> share/nvim/runtime/indent/testdir/
> share/nvim/runtime/indent/testdir/README.txt
> +share/nvim/runtime/indent/testdir/bash.in
> +share/nvim/runtime/indent/testdir/bash.ok
> share/nvim/runtime/indent/testdir/bitbake.in
> share/nvim/runtime/indent/testdir/bitbake.ok
> share/nvim/runtime/indent/testdir/dts.in
> @@ -916,6 +978,8 @@ share/nvim/runtime/indent/testdir/html.i
> share/nvim/runtime/indent/testdir/html.ok
> share/nvim/runtime/indent/testdir/krl.in
> share/nvim/runtime/indent/testdir/krl.ok
> +share/nvim/runtime/indent/testdir/lua.in
> +share/nvim/runtime/indent/testdir/lua.ok
> share/nvim/runtime/indent/testdir/matlab.in
> share/nvim/runtime/indent/testdir/matlab.ok
> share/nvim/runtime/indent/testdir/python.in
> @@ -927,6 +991,8 @@ share/nvim/runtime/indent/testdir/sshcon
> share/nvim/runtime/indent/testdir/sshconfig.ok
> share/nvim/runtime/indent/testdir/tcl.in
> share/nvim/runtime/indent/testdir/tcl.ok
> +share/nvim/runtime/indent/testdir/thrift.in
> +share/nvim/runtime/indent/testdir/thrift.ok
> share/nvim/runtime/indent/testdir/vb.in
> share/nvim/runtime/indent/testdir/vb.ok
> share/nvim/runtime/indent/testdir/vim.in
> @@ -937,10 +1003,12 @@ share/nvim/runtime/indent/testdir/yaml.i
> share/nvim/runtime/indent/testdir/yaml.ok
> share/nvim/runtime/indent/tex.vim
> share/nvim/runtime/indent/tf.vim
> +share/nvim/runtime/indent/thrift.vim
> share/nvim/runtime/indent/tilde.vim
> share/nvim/runtime/indent/treetop.vim
> share/nvim/runtime/indent/typescript.vim
> share/nvim/runtime/indent/typescriptreact.vim
> +share/nvim/runtime/indent/typst.vim
> share/nvim/runtime/indent/vb.vim
> share/nvim/runtime/indent/verilog.vim
> share/nvim/runtime/indent/vhdl.vim
> @@ -981,6 +1049,7 @@ share/nvim/runtime/keymap/dvorak.vim
> share/nvim/runtime/keymap/esperanto.vim
> share/nvim/runtime/keymap/esperanto_utf-8.vim
> share/nvim/runtime/keymap/french-azerty.vim
> +share/nvim/runtime/keymap/georgian-qwerty.vim
> share/nvim/runtime/keymap/german-qwertz.vim
> share/nvim/runtime/keymap/greek.vim
> share/nvim/runtime/keymap/greek_cp1253.vim
> @@ -1039,6 +1108,7 @@ share/nvim/runtime/keymap/thaana.vim
> share/nvim/runtime/keymap/turkish-f.vim
> share/nvim/runtime/keymap/turkish-q.vim
> share/nvim/runtime/keymap/ukrainian-dvorak.vim
> +share/nvim/runtime/keymap/ukrainian-enhanced.vim
> share/nvim/runtime/keymap/ukrainian-jcuken.vim
> share/nvim/runtime/keymap/vietnamese-telex_utf-8.vim
> share/nvim/runtime/keymap/vietnamese-viqr_utf-8.vim
> @@ -1048,25 +1118,15 @@ share/nvim/runtime/lua/_vim9script.lua
> share/nvim/runtime/lua/coxpcall.lua
> share/nvim/runtime/lua/editorconfig.lua
> share/nvim/runtime/lua/man.lua
> -share/nvim/runtime/lua/nvim/
> -share/nvim/runtime/lua/nvim/health.lua
> -share/nvim/runtime/lua/provider/
> -share/nvim/runtime/lua/provider/clipboard/
> -share/nvim/runtime/lua/provider/clipboard/health.lua
> -share/nvim/runtime/lua/provider/node/
> -share/nvim/runtime/lua/provider/node/health.lua
> -share/nvim/runtime/lua/provider/perl/
> -share/nvim/runtime/lua/provider/perl/health.lua
> -share/nvim/runtime/lua/provider/python/
> -share/nvim/runtime/lua/provider/python/health.lua
> -share/nvim/runtime/lua/provider/ruby/
> -share/nvim/runtime/lua/provider/ruby/health.lua
> share/nvim/runtime/lua/tohtml.lua
> share/nvim/runtime/lua/vim/
> share/nvim/runtime/lua/vim/F.lua
> +share/nvim/runtime/lua/vim/_buf.lua
> share/nvim/runtime/lua/vim/_comment.lua
> share/nvim/runtime/lua/vim/_defaults.lua
> share/nvim/runtime/lua/vim/_editor.lua
> +share/nvim/runtime/lua/vim/_ftplugin/
> +share/nvim/runtime/lua/vim/_ftplugin/lua.lua
> share/nvim/runtime/lua/vim/_init_packages.lua
> share/nvim/runtime/lua/vim/_inspector.lua
> share/nvim/runtime/lua/vim/_meta/
> @@ -1088,9 +1148,12 @@ share/nvim/runtime/lua/vim/_meta/regex.l
> share/nvim/runtime/lua/vim/_meta/spell.lua
> share/nvim/runtime/lua/vim/_meta/vimfn.lua
> share/nvim/runtime/lua/vim/_meta/vvars.lua
> +share/nvim/runtime/lua/vim/_meta/vvars_extra.lua
> share/nvim/runtime/lua/vim/_options.lua
> share/nvim/runtime/lua/vim/_system.lua
> share/nvim/runtime/lua/vim/_watch.lua
> +share/nvim/runtime/lua/vim/deprecated/
> +share/nvim/runtime/lua/vim/deprecated/health.lua
> share/nvim/runtime/lua/vim/diagnostic.lua
> share/nvim/runtime/lua/vim/filetype/
> share/nvim/runtime/lua/vim/filetype.lua
> @@ -1101,8 +1164,10 @@ share/nvim/runtime/lua/vim/func/
> share/nvim/runtime/lua/vim/func.lua
> share/nvim/runtime/lua/vim/func/_memoize.lua
> share/nvim/runtime/lua/vim/glob.lua
> +share/nvim/runtime/lua/vim/health/
> share/nvim/runtime/lua/vim/health.lua
> -share/nvim/runtime/lua/vim/highlight.lua
> +share/nvim/runtime/lua/vim/health/health.lua
> +share/nvim/runtime/lua/vim/hl.lua
> share/nvim/runtime/lua/vim/inspect.lua
> share/nvim/runtime/lua/vim/iter.lua
> share/nvim/runtime/lua/vim/keymap.lua
> @@ -1110,17 +1175,18 @@ share/nvim/runtime/lua/vim/loader.lua
> share/nvim/runtime/lua/vim/lsp/
> share/nvim/runtime/lua/vim/lsp.lua
> share/nvim/runtime/lua/vim/lsp/_changetracking.lua
> -share/nvim/runtime/lua/vim/lsp/_completion.lua
> -share/nvim/runtime/lua/vim/lsp/_dynamic.lua
> +share/nvim/runtime/lua/vim/lsp/_folding_range.lua
> share/nvim/runtime/lua/vim/lsp/_meta/
> share/nvim/runtime/lua/vim/lsp/_meta.lua
> share/nvim/runtime/lua/vim/lsp/_meta/protocol.lua
> share/nvim/runtime/lua/vim/lsp/_snippet_grammar.lua
> share/nvim/runtime/lua/vim/lsp/_tagfunc.lua
> +share/nvim/runtime/lua/vim/lsp/_transport.lua
> share/nvim/runtime/lua/vim/lsp/_watchfiles.lua
> share/nvim/runtime/lua/vim/lsp/buf.lua
> share/nvim/runtime/lua/vim/lsp/client.lua
> share/nvim/runtime/lua/vim/lsp/codelens.lua
> +share/nvim/runtime/lua/vim/lsp/completion.lua
> share/nvim/runtime/lua/vim/lsp/diagnostic.lua
> share/nvim/runtime/lua/vim/lsp/handlers.lua
> share/nvim/runtime/lua/vim/lsp/health.lua
> @@ -1133,6 +1199,7 @@ share/nvim/runtime/lua/vim/lsp/sync.lua
> share/nvim/runtime/lua/vim/lsp/util.lua
> share/nvim/runtime/lua/vim/provider/
> share/nvim/runtime/lua/vim/provider.lua
> +share/nvim/runtime/lua/vim/provider/health.lua
> share/nvim/runtime/lua/vim/provider/perl.lua
> share/nvim/runtime/lua/vim/provider/python.lua
> share/nvim/runtime/lua/vim/provider/ruby.lua
> @@ -1145,7 +1212,12 @@ share/nvim/runtime/lua/vim/text.lua
> share/nvim/runtime/lua/vim/treesitter/
> share/nvim/runtime/lua/vim/treesitter.lua
> share/nvim/runtime/lua/vim/treesitter/_fold.lua
> -share/nvim/runtime/lua/vim/treesitter/_meta.lua
> +share/nvim/runtime/lua/vim/treesitter/_headings.lua
> +share/nvim/runtime/lua/vim/treesitter/_meta/
> +share/nvim/runtime/lua/vim/treesitter/_meta/misc.lua
> +share/nvim/runtime/lua/vim/treesitter/_meta/tsnode.lua
> +share/nvim/runtime/lua/vim/treesitter/_meta/tsquery.lua
> +share/nvim/runtime/lua/vim/treesitter/_meta/tstree.lua
> share/nvim/runtime/lua/vim/treesitter/_query_linter.lua
> share/nvim/runtime/lua/vim/treesitter/_range.lua
> share/nvim/runtime/lua/vim/treesitter/dev.lua
> @@ -1160,20 +1232,8 @@ share/nvim/runtime/lua/vim/ui/clipboard/
> share/nvim/runtime/lua/vim/ui/clipboard/osc52.lua
> share/nvim/runtime/lua/vim/uri.lua
> share/nvim/runtime/lua/vim/version.lua
> -share/nvim/runtime/lua/vim/vimhelp.lua
> -share/nvim/runtime/macmap.vim
> -share/nvim/runtime/macros/
> -share/nvim/runtime/macros/editexisting.vim
> -share/nvim/runtime/macros/justify.vim
> -share/nvim/runtime/macros/less.bat
> -share/nvim/runtime/macros/less.sh
> -share/nvim/runtime/macros/less.vim
> -share/nvim/runtime/macros/matchit.vim
> -share/nvim/runtime/macros/shellmenu.vim
> -share/nvim/runtime/macros/swapmous.vim
> share/nvim/runtime/makemenu.vim
> share/nvim/runtime/menu.vim
> -share/nvim/runtime/mswin.vim
> share/nvim/runtime/neovim.ico
> share/nvim/runtime/optwin.vim
> share/nvim/runtime/pack/
> @@ -1193,6 +1253,23 @@ share/nvim/runtime/pack/dist/opt/matchit
> share/nvim/runtime/pack/dist/opt/matchit/doc/tags
> share/nvim/runtime/pack/dist/opt/matchit/plugin/
> share/nvim/runtime/pack/dist/opt/matchit/plugin/matchit.vim
> +share/nvim/runtime/pack/dist/opt/netrw/
> +share/nvim/runtime/pack/dist/opt/netrw/LICENSE.txt
> +share/nvim/runtime/pack/dist/opt/netrw/README.md
> +share/nvim/runtime/pack/dist/opt/netrw/autoload/
> +share/nvim/runtime/pack/dist/opt/netrw/autoload/netrw.vim
> +share/nvim/runtime/pack/dist/opt/netrw/autoload/netrwSettings.vim
> +share/nvim/runtime/pack/dist/opt/netrw/autoload/netrw_gitignore.vim
> +share/nvim/runtime/pack/dist/opt/netrw/doc/
> +share/nvim/runtime/pack/dist/opt/netrw/doc/netrw.txt
> +share/nvim/runtime/pack/dist/opt/netrw/doc/tags
> +share/nvim/runtime/pack/dist/opt/netrw/plugin/
> +share/nvim/runtime/pack/dist/opt/netrw/plugin/netrwPlugin.vim
> +share/nvim/runtime/pack/dist/opt/netrw/syntax/
> +share/nvim/runtime/pack/dist/opt/netrw/syntax/netrw.vim
> +share/nvim/runtime/pack/dist/opt/nohlsearch/
> +share/nvim/runtime/pack/dist/opt/nohlsearch/plugin/
> +share/nvim/runtime/pack/dist/opt/nohlsearch/plugin/nohlsearch.vim
> share/nvim/runtime/pack/dist/opt/shellmenu/
> share/nvim/runtime/pack/dist/opt/shellmenu/plugin/
> share/nvim/runtime/pack/dist/opt/shellmenu/plugin/shellmenu.vim
> @@ -1243,6 +1320,12 @@ share/nvim/runtime/queries/vim/injection
> share/nvim/runtime/queries/vimdoc/
> share/nvim/runtime/queries/vimdoc/highlights.scm
> share/nvim/runtime/queries/vimdoc/injections.scm
> +share/nvim/runtime/scripts/
> +share/nvim/runtime/scripts/emoji_list.lua
> +share/nvim/runtime/scripts/less.bat
> +share/nvim/runtime/scripts/less.sh
> +share/nvim/runtime/scripts/less.vim
> +share/nvim/runtime/scripts/mswin.vim
> share/nvim/runtime/spell/
> share/nvim/runtime/spell/cleanadd.vim
> share/nvim/runtime/spell/en.utf-8.spl
> @@ -1257,6 +1340,7 @@ share/nvim/runtime/syntax/abap.vim
> share/nvim/runtime/syntax/abaqus.vim
> share/nvim/runtime/syntax/abc.vim
> share/nvim/runtime/syntax/abel.vim
> +share/nvim/runtime/syntax/abnf.vim
> share/nvim/runtime/syntax/acedb.vim
> share/nvim/runtime/syntax/ada.vim
> share/nvim/runtime/syntax/aflex.vim
> @@ -1268,8 +1352,10 @@ share/nvim/runtime/syntax/aml.vim
> share/nvim/runtime/syntax/ampl.vim
> share/nvim/runtime/syntax/ant.vim
> share/nvim/runtime/syntax/antlr.vim
> +share/nvim/runtime/syntax/antlr4.vim
> share/nvim/runtime/syntax/apache.vim
> share/nvim/runtime/syntax/apachestyle.vim
> +share/nvim/runtime/syntax/apkbuild.vim
> share/nvim/runtime/syntax/aptconf.vim
> share/nvim/runtime/syntax/arch.vim
> share/nvim/runtime/syntax/arduino.vim
> @@ -1284,6 +1370,7 @@ share/nvim/runtime/syntax/aspvbs.vim
> share/nvim/runtime/syntax/asterisk.vim
> share/nvim/runtime/syntax/asteriskvm.vim
> share/nvim/runtime/syntax/astro.vim
> +share/nvim/runtime/syntax/asy.vim
> share/nvim/runtime/syntax/atlas.vim
> share/nvim/runtime/syntax/autodoc.vim
> share/nvim/runtime/syntax/autohotkey.vim
> @@ -1336,6 +1423,7 @@ share/nvim/runtime/syntax/cl.vim
> share/nvim/runtime/syntax/clean.vim
> share/nvim/runtime/syntax/clipper.vim
> share/nvim/runtime/syntax/clojure.vim
> +share/nvim/runtime/syntax/cmacro.vim
> share/nvim/runtime/syntax/cmake.vim
> share/nvim/runtime/syntax/cmakecache.vim
> share/nvim/runtime/syntax/cmod.vim
> @@ -1357,6 +1445,7 @@ share/nvim/runtime/syntax/csdl.vim
> share/nvim/runtime/syntax/csh.vim
> share/nvim/runtime/syntax/csp.vim
> share/nvim/runtime/syntax/css.vim
> +share/nvim/runtime/syntax/csv.vim
> share/nvim/runtime/syntax/cterm.vim
> share/nvim/runtime/syntax/ctrlh.vim
> share/nvim/runtime/syntax/cucumber.vim
> @@ -1455,6 +1544,7 @@ share/nvim/runtime/syntax/gdresource.vim
> share/nvim/runtime/syntax/gdscript.vim
> share/nvim/runtime/syntax/gdshader.vim
> share/nvim/runtime/syntax/gedcom.vim
> +share/nvim/runtime/syntax/gel.vim
> share/nvim/runtime/syntax/gemtext.vim
> share/nvim/runtime/syntax/gift.vim
> share/nvim/runtime/syntax/git.vim
> @@ -1466,14 +1556,17 @@ share/nvim/runtime/syntax/gitolite.vim
> share/nvim/runtime/syntax/gitrebase.vim
> share/nvim/runtime/syntax/gitsendemail.vim
> share/nvim/runtime/syntax/gkrellmrc.vim
> +share/nvim/runtime/syntax/glsl.vim
> share/nvim/runtime/syntax/gnash.vim
> share/nvim/runtime/syntax/gnuplot.vim
> share/nvim/runtime/syntax/go.vim
> +share/nvim/runtime/syntax/goaccess.vim
> share/nvim/runtime/syntax/godoc.vim
> share/nvim/runtime/syntax/gp.vim
> share/nvim/runtime/syntax/gpg.vim
> share/nvim/runtime/syntax/gprof.vim
> share/nvim/runtime/syntax/grads.vim
> +share/nvim/runtime/syntax/graphql.vim
> share/nvim/runtime/syntax/gretl.vim
> share/nvim/runtime/syntax/groff.vim
> share/nvim/runtime/syntax/groovy.vim
> @@ -1486,11 +1579,14 @@ share/nvim/runtime/syntax/gyp.vim
> share/nvim/runtime/syntax/haml.vim
> share/nvim/runtime/syntax/hamster.vim
> share/nvim/runtime/syntax/hare.vim
> +share/nvim/runtime/syntax/haredoc.vim
> share/nvim/runtime/syntax/haskell.vim
> share/nvim/runtime/syntax/haste.vim
> share/nvim/runtime/syntax/hastepreproc.vim
> share/nvim/runtime/syntax/hb.vim
> +share/nvim/runtime/syntax/hcl.vim
> share/nvim/runtime/syntax/help.vim
> +share/nvim/runtime/syntax/help_it.vim
> share/nvim/runtime/syntax/help_ru.vim
> share/nvim/runtime/syntax/hercules.vim
> share/nvim/runtime/syntax/hex.vim
> @@ -1502,10 +1598,12 @@ share/nvim/runtime/syntax/hollywood.vim
> share/nvim/runtime/syntax/hostconf.vim
> share/nvim/runtime/syntax/hostsaccess.vim
> share/nvim/runtime/syntax/html.vim
> +share/nvim/runtime/syntax/htmlangular.vim
> share/nvim/runtime/syntax/htmlcheetah.vim
> share/nvim/runtime/syntax/htmldjango.vim
> share/nvim/runtime/syntax/htmlm4.vim
> share/nvim/runtime/syntax/htmlos.vim
> +share/nvim/runtime/syntax/hyprlang.vim
> share/nvim/runtime/syntax/i3config.vim
> share/nvim/runtime/syntax/ia64.vim
> share/nvim/runtime/syntax/ibasic.vim
> @@ -1513,12 +1611,14 @@ share/nvim/runtime/syntax/icemenu.vim
> share/nvim/runtime/syntax/icon.vim
> share/nvim/runtime/syntax/idl.vim
> share/nvim/runtime/syntax/idlang.vim
> +share/nvim/runtime/syntax/idris2.vim
> share/nvim/runtime/syntax/indent.vim
> share/nvim/runtime/syntax/inform.vim
> share/nvim/runtime/syntax/initex.vim
> share/nvim/runtime/syntax/initng.vim
> share/nvim/runtime/syntax/inittab.vim
> share/nvim/runtime/syntax/ipfilter.vim
> +share/nvim/runtime/syntax/ipkg.vim
> share/nvim/runtime/syntax/ishd.vim
> share/nvim/runtime/syntax/iss.vim
> share/nvim/runtime/syntax/ist.vim
> @@ -1532,7 +1632,8 @@ share/nvim/runtime/syntax/javascript.vim
> share/nvim/runtime/syntax/javascriptreact.vim
> share/nvim/runtime/syntax/jess.vim
> share/nvim/runtime/syntax/jgraph.vim
> -share/nvim/runtime/syntax/jj.vim
> +share/nvim/runtime/syntax/jinja.vim
> +share/nvim/runtime/syntax/jjdescription.vim
> share/nvim/runtime/syntax/jovial.vim
> share/nvim/runtime/syntax/jproperties.vim
> share/nvim/runtime/syntax/jq.vim
> @@ -1541,7 +1642,10 @@ share/nvim/runtime/syntax/json5.vim
> share/nvim/runtime/syntax/jsonc.vim
> share/nvim/runtime/syntax/jsp.vim
> share/nvim/runtime/syntax/julia.vim
> +share/nvim/runtime/syntax/just.vim
> +share/nvim/runtime/syntax/karel.vim
> share/nvim/runtime/syntax/kconfig.vim
> +share/nvim/runtime/syntax/kdl.vim
> share/nvim/runtime/syntax/kivy.vim
> share/nvim/runtime/syntax/kix.vim
> share/nvim/runtime/syntax/kotlin.vim
> @@ -1556,9 +1660,11 @@ share/nvim/runtime/syntax/ldapconf.vim
> share/nvim/runtime/syntax/ldif.vim
> share/nvim/runtime/syntax/less.vim
> share/nvim/runtime/syntax/lex.vim
> +share/nvim/runtime/syntax/lf.vim
> share/nvim/runtime/syntax/lftp.vim
> share/nvim/runtime/syntax/lhaskell.vim
> share/nvim/runtime/syntax/libao.vim
> +share/nvim/runtime/syntax/lidris2.vim
> share/nvim/runtime/syntax/lifelines.vim
> share/nvim/runtime/syntax/lilo.vim
> share/nvim/runtime/syntax/limits.vim
> @@ -1567,6 +1673,8 @@ share/nvim/runtime/syntax/lisp.vim
> share/nvim/runtime/syntax/lite.vim
> share/nvim/runtime/syntax/litestep.vim
> share/nvim/runtime/syntax/livebook.vim
> +share/nvim/runtime/syntax/lnk.vim
> +share/nvim/runtime/syntax/lnkmap.vim
> share/nvim/runtime/syntax/loginaccess.vim
> share/nvim/runtime/syntax/logindefs.vim
> share/nvim/runtime/syntax/logtalk.vim
> @@ -1582,6 +1690,7 @@ share/nvim/runtime/syntax/lua.vim
> share/nvim/runtime/syntax/luau.vim
> share/nvim/runtime/syntax/lynx.vim
> share/nvim/runtime/syntax/lyrics.vim
> +share/nvim/runtime/syntax/m17ndb.vim
> share/nvim/runtime/syntax/m3build.vim
> share/nvim/runtime/syntax/m3quake.vim
> share/nvim/runtime/syntax/m4.vim
> @@ -1600,6 +1709,7 @@ share/nvim/runtime/syntax/mason.vim
> share/nvim/runtime/syntax/master.vim
> share/nvim/runtime/syntax/matlab.vim
> share/nvim/runtime/syntax/maxima.vim
> +share/nvim/runtime/syntax/mediawiki.vim
> share/nvim/runtime/syntax/mel.vim
> share/nvim/runtime/syntax/mermaid.vim
> share/nvim/runtime/syntax/meson.vim
> @@ -1631,6 +1741,7 @@ share/nvim/runtime/syntax/mrxvtrc.vim
> share/nvim/runtime/syntax/msidl.vim
> share/nvim/runtime/syntax/msmessages.vim
> share/nvim/runtime/syntax/msql.vim
> +share/nvim/runtime/syntax/mss.vim
> share/nvim/runtime/syntax/mupad.vim
> share/nvim/runtime/syntax/murphi.vim
> share/nvim/runtime/syntax/mush.vim
> @@ -1643,9 +1754,9 @@ share/nvim/runtime/syntax/nasm.vim
> share/nvim/runtime/syntax/nastran.vim
> share/nvim/runtime/syntax/natural.vim
> share/nvim/runtime/syntax/ncf.vim
> +share/nvim/runtime/syntax/neomuttlog.vim
> share/nvim/runtime/syntax/neomuttrc.vim
> share/nvim/runtime/syntax/netrc.vim
> -share/nvim/runtime/syntax/netrw.vim
> share/nvim/runtime/syntax/nginx.vim
> share/nvim/runtime/syntax/ninja.vim
> share/nvim/runtime/syntax/nix.vim
> @@ -1663,11 +1774,13 @@ share/nvim/runtime/syntax/odin.vim
> share/nvim/runtime/syntax/omnimark.vim
> share/nvim/runtime/syntax/ondir.vim
> share/nvim/runtime/syntax/opam.vim
> +share/nvim/runtime/syntax/opencl.vim
> share/nvim/runtime/syntax/openroad.vim
> share/nvim/runtime/syntax/openscad.vim
> share/nvim/runtime/syntax/openvpn.vim
> share/nvim/runtime/syntax/opl.vim
> share/nvim/runtime/syntax/ora.vim
> +share/nvim/runtime/syntax/org.vim
> share/nvim/runtime/syntax/pacmanlog.vim
> share/nvim/runtime/syntax/pamconf.vim
> share/nvim/runtime/syntax/pamenv.vim
> @@ -1711,11 +1824,13 @@ share/nvim/runtime/syntax/prolog.vim
> share/nvim/runtime/syntax/promela.vim
> share/nvim/runtime/syntax/proto.vim
> share/nvim/runtime/syntax/protocols.vim
> +share/nvim/runtime/syntax/prql.vim
> share/nvim/runtime/syntax/ps1.vim
> share/nvim/runtime/syntax/ps1xml.vim
> share/nvim/runtime/syntax/psf.vim
> share/nvim/runtime/syntax/psl.vim
> share/nvim/runtime/syntax/ptcap.vim
> +share/nvim/runtime/syntax/ptx.vim
> share/nvim/runtime/syntax/purifylog.vim
> share/nvim/runtime/syntax/pymanifest.vim
> share/nvim/runtime/syntax/pyrex.vim
> @@ -1734,6 +1849,7 @@ share/nvim/runtime/syntax/radiance.vim
> share/nvim/runtime/syntax/raku.vim
> share/nvim/runtime/syntax/raml.vim
> share/nvim/runtime/syntax/rapid.vim
> +share/nvim/runtime/syntax/rasi.vim
> share/nvim/runtime/syntax/ratpoison.vim
> share/nvim/runtime/syntax/rc.vim
> share/nvim/runtime/syntax/rcs.vim
> @@ -1763,6 +1879,7 @@ share/nvim/runtime/syntax/rst.vim
> share/nvim/runtime/syntax/rtf.vim
> share/nvim/runtime/syntax/ruby.vim
> share/nvim/runtime/syntax/rust.vim
> +share/nvim/runtime/syntax/salt.vim
> share/nvim/runtime/syntax/samba.vim
> share/nvim/runtime/syntax/sas.vim
> share/nvim/runtime/syntax/sass.vim
> @@ -1788,6 +1905,7 @@ share/nvim/runtime/syntax/sgmldecl.vim
> share/nvim/runtime/syntax/sgmllnx.vim
> share/nvim/runtime/syntax/sh.vim
> share/nvim/runtime/syntax/shada.vim
> +share/nvim/runtime/syntax/shaderslang.vim
> share/nvim/runtime/syntax/shared/
> share/nvim/runtime/syntax/shared/README.txt
> share/nvim/runtime/syntax/shared/debversions.vim
> @@ -1821,6 +1939,7 @@ share/nvim/runtime/syntax/snnspat.vim
> share/nvim/runtime/syntax/snnsres.vim
> share/nvim/runtime/syntax/snobol4.vim
> share/nvim/runtime/syntax/solidity.vim
> +share/nvim/runtime/syntax/spajson.vim
> share/nvim/runtime/syntax/spec.vim
> share/nvim/runtime/syntax/specman.vim
> share/nvim/runtime/syntax/spice.vim
> @@ -1873,12 +1992,16 @@ share/nvim/runtime/syntax/tasm.vim
> share/nvim/runtime/syntax/tcl.vim
> share/nvim/runtime/syntax/tcsh.vim
> share/nvim/runtime/syntax/template.vim
> +share/nvim/runtime/syntax/tera.vim
> share/nvim/runtime/syntax/teraterm.vim
> share/nvim/runtime/syntax/terminfo.vim
> +share/nvim/runtime/syntax/terraform.vim
> share/nvim/runtime/syntax/tex.vim
> share/nvim/runtime/syntax/texinfo.vim
> share/nvim/runtime/syntax/texmf.vim
> share/nvim/runtime/syntax/tf.vim
> +share/nvim/runtime/syntax/thrift.vim
> +share/nvim/runtime/syntax/tiasm.vim
> share/nvim/runtime/syntax/tidy.vim
> share/nvim/runtime/syntax/tilde.vim
> share/nvim/runtime/syntax/tli.vim
> @@ -1892,12 +2015,14 @@ share/nvim/runtime/syntax/tsalt.vim
> share/nvim/runtime/syntax/tsscl.vim
> share/nvim/runtime/syntax/tssgm.vim
> share/nvim/runtime/syntax/tssop.vim
> +share/nvim/runtime/syntax/tsv.vim
> share/nvim/runtime/syntax/tt2.vim
> share/nvim/runtime/syntax/tt2html.vim
> share/nvim/runtime/syntax/tt2js.vim
> share/nvim/runtime/syntax/tutor.vim
> share/nvim/runtime/syntax/typescript.vim
> share/nvim/runtime/syntax/typescriptreact.vim
> +share/nvim/runtime/syntax/typst.vim
> share/nvim/runtime/syntax/uc.vim
> share/nvim/runtime/syntax/uci.vim
> share/nvim/runtime/syntax/udevconf.vim
> @@ -1973,9 +2098,6 @@ share/nvim/runtime/syntax/zimbu.vim
> share/nvim/runtime/syntax/zir.vim
> share/nvim/runtime/syntax/zserio.vim
> share/nvim/runtime/syntax/zsh.vim
> -share/nvim/runtime/tools/
> -share/nvim/runtime/tools/check_colors.vim
> -share/nvim/runtime/tools/emoji_list.vim
> share/nvim/runtime/tutor/
> share/nvim/runtime/tutor/en/
> share/nvim/runtime/tutor/en/vim-01-beginner.tutor