Unmaintained FreeBSD ports which are out of date

2024-01-19 Thread portscout
Dear port maintainers, The portscout new distfile checker has detected that one or more unmaintained ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. Please consider also adopting this po

Re: kcmp implementation for mesa

2024-01-19 Thread Konstantin Belousov
On Fri, Jan 19, 2024 at 07:40:32PM +0100, Mateusz Guzik wrote: > instead of messing with code like this it's probably time to implement > kcmp in the kernel Indeed https://reviews.freebsd.org/D43518

Re: security/cyrus-sasl2

2024-01-19 Thread Roger Marquis
The etcupdate utility should also check pam.d/* for anything opie, and comment or delete if it is not available. Ran into this in a recent 13.2 to 14.0 upgrade. Roger Marquis Hi, On Fri, 19 Jan 2024 08:56:04 +0900, Jonathan Chen wrote: It looks like there was a implicit dependency on secu

Re: kcmp implementation for mesa

2024-01-19 Thread Jan Beich
Rozhuk Ivan writes: > * The 2 fds can be different, even in systems with a single GPU, eg: if > * radv is initialized before radeonsi. > * > * This fd tracking is useful for buffer sharing because KMS/GEM handles are > * specific to a DRM file description, i.e. the same handle value may refe

Re: security/cyrus-sasl2

2024-01-19 Thread Jonathan Chen
On 19/01/24 23:50, Hajimu UMEMOTO wrote: Hi, On Fri, 19 Jan 2024 03:52:53 +0900, j...@chen.org.nz wrote: I've started seeing the following in my system logs on my recently built cyrus-sasl 2.1.28_3: unable to dlopen /usr/local/lib/sasl2/libotp.so.3: Shared object "libopie.so.8" not found, re

Re: kcmp implementation for mesa

2024-01-19 Thread Jan Beich
Rozhuk Ivan writes: > 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

Re: kcmp implementation for mesa

2024-01-19 Thread Michael Zhilin
Hi Ivan, Looks good. Could you please put patch on reviews.freebsd.org? Thx, Michael On Fri, 19 Jan 2024, 14:11 Rozhuk Ivan, wrote: > Hi! > > > graphics/mesa-* uses SYS_kcmp [1] to compare two fds: > > int > os_same_file_description(int fd1, int fd2) > { >pid_t pid = getpid(); > >/* Sa

Re: security/cyrus-sasl2

2024-01-19 Thread Hajimu UMEMOTO
Hi, On Fri, 19 Jan 2024 08:56:04 +0900, Jonathan Chen wrote: > It looks like there was a implicit dependency on security/opie that > has now been removed. If security/cyrus-sasl2 has an optional > dependency on security/opie, it should be reflected in OPTIONS or have > it as a mandatory requireme

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

Re: security/cyrus-sasl2

2024-01-19 Thread Hajimu UMEMOTO
Hi, On Fri, 19 Jan 2024 03:52:53 +0900, j...@chen.org.nz wrote: > I've started seeing the following in my system logs on my recently built > cyrus-sasl > 2.1.28_3: > unable to dlopen /usr/local/lib/sasl2/libotp.so.3: Shared object > "libopie.so.8" not > found, required by "libotp.so.3" > > Doe