Some ports uses git while make configure to load deps

2022-11-15 Thread Rozhuk Ivan
Hi! I see this many times with different ports, for example: graphics/evince. Probably this is new meson behaviour. ... Run-time dependency libhandy-1 found: YES 1.6.2 Library m found: YES Found CMake: /usr/local/bin/cmake (3.24.3) Run-time dependency gi-docgen found: NO (tried pkgconfig and cma

CI for ports

2023-12-28 Thread Rozhuk Ivan
Hi! Can we please have at least BASIC continues integration for ports? Just check that it can be build and if tests exist then it run without errors. Or a bit advanced CI that also will build ports with all SSL/SAMBA/LLVM/etc versions. portlint and other atochekers and helpers can be integrateg

kcmp implementation for mesa

2024-01-19 Thread Rozhuk Ivan
Hi! graphics/mesa-* uses SYS_kcmp [1] to compare two fds: int os_same_file_description(int fd1, int fd2) { pid_t pid = getpid(); /* Same file descriptor trivially implies same file description */ if (fd1 == fd2) return 0; return syscall(SYS_kcmp, pid, pid, KCMP_FILE, fd1, fd2

FreeBSD ports community is broken

2024-02-17 Thread Rozhuk Ivan
Hi! I believe that the community engaged in port support has serious problems. I’m not talking about systematic ignoring reports and patches, on the contrary, this is a pronounced position of individual (I come out) maintainers. Instead of solving the problems of the community, they are concerned

Re: FreeBSD ports community is broken

2024-02-18 Thread Rozhuk Ivan
On Sun, 18 Feb 2024 07:52:00 +0100 Felix Palmen wrote: > * Rozhuk Ivan [20240218 01:58]: > > 1. devel/pkgconf: unconditionally prioritises base system libraries > > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=273961 > > Actors: vish...@freebsd.org and &

Re: FreeBSD ports community is broken

2024-02-18 Thread Rozhuk Ivan
On Sun, 18 Feb 2024 11:16:33 +0100 Felix Palmen wrote: > * Tomoaki AOKI [20240218 17:49]: > > [a lot about automotive regulations] > > That's a nice example how comparisons of entirely different domains > almost always go completely wrong. > > To start with, cars (and especially individual p

Re: FreeBSD ports community is broken

2024-02-18 Thread Rozhuk Ivan
On Sun, 18 Feb 2024 14:11:31 +0300 Gleb Popov wrote: > > The framework has been broken for a long time. It should not require > > prodiere running on a supermassive machine to work (in many cases > > portmaster and make install recursion fail where prodiere works). > > It does not. The thing i

Re: FreeBSD ports community is broken

2024-02-18 Thread Rozhuk Ivan
On Sun, 18 Feb 2024 12:31:32 +0100 Kurt Jaeger wrote: > > Wonderful: Are we now moving to the binary pkg only for mere mortals > > then. > > Unfortunatly, yes. Loss of this functionality = loss of one of the main competitive advantages over many Linux distributions. It will be easier to go t

Re: FreeBSD ports community is broken [port building configuration notes]

2024-02-19 Thread Rozhuk Ivan
On Sun, 18 Feb 2024 08:52:55 -0800 Mark Millard wrote: > > It should not require > > prodiere running on a supermassive machine to work (in many cases > > portmaster and make install recursion fail where prodiere works). > > As for configuring for small, slow systems relative to > resource use

Re: graphics/mesa-libs build broken

2024-02-19 Thread Rozhuk Ivan
On Thu, 25 Jan 2024 14:59:33 +0300 "Sergey V. Dyatko" wrote: > After 2080c2eddaca4fa188668ae9fe8d76e0461378c3 I'm unable to build > graphics/mesa-libs because host I'm using doesn't support kcmp(2), > it is FreeBSD 15.0-CURRENT #24 main-n265517-37236ab7e4e8-dirty > It seems that _supported_ X.Y

Re: bug 273961, and use of Bugzilla (was FreeBSD ports community is broken)

2024-03-13 Thread Rozhuk Ivan
On Sat, 24 Feb 2024 19:29:57 + Graham Perrin wrote: > > The problem is that no one did anything, and only criticized any > > attempts to rectify the situation. > > > I was a member of the triage team when I wrote > . My > then

graphics/gpu-firmware-kmod and PORTS_MODULES - how to!?

2022-05-27 Thread Rozhuk Ivan
Hi! In past years I had use make.conf with: PORTS_MODULES+= graphics/gpu-firmware-kmod graphics/drm-510-kmod this allow auto rebuild and install amdgpu driver and all firmwares on every kernel build and install. After move firmwares to separate ports/flavor I lost this feature. How to deal wit

Re: graphics/gpu-firmware-kmod and PORTS_MODULES - how to!?

2022-05-27 Thread Rozhuk Ivan
On Sat, 28 May 2022 09:59:23 +0900 Tatsuki Makino wrote: > And PORTS_MODULES is > PORTS_MODULES=\ > graphics/drm-fbsd12.0-kmod\ > graphics/gpu-firmware-radeon-kmod@caicos\ > graphics/gpu-firmware-radeon-kmod@btc\ > graphics/gpu-firmware-radeon-kmod@sumo > Thanks, I will

Re: graphics/gpu-firmware-kmod and PORTS_MODULES - how to!?

2022-05-27 Thread Rozhuk Ivan
On Sat, 28 May 2022 09:59:23 +0900 Tatsuki Makino wrote: > diff --git a/sys/conf/kern.post.mk b/sys/conf/kern.post.mk > index cce9fcfd1c6..f6217d38bb8 100644 > --- a/sys/conf/kern.post.mk > +++ b/sys/conf/kern.post.mk > @@ -95,7 +95,12 @@ PORTSMODULESENV=\ > all: > .for __i in ${PORTS_MODULES}