UPDATE: neovim-0.10.3

2025-01-13 Thread Edd Barrett
Hi, Here's an update to neovim-0.10.3 (and a small tweak to make the treesitter compiler invocations show). Bundled dep versions appear to not have changed. OK? Index: Makefile === RCS file: /cvs/ports/editors/neovim/Makefile,v dif

[NEW] gpopenconnect-2.4.1

2025-01-13 Thread Denis Fondras
A CLI GlobalProtect VPN client, written in Rust, based on OpenConnect and Tauri, supports SSO with MFA, Yubikey, and client certificate authentication, etc. https://github.com/yuezk/GlobalProtect-openconnect/ I disabled the GUI build because it requires nodejs. gpopenconnect-2.4.1.tgz Descripti

Re: 5.1 audio on stereo gear

2025-01-13 Thread Morgan Aldridge
On Sun, 12 Jan 2025 20:16:12 +0100 Jan Stary wrote: > These are some example files from Dolby: > https://ott.dolby.com/OnDelKits/DDP/Dolby_Digital_Plus_Online_Delivery_Kit_v1.4.1/Test_Signals/muxed_streams/MPEG2TS/MPEG2TS_Muxed_Streams.html > > Thesr contain 5.1 audio. Playing it on my stereo ge

Change ports compilers WANTLIB injection

2025-01-13 Thread kurt
I've been taking a close look at c++ ports on sparc64. I've submitted some low hanging fruit fixes that have been committed. However, there is a class of ports that it's not possible to fix without changing clang.port.mk and bsd.port.mk. Some background first. A c++ port that uses the base compile

Re: About facebook slowness in chromium (not in firefox)

2025-01-13 Thread Abel Abraham Camarillo Ojeda
On Mon, Jan 13, 2025, 17:31 Stuart Henderson wrote: > Interesting that this helps - snappy is fast, and also AIUI is also used > in Firefox for indexeddb compression (though in sqlite rather than > leveldb there). > . > May be placebo, but the most clear symptom is when chrome fully freezes, it

[maintainer update] games/dsda-doom 0.26.2->0.28.2

2025-01-13 Thread Lucas de Sena
Update to latest games/dsda-doom release. Built and tested on amd64. Since fluidsynth v2.0 has been ported, this patch builds dsda-doom with it as library dependency. Icons and desktop shortcut are now installed; so desktop-file-utils and gtk4-update-icon-cache are added as runtime dependencies.

Re: archivers/unzip: fix backwards memcpy

2025-01-13 Thread Theo Buehler
On Mon, Jan 13, 2025 at 05:34:27PM +0900, SASANO Takayoshi wrote: > Hi, > > > The check in explode.c seems correct since it doesn't have this cast. > >> > >> I didn't say about cast. > > > > But I did... > > Yes, I know. No problem. > > >> Your diff looks only the fix of inflate.c. > >> Doe

Re: archivers/unzip: fix backwards memcpy

2025-01-13 Thread SASANO Takayoshi
Hi, > The check in explode.c seems correct since it doesn't have this cast. >> >> I didn't say about cast. > > But I did... Yes, I know. No problem. >> Your diff looks only the fix of inflate.c. >> Does explode.c not replace with memmove()? That's my question. > > You're right It actually

Re: archivers/unzip: fix backwards memcpy

2025-01-13 Thread SASANO Takayoshi
committed, thanks! uaa@

Re: [new] graphics/py-pivy

2025-01-13 Thread Johannes Thyssen Tishman
2025-01-10T17:56:16+ Stuart Henderson : > On 2025/01/10 17:21, Stuart Henderson wrote: > > On 2025/01/07 17:47, Johannes Thyssen Tishman wrote: > > > Please find attached a port for graphics/py-pivy. This port is required > > > by cad/freecad, a port I intend to submit once it's dependencies ha

security/mitmproxy: update to 11.1.0 from maintainer

2025-01-13 Thread Kirill A . Korinsky
ports@, I'd like to update security/mitmproxy to 11.1.0. Relevant changes: - mitmproxy now requires Python 3.12 or above. - Add cache-busting for mitmweb's front end code. - Clicking the URL in mitmweb now places the cursor at the current position instead of selecting the entire URL. - Add mis

Re: About facebook slowness in chromium (not in firefox)

2025-01-13 Thread Stuart Henderson
Interesting that this helps - snappy is fast, and also AIUI is also used in Firefox for indexeddb compression (though in sqlite rather than leveldb there). . On 2025/01/13 12:47, Abel Abraham Camarillo Ojeda wrote: > I've been using this since saturday and haven't found issues. > I experience my l

Re: restic: enable tests

2025-01-13 Thread Klemens Nanni
13 янв. 2025 г. 14:06:00 Stuart Henderson : > On 2025/01/12 17:18, Klemens Nanni wrote: >> There are tests and they pass except for some xattr stuff (chflags(1) for >> Linux) >> and some basic stuff like reading from stdin (worth looking into). >> >> One test runs 'python -c ...', hence the modul

Re: restic: enable tests

2025-01-13 Thread Stuart Henderson
On 2025/01/13 18:06, Klemens Nanni wrote: > 13 янв. 2025 г. 14:06:00 Stuart Henderson : > > > On 2025/01/12 17:18, Klemens Nanni wrote: > >> There are tests and they pass except for some xattr stuff (chflags(1) for > >> Linux) > >> and some basic stuff like reading from stdin (worth looking into)

UPDATE: sysutils/binwalk 2.3.4 -> 3.1.0

2025-01-13 Thread Purple Rain
Hello, This is an updated version of the Binwalk firmware analysis tool to 3.1.0. Build and testing done on amd64. What's Changed: Complete re-write in Rust. Significantly faster. Far fewer false positives. Support for many more file extractor. Full changelog: https://github.com/ReFirmLabs/bin

Re: new port: games/mines-tui-1.0

2025-01-13 Thread Julius Drodofsky
Sorry, there was a small mistake in the first diff. diff -Nur ports/games/Makefile ports_new/games/Makefile --- ports/games/MakefileMon Sep 23 17:33:56 2024 +++ ports_new/games/MakefileSun Jan 12 23:10:41 2025 @@ -204,6 +204,7 @@ SUBDIR += micropolis SUBDIR += mightymike

Re: math/flann pkgconfig issue

2025-01-13 Thread Stuart Henderson
On 2025/01/13 08:53, Kirill Bychkov wrote: > Hi! > It looks like that flann ships broken .pc file. With this > installed graphics/hugin fails to build with > "undefined reference to LZ4_compress_HC_continue" error. > > Should we fix flann itself as done in FreeBSD: That's not actually the reason

Re: archivers/unzip: fix backwards memcpy

2025-01-13 Thread SASANO Takayoshi
Hi, > In sump, just replacing the two memcpy with memmove seems the way to go. > If you want to send a diff, I'll ok it, or I can do it. Here's the diff; bump up revision 18 and simply replace memcpy() to memmove() (two places for explode.c, one for inflate.c). Regards, Index: Makefile

Re: [new] cad/netgen-mesher and devel/py-test-check

2025-01-13 Thread Johannes Thyssen Tishman
2025-01-10T17:02:08+ Stuart Henderson : > py-test-check: MODPY_PYTEST is implied if MODPY_PYBUILD is set so can be > removed, otherwise OK (or I can import given another ok). > > netgen-mesher: will look later Thanks Stuart. Please find attached an updated tarball. > On 2025/01/07 17:46, Joh

Re: [new] cad/netgen-mesher and devel/py-test-check

2025-01-13 Thread Ian Darwin
On 1/13/25 5:39 AM, Johannes Thyssen Tishman wrote: 2025-01-10T17:02:08+ Stuart Henderson: py-test-check: MODPY_PYTEST is implied if MODPY_PYBUILD is set so can be removed, otherwise OK (or I can import given another ok). OK py-test-check --Ian netgen-mesher: will look later Thanks St

Re: shells/fish 4.0b1

2025-01-13 Thread Volker Schlecht
On 2025-01-12 23:37, Theo Buehler wrote: I played around for a bit and found some rough edges. For example fish had PATH issues and did not find python3 for 'fish_config'. This is a current_exe() issue. You can find various ways of dealing with this in the ports tree, e.g. in lang/deno. Yeah,

Re: [Update] editors/helix 25.01

2025-01-13 Thread Volker Schlecht
Thanks for testing! I've also been dogfooding the port for a week without any issues - therefore pinging MAINTAINER for an ok :-) On 2025-01-11 17:29, Florian Viehweger wrote: Am Tue, 7 Jan 2025 18:40:55 +0100 schrieb Volker Schlecht : Cc: Maintainer Simple update to the latest helix release,

Re: math/flann pkgconfig issue

2025-01-13 Thread Theo Buehler
> math/flann? I was under the impression that this was only necessary when > the PLIST changes, no? It is necessary whenever the package contents change. Otherwise already installed flann won't get the fixed pkgconfig until a dep is bumped.

Re: new port: games/mines-tui-1.0

2025-01-13 Thread Stuart Henderson
On 2025/01/12 22:22, Julius Drodofsky wrote: quick comments; > +++ ports_new/games/mines-tui/MakefileSun Jan 12 22:55:48 2025 please send a tar for new ports, it's easier for committers to work with > +COMMENT =terminal based Minesweeper implementation I would s/implementat

Re: math/flann pkgconfig issue

2025-01-13 Thread Johannes Thyssen Tishman
2025-01-13T10:57:26+0100 Theo Buehler : > > math/flann? I was under the impression that this was only necessary when > > the PLIST changes, no? > > It is necessary whenever the package contents change. Otherwise already > installed flann won't get the fixed pkgconfig until a dep is bumped. Thanks

Re: archivers/unzip: fix backwards memcpy

2025-01-13 Thread Theo Buehler
On Mon, Jan 13, 2025 at 06:24:13PM +0900, SASANO Takayoshi wrote: > Hi, > > > In sump, just replacing the two memcpy with memmove seems the way to go. > > If you want to send a diff, I'll ok it, or I can do it. > > Here's the diff; bump up revision 18 and simply replace memcpy() to memmove() > (t

Re: restic: enable tests

2025-01-13 Thread Stuart Henderson
On 2025/01/12 17:18, Klemens Nanni wrote: > There are tests and they pass except for some xattr stuff (chflags(1) for > Linux) > and some basic stuff like reading from stdin (worth looking into). > > One test runs 'python -c ...', hence the module. > > Either I'm holding it wrong or that one goo

Re: math/flann pkgconfig issue

2025-01-13 Thread Kirill Bychkov
On Mon, January 13, 2025 12:32, Stuart Henderson wrote: > On 2025/01/13 08:53, Kirill Bychkov wrote: >> Hi! >> It looks like that flann ships broken .pc file. With this >> installed graphics/hugin fails to build with >> "undefined reference to LZ4_compress_HC_continue" error. >> >> Should we fix fl

Re: math/flann pkgconfig issue

2025-01-13 Thread Johannes Thyssen Tishman
2025-01-13T09:32:59+ Stuart Henderson : > On 2025/01/13 08:53, Kirill Bychkov wrote: > > Hi! > > It looks like that flann ships broken .pc file. With this > > installed graphics/hugin fails to build with > > "undefined reference to LZ4_compress_HC_continue" error. > > > > Should we fix flann i

sparc64 bulk build report

2025-01-13 Thread kmos
Bulk build on sparc64-0a.ports.openbsd.org Started : Fri Jan 10 16:27:18 MST 2025 Finished: Tue Jan 14 00:04:34 MST 2025 Duration: 3 Days 7 hours 37 minutes Built using OpenBSD 7.6-current (GENERIC.MP) #2368: Thu Jan 9 14:01:30 MST 2025 Built 9199 packages Number of packages built each day: Ja

Re: firefox: allow access to all /dev/video*

2025-01-13 Thread Landry Breuil
Le Sun, Jan 12, 2025 at 04:07:36PM +0100, Kirill A. Korinsky a écrit : > Landry, > > I'd like to allow access to all /dev/video* for both firefox. > > I had also removed access to /dev/video because it doesn't need one, > see: > https://github.com/mozilla/libwebrtc/blob/master/modules/video_capt

Re: About facebook slowness in chromium (not in firefox)

2025-01-13 Thread Kirill A . Korinsky
On Tue, 14 Jan 2025 00:31:45 +0100, Stuart Henderson wrote: > > Interesting that this helps - snappy is fast, and also AIUI is also used > in Firefox for indexeddb compression (though in sqlite rather than > leveldb there). > . > Well, the issue isn't snappy, more like how Chrome use it. See: ht

Re: 5.1 audio on stereo gear

2025-01-13 Thread Paco Esteban
Jan Stary writes: > These are some example files from Dolby: > https://ott.dolby.com/OnDelKits/DDP/Dolby_Digital_Plus_Online_Delivery_Kit_v1.4.1/Test_Signals/muxed_streams/MPEG2TS/MPEG2TS_Muxed_Streams.html > > Thesr contain 5.1 audio. Playing it on my stereo gear > (I only have two ears anyway),

Re: About facebook slowness in chromium (not in firefox)

2025-01-13 Thread Abel Abraham Camarillo Ojeda
I've been using this since saturday and haven't found issues. I experience my laptop to be a lot faster/ more responsive in general. Thanks Kirill On Sat, Jan 11, 2025 at 5:34 AM Abel Abraham Camarillo Ojeda < acam...@verlet.org> wrote: > > > On Fri, Jan 10, 2025 at 6:35 PM Kirill A. Korinsky >