CVS: cvs.openbsd.org: ports

2022-05-07 Thread Caspar Schutijser
CVSROOT:/cvs
Module name:ports
Changes by: cas...@cvs.openbsd.org  2022/05/07 23:41:56

Modified files:
meta/tor-browser: Makefile 
www/tor-browser: Makefile.inc 
www/tor-browser/browser: Makefile distinfo 
www/tor-browser/noscript: Makefile distinfo 

Log message:
Tor Browser: update to 11.0.11

Identical diff from Yifei Zhan
ok landry@ sdk@



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Caspar Schutijser
CVSROOT:/cvs
Module name:ports
Changes by: cas...@cvs.openbsd.org  2022/05/07 23:34:14

Modified files:
geo/openbsd-developers: Makefile 
geo/openbsd-developers/files: OpenBSD 

Log message:
Add myself

ok landry@



update net/vnstat 2.9

2022-05-07 Thread Nam Nguyen
This is an update for net/vnstat to 2.9 released on 23-Jan-2022.
The diff is originally from tj@ with tweaks by me.

changelog: https://humdi.net/vnstat/CHANGES

This diff does the following three things ports-wise:

1. Proofread and edit README to get rid of the usage of second-person.
Add 80 column rulers. Fill in missing steps on logging. Use
LOCALSTATEDIR.

2. patch for vnstat_conf no longer specifies Interface lo0. It continues
to delete the DatabaseDir setting.

Everything is commented out now and has default values if not
specified. `Interface ""' works fine. Interface lo0 is not a valid
interface.

$ vnstat -i lo0
Error: No interface matching "lo0" found in database.

>From revision 1.1.1.1 of this patch, it used to replace `Interface
"eth0"' with `Interface "lo0"' so it must have been to have a safe name,
since eth0 does not exist.

3. new patch for expr syntax errors in configure.
see:
https://github.com/vergoh/vnstat/commit/7e3795ebe3e6c31ff09aa967954a51f6d9e19d35

It uses gexpr syntax with the match keyword, so convert it to an
equivalent form for expr.

according to gexpr(1): "match STRING REGEXP same as STRING : REGEXP"

This only serves to print full install paths in configure output
(changing vnstat: ${exec_prefix}/bin/vnstat to vnstat:
/usr/local/bin/vnstat).

The port functions without this configure patch, so should we add or
remove it for maintainability?

Testing
===
I tested lightly on amd64 and generated a graph with
`vnstati -hg -o /tmp/bw.jpg'.

Feedback and tests are welcome. OK?

Index: Makefile
===
RCS file: /cvs/ports/net/vnstat/Makefile,v
retrieving revision 1.35
diff -u -p -u -p -r1.35 Makefile
--- Makefile11 Mar 2022 19:48:06 -  1.35
+++ Makefile8 May 2022 01:58:43 -
@@ -1,7 +1,7 @@
 COMMENT-main = network traffic monitor
 COMMENT-vnstati =  image output support for vnstat
 
-V =2.6
+V =2.9
 EPOCH =0
 DISTNAME = vnstat-${V}
 PKGNAME-main = ${DISTNAME}
Index: distinfo
===
RCS file: /cvs/ports/net/vnstat/distinfo,v
retrieving revision 1.8
diff -u -p -u -p -r1.8 distinfo
--- distinfo31 Oct 2020 08:55:41 -  1.8
+++ distinfo8 May 2022 01:58:43 -
@@ -1,2 +1,2 @@
-SHA256 (vnstat-2.6.tar.gz) = iSduCnKBlD7bVUuHQHgnitlH3DEpOKJFHgPrgGeff/c=
-SIZE (vnstat-2.6.tar.gz) = 275751
+SHA256 (vnstat-2.9.tar.gz) = EaIUdd6pFwZQCrp8Y+JBJnA/0B8TsfOs35K6pa6tncc=
+SIZE (vnstat-2.9.tar.gz) = 300796
Index: patches/patch-cfg_vnstat_conf
===
RCS file: /cvs/ports/net/vnstat/patches/patch-cfg_vnstat_conf,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 patch-cfg_vnstat_conf
--- patches/patch-cfg_vnstat_conf   11 Mar 2022 19:48:07 -  1.4
+++ patches/patch-cfg_vnstat_conf   8 May 2022 01:58:43 -
@@ -1,15 +1,13 @@
 Index: cfg/vnstat.conf
 --- cfg/vnstat.conf.orig
 +++ cfg/vnstat.conf
-@@ -2,10 +2,7 @@
- ##
- 
+@@ -7,9 +7,6 @@
  # default interface (leave empty for automatic selection)
--Interface ""
--
--# location of the database directory
--DatabaseDir "/var/lib/vnstat"
-+Interface "lo0"
+ ;Interface ""
  
+-# location of the database directory
+-;DatabaseDir "/var/lib/vnstat"
+-
  # locale (LC_ALL) ("-" = use system locale)
- Locale "-"
+ ;Locale "-"
+ 
Index: patches/patch-configure
===
RCS file: patches/patch-configure
diff -N patches/patch-configure
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-configure 8 May 2022 01:58:43 -
@@ -0,0 +1,30 @@
+expr: syntax error
+change gexpr-specific syntax from `match STRING REGEXP' to the
+equivalent `STRING : REGEXP' for compatibility with expr
+
+Index: configure
+--- configure.orig
 configure
+@@ -7259,19 +7259,19 @@ fi
+ 
+ # Resolve install paths for output.
+ msg_bindir=$bindir
+-while expr match "${msg_bindir}" '^.*\$.*$' 1>/dev/null;
++while expr "${msg_bindir}" : '^.*\$.*$' 1>/dev/null;
+ do
+ msg_bindir="$(eval echo ${msg_bindir})"
+ done
+ 
+ msg_sbindir=$sbindir
+-while expr match "${msg_sbindir}" '^.*\$.*$' 1>/dev/null;
++while expr "${msg_sbindir}" : '^.*\$.*$' 1>/dev/null;
+ do
+ msg_sbindir="$(eval echo ${msg_sbindir})"
+ done
+ 
+ msg_sysconfdir=$sysconfdir
+-while expr match "${msg_sysconfdir}" '^.*\$.*$' 1>/dev/null;
++while expr "${msg_sysconfdir}" : '^.*\$.*$' 1>/dev/null;
+ do
+ msg_sysconfdir="$(eval echo ${msg_sysconfdir})"
+ done
Index: pkg/README-main
===
RCS file: /cvs/ports/net/vnstat/pkg/README-main,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 README-main
--- pkg/README-main 11 Mar 2022 19:48:07 -  1.5
+++ pkg/README-main 8 May 2022 01:58:43 -
@@ -1,6 +1,6 @@

CVS: cvs.openbsd.org: ports

2022-05-07 Thread Kirill Bychkov
CVSROOT:/cvs
Module name:ports
Changes by: ki...@cvs.openbsd.org   2022/05/07 14:44:37

Modified files:
games/naev : Makefile distinfo 
games/naev/patches: patch-src_utf8_c 
games/naev/pkg : PLIST-data PLIST-main 
Added files:
games/naev/patches: patch-meson_build patch-src_nstring_h 
patch-utils_build_gen_gettext_stats_py 
Removed files:
games/naev/patches: patch-configure_ac patch-lib_Makefile_am 

Log message:
Update to naev-0.9.3.



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Solene Rapenne
CVSROOT:/cvs
Module name:ports
Changes by: sol...@cvs.openbsd.org  2022/05/07 13:58:10

Modified files:
net/lagrange   : Makefile distinfo 

Log message:
Update to lagrange-1.13.3



Re: CVS: cvs.openbsd.org: ports

2022-05-07 Thread Rafael Sadowski
On Sat May 07, 2022 at 08:50:45AM +0100, Stuart Henderson wrote:
> On 2022/05/07 00:08, Rafael Sadowski wrote:
> > CVSROOT:/cvs
> > Module name:ports
> > Changes by: rsadow...@cvs.openbsd.org   2022/05/07 00:08:10
> > 
> > Modified files:
> > x11/qt5/qtdeclarative: Makefile 
> > Added files:
> > x11/qt5/qtdeclarative/patches: patch-src_qml_configure_json 
> > 
> > Log message:
> > Disable QML just-in-time compiler
> > 
> > Makes it a little slower but safer
> 
> I thought it wasn't getting enabled anyway, just testing if W+X worked
> and disabling the JIT anyway?

>From my understanding it was always ON. And some QML applications require
wxallowed otherwise the JIT will crash at runtime.

That's why we have USE_WXNEEDED in some QML apps, right?

This should only allow many more QML apps to runs without wxallowed.

Or am I on the wrong track here. Hope not!

> 
> If that's the case it's basically a noop for most users, just fixes
> things for those who fiddled with the wxabort knob.
> 



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Denis Fondras
CVSROOT:/cvs
Module name:ports
Changes by: de...@cvs.openbsd.org   2022/05/07 11:47:26

Modified files:
databases/victoriametrics: Makefile distinfo 

Log message:
update to 1.77.1

Essentially a bugfix release. Biggest issue is :
BUGFIX: vmagent[2]: properly process passwords and secrets specified
in the file pointed by -promscrape.config command-line flag. All the
passwords and secrets were mistakenly replaced with  string
in v1.77.0.

Changelog at 
https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.77.1



Re: php-fpm (7.4, 8.0) on armv7 doesn't work

2022-05-07 Thread Sven Wolf




On 5/7/22 17:52, Stuart Henderson wrote:

On 2022/05/07 14:30, Sven Wolf wrote:



On 5/7/22 12:11, Stuart Henderson wrote:

Do you also get a crash from e.g. "php-8.0 -i"?

If so, can you run that under gdb and try and get a backtrace?

pkg_add gdb
egdb php-8.0
set args -i
run
bt



php-8.0 -i runs without any problems.


In that case, can you try and get php-fpm to save a core??

sysctl kern.nosuidcoredump=3
mkdir /var/crash/php-fpm-8.0
(trigger the crash)

Hopefully you'll have a core in /var/crash/php-fpm-8.0; if so,
point gdb at it and backtrace:

egdb php-fpm-8.0 /var/crash/php-fpm-8.0/12345.core
bt



I got the crash dumps, but for me there are no useful informations :(

cat /var/log/php-fpm.log
[07-May-2022 19:12:16] NOTICE: fpm is running, pid 89312
[07-May-2022 19:12:16] NOTICE: ready to handle connections
[07-May-2022 19:12:16] WARNING: [pool www] child 3047 exited on signal 
10 (SIGBUS - core dumped) after 0.664546 seconds from start

[07-May-2022 19:12:16] NOTICE: [pool www] child 66691 started
[07-May-2022 19:12:17] WARNING: [pool www] child 80860 exited on signal 
10 (SIGBUS - core dumped) after 0.980099 seconds from start

[07-May-2022 19:12:17] NOTICE: [pool www] child 62432 started
[07-May-2022 19:12:17] WARNING: [pool www] child 66691 exited on signal 
10 (SIGBUS - core dumped) after 0.370234 seconds from start

[07-May-2022 19:12:17] NOTICE: [pool www] child 89043 started
...

For the pid 89312 there is not crashdump


egdb php-fpm-8.0 /var/crash/php-fpm-8.0/3047.core 



GNU gdb (GDB) 7.12.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 


This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-unknown-openbsd7.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from php-fpm-8.0...(no debugging symbols found)...done.
[New process 413320]
Core was generated by `php-fpm-8.0'.
Program terminated with signal SIGBUS, Bus error.
#0  0x0510a0fc in ?? ()
(gdb) bt
#0  0x0510a0fc in ?? ()
#1  0x0510a0e4 in ?? ()
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
(gdb)


sbc3# egdb php-fpm-8.0 /var/crash/php-fpm-8.0/66691.core 



GNU gdb (GDB) 7.12.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 


This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-unknown-openbsd7.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from php-fpm-8.0...(no debugging symbols found)...done.
[New process 456848]
Core was generated by `php-fpm-8.0'.
Program terminated with signal SIGBUS, Bus error.
#0  0x0510a0fc in ?? ()
(gdb) bt
#0  0x0510a0fc in ?? ()
#1  0x0510a0e4 in ?? ()
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
(gdb)


sbc3# egdb php-fpm-8.0 /var/crash/php-fpm-8.0/80860.core 



GNU gdb (GDB) 7.12.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 


This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-unknown-openbsd7.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from php-fpm-8.0...(no debugging symbols found)...done.
[New process 546453]
bCore was generated by `php-fpm-8.0'.
Program terminated with signal SIGBUS, Bus error.
#0  0x0510a0fc in ?? ()
t(gdb) bt
#0  0x0510a0fc in ?? ()
#1  0x0510a0e4 in ?? ()
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
(gdb)



update: sysutils/sec

2022-05-07 Thread Okan Demirmen
Hi,

Maintainer update sec to 2.9.1.

okay?

Regards,
Okan

Index: Makefile
===
RCS file: /home/open/cvs/ports/sysutils/sec/Makefile,v
retrieving revision 1.37
diff -u -p -r1.37 Makefile
--- Makefile9 Jun 2021 12:36:26 -   1.37
+++ Makefile7 May 2022 16:48:23 -
@@ -2,7 +2,7 @@
 
 COMMENT=   simple event correlator
 
-V= 2.9.0
+V= 2.9.1
 DISTNAME=  sec-${V}
 CATEGORIES=sysutils
 MASTER_SITES=  https://github.com/simple-evcorr/sec/releases/download/${V}/
Index: distinfo
===
RCS file: /home/open/cvs/ports/sysutils/sec/distinfo,v
retrieving revision 1.31
diff -u -p -r1.31 distinfo
--- distinfo9 Jun 2021 12:36:26 -   1.31
+++ distinfo7 May 2022 16:48:38 -
@@ -1,2 +1,2 @@
-SHA256 (sec-2.9.0.tar.gz) = dBFU0l22lwbiIA4Rm1zTLWWuC4A9nA+u/Mz7z+HJdQM=
-SIZE (sec-2.9.0.tar.gz) = 152136
+SHA256 (sec-2.9.1.tar.gz) = Y6QSWTCn3I1x7mfy67QuYHrAxmIW4TSfJ57OjyhyCjQ=
+SIZE (sec-2.9.1.tar.gz) = 153305



Re: php-fpm (7.4, 8.0) on armv7 doesn't work

2022-05-07 Thread Stuart Henderson
On 2022/05/07 14:30, Sven Wolf wrote:
> 
> 
> On 5/7/22 12:11, Stuart Henderson wrote:
> > Do you also get a crash from e.g. "php-8.0 -i"?
> > 
> > If so, can you run that under gdb and try and get a backtrace?
> > 
> > pkg_add gdb
> > egdb php-8.0
> > set args -i
> > run
> > bt
> > 
> 
> php-8.0 -i runs without any problems.

In that case, can you try and get php-fpm to save a core??

sysctl kern.nosuidcoredump=3
mkdir /var/crash/php-fpm-8.0
(trigger the crash)

Hopefully you'll have a core in /var/crash/php-fpm-8.0; if so,
point gdb at it and backtrace:

egdb php-fpm-8.0 /var/crash/php-fpm-8.0/12345.core
bt



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Paco Esteban
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2022/05/07 08:39:34

Modified files:
sysutils/chezmoi: Makefile distinfo modules.inc 
sysutils/chezmoi/pkg: PLIST 

Log message:
update sysutils/chezmoi to 2.15.1

ok sthen@



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Paco Esteban
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2022/05/07 08:37:43

Modified files:
productivity/taskwarrior: Makefile distinfo 

Log message:
update productivity/taskwarrior to 2.6.2

ok sthen@



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Sebastien Marie
CVSROOT:/cvs
Module name:ports
Changes by: sema...@cvs.openbsd.org 2022/05/07 08:29:13

Modified files:
productivity/tryton/5.0/account: Makefile distinfo 
productivity/tryton/5.0/account_asset: Makefile distinfo 
productivity/tryton/5.0/account_stock_continental: Makefile 
   distinfo 
productivity/tryton/5.0/production: Makefile distinfo 
productivity/tryton/5.0/proteus: Makefile distinfo 
productivity/tryton/5.0/stock: Makefile distinfo 
productivity/tryton/5.0/stock_supply: Makefile distinfo 
productivity/tryton/5.0/tryton: Makefile distinfo 
productivity/tryton/5.0/trytond: Makefile distinfo 

Log message:
productivity/tryton/5.0: maintenance update



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Sebastien Marie
CVSROOT:/cvs
Module name:ports
Changes by: sema...@cvs.openbsd.org 2022/05/07 07:38:40

Modified files:
databases/py-sql: Makefile distinfo 

Log message:
update databases/py-sql to 1.4.0

https://discuss.tryton.org/t/release-of-python-sql-1-4-0/5227



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Kevin Lo
CVSROOT:/cvs
Module name:ports
Changes by: ke...@cvs.openbsd.org   2022/05/07 07:31:36

Modified files:
fonts/zh-iansui: Makefile distinfo 

Log message:
Update to 0.943.

ok op@



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Sebastien Marie
CVSROOT:/cvs
Module name:ports
Changes by: sema...@cvs.openbsd.org 2022/05/07 07:27:12

Modified files:
print/py-relatorio: Makefile distinfo 

Log message:
update print/py-relatorio to 0.10.1



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Pavel Korovin
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2022/05/07 07:08:44

Modified files:
sysutils/ansible: Makefile distinfo 
sysutils/ansible/pkg: PLIST 

Log message:
Update ansible 5.7.0 -> 5.7.1
Changelog: 
https://github.com/ansible-community/ansible-build-data/blob/main/5/CHANGELOG-v5.rst#v5-7-1



Re: php-fpm (7.4, 8.0) on armv7 doesn't work

2022-05-07 Thread Sven Wolf




On 5/7/22 12:11, Stuart Henderson wrote:

Do you also get a crash from e.g. "php-8.0 -i"?

If so, can you run that under gdb and try and get a backtrace?

pkg_add gdb
egdb php-8.0
set args -i
run
bt



php-8.0 -i runs without any problems.

php-8.0 -i
phpinfo()
PHP Version => 8.0.10

System => OpenBSD sbc3.fusion-zone.net 7.1 GENERIC#35 armv7
Build Date => Oct 26 2021 18:40:20
Build System => OpenBSD armv7-1.ports.openbsd.org 7.0 GENERIC#80406 armv7
Configure Command =>  './configure'
...


Here is the output of 'egdb php-8.0'
 egdb php-8.0
GNU gdb (GDB) 7.12.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 


This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-unknown-openbsd7.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from php-8.0...(no debugging symbols found)...done.
(gdb) set args -i
(gdb) run
Starting program: /usr/local/bin/php-8.0 -i

Program received signal SIGILL, Illegal instruction.
0x7ffcfee0 in _armv8_pmull_probe () at 
/usr/src/lib/libcrypto/armv4cpuid.S:91

91  /usr/src/lib/libcrypto/armv4cpuid.S: No such file or directory.
(gdb) bt
#0  0x7ffcfee0 in _armv8_pmull_probe () at 
/usr/src/lib/libcrypto/armv4cpuid.S:91
#1  0x7ffda950 in OPENSSL_cpuid_setup () at 
/usr/src/lib/libcrypto/armcap.c:69
#2  0x77570b2c in _dl_call_init_recurse (object=0x9440d600, 
initfirst=initfirst@entry=0) at /usr/src/libexec/ld.so/loader.c:831
#3  0x775709ec in _dl_call_init_recurse (object=0x8161cc00, 
initfirst=initfirst@entry=0) at /usr/src/libexec/ld.so/loader.c:806
#4  0x775709ec in _dl_call_init_recurse (object=object@entry=0x8bf39000, 
initfirst=0) at /usr/src/libexec/ld.so/loader.c:806
#5  0x7757c544 in _dl_call_init (object=0x8bf39000) at 
/usr/src/libexec/ld.so/loader.c:776
#6  _dl_boot (argv=, envp=, 
dyn_loff=, dl_data=0xbfff1a3c) at 
/usr/src/libexec/ld.so/loader.c:697

#7  0x7757cb08 in _dl_start () at /usr/src/libexec/ld.so/arm/ldasm.S:61
#8  0x7757cb08 in _dl_start () at /usr/src/libexec/ld.so/arm/ldasm.S:61
...



The manual start of php-fpm-8.0 shows following warning message. But 
also the comment of line 143 doesn't solve the problem.


/usr/local/sbin/php-fpm-8.0
[07-May-2022 13:36:54] WARNING: Nothing matches the include pattern 
'/etc/php-fpm.d/*.conf' from /etc/php-fpm.conf at line 143.




Here is the output of '/usr/local/sbin/php-fpm-8.0'
egdb /usr/local/sbin/php-fpm-8.0 



GNU gdb (GDB) 7.12.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 


This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "arm-unknown-openbsd7.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /usr/local/sbin/php-fpm-8.0...(no debugging symbols 
found)...done.

(gdb) run
Starting program: /usr/local/sbin/php-fpm-8.0

Program received signal SIGILL, Illegal instruction.
0x87bf4ee0 in _armv8_pmull_probe () at 
/usr/src/lib/libcrypto/armv4cpuid.S:91

91  /usr/src/lib/libcrypto/armv4cpuid.S: No such file or directory.
(gdb) bt
#0  0x87bf4ee0 in _armv8_pmull_probe () at 
/usr/src/lib/libcrypto/armv4cpuid.S:91
#1  0x87bff950 in OPENSSL_cpuid_setup () at 
/usr/src/lib/libcrypto/armcap.c:69
#2  0x644b0b2c in _dl_call_init_recurse (object=0x5d0c6200, 
initfirst=initfirst@entry=0) at /usr/src/libexec/ld.so/loader.c:831
#3  0x644b09ec in _dl_call_init_recurse (object=0x70f88000, 
initfirst=initfirst@entry=0) at /usr/src/libexec/ld.so/loader.c:806
#4  0x644b09ec in _dl_call_init_recurse (object=object@entry=0x8ad54000, 
initfirst=0) at /usr/src/libexec/ld.so/loader.c:806
#5  0x644bc544 in _dl_call_init (object=0x8ad54000) at 
/usr/src/libexec/ld.so/loader.c:776
#6  _dl_boot (argv=, envp=, 
dyn_loff=, dl_data=0xbffc6a3c) at 
/usr/src/libexec/ld.so/loader.c:697

#7  0x644bcb08 in _dl_start () at /usr/src/libexec/ld.so/arm/ldasm.S:61
#8  0x644bcb08 in _dl_start () at /usr/src/libexec/ld.so/arm/ldasm.S:61
...

After I populated /usr/src (src.tar.gz and sys.tar.gz from 
https://ftp.artfiles.org/openbsd/7.1/) there is no file 

CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 04:34:18

Modified files:
sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.23.9.



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 04:34:07

Modified files:
net/py-boto3   : Makefile distinfo 

Log message:
Update to py3-boto3-1.22.9.



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 04:33:57

Modified files:
net/py-botocore: Makefile distinfo 

Log message:
Update to py3-botocore-1.25.9.



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 04:30:59

Modified files:
x11/gnome/shell-extensions: Makefile distinfo 
x11/gnome/shell-extensions/pkg: PLIST 

Log message:
Update to gnome-shell-extensions-42.1.



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 04:30:45

Modified files:
x11/gnome/shell: Makefile distinfo 
x11/gnome/shell/pkg: PLIST 

Log message:
Update to gnome-shell-42.1.



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 04:30:28

Modified files:
x11/gnome/mutter: Makefile distinfo 

Log message:
Update to mutter-42.1.



Re: php-fpm (7.4, 8.0) on armv7 doesn't work

2022-05-07 Thread Stuart Henderson
Do you also get a crash from e.g. "php-8.0 -i"?

If so, can you run that under gdb and try and get a backtrace?

pkg_add gdb
egdb php-8.0
set args -i
run
bt



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2022/05/07 03:55:57

Modified files:
www/tor-browser/browser: Makefile 

Log message:
Bump after recent mozilla.port.mk change (losing gtk+2 dependency).



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2022/05/07 03:53:47

Modified files:
www/py-httpie  : Makefile distinfo 
www/py-httpie/pkg: PLIST 
Added files:
www/py-httpie/patches: patch-setup_py 

Log message:
update to httpie-3.2.1



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2022/05/07 03:12:52

Modified files:
net/freeradius : Makefile distinfo 
net/freeradius/patches: patch-configure patch-doc_README 
patch-raddb_radiusd_conf_in 
patch-src_main_cb_c patch-src_main_tls_c 
net/freeradius/pkg: PLIST-ldap PLIST-main 
Removed files:
net/freeradius/patches: patch-raddb_mods-available_eap 

Log message:
update to freeradius-3.2.0



Re: [UPDATE] fonts/zh-iansui to 0.943

2022-05-07 Thread Omar Polo
Kevin Lo  wrote:
> ping.

ok op

> On Tue, May 03, 2022 at 10:27:55AM +0800, Kevin Lo wrote:
> > 
> > Hi,
> > 
> > This updates zh-iansu to 0.943, ok?
> > 
> > Index: fonts/zh-iansui/Makefile
> > ===
> > RCS file: /cvs/ports/fonts/zh-iansui/Makefile,v
> > retrieving revision 1.3
> > diff -u -p -u -p -r1.3 Makefile
> > --- fonts/zh-iansui/Makefile11 Mar 2022 19:00:28 -  1.3
> > +++ fonts/zh-iansui/Makefile3 May 2022 02:23:57 -
> > @@ -1,6 +1,6 @@
> >  COMMENT =  Chinese truetype font derived from Klee One
> >  
> > -V =0.940
> > +V =0.943
> >  PKGNAME =  zh-iansui-${V}
> >  
> >  GH_ACCOUNT =   ButTaiwan
> > Index: fonts/zh-iansui/distinfo
> > ===
> > RCS file: /cvs/ports/fonts/zh-iansui/distinfo,v
> > retrieving revision 1.2
> > diff -u -p -u -p -r1.2 distinfo
> > --- fonts/zh-iansui/distinfo1 Mar 2022 04:16:19 -   1.2
> > +++ fonts/zh-iansui/distinfo3 May 2022 02:23:57 -
> > @@ -1,2 +1,2 @@
> > -SHA256 (iansui-0.940.tar.gz) = 9/gb5RPXDIBOR8bqE/Lus5lN44VVWcVT1cX/uwnR1Oc=
> > -SIZE (iansui-0.940.tar.gz) = 6203724
> > +SHA256 (iansui-0.943.tar.gz) = Unb7KH2p/Or1kxl52wt6aGclALAgmmyJCGiXG/n/CEQ=
> > +SIZE (iansui-0.943.tar.gz) = 6206740
> > 




Re: [UPDATE] fonts/gentium to 6.101

2022-05-07 Thread Omar Polo
George Rosamond  wrote:
> ping

committed, thanks!

>  Forwarded Message 
> Subject: [UPDATE] fonts/gentium to 6.101
> Date: Wed, 23 Mar 2022 15:23:22 -0400
> From: George Rosamond  To: OpenBSD Ports 
> 
> Updated from 6.001
> 
> I can take MAINTAINER since I maintain the other SIL fonts.
> 
> g



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Omar Polo
CVSROOT:/cvs
Module name:ports
Changes by: o...@cvs.openbsd.org2022/05/07 02:07:34

Modified files:
fonts/gentium  : Makefile distinfo 

Log message:
update fonts/gentium to 6.101

from George Rosamond who is also taking maintainership, thanks!



Re: CVS: cvs.openbsd.org: ports

2022-05-07 Thread Stuart Henderson
On 2022/05/07 00:08, Rafael Sadowski wrote:
> CVSROOT:  /cvs
> Module name:  ports
> Changes by:   rsadow...@cvs.openbsd.org   2022/05/07 00:08:10
> 
> Modified files:
>   x11/qt5/qtdeclarative: Makefile 
> Added files:
>   x11/qt5/qtdeclarative/patches: patch-src_qml_configure_json 
> 
> Log message:
> Disable QML just-in-time compiler
> 
> Makes it a little slower but safer

I thought it wasn't getting enabled anyway, just testing if W+X worked
and disabling the JIT anyway?

If that's the case it's basically a noop for most users, just fixes
things for those who fiddled with the wxabort knob.



Re: [UPDATE] fonts/zh-iansui to 0.943

2022-05-07 Thread Kevin Lo
ping.

On Tue, May 03, 2022 at 10:27:55AM +0800, Kevin Lo wrote:
> 
> Hi,
> 
> This updates zh-iansu to 0.943, ok?
> 
> Index: fonts/zh-iansui/Makefile
> ===
> RCS file: /cvs/ports/fonts/zh-iansui/Makefile,v
> retrieving revision 1.3
> diff -u -p -u -p -r1.3 Makefile
> --- fonts/zh-iansui/Makefile  11 Mar 2022 19:00:28 -  1.3
> +++ fonts/zh-iansui/Makefile  3 May 2022 02:23:57 -
> @@ -1,6 +1,6 @@
>  COMMENT =Chinese truetype font derived from Klee One
>  
> -V =  0.940
> +V =  0.943
>  PKGNAME =zh-iansui-${V}
>  
>  GH_ACCOUNT = ButTaiwan
> Index: fonts/zh-iansui/distinfo
> ===
> RCS file: /cvs/ports/fonts/zh-iansui/distinfo,v
> retrieving revision 1.2
> diff -u -p -u -p -r1.2 distinfo
> --- fonts/zh-iansui/distinfo  1 Mar 2022 04:16:19 -   1.2
> +++ fonts/zh-iansui/distinfo  3 May 2022 02:23:57 -
> @@ -1,2 +1,2 @@
> -SHA256 (iansui-0.940.tar.gz) = 9/gb5RPXDIBOR8bqE/Lus5lN44VVWcVT1cX/uwnR1Oc=
> -SIZE (iansui-0.940.tar.gz) = 6203724
> +SHA256 (iansui-0.943.tar.gz) = Unb7KH2p/Or1kxl52wt6aGclALAgmmyJCGiXG/n/CEQ=
> +SIZE (iansui-0.943.tar.gz) = 6206740
> 



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2022/05/07 00:28:22

Log message:
Import qt6-qtimageformats-6.3.0, ok kn@

Comment:
Qt6 additional image formats

Description:
The core Qt Gui library by default supports reading and writing image files 
of
the most common file formats: PNG, JPEG, BMP, GIF and a few more, ref. 
Reading
and Writing Image Files. The Qt Image Formats add-on module provides 
optional
support for ICNS, JP2, MNG, TGA, TIFF, WBMP, WEBP file formats.

Maintainer: The OpenBSD ports mailing-list 

WWW: https://www.qt.io/

Status:

Vendor Tag: rsadowski
Release Tags:   rsadowski_20220507

N ports/x11/qt6/qtimageformats/Makefile
N ports/x11/qt6/qtimageformats/distinfo
N ports/x11/qt6/qtimageformats/pkg/DESCR
N ports/x11/qt6/qtimageformats/pkg/PLIST

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2022-05-07 Thread Rafael Sadowski
CVSROOT:/cvs
Module name:ports
Changes by: rsadow...@cvs.openbsd.org   2022/05/07 00:08:10

Modified files:
x11/qt5/qtdeclarative: Makefile 
Added files:
x11/qt5/qtdeclarative/patches: patch-src_qml_configure_json 

Log message:
Disable QML just-in-time compiler

Makes it a little slower but safer

OK kn@