powerpc bulk build report

2024-04-12 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Mar 18 03:56:19 MDT 2024
Finished: Fri Apr 12 10:24:54 MDT 2024
Duration: 25 Days 6 hours 29 minutes

Built using OpenBSD 7.5 (GENERIC) #225: Sat Mar 16 04:46:12 MDT 2024

Built 10061 packages

Number of packages built each day:
Mar 18: 837
Mar 19: 284
Mar 20: 688
Mar 21: 141
Mar 22: 37
Mar 23: 358
Mar 24: 410
Mar 25: 94
Mar 26: 484
Mar 27: 200
Mar 28: 153
Mar 29: 221
Mar 30: 215
Mar 31: 155
Apr 1: 3320
Apr 2: 248
Apr 3: 318
Apr 4: 282
Apr 5: 356
Apr 6: 305
Apr 7: 209
Apr 8: 375
Apr 9: 371
Apr 10: 273
Apr 11: 897
Apr 12: 1962



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2024-03-18/summary.log

Build failures: 28
http://build-failures.rhaalovely.net/powerpc/2024-03-18/devel/appstream.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/devel/py-unicorn,python3.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/emulators/desmume.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/emulators/dosbox-x.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/emulators/qemu,-ga.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/games/gnukem.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/games/nanosaur2.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/games/widelands.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/lang/seed7.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/security/distorm3.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/sysutils/u-boot/rk356x.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/sysutils/u-boot/rk3588.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/wayland/swayimg.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/www/webkitgtk4,webkitgtk41.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/x11/qt5/qtwebkit.log
http://build-failures.rhaalovely.net/powerpc/2024-03-18/x11/qt6/qtquick3dphysics.log



Re: powerpc bulk build report

2024-03-10 Thread George Koehler
On Sun, 10 Mar 2024 18:26:04 +0100
Omar Polo  wrote:

> The alternative, if I'm reading this[0] correctly, is to sprinkle some
> #include  and -maltivec, but since it's not used I think it's
> easier to just remove it.  If it works I'll upstream this as well.

On Sun, 10 Mar 2024 18:42:06 +0100
Tobias Heider  wrote:

> Do we actually support ppcs without altivec? I guess it might work better
> with altivec enabled instead.

OpenBSD/macppc runs on PowerPC G3 without altivec, and G4 and G5 with
altivec.  The default from clang is -mno-altivec for powerpc, but
-maltivec for powerpc64.

This game needs 3d acceleration, but Mesa in OpenBSD/macppc can
accelerate only the newer radeon cards (r300), and I have seen these
cards only in G4 and G5 models with altivec.

On Sun, 10 Mar 2024 19:21:22 +0100
Tobias Heider  wrote:

> Right, the commit history also doesn't really help. I can test it and see if 
> it
> works with just the vec removed. The other __ppc__ parts might actually work.

The other __ppc__ parts use the "fsel" and "frsqrte" instructions.
These were optional instructions, but the G3 does have them (in the
MPC750 manual).
--gkoehler



Re: powerpc bulk build report

2024-03-10 Thread Tobias Heider
On Sun, Mar 10, 2024 at 06:26:04PM +0100, Omar Polo wrote:
> On 2024/03/03 20:37:45 -0700, gkoeh...@openbsd.org wrote:
> > http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/nanosaur2.log
> 
> : 
> /usr/obj/ports/nanosaur2-2.1.0/Nanosaur2-2.1.0/Source/Headers/ogl_support.h:122:2:
> : error: unknown type name 'vector'
> : vector float v[4];
> : ^
> : 1 error generated.
> 
> I missed this failure, thanks izzy for prodding me.  I don't have a
> powerpc to test this, but it appears if I'm grepping correctly that this
> field is never used.
> 
> (no bump needed since it only fixes -hopefully- the build on powerpc
> where it wasn't built before.)
> 
> The alternative, if I'm reading this[0] correctly, is to sprinkle some
> #include  and -maltivec, but since it's not used I think it's
> easier to just remove it.  If it works I'll upstream this as well.
> 
> [0]: 
> https://gcc.gnu.org/onlinedocs/gcc/PowerPC-AltiVec_002fVSX-Built-in-Functions.html

I actually built and tested this a few weeks back. I just removed all the
#ifdef __ppc__ blocks. Game loads but runs with ~5 fps and crashes after
a few seconds on my powerbook G4

Do we actually support ppcs without altivec? I guess it might work better
with altivec enabled instead.

> 
> 
> Thanks!
> 
> Omar Polo
> 
> 
> Index: patches/patch-Source_Headers_ogl_support_h
> ===
> RCS file: patches/patch-Source_Headers_ogl_support_h
> diff -N patches/patch-Source_Headers_ogl_support_h
> --- /dev/null 1 Jan 1970 00:00:00 -
> +++ patches/patch-Source_Headers_ogl_support_h10 Mar 2024 17:12:47 
> -
> @@ -0,0 +1,16 @@
> +fixes "error: unknown type name 'vector'" on powerpc; the v field is
> +never used.
> +
> +Index: Source/Headers/ogl_support.h
> +--- Source/Headers/ogl_support.h.orig
>  Source/Headers/ogl_support.h
> +@@ -118,9 +118,6 @@ typedef struct
> + typedef union
> + {
> + GLfloat value[16];
> +-#if defined(__ppc__)
> +-vector float v[4];
> +-#endif
> + }OGLMatrix4x4;
> + 
> + typedef struct
> 



Re: powerpc bulk build report

2024-03-10 Thread Tobias Heider
On Sun, Mar 10, 2024 at 06:55:07PM +0100, Omar Polo wrote:
> On 2024/03/10 18:42:06 +0100, Tobias Heider  wrote:
> > On Sun, Mar 10, 2024 at 06:26:04PM +0100, Omar Polo wrote:
> > > On 2024/03/03 20:37:45 -0700, gkoeh...@openbsd.org wrote:
> > > > http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/nanosaur2.log
> > > 
> > > : 
> > > /usr/obj/ports/nanosaur2-2.1.0/Nanosaur2-2.1.0/Source/Headers/ogl_support.h:122:2:
> > > : error: unknown type name 'vector'
> > > : vector float v[4];
> > > : ^
> > > : 1 error generated.
> > > 
> > > I missed this failure, thanks izzy for prodding me.  I don't have a
> > > powerpc to test this, but it appears if I'm grepping correctly that this
> > > field is never used.
> > > 
> > > (no bump needed since it only fixes -hopefully- the build on powerpc
> > > where it wasn't built before.)
> > > 
> > > The alternative, if I'm reading this[0] correctly, is to sprinkle some
> > > #include  and -maltivec, but since it's not used I think it's
> > > easier to just remove it.  If it works I'll upstream this as well.
> > > 
> > > [0]: 
> > > https://gcc.gnu.org/onlinedocs/gcc/PowerPC-AltiVec_002fVSX-Built-in-Functions.html
> > 
> > I actually built and tested this a few weeks back. I just removed all the
> > #ifdef __ppc__ blocks. Game loads but runs with ~5 fps and crashes after
> > a few seconds on my powerbook G4
> > 
> > Do we actually support ppcs without altivec? I guess it might work better
> > with altivec enabled instead.
> 
> If there are chances that it is playable with altivec enabled IMHO it
> would make sense to do so since the choice is between a broken game
> everywhere and something that can be played on some machines.
> 
> However, this vector doesn't seem to be used at all in the code, so I
> don't see how enabling altivec here will actually change something at
> runtime, although I might have missed something.
> 

Right, the commit history also doesn't really help. I can test it and see if it
works with just the vec removed. The other __ppc__ parts might actually work.



Re: powerpc bulk build report

2024-03-10 Thread Omar Polo
On 2024/03/10 18:42:06 +0100, Tobias Heider  wrote:
> On Sun, Mar 10, 2024 at 06:26:04PM +0100, Omar Polo wrote:
> > On 2024/03/03 20:37:45 -0700, gkoeh...@openbsd.org wrote:
> > > http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/nanosaur2.log
> > 
> > : 
> > /usr/obj/ports/nanosaur2-2.1.0/Nanosaur2-2.1.0/Source/Headers/ogl_support.h:122:2:
> > : error: unknown type name 'vector'
> > : vector float v[4];
> > : ^
> > : 1 error generated.
> > 
> > I missed this failure, thanks izzy for prodding me.  I don't have a
> > powerpc to test this, but it appears if I'm grepping correctly that this
> > field is never used.
> > 
> > (no bump needed since it only fixes -hopefully- the build on powerpc
> > where it wasn't built before.)
> > 
> > The alternative, if I'm reading this[0] correctly, is to sprinkle some
> > #include  and -maltivec, but since it's not used I think it's
> > easier to just remove it.  If it works I'll upstream this as well.
> > 
> > [0]: 
> > https://gcc.gnu.org/onlinedocs/gcc/PowerPC-AltiVec_002fVSX-Built-in-Functions.html
> 
> I actually built and tested this a few weeks back. I just removed all the
> #ifdef __ppc__ blocks. Game loads but runs with ~5 fps and crashes after
> a few seconds on my powerbook G4
> 
> Do we actually support ppcs without altivec? I guess it might work better
> with altivec enabled instead.

If there are chances that it is playable with altivec enabled IMHO it
would make sense to do so since the choice is between a broken game
everywhere and something that can be played on some machines.

However, this vector doesn't seem to be used at all in the code, so I
don't see how enabling altivec here will actually change something at
runtime, although I might have missed something.



Re: powerpc bulk build report

2024-03-10 Thread Omar Polo
On 2024/03/03 20:37:45 -0700, gkoeh...@openbsd.org wrote:
> http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/nanosaur2.log

: 
/usr/obj/ports/nanosaur2-2.1.0/Nanosaur2-2.1.0/Source/Headers/ogl_support.h:122:2:
: error: unknown type name 'vector'
: vector float v[4];
: ^
: 1 error generated.

I missed this failure, thanks izzy for prodding me.  I don't have a
powerpc to test this, but it appears if I'm grepping correctly that this
field is never used.

(no bump needed since it only fixes -hopefully- the build on powerpc
where it wasn't built before.)

The alternative, if I'm reading this[0] correctly, is to sprinkle some
#include  and -maltivec, but since it's not used I think it's
easier to just remove it.  If it works I'll upstream this as well.

[0]: 
https://gcc.gnu.org/onlinedocs/gcc/PowerPC-AltiVec_002fVSX-Built-in-Functions.html


Thanks!

Omar Polo


Index: patches/patch-Source_Headers_ogl_support_h
===
RCS file: patches/patch-Source_Headers_ogl_support_h
diff -N patches/patch-Source_Headers_ogl_support_h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-Source_Headers_ogl_support_h  10 Mar 2024 17:12:47 -
@@ -0,0 +1,16 @@
+fixes "error: unknown type name 'vector'" on powerpc; the v field is
+never used.
+
+Index: Source/Headers/ogl_support.h
+--- Source/Headers/ogl_support.h.orig
 Source/Headers/ogl_support.h
+@@ -118,9 +118,6 @@ typedef struct
+ typedef union
+ {
+   GLfloat value[16];
+-  #if defined(__ppc__)
+-  vector float v[4];
+-  #endif
+ }OGLMatrix4x4;
+ 
+ typedef struct



powerpc bulk build report

2024-03-03 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Feb  7 11:50:11 MST 2024
Finished: Sun Mar  3 20:36:56 MST 2024
Duration: 25 Days 8 hours 47 minutes

Built using OpenBSD 7.4-current (GENERIC) #209: Tue Feb  6 00:45:35 MST 2024

Built 10093 packages

Number of packages built each day:
Feb 7: 622
Feb 8: 136
Feb 9: 231
Feb 10: 458
Feb 11: 548
Feb 12: 301
Feb 13: 132
Feb 14: 341
Feb 15: 366
Feb 16: 272
Feb 17: 109
Feb 18: 227
Feb 19: 194
Feb 20: 218
Feb 21: 183
Feb 22: 163
Feb 23: 291
Feb 24: 281
Feb 25: 307
Feb 26: 350
Feb 27: 264
Feb 28: 282
Feb 29: 304
Mar 1: 444
Mar 2: 284
Mar 3: 2785



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2024-02-07/summary.log

Build failures: 27
http://build-failures.rhaalovely.net/powerpc/2024-02-07/devel/appstream.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/devel/py-unicorn,python3.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/emulators/desmume.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/gnukem.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/nanosaur2.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/games/widelands.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/graphics/gegl04.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/lang/seed7.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/math/lean.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/security/distorm3.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/sysutils/u-boot/rk356x.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/sysutils/u-boot/rk3588.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/wayland/swayimg.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/www/webkitgtk4,webkitgtk41.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2024-02-07/x11/qt6/qtquick3dphysics.log

Recurrent failures:
 failures/devel/appstream.log
 failures/devel/py-thrift,python3.log
 failures/devel/py-unicorn,python3.log
 failures/games/cataclysm-dda,no_x11.log
 failures/games/gnukem.log
 failures/games/hyperrogue.log
 failures/games/nblood.log
 failures/games/widelands.log
 failures/graphics/gegl04.log
 failures/sysutils/u-boot/rk3588.log
 failures/wayland/swayimg.log
 failures/www/kiwix/libkiwix.log
 failures/www/webkitgtk4,webkitgtk41.log
 failures/x11/jgmenu.log
 failures/x11/qt6/qtquick3dphysics.log

New failures:
+failures/games/nanosaur2.log

Resolved failures:
-failures/databases/galera.log
-failures/www/sogo.log

Packages newly built:
+archivers/heatshrink
+databases/galera
+devel/c2ffi
+devel/immer
+devel/lager
+devel/libbgcode
+devel/llvm/17
+devel/llvm/17,-lldb
+devel/llvm/17,-main
+devel/llvm/17,-python
+devel/meson-python
+devel/py-pyproject-metadata,python3
+devel/py-transitions,python3
+devel/py-unique-log-filter,python3
+devel/zug
+games/bugdom
+games/bugdom2
+games/cromagrally
+games/fna/faudio
+games/fna/fna3d
+games/ottomatic
+games/yquake2
+graphics/py-bdfparser,python3
+lang/lucee/v5
+mail/claws-mail
+mail/claws-mail,
+mail/claws-mail,,-bogofilter
+mail/claws-mail,,-main
+mail/claws-mail,,-pdfviewer
+mail/claws-mail,,-spamassassin
+mail/claws-mail,-bogofilter
+mail/claws-mail,-main
+mail/claws-mail,-pdfviewer
+mail/claws-mail,-spamassassin
+mail/claws-mail,ldap
+mail/claws-mail,ldap,-bogofilter
+mail/claws-mail,ldap,-main
+mail/claws-mail,ldap,-pdfviewer
+mail/claws-mail,ldap,-spamassassin
+mail/grommunio/dav
+mail/grommunio/gromox
+mail/grommunio/gromox,-main
+mail/grommunio/gromox,-mapi
+mail/grommunio/sync
+net/dleyna
+net/fort
+net/gssdp
+net/gupnp/core
+net/gupnp/dlna
+net/gupnp/igd
+net/gupnp/tools
+net/irctk
+net/libnice
+sysutils/firmware/qwx
+textproc/py-yamlordereddictloader,python3
+www/sogo

Packages not built this time:
-audio/faudio
-databases/ruby-hiera3,ruby31
-databases/ruby-hiera3,ruby33
-devel/ruby-deep_merge,ruby31
-devel/ruby-deep_merge,ruby33
-graphics/fna3d
-mail/trojita



powerpc bulk build report

2024-02-06 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Jan 14 16:57:49 MST 2024
Finished: Tue Feb  6 13:46:11 MST 2024
Duration: 22 Days 20 hours 48 minutes

Built using OpenBSD 7.4-current (GENERIC) #200: Thu Jan 11 09:52:56 MST 2024

Built 10103 packages

Number of packages built each day:
Jan 14: 628
Jan 15: 504
Jan 16: 519
Jan 17: 239
Jan 18: 1
Jan 19: 478
Jan 20: 370
Jan 21: 220
Jan 22: 371
Jan 23: 216
Jan 24: 246
Jan 25: 238
Jan 26: 211
Jan 27: 124
Jan 28: 204
Jan 29: 447
Jan 30: 350
Jan 31: 313
Feb 1: 294
Feb 2: 296
Feb 3: 276
Feb 4: 383
Feb 5: 411
Feb 6: 2764



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2024-01-14/summary.log

Build failures: 28
http://build-failures.rhaalovely.net/powerpc/2024-01-14/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/devel/appstream.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/devel/py-unicorn,python3.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/emulators/desmume.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/games/gnukem.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/games/widelands.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/graphics/gegl04.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/lang/seed7.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/math/lean.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/security/distorm3.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/sysutils/u-boot/rk356x.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/sysutils/u-boot/rk3588.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/wayland/swayimg.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/www/sogo.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/www/webkitgtk4,webkitgtk41.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2024-01-14/x11/qt6/qtquick3dphysics.log

Recurrent failures:
 failures/databases/galera.log
 failures/devel/appstream.log
 failures/devel/py-thrift,python3.log
 failures/games/hyperrogue.log
 failures/games/nblood.log
 failures/games/widelands.log
 failures/graphics/gegl04.log
 failures/graphics/openimageio.log
 failures/lang/compcert.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/lang/seed7.log
 failures/math/lean.log
 failures/sysutils/u-boot/rk3588.log
 failures/wayland/swayimg.log
 failures/www/kiwix/libkiwix.log
 failures/www/webkitgtk4,webkitgtk41.log
 failures/x11/jgmenu.log
 failures/x11/qt6/qtquick3dphysics.log

New failures:
+failures/www/sogo.log

Resolved failures:
-failures/audio/musique.log
-failures/geo/osm2pgsql.log
-failures/lang/mruby.log

Packages newly built:
+audio/musique
+audio/ruby-taglib,ruby33
+audio/ruby-vorbis_comment,ruby33
+databases/ruby-amalgalite,ruby33
+databases/ruby-hiera-eyaml,ruby33
+databases/ruby-hiera-eyaml-gpg,ruby33
+databases/ruby-hiera-file,ruby33
+databases/ruby-hiera3,ruby33
+databases/ruby-ldap,ruby33
+databases/ruby-mysql2,ruby33
+databases/ruby-pg,ruby33
+databases/ruby-sequel,ruby33
+databases/ruby-sequel_pg,ruby33
+databases/ruby-sqlite3,ruby33
+databases/ruby-tiny_tds,ruby33
+databases/ruby-trilogy,ruby33
+databases/updatedb
+devel/pecl-xdebug,php83
+devel/py-jupyter_packaging,python3
+devel/py-openbsd,python3
+devel/ruby-arrayfields,ruby33
+devel/ruby-cicphash,ruby33
+devel/ruby-daemons,ruby33
+devel/ruby-deep_merge,ruby33
+devel/ruby-ffi,ruby33
+devel/ruby-ffi-compiler,ruby33
+devel/ruby-highline,ruby33
+devel/ruby-idn,ruby33
+devel/ruby-kgio,ruby33
+devel/ruby-mini_portile2,ruby33
+devel/ruby-narray,ruby33
+devel/ruby-ncurses,ruby33
+devel/ruby-nio4r,ruby33
+devel/ruby-optimist,ruby33
+devel/ruby-pkg-config,ruby33
+devel/ruby-prof,ruby33
+devel/ruby-rb_sys
+devel/ruby-rb_sys,ruby31
+devel/ruby-rb_sys,ruby32
+devel/ruby-rb_sys,ruby33
+devel/ruby-rbtree,ruby33
+devel/ruby-regexp_parser,ruby33
+devel/ruby-subset_sum,ruby33
+devel/ruby-yajl,ruby33
+graphics/ruby-rmagick,ruby33
+lang/mruby
+lang/ruby/3.3
+lang/ruby/3.3,-main
+lang/ruby/3.3,-ri_docs

powerpc bulk build report

2024-01-11 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Dec 19 13:59:30 MST 2023
Finished: Thu Jan 11 15:11:14 MST 2024
Duration: 23 Days 1 hours 12 minutes

Built using OpenBSD 7.4-current (GENERIC) #194: Mon Dec 18 23:31:16 MST 2023

Built 9959 packages

Number of packages built each day:
Dec 19: 674
Dec 20: 451
Dec 21: 691
Dec 22: 418
Dec 23: 33
Dec 24: 176
Dec 25: 306
Dec 26: 419
Dec 27: 238
Dec 28: 190
Dec 29: 171
Dec 30: 248
Dec 31: 228
Jan 1: 3176
Jan 2: 209
Jan 3: 442
Jan 4: 349
Jan 5: 316
Jan 6: 272
Jan 7: 270
Jan 8: 348
Jan 9: 334
Jan 10: 406
Jan 11: 2647



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-12-19/summary.log

Build failures: 30
http://build-failures.rhaalovely.net/powerpc/2023-12-19/audio/musique.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/devel/appstream.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/devel/py-unicorn,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/emulators/desmume.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/games/gnukem.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/games/widelands.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/geo/osm2pgsql.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/graphics/gegl04.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/lang/mruby.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/lang/seed7.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/math/lean.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/security/distorm3.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/sysutils/u-boot/rk356x.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/sysutils/u-boot/rk3588.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/wayland/swayimg.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/www/webkitgtk4,webkitgtk41.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-12-19/x11/qt6/qtquick3dphysics.log



Re: lang/sbcl on powerpc (call for testing) - Re: powerpc bulk build report

2023-11-24 Thread Tobias Heider
On Fri, Nov 24, 2023 at 03:23:46PM +0100, Tobias Heider wrote:
> On Fri, Nov 24, 2023 at 08:36:03AM +0100, Sebastien Marie wrote:
> > Tobias Heider  writes:
> >
> > > On Thu, Nov 23, 2023 at 11:02:22AM +0100, Sebastien Marie wrote:
> > >> gkoeh...@openbsd.org writes:
> > >> > http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/sbcl.log
> > >>
> > >> Could someone test the following patch for lang/sbcl on powerpc ?
> > >> If it works, I will push it upstream.
> > >
> > > This fixes the first problem but after that I ran into an undefined
> > > symbol current_thread error.
> > >
> > > It looks like arm64 already handles this correctly in arm64-assem.S:114
> > > but a simple s/current_thread/__emutls_v.current_thread/ was not enough
> > > since it caused runtime errors later on.
> >
> > oh.
> >
> > direct TLS seems to not be expected for powerpc: Linux code enable it
> > only for some archs (and ppc isn't in the list). So follow the same way.
> >
> > Does it correct the problem ? (and does #include "validate.h" is still
> > need ?)
> >
> > Thanks.
> >
> 
> Sadly this seems to give me the same error that I got with 
> __emutls_v.current_thread:
> 
> //doing warm init - compilation phase
> This is SBCL 2.3.10.openbsd.sbcl-2.3.10, an implementation of ANSI Common 
> Lisp.
> More information about SBCL is available at .
> 
> SBCL is free software, provided as is, with absolutely no warranty.
> It is mostly in the public domain; some portions are provided under
> BSD-style licenses.  See the CREDITS and COPYING files in the
> distribution for more information.
> Initial page table:
> Immobile Object Counts
>  Gen layout fdefn symbol   code  Boxed   ConsRaw   Code  SmMix  Mixed  
> LgRaw LgCode  LgMix Waste%   AllocTrig   Dirty GCs Mem-age
>   6  0  0  0  0  0501  0   3505  0   3591 
>  0  0  00.430986640 2003505   0  0.
> Tot  0  0  0  0  0501  0   3505  0   3591 
>  0  0  00.430986640 [5.8% of 536870912 max]
> fatal error encountered in SBCL pid 94032 pthread 0xc50e1d94:
> maximum interrupt nesting depth (8) exceeded
> 
> Welcome to LDB, a low-level debugger for the Lisp runtime environment.
> ldb> //doing warm init - load and dump phase
> fatal error encountered in SBCL pid 52269 pthread 0xc040cd94:
> maximum interrupt nesting depth (8) exceeded
> 
> Welcome to LDB, a low-level debugger for the Lisp runtime environment.
> ldb> [1] + Stopped (tty input)  ./src/runtime/sbcl --core 
> output/cold-sbcl.core
> [2] - Stopped (tty input)  ./src/runtime/sbcl --noinform --core output/col
> 0m00.51s real 0m00.01s user 0m00.01s system
> //entering make-target-contrib.sh
> 

Just realized that that was a lie.  I was looking at the wrong tmux pane...
Your fix seems to work. Thank you!



Re: lang/sbcl on powerpc (call for testing) - Re: powerpc bulk build report

2023-11-24 Thread Tobias Heider
On Fri, Nov 24, 2023 at 08:36:03AM +0100, Sebastien Marie wrote:
> Tobias Heider  writes:
>
> > On Thu, Nov 23, 2023 at 11:02:22AM +0100, Sebastien Marie wrote:
> >> gkoeh...@openbsd.org writes:
> >> > http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/sbcl.log
> >>
> >> Could someone test the following patch for lang/sbcl on powerpc ?
> >> If it works, I will push it upstream.
> >
> > This fixes the first problem but after that I ran into an undefined
> > symbol current_thread error.
> >
> > It looks like arm64 already handles this correctly in arm64-assem.S:114
> > but a simple s/current_thread/__emutls_v.current_thread/ was not enough
> > since it caused runtime errors later on.
>
> oh.
>
> direct TLS seems to not be expected for powerpc: Linux code enable it
> only for some archs (and ppc isn't in the list). So follow the same way.
>
> Does it correct the problem ? (and does #include "validate.h" is still
> need ?)
>
> Thanks.
>

Sadly this seems to give me the same error that I got with 
__emutls_v.current_thread:

//doing warm init - compilation phase
This is SBCL 2.3.10.openbsd.sbcl-2.3.10, an implementation of ANSI Common Lisp.
More information about SBCL is available at .

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses.  See the CREDITS and COPYING files in the
distribution for more information.
Initial page table:
Immobile Object Counts
 Gen layout fdefn symbol   code  Boxed   ConsRaw   Code  SmMix  Mixed  
LgRaw LgCode  LgMix Waste%   AllocTrig   Dirty GCs Mem-age
  6  0  0  0  0  0501  0   3505  0   3591  
0  0  00.430986640 2003505   0  0.
Tot  0  0  0  0  0501  0   3505  0   3591  
0  0  00.430986640 [5.8% of 536870912 max]
fatal error encountered in SBCL pid 94032 pthread 0xc50e1d94:
maximum interrupt nesting depth (8) exceeded

Welcome to LDB, a low-level debugger for the Lisp runtime environment.
ldb> //doing warm init - load and dump phase
fatal error encountered in SBCL pid 52269 pthread 0xc040cd94:
maximum interrupt nesting depth (8) exceeded

Welcome to LDB, a low-level debugger for the Lisp runtime environment.
ldb> [1] + Stopped (tty input)  ./src/runtime/sbcl --core output/cold-sbcl.core
[2] - Stopped (tty input)  ./src/runtime/sbcl --noinform --core output/col
0m00.51s real 0m00.01s user 0m00.01s system
//entering make-target-contrib.sh



Re: lang/sbcl on powerpc (call for testing) - Re: powerpc bulk build report

2023-11-23 Thread Sebastien Marie
Tobias Heider  writes:

> On Thu, Nov 23, 2023 at 11:02:22AM +0100, Sebastien Marie wrote:
>> gkoeh...@openbsd.org writes:
>> > http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/sbcl.log
>> 
>> Could someone test the following patch for lang/sbcl on powerpc ?
>> If it works, I will push it upstream.
>
> This fixes the first problem but after that I ran into an undefined
> symbol current_thread error.
>
> It looks like arm64 already handles this correctly in arm64-assem.S:114
> but a simple s/current_thread/__emutls_v.current_thread/ was not enough
> since it caused runtime errors later on.

oh.

direct TLS seems to not be expected for powerpc: Linux code enable it
only for some archs (and ppc isn't in the list). So follow the same way.

Does it correct the problem ? (and does #include "validate.h" is still
need ?)

Thanks.


diff /home/semarie/repos/openbsd/ports/mystuff/lang/sbcl
commit - 665eeac5c5d6c581db4785cba6292a0e5fc1bbf2
path + /home/semarie/repos/openbsd/ports/mystuff/lang/sbcl
blob - /dev/null
file + patches/patch-make-config_sh (mode 640)
--- /dev/null
+++ patches/patch-make-config_sh
@@ -0,0 +1,15 @@
+Index: make-config.sh
+--- make-config.sh.orig
 make-config.sh
+@@ -610,7 +610,10 @@ case "$sbcl_os" in
+ ;;
+ openbsd)
+ printf ' :openbsd' >> $ltf
+-printf ' :gcc-tls' >> $ltf
++case "$sbcl_arch" in
++  arm64 | x86 | x86-64)
++  printf ' :gcc-tls' >> $ltf
++esac
+ link_or_copy Config.$sbcl_arch-openbsd Config
+ ;;
+ netbsd)
blob - /dev/null
file + patches/patch-src_runtime_ppc-assem_S (mode 640)
--- /dev/null
+++ patches/patch-src_runtime_ppc-assem_S
@@ -0,0 +1,11 @@
+Index: src/runtime/ppc-assem.S
+--- src/runtime/ppc-assem.S.orig
 src/runtime/ppc-assem.S
+@@ -5,6 +5,7 @@
+ 
+ #include "sbcl.h"
+ #include "lispregs.h"
++#include "validate.h"
+ #include "genesis/closure.h"
+ #include "genesis/static-symbols.h"
+ #include "genesis/thread.h"


-- 
Sebastien Marie



Re: lang/sbcl on powerpc (call for testing) - Re: powerpc bulk build report

2023-11-23 Thread Tobias Heider
On Thu, Nov 23, 2023 at 11:02:22AM +0100, Sebastien Marie wrote:
> gkoeh...@openbsd.org writes:
> > http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/sbcl.log
> 
> Could someone test the following patch for lang/sbcl on powerpc ?
> If it works, I will push it upstream.

This fixes the first problem but after that I ran into an undefined
symbol current_thread error.

It looks like arm64 already handles this correctly in arm64-assem.S:114
but a simple s/current_thread/__emutls_v.current_thread/ was not enough
since it caused runtime errors later on.



lang/sbcl on powerpc (call for testing) - Re: powerpc bulk build report

2023-11-23 Thread Sebastien Marie
gkoeh...@openbsd.org writes:
> http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/sbcl.log

Could someone test the following patch for lang/sbcl on powerpc ?
If it works, I will push it upstream.


diff /home/semarie/repos/openbsd/ports/mystuff/lang/sbcl
commit - 665eeac5c5d6c581db4785cba6292a0e5fc1bbf2
path + /home/semarie/repos/openbsd/ports/mystuff/lang/sbcl
blob - /dev/null
file + patches/patch-src_runtime_ppc-assem_S (mode 640)
--- /dev/null
+++ patches/patch-src_runtime_ppc-assem_S
@@ -0,0 +1,11 @@
+Index: src/runtime/ppc-assem.S
+--- src/runtime/ppc-assem.S.orig
 src/runtime/ppc-assem.S
+@@ -5,6 +5,7 @@
+ 
+ #include "sbcl.h"
+ #include "lispregs.h"
++#include "validate.h"
+ #include "genesis/closure.h"
+ #include "genesis/static-symbols.h"
+ #include "genesis/thread.h"

Thanks.
-- 
Sebastien Marie



powerpc bulk build report

2023-11-22 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Oct 31 21:58:18 MDT 2023
Finished: Thu Nov 23 00:04:00 MST 2023
Duration: 22 Days 3 hours 6 minutes

Built using OpenBSD 7.4-current (GENERIC) #183: Tue Oct 31 01:55:04 MDT 2023

Built 9909 packages

Number of packages built each day:
Oct 31: 243
Nov 1: 3511
Nov 2: 3678
Nov 3: 457
Nov 4: 548
Nov 5: 360
Nov 6: 187
Nov 7: 412
Nov 8: 401
Nov 9: 112
Nov 10: 229
Nov 11: 216
Nov 12: 150
Nov 13: 201
Nov 14: 167
Nov 15: 488
Nov 16: 219
Nov 17: 451
Nov 18: 279
Nov 19: 375
Nov 20: 318
Nov 21: 493
Nov 22: 2626
Nov 23: 1



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-10-31/summary.log

Build failures: 26
http://build-failures.rhaalovely.net/powerpc/2023-10-31/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/devel/appstream.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/editors/neovim.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/emulators/desmume.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/games/gnukem.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/graphics/gegl04.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/lang/sbcl.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/sysutils/u-boot/rk356x.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/www/webkitgtk4.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/x11/gnustep/base.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-10-31/x11/qt6/qtquick3dphysics.log

Recurrent failures:
 failures/games/nblood.log
 failures/graphics/gegl04.log
 failures/graphics/openimageio.log
 failures/lang/compcert.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/lang/sbcl.log
 failures/www/kiwix/libkiwix.log
 failures/www/webkitgtk4.log
 failures/x11/gnustep/base.log

New failures:
+failures/sysutils/u-boot/rk356x.log

Resolved failures:
-failures/graphics/ruby-rmagick,ruby31.log

Packages newly built:
+archivers/draco
+cad/opencascade
+devel/libmaa
+devel/py-cachelib,python3
+devel/py-hatch-nodejs-version,python3
+devel/py-pydantic-compat,python3
+education/freedict/afr-deu
+education/freedict/afr-eng
+education/freedict/ara-eng
+education/freedict/bre-fra
+education/freedict/ces-eng
+education/freedict/ckb-kmr
+education/freedict/cym-eng
+education/freedict/dan-eng
+education/freedict/deu-bul
+education/freedict/deu-ell
+education/freedict/deu-eng
+education/freedict/deu-fin
+education/freedict/deu-fra
+education/freedict/deu-ind
+education/freedict/deu-ita
+education/freedict/deu-kur
+education/freedict/deu-nld
+education/freedict/deu-pol
+education/freedict/deu-por
+education/freedict/deu-rus
+education/freedict/deu-spa
+education/freedict/deu-swe
+education/freedict/deu-tur
+education/freedict/ell-bul
+education/freedict/ell-eng
+education/freedict/ell-fin
+education/freedict/ell-fra
+education/freedict/ell-ind
+education/freedict/ell-ita
+education/freedict/ell-jpn
+education/freedict/ell-lat
+education/freedict/ell-lit
+education/freedict/ell-nld
+education/freedict/ell-nor
+education/freedict/ell-pol
+education/freedict/ell-por
+education/freedict/ell-rus
+education/freedict/ell-spa
+education/freedict/ell-swe
+education/freedict/eng-afr
+education/freedict/eng-ara
+education/freedict/eng-bul
+education/freedict/eng-ces
+education/freedict/eng-cym
+education/freedict/eng-dan
+education/freedict/eng-deu
+education/freedict/eng-ell
+education/freedict/eng-fin
+education/freedict/eng-fra
+education/freedict/eng-gle
+education/freedict/eng-hin
+education/freedict/eng-hrv
+education/freedict/eng-hun
+education/freedict/eng-ind
+education/freedict/eng-ita
+education/freedict/eng-jpn
+education/freedict/eng-lat
+education/freedict/eng-lit
+education/freedict/eng-nld
+education/freedict/eng-nor

powerpc bulk build report

2023-09-12 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Aug 22 10:52:59 MDT 2023
Finished: Tue Sep 12 15:42:05 MDT 2023
Duration: 21 Days 4 hours 49 minutes

Built using OpenBSD 7.3-current (GENERIC) #156: Mon Aug 21 18:25:20 MDT 2023

Built 9863 packages

Number of packages built each day:
Aug 22: 786
Aug 23: 218
Aug 24: 230
Aug 25: 712
Aug 26: 409
Aug 27: 447
Aug 28: 512
Aug 29: 160
Aug 30: 211
Aug 31: 279
Sep 1: 3751
Sep 2: 137
Sep 3: 276
Sep 4: 422
Sep 5: 223
Sep 6: 316
Sep 7: 225
Sep 8: 298
Sep 9: 251
Sep 10: 309
Sep 11: 587
Sep 12: 2649



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-08-22/summary.log

Build failures: 29
http://build-failures.rhaalovely.net/powerpc/2023-08-22/comms/hylafax,a4.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/editors/neovim.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/games/gnukem.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/graphics/gegl04.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/graphics/imlib2.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/graphics/ruby-rmagick,ruby32.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/lang/parrot.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/lang/pcc/pcc.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/www/webkitgtk4,webkitgtk60.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/x11/gnome/mahjongg.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/x11/py-qt5,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-08-22/x11/qt6/qtquick3dphysics.log

Recurrent failures:
 failures/databases/galera.log
 failures/devel/clang-tools-extra.log
 failures/devel/py-thrift,python3.log
 failures/devel/qcoro.log
 failures/emulators/higan.log
 failures/emulators/retroarch.log
 failures/games/cataclysm-dda,no_x11.log
 failures/games/eduke32.log
 failures/games/hyperrogue.log
 failures/games/nblood.log
 failures/graphics/gegl04.log
 failures/graphics/imlib2.log
 failures/graphics/openimageio.log
 failures/lang/compcert.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/www/kiwix/libkiwix.log
 failures/www/webkitgtk4,webkitgtk60.log
 failures/x11/gnome/mahjongg.log
 failures/x11/jgmenu.log
 failures/x11/py-qt5,python3.log
 failures/x11/qt6/qtquick3dphysics.log

New failures:
+failures/comms/hylafax,a4.log
+failures/devel/abseil-cpp.log
+failures/editors/neovim.log
+failures/games/gnukem.log
+failures/graphics/ruby-rmagick,ruby32.log
+failures/lang/parrot.log
+failures/lang/pcc/pcc.log

Resolved failures:
-failures/graphics/ruby-rmagick,ruby31.log
-failures/net/bird/1,v6,-doc.log
-failures/www/nginx,-geoip2.log
-failures/x11/gnome/secrets.log

Packages newly built:
+devel/py-colorlog,python3
+fonts/iosevka-fonts/fixed-slab
+games/candycrisis
+games/crispy-doom
+games/luasteam
+graphics/ruby-rmagick,ruby31
+misc/libcpucycles
+net/bird/1,v6
+net/bird/1,v6,-main
+net/transmission-remote-gtk
+productivity/py-caldav,python3
+sysutils/u-boot/aarch64
+sysutils/u-boot/arm
+sysutils/u-boot/riscv64
+textproc/qxlsx,qt6
+textproc/tree-sitter
+textproc/unicode/cldr
+textproc/unicode/cldr,-annotations
+textproc/unicode/cldr,-main
+textproc/unicode/emoji
+textproc/unicode/ucd
+www/nginx
+www/nginx,-geoip2
+www/nginx,-headers_more
+www/nginx,-image_filter
+www/nginx,-ldap_auth
+www/nginx,-lua
+www/nginx,-mailproxy
+www/nginx,-main
+www/nginx,-naxsi
+www/nginx,-njs
+www/nginx,-perl
+www/nginx,-rtmp
+www/nginx,-securelink
+www/nginx,-stream
+www/nginx,-xslt
+x11/gnome/secrets

Packages not built this time:
-comms/hylafax
-comms/hylafax,a4
-comms/tkhylafax
-devel/abseil-cpp
-devel/mtxclient

powerpc bulk build report

2023-08-20 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Jul 30 19:33:19 MDT 2023
Finished: Sun Aug 20 21:16:53 MDT 2023
Duration: 21 Days 1 hours 44 minutes

Built using OpenBSD 7.3-current (GENERIC) #146: Sat Jul 29 16:50:48 MDT 2023

Built 9820 packages

Number of packages built each day:
Jul 30: 364
Jul 31: 541
Aug 1: 3508
Aug 2: 3263
Aug 3: 381
Aug 4: 357
Aug 5: 502
Aug 6: 205
Aug 7: 213
Aug 8: 223
Aug 9: 263
Aug 10: 150
Aug 11: 159
Aug 12: 429
Aug 13: 227
Aug 14: 411
Aug 15: 287
Aug 16: 356
Aug 17: 359
Aug 18: 406
Aug 19: 409
Aug 20: 2612



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-07-30/summary.log

Build failures: 26
http://build-failures.rhaalovely.net/powerpc/2023-07-30/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/games/cataclysm-dda,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/graphics/gegl04.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/graphics/imlib2.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/graphics/ruby-rmagick,ruby31.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/net/bird/1,v6,-doc.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/www/nginx,-geoip2.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/www/webkitgtk4,webkitgtk60.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/x11/gnome/mahjongg.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/x11/py-qt5,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-07-30/x11/qt6/qtquick3dphysics.log



powerpc bulk build report

2023-07-25 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Jul 13 10:12:12 MDT 2023
Finished: Tue Jul 25 02:14:19 MDT 2023
Duration: 11 Days 16 hours 2 minutes

Built using OpenBSD 7.3-current (GENERIC) #137: Tue Jul 11 17:20:40 MDT 2023

Built 8402 packages

Number of packages built each day:
Jul 13: 813
Jul 14: 663
Jul 15: 118
Jul 16: 948
Jul 17: 265
Jul 18: 251
Jul 19: 282
Jul 20: 648
Jul 21: 416
Jul 22: 329
Jul 23: 514
Jul 24: 2046
Jul 25: 1109



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-07-13/summary.log

Build failures: 14
http://build-failures.rhaalovely.net/powerpc/2023-07-13/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/devel/quirks.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/lang/mruby.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/mail/maildrop,-main.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/net/icinga/core2.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/sysutils/firmware/apple-boot.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/www/nginx,-geoip2.log
http://build-failures.rhaalovely.net/powerpc/2023-07-13/x11/gnome/librsvg.log

Recurrent failures:
 failures/databases/galera.log
 failures/devel/clang-tools-extra.log
 failures/devel/py-thrift,python3.log
 failures/devel/quirks.log
 failures/games/hyperrogue.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/www/kiwix/libkiwix.log

New failures:
+failures/lang/mruby.log
+failures/mail/maildrop,-main.log
+failures/net/icinga/core2.log
+failures/sysutils/firmware/apple-boot.log
+failures/www/nginx,-geoip2.log
+failures/x11/gnome/librsvg.log

Resolved failures:
-failures/archivers/arc.log
-failures/archivers/deco.log
-failures/archivers/freeze.log
-failures/archivers/macutil.log
-failures/archivers/par1cmdline.log
-failures/archivers/ripole.log
-failures/archivers/unarj.log
-failures/astro/ansiweather.log
-failures/astro/jday.log
-failures/audio/abcde.log
-failures/audio/alac_decoder.log
-failures/audio/checkmate.log
-failures/audio/disc-cover.log
-failures/audio/midish.log
-failures/audio/mp3cut.log
-failures/audio/p5-Audio-CD.log
-failures/audio/p5-Audio-Scan.log
-failures/audio/p5-Audio-Scrobbler.log
-failures/audio/p5-Audio-WMA.log
-failures/audio/p5-MP3-ID3v1Tag.log
-failures/audio/p5-MP3-Info.log
-failures/audio/p5-MP4-Info.log
-failures/audio/p5-Music-Audioscrobbler-MPD.log
-failures/audio/p5-Music-Audioscrobbler-Submit.log
-failures/audio/p5-Ogg-Vorbis-Header-PurePerl.log
-failures/audio/p5-Ogg-Vorbis-Header.log
-failures/audio/p5-cddb.log
-failures/audio/squeezecenter.log
-failures/audio/vlorb.log
-failures/benchmarks/netpipe.log
-failures/benchmarks/siege.log
-failures/biology/AcePerl,opt.log
-failures/biology/p5-Bio-DB-EMBL.log
-failures/biology/p5-Bio-Variation.log
-failures/books/AsteriskTFOT.log
-failures/books/clisp-hyperspec.log
-failures/books/diveintopython3.log
-failures/books/grokking-the-gimp.log
-failures/books/progit.log
-failures/books/wndw,-ar.log
-failures/cad/necpp.log
-failures/chinese/cless.log
-failures/comms/birda.log
-failures/comms/conserver,net.log
-failures/comms/lrzsz.log
-failures/comms/p5-Device-Gsm.log
-failures/comms/p5-Device-SerialPort.log
-failures/comms/picocom.log
-failures/comms/qpage.log
-failures/comms/sredird.log
-failures/comms/zmtx-zmrx.log
-failures/converters/html2text.log
-failures/converters/p5-CBOR-Free.log
-failures/converters/p5-Convert-Binary-C.log
-failures/converters/p5-Convert-PEM.log
-failures/converters/p5-Convert-UU.log
-failures/converters/p5-Date-Tolkien-Shire-Data.log
-failures/converters/p5-Encode-IMAPUTF7.log
-failures/converters/p5-JSON-XS-VersionOneAndTwo.log
-failures/converters/p5-Jcode.log
-failures/converters/p5-MARC-Record.log
-failures/converters/pflogx.log
-failures/converters/unsf.log
-failures/converters/xlhtml.log
-failures/databases/p5-AsciiDB-TagFile.log
-failures/databases/p5-CDB_File.log
-failures/databases/p5-Catalyst-Controller-Rose.log
-failures/databases/p5-Class-DBI-AsForm.log
-failures/databases/p5-Class-DBI-Pager.log
-failures/databases/p5-Class-DBI-Plugin-Type.log
-failures/databases/p5-Class-DBI-mysql.log
-failures/databases/p5-DBD-XBase.log
-failures/databases/p5-DBI-Shell.log
-failures/databases/p5-DBIx-Class-Cursor-Cached.log
-failures/databases/p5-DBIx-Class-DynamicDefault.log
-failures/databases/p5-DBIx-Class-Schema-Loader.log
-failures/databases/p5-DBIx-ContextualFetch.log
-failures/databases/p5-Data-Pageset.log

powerpc bulk build report

2023-07-10 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Jun 19 13:16:48 MDT 2023
Finished: Mon Jul 10 22:44:25 MDT 2023
Duration: 21 Days 9 hours 28 minutes

Built using OpenBSD 7.3-current (GENERIC) #129: Sat Jun 17 07:01:53 MDT 2023

Built 8739 packages

Number of packages built each day:
Jun 19: 769
Jun 20: 125
Jun 21: 265
Jun 22: 624
Jun 23: 437
Jun 24: 465
Jun 25: 339
Jun 26: 278
Jun 27: 123
Jun 28: 260
Jun 29: 180
Jun 30: 311
Jul 1: 1908
Jul 2: 464
Jul 3: 382
Jul 4: 240
Jul 5: 282
Jul 6: 250
Jul 7: 271
Jul 8: 357
Jul 9: 409
Jul 10: 1745



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-06-19/summary.log

Build failures: 931
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/arc.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/deco.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/freeze.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/macutil.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/par1cmdline.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/ripole.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/archivers/unarj.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/astro/ansiweather.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/astro/jday.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/abcde.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/alac_decoder.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/checkmate.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/disc-cover.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/midish.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/mp3cut.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Audio-CD.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Audio-Scan.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Audio-Scrobbler.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Audio-WMA.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-MP3-ID3v1Tag.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-MP3-Info.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-MP4-Info.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Music-Audioscrobbler-MPD.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Music-Audioscrobbler-Submit.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Ogg-Vorbis-Header-PurePerl.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-Ogg-Vorbis-Header.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/p5-cddb.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/squeezecenter.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/audio/vlorb.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/benchmarks/netpipe.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/benchmarks/siege.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/biology/AcePerl,opt.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/biology/p5-Bio-DB-EMBL.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/biology/p5-Bio-Variation.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/books/AsteriskTFOT.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/books/clisp-hyperspec.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/books/diveintopython3.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/books/grokking-the-gimp.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/books/progit.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/books/wndw,-ar.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/cad/necpp.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/chinese/cless.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/birda.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/conserver,net.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/lrzsz.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/p5-Device-Gsm.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/p5-Device-SerialPort.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/picocom.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/qpage.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/sredird.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/comms/zmtx-zmrx.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/converters/html2text.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/converters/p5-CBOR-Free.log
http://build-failures.rhaalovely.net/powerpc/2023-06-19/converters/p5-Convert-Binary-C.log

powerpc bulk build report

2023-06-16 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Thu May 25 18:04:39 MDT 2023
Finished: Fri Jun 16 05:51:13 MDT 2023
Duration: 21 Days 11 hours 47 minutes

Built using OpenBSD 7.3-current (GENERIC) #118: Tue May 23 15:48:48 MDT 2023

Built 9745 packages

Number of packages built each day:
May 25: 488
May 26: 372
May 27: 244
May 28: 598
May 29: 401
May 30: 513
May 31: 152
Jun 1: 4937
Jun 2: 126
Jun 3: 211
Jun 4: 237
Jun 5: 223
Jun 6: 220
Jun 7: 235
Jun 8: 359
Jun 9: 429
Jun 10: 352
Jun 11: 256
Jun 12: 278
Jun 13: 338
Jun 14: 319
Jun 15: 1715
Jun 16: 1255



Critical path missing pkgs:
http://build-failures.rhaalovely.net/powerpc/2023-05-25/summary.log

Build failures: 27
http://build-failures.rhaalovely.net/powerpc/2023-05-25/databases/galera.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/devel/qbs.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/editors/scite.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/games/cataclysm-dda.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/graphics/imlib2.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/graphics/ruby-rmagick,ruby32.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/multimedia/mkvtoolnix.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/telephony/asterisk/16.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/www/kiwix/libkiwix.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/www/webkitgtk4.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/x11/py-qt5,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/x11/qt6/qtmultimedia.log
http://build-failures.rhaalovely.net/powerpc/2023-05-25/x11/qt6/qtquick3dphysics.log

Recurrent failures:
 failures/devel/clang-tools-extra.log
 failures/devel/py-thrift,python3.log
 failures/devel/qbs.log
 failures/devel/qcoro.log
 failures/emulators/higan.log
 failures/emulators/retroarch.log
 failures/games/cataclysm-dda.log
 failures/games/eduke32.log
 failures/games/hyperrogue.log
 failures/games/nblood.log
 failures/graphics/imlib2.log
 failures/graphics/openimageio.log
 failures/lang/compcert.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/multimedia/mkvtoolnix.log
 failures/www/webkitgtk4.log
 failures/x11/gnome/secrets.log
 failures/x11/jgmenu.log
 failures/x11/qt6/qtmultimedia.log

New failures:
+failures/databases/galera.log
+failures/editors/scite.log
+failures/graphics/ruby-rmagick,ruby32.log
+failures/telephony/asterisk/16.log
+failures/www/kiwix/libkiwix.log
+failures/x11/py-qt5,python3.log
+failures/x11/qt6/qtquick3dphysics.log

Resolved failures:
-failures/editors/scintilla.log
-failures/graphics/gimp/stable.log
-failures/math/netcdf.log
-failures/print/psutils.log
-failures/www/nginx,-geoip2.log
-failures/x11/gnome/zenity.log

Packages newly built:
+archivers/libzim
+astro/kstars
+audio/disc-cover
+audio/solfege
+audio/speech-dispatcher
+books/tex-by-topic
+cad/lepton-eda
+cad/opensta
+cad/qflow
+chinese/libchewing
+chinese/libpinyin
+converters/p5-Sereal
+databases/postgresql-plr
+databases/ruby-trilogy,ruby31
+databases/ruby-trilogy,ruby32
+devel/asio
+devel/cudd
+devel/doc++
+devel/kainjow-mustache
+devel/kdiff3
+devel/kf5/baloo
+devel/kf5/frameworkintegration
+devel/kf5/kbookmarks
+devel/kf5/kcmutils
+devel/kf5/kdav
+devel/kf5/kdeclarative
+devel/kf5/kdelibs4support
+devel/kf5/khtml
+devel/kf5/kinit
+devel/kf5/kio
+devel/kf5/kmediaplayer
+devel/kf5/knewstuff
+devel/kf5/knotifications
+devel/kf5/knotifyconfig
+devel/kf5/kparts
+devel/kf5/kross
+devel/kf5/krunner
+devel/kf5/ktexteditor
+devel/kf5/ktextwidgets
+devel/kf5/kwallet
+devel/kf5/kxmlgui
+devel/kf5/kxmlrpcclient
+devel/kf5/plasma-framework
+devel/kf5/purpose
+devel/ruby-idn,ruby31
+devel/ruby-idn,ruby32
+devel/sdl2-pango
+devel/simulavr
+editors/calligra
+editors/calligraplan
+editors/gummi
+editors/kile
+editors/ktikz
+editors/scintilla

powerpc bulk build report

2023-05-23 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Thu May  4 14:38:53 MDT 2023
Finished: Tue May 23 05:28:59 MDT 2023
Duration: 18 Days 14 hours 50 minutes

Built using OpenBSD 7.3-current (GENERIC) #112: Wed May  3 04:48:58 MDT 2023

Built 9412 packages

Number of packages built each day:
May 4: 694
May 5: 359
May 6: 582
May 7: 430
May 8: 291
May 9: 316
May 10: 409
May 11: 103
May 12: 222
May 13: 275
May 14: 254
May 15: 315
May 16: 310
May 17: 353
May 18: 442
May 19: 273
May 20: 315
May 21: 400
May 22: 1273
May 23: 1796



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2023-05-04/summary.log

Build failures: 26
http://build-failures.rhaalovely.net/powerpc/2023-05-04/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/devel/qbs.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/editors/scintilla.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/games/cataclysm-dda.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/graphics/gimp/stable.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/graphics/imlib2.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/math/netcdf.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/multimedia/mkvtoolnix.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/print/psutils.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/www/nginx,-geoip2.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/www/webkitgtk4.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/x11/gnome/zenity.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-05-04/x11/qt6/qtmultimedia.log

Recurrent failures:
 failures/devel/clang-tools-extra.log
 failures/devel/py-thrift,python3.log
 failures/games/cataclysm-dda.log
 failures/games/hyperrogue.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/summary.log

New failures:
+failures/devel/qbs.log
+failures/devel/qcoro.log
+failures/editors/scintilla.log
+failures/emulators/higan.log
+failures/emulators/retroarch.log
+failures/games/eduke32.log
+failures/games/nblood.log
+failures/graphics/gimp/stable.log
+failures/graphics/imlib2.log
+failures/graphics/openimageio.log
+failures/lang/compcert.log
+failures/math/netcdf.log
+failures/multimedia/mkvtoolnix.log
+failures/print/psutils.log
+failures/www/nginx,-geoip2.log
+failures/www/webkitgtk4.log
+failures/x11/gnome/secrets.log
+failures/x11/gnome/zenity.log
+failures/x11/jgmenu.log
+failures/x11/qt6/qtmultimedia.log

Resolved failures:
-failures/sysutils/firmware/apple-boot.log
-failures/x11/gnome/librsvg.log

Packages newly built:
+archivers/py-compressed_rtf,python3
+archivers/quazip
+astro/calcmysky
+astro/celestia
+astro/siril
+audio/ario
+audio/audacious/player
+audio/audacious/plugins
+audio/calf
+audio/cantata
+audio/clementine
+audio/cozy
+audio/d11amp
+audio/deadbeef
+audio/espeak
+audio/gqmpeg
+audio/gradio
+audio/gsound
+audio/hydrogen
+audio/libcanberra
+audio/libcanberra,-gtk3
+audio/libcanberra,-main
+audio/liblastfm
+audio/lilv
+audio/lmms
+audio/lv2
+audio/mp3cddb
+audio/mp3info
+audio/mp3splt-gtk
+audio/mscore
+audio/mumble
+audio/mumble,-main
+audio/mumble,-server
+audio/musique
+audio/p5-gnupod
+audio/pavucontrol
+audio/pcaudiolib
+audio/pithos
+audio/potamus
+audio/pulseaudio
+audio/qsynth
+audio/quodlibet
+audio/rgain
+audio/sonata
+audio/sratom
+audio/tagtool
+audio/timidity,gtk2
+benchmarks/netperf-wrapper
+benchmarks/netperf-wrapper,
+benchmarks/netperf-wrapper,,-main
+benchmarks/netperf-wrapper,-main
+cad/coil64
+cad/fritzing
+cad/geda-gaf
+cad/gerbv
+cad/gtkwave
+cad/librecad
+cad/pcb
+cad/pcb2gcode
+cad/qelectrotech
+cad/xnecview
+cad/xtrkcad
+cad/yosys
+comms/amtterm
+comms/amtterm,-main
+comms/amtterm,-term
+comms/gpsk31
+comms/minimodem
+comms/sigrok/libsigrok
+comms/sigrok/pulseview
+comms/sigrok/sigrok-cli
+comms/xastir
+comms/xdx
+comms/xlog
+converters/libpst
+converters/libpst,-main
+converters/libpst,-python

powerpc bulk build report

2023-05-01 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Apr 19 22:03:25 MDT 2023
Finished: Mon May  1 09:40:06 MDT 2023
Duration: 11 Days 11 hours 37 minutes

Built using OpenBSD 7.3-current (GENERIC) #106: Tue Apr 18 04:42:17 MDT 2023

Built 8468 packages

Number of packages built each day:
Apr 19: 175
Apr 20: 1016
Apr 21: 624
Apr 22: 593
Apr 23: 436
Apr 24: 265
Apr 25: 294
Apr 26: 376
Apr 27: 316
Apr 28: 635
Apr 29: 450
Apr 30: 568
May 1: 2720



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2023-04-19/summary.log

Build failures: 8
http://build-failures.rhaalovely.net/powerpc/2023-04-19/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/games/cataclysm-dda.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/sysutils/firmware/apple-boot.log
http://build-failures.rhaalovely.net/powerpc/2023-04-19/x11/gnome/librsvg.log

Recurrent failures:
 failures/devel/clang-tools-extra.log
 failures/devel/py-thrift,python3.log
 failures/games/cataclysm-dda.log
 failures/games/hyperrogue.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/summary.log

New failures:
+failures/sysutils/firmware/apple-boot.log
+failures/x11/gnome/librsvg.log

Resolved failures:
-failures/audio/audacity.log
-failures/devel/qcoro.log
-failures/emulators/higan.log
-failures/emulators/qemu,-ga.log
-failures/emulators/retroarch.log
-failures/games/eduke32.log
-failures/games/nblood.log
-failures/graphics/birdfont.log
-failures/graphics/imlib2.log
-failures/graphics/openimageio.log
-failures/multimedia/mkvtoolnix.log
-failures/x11/gnome/secrets.log
-failures/x11/jgmenu.log
-failures/x11/py-qt5,python3.log
-failures/x11/qt6/qtmultimedia.log

Packages newly built:
+converters/p5-Convert-NLS_DATE_FORMAT
+devel/p5-DateTime-Format-Oracle
+devel/pre-commit
+devel/py-calver,python3
+devel/py-cfgv,python3
+devel/py-identify,python3
+devel/py-immutabledict,python3
+devel/py-trove-classifiers,python3
+security/c2sp-testvectors

Packages not built this time:
-archivers/quazip
-astro/calcmysky
-astro/celestia
-astro/kstars
-astro/siril
-audio/ario
-audio/audacious/player
-audio/audacious/plugins
-audio/calf
-audio/cantata
-audio/clementine
-audio/cozy
-audio/d11amp
-audio/deadbeef
-audio/disc-cover
-audio/easytag
-audio/espeak
-audio/gmpc
-audio/gmpc-plugins
-audio/gqmpeg
-audio/gradio
-audio/grip
-audio/gsound
-audio/hydrogen
-audio/libcanberra
-audio/libcanberra,-gtk3
-audio/libcanberra,-main
-audio/liblastfm
-audio/lilv
-audio/lmms
-audio/lv2
-audio/mp3cddb
-audio/mp3info
-audio/mp3splt-gtk
-audio/mscore
-audio/mumble
-audio/mumble,-main
-audio/mumble,-server
-audio/musique
-audio/p5-gnupod
-audio/parlatype
-audio/pavucontrol
-audio/pcaudiolib
-audio/pithos
-audio/potamus
-audio/pulseaudio
-audio/qsynth
-audio/quodlibet
-audio/rgain
-audio/ruby-taglib,ruby30
-audio/ruby-vorbis_comment,ruby30
-audio/solfege
-audio/sonata
-audio/speech-dispatcher
-audio/sratom
-audio/tagtool
-audio/timidity,gtk2
-benchmarks/netperf-wrapper
-benchmarks/netperf-wrapper,
-benchmarks/netperf-wrapper,,-main
-benchmarks/netperf-wrapper,-main
-benchmarks/tsung
-cad/coil64
-cad/fritzing
-cad/geda-gaf
-cad/gerbv
-cad/gtkwave
-cad/lepton-eda
-cad/librecad
-cad/opensta
-cad/pcb
-cad/pcb2gcode
-cad/qelectrotech
-cad/qflow
-cad/xnecview
-cad/xtrkcad
-cad/yosys
-comms/amtterm
-comms/amtterm,-main
-comms/amtterm,-term
-comms/chirp
-comms/gpsk31
-comms/minimodem
-comms/pterm
-comms/sigrok/libsigrok
-comms/sigrok/pulseview
-comms/sigrok/sigrok-cli
-comms/xastir
-comms/xdx
-comms/xlog
-converters/libpst
-converters/libpst,-main
-converters/libpst,-python
-converters/wv
-databases/evolution-data-server
-databases/kdb
-databases/pgmodeler
-databases/recoll
-databases/recoll,-gui
-databases/recoll,-main
-databases/ruby-amalgalite,ruby30
-databases/ruby-hiera-eyaml,ruby30
-databases/ruby-hiera-eyaml-gpg,ruby30
-databases/ruby-hiera-eyaml-gpg,ruby31
-databases/ruby-hiera-eyaml-gpg,ruby32
-databases/ruby-hiera-file,ruby30
-databases/ruby-hiera3,ruby30
-databases/ruby-ldap,ruby30
-databases/ruby-mysql,ruby30
-databases/ruby-mysql2,ruby30
-databases/ruby-pg,ruby30
-databases/ruby-sequel,ruby30
-databases/ruby-sequel_pg,ruby30
-databases/ruby-sqlite3,ruby30
-databases/ruby-tiny_tds,ruby30
-devel/appstream-glib
-devel/bamf
-devel/codeblocks
-devel/cudd
-devel/distcc
-devel/distcc,-gtk
-devel/distcc,-main
-devel/distcc,-server
-devel/doxygen
-devel/doxygen-gui
-devel/dune,-private
-devel/frama-c
-devel/geany
-devel/giggle
-devel/goffice
-devel/gwenhywfar
-devel/kdiff3
-devel/kf5/attica
-devel/kf5/baloo
-devel/kf5/bluez-qt
-devel/kf5/breeze-icons
-devel/kf5/extra-cmake-modules

powerpc bulk build report

2023-04-18 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Mar 24 21:31:25 MDT 2023
Finished: Tue Apr 18 03:57:26 MDT 2023
Duration: 24 Days 6 hours 26 minutes

Built using OpenBSD 7.3 (GENERIC) #99: Wed Mar 22 13:47:00 MDT 2023

Built 9971 packages

Number of packages built each day:
Mar 24: 172
Mar 25: 709
Mar 26: 252
Mar 27: 552
Mar 28: 167
Mar 29: 330
Mar 30: 54
Mar 31: 255
Apr 1: 5764
Apr 2: 68
Apr 3: 141
Apr 4: 410
Apr 5: 223
Apr 6: 223
Apr 7: 191
Apr 8: 245
Apr 9: 215
Apr 10: 373
Apr 11: 326
Apr 12: 451
Apr 13: 487
Apr 14: 268
Apr 15: 274
Apr 16: 304
Apr 17: 1499
Apr 18: 1470



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2023-03-24/summary.log

Build failures: 21
http://build-failures.rhaalovely.net/powerpc/2023-03-24/audio/audacity.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/devel/py-thrift,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/emulators/qemu,-ga.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/games/cataclysm-dda.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/graphics/imlib2.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/multimedia/mkvtoolnix.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/x11/jgmenu.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/x11/py-qt5,python3.log
http://build-failures.rhaalovely.net/powerpc/2023-03-24/x11/qt6/qtmultimedia.log



powerpc bulk build report

2023-02-25 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sat Feb  4 20:47:58 MST 2023
Finished: Sat Feb 25 17:05:39 MST 2023
Duration: 20 Days 20 hours 18 minutes

Built using OpenBSD 7.2-current (GENERIC) #79: Sat Feb  4 07:20:40 MST 2023

Built 9114 packages

Number of packages built each day:
Feb 4: 287
Feb 5: 578
Feb 6: 338
Feb 7: 543
Feb 8: 409
Feb 9: 298
Feb 10: 95
Feb 11: 179
Feb 12: 308
Feb 13: 77
Feb 14: 98
Feb 15: 213
Feb 16: 233
Feb 17: 201
Feb 18: 349
Feb 19: 464
Feb 20: 273
Feb 21: 301
Feb 22: 351
Feb 23: 357
Feb 24: 636
Feb 25: 2526



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2023-02-04/summary.log

Build failures: 857
http://build-failures.rhaalovely.net/powerpc/2023-02-04/audio/aqualung.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/audio/mac.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/audio/navidrome.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/audio/ncspot.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/audio/soundtracker.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/benchmarks/hyperfine.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/kicad-share/footprints.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/kicad-share/packages3D.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/kicad-share/symbols.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/kicad-share/templates.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/kicad.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/oce.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/converters/unoconv.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/architect.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/db/v4,-java.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/influxdb.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/jxplorer.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/liquibase.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/mongo-tools.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/mongodb/36.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/mongodb/44.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/databases/victoriametrics.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/afl++.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/afl.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/ald.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/alex.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-ailment.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-angr.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-archinfo.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-claripy.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-cle.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-pyvex.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/py-z3-solver.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/angr/vex.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/apache-ant.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/apktool.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/arm-compute-library.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/cabal-install.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/cargo-audit.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/cbindgen.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/cil.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/coccinelle.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/cpphs.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/cutter.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/darcs.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/dex2jar.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/difftastic.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/dnspy.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/dtools.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/dub,dmd.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/elfcat.log
http://build-failures.rhaalovely.net/powerpc/2023-02-04/devel/fasm.log

powerpc bulk build report

2022-11-28 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Oct 24 12:56:29 MDT 2022
Finished: Mon Nov 28 23:08:40 MST 2022
Duration: 35 Days 11 hours 12 minutes

Built using OpenBSD 7.2-current (GENERIC) #33: Sat Oct 22 22:24:56 MDT 2022

Built 9671 packages

Number of packages built each day:
Oct 24: 641
Oct 25: 340
Oct 26: 373
Oct 27: 525
Oct 28: 431
Oct 29: 321
Oct 30: 32
Oct 31: 133
Nov 1: 1768
Nov 2: 3913
Nov 3: 131
Nov 4: 205
Nov 5: 207
Nov 6: 170
Nov 7: 219
Nov 8: 251
Nov 9: 11
Nov 10: 2
Nov 11: 9
Nov 12: 9
Nov 13: 8
Nov 14: 65
Nov 15: 432
Nov 16: 356
Nov 17: 207
Nov 18: 231
Nov 19: 365
Nov 20: 862
Nov 21: 1849
Nov 22: 277
Nov 23: 83
Nov 24: 92
Nov 25: 90
Nov 26: 76
Nov 27: 77
Nov 28: 89



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-10-24/summary.log

Build failures: 16
http://build-failures.rhaalovely.net/powerpc/2022-10-24/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/lang/sbcl.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/multimedia/mkvtoolnix.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2022-10-24/x11/py-qt5,python3.log

Recurrent failures:
 failures/devel/abseil-cpp.log
 failures/devel/clang-tools-extra.log
 failures/devel/qcoro.log
 failures/emulators/higan.log
 failures/emulators/retroarch.log
 failures/graphics/birdfont.log
 failures/graphics/openimageio.log
 failures/lang/gambit.log
 failures/lang/racket-minimal.log
 failures/multimedia/mkvtoolnix.log
 failures/summary.log
 failures/x11/gnome/secrets.log

New failures:
+failures/lang/sbcl.log

Resolved failures:
-failures/devel/coccinelle.log
-failures/lang/pcc/pcc-libs.log

Packages newly built:
+archivers/py-zopfli,python3
+astro/calcmysky
+devel/indi
+devel/indi,-libs
+devel/indi,-main
+devel/py-matrix-common,python3-
+devel/py-test-flake8,python3
+devel/py-test-isort,python3
+devel/py-timelib,python3
+devel/py-validators,python3
+devel/seergdb
+emulators/libretro-nestopia
+graphics/py-termcolor,python3
+lang/pcc/pcc
+lang/pcc/pcc-libs
+net/py-gevent-websocket,python3
+print/py-fonttools,python3
+print/py-pydyf,python3
+print/weasyprint,python3
+security/ruby-rbnacl
+sysutils/rset
+telephony/asterisk/20
+telephony/asterisk/20,-calendar
+telephony/asterisk/20,-http_post
+telephony/asterisk/20,-kqueue
+telephony/asterisk/20,-ldap
+telephony/asterisk/20,-lua
+telephony/asterisk/20,-main
+telephony/asterisk/20,-odbc
+telephony/asterisk/20,-pgsql
+telephony/asterisk/20,-snmp
+telephony/asterisk/20,-speex
+telephony/asterisk/20,-tds
+telephony/asterisk/20,-vm_imap
+telephony/asterisk/20,-vm_odbc
+textproc/libgrapheme
+textproc/py-cssselect2,python3
+textproc/py-pyphen,python3
+textproc/py-tinycss2,python3
+textproc/qxlsx
+www/py-requests-file,python3
+x11/copyq
+x11/dragon-drop

Packages not built this time:
-cad/qcad
-emulators/nestopia,-libretro
-emulators/nestopia,-main
-lang/sbcl
-lang/sbcl,threads
-sysutils/cl-launch
-x11/stumpwm



powerpc bulk build report

2022-10-23 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Sep 28 19:52:53 MDT 2022
Finished: Sun Oct 23 01:45:02 MDT 2022
Duration: 24 Days 5 hours 52 minutes

Built using OpenBSD 7.2 (GENERIC) #23: Tue Sep 27 17:36:38 MDT 2022

Built 9650 packages

Number of packages built each day:
Sep 28: 370
Sep 29: 373
Sep 30: 74
Oct 1: 3495
Oct 2: 3485
Oct 3: 417
Oct 4: 339
Oct 5: 213
Oct 6: 305
Oct 7: 113
Oct 8: 217
Oct 9: 249
Oct 10: 248
Oct 11: 267
Oct 12: 170
Oct 13: 586
Oct 14: 396
Oct 15: 234
Oct 16: 168
Oct 17: 203
Oct 18: 208
Oct 19: 234
Oct 20: 235
Oct 21: 405
Oct 22: 1989
Oct 23: 760


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-09-28/summary.log

Build failures: 17
http://build-failures.rhaalovely.net/powerpc/2022-09-28/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/devel/coccinelle.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/lang/racket-minimal.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/multimedia/mkvtoolnix.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2022-09-28/x11/py-qt5,python3.log

Recurrent failures:
 failures/devel/abseil-cpp.log
 failures/lang/pcc/pcc-libs.log
 failures/summary.log
 failures/x11/py-qt5,python3.log

New failures:
+failures/devel/clang-tools-extra.log
+failures/devel/coccinelle.log
+failures/devel/qcoro.log
+failures/emulators/higan.log
+failures/emulators/retroarch.log
+failures/games/eduke32.log
+failures/games/hyperrogue.log
+failures/games/nblood.log
+failures/graphics/birdfont.log
+failures/graphics/openimageio.log
+failures/lang/gambit.log
+failures/lang/racket-minimal.log
+failures/multimedia/mkvtoolnix.log
+failures/x11/gnome/secrets.log

Resolved failures:
-failures/games/mvdsv.log
-failures/graphics/webp-pixbuf-loader.log
-failures/x11/qt6/qtlottie.log

Packages newly built:
+archivers/deco
+archivers/p7zip
+archivers/p7zip,-main
+archivers/p7zip,-rar
+archivers/pecl-lzf,php74
+archivers/pecl-lzf,php81
+archivers/pecl-rar,php74
+astro/celestia
+astro/gnuastro
+astro/kstars
+astro/siril
+astro/wcslib
+astro/xephem
+audio/adplay
+audio/adplug
+audio/audacious/plugins
+audio/audacity
+audio/calf
+audio/cantata
+audio/clementine
+audio/cozy
+audio/cplay
+audio/curseradio
+audio/deadbeef
+audio/gogglesmm
+audio/hydrogen
+audio/liblastfm
+audio/libopenmpt
+audio/lmms
+audio/mpd
+audio/mumble
+audio/mumble,-main
+audio/mumble,-server
+audio/musikcube
+audio/musique
+audio/ncmpcpp
+audio/ocp
+audio/pykaraoke
+audio/quodlibet
+audio/rhythmbox
+audio/ruby-taglib,ruby30
+audio/ruby-vorbis_comment,ruby30
+audio/siren
+audio/solfege
+audio/xmcd
+audio/xmms2
+audio/xmms2-scrobbler
+audio/zmusic
+audio/zynaddsubfx
+benchmarks/glmark2
+benchmarks/tsung
+biology/emboss
+cad/abc
+cad/coil64
+cad/fritzing
+cad/geda-gaf
+cad/gnucap
+cad/lepton-eda
+cad/librecad
+cad/ngspice/libngspice
+cad/ngspice/ngspice
+cad/opensta
+cad/pcb
+cad/pcb2gcode
+cad/qelectrotech
+cad/qflow
+cad/yosys
+chinese/libpinyin
+comms/chirp
+comms/conserver,ipmi
+comms/conserver,ipmi,net
+comms/fldigi
+comms/hamlib
+comms/hamlib,
+comms/hamlib,,-main
+comms/hamlib,,-python
+comms/hamlib,,-tcl
+comms/hamlib,-main
+comms/hamlib,-python
+comms/hamlib,-tcl
+comms/sigrok/libsigrok
+comms/sigrok/pulseview
+comms/sigrok/sigrok-cli
+comms/tlf
+comms/wammu
+comms/xastir
+comms/xlog
+converters/ruby-multi_json,ruby27
+converters/wv2
+databases/kdb
+databases/kyotocabinet
+databases/openldap,aci
+databases/openldap,aci,-main
+databases/openldap,aci,-server
+databases/openldap,aci,gssapi
+databases/openldap,aci,gssapi,-main
+databases/openldap,aci,gssapi,-server
+databases/openldap,gssapi
+databases/openldap,gssapi,-main
+databases/openldap,gssapi,-server
+databases/pecl-redis,php74
+databases/pecl-redis,php81
+databases/pg_stats_reporter
+databases/pgadmin3
+databases/pgfouine
+databases/pgmodeler
+databases/pkglocatedb
+databases/ports-readmes
+databases/ports-readmes-dancer
+databases/postgresql,-pg_upgrade
+databases/postgresql-plr
+databases/postgresql-previous
+databases/recoll
+databases/recoll,-gui

Re: powerpc bulk build report

2022-09-22 Thread George Koehler
On Thu, 22 Sep 2022 08:24:48 -0600 (MDT)
gkoeh...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Tue Aug 30 14:54:38 MDT 2022
> Finished: Thu Sep 22 08:24:16 MDT 2022
> Duration: 22 Days 17 hours 30 minutes

This bulk is not finished.  I stopped the bulk (with
/usr/ports/logs/powerpc/stop) and restarted it to fix a problem; but
dpb(1) did exit 0, so my script mistook it as a finished bulk and
mailed this report.

Beware that the "Resolved failures" in this report are not really
resolved; the bulk has not yet reached those packages, and I expect
the packages to fail again when reached.

The restarted bulk has fixed x11/qt6/qtlottie.

> Built using OpenBSD 7.2-beta (GENERIC) #14: Sat Aug 27 17:39:17 MDT 2022
> 
> Built 8158 packages
> 
> Number of packages built each day:
> Aug 30: 389
> Aug 31: 382
> Sep 2: 151
> Sep 3: 417
> Sep 4: 412
> Sep 5: 206
> Sep 6: 108
> Sep 7: 127
> Sep 8: 247
> Sep 9: 385
> Sep 10: 520
> Sep 11: 293
> Sep 12: 354
> Sep 13: 701
> Sep 14: 584
> Sep 15: 1772
> Sep 16: 969
> Sep 17: 26
> Sep 18: 48
> Sep 19: 67
> Sep 20: 35
> Sep 21: 55
> Sep 22: 2
> 
> 
> 
> Critical path missing pkgs: 
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/summary.log
> 
> Build failures: 6
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/devel/abseil-cpp.log
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/games/mvdsv.log
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/graphics/webp-pixbuf-loader.log
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/lang/pcc/pcc-libs.log
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/x11/py-qt5,python3.log
> http://build-failures.rhaalovely.net/powerpc/2022-08-30/x11/qt6/qtlottie.log
> 
> Recurrent failures:
>  failures/devel/abseil-cpp.log
>  failures/lang/pcc/pcc-libs.log
>  failures/summary.log
> 
> New failures:
> +failures/games/mvdsv.log
> +failures/graphics/webp-pixbuf-loader.log
> +failures/x11/py-qt5,python3.log
> +failures/x11/qt6/qtlottie.log
> 
> Resolved failures:
> -failures/devel/qcoro.log
> -failures/emulators/higan.log
> -failures/emulators/retroarch.log
> -failures/games/eduke32.log
> -failures/games/hyperrogue.log
> -failures/games/nblood.log
> -failures/geo/qgis.log
> -failures/graphics/birdfont.log
> -failures/graphics/openimageio.log
> -failures/lang/chicken/bootstrap.log
> -failures/lang/gambit.log
> -failures/multimedia/mkvtoolnix.log
> -failures/telephony/asterisk-g729.log
> -failures/x11/gnome/secrets.log
> 
> Packages newly built:
> +converters/ruby-oj
> +devel/binutils
> +devel/py-editables,python3
> +devel/py-executing,python3
> +devel/py-jaraco-path,python3
> +devel/py-littleutils,python3
> +devel/py-parameterized,python3
> +devel/py-path,python3
> +devel/py-poetry-core,python3
> +devel/py-pure_eval,python3
> +devel/py-typeguard,python3
> +devel/py2-parsing
> +graphics/kplot
> +graphics/librtprocess
> +graphics/ruby-chunky_png
> +graphics/ruby-chunky_png,ruby31
> +graphics/ruby-rqrcode
> +net/py-websockets,python3
> +sysutils/py-command_runner,python3
> +sysutils/py-distlib,python3
> +sysutils/py-filelock,python3
> +sysutils/vifm
> +textproc/py-ini2toml,python3
> +x11/kde-applications/ksanecore
> +x11/qt6/qtcharts
> +x11/qt6/qtconnectivity
> +x11/qt6/qtdatavis3d
> +x11/qt6/qtnetworkauth
> +x11/qt6/qtremoteobjects
> +x11/qt6/qtscxml
> +x11/qt6/qtsensors
> +x11/qt6/qtvirtualkeyboard
> +x11/qt6/qtwayland
> 
> Packages not built this time:
> -archivers/deco
> -archivers/p7zip
> -archivers/p7zip,-main
> -archivers/p7zip,-rar
> -archivers/pecl-lzf,php74
> -archivers/pecl-lzf,php81
> -archivers/pecl-rar,php74
> -astro/celestia
> -astro/gnuastro
> -astro/kstars
> -astro/wcslib
> -astro/xephem
> -audio/adplay
> -audio/adplug
> -audio/audacious/plugins
> -audio/audacity
> -audio/calf
> -audio/cantata
> -audio/clementine
> -audio/cozy
> -audio/cplay
> -audio/curseradio
> -audio/deadbeef
> -audio/gogglesmm
> -audio/hydrogen
> -audio/liblastfm
> -audio/libopenmpt
> -audio/lmms
> -audio/mpd
> -audio/mumble
> -audio/mumble,-main
> -audio/mumble,-server
> -audio/musikcube
> -audio/musique
> -audio/ncmpcpp
> -audio/ocp
> -audio/picard
> -audio/puddletag
> -audio/pykaraoke
> -audio/quodlibet
> -audio/rhythmbox
> -audio/ruby-taglib,ruby30
> -audio/ruby-vorbis_comment,ruby30
> -audio/siren
> -audio/solfege
> -audio/xmcd
> -audio/xmms2
> -audio/xmms2-scrobbler
> -audio/zmusic
> -benchmarks/glmark2
> -benchmarks/netperf-wrapper,,-gui
> -benchmarks/netperf-wrapper,-gui
> -benchmarks/tsung
> -biology/emboss
> -cad/abc
> -cad/dxf2gcode
> -cad/fritzing
> -cad/geda-gaf
> -cad/gnucap
> -cad/lepton-eda
> -cad/librecad
> -cad/ngspice/libngspice
> -cad/ngspice/ngspice
> -cad/openscad
> -cad/opensta
> -cad/pcb
> -cad/pcb2gcode
> -cad/qelectrotech
> -cad/qflow
> -cad/yosys
> -chinese/libpinyin
> -comms/chirp
> -comms/conserver,ipmi
> -comms/conserver,ipmi,net
> -comms/fldigi
> -comms/gnuradio
> -comms/hamlib
> -comms/hamlib,
> -comms/hamlib,,-main
> -comms/hamlib,,-python
> 

powerpc bulk build report

2022-09-22 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Aug 30 14:54:38 MDT 2022
Finished: Thu Sep 22 08:24:16 MDT 2022
Duration: 22 Days 17 hours 30 minutes

Built using OpenBSD 7.2-beta (GENERIC) #14: Sat Aug 27 17:39:17 MDT 2022

Built 8158 packages

Number of packages built each day:
Aug 30: 389
Aug 31: 382
Sep 2: 151
Sep 3: 417
Sep 4: 412
Sep 5: 206
Sep 6: 108
Sep 7: 127
Sep 8: 247
Sep 9: 385
Sep 10: 520
Sep 11: 293
Sep 12: 354
Sep 13: 701
Sep 14: 584
Sep 15: 1772
Sep 16: 969
Sep 17: 26
Sep 18: 48
Sep 19: 67
Sep 20: 35
Sep 21: 55
Sep 22: 2



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-08-30/summary.log

Build failures: 6
http://build-failures.rhaalovely.net/powerpc/2022-08-30/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-08-30/games/mvdsv.log
http://build-failures.rhaalovely.net/powerpc/2022-08-30/graphics/webp-pixbuf-loader.log
http://build-failures.rhaalovely.net/powerpc/2022-08-30/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-08-30/x11/py-qt5,python3.log
http://build-failures.rhaalovely.net/powerpc/2022-08-30/x11/qt6/qtlottie.log

Recurrent failures:
 failures/devel/abseil-cpp.log
 failures/lang/pcc/pcc-libs.log
 failures/summary.log

New failures:
+failures/games/mvdsv.log
+failures/graphics/webp-pixbuf-loader.log
+failures/x11/py-qt5,python3.log
+failures/x11/qt6/qtlottie.log

Resolved failures:
-failures/devel/qcoro.log
-failures/emulators/higan.log
-failures/emulators/retroarch.log
-failures/games/eduke32.log
-failures/games/hyperrogue.log
-failures/games/nblood.log
-failures/geo/qgis.log
-failures/graphics/birdfont.log
-failures/graphics/openimageio.log
-failures/lang/chicken/bootstrap.log
-failures/lang/gambit.log
-failures/multimedia/mkvtoolnix.log
-failures/telephony/asterisk-g729.log
-failures/x11/gnome/secrets.log

Packages newly built:
+converters/ruby-oj
+devel/binutils
+devel/py-editables,python3
+devel/py-executing,python3
+devel/py-jaraco-path,python3
+devel/py-littleutils,python3
+devel/py-parameterized,python3
+devel/py-path,python3
+devel/py-poetry-core,python3
+devel/py-pure_eval,python3
+devel/py-typeguard,python3
+devel/py2-parsing
+graphics/kplot
+graphics/librtprocess
+graphics/ruby-chunky_png
+graphics/ruby-chunky_png,ruby31
+graphics/ruby-rqrcode
+net/py-websockets,python3
+sysutils/py-command_runner,python3
+sysutils/py-distlib,python3
+sysutils/py-filelock,python3
+sysutils/vifm
+textproc/py-ini2toml,python3
+x11/kde-applications/ksanecore
+x11/qt6/qtcharts
+x11/qt6/qtconnectivity
+x11/qt6/qtdatavis3d
+x11/qt6/qtnetworkauth
+x11/qt6/qtremoteobjects
+x11/qt6/qtscxml
+x11/qt6/qtsensors
+x11/qt6/qtvirtualkeyboard
+x11/qt6/qtwayland

Packages not built this time:
-archivers/deco
-archivers/p7zip
-archivers/p7zip,-main
-archivers/p7zip,-rar
-archivers/pecl-lzf,php74
-archivers/pecl-lzf,php81
-archivers/pecl-rar,php74
-astro/celestia
-astro/gnuastro
-astro/kstars
-astro/wcslib
-astro/xephem
-audio/adplay
-audio/adplug
-audio/audacious/plugins
-audio/audacity
-audio/calf
-audio/cantata
-audio/clementine
-audio/cozy
-audio/cplay
-audio/curseradio
-audio/deadbeef
-audio/gogglesmm
-audio/hydrogen
-audio/liblastfm
-audio/libopenmpt
-audio/lmms
-audio/mpd
-audio/mumble
-audio/mumble,-main
-audio/mumble,-server
-audio/musikcube
-audio/musique
-audio/ncmpcpp
-audio/ocp
-audio/picard
-audio/puddletag
-audio/pykaraoke
-audio/quodlibet
-audio/rhythmbox
-audio/ruby-taglib,ruby30
-audio/ruby-vorbis_comment,ruby30
-audio/siren
-audio/solfege
-audio/xmcd
-audio/xmms2
-audio/xmms2-scrobbler
-audio/zmusic
-benchmarks/glmark2
-benchmarks/netperf-wrapper,,-gui
-benchmarks/netperf-wrapper,-gui
-benchmarks/tsung
-biology/emboss
-cad/abc
-cad/dxf2gcode
-cad/fritzing
-cad/geda-gaf
-cad/gnucap
-cad/lepton-eda
-cad/librecad
-cad/ngspice/libngspice
-cad/ngspice/ngspice
-cad/openscad
-cad/opensta
-cad/pcb
-cad/pcb2gcode
-cad/qelectrotech
-cad/qflow
-cad/yosys
-chinese/libpinyin
-comms/chirp
-comms/conserver,ipmi
-comms/conserver,ipmi,net
-comms/fldigi
-comms/gnuradio
-comms/hamlib
-comms/hamlib,
-comms/hamlib,,-main
-comms/hamlib,,-python
-comms/hamlib,,-tcl
-comms/hamlib,-main
-comms/hamlib,-python
-comms/hamlib,-tcl
-comms/sigrok/libsigrok
-comms/sigrok/pulseview
-comms/sigrok/sigrok-cli
-comms/tlf
-comms/wammu
-comms/xastir
-comms/xlog
-converters/ruby-multi_json,ruby27
-converters/wv2
-databases/kdb
-databases/kyotocabinet
-databases/openldap,aci
-databases/openldap,aci,-main
-databases/openldap,aci,-server
-databases/openldap,aci,gssapi
-databases/openldap,aci,gssapi,-main
-databases/openldap,aci,gssapi,-server
-databases/openldap,gssapi
-databases/openldap,gssapi,-main
-databases/openldap,gssapi,-server
-databases/pecl-redis,php74
-databases/pecl-redis,php81
-databases/pg_stats_reporter
-databases/pgadmin3
-databases/pgfouine
-databases/pgmodeler
-databases/pkglocatedb
-databases/ports-readmes
-databases/ports-readmes-dancer
-databases/postgresql,-pg_upgrade
-databases/postgresql-plr

powerpc bulk build report

2022-08-30 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Aug  5 14:48:23 MDT 2022
Finished: Tue Aug 30 05:13:06 MDT 2022
Duration: 24 Days 14 hours 25 minutes

Built using OpenBSD 7.2-beta (GENERIC) #2: Wed Aug  3 17:07:49 MDT 2022

Built 9701 packages

Number of packages built each day:
Aug 5: 298
Aug 6: 724
Aug 7: 852
Aug 8: 428
Aug 9: 385
Aug 10: 647
Aug 11: 448
Aug 12: 298
Aug 13: 175
Aug 14: 231
Aug 15: 286
Aug 16: 342
Aug 17: 305
Aug 18: 383
Aug 19: 347
Aug 20: 256
Aug 21: 767
Aug 22: 302
Aug 23: 369
Aug 24: 776
Aug 25: 1012
Aug 26: 17
Aug 27: 20
Aug 28: 12
Aug 29: 15
Aug 30: 6



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-08-05/summary.log

Build failures: 16
http://build-failures.rhaalovely.net/powerpc/2022-08-05/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/devel/qcoro.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/geo/qgis.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/lang/chicken/bootstrap.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/multimedia/mkvtoolnix.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/telephony/asterisk-g729.log
http://build-failures.rhaalovely.net/powerpc/2022-08-05/x11/gnome/secrets.log

Recurrent failures:
 failures/devel/abseil-cpp.log
 failures/emulators/higan.log
 failures/emulators/retroarch.log
 failures/games/eduke32.log
 failures/games/hyperrogue.log
 failures/games/nblood.log
 failures/graphics/birdfont.log
 failures/graphics/openimageio.log
 failures/lang/gambit.log
 failures/lang/pcc/pcc-libs.log
 failures/summary.log
 failures/x11/gnome/secrets.log

New failures:
+failures/devel/qcoro.log
+failures/geo/qgis.log
+failures/lang/chicken/bootstrap.log
+failures/multimedia/mkvtoolnix.log
+failures/telephony/asterisk-g729.log

Resolved failures:
-failures/emulators/mednafen.log
-failures/emulators/qemu,-ga.log
-failures/games/odamex.log
-failures/productivity/gnucash.log
-failures/x11/qt6/qtdeclarative.log

Packages newly built:
+archivers/zpaqfranz
+astro/kstars
+audio/cantata
+audio/clementine
+audio/musique
+audio/pavucontrol
+audio/picard
+audio/puddletag
+audio/pulseaudio
+benchmarks/netperf-wrapper,,-gui
+benchmarks/netperf-wrapper,-gui
+benchmarks/udpbench
+cad/dxf2gcode
+cad/openscad
+comms/gnuradio
+comms/minimodem
+databases/iodbc,bootstrap,no_admin
+databases/iodbc,bootstrap,no_admin,-main
+databases/pgbackrest
+databases/py-influxdb_client,python3
+devel/coeurl
+devel/git-cola
+devel/kdiff3
+devel/kf5/baloo
+devel/kf5/frameworkintegration
+devel/kf5/kauth
+devel/kf5/kbookmarks
+devel/kf5/kcmutils
+devel/kf5/kconfigwidgets
+devel/kf5/kdav
+devel/kf5/kdeclarative
+devel/kf5/kdelibs4support
+devel/kf5/kdewebkit
+devel/kf5/khtml
+devel/kf5/kiconthemes
+devel/kf5/kinit
+devel/kf5/kio
+devel/kf5/kmediaplayer
+devel/kf5/knewstuff
+devel/kf5/knotifications
+devel/kf5/knotifyconfig
+devel/kf5/kparts
+devel/kf5/kross
+devel/kf5/krunner
+devel/kf5/ktexteditor
+devel/kf5/ktextwidgets
+devel/kf5/kwallet
+devel/kf5/kxmlgui
+devel/kf5/kxmlrpcclient
+devel/kf5/plasma-framework
+devel/kf5/purpose
+devel/kf5/qqc2-desktop-style
+devel/libdispatch
+devel/mtxclient
+devel/py-build,python3
+devel/py-flit,python3
+devel/py-flit_core,python3
+devel/py-installer,python3
+devel/py-pep517,python3
+devel/rebar3,erlang25
+devel/riscv32-esp-elf/binutils
+devel/riscv32-esp-elf/gcc
+devel/riscv32-esp-elf/gcc-bootstrap
+devel/riscv32-esp-elf/gdb
+devel/riscv32-esp-elf/newlib
+devel/spdlog
+devel/xtensa-esp32s2-elf/binutils
+devel/xtensa-esp32s2-elf/gcc
+devel/xtensa-esp32s2-elf/gcc-bootstrap
+devel/xtensa-esp32s2-elf/gdb
+devel/xtensa-esp32s2-elf/newlib
+devel/xtensa-esp32s3-elf/binutils
+devel/xtensa-esp32s3-elf/gcc
+devel/xtensa-esp32s3-elf/gcc-bootstrap
+devel/xtensa-esp32s3-elf/gdb
+devel/xtensa-esp32s3-elf/newlib
+editors/calligra
+editors/focuswriter
+editors/kile
+editors/py-qscintilla,python3
+emulators/fs-uae-launcher
+emulators/gr-lida
+emulators/mednafen
+emulators/mgba
+emulators/mgba,-libretro
+emulators/mgba,-main
+emulators/mgba,-qt
+emulators/qemu
+emulators/qemu,-ga
+emulators/qemu,-main
+games/chessx
+games/chiaki
+games/gcompris
+games/odamex
+games/stepmania
+geo/geocode-glib,-icons
+geo/geocode-glib,-main
+geo/geocode-glib,soup3
+geo/geocode-glib,soup3,-icons

powerpc bulk build report

2022-07-31 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Jun 23 12:29:57 MDT 2022
Finished: Sun Jul 31 11:13:25 MDT 2022
Duration: 37 Days 22 hours 43 minutes

Built using OpenBSD 7.1-current (GENERIC) #1047: Wed Jun 22 22:14:10 MDT 2022

Built 9358 packages

Number of packages built each day:
Jun 23: 426
Jun 24: 232
Jun 26: 129
Jun 27: 440
Jun 28: 437
Jun 29: 152
Jun 30: 204
Jul 1: 1006
Jul 2: 997
Jul 3: 772
Jul 4: 717
Jul 5: 911
Jul 6: 2109
Jul 7: 705
Jul 8: 81
Jul 9: 40
Jul 10: 22
Jul 11: 124
Jul 12: 37
Jul 13: 33
Jul 14: 71
Jul 15: 45
Jul 16: 127
Jul 17: 88
Jul 18: 51
Jul 19: 113
Jul 20: 47
Jul 21: 44
Jul 22: 93
Jul 23: 55
Jul 24: 53
Jul 25: 79
Jul 26: 48
Jul 27: 50
Jul 28: 88
Jul 29: 56
Jul 30: 50
Jul 31: 32



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-06-23/summary.log

Build failures: 16
http://build-failures.rhaalovely.net/powerpc/2022-06-23/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/emulators/qemu,-ga.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2022-06-23/x11/qt6/qtdeclarative.log

Recurrent failures:

New failures:

Resolved failures:

Packages newly built:
+archivers/lrzip
+converters/p5-CBOR-Free
+converters/p5-CBOR-XS
+databases/ruby-hiera-eyaml,ruby27
+databases/ruby-hiera-eyaml-gpg,ruby27
+databases/ruby-hiera-file,ruby27
+databases/tdbc-odbc
+devel/p5-Test-Class-Tiny
+devel/p5-Text-Control
+devel/p5-X-Tiny
+devel/qcoro
+devel/ruby-highline,ruby27
+devel/ruby-kgio,ruby27
+devel/ruby-optimist,ruby27
+devel/ruby-rbtree,ruby30
+devel/ruby-rbtree,ruby31
+devel/ruby-sorted_set,ruby30
+devel/ruby-sorted_set,ruby31
+devel/xsd
+fonts/aref-ruqaa
+fonts/jaldi
+fonts/vazirmatn
+mail/postfix/snapshot
+mail/postfix/snapshot,ldap
+mail/postfix/snapshot,ldap,sasl2
+mail/postfix/snapshot,mysql
+mail/postfix/snapshot,mysql,sasl2
+mail/postfix/snapshot,pgsql
+mail/postfix/snapshot,pgsql,sasl2
+mail/postfix/snapshot,sasl2
+multimedia/py-ffmpeg-progress-yield,python3
+net/coccinella
+net/epic5
+net/epic5,python
+net/ruby-msgpack,ruby27
+net/tkabber/base
+net/tkabber/plugins
+security/ruby-gpgme,ruby27
+security/tcltls
+security/xml-security-c
+textproc/xalan-c
+www/py-quixote,python3
+www/ruby-rack,ruby27
+www/ruby-raindrops,ruby27
+www/ruby-unicorn,ruby27
+x11/kde-applications/kdegraphics-mobipocket
+x11/qt6/qtimageformats

Packages not built this time:
-devel/scons-py2
-net/irssi-xmpp
-textproc/py-chardet
-www/py-quixote
-www/py-requests



powerpc bulk build report

2022-06-20 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Jun  1 18:50:45 MDT 2022
Finished: Mon Jun 20 22:48:10 MDT 2022
Duration: 19 Days 3 hours 57 minutes

Built using OpenBSD 7.1-current (GENERIC) #1039: Tue May 31 20:13:56 MDT 2022

Built 9318 packages

Number of packages built each day:
Jun 1: 3896
Jun 2: 2855
Jun 3: 122
Jun 4: 853
Jun 5: 98
Jun 6: 533
Jun 7: 387
Jun 8: 241
Jun 9: 333
Jun 10: 196
Jun 11: 244
Jun 12: 226
Jun 13: 370
Jun 14: 385
Jun 15: 329
Jun 16: 558
Jun 17: 410
Jun 18: 385
Jun 19: 394
Jun 20: 2581



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-06-01/summary.log

Build failures: 16
http://build-failures.rhaalovely.net/powerpc/2022-06-01/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/emulators/qemu,-ga.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2022-06-01/x11/qt6/qtdeclarative.log

Recurrent failures:
 failures/emulators/higan.log
 failures/emulators/mednafen.log
 failures/emulators/qemu,-ga.log
 failures/games/eduke32.log
 failures/games/hyperrogue.log
 failures/games/nblood.log
 failures/graphics/openimageio.log
 failures/lang/gambit.log
 failures/lang/pcc/pcc-libs.log
 failures/productivity/gnucash.log
 failures/summary.log
 failures/x11/gnome/secrets.log

New failures:
+failures/emulators/retroarch.log
+failures/x11/qt6/qtdeclarative.log

Resolved failures:
-failures/lang/rakudo.log
-failures/mail/gmime30.log
-failures/x11/mate/menu-advanced.log

Packages newly built:
+astro/py-erfa,python3
+audio/s-cdda
+audio/s-cdda-to-db
+databases/openldap,
+databases/openldap,,-main
+databases/openldap,,-server
+databases/postgresql-ip4r
+devel/py-extension-helpers,python3
+devel/py-test-arraydiff,python3
+devel/py-test-astropy,python3
+devel/py-test-astropy-header,python3
+devel/py-test-doctestplus,python3
+devel/py-test-filter-subpackage,python3
+devel/py-test-openfiles,python3
+devel/py-test-remotedata,python3
+inputmethods/fcitx-chinese-addons
+inputmethods/fcitx-gtk
+inputmethods/fcitx-hangul
+inputmethods/fcitx-lua
+inputmethods/fcitx-qt
+inputmethods/fcitx-table-extra
+inputmethods/fcitx-unikey
+inputmethods/libime
+inputmethods/xcb-imdkit
+lang/binaryen
+lang/rakudo
+lang/wasi-libc
+lang/wasi-sdk/compiler-rt
+lang/wasi-sdk/libcxx
+lang/wasi-sdk/libcxxabi
+mail/gmime30
+mail/mu
+mail/mutt-wizard
+mail/neomutt,gpgme,notmuch
+mail/neomutt,gpgme,notmuch,sasl
+mail/neomutt,notmuch
+mail/notmuch/notmuch
+mail/notmuch/notmuch,-emacs
+mail/notmuch/notmuch,-main
+mail/notmuch/py-notmuch,python3
+mail/s-postgray
+math/arpack,-main
+math/arpack,-mpi
+net/pidgin-sipe
+net/sshuttle
+news/pan
+productivity/monica
+security/cyrus-sasl-xoauth2
+security/pivy
+sysutils/py-mitogen,python3
+telephony/asterisk-g729
+telephony/asterisk/16
+telephony/asterisk/16,-calendar
+telephony/asterisk/16,-http_post
+telephony/asterisk/16,-kqueue
+telephony/asterisk/16,-ldap
+telephony/asterisk/16,-lua
+telephony/asterisk/16,-main
+telephony/asterisk/16,-odbc
+telephony/asterisk/16,-pgsql
+telephony/asterisk/16,-snmp
+telephony/asterisk/16,-speex
+telephony/asterisk/16,-tds
+telephony/asterisk/18
+telephony/asterisk/18,-calendar
+telephony/asterisk/18,-http_post
+telephony/asterisk/18,-kqueue
+telephony/asterisk/18,-ldap
+telephony/asterisk/18,-lua
+telephony/asterisk/18,-main
+telephony/asterisk/18,-odbc
+telephony/asterisk/18,-pgsql
+telephony/asterisk/18,-snmp
+telephony/asterisk/18,-speex
+telephony/asterisk/18,-tds
+telephony/asterisk/18,-vm_imap
+telephony/asterisk/18,-vm_odbc
+telephony/asterisk/19
+telephony/asterisk/19,-calendar
+telephony/asterisk/19,-http_post
+telephony/asterisk/19,-kqueue
+telephony/asterisk/19,-ldap
+telephony/asterisk/19,-lua
+telephony/asterisk/19,-main
+telephony/asterisk/19,-odbc
+telephony/asterisk/19,-pgsql
+telephony/asterisk/19,-snmp
+telephony/asterisk/19,-speex
+telephony/asterisk/19,-tds
+telephony/asterisk/19,-vm_imap
+telephony/asterisk/19,-vm_odbc
+textproc/crunch
+www/vaultwarden-web
+x11/qt6/qtlanguageserver

powerpc bulk build report

2022-05-30 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sat May  7 17:21:39 MDT 2022
Finished: Mon May 30 19:51:37 MDT 2022
Duration: 23 Days 2 hours 30 minutes

Built using OpenBSD 7.1-current (GENERIC) #1026: Tue May  3 07:33:28 MDT 2022

Built 9261 packages

Number of packages built each day:
May 7: 306
May 8: 315
May 9: 10
May 10: 400
May 11: 378
May 12: 171
May 13: 175
May 14: 268
May 15: 191
May 16: 156
May 17: 153
May 18: 158
May 19: 149
May 20: 185
May 21: 189
May 22: 234
May 23: 147
May 24: 560
May 25: 222
May 26: 338
May 27: 1982
May 28: 452
May 29: 802
May 30: 1320


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-05-07/summary.log

Build failures: 17
http://build-failures.rhaalovely.net/powerpc/2022-05-07/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/emulators/qemu,-ga.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/lang/rakudo.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/mail/gmime30.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/x11/gnome/secrets.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/x11/mate/menu-advanced.log

Recurrent failures:
 failures/devel/abseil-cpp.log
 failures/emulators/higan.log
 failures/emulators/mednafen.log
 failures/games/hyperrogue.log
 failures/games/odamex.log
 failures/graphics/birdfont.log
 failures/graphics/openimageio.log
 failures/lang/gambit.log
 failures/lang/pcc/pcc-libs.log
 failures/productivity/gnucash.log
 failures/summary.log
 failures/x11/gnome/secrets.log

New failures:
+failures/emulators/qemu,-ga.log
+failures/games/eduke32.log
+failures/games/nblood.log
+failures/lang/rakudo.log
+failures/mail/gmime30.log
+failures/x11/mate/menu-advanced.log

Resolved failures:

Packages newly built:
+archivers/ruby-minitar,ruby31
+audio/shairport-sync
+converters/ruby-multi_json,ruby31
+databases/ruby-redis,ruby31
+databases/ruby-redis-namespace,ruby31
+devel/cjson
+devel/py-sure,python3
+devel/ruby-activesupport,ruby31
+devel/ruby-colored2,ruby31
+devel/ruby-colorize,ruby31
+devel/ruby-concurrent-ruby,ruby31
+devel/ruby-cri,ruby31
+devel/ruby-diff-lcs,ruby31
+devel/ruby-fast_gettext,ruby31
+devel/ruby-get_process_mem,ruby31
+devel/ruby-gettext,ruby31
+devel/ruby-gettext-setup,ruby31
+devel/ruby-i18n,ruby31
+devel/ruby-locale,ruby31
+devel/ruby-log4r,ruby31
+devel/ruby-metaclass,ruby31
+devel/ruby-minitest,ruby31
+devel/ruby-open4,ruby31
+devel/ruby-opt_parse_validator,ruby31
+devel/ruby-polyglot,ruby31
+devel/ruby-puppet_forge,ruby31
+devel/ruby-rake-remote_task,ruby31
+devel/ruby-rspec/3/core,ruby31
+devel/ruby-rspec/3/expectations,ruby31
+devel/ruby-rspec/3/mocks,ruby31
+devel/ruby-rspec/3/support,ruby31
+devel/ruby-ruby-progressbar,ruby31
+devel/ruby-ruby_parser,ruby31
+devel/ruby-semantic_puppet,ruby31
+devel/ruby-sexp_processor,ruby31
+devel/ruby-systemu,ruby31
+devel/ruby-thor,ruby31
+devel/ruby-tilt,ruby31
+devel/ruby-xdg,ruby31
+devel/ruby-zeitwerk,ruby31
+devel/ruby-zentest,ruby31
+games/fheroes2
+games/irrlamb
+geo/py-osmium,python3
+inputmethods/ibus,-gtk3
+lang/rsm
+mail/ruby-mime-types-data,ruby31
+net/gmid
+net/libslirp
+net/p5-Net-LibIDN2
+net/ruby-macaddr,ruby31
+net/ruby-net-scp,ruby31
+net/ruby-net-ssh,ruby31
+net/ruby-sshkit,ruby31
+net/znc,-main
+net/znc,-sasl
+security/ruby-cms_scanner,ruby31
+sysutils/obsdfreqd
+sysutils/ruby-tzinfo,ruby31
+textproc/gi-docgen
+textproc/py-jsonpatch,python3
+textproc/py-jsonpointer,python3
+textproc/py-smartypants,python3
+textproc/py-typogrify,python3
+textproc/qpdfview
+textproc/ruby-erubis,ruby31
+textproc/ruby-mustache,ruby31
+textproc/ruby-syntax,ruby31
+textproc/ruby-text,ruby31
+www/py-httpretty,python3
+www/ruby-ethon,ruby31
+www/ruby-faraday,ruby31
+www/ruby-faraday_middleware,ruby31
+www/ruby-jwt,ruby31
+www/ruby-multipart-post,ruby31
+www/ruby-mustermann,ruby31
+www/ruby-rack-protection,ruby31
+www/ruby-sinatra,ruby31
+www/ruby-typhoeus,ruby31
+www/ruby-vegas,ruby31
+www/ruby-webrick,ruby31
+www/ruby-xmlrpc,ruby31
+x11/clipmenu
+x11/clipnotify
+x11/gnome/console
+x11/gnome/desktop,-common
+x11/gnome/desktop,-gtk4
+x11/gnome/desktop,-main
+x11/gnome/gom

powerpc bulk build report

2022-05-27 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sat May  7 17:21:39 MDT 2022
Finished: Fri May 27 13:28:28 MDT 2022
Duration: 19 Days 20 hours 7 minutes

Built using OpenBSD 7.1-current (GENERIC) #1026: Tue May  3 07:33:28 MDT 2022

Built 6585 packages

Number of packages built each day:
May 7: 306
May 8: 315
May 9: 10
May 10: 400
May 11: 378
May 12: 171
May 13: 175
May 14: 268
May 15: 191
May 16: 156
May 17: 153
May 18: 158
May 19: 149
May 20: 185
May 21: 189
May 22: 234
May 23: 147
May 24: 560
May 25: 222
May 26: 338
May 27: 1880



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-05-07/summary.log

Build failures: 15
http://build-failures.rhaalovely.net/powerpc/2022-05-07/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/emulators/qemu,-ga.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/nblood.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/lang/rakudo.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/mail/gmime30.log
http://build-failures.rhaalovely.net/powerpc/2022-05-07/net/py-dnslib,python3.log

Recurrent failures:
 failures/devel/abseil-cpp.log
 failures/emulators/higan.log
 failures/emulators/mednafen.log
 failures/games/hyperrogue.log
 failures/games/odamex.log
 failures/graphics/birdfont.log
 failures/graphics/openimageio.log
 failures/lang/gambit.log
 failures/lang/pcc/pcc-libs.log
 failures/summary.log

New failures:
+failures/emulators/qemu,-ga.log
+failures/games/eduke32.log
+failures/games/nblood.log
+failures/lang/rakudo.log
+failures/mail/gmime30.log
+failures/net/py-dnslib,python3.log

Resolved failures:
-failures/productivity/gnucash.log
-failures/x11/gnome/secrets.log

Packages newly built:
+archivers/ruby-minitar,ruby31
+audio/shairport-sync
+converters/ruby-multi_json,ruby31
+databases/ruby-redis,ruby31
+databases/ruby-redis-namespace,ruby31
+devel/cjson
+devel/py-sure,python3
+devel/ruby-activesupport,ruby31
+devel/ruby-concurrent-ruby,ruby31
+devel/ruby-diff-lcs,ruby31
+devel/ruby-fast_gettext,ruby31
+devel/ruby-gettext,ruby31
+devel/ruby-gettext-setup,ruby31
+devel/ruby-i18n,ruby31
+devel/ruby-locale,ruby31
+devel/ruby-metaclass,ruby31
+devel/ruby-minitest,ruby31
+devel/ruby-open4,ruby31
+devel/ruby-rspec/3/core,ruby31
+devel/ruby-rspec/3/expectations,ruby31
+devel/ruby-rspec/3/mocks,ruby31
+devel/ruby-rspec/3/support,ruby31
+devel/ruby-ruby_parser,ruby31
+devel/ruby-semantic_puppet,ruby31
+devel/ruby-sexp_processor,ruby31
+devel/ruby-systemu,ruby31
+devel/ruby-tilt,ruby31
+devel/ruby-zeitwerk,ruby31
+devel/ruby-zentest,ruby31
+games/fheroes2
+games/irrlamb
+geo/py-osmium,python3
+inputmethods/ibus,-gtk3
+lang/rsm
+mail/ruby-mime-types-data,ruby31
+net/gmid
+net/libslirp
+net/p5-Net-LibIDN2
+net/ruby-macaddr,ruby31
+sysutils/ruby-tzinfo,ruby31
+textproc/gi-docgen
+textproc/py-smartypants,python3
+textproc/py-typogrify,python3
+textproc/ruby-mustache,ruby31
+textproc/ruby-text,ruby31
+www/ruby-faraday,ruby31
+www/ruby-faraday_middleware,ruby31
+www/ruby-multipart-post,ruby31
+www/ruby-mustermann,ruby31
+www/ruby-rack-protection,ruby31
+www/ruby-sinatra,ruby31
+www/ruby-vegas,ruby31
+x11/gnome/console
+x11/gnome/desktop,-common
+x11/gnome/desktop,-gtk4
+x11/gnome/desktop,-main
+x11/gnome/gom
+x11/gnome/libgweather4
+x11/gnome/text-editor

Packages not built this time:
-archivers/ruby-minitar,ruby30
-audio/ruby-taglib,ruby27
-audio/ruby-vorbis_comment,ruby27
-converters/lua-utf8,
-converters/ruby-multi_json,ruby27
-converters/ruby-multi_json,ruby30
-databases/db/v4,no_java
-databases/db/v4,no_java,-main
-databases/db/v4,no_java,-tcl
-databases/evolution-data-server
-databases/ruby-amalgalite,ruby27
-databases/ruby-hiera-eyaml,ruby27
-databases/ruby-hiera-eyaml-gpg,ruby27
-databases/ruby-hiera-file,ruby27
-databases/ruby-hiera3,ruby27
-databases/ruby-ldap,ruby27
-databases/ruby-mysql,ruby27
-databases/ruby-mysql2,ruby27
-databases/ruby-pg,ruby27
-databases/ruby-redis,ruby30
-databases/ruby-redis-namespace,ruby30
-databases/ruby-sequel,ruby27
-databases/ruby-sequel_pg,ruby27
-databases/ruby-sqlite3,ruby27
-databases/ruby-tiny_tds,ruby27
-devel/arm-none-eabi/gcc-linaro,arm
-devel/capstone/python,python3
-devel/lpeg,
-devel/py-elftools
-devel/py-tox,python3
-devel/ruby-activesupport,ruby30

powerpc bulk build report

2022-04-30 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Apr 10 12:17:54 MDT 2022
Finished: Sat Apr 30 04:50:05 MDT 2022
Duration: 19 Days 16 hours 32 minutes

Built using OpenBSD 7.1 (GENERIC) #1019: Sun Apr 10 00:19:47 MDT 2022

Built 9365 packages

Number of packages built each day:
Apr 10: 608
Apr 11: 112
Apr 12: 300
Apr 13: 636
Apr 14: 94
Apr 15: 527
Apr 16: 402
Apr 17: 172
Apr 18: 197
Apr 19: 156
Apr 20: 201
Apr 21: 272
Apr 22: 214
Apr 23: 457
Apr 24: 485
Apr 25: 297
Apr 26: 308
Apr 27: 528
Apr 28: 388
Apr 29: 1024
Apr 30: 1987


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-04-10/summary.log

Build failures: 11
http://build-failures.rhaalovely.net/powerpc/2022-04-10/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2022-04-10/x11/gnome/secrets.log



powerpc bulk build report

2022-04-10 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Apr 10 12:17:54 MDT 2022
Finished: Sun Apr 10 19:16:20 MDT 2022
Duration: 0 Days 6 hours 58 minutes

Built using OpenBSD 7.1 (GENERIC) #1019: Sun Apr 10 00:19:47 MDT 2022

Built 415 packages

Number of packages built each day:
Apr 10: 415


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-04-10/summary.log

Build failures: 0
grep: /var/run/dpb/locks/*: No such file or directory
cp: failures/: No such file or directory
find: failures: No such file or directory
tar: Unable to access powerpc/failures: No such file or directory
tar: WARNING! These file names were not selected:
powerpc/failures



powerpc bulk build report

2022-03-27 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Mar  7 19:11:05 MST 2022
Finished: Sun Mar 27 00:49:04 MDT 2022
Duration: 19 Days 4 hours 38 minutes

Built using OpenBSD 7.1-beta (GENERIC) #1004: Sun Mar  6 00:38:10 MST 2022

Built 9333 packages

Number of packages built each day:
Mar 7: 399
Mar 8: 375
Mar 9: 103
Mar 10: 624
Mar 11: 77
Mar 12: 639
Mar 13: 405
Mar 14: 244
Mar 15: 159
Mar 16: 217
Mar 17: 242
Mar 18: 267
Mar 19: 231
Mar 20: 454
Mar 21: 371
Mar 22: 293
Mar 23: 491
Mar 24: 425
Mar 25: 409
Mar 26: 2443
Mar 27: 465



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-03-07/summary.log

Build failures: 11
http://build-failures.rhaalovely.net/powerpc/2022-03-07/devel/abseil-cpp.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/games/irrlamb.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/lang/algol68g.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-03-07/productivity/gnucash.log

Recurrent failures:
 failures/emulators/mednafen.log
 failures/games/irrlamb.log
 failures/lang/gambit.log
 failures/lang/pcc/pcc-libs.log
 failures/summary.log

New failures:
+failures/devel/abseil-cpp.log
+failures/emulators/higan.log
+failures/games/hyperrogue.log
+failures/games/odamex.log
+failures/graphics/birdfont.log
+failures/lang/algol68g.log
+failures/productivity/gnucash.log

Resolved failures:
-failures/devel/clang-tools-extra.log
-failures/devel/libidn2.log
-failures/devel/sdl-ttf.log
-failures/devel/sdl2-ttf.log
-failures/graphics/clutter/cogl.log
-failures/lang/guile2.log
-failures/multimedia/mpv.log

Packages newly built:
+archivers/pecl-lzf,php74
+archivers/pecl-lzf,php80
+archivers/pecl-lzf,php81
+archivers/pecl-rar,php74
+archivers/pecl-rar,php80
+archivers/quazip
+astro/celestia
+astro/gnuastro
+audio/ario
+audio/audacious/player
+audio/audacious/plugins
+audio/audacity
+audio/calf
+audio/cozy
+audio/cplay
+audio/curseradio
+audio/deadbeef
+audio/disc-cover
+audio/easytag
+audio/faudio
+audio/gmpc
+audio/gmpc-plugins
+audio/gogglesmm
+audio/gqmpeg
+audio/gradio
+audio/grip
+audio/gsound
+audio/hydrogen
+audio/libcanberra
+audio/libcanberra,-gtk
+audio/libcanberra,-gtk3
+audio/libcanberra,-main
+audio/liblastfm
+audio/lilv
+audio/lmms
+audio/lv2
+audio/milkytracker
+audio/mp3cddb
+audio/mp3info
+audio/mp3splt-gtk
+audio/mscore
+audio/mumble
+audio/mumble,-main
+audio/mumble,-server
+audio/musikcube
+audio/p5-gnupod
+audio/parlatype
+audio/pithos
+audio/potamus
+audio/pykaraoke
+audio/qsynth
+audio/quodlibet
+audio/rgain
+audio/rhythmbox
+audio/solfege
+audio/sonata
+audio/speech-dispatcher
+audio/sratom
+audio/tagtool
+audio/timidity,gtk2
+benchmarks/netperf-wrapper
+benchmarks/netperf-wrapper,
+benchmarks/netperf-wrapper,,-main
+benchmarks/netperf-wrapper,-main
+benchmarks/tsung
+books/tex-by-topic
+cad/fritzing
+cad/geda-gaf
+cad/gerbv
+cad/gtkwave
+cad/librecad
+cad/opensta
+cad/pcb
+cad/pcb2gcode
+cad/qcad
+cad/qelectrotech
+cad/qflow
+cad/xnecview
+cad/xtrkcad
+cad/yosys
+chinese/libchewing
+chinese/libpinyin
+comms/amtterm
+comms/amtterm,-main
+comms/amtterm,-term
+comms/chirp
+comms/gammu
+comms/gpsk31
+comms/hylafax
+comms/hylafax,a4
+comms/jpilot
+comms/mgetty+sendfax
+comms/pterm
+comms/py-gammu
+comms/sigrok/libsigrok
+comms/sigrok/pulseview
+comms/sigrok/sigrok-cli
+comms/syncterm
+comms/tkhylafax
+comms/wammu
+comms/xastir
+comms/xdx
+comms/xlog
+converters/libpst
+converters/libpst,-main
+converters/libpst,-python
+converters/wv
+databases/evolution-data-server
+databases/freetds
+databases/iodbc
+databases/iodbc,-admin
+databases/iodbc,-main
+databases/kdb
+databases/libdbi-drivers
+databases/libdbi-drivers,-freetds
+databases/libdbi-drivers,-main
+databases/libdbi-drivers,-pgsql
+databases/libdbi-drivers,-sqlite3
+databases/mdbtools
+databases/mysql-zrm
+databases/p5-DBD-Sybase
+databases/p5-sybperl
+databases/pecl-redis,php74
+databases/pecl-redis,php80
+databases/pecl-redis,php81
+databases/pg_stats_reporter
+databases/pgadmin3
+databases/pgfouine
+databases/pgmodeler
+databases/postgresql-odbc
+databases/postgresql-plr
+databases/py-odbc,python3
+databases/recoll
+databases/recoll,-gui
+databases/recoll,-main
+databases/ruby-hiera-eyaml-gpg,ruby27
+databases/ruby-hiera-eyaml-gpg,ruby30
+databases/ruby-hiera-eyaml-gpg,ruby31
+databases/ruby-tiny_tds,ruby27
+databases/ruby-tiny_tds,ruby30
+databases/ruby-tiny_tds,ruby31
+databases/sqlite3-odbc
+databases/sqlitebrowser
+databases/sqsh

powerpc bulk build report

2022-03-07 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Feb 25 18:24:07 MST 2022
Finished: Mon Mar  7 08:07:34 MST 2022
Duration: 9 Days 13 hours 43 minutes

Built using OpenBSD 7.1-beta (GENERIC) #999: Thu Feb 24 01:40:17 MST 2022

Built 7801 packages

Number of packages built each day:
Feb 25: 498
Feb 26: 202
Feb 27: 547
Feb 28: 1039
Mar 1: 323
Mar 2: 358
Mar 3: 438
Mar 4: 365
Mar 5: 737
Mar 6: 657
Mar 7: 2637



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-02-25/summary.log

Build failures: 11
http://build-failures.rhaalovely.net/powerpc/2022-02-25/devel/clang-tools-extra.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/devel/libidn2.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/devel/sdl-ttf.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/devel/sdl2-ttf.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/games/irrlamb.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/graphics/clutter/cogl.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/lang/gambit.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/lang/guile2.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-02-25/multimedia/mpv.log

Recurrent failures:
 failures/emulators/mednafen.log
 failures/games/irrlamb.log
 failures/lang/pcc/pcc-libs.log
 failures/summary.log

New failures:
+failures/devel/clang-tools-extra.log
+failures/devel/libidn2.log
+failures/devel/sdl-ttf.log
+failures/devel/sdl2-ttf.log
+failures/graphics/clutter/cogl.log
+failures/lang/gambit.log
+failures/lang/guile2.log
+failures/multimedia/mpv.log

Resolved failures:
-failures/devel/spyder/spyder,python3.log
-failures/emulators/higan.log
-failures/games/hyperrogue.log
-failures/lang/racket-minimal,no_jit.log
-failures/math/coq.log
-failures/misc/freeopcua/py-opcua-widgets,python3.log
-failures/net/gpodder.log
-failures/productivity/rednotebook.log
-failures/shells/py-qtconsole,python3.log

Packages newly built:
+astro/py-metar,python3
+converters/schema2ldif
+devel/libgusb
+devel/orcania
+devel/p5-MooseX-Singleton
+devel/py-async-timeout,python3
+devel/py-beniget,python3
+devel/py-bitcoinlib,python3
+devel/py-gast,python3
+devel/py-liblarch,python3
+devel/py-matrix-common,python3
+devel/py-rx,python3
+devel/yder
+lang/pythran
+lang/racket-minimal
+lang/racket-minimal,no_jit
+math/py-netcdf4,python3
+math/py-tables,python3
+multimedia/lebiniou-data
+multimedia/py-pafy,python3
+net/py-nmap,python3
+security/py-yaswfp,python3
+sysutils/borgbackup/1.1
+sysutils/borgbackup/1.2
+sysutils/git-sync
+sysutils/py-schedule,python3
+textproc/py-black,python3
+textproc/py-odfpy,python3
+textproc/py-semver,python3
+www/py-flask-cors,python3
+x11/py-i3ipc,python3

Packages not built this time:
-archivers/pecl-lzf,php74
-archivers/pecl-lzf,php80
-archivers/pecl-lzf,php81
-archivers/pecl-rar,php74
-archivers/pecl-rar,php80
-archivers/quazip
-astro/celestia
-astro/gnuastro
-astro/py-metar
-audio/ario
-audio/audacious/player
-audio/audacious/plugins
-audio/beets
-audio/calf
-audio/cozy
-audio/cplay
-audio/curseradio
-audio/deadbeef
-audio/disc-cover
-audio/faudio
-audio/gogglesmm
-audio/gqmpeg
-audio/gradio
-audio/gsound
-audio/hydrogen
-audio/libcanberra
-audio/libcanberra,-gtk
-audio/libcanberra,-gtk3
-audio/libcanberra,-main
-audio/liblastfm
-audio/lilv
-audio/lmms
-audio/lv2
-audio/milkytracker
-audio/mp3cddb
-audio/mp3info
-audio/mp3splt-gtk
-audio/mscore
-audio/mumble
-audio/mumble,-main
-audio/mumble,-server
-audio/musikcube
-audio/p5-gnupod
-audio/pithos
-audio/potamus
-audio/py-discogs-client,python3
-audio/qsynth
-audio/quodlibet
-audio/rgain
-audio/solfege
-audio/sonata
-audio/speech-dispatcher
-audio/sratom
-audio/tagtool
-audio/timidity,gtk2
-benchmarks/netperf-wrapper
-benchmarks/netperf-wrapper,
-benchmarks/netperf-wrapper,,-main
-benchmarks/netperf-wrapper,-main
-books/tex-by-topic
-cad/fritzing
-cad/geda-gaf
-cad/gerbv
-cad/gtkwave
-cad/librecad
-cad/opensta
-cad/pcb
-cad/pcb2gcode
-cad/qcad
-cad/qelectrotech
-cad/qflow
-cad/xnecview
-cad/xtrkcad
-cad/yosys
-chinese/libchewing
-chinese/libpinyin
-comms/amtterm,-main
-comms/amtterm,-term
-comms/chirp
-comms/gammu
-comms/gpsk31
-comms/hylafax
-comms/hylafax,a4
-comms/jpilot
-comms/mgetty+sendfax
-comms/py-gammu
-comms/sigrok/libsigrok
-comms/sigrok/pulseview
-comms/sigrok/sigrok-cli
-comms/syncterm
-comms/tkhylafax
-comms/xastir
-comms/xdx
-comms/xlog
-converters/libpst
-converters/libpst,-main
-converters/libpst,-python
-converters/wv
-databases/freetds
-databases/iodbc
-databases/iodbc,-admin
-databases/iodbc,-main
-databases/kdb
-databases/libdbi-drivers
-databases/libdbi-drivers,-freetds
-databases/libdbi-drivers,-main
-databases/libdbi-drivers,-pgsql
-databases/libdbi-drivers,-sqlite3
-databases/mdbtools
-databases/mysql-zrm
-databases/p5-DBD-Sybase

Re: powerpc bulk build report

2022-02-27 Thread George Koehler
On Fri, 25 Feb 2022 12:44:43 -0700 (MST)
gkoeh...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Fri Feb  4 19:39:07 MST 2022
> Finished: Fri Feb 25 12:44:23 MST 2022
> Duration: 20 Days 17 hours 5 minutes
> 
> Built using OpenBSD 7.0-current (GENERIC) #992: Thu Feb  3 01:10:29 MST 2022
> 
> Built 9265 packages

This is the first bulk with a fixed cairo-1.17.4p1, which fixes
gtk+[23] apps.  The packages in this bulk need libX11.so.17.1, which
is older than the newest libX11.so.18.0, so I see messages like,

sylpheed:/usr/X11R6/lib/libX11.so.18.0: /usr/X11R6/lib/libX11.so.17.1:
WARNING: symbol(_XkeyTable) size mismatch, relink your program

I can still use sylpheed to send this mail.  The faster arches have
fixed these messages by rebuilding all the packages.

The 12 build failures include 7 real failures and 5 false positives.
The 7 real failures are

emulators/higanLLVM ERROR: out of memory
emulators/mednafen error: ... #if LIBCO_COMPROTECT
games/hyperrogue   ./langen: Segmentation fault (core dumped)
games/irrlamb  error: unknown FP unit 'sse'
lang/pcc-libs  error: expected ';' after top-level asm block
lang/racket-minimal./racketcgc: out of memory
math/coq   pkg_create: Error: *.cmo does not exist

The only new failure is racket.

The 5 false positives are spyder3, py3-opcua-widgets, gpodder,
rednotebook, py3-qtconsole.  These packages exist.  Near the end of
the bulk, macppc-1 tried to rebuild them without installing python 3,
and the rebuilds failed.
--George

> Build failures: 12
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/devel/spyder/spyder,python3.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/emulators/higan.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/emulators/mednafen.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/games/hyperrogue.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/games/irrlamb.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/lang/pcc/pcc-libs.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/lang/racket-minimal,no_jit.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/math/coq.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/misc/freeopcua/py-opcua-widgets,python3.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/net/gpodder.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/productivity/rednotebook.log
> http://build-failures.rhaalovely.net/powerpc/2022-02-04/shells/py-qtconsole,python3.log



powerpc bulk build report

2022-02-25 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Feb  4 19:39:07 MST 2022
Finished: Fri Feb 25 12:44:23 MST 2022
Duration: 20 Days 17 hours 5 minutes

Built using OpenBSD 7.0-current (GENERIC) #992: Thu Feb  3 01:10:29 MST 2022

Built 9265 packages

Number of packages built each day:
Feb 4: 456
Feb 5: 351
Feb 6: 371
Feb 7: 662
Feb 8: 462
Feb 9: 374
Feb 10: 366
Feb 11: 127
Feb 12: 163
Feb 13: 16
Feb 14: 1050
Feb 15: 1557
Feb 16: 207
Feb 17: 288
Feb 18: 312
Feb 19: 233
Feb 20: 240
Feb 21: 318
Feb 22: 365
Feb 23: 483
Feb 24: 508
Feb 25: 356


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-02-04/summary.log

Build failures: 12
http://build-failures.rhaalovely.net/powerpc/2022-02-04/devel/spyder/spyder,python3.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/games/irrlamb.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/lang/racket-minimal,no_jit.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/math/coq.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/misc/freeopcua/py-opcua-widgets,python3.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/net/gpodder.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/productivity/rednotebook.log
http://build-failures.rhaalovely.net/powerpc/2022-02-04/shells/py-qtconsole,python3.log

Recurrent failures:
 failures/emulators/higan.log
 failures/emulators/mednafen.log
 failures/games/hyperrogue.log
 failures/games/irrlamb.log
 failures/lang/pcc/pcc-libs.log
 failures/math/coq.log
 failures/summary.log

New failures:
+failures/devel/spyder/spyder,python3.log
+failures/lang/racket-minimal,no_jit.log
+failures/misc/freeopcua/py-opcua-widgets,python3.log
+failures/net/gpodder.log
+failures/productivity/rednotebook.log
+failures/shells/py-qtconsole,python3.log

Resolved failures:
-failures/devel/coccinelle.log
-failures/editors/poke.log
-failures/games/puzzles.log
-failures/misc/posixtestsuite.log
-failures/net/haproxy.log
-failures/www/webkitgtk4.log

Packages newly built:
+cad/xtrkcad
+devel/coccigrep
+devel/coccinelle
+editors/poke
+fonts/zh-iansui
+games/puzzles
+misc/posixtestsuite
+net/haproxy
+net/telescope
+net/tremc
+productivity/jrnlc
+productivity/lifeograph
+security/pinentry,,-qt5
+sysutils/cmdseq
+sysutils/py-pyperclip,python3
+www/webkitgtk4
+x11/qt5/qtdeclarative,
+x11/zutty

Packages not built this time:
-comms/amtterm
-lang/racket-minimal
-lang/racket-minimal,no_jit
-net/coccinella
-net/ssvnc
-net/ssvnc,-gui
-net/ssvnc,-main
-net/tkabber/base
-net/tkabber/plugins
-security/pinentry,,-gtk2
-security/pivy
-security/tcltls
-sysutils/py-filelock,python3
-www/nextcloud/20



powerpc bulk build report

2022-02-03 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Jan  9 13:04:39 MST 2022
Finished: Thu Feb  3 12:47:32 MST 2022
Duration: 24 Days 23 hours 43 minutes

Built using OpenBSD 7.0-current (GENERIC) #983: Fri Jan  7 23:00:21 MST 2022

Built 9292 packages

Number of packages built each day:
Jan 9: 719
Jan 10: 125
Jan 11: 191
Jan 12: 1176
Jan 13: 248
Jan 14: 125
Jan 15: 658
Jan 16: 335
Jan 17: 214
Jan 18: 286
Jan 19: 203
Jan 20: 277
Jan 21: 289
Jan 22: 348
Jan 23: 216
Jan 24: 221
Jan 25: 242
Jan 26: 209
Jan 27: 330
Jan 28: 736
Jan 29: 1593
Jan 30: 89
Jan 31: 87
Feb 1: 98
Feb 2: 217
Feb 3: 60


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2022-01-09/summary.log

Build failures: 12
http://build-failures.rhaalovely.net/powerpc/2022-01-09/devel/coccinelle.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/editors/poke.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/games/irrlamb.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/games/puzzles.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/math/coq.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/misc/posixtestsuite.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/net/haproxy.log
http://build-failures.rhaalovely.net/powerpc/2022-01-09/www/webkitgtk4.log

Recurrent failures:
 failures/emulators/higan.log
 failures/emulators/mednafen.log
 failures/games/hyperrogue.log
 failures/games/puzzles.log
 failures/lang/pcc/pcc-libs.log
 failures/math/coq.log
 failures/misc/posixtestsuite.log
 failures/summary.log
 failures/www/webkitgtk4.log

New failures:
+failures/devel/coccinelle.log
+failures/editors/poke.log
+failures/games/irrlamb.log
+failures/net/haproxy.log

Resolved failures:
-failures/devel/qbs.log
-failures/x11/qt6/qttools.log

Packages newly built:
+audio/ruby-taglib,ruby31
+audio/ruby-vorbis_comment,ruby31
+audio/zmusic
+databases/ruby-amalgalite,ruby31
+databases/ruby-hiera-eyaml,ruby31
+databases/ruby-hiera-eyaml-gpg,ruby31
+databases/ruby-hiera-file,ruby31
+databases/ruby-hiera3,ruby31
+databases/ruby-ldap,ruby31
+databases/ruby-mysql,ruby31
+databases/ruby-mysql2,ruby31
+databases/ruby-pg,ruby31
+databases/ruby-sequel,ruby31
+databases/ruby-sequel_pg,ruby31
+databases/ruby-sqlite3,ruby31
+databases/ruby-tiny_tds,ruby31
+devel/pecl-xdebug,php74
+devel/pecl-xdebug,php80
+devel/pecl-xdebug,php81
+devel/py-intelhex,python3
+devel/ruby-arrayfields,ruby31
+devel/ruby-cicphash,ruby31
+devel/ruby-daemons,ruby31
+devel/ruby-deep_merge,ruby31
+devel/ruby-ffi,ruby31
+devel/ruby-ffi-compiler,ruby31
+devel/ruby-get_process_mem,ruby30
+devel/ruby-highline,ruby31
+devel/ruby-kgio,ruby31
+devel/ruby-narray,ruby31
+devel/ruby-ncurses,ruby31
+devel/ruby-nio4r,ruby31
+devel/ruby-opt_parse_validator,ruby30
+devel/ruby-optimist,ruby31
+devel/ruby-prof,ruby31
+devel/ruby-rb-gsl,ruby31
+devel/ruby-ref,ruby31
+devel/ruby-regexp_parser,ruby31
+devel/ruby-ruby-progressbar,ruby30
+devel/ruby-subset_sum,ruby31
+devel/ruby-yajl,ruby31
+graphics/gnofract4d
+graphics/qr-code-generator
+graphics/ruby-rmagick,ruby31
+graphics/ruby-rqrcode-core,ruby31
+inputmethods/libkkc-data
+lang/ruby/3.1
+lang/ruby/3.1,-main
+lang/ruby/3.1,-ri_docs
+mail/ruby-mini_mime,ruby31
+multimedia/openh264
+net/ruby-cbor,ruby31
+net/ruby-eventmachine,ruby31
+net/ruby-msgpack,ruby31
+net/ruby-public_suffix,ruby31
+security/ruby-argon2,ruby31
+security/ruby-bcrypt,ruby31
+security/ruby-cms_scanner,ruby30
+security/ruby-gpgme,ruby31
+security/ruby-pledge,ruby31
+shells/ksh93
+sysutils/ruby-augeas,ruby31
+sysutils/ruby-libvirt,ruby31
+sysutils/ruby-posix-spawn,ruby31
+sysutils/ruby-shadow,ruby31
+textproc/ruby-fast-stemmer,ruby31
+textproc/ruby-fast_xs,ruby31
+textproc/ruby-hpricot,ruby31
+textproc/ruby-hyperestraier,ruby31
+textproc/ruby-nokogiri,ruby31
+textproc/ruby-rdiscount,ruby31
+textproc/ruby-redcarpet,ruby31
+textproc/ruby-redcloth,ruby31
+www/ruby-addressable,ruby31
+www/ruby-capybara,ruby31
+www/ruby-capybara-webkit,ruby31
+www/ruby-fcgi,ruby31
+www/ruby-ntlm,ruby31
+www/ruby-puma,ruby31
+www/ruby-rack,ruby31
+www/ruby-rack-test,ruby31
+www/ruby-raindrops,ruby31
+www/ruby-sassc,ruby31
+www/ruby-thin,ruby31
+www/ruby-typhoeus,ruby30
+www/ruby-unicorn,ruby31
+www/ruby-webrick
+www/ruby-webrick,ruby30
+www/ruby-websocket-driver,ruby31
+www/ruby-websocket-extensions,ruby31
+www/ruby-xmlrpc
+www/ruby-xmlrpc,ruby30
+www/ruby-xpath,ruby31
+www/unit/unit-php,php74
+www/unit/unit-php,php80
+www/unit/unit-php,php81
+x11/gnome/gitg
+x11/hk
+x11/qt6/qt5compat
+x11/qt6/qtquick3d
+x11/qt6/qtquickcontrols2
+x11/qt6/qtquicktimeline
+x11/qt6/qtshadertools
+x11/qt6/qtsvg
+x11/qt6/qttools
+x11/qt6/qttranslations

powerpc bulk build report

2022-01-07 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Dec 20 21:39:14 MST 2021
Finished: Fri Jan  7 20:48:06 MST 2022
Duration: 17 Days 23 hours 9 minutes

Built using OpenBSD 7.0-current (GENERIC) #974: Mon Dec 20 00:37:28 MST 2021

Built 9210 packages

Number of packages built each day:
Dec 20: 184
Dec 21: 755
Dec 22: 429
Dec 23: 269
Dec 24: 149
Dec 25: 620
Dec 26: 374
Dec 27: 301
Dec 28: 158
Dec 29: 222
Dec 30: 145
Dec 31: 359
Jan 1: 584
Jan 2: 501
Jan 3: 288
Jan 4: 251
Jan 5: 366
Jan 6: 459
Jan 7: 2796


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-12-20/summary.log

Build failures: 10
http://build-failures.rhaalovely.net/powerpc/2021-12-20/devel/qbs.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/games/puzzles.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/math/coq.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/misc/posixtestsuite.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/www/webkitgtk4.log
http://build-failures.rhaalovely.net/powerpc/2021-12-20/x11/qt6/qttools.log



powerpc bulk build report

2021-12-03 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sat Nov 13 18:33:46 MST 2021
Finished: Fri Dec  3 13:50:54 MST 2021
Duration: 19 Days 19 hours 17 minutes

Built using OpenBSD 7.0-current (GENERIC) #956: Tue Nov  9 02:52:10 MST 2021

Built 9222 packages

Number of packages built each day:
Nov 13: 459
Nov 14: 524
Nov 15: 681
Nov 16: 308
Nov 17: 245
Nov 18: 327
Nov 19: 279
Nov 20: 169
Nov 21: 241
Nov 22: 239
Nov 23: 74
Nov 24: 97
Nov 25: 96
Nov 26: 438
Nov 27: 405
Nov 28: 363
Nov 29: 303
Nov 30: 387
Dec 1: 475
Dec 2: 533
Dec 3: 2579


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-11-13/summary.log

Build failures: 33
http://build-failures.rhaalovely.net/powerpc/2021-11-13/audio/picard.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/databases/mdbtools.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/games/puzzles.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/net/icinga/core2.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/sysutils/virt-manager.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/br-fr.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/cat.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/cy-en.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/dan.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/fra.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/hbs.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/hbs-slv.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/hin.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/is-en.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/is-sv.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/ita.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/mk-bg.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/mk-en.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/mlt-ara.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/nno.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/nob.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/oci.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/pol.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/rus.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/spa.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/swe.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/textproc/apertium-dicts/ukr.log
http://build-failures.rhaalovely.net/powerpc/2021-11-13/www/webkitgtk4.log



powerpc bulk build report

2021-11-12 Thread gkoehler
Bulk build on macppc-0.ports.openbsd.org

Started : Sat Oct 16 17:44:31 MDT 2021
Finished: Fri Nov 12 21:08:01 MST 2021
Duration: 27 Days 4 hours 24 minutes

Built using OpenBSD 7.0-current (GENERIC) #945: Thu Oct 14 20:50:28 MDT 2021

Built 9519 packages

Number of packages built each day:
Oct 16: 469
Oct 17: 491
Oct 18: 318
Oct 19: 220
Oct 20: 49
Oct 21: 384
Oct 22: 140
Oct 23: 327
Oct 24: 551
Oct 25: 257
Oct 26: 255
Oct 27: 363
Oct 28: 476
Oct 29: 615
Oct 30: 1226
Oct 31: 2059
Nov 1: 347
Nov 2: 96
Nov 3: 119
Nov 4: 61
Nov 5: 71
Nov 6: 132
Nov 7: 158
Nov 8: 212
Nov 9: 123
Nov 10: 95
Nov 11: 90
Nov 12: 94



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-10-16/summary.log

Build failures: 11
http://build-failures.rhaalovely.net/powerpc/2021-10-16/devel/dtools.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/macppc-1.log
cp: paths/macppc-1.log: No such file or directory
http://build-failures.rhaalovely.net/powerpc/2021-10-16/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/print/ghostscript/gnu-fonts.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/print/scribus.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-10-16/x11/gnustep/gworkspace.log



Re: powerpc bulk build report

2021-10-18 Thread George Koehler
On Sat, 16 Oct 2021 17:43:35 +0100
Edd Barrett  wrote:

> On Sat, Oct 16, 2021 at 10:16:48AM -0600, c...@openbsd.org wrote:
> > http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log
> 
> > :1:9: error: macro name must be an identifier
> > #define -faltivec 1
> 
> Can you try this?

Edd, your diff pointed at the correct place in client/CMakeLists.txt.
I have a diff below, is my diff ok?

odamex uses OpenGL and macppc has trouble with OpenGL.  What works for
me is to run "GALLIUM_DRIVER=softpipe odamex" on a macppc G4 without
radeondrm.  Then the frame rate is too slow (press an arrow key, wait
5 seconds), so I can only try the first few menus.  Also, the title
screen (from doomdata) is tinted blue.  My G4 cpu has altivec; I tried
those menus with both the GENERIC kernel and a no-ALTIVEC kernel.

In client/CMakeLists.txt, remove -faltivec and pass -maltivec to just
one file.  This alone unbreaks the build on powerpc and powerpc64, but
the powerpc package would never call the -maltivec file (because clang
doesn't define __ALTIVEC__ in other files).  Add 2 more patches to
change __ALTIVEC__ to __powerpc__; my intent is to restore the
SDL_HasAltivec() check and call the -maltivec file if and only if the
powerpc cpu has altivec.

My powerpc64 isn't running X, so I didn't try to play my powerpc64
package.  clang for powerpc64 defaults to enabling -maltivec.

--George

Index: patches/patch-client_CMakeLists_txt
===
RCS file: /cvs/ports/games/odamex/patches/patch-client_CMakeLists_txt,v
retrieving revision 1.3
diff -u -p -r1.3 patch-client_CMakeLists_txt
--- patches/patch-client_CMakeLists_txt 29 Aug 2021 22:09:09 -  1.3
+++ patches/patch-client_CMakeLists_txt 17 Oct 2021 21:26:10 -
@@ -1,9 +1,12 @@
 $OpenBSD: patch-client_CMakeLists_txt,v 1.3 2021/08/29 22:09:09 sthen Exp $
 
+To fix powerpc* altivec, add -maltivec only in r_drawt_altivec.cpp,
+and allow r_draw.cpp to detect altivec at runtime.
+
 Index: client/CMakeLists.txt
 --- client/CMakeLists.txt.orig
 +++ client/CMakeLists.txt
-@@ -163,7 +163,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
+@@ -163,13 +163,14 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
  elseif(ODAMEX_TARGET_ARCH STREQUAL "i386")
if(NOT MSVC)
  # Pentium M has SSE2.
@@ -12,7 +15,15 @@ Index: client/CMakeLists.txt
else()
  target_compile_definitions(odamex PRIVATE /arch:SSE2)
endif()
-@@ -220,7 +220,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
+   message(STATUS "Default SIMD flags set to SSE2")
+ elseif(ODAMEX_TARGET_ARCH MATCHES "ppc")
+-  target_compile_definitions(odamex PRIVATE -faltivec)
++  set_source_files_properties(src/r_drawt_altivec.cpp
++PROPERTIES COMPILE_OPTIONS -maltivec)
+   message(STATUS "Default SIMD flags set to AltiVec")
+ endif()
+   else()
+@@ -220,7 +221,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
endif()
  
if(UNIX AND NOT APPLE)
Index: patches/patch-client_src_r_draw_cpp
===
RCS file: patches/patch-client_src_r_draw_cpp
diff -N patches/patch-client_src_r_draw_cpp
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-client_src_r_draw_cpp 17 Oct 2021 21:26:10 -
@@ -0,0 +1,26 @@
+$OpenBSD$
+
+To fix powerpc* altivec, add -maltivec only in r_drawt_altivec.cpp,
+and allow r_draw.cpp to detect altivec at runtime.
+
+Index: client/src/r_draw.cpp
+--- client/src/r_draw.cpp.orig
 client/src/r_draw.cpp
+@@ -1511,7 +1511,7 @@ static bool detect_optimizations()
+   if (SDL_HasSSE2())
+   optimizations_available.push_back(OPTIMIZE_SSE2);
+   #endif
+-  #ifdef __ALTIVEC__
++  #ifdef __powerpc__
+   if (SDL_HasAltiVec())
+   optimizations_available.push_back(OPTIMIZE_ALTIVEC);
+   #endif
+@@ -1609,7 +1609,7 @@ void R_InitVectorizedDrawers()
+   r_dimpatchD = r_dimpatchD_MMX;
+   }
+   #endif
+-  #ifdef __ALTIVEC__
++  #ifdef __powerpc__
+   else if (optimize_kind == OPTIMIZE_ALTIVEC)
+   {
+   R_DrawSpanD = R_DrawSpanD_c;
// TODO
Index: patches/patch-common_r_draw_h
===
RCS file: patches/patch-common_r_draw_h
diff -N patches/patch-common_r_draw_h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-common_r_draw_h   17 Oct 2021 21:26:10 -
@@ -0,0 +1,17 @@
+$OpenBSD$
+
+To fix powerpc* altivec, add -maltivec only in r_drawt_altivec.cpp,
+and allow r_draw.cpp to detect altivec at runtime.
+
+Index: common/r_draw.h
+--- common/r_draw.h.orig
 common/r_draw.h
+@@ -174,7 +174,7 @@ void R_DrawSlopeSpanD_MMX(void);
+ void r_dimpatchD_MMX(IWindowSurface*, argb_t color, int alpha, int x1, int 
y1, int w, int h);
+ #endif
+ 
+-#ifdef __ALTIVEC__
++#ifdef __powerpc__
+ void R_DrawSpanD_ALTIVEC(void);
+ 

Re: powerpc bulk build report

2021-10-18 Thread Brad Smith
On Sat, Oct 16, 2021 at 11:32:39PM -0400, George Koehler wrote:
> On Sat, 16 Oct 2021 17:43:35 +0100
> Edd Barrett  wrote:
> 
> > On Sat, Oct 16, 2021 at 10:16:48AM -0600, c...@openbsd.org wrote:
> > > http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log
> > 
> > > :1:9: error: macro name must be an identifier
> > > #define -faltivec 1
> > 
> > Can you try this?
> 
> Fails because clang rejects -faltivec,
>   c++: error: the clang compiler does not support 'faltivec',
>   please use -maltivec and include altivec.h explicitly
> 
> I suspect that -faltivec was only for Apple gcc on Mac OS X (because
> our ports-gcc also rejects it).  It would also be wrong to build every
> file with -maltivec, because some macppc models (G3) have no altivec.
> It might be correct to build only r_drawt_altivec.cpp with -maltivec,
> because r_draw.cpp checks SDL_HasAltiVec().  Either that, or just
> disable altivec on powerpc.
> 
> I will try to unbreak the build on my macppc.
> --George

When I was looking at this I was thinking something like this, but I
don't have hw to test with.


Index: Makefile
===
RCS file: /home/cvs/ports/games/odamex/Makefile,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 Makefile
--- Makefile13 Sep 2021 19:51:30 -  1.7
+++ Makefile16 Oct 2021 18:54:31 -
@@ -33,6 +33,10 @@ CONFIGURE_ENV += CXXFLAGS=-I${LOCALBASE}
LDFLAGS=-L${LOCALBASE}/lib
 CONFIGURE_ARGS +=  -DNO_AG-ODALAUNCH_TARGET=YES
 
+.if ${MACHINE_ARCH} == "powerpc"
+CONFIGURE_ARGS +=  -DUSE_DEFAULT_SIMD=OFF
+.endif
+
 LIB_DEPENDS =  x11/wxWidgets \
audio/portmidi \
graphics/png \

> > Index: patches/patch-client_CMakeLists_txt
> > ===
> > RCS file: /cvs/ports/games/odamex/patches/patch-client_CMakeLists_txt,v
> > retrieving revision 1.3
> > diff -u -p -r1.3 patch-client_CMakeLists_txt
> > --- patches/patch-client_CMakeLists_txt 29 Aug 2021 22:09:09 -  
> > 1.3
> > +++ patches/patch-client_CMakeLists_txt 16 Oct 2021 16:41:49 -
> > @@ -3,7 +3,7 @@ $OpenBSD: patch-client_CMakeLists_txt,v 
> >  Index: client/CMakeLists.txt
> >  --- client/CMakeLists.txt.orig
> >  +++ client/CMakeLists.txt
> > -@@ -163,7 +163,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> > +@@ -163,13 +163,13 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> >   elseif(ODAMEX_TARGET_ARCH STREQUAL "i386")
> > if(NOT MSVC)
> >   # Pentium M has SSE2.
> > @@ -12,6 +12,13 @@ Index: client/CMakeLists.txt
> > else()
> >   target_compile_definitions(odamex PRIVATE /arch:SSE2)
> > endif()
> > +   message(STATUS "Default SIMD flags set to SSE2")
> > + elseif(ODAMEX_TARGET_ARCH MATCHES "ppc")
> > +-  target_compile_definitions(odamex PRIVATE -faltivec)
> > ++  target_compile_options(odamex PRIVATE -faltivec)
> > +   message(STATUS "Default SIMD flags set to AltiVec")
> > + endif()
> > +   else()
> >  @@ -220,7 +220,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> > endif()
> >   
> > -- 
> > Best Regards
> > Edd Barrett
> > 
> > https://www.theunixzoo.co.uk
> > 
> 
> 
> -- 
> George Koehler 
> 



Re: powerpc bulk build report

2021-10-16 Thread George Koehler
On Sat, 16 Oct 2021 17:43:35 +0100
Edd Barrett  wrote:

> On Sat, Oct 16, 2021 at 10:16:48AM -0600, c...@openbsd.org wrote:
> > http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log
> 
> > :1:9: error: macro name must be an identifier
> > #define -faltivec 1
> 
> Can you try this?

Fails because clang rejects -faltivec,
  c++: error: the clang compiler does not support 'faltivec',
  please use -maltivec and include altivec.h explicitly

I suspect that -faltivec was only for Apple gcc on Mac OS X (because
our ports-gcc also rejects it).  It would also be wrong to build every
file with -maltivec, because some macppc models (G3) have no altivec.
It might be correct to build only r_drawt_altivec.cpp with -maltivec,
because r_draw.cpp checks SDL_HasAltiVec().  Either that, or just
disable altivec on powerpc.

I will try to unbreak the build on my macppc.
--George

> Index: patches/patch-client_CMakeLists_txt
> ===
> RCS file: /cvs/ports/games/odamex/patches/patch-client_CMakeLists_txt,v
> retrieving revision 1.3
> diff -u -p -r1.3 patch-client_CMakeLists_txt
> --- patches/patch-client_CMakeLists_txt   29 Aug 2021 22:09:09 -  
> 1.3
> +++ patches/patch-client_CMakeLists_txt   16 Oct 2021 16:41:49 -
> @@ -3,7 +3,7 @@ $OpenBSD: patch-client_CMakeLists_txt,v 
>  Index: client/CMakeLists.txt
>  --- client/CMakeLists.txt.orig
>  +++ client/CMakeLists.txt
> -@@ -163,7 +163,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> +@@ -163,13 +163,13 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
>   elseif(ODAMEX_TARGET_ARCH STREQUAL "i386")
> if(NOT MSVC)
>   # Pentium M has SSE2.
> @@ -12,6 +12,13 @@ Index: client/CMakeLists.txt
> else()
>   target_compile_definitions(odamex PRIVATE /arch:SSE2)
> endif()
> +   message(STATUS "Default SIMD flags set to SSE2")
> + elseif(ODAMEX_TARGET_ARCH MATCHES "ppc")
> +-  target_compile_definitions(odamex PRIVATE -faltivec)
> ++  target_compile_options(odamex PRIVATE -faltivec)
> +   message(STATUS "Default SIMD flags set to AltiVec")
> + endif()
> +   else()
>  @@ -220,7 +220,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
> endif()
>   
> -- 
> Best Regards
> Edd Barrett
> 
> https://www.theunixzoo.co.uk
> 


-- 
George Koehler 



Re: powerpc bulk build report

2021-10-16 Thread Edd Barrett
On Sat, Oct 16, 2021 at 10:16:48AM -0600, c...@openbsd.org wrote:
> http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log

> :1:9: error: macro name must be an identifier
> #define -faltivec 1

Can you try this?

Index: patches/patch-client_CMakeLists_txt
===
RCS file: /cvs/ports/games/odamex/patches/patch-client_CMakeLists_txt,v
retrieving revision 1.3
diff -u -p -r1.3 patch-client_CMakeLists_txt
--- patches/patch-client_CMakeLists_txt 29 Aug 2021 22:09:09 -  1.3
+++ patches/patch-client_CMakeLists_txt 16 Oct 2021 16:41:49 -
@@ -3,7 +3,7 @@ $OpenBSD: patch-client_CMakeLists_txt,v 
 Index: client/CMakeLists.txt
 --- client/CMakeLists.txt.orig
 +++ client/CMakeLists.txt
-@@ -163,7 +163,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
+@@ -163,13 +163,13 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
  elseif(ODAMEX_TARGET_ARCH STREQUAL "i386")
if(NOT MSVC)
  # Pentium M has SSE2.
@@ -12,6 +12,13 @@ Index: client/CMakeLists.txt
else()
  target_compile_definitions(odamex PRIVATE /arch:SSE2)
endif()
+   message(STATUS "Default SIMD flags set to SSE2")
+ elseif(ODAMEX_TARGET_ARCH MATCHES "ppc")
+-  target_compile_definitions(odamex PRIVATE -faltivec)
++  target_compile_options(odamex PRIVATE -faltivec)
+   message(STATUS "Default SIMD flags set to AltiVec")
+ endif()
+   else()
 @@ -220,7 +220,7 @@ if(TARGET SDL2::SDL2 OR TARGET SDL::SDL)
endif()
  
-- 
Best Regards
Edd Barrett

https://www.theunixzoo.co.uk



powerpc bulk build report

2021-10-16 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Sep 28 01:49:06 MDT 2021
Finished: Sat Oct 16 09:32:30 MDT 2021
Duration: 18 Days 7 hours 43 minutes

Built using OpenBSD 7.0 (GENERIC) #939: Mon Sep 27 18:51:05 MDT 2021

Built 9528 packages

Number of packages built each day:
Sep 28: 881
Sep 29: 414
Sep 30: 497
Oct 1: 5415
Oct 2: 348
Oct 3: 276
Oct 4: 380
Oct 5: 145
Oct 6: 193
Oct 7: 282
Oct 8: 233
Oct 9: 464
Oct 10: 525
Oct 11: 341
Oct 12: 445
Oct 13: 353
Oct 14: 412
Oct 15: 2014
Oct 16: 985


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-09-28/summary.log

Build failures: 7
http://build-failures.rhaalovely.net/powerpc/2021-09-28/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/games/odamex.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-09-28/x11/gnustep/gworkspace.log



Re: powerpc bulk build report

2021-10-15 Thread Charlene Wendling
It's not done yet ;)

One of the machines lost some nfs mounts, i'm restarting the bulk atm ;)

On Fri, 15 Oct 2021 09:13:44 -0600 (MDT)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Tue Sep 28 01:49:06 MDT 2021
> Finished: Fri Oct 15 09:12:08 MDT 2021
> Duration: 17 Days 7 hours 23 minutes
> 
> Built using OpenBSD 7.0 (GENERIC) #939: Mon Sep 27 18:51:05 MDT 2021
> 



Re: powerpc bulk build report

2021-09-13 Thread Charlene Wendling
Hi,

On Thu, 9 Sep 2021 22:27:27 +0200
Alexander Bluhm  wrote:

> On Thu, Sep 09, 2021 at 08:56:52AM -0600, c...@openbsd.org wrote:
> > http://build-failures.rhaalovely.net/powerpc/2021-08-21/misc/open62541,ns0_full.log
> 
> /usr/obj/ports/open62541-1.0.6-ns0_full/bin/cc ...
> namespace0_generated.c Segmentation fault (core dumped) 
> ninja: build stopped: subcommand failed.
> 
> The compiler needs a lot of stack memory.  The ulimit -s should be
> raised to 8 GB.  Feel free to skip the ns0_full flavor on small
> memory architectures.

I was going to _very_ sloppily mark the flavor NOT_FOR_ARCHS, until
sthen noticed that 8 GB of stack memory is a bit too much.

I found out after some research that i was using an old login.conf,
and definitely have said no to sysmerge at one point. Sigh.

Using the latest login.conf, where the stacksize is raised to 8MB by
default for pbuild, fixes the build at home, it should be fine on the
bulk machines as well.

Thanks for your feedback :)

Charlène.

> bluhm
> 



Re: powerpc bulk build report

2021-09-09 Thread Alexander Bluhm
On Thu, Sep 09, 2021 at 08:56:52AM -0600, c...@openbsd.org wrote:
> http://build-failures.rhaalovely.net/powerpc/2021-08-21/misc/open62541,ns0_full.log

/usr/obj/ports/open62541-1.0.6-ns0_full/bin/cc ... namespace0_generated.c
Segmentation fault (core dumped) 
ninja: build stopped: subcommand failed.

The compiler needs a lot of stack memory.  The ulimit -s should be
raised to 8 GB.  Feel free to skip the ns0_full flavor on small
memory architectures.

bluhm



Re: powerpc bulk build report

2021-09-09 Thread Charlene Wendling
Hi,

This is the first bulk done with LLD as the default linker.

Please test your favorite packages and report issues if you have some :)

On Thu, 9 Sep 2021 08:56:52 -0600 (MDT)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Sat Aug 21 14:27:57 MDT 2021
> Finished: Thu Sep  9 08:56:41 MDT 2021
> Duration: 18 Days 18 hours 29 minutes

It looks like LLD is making bulks a bit faster (actually macppc-1 was
down for 2 days, hence the extra delay)

> Built using OpenBSD 7.0-beta (GENERIC) #926: Fri Aug 20 18:11:14 MDT
> 2021
> 
> Built 9517 packages
> [...]
> 
> Critical path missing pkgs:
> http://build-failures.rhaalovely.net/powerpc/2021-08-21/summary.log
> 
> Build failures: 10

> http://build-failures.rhaalovely.net/powerpc/2021-08-21/devel/xtensa-lx106-elf/gdb.log

gkoehler@ is already providing a diff for libgmp:

https://marc.info/?l=openbsd-ports=163116370903235=2

> http://build-failures.rhaalovely.net/powerpc/2021-08-21/mail/rspamd,hyperscan.log

rspamd is not built on 32 bit archs for now.

> http://build-failures.rhaalovely.net/powerpc/2021-08-21/misc/open62541,ns0_full.log

This one was already present during the previous bulk, but no report has
been sent, it's not due to LLD.




powerpc bulk build report

2021-09-09 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sat Aug 21 14:27:57 MDT 2021
Finished: Thu Sep  9 08:56:41 MDT 2021
Duration: 18 Days 18 hours 29 minutes

Built using OpenBSD 7.0-beta (GENERIC) #926: Fri Aug 20 18:11:14 MDT 2021

Built 9517 packages

Number of packages built each day:
Aug 21: 656
Aug 22: 212
Aug 23: 241
Aug 24: 783
Aug 25: 386
Aug 26: 508
Aug 27: 156
Aug 28: 210
Aug 29: 176
Aug 30: 183
Aug 31: 174
Sep 1: 231
Sep 2: 356
Sep 3: 471
Sep 4: 377
Sep 5: 362
Sep 6: 617
Sep 7: 323
Sep 8: 498
Sep 9: 2597


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-08-21/summary.log

Build failures: 10
http://build-failures.rhaalovely.net/powerpc/2021-08-21/devel/xtensa-lx106-elf/gdb.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/games/moonlander,no_sound.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/mail/rspamd,hyperscan.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/misc/open62541,ns0_full.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-08-21/x11/gnustep/gworkspace.log



powerpc bulk build report

2021-08-04 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Jul 18 12:27:23 MDT 2021
Finished: Wed Aug  4 17:01:13 MDT 2021
Duration: 17 Days 4 hours 34 minutes

Built using OpenBSD 6.9-current (GENERIC) #909: Fri Jul 16 19:03:07 MDT 2021

Built 9506 packages

Number of packages built each day:
Jul 18: 642
Jul 19: 102
Jul 20: 395
Jul 21: 502
Jul 22: 611
Jul 23: 464
Jul 24: 213
Jul 25: 275
Jul 26: 246
Jul 27: 253
Jul 28: 335
Jul 29: 477
Jul 30: 340
Jul 31: 386
Aug 1: 673
Aug 2: 372
Aug 3: 417
Aug 4: 2803



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-07-18/summary.log

Build failures: 10
http://build-failures.rhaalovely.net/powerpc/2021-07-18/comms/syncterm.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/converters/ish.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/games/qqwing.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-07-18/telephony/linphone/belr.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/graphics/gmic.log
 failures/lang/gforth.log
 failures/lang/pcc/pcc-libs.log
 failures/productivity/gnucash.log
 failures/summary.log

New failures:
+failures/comms/syncterm.log
+failures/converters/ish.log
+failures/games/qqwing.log
+failures/telephony/linphone/belr.log

Resolved failures:
-failures/x11/mplayer.log

Packages newly built:
+audio/pacpl
+audio/subsonic-cli
+devel/clang-tools-extra
+devel/py-construct,python3-
+graphics/dvdrip
+multimedia/ogmrip,-dvdcpy
+multimedia/subrip
+multimedia/subtitleripper
+multimedia/transcode
+multimedia/transcode,lzo,mjpegtools
+multimedia/vitunes
+net/freeradius3,-python3
+security/openssl/3.0
+security/pass-import
+security/py-argon2-cffi
+security/py-pykeepass,python3
+telephony/linphone/bctoolbox
+telephony/linphone/bzrtp
+telephony/linphone/mediastreamer2
+telephony/linphone/ortp
+textproc/py-stache
+x11/gmtk
+x11/gnome-mplayer
+x11/mplayer

Packages not built this time:
-comms/syncterm
-converters/ish
-editors/neovim
-editors/neovim-qt
-games/qqwing
-net/ortp
-x11/gtk+3,-cloudprint
-x11/py-xlib
-x11/qt4,,-sqlite2
-x11/qt4,-sqlite2
-x11/qt5/qtdeclarative,



powerpc bulk build report

2021-07-18 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Jul  1 09:32:04 MDT 2021
Finished: Sun Jul 18 01:37:36 MDT 2021
Duration: 16 Days 16 hours 6 minutes

Built using OpenBSD 6.9-current (GENERIC) #901: Mon Jun 28 18:22:52 MDT 2021

Built 9486 packages

Number of packages built each day:
Jul 1: 6618
Jul 2: 269
Jul 3: 473
Jul 4: 265
Jul 5: 782
Jul 6: 317
Jul 7: 249
Jul 8: 229
Jul 9: 284
Jul 10: 274
Jul 11: 387
Jul 12: 533
Jul 13: 408
Jul 14: 314
Jul 15: 430
Jul 16: 500
Jul 17: 2097
Jul 18: 892



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-07-01/summary.log

Build failures: 7
http://build-failures.rhaalovely.net/powerpc/2021-07-01/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-07-01/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-07-01/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-07-01/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-07-01/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-07-01/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-07-01/x11/mplayer.log



powerpc bulk build report

2021-07-01 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sat Jun 12 17:13:25 MDT 2021
Finished: Thu Jul  1 03:49:42 MDT 2021
Duration: 18 Days 10 hours 36 minutes

Built using OpenBSD 6.9-current (GENERIC) #893: Sat Jun 12 06:19:36 MDT 2021

Built 9503 packages

Number of packages built each day:
Jun 12: 515
Jun 13: 184
Jun 14: 170
Jun 15: 378
Jun 16: 494
Jun 17: 335
Jun 18: 618
Jun 19: 267
Jun 20: 323
Jun 21: 282
Jun 22: 324
Jun 23: 184
Jun 24: 443
Jun 25: 357
Jun 26: 211
Jun 27: 359
Jun 28: 577
Jun 29: 423
Jun 30: 1298
Jul 1: 1761


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-06-12/summary.log

Build failures: 14
http://build-failures.rhaalovely.net/powerpc/2021-06-12/audio/puddletag.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/lang/pcc/pcc-libs.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/misc/freeopcua/opcua-client-gui.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/misc/freeopcua/py-opcua-widgets,python3.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/net/tdlib.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/shells/py-qtconsole,python3.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/sysutils/virt-manager.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/www/qutebrowser.log
http://build-failures.rhaalovely.net/powerpc/2021-06-12/x11/mate/menu-advanced.log



powerpc bulk build report

2021-06-08 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sun May 23 05:17:22 MDT 2021
Finished: Tue Jun  8 22:53:24 MDT 2021
Duration: 16 Days 17 hours 36 minutes

Built using OpenBSD 6.9-current (GENERIC) #886: Sat May 22 21:09:22 MDT 2021

Built 9481 packages

Number of packages built each day:
May 23: 717
May 24: 51
May 25: 663
May 26: 432
May 27: 563
May 28: 323
May 29: 355
May 30: 138
May 31: 282
Jun 1: 331
Jun 2: 290
Jun 3: 621
Jun 4: 400
Jun 5: 387
Jun 6: 553
Jun 7: 479
Jun 8: 2896


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-05-23/summary.log

Build failures: 5
http://build-failures.rhaalovely.net/powerpc/2021-05-23/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-05-23/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-05-23/graphics/gmic.log
http://build-failures.rhaalovely.net/powerpc/2021-05-23/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-05-23/productivity/gnucash.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/summary.log

New failures:
+failures/graphics/gmic.log

Resolved failures:
-failures/audio/picard.log
-failures/audio/puddletag.log
-failures/devel/spyder/spyder,python3.log
-failures/misc/freeopcua/opcua-client-gui.log
-failures/misc/freeopcua/py-opcua-widgets,python3.log
-failures/security/knockpy.log
-failures/shells/py-qtconsole,python3.log
-failures/sysutils/virt-manager.log

Packages newly built:
+comms/amtterm
+devel/p5-CLI-Osprey
+devel/p5-Devel-FindPerl
+devel/p5-Test-Lib
+devel/py2-setuptools
+geo/mapserver
+graphics/py-matplotlib-inline,python3
+math/superlu
+print/poppler,,-qt6
+print/poppler,-qt6
+productivity/p5-iCal-Parser
+security/p5-Crypt-PBKDF2
+security/p5-Digest-SHA3
+sysutils/find2perl
+sysutils/opensbi
+x11/gnome/libadwaita
+x11/gnome/notes
+x11/qt5/qtwebchannel,
+x11/qt5/qtwebchannel,,-examples

Packages not built this time:
-graphics/py-cycler
-net/py-socketio-client
-x11/gnome/latex
-x11/qt5/qtdeclarative,



powerpc bulk build report

2021-05-23 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Thu May  6 02:00:43 MDT 2021
Finished: Sun May 23 00:58:40 MDT 2021
Duration: 16 Days 22 hours 58 minutes

Built using OpenBSD 6.9-current (GENERIC) #880: Tue May  4 19:07:48 MDT 2021

Built 9474 packages

Number of packages built each day:
May 6: 779
May 7: 382
May 8: 556
May 9: 613
May 10: 311
May 11: 190
May 12: 152
May 13: 306
May 14: 259
May 15: 315
May 16: 489
May 17: 357
May 18: 445
May 19: 517
May 20: 397
May 21: 478
May 22: 2334
May 23: 594


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-05-06/summary.log

Build failures: 12
http://build-failures.rhaalovely.net/powerpc/2021-05-06/audio/picard.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/audio/puddletag.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/devel/spyder/spyder,python3.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/misc/freeopcua/opcua-client-gui.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/misc/freeopcua/py-opcua-widgets,python3.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/security/knockpy.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/shells/py-qtconsole,python3.log
http://build-failures.rhaalovely.net/powerpc/2021-05-06/sysutils/virt-manager.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/summary.log

New failures:
+failures/audio/picard.log
+failures/audio/puddletag.log
+failures/devel/spyder/spyder,python3.log
+failures/misc/freeopcua/opcua-client-gui.log
+failures/misc/freeopcua/py-opcua-widgets,python3.log
+failures/security/knockpy.log
+failures/shells/py-qtconsole,python3.log
+failures/sysutils/virt-manager.log

Resolved failures:
-failures/geo/libosmium.log
-failures/geo/mapcache.log
-failures/geo/mapserver,,-main.log
-failures/geo/mdal.log

Packages newly built:
+devel/arm-none-eabi/binutils,arm
+devel/arm-none-eabi/gcc-linaro
+devel/arm-none-eabi/gcc-linaro,aarch64
+devel/arm-none-eabi/gcc-linaro,arm
+devel/arm-none-eabi/newlib
+devel/kf5/kded
+devel/libzen
+devel/sharness
+games/gnushogi
+geo/libosmium
+geo/mapcache
+geo/mapserver,
+geo/mapserver,,-main
+geo/mapserver,,-perl
+geo/mapserver,,-php
+geo/mapserver,,-python
+geo/mapserver,,-utils
+geo/mapserver,-main
+geo/mapserver,-perl
+geo/mapserver,-php
+geo/mapserver,-python
+geo/mapserver,-utils
+geo/mdal
+geo/osm2pgsql
+graphics/pngquant
+graphics/sane-backends,escl
+multimedia/libmediainfo
+productivity/py-tasklib
+security/openssl-ruby-tests
+security/py-fastecdsa,python3
+shells/nsh
+shells/nsh,static
+sysutils/arm-trusted-firmware
+sysutils/openbsdisks2
+sysutils/p5-Data-Entropy
+sysutils/p5-Data-Float
+sysutils/p5-Number-Bytes-Human
+sysutils/u-boot
+sysutils/u-boot,aarch64
+telephony/sngrep
+www/woob
+x11/qt5/qtdeclarative,
+x11/qt6/qt5compat
+x11/qt6/qtbase
+x11/qt6/qtbase,-global
+x11/qt6/qtbase,-main
+x11/qt6/qtbase,-mysql
+x11/qt6/qtbase,-psql
+x11/qt6/qtdeclarative
+x11/qt6/qtquick3d
+x11/qt6/qtquickcontrols2
+x11/qt6/qtquicktimeline
+x11/qt6/qtshadertools
+x11/qt6/qtsvg
+x11/qt6/qttools
+x11/qt6/qttranslations

Packages not built this time:
-archivers/pecl-lzf,php72
-archivers/pecl-rar,php72
-audio/ruby-taglib,ruby26
-audio/ruby-vorbis_comment,ruby26
-comms/amtterm
-databases/pecl-redis,php72
-databases/ruby-amalgalite,ruby26
-databases/ruby-ldap,ruby26
-databases/ruby-mysql,ruby26
-databases/ruby-mysql2,ruby26
-databases/ruby-pg,ruby26
-databases/ruby-sequel,ruby26
-databases/ruby-sequel_pg,ruby26
-databases/ruby-sqlite3,ruby26
-databases/ruby-tiny_tds,ruby26
-devel/ruby-arrayfields,ruby26
-devel/ruby-bundler,ruby26
-devel/ruby-cicphash,ruby26
-devel/ruby-daemons,ruby26
-devel/ruby-ffi,ruby26
-devel/ruby-ffi-compiler,ruby26
-devel/ruby-git,ruby26
-devel/ruby-jeweler
-devel/ruby-kgio,ruby26
-devel/ruby-narray,ruby26
-devel/ruby-ncurses,ruby26
-devel/ruby-nio4r,ruby26
-devel/ruby-prof,ruby26
-devel/ruby-racc,ruby26
-devel/ruby-rb-gsl,ruby26
-devel/ruby-ref,ruby26
-devel/ruby-regexp_parser,ruby26
-devel/ruby-subset_sum,ruby26
-devel/ruby-yajl,ruby26
-geo/gdal,-perl
-geo/gdal,python3,-perl
-graphics/pecl-imagick,php72
-graphics/ruby-rmagick,ruby26
-lang/php/7.2
-lang/php/7.2,-apache
-lang/php/7.2,-bz2
-lang/php/7.2,-cgi
-lang/php/7.2,-curl
-lang/php/7.2,-dba
-lang/php/7.2,-dbg
-lang/php/7.2,-enchant
-lang/php/7.2,-gd
-lang/php/7.2,-gmp
-lang/php/7.2,-imap
-lang/php/7.2,-intl
-lang/php/7.2,-ldap
-lang/php/7.2,-main
-lang/php/7.2,-mysqli
-lang/php/7.2,-odbc
-lang/php/7.2,-pcntl
-lang/php/7.2,-pdo_dblib
-lang/php/7.2,-pdo_mysql
-lang/php/7.2,-pdo_odbc
-lang/php/7.2,-pdo_pgsql

powerpc bulk build report

2021-05-05 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Apr 19 12:08:47 MDT 2021
Finished: Wed May  5 10:08:06 MDT 2021
Duration: 15 Days 21 hours 59 minutes

Built using OpenBSD 6.9 (GENERIC) #874: Mon Apr 19 02:55:31 MDT 2021

Built 9550 packages

Number of packages built each day:
Apr 19: 662
Apr 20: 179
Apr 21: 459
Apr 22: 652
Apr 23: 563
Apr 24: 490
Apr 25: 239
Apr 26: 254
Apr 27: 277
Apr 28: 244
Apr 29: 408
Apr 30: 688
May 1: 322
May 2: 467
May 3: 557
May 4: 493
May 5: 2596


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-04-19/summary.log

Build failures: 8
http://build-failures.rhaalovely.net/powerpc/2021-04-19/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/geo/libosmium.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/geo/mapcache.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/geo/mapserver,,-main.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/geo/mdal.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-04-19/productivity/gnucash.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/summary.log

New failures:
+failures/geo/libosmium.log
+failures/geo/mapcache.log
+failures/geo/mapserver,,-main.log
+failures/geo/mdal.log

Resolved failures:
-failures/comms/sigrok/pulseview.log
-failures/comms/sigrok/sigrok-cli.log

Packages newly built:
+comms/sigrok/pulseview
+comms/sigrok/sigrok-cli
+databases/timescaledb
+geo/merkaartor
+net/vger
+x11/gtksourceview5
+x11/mruby-zest

Packages not built this time:
-devel/p5-VCP-autrijus
-geo/libosmium
-geo/mapcache
-geo/mapserver
-geo/mapserver,
-geo/mapserver,,-main
-geo/mapserver,,-perl
-geo/mapserver,,-php
-geo/mapserver,,-python
-geo/mapserver,,-utils
-geo/mapserver,-main
-geo/mapserver,-perl
-geo/mapserver,-php
-geo/mapserver,-python
-geo/mapserver,-utils
-geo/mdal
-geo/osm2pgsql
-net/py-junos-eznc
-net/py-ncclient
-security/py-openssl
-www/py-beautifulsoup4



powerpc bulk build report

2021-04-13 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Mar 28 06:21:18 MDT 2021
Finished: Tue Apr 13 02:00:12 MDT 2021
Duration: 15 Days 19 hours 39 minutes

Built using OpenBSD 6.9-beta (GENERIC) #863: Sat Mar 27 18:29:40 MDT 2021

Built 9557 packages

Number of packages built each day:
Mar 28: 805
Mar 29: 466
Mar 30: 843
Mar 31: 455
Apr 1: 4159
Apr 2: 186
Apr 3: 153
Apr 4: 403
Apr 5: 282
Apr 6: 465
Apr 7: 446
Apr 8: 394
Apr 9: 500
Apr 10: 474
Apr 11: 486
Apr 12: 1903
Apr 13: 1064


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-03-28/summary.log

Build failures: 6
http://build-failures.rhaalovely.net/powerpc/2021-03-28/comms/sigrok/pulseview.log
http://build-failures.rhaalovely.net/powerpc/2021-03-28/comms/sigrok/sigrok-cli.log
http://build-failures.rhaalovely.net/powerpc/2021-03-28/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-03-28/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-03-28/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-03-28/productivity/gnucash.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/summary.log

New failures:

Resolved failures:
-failures/lang/ghc.log
-failures/multimedia/lives.log
-failures/net/dico.log

Packages newly built:
+databases/sqlcipher
+devel/py-astunparse,python3
+devel/py-minidump,python3
+fonts/league-fonts/blackout
+fonts/league-fonts/chunk
+fonts/league-fonts/fanwood
+fonts/league-fonts/gb1911
+fonts/league-fonts/goudy
+fonts/league-fonts/junction
+fonts/league-fonts/knewave
+fonts/league-fonts/league-gothic
+fonts/league-fonts/league-mono
+fonts/league-fonts/league-script-number-one
+fonts/league-fonts/league-spartan
+fonts/league-fonts/lindenhill
+fonts/league-fonts/orbitron
+fonts/league-fonts/ostrich-sans
+fonts/league-fonts/prociono
+fonts/league-fonts/raleway
+fonts/league-fonts/sniglet
+inputmethods/ibus,-gtk2
+inputmethods/ibus,-gtk4
+inputmethods/ibus,-main
+meta/league-fonts
+net/dico
+net/pidgin-skypeweb
+security/py-fickling,python3
+sysutils/py-blessed,python3
+www/nextcloud/20
+www/nextcloud/21
+www/py-urlgrabber,python3
+x11/gnome/caribou,-gtk2
+x11/gnome/caribou,-main

Packages not built this time:
-archivers/py-rarfile
-audio/audacious/player,qt5
-audio/audacious/plugins,qt5
-audio/py-musicbrainzngs
-databases/py-puppetdb
-databases/py-sqlite
-devel/py-colorama
-devel/py-gevent
-devel/py-minidump
-devel/py-protobuf
-devel/py-ptyprocess
-devel/py-setproctitle
-devel/py-test-timeout
-editors/sigil
-fonts/league-fonts
-geo/merkaartor
-meta/audacious,qt5
-net/py-geventhttpclient
-net/py-nbxmpp
-security/py-axolotl
-security/py-rsa
-security/py-service_identity
-shells/nsh
-shells/nsh,static
-sysutils/py-parallel-ssh
-sysutils/py-statgrab
-sysutils/upt/upt
-sysutils/upt/upt-cpan
-sysutils/upt/upt-openbsd
-sysutils/upt/upt-pypi
-sysutils/upt/upt-rubygems
-textproc/py-emoji
-textproc/py-ofxparse
-textproc/py-podcastparser
-textproc/py-unidecode,
-www/nextcloud
-www/py-genshi
-www/py-html5-parser
-www/py-http_ece
-www/py-jwt
-www/py-query
-www/py-urlgrabber
-www/py-webob
-www/py-wsgiproxy
-x11/py-sip-qt5



powerpc bulk build report

2021-03-28 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Mar 11 08:08:12 MST 2021
Finished: Sun Mar 28 00:43:56 MDT 2021
Duration: 16 Days 15 hours 36 minutes

Built using OpenBSD 6.9-beta (GENERIC) #854: Tue Mar  9 17:23:50 MST 2021

Built 9560 packages

Number of packages built each day:
Mar 11: 839
Mar 12: 245
Mar 13: 470
Mar 14: 414
Mar 15: 652
Mar 16: 283
Mar 17: 184
Mar 18: 360
Mar 19: 228
Mar 20: 315
Mar 21: 493
Mar 22: 444
Mar 23: 385
Mar 24: 320
Mar 25: 551
Mar 26: 468
Mar 27: 2579
Mar 28: 330



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-03-11/summary.log

Build failures: 9
http://build-failures.rhaalovely.net/powerpc/2021-03-11/comms/sigrok/pulseview.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/comms/sigrok/sigrok-cli.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/lang/ghc.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/multimedia/lives.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/net/dico.log
http://build-failures.rhaalovely.net/powerpc/2021-03-11/productivity/gnucash.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/multimedia/lives.log
 failures/summary.log

New failures:
+failures/comms/sigrok/pulseview.log
+failures/comms/sigrok/sigrok-cli.log
+failures/lang/ghc.log
+failures/net/dico.log
+failures/productivity/gnucash.log

Resolved failures:
-failures/audio/gtkpod.log
-failures/audio/nspmod.log
-failures/audio/wmtune.log
-failures/comms/birda.log
-failures/comms/efax.log
-failures/comms/seyon.log
-failures/databases/pkglocatedb.log
-failures/devel/mingw.log
-failures/devel/remake.log
-failures/editors/tea.log
-failures/emulators/pcsxr.log
-failures/games/egoboo.log
-failures/games/oolite.log
-failures/games/vms-empire.log
-failures/graphics/dpic.log
-failures/lang/guile2.log
-failures/mail/avenger.log
-failures/mail/sma.log
-failures/mail/wmmultipop3.log
-failures/mail/wmpop3.log
-failures/misc/wmmand.log
-failures/multimedia/audiopreview.log
-failures/net/angst.log
-failures/net/ettercap.log
-failures/net/ipv6-toolkit.log
-failures/net/yersinia.log
-failures/security/bsd-airtools.log
-failures/security/foremost.log
-failures/security/tempwatch.log
-failures/sysutils/radmind.log
-failures/sysutils/wmmon.log
-failures/sysutils/wmwlmon.log
-failures/www/sarg.log
-failures/x11/agar/test.log
-failures/x11/golem.log
-failures/x11/wind.log
-failures/x11/wminfo.log

Packages newly built:
+archivers/pecl-lzf,php80
+archivers/pecl-rar,php80
+audio/libebur128
+audio/nspmod
+audio/wmtune
+comms/birda
+comms/efax
+databases/pecl-redis,php80
+databases/pkglocatedb
+databases/ports-readmes-dancer
+databases/recoll,-gui
+databases/recoll,-main
+devel/autoconf/2.71
+devel/bats
+devel/epoll-shim
+devel/libtalloc,
+devel/libtalloc,,-main
+devel/libtalloc,,-python
+devel/libtalloc,-main
+devel/libtalloc,-python
+devel/py-crayons,python3
+devel/py-progress,python3
+devel/py-pyprof2calltree,python3
+devel/remake
+devel/robin-map
+emulators/qemu,-ga
+emulators/qemu,-main
+fonts/vollkorn
+games/egoboo
+games/moonlight-qt
+games/oolite
+games/vms-empire
+graphics/dpic
+lang/guile2
+lang/php/8.0
+lang/php/8.0,-apache
+lang/php/8.0,-bz2
+lang/php/8.0,-cgi
+lang/php/8.0,-curl
+lang/php/8.0,-dba
+lang/php/8.0,-dbg
+lang/php/8.0,-enchant
+lang/php/8.0,-gd
+lang/php/8.0,-gmp
+lang/php/8.0,-imap
+lang/php/8.0,-intl
+lang/php/8.0,-ldap
+lang/php/8.0,-main
+lang/php/8.0,-mysqli
+lang/php/8.0,-odbc
+lang/php/8.0,-pcntl
+lang/php/8.0,-pdo_dblib
+lang/php/8.0,-pdo_mysql
+lang/php/8.0,-pdo_odbc
+lang/php/8.0,-pdo_pgsql
+lang/php/8.0,-pdo_sqlite
+lang/php/8.0,-pgsql
+lang/php/8.0,-pspell
+lang/php/8.0,-shmop
+lang/php/8.0,-snmp
+lang/php/8.0,-soap
+lang/php/8.0,-sqlite3
+lang/php/8.0,-tidy
+lang/php/8.0,-xsl
+lang/php/8.0,-zip
+lang/rakudo
+mail/pecl-mailparse,php80
+mail/rspamd,hyperscan
+mail/sma
+misc/fortunes-ru
+misc/wmmand
+net/ettercap
+net/ipv6-toolkit
+net/yersinia
+security/foremost
+security/pecl-mcrypt,php80
+sysutils/radmind
+sysutils/wmmon
+sysutils/wmwlmon
+textproc/p5-Pod-Parser
+textproc/pecl-yaml,php80
+textproc/py-sphinx
+textproc/recutils
+www/pecl-memcached,php80
+www/pecl-pledge,php80
+www/pecl-raphf,php80
+www/pecl-ssh2,php80
+www/py-aiohttp,python3
+www/py-flask-principal,python3
+www/py-html5-parser
+www/py-html5-parser,python3
+www/py-repoze-lru,python3
+www/py-repoze-profile,python3
+www/py-repoze-who,python3
+www/py-yarl,python3
+www/sarg
+x11/adwaita-qt
+x11/agar/test
+x11/gnome/aisleriot
+x11/kde-plasma/breeze-grub
+x11/kde-plasma/kdecoration
+x11/pmenu
+x11/wind
+x11/wminfo
+x11/xmenu

Packages not built this time:
-comms/sigrok/pulseview
-comms/sigrok/sigrok-cli
-databases/py-apsw
-databases/py-flask-sqlalchemy

powerpc bulk build report

2021-03-10 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Feb 22 01:12:21 MST 2021
Finished: Wed Mar 10 15:54:30 MST 2021
Duration: 16 Days 14 hours 42 minutes

Built using OpenBSD 6.9-beta (GENERIC) #846: Sat Feb 20 16:42:05 MST 2021

Built 9506 packages

Number of packages built each day:
Feb 22: 815
Feb 23: 257
Feb 24: 480
Feb 25: 659
Feb 26: 314
Feb 27: 298
Feb 28: 265
Mar 1: 3035
Mar 2: 238
Mar 3: 382
Mar 4: 392
Mar 5: 560
Mar 6: 334
Mar 7: 430
Mar 8: 530
Mar 9: 517
Mar 10: 2666



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-02-22/summary.log

Build failures: 41
http://build-failures.rhaalovely.net/powerpc/2021-02-22/audio/gtkpod.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/audio/nspmod.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/audio/wmtune.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/comms/birda.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/comms/efax.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/comms/seyon.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/databases/pkglocatedb.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/devel/mingw.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/devel/remake.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/editors/tea.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/emulators/pcsxr.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/games/egoboo.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/games/oolite.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/games/vms-empire.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/graphics/dpic.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/lang/guile2.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/mail/avenger.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/mail/sma.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/mail/wmmultipop3.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/mail/wmpop3.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/misc/wmmand.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/multimedia/audiopreview.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/multimedia/lives.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/net/angst.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/net/ettercap.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/net/ipv6-toolkit.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/net/yersinia.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/security/bsd-airtools.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/security/foremost.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/security/tempwatch.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/sysutils/radmind.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/sysutils/wmmon.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/sysutils/wmwlmon.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/www/sarg.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/x11/agar/test.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/x11/golem.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/x11/wind.log
http://build-failures.rhaalovely.net/powerpc/2021-02-22/x11/wminfo.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/summary.log

New failures:
+failures/audio/gtkpod.log
+failures/audio/nspmod.log
+failures/audio/wmtune.log
+failures/comms/birda.log
+failures/comms/efax.log
+failures/comms/seyon.log
+failures/databases/pkglocatedb.log
+failures/devel/mingw.log
+failures/devel/remake.log
+failures/editors/tea.log
+failures/emulators/pcsxr.log
+failures/games/egoboo.log
+failures/games/oolite.log
+failures/games/vms-empire.log
+failures/graphics/dpic.log
+failures/lang/guile2.log
+failures/mail/avenger.log
+failures/mail/sma.log
+failures/mail/wmmultipop3.log
+failures/mail/wmpop3.log
+failures/misc/wmmand.log
+failures/multimedia/audiopreview.log
+failures/multimedia/lives.log
+failures/net/angst.log
+failures/net/ettercap.log
+failures/net/ipv6-toolkit.log
+failures/net/yersinia.log
+failures/security/bsd-airtools.log
+failures/security/foremost.log
+failures/security/tempwatch.log
+failures/sysutils/radmind.log
+failures/sysutils/wmmon.log
+failures/sysutils/wmwlmon.log
+failures/www/sarg.log
+failures/x11/agar/test.log
+failures/x11/golem.log
+failures/x11/wind.log
+failures/x11/wminfo.log

Resolved failures:
-failures/graphics/openvdb.log
-failures/productivity/gnucash.log
-failures/shells/ksh93.log

Packages newly built:

Re: powerpc bulk build report

2021-02-21 Thread Charlene Wendling
Hi,

On Sun, 21 Feb 2021 13:29:53 -0700 (MST)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Thu Feb  4 17:42:22 MST 2021
> Finished: Sun Feb 21 13:29:25 MST 2021
> Duration: 16 Days 19 hours 47 minutes

> http://build-failures.rhaalovely.net/powerpc/2021-02-04/graphics/openvdb.log

This new port won't be built on powerpc, see
https://marc.info/?l=openbsd-ports-cvs=161387035817473=2

> http://build-failures.rhaalovely.net/powerpc/2021-02-04/shells/ksh93.log

Marked BROKEN, as seen on powerpc64.



powerpc bulk build report

2021-02-21 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Feb  4 17:42:22 MST 2021
Finished: Sun Feb 21 13:29:25 MST 2021
Duration: 16 Days 19 hours 47 minutes

Built using OpenBSD 6.8-current (GENERIC) #838: Tue Feb  2 08:24:45 MST 2021

Built 9595 packages

Number of packages built each day:
Feb 4: 500
Feb 5: 305
Feb 6: 137
Feb 7: 784
Feb 8: 516
Feb 9: 340
Feb 10: 319
Feb 11: 302
Feb 12: 429
Feb 13: 222
Feb 14: 397
Feb 15: 383
Feb 16: 333
Feb 17: 330
Feb 18: 690
Feb 19: 440
Feb 20: 546
Feb 21: 2622



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-02-04/summary.log

Build failures: 6
http://build-failures.rhaalovely.net/powerpc/2021-02-04/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-02-04/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-02-04/graphics/openvdb.log
http://build-failures.rhaalovely.net/powerpc/2021-02-04/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-02-04/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-02-04/shells/ksh93.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/shells/ksh93.log
 failures/summary.log

New failures:
+failures/graphics/openvdb.log

Resolved failures:
-failures/games/valyriatear.log
-failures/net/ntopng.log
-failures/net/pmacct,postgresql.log
-failures/sysutils/libvirt.log
-failures/x11/e17/elementary.log

Packages newly built:
+audio/ruby-taglib,ruby30
+audio/ruby-vorbis_comment,ruby30
+databases/ruby-amalgalite,ruby30
+databases/ruby-ldap,ruby30
+databases/ruby-mysql,ruby30
+databases/ruby-mysql2,ruby30
+databases/ruby-pg,ruby30
+databases/ruby-sequel,ruby30
+databases/ruby-sequel_pg,ruby30
+databases/ruby-sqlite3,ruby30
+databases/ruby-tiny_tds,ruby30
+databases/tdb,
+databases/tdb,,-main
+databases/tdb,,-python
+databases/tdb,-main
+databases/tdb,-python
+devel/libvirt-glib
+devel/py-lief,python3
+devel/ruby-arrayfields,ruby30
+devel/ruby-cicphash,ruby30
+devel/ruby-daemons,ruby30
+devel/ruby-ffi,ruby30
+devel/ruby-ffi-compiler
+devel/ruby-ffi-compiler,ruby26
+devel/ruby-ffi-compiler,ruby27
+devel/ruby-ffi-compiler,ruby30
+devel/ruby-kgio,ruby30
+devel/ruby-narray,ruby30
+devel/ruby-ncurses,ruby30
+devel/ruby-nio4r,ruby30
+devel/ruby-prof,ruby30
+devel/ruby-racc,ruby30
+devel/ruby-rb-gsl,ruby30
+devel/ruby-ref,ruby30
+devel/ruby-regexp_parser,ruby30
+devel/ruby-subset_sum,ruby30
+devel/ruby-yajl,ruby30
+graphics/alembic
+graphics/kcolorpicker
+graphics/kimageannotator
+graphics/ksnip
+graphics/libspiro
+graphics/opensubdiv
+graphics/ruby-rmagick,ruby30
+mail/ruby-mini_mime,ruby30
+net/ntopng
+net/pmacct
+net/pmacct,mysql
+net/pmacct,postgresql
+net/ruby-cbor,ruby30
+net/ruby-eventmachine,ruby30
+net/ruby-msgpack,ruby30
+net/ruby-public_suffix,ruby30
+security/py-argon2-cffi,python3
+security/ruby-argon2,ruby26
+security/ruby-argon2,ruby27
+security/ruby-argon2,ruby30
+security/ruby-bcrypt,ruby30
+security/ruby-gpgme,ruby30
+security/ruby-pledge,ruby30
+security/stegseek
+sysutils/collectd
+sysutils/collectd,-main
+sysutils/collectd,-memcachec
+sysutils/collectd,-mqtt
+sysutils/collectd,-mysql
+sysutils/collectd,-nut
+sysutils/collectd,-pgsql
+sysutils/collectd,-ping
+sysutils/collectd,-prometheus
+sysutils/collectd,-python
+sysutils/collectd,-redis
+sysutils/collectd,-riemann
+sysutils/collectd,-rrdtool
+sysutils/collectd,-snmp
+sysutils/collectd,-virt
+sysutils/libvirt
+sysutils/libvirt-python
+sysutils/libvirt-python,python3
+sysutils/p5-Sys-Virt
+sysutils/ruby-augeas,ruby30
+sysutils/ruby-libvirt,ruby26
+sysutils/ruby-libvirt,ruby27
+sysutils/ruby-libvirt,ruby30
+sysutils/ruby-posix-spawn,ruby30
+sysutils/ruby-shadow,ruby30
+textproc/ruby-fast-stemmer,ruby30
+textproc/ruby-fast_xs,ruby30
+textproc/ruby-hpricot,ruby30
+textproc/ruby-hyperestraier,ruby30
+textproc/ruby-nokogiri,ruby30
+textproc/ruby-rdiscount,ruby30
+textproc/ruby-redcarpet,ruby30
+textproc/ruby-redcloth,ruby30
+www/p5-Test-LWP-UserAgent
+www/py-requests-unixsocket,python3
+www/ruby-addressable,ruby30
+www/ruby-capybara,ruby30
+www/ruby-capybara-webkit,ruby30
+www/ruby-fcgi,ruby30
+www/ruby-ntlm,ruby30
+www/ruby-puma,ruby30
+www/ruby-rack,ruby30
+www/ruby-rack-test,ruby30
+www/ruby-raindrops,ruby30
+www/ruby-sassc,ruby30
+www/ruby-thin,ruby30
+www/ruby-unicorn,ruby30
+www/ruby-websocket-driver,ruby30
+www/ruby-websocket-extensions,ruby30
+www/ruby-xpath,ruby30
+x11/ruby-tk,ruby30

Packages not built this time:
-astro/sattrack
-audio/libgpod,
-audio/libgpod,,-main
-audio/libgpod,,-python
-audio/libgpod,-main
-audio/libgpod,-python
-audio/puddletag
-audio/py-mutagen
-audio/py-ogg
-audio/py-vorbis
-audio/soundtracker
-biology/nutdb
-databases/py-ldap3
-devel/p5-Regexp-Copy
-devel/ruby-thread_safe,ruby27
-editors/vim,gtk2
-editors/vim,gtk2,-lang
-editors/vim,gtk2,-main
-editors/vim,gtk2,lua
-editors/vim,gtk2,lua,-lang
-editors/vim,gtk2,lua,-main

Re: powerpc bulk build report

2021-02-06 Thread Charlene Wendling
On Wed, 3 Feb 2021 23:12:13 -0700 (MST)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Mon Jan 18 10:28:09 MST 2021
> Finished: Wed Feb  3 23:11:47 MST 2021
> Duration: 16 Days 12 hours 44 minutes
> 
> Built using OpenBSD 6.8-current (GENERIC) #830: Sun Jan 17 08:10:13
> MST 2021

Some comments:

> http://build-failures.rhaalovely.net/powerpc/2021-01-18/games/valyriatear.log

It won't be built anymore on BE_ARCHS until upstream fix their code.

> http://build-failures.rhaalovely.net/powerpc/2021-01-18/x11/e17/elementary.log

It has been removed from CVS.

> http://build-failures.rhaalovely.net/powerpc/2021-01-18/net/ntopng.log
> http://build-failures.rhaalovely.net/powerpc/2021-01-18/net/pmacct,postgresql.log

It's a temporary failure due to a desync between the kernel used and the
ports tree, see https://github.com/openbsd/src/commit/ff78d6edd
They'll be back once the next bulk is finished.




powerpc bulk build report

2021-02-03 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Jan 18 10:28:09 MST 2021
Finished: Wed Feb  3 23:11:47 MST 2021
Duration: 16 Days 12 hours 44 minutes

Built using OpenBSD 6.8-current (GENERIC) #830: Sun Jan 17 08:10:13 MST 2021

Built 9539 packages

Number of packages built each day:
Jan 18: 722
Jan 19: 68
Jan 20: 364
Jan 21: 490
Jan 22: 514
Jan 23: 443
Jan 24: 397
Jan 25: 244
Jan 26: 396
Jan 27: 190
Jan 28: 471
Jan 29: 612
Jan 30: 335
Jan 31: 585
Feb 1: 394
Feb 2: 456
Feb 3: 2858



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-01-18/summary.log

Build failures: 10
http://build-failures.rhaalovely.net/powerpc/2021-01-18/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/net/ntopng.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/net/pmacct,postgresql.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2021-01-18/x11/e17/elementary.log

Recurrent failures:
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/shells/ksh93.log
 failures/summary.log

New failures:
+failures/net/ntopng.log
+failures/net/pmacct,postgresql.log

Resolved failures:

Packages newly built:
+comms/syncterm
+databases/p5-SQL-Abstract-More
+devel/autoconf/2.70
+devel/dasm
+devel/flatbuffers
+devel/fmt
+devel/p5-Alien-Base
+devel/p5-Alien-Base-ModuleBuild
+devel/p5-Alien-LibGumbo
+devel/p5-Data-Perl
+devel/p5-IO-Handle-Util
+devel/p5-Module-Path
+devel/p5-MooX-HandlesVia
+devel/p5-MooX-TypeTiny
+devel/p5-MooX-late
+devel/p5-Path-Dispatcher
+devel/p5-Shell-Config-Generate
+devel/p5-Shell-Guess
+devel/p5-Sub-HandlesVia
+devel/p5-asa
+devel/py-rcsparse,python3
+devel/ruby-sync
+devel/ruby-sync,ruby27
+games/inform6/compiler
+games/inform6/library
+graphics/libimagequant
+mail/dcc
+mail/opensmtpd-filters/admdscrub
+misc/py-jdcal,python3
+net/py2-dnspython
+sysutils/p5-Unix-Process
+sysutils/portroach-cli
+textproc/p5-Encode-HanExtra
+textproc/py-et_xmlfile,python3
+textproc/py-openpyxl,python3
+www/p5-HTML-FormatExternal
+www/p5-HTML-Gumbo
+www/p5-HTTP-Headers-ActionPack
+www/p5-Web-Machine
+x11/py-pyglet,python3
+x11/qt5/qtdeclarative,

Packages not built this time:
-devel/py-mulpyplexer
-devel/py-tzlocal
-devel/pylint,python3,-gui
-devel/pylint,python3,-main
-devel/subversion,python3
-devel/subversion,python3,-ap2
-devel/subversion,python3,-gnome-keyring
-devel/subversion,python3,-main
-devel/subversion,python3,-perl
-devel/subversion,python3,-python
-devel/subversion,python3,-ruby
-games/naev/base
-games/naev/data
-net/ntopng
-net/pmacct
-net/pmacct,mysql
-net/pmacct,postgresql
-net/py-dnspython
-textproc/py-commonmark
-textproc/py-recommonmark
-textproc/py-sphinx-notfound-page
-textproc/py-sphinx_guzzle_theme



powerpc bulk build report

2021-01-17 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Jan  1 13:21:31 MST 2021
Finished: Sun Jan 17 22:06:47 MST 2021
Duration: 16 Days 8 hours 45 minutes

Built using OpenBSD 6.8-current (GENERIC) #823: Fri Jan  1 03:51:40 MST 2021

Built 9517 packages

Number of packages built each day:
Jan 1: 6384
Jan 2: 190
Jan 3: 557
Jan 4: 391
Jan 5: 652
Jan 6: 361
Jan 7: 402
Jan 8: 244
Jan 9: 336
Jan 10: 256
Jan 11: 429
Jan 12: 452
Jan 13: 375
Jan 14: 446
Jan 15: 452
Jan 16: 408
Jan 17: 2844


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2021-01-01/summary.log

Build failures: 8
http://build-failures.rhaalovely.net/powerpc/2021-01-01/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2021-01-01/x11/e17/elementary.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log

New failures:

Resolved failures:
-failures/games/scummvm.log

Packages newly built:
+biology/py-biopython,python3
+databases/recoll
+devel/atkmm236
+devel/glibmm268
+devel/p5-File-Slurp-Tiny
+devel/pangomm248
+emulators/tnylpo
+games/bass
+games/fotaq
+games/scummvm
+lang/ruby/3.0
+lang/ruby/3.0,-gdbm
+lang/ruby/3.0,-main
+lang/ruby/3.0,-ri_docs
+net/icinga/web2-module-incubator
+net/icinga/web2-module-ipl
+net/icinga/web2-module-reactbundle
+security/libmodsecurity
+security/stegcracker
+telephony/asterisk,-vm_imap
+telephony/asterisk,-vm_odbc
+textproc/libxml++40
+textproc/libxml++50
+x11/gtkmm40

Packages not built this time:
-archivers/py-lz4
-biology/py-biopython
-databases/py-sqlobject
-devel/py-lazy-object-proxy
-lang/python/3.7
-lang/python/3.7,-gdbm
-lang/python/3.7,-idle
-lang/python/3.7,-main
-lang/python/3.7,-tests
-lang/python/3.7,-tkinter
-misc/gtk3mm-documentation
-net/py-cares
-net/scapy,python3
-telephony/asterisk,imap
-telephony/asterisk,imap,-calendar
-telephony/asterisk,imap,-http_post
-telephony/asterisk,imap,-kqueue
-telephony/asterisk,imap,-ldap
-telephony/asterisk,imap,-lua
-telephony/asterisk,imap,-main
-telephony/asterisk,imap,-odbc
-telephony/asterisk,imap,-pgsql
-telephony/asterisk,imap,-snmp
-telephony/asterisk,imap,-speex
-telephony/asterisk,imap,-tds
-textproc/libxml++3
-x11/qt3
-x11/qt3,
-x11/qt3,,-examples
-x11/qt3,,-html
-x11/qt3,,-main
-x11/qt3,,-mysql
-x11/qt3,,-postgresql
-x11/qt3,,-sqlite2
-x11/qt3,-examples
-x11/qt3,-html
-x11/qt3,-main
-x11/qt3,-mysql
-x11/qt3,-postgresql
-x11/qt3,-sqlite2
-x11/qt5/qtdeclarative,



powerpc bulk build report

2020-12-31 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Tue Dec 15 13:25:51 MST 2020
Finished: Thu Dec 31 19:28:39 MST 2020
Duration: 16 Days 6 hours 3 minutes

Built using OpenBSD 6.8-current (GENERIC) #816: Sun Dec 13 07:35:05 MST 2020

Built 9511 packages

Number of packages built each day:
Dec 15: 735
Dec 16: 269
Dec 17: 615
Dec 18: 402
Dec 19: 625
Dec 20: 349
Dec 21: 246
Dec 22: 204
Dec 23: 388
Dec 24: 309
Dec 25: 420
Dec 26: 446
Dec 27: 374
Dec 28: 356
Dec 29: 513
Dec 30: 467
Dec 31: 2793


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-12-15/summary.log

Build failures: 9
http://build-failures.rhaalovely.net/powerpc/2020-12-15/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/games/scummvm.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-12-15/x11/e17/elementary.log

Recurrent failures:
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/games/scummvm.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/productivity/gnucash.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/sysutils/libvirt.log
 failures/x11/e17/elementary.log

New failures:

Resolved failures:
-failures/archivers/innoextract.log
-failures/geo/spatialite/gui.log
-failures/lang/squeak/sources.log
-failures/net/icinga/core2,-main.log
-failures/net/powerdns_recursor.log
-failures/www/sogo.log

Packages newly built:
+archivers/innoextract
+databases/leveldb
+geo/spatialite/gui
+graphics/py-pyx,python3
+graphics/scratch
+lang/squeak/funsqueak
+lang/squeak/image
+lang/squeak/sources
+lang/squeak/vm
+math/visidata
+net/catgirl
+net/icinga/core2
+net/icinga/core2,-main
+net/icinga/core2,-mysql
+net/icinga/core2,-pgsql
+net/lagrange
+net/nagios/nsca-ng
+net/nagios/nsca-ng,-main
+net/powerdns_recursor
+net/scapy,python3
+productivity/epr-reader
+security/hashid
+security/ssh-audit
+security/wfuzz
+sysutils/glances
+textproc/p5-Text-Soundex
+www/sogo
+x11/qt5/qtdeclarative,

Packages not built this time:
-audio/py-acoustid
-databases/py-mysqlclient
-graphics/openjpeg
-graphics/py-pyx
-www/py-frozen-flask
-x11/fvwm2,-fvicons
-x11/fvwm2,-fvwm2
-x11/fvwm2,-main
-x11/kde-shared-data
-x11/kde/accessibility3
-x11/kde/arts3
-x11/kde/base3
-x11/kde/base3,
-x11/kde/base3,,-en_US
-x11/kde/base3,,-locale
-x11/kde/base3,,-main
-x11/kde/base3,,-samba
-x11/kde/base3,-en_US
-x11/kde/base3,-locale
-x11/kde/base3,-main
-x11/kde/base3,-samba
-x11/kde/games3
-x11/kde/i18n3/af
-x11/kde/i18n3/ar
-x11/kde/i18n3/az
-x11/kde/i18n3/be
-x11/kde/i18n3/bg
-x11/kde/i18n3/bn
-x11/kde/i18n3/br
-x11/kde/i18n3/bs
-x11/kde/i18n3/ca
-x11/kde/i18n3/cs
-x11/kde/i18n3/csb
-x11/kde/i18n3/cy
-x11/kde/i18n3/da
-x11/kde/i18n3/de
-x11/kde/i18n3/el
-x11/kde/i18n3/en_GB
-x11/kde/i18n3/eo
-x11/kde/i18n3/es
-x11/kde/i18n3/et
-x11/kde/i18n3/eu
-x11/kde/i18n3/fa
-x11/kde/i18n3/fi
-x11/kde/i18n3/fr
-x11/kde/i18n3/fy
-x11/kde/i18n3/ga
-x11/kde/i18n3/gl
-x11/kde/i18n3/he
-x11/kde/i18n3/hi
-x11/kde/i18n3/hr
-x11/kde/i18n3/hu
-x11/kde/i18n3/is
-x11/kde/i18n3/it
-x11/kde/i18n3/ja
-x11/kde/i18n3/kk
-x11/kde/i18n3/km
-x11/kde/i18n3/ko
-x11/kde/i18n3/lt
-x11/kde/i18n3/lv
-x11/kde/i18n3/mk
-x11/kde/i18n3/mn
-x11/kde/i18n3/ms
-x11/kde/i18n3/nb
-x11/kde/i18n3/nds
-x11/kde/i18n3/nl
-x11/kde/i18n3/nn
-x11/kde/i18n3/pa
-x11/kde/i18n3/pl
-x11/kde/i18n3/pt
-x11/kde/i18n3/pt_BR
-x11/kde/i18n3/ro
-x11/kde/i18n3/ru
-x11/kde/i18n3/rw
-x11/kde/i18n3/se
-x11/kde/i18n3/sk
-x11/kde/i18n3/sl
-x11/kde/i18n3/sr
-x11/kde/i18n3/sr@Latn
-x11/kde/i18n3/ss
-x11/kde/i18n3/sv
-x11/kde/i18n3/ta
-x11/kde/i18n3/te
-x11/kde/i18n3/tg
-x11/kde/i18n3/th
-x11/kde/i18n3/tr
-x11/kde/i18n3/uk
-x11/kde/i18n3/uz
-x11/kde/i18n3/uz@cyrillic
-x11/kde/i18n3/vi
-x11/kde/i18n3/wa
-x11/kde/i18n3/zh_CN
-x11/kde/i18n3/zh_TW
-x11/kde/libs3
-x11/kde/libs3,
-x11/kde/libs3,,-langlist
-x11/kde/libs3,,-main
-x11/kde/libs3,-langlist
-x11/kde/libs3,-main



Re: powerpc bulk build report

2020-12-15 Thread Otto Moerbeek
On Tue, Dec 15, 2020 at 03:56:19PM +0100, Charlene Wendling wrote:

> On Tue, 15 Dec 2020 08:42:58 +0100
> Otto Moerbeek wrote:
> 
> > On Tue, Dec 15, 2020 at 02:28:01AM -0500, Brad Smith wrote:
> > 
> > > On Tue, Dec 15, 2020 at 08:19:13AM +0100, Otto Moerbeek wrote:
> > > > On Mon, Dec 14, 2020 at 11:05:45AM +0100, Otto Moerbeek wrote:
> > > > 
> > > > > On Mon, Dec 14, 2020 at 02:52:02AM -0500, Brad Smith wrote:
> > > > > 
> > > > > > On 12/14/2020 2:39 AM, Otto Moerbeek wrote:
> > > > > > > On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:
> > > > > > > 
> > > > > > > > I'm on my phone and don't have another log to compare to
> > > > > > > > but this line stuck out to me..
> > > > > > > > 
> > > > > > > > checking for the toolset name used by Boost for c++...
> > > > > > > > gcc42 -gcc
> > > > > > > That configure line is alwasy reported, also on other
> > > > > > > platforms, since it does not seem to cause issues there I
> > > > > > > never looked into it.
> > > > > > 
> > > > > > Could be a potential issue. Just something to consider. I'm
> > > > > > curious to see what it says on amd64 and i386.
> > > > > 
> > > > > amd64 and arm64:
> > > > > 
> > > > >   checking for the toolset name used by Boost for c++...
> > > > > gcc42 -gcc
> > > > > 
> > > > > I don't have an i386 at thand,
> > > > > 
> > > > >   -Otto
> > > > > 
> > > > 
> > > > Removing pacthes/patch-libs_context_build_Jamfile_v2 in boost and
> > > > bumping the revision produces a boost-md that has the correct
> > > > symbols. Test build for pdns_recursor is still running, but it
> > > > now detects the boost context functionality correctly.
> > > > 
> > > > As for the toolchain configure check in pdns_recursor: the value
> > > > produced is not used by the build afaiks. I'll put it on my list
> > > > of things to look at, but it's not high priority.
> > > 
> > > Ah, yes. I noticed that was merged upstream and released with 1.69
> > > when looking at newer Boost. The patch there was mismerged by
> > > patch(1).
> > 
> > Yes, ok,
> > 
> > -Otto
> 
> This also fixes that build failure:
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/icinga/core2,-main.log
> 
> Thanks a lot! OK cwen@

I can now confirm pdns_recursor builds and runs fine wit this as well,

-Otto

> 
> > > 
> > > 
> > > Index: Makefile
> > > ===
> > > RCS file: /home/cvs/ports/devel/boost/Makefile,v
> > > retrieving revision 1.104
> > > diff -u -p -u -p -r1.104 Makefile
> > > --- Makefile  26 Nov 2020 00:08:36 -  1.104
> > > +++ Makefile  15 Dec 2020 07:24:21 -
> > > @@ -6,7 +6,7 @@ COMMENT-main= free peer-reviewed portabl
> > >  COMMENT-md=  machine-dependent libraries for boost
> > >  
> > >  VERSION= 1.70.0
> > > -REVISION=0
> > > +REVISION=1
> > >  DISTNAME=boost_${VERSION:S/./_/g}
> > >  PKGNAME-main=boost-${VERSION}
> > >  PKGNAME-md=  boost-md-${VERSION}
> > > Index: patches/patch-libs_context_build_Jamfile_v2
> > > ===
> > > RCS file: patches/patch-libs_context_build_Jamfile_v2
> > > diff -N patches/patch-libs_context_build_Jamfile_v2
> > > --- patches/patch-libs_context_build_Jamfile_v2   5 Nov 2020
> > > 11:23:03 -1.3 +++ /dev/null   1 Jan 1970 00:00:00
> > > - @@ -1,17 +0,0 @@
> > > -$OpenBSD: patch-libs_context_build_Jamfile_v2,v 1.3 2020/11/05
> > > 11:23:03 sthen Exp $ -
> > > -ppc32_sysv_elf has 2 instances of "clang".
> > > -The second "clang" should be "gcc".
> > > -
> > > -Index: libs/context/build/Jamfile.v2
> > >  libs/context/build/Jamfile.v2.orig
> > > -+++ libs/context/build/Jamfile.v2
> > > -@@ -280,7 +280,7 @@ alias asm_sources
> > > -  32
> > > -  power
> > > -  elf
> > > -- clang
> > > -+ gcc
> > > -;
> > > - 
> > > - alias asm_sources
> > 



Re: powerpc bulk build report

2020-12-15 Thread Charlene Wendling
On Tue, 15 Dec 2020 08:42:58 +0100
Otto Moerbeek wrote:

> On Tue, Dec 15, 2020 at 02:28:01AM -0500, Brad Smith wrote:
> 
> > On Tue, Dec 15, 2020 at 08:19:13AM +0100, Otto Moerbeek wrote:
> > > On Mon, Dec 14, 2020 at 11:05:45AM +0100, Otto Moerbeek wrote:
> > > 
> > > > On Mon, Dec 14, 2020 at 02:52:02AM -0500, Brad Smith wrote:
> > > > 
> > > > > On 12/14/2020 2:39 AM, Otto Moerbeek wrote:
> > > > > > On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:
> > > > > > 
> > > > > > > I'm on my phone and don't have another log to compare to
> > > > > > > but this line stuck out to me..
> > > > > > > 
> > > > > > > checking for the toolset name used by Boost for c++...
> > > > > > > gcc42 -gcc
> > > > > > That configure line is alwasy reported, also on other
> > > > > > platforms, since it does not seem to cause issues there I
> > > > > > never looked into it.
> > > > > 
> > > > > Could be a potential issue. Just something to consider. I'm
> > > > > curious to see what it says on amd64 and i386.
> > > > 
> > > > amd64 and arm64:
> > > > 
> > > > checking for the toolset name used by Boost for c++...
> > > > gcc42 -gcc
> > > > 
> > > > I don't have an i386 at thand,
> > > > 
> > > > -Otto
> > > > 
> > > 
> > > Removing pacthes/patch-libs_context_build_Jamfile_v2 in boost and
> > > bumping the revision produces a boost-md that has the correct
> > > symbols. Test build for pdns_recursor is still running, but it
> > > now detects the boost context functionality correctly.
> > > 
> > > As for the toolchain configure check in pdns_recursor: the value
> > > produced is not used by the build afaiks. I'll put it on my list
> > > of things to look at, but it's not high priority.
> > 
> > Ah, yes. I noticed that was merged upstream and released with 1.69
> > when looking at newer Boost. The patch there was mismerged by
> > patch(1).
> 
> Yes, ok,
> 
>   -Otto

This also fixes that build failure:

> http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/icinga/core2,-main.log

Thanks a lot! OK cwen@

> > 
> > 
> > Index: Makefile
> > ===
> > RCS file: /home/cvs/ports/devel/boost/Makefile,v
> > retrieving revision 1.104
> > diff -u -p -u -p -r1.104 Makefile
> > --- Makefile26 Nov 2020 00:08:36 -  1.104
> > +++ Makefile15 Dec 2020 07:24:21 -
> > @@ -6,7 +6,7 @@ COMMENT-main=   free peer-reviewed portabl
> >  COMMENT-md=machine-dependent libraries for boost
> >  
> >  VERSION=   1.70.0
> > -REVISION=  0
> > +REVISION=  1
> >  DISTNAME=  boost_${VERSION:S/./_/g}
> >  PKGNAME-main=  boost-${VERSION}
> >  PKGNAME-md=boost-md-${VERSION}
> > Index: patches/patch-libs_context_build_Jamfile_v2
> > ===
> > RCS file: patches/patch-libs_context_build_Jamfile_v2
> > diff -N patches/patch-libs_context_build_Jamfile_v2
> > --- patches/patch-libs_context_build_Jamfile_v2 5 Nov 2020
> > 11:23:03 -  1.3 +++ /dev/null   1 Jan 1970 00:00:00
> > - @@ -1,17 +0,0 @@
> > -$OpenBSD: patch-libs_context_build_Jamfile_v2,v 1.3 2020/11/05
> > 11:23:03 sthen Exp $ -
> > -ppc32_sysv_elf has 2 instances of "clang".
> > -The second "clang" should be "gcc".
> > -
> > -Index: libs/context/build/Jamfile.v2
> >  libs/context/build/Jamfile.v2.orig
> > -+++ libs/context/build/Jamfile.v2
> > -@@ -280,7 +280,7 @@ alias asm_sources
> > -  32
> > -  power
> > -  elf
> > -- clang
> > -+ gcc
> > -;
> > - 
> > - alias asm_sources
> 



Re: powerpc bulk build report

2020-12-15 Thread Brad Smith
On Tue, Dec 15, 2020 at 08:19:13AM +0100, Otto Moerbeek wrote:
> On Mon, Dec 14, 2020 at 11:05:45AM +0100, Otto Moerbeek wrote:
> 
> > On Mon, Dec 14, 2020 at 02:52:02AM -0500, Brad Smith wrote:
> > 
> > > On 12/14/2020 2:39 AM, Otto Moerbeek wrote:
> > > > On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:
> > > > 
> > > > > I'm on my phone and don't have another log to compare to but this 
> > > > > line stuck
> > > > > out to me..
> > > > > 
> > > > > checking for the toolset name used by Boost for c++... gcc42 -gcc
> > > > That configure line is alwasy reported, also on other platforms, since
> > > > it does not seem to cause issues there I never looked into it.
> > > 
> > > Could be a potential issue. Just something to consider. I'm curious to see
> > > what it says on amd64 and i386.
> > 
> > amd64 and arm64:
> > 
> > checking for the toolset name used by Boost for c++... gcc42 -gcc
> > 
> > I don't have an i386 at thand,
> > 
> > -Otto
> > 
> 
> Removing pacthes/patch-libs_context_build_Jamfile_v2 in boost and
> bumping the revision produces a boost-md that has the correct symbols.
> Test build for pdns_recursor is still running, but it now detects the
> boost context functionality correctly.
> 
> As for the toolchain configure check in pdns_recursor: the value
> produced is not used by the build afaiks. I'll put it on my list of
> things to look at, but it's not high priority.

Ah, yes. I noticed that was merged upstream and released with 1.69 when
looking at newer Boost. The patch there was mismerged by patch(1).


Index: Makefile
===
RCS file: /home/cvs/ports/devel/boost/Makefile,v
retrieving revision 1.104
diff -u -p -u -p -r1.104 Makefile
--- Makefile26 Nov 2020 00:08:36 -  1.104
+++ Makefile15 Dec 2020 07:24:21 -
@@ -6,7 +6,7 @@ COMMENT-main=   free peer-reviewed portabl
 COMMENT-md=machine-dependent libraries for boost
 
 VERSION=   1.70.0
-REVISION=  0
+REVISION=  1
 DISTNAME=  boost_${VERSION:S/./_/g}
 PKGNAME-main=  boost-${VERSION}
 PKGNAME-md=boost-md-${VERSION}
Index: patches/patch-libs_context_build_Jamfile_v2
===
RCS file: patches/patch-libs_context_build_Jamfile_v2
diff -N patches/patch-libs_context_build_Jamfile_v2
--- patches/patch-libs_context_build_Jamfile_v2 5 Nov 2020 11:23:03 -   
1.3
+++ /dev/null   1 Jan 1970 00:00:00 -
@@ -1,17 +0,0 @@
-$OpenBSD: patch-libs_context_build_Jamfile_v2,v 1.3 2020/11/05 11:23:03 sthen 
Exp $
-
-ppc32_sysv_elf has 2 instances of "clang".
-The second "clang" should be "gcc".
-
-Index: libs/context/build/Jamfile.v2
 libs/context/build/Jamfile.v2.orig
-+++ libs/context/build/Jamfile.v2
-@@ -280,7 +280,7 @@ alias asm_sources
-  32
-  power
-  elf
-- clang
-+ gcc
-;
- 
- alias asm_sources



Re: powerpc bulk build report

2020-12-14 Thread Otto Moerbeek
On Tue, Dec 15, 2020 at 02:28:01AM -0500, Brad Smith wrote:

> On Tue, Dec 15, 2020 at 08:19:13AM +0100, Otto Moerbeek wrote:
> > On Mon, Dec 14, 2020 at 11:05:45AM +0100, Otto Moerbeek wrote:
> > 
> > > On Mon, Dec 14, 2020 at 02:52:02AM -0500, Brad Smith wrote:
> > > 
> > > > On 12/14/2020 2:39 AM, Otto Moerbeek wrote:
> > > > > On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:
> > > > > 
> > > > > > I'm on my phone and don't have another log to compare to but this 
> > > > > > line stuck
> > > > > > out to me..
> > > > > > 
> > > > > > checking for the toolset name used by Boost for c++... gcc42 -gcc
> > > > > That configure line is alwasy reported, also on other platforms, since
> > > > > it does not seem to cause issues there I never looked into it.
> > > > 
> > > > Could be a potential issue. Just something to consider. I'm curious to 
> > > > see
> > > > what it says on amd64 and i386.
> > > 
> > > amd64 and arm64:
> > > 
> > >   checking for the toolset name used by Boost for c++... gcc42 -gcc
> > > 
> > > I don't have an i386 at thand,
> > > 
> > >   -Otto
> > > 
> > 
> > Removing pacthes/patch-libs_context_build_Jamfile_v2 in boost and
> > bumping the revision produces a boost-md that has the correct symbols.
> > Test build for pdns_recursor is still running, but it now detects the
> > boost context functionality correctly.
> > 
> > As for the toolchain configure check in pdns_recursor: the value
> > produced is not used by the build afaiks. I'll put it on my list of
> > things to look at, but it's not high priority.
> 
> Ah, yes. I noticed that was merged upstream and released with 1.69 when
> looking at newer Boost. The patch there was mismerged by patch(1).

Yes, ok,

-Otto

> 
> 
> Index: Makefile
> ===
> RCS file: /home/cvs/ports/devel/boost/Makefile,v
> retrieving revision 1.104
> diff -u -p -u -p -r1.104 Makefile
> --- Makefile  26 Nov 2020 00:08:36 -  1.104
> +++ Makefile  15 Dec 2020 07:24:21 -
> @@ -6,7 +6,7 @@ COMMENT-main= free peer-reviewed portabl
>  COMMENT-md=  machine-dependent libraries for boost
>  
>  VERSION= 1.70.0
> -REVISION=0
> +REVISION=1
>  DISTNAME=boost_${VERSION:S/./_/g}
>  PKGNAME-main=boost-${VERSION}
>  PKGNAME-md=  boost-md-${VERSION}
> Index: patches/patch-libs_context_build_Jamfile_v2
> ===
> RCS file: patches/patch-libs_context_build_Jamfile_v2
> diff -N patches/patch-libs_context_build_Jamfile_v2
> --- patches/patch-libs_context_build_Jamfile_v2   5 Nov 2020 11:23:03 
> -   1.3
> +++ /dev/null 1 Jan 1970 00:00:00 -
> @@ -1,17 +0,0 @@
> -$OpenBSD: patch-libs_context_build_Jamfile_v2,v 1.3 2020/11/05 11:23:03 
> sthen Exp $
> -
> -ppc32_sysv_elf has 2 instances of "clang".
> -The second "clang" should be "gcc".
> -
> -Index: libs/context/build/Jamfile.v2
>  libs/context/build/Jamfile.v2.orig
> -+++ libs/context/build/Jamfile.v2
> -@@ -280,7 +280,7 @@ alias asm_sources
> -  32
> -  power
> -  elf
> -- clang
> -+ gcc
> -;
> - 
> - alias asm_sources



Re: powerpc bulk build report

2020-12-14 Thread Otto Moerbeek
On Mon, Dec 14, 2020 at 11:05:45AM +0100, Otto Moerbeek wrote:

> On Mon, Dec 14, 2020 at 02:52:02AM -0500, Brad Smith wrote:
> 
> > On 12/14/2020 2:39 AM, Otto Moerbeek wrote:
> > > On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:
> > > 
> > > > I'm on my phone and don't have another log to compare to but this line 
> > > > stuck
> > > > out to me..
> > > > 
> > > > checking for the toolset name used by Boost for c++... gcc42 -gcc
> > > That configure line is alwasy reported, also on other platforms, since
> > > it does not seem to cause issues there I never looked into it.
> > 
> > Could be a potential issue. Just something to consider. I'm curious to see
> > what it says on amd64 and i386.
> 
> amd64 and arm64:
> 
>   checking for the toolset name used by Boost for c++... gcc42 -gcc
> 
> I don't have an i386 at thand,
> 
>   -Otto
> 

Removing pacthes/patch-libs_context_build_Jamfile_v2 in boost and
bumping the revision produces a boost-md that has the correct symbols.
Test build for pdns_recursor is still running, but it now detects the
boost context functionality correctly.

As for the toolchain configure check in pdns_recursor: the value
produced is not used by the build afaiks. I'll put it on my list of
things to look at, but it's not high priority.

-Otto



Re: powerpc bulk build report

2020-12-14 Thread Brad Smith

On 12/14/2020 2:39 AM, Otto Moerbeek wrote:

On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:


I'm on my phone and don't have another log to compare to but this line stuck
out to me..

checking for the toolset name used by Boost for c++... gcc42 -gcc

That configure line is alwasy reported, also on other platforms, since
it does not seem to cause issues there I never looked into it.


Could be a potential issue. Just something to consider. I'm curious to see
what it says on amd64 and i386.



Re: powerpc bulk build report

2020-12-14 Thread Brad Smith
I'm on my phone and don't have another log to compare to but this line 
stuck out to me..


checking for the toolset name used by Boost for c++... gcc42 -gcc

On December 14, 2020 2:31:05 a.m. Otto Moerbeek  wrote:


On Mon, Dec 14, 2020 at 12:14:19AM -0700, c...@openbsd.org wrote:


http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/powerdns_recursor.log


The root cause is that boost-md gets build with the userland context
switching primitives missing. I suppose something went wrong with the
recent boost update. I'll try to find out where if nobody beats me to
it.

-Otto



Sent with Aqua Mail for Android
https://www.mobisystems.com/aqua-mail


Re: powerpc bulk build report

2020-12-14 Thread Otto Moerbeek
On Mon, Dec 14, 2020 at 02:52:02AM -0500, Brad Smith wrote:

> On 12/14/2020 2:39 AM, Otto Moerbeek wrote:
> > On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:
> > 
> > > I'm on my phone and don't have another log to compare to but this line 
> > > stuck
> > > out to me..
> > > 
> > > checking for the toolset name used by Boost for c++... gcc42 -gcc
> > That configure line is alwasy reported, also on other platforms, since
> > it does not seem to cause issues there I never looked into it.
> 
> Could be a potential issue. Just something to consider. I'm curious to see
> what it says on amd64 and i386.

amd64 and arm64:

checking for the toolset name used by Boost for c++... gcc42 -gcc

I don't have an i386 at thand,

-Otto



Re: powerpc bulk build report

2020-12-13 Thread Otto Moerbeek
On Mon, Dec 14, 2020 at 02:36:37AM -0500, Brad Smith wrote:

> I'm on my phone and don't have another log to compare to but this line stuck
> out to me..
> 
> checking for the toolset name used by Boost for c++... gcc42 -gcc

That configure line is alwasy reported, also on other platforms, since
it does not seem to cause issues there I never looked into it.

-Otto

> 
> On December 14, 2020 2:31:05 a.m. Otto Moerbeek  wrote:
> 
> > On Mon, Dec 14, 2020 at 12:14:19AM -0700, c...@openbsd.org wrote:
> > 
> > > http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/powerdns_recursor.log
> > 
> > The root cause is that boost-md gets build with the userland context
> > switching primitives missing. I suppose something went wrong with the
> > recent boost update. I'll try to find out where if nobody beats me to
> > it.
> > 
> > -Otto
> 
> 
> Sent with Aqua Mail for Android
> https://www.mobisystems.com/aqua-mail



Re: powerpc bulk build report

2020-12-13 Thread Otto Moerbeek
On Mon, Dec 14, 2020 at 12:14:19AM -0700, c...@openbsd.org wrote:

> http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/powerdns_recursor.log

The root cause is that boost-md gets build with the userland context
switching primitives missing. I suppose something went wrong with the
recent boost update. I'll try to find out where if nobody beats me to
it.

-Otto




powerpc bulk build report

2020-12-13 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Nov 27 17:05:27 MST 2020
Finished: Mon Dec 14 00:13:57 MST 2020
Duration: 16 Days 7 hours 9 minutes

Built using OpenBSD 6.8-current (GENERIC) #810: Fri Nov 27 01:29:02 MST 2020

Built 9578 packages

Number of packages built each day:
Nov 27: 516
Nov 28: 344
Nov 29: 323
Nov 30: 545
Dec 1: 4993
Dec 2: 480
Dec 3: 240
Dec 4: 245
Dec 5: 404
Dec 6: 234
Dec 7: 449
Dec 8: 475
Dec 9: 330
Dec 10: 452
Dec 11: 564
Dec 12: 479
Dec 13: 2789
Dec 14: 116


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-11-27/summary.log

Build failures: 15
http://build-failures.rhaalovely.net/powerpc/2020-11-27/archivers/innoextract.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/games/scummvm.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/geo/spatialite/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/lang/squeak/sources.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/icinga/core2,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/net/powerdns_recursor.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/www/sogo.log
http://build-failures.rhaalovely.net/powerpc/2020-11-27/x11/e17/elementary.log

Recurrent failures:
 failures/archivers/innoextract.log
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/games/scummvm.log
 failures/games/valyriatear.log
 failures/geo/spatialite/gui.log
 failures/lang/gforth.log
 failures/net/icinga/core2,-main.log
 failures/net/powerdns_recursor.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/sysutils/libvirt.log
 failures/x11/e17/elementary.log

New failures:
+failures/lang/squeak/sources.log
+failures/productivity/gnucash.log
+failures/www/sogo.log

Resolved failures:
-failures/emulators/spike.log
-failures/lang/squeak/vm.log
-failures/sysutils/py-elasticsearch-curator.log
-failures/www/sope.log
-failures/www/webkitgtk4.log
-failures/x11/gnustep/dbuskit.log
-failures/x11/gnustep/gui.log
-failures/x11/gnustep/performance.log

Packages newly built:
+archivers/pecl-rar,php73
+archivers/pecl-rar,php74
+archivers/ruby-minitar,ruby27
+audio/easytag
+audio/gmpc
+audio/gmpc-plugins
+audio/grip
+audio/parlatype
+audio/rhythmbox
+converters/ruby-multi_json,ruby27
+databases/evolution-data-server
+databases/p5-Net-Prometheus
+databases/ruby-hiera-eyaml,ruby27
+databases/ruby-hiera3,ruby27
+databases/ruby-redis,ruby27
+databases/ruby-redis-namespace,ruby27
+databases/timescaledb
+devel/giggle
+devel/libgdata
+devel/lua-say
+devel/lua-say,lua52
+devel/lua-say,lua53
+devel/luassert
+devel/luassert,lua52
+devel/luassert,lua53
+devel/p5-Data-Section-Simple
+devel/p5-Struct-Dumb
+devel/py-tenacity,python3
+devel/rebar3
+devel/ruby-activesupport,ruby27
+devel/ruby-colored2,ruby27
+devel/ruby-colorize,ruby27
+devel/ruby-concurrent-ruby,ruby27
+devel/ruby-cri,ruby27
+devel/ruby-deep_merge,ruby27
+devel/ruby-diff-lcs,ruby27
+devel/ruby-fast_gettext,ruby27
+devel/ruby-get_process_mem,ruby27
+devel/ruby-gettext,ruby27
+devel/ruby-gettext-setup,ruby27
+devel/ruby-highline,ruby27
+devel/ruby-i18n,ruby27
+devel/ruby-indentation,ruby27
+devel/ruby-locale,ruby27
+devel/ruby-log4r,ruby27
+devel/ruby-metaclass,ruby27
+devel/ruby-minitest,ruby27
+devel/ruby-open4,ruby27
+devel/ruby-opt_parse_validator,ruby27
+devel/ruby-optimist,ruby27
+devel/ruby-polyglot,ruby27
+devel/ruby-puppet_forge,ruby27
+devel/ruby-rake-remote_task,ruby27
+devel/ruby-regexp_parser
+devel/ruby-regexp_parser,ruby26
+devel/ruby-regexp_parser,ruby27
+devel/ruby-rgen,ruby27
+devel/ruby-rspec/3/core,ruby27
+devel/ruby-rspec/3/expectations,ruby27
+devel/ruby-rspec/3/mocks,ruby27
+devel/ruby-rspec/3/support,ruby27
+devel/ruby-ruby-progressbar,ruby27
+devel/ruby-ruby_parser,ruby27
+devel/ruby-semantic_puppet,ruby27
+devel/ruby-sexp_processor,ruby27
+devel/ruby-sys-proctable,ruby27
+devel/ruby-systemu,ruby27
+devel/ruby-thor,ruby27
+devel/ruby-thread_safe,ruby27
+devel/ruby-tilt,ruby27
+devel/ruby-uuid,ruby27
+devel/ruby-xdg,ruby27
+devel/ruby-zeitwerk,ruby27
+devel/ruby-zentest,ruby27
+editors/tpad
+fonts/ttyp0-font
+fonts/ttyp0-font,ct
+fonts/ttyp0-font,nbd
+fonts/ttyp0-font,nbs
+fonts/ttyp0-font,sq
+fonts/ttyp0-font,sz
+games/grhino
+games/pioneers
+games/renpy
+graphics/birdfont
+graphics/evince
+graphics/gnofract4d
+graphics/gthumb
+graphics/py2-Pillow
+graphics/shotwell
+graphics/simple-scan
+mail/claws-mail
+mail/claws-mail,

powerpc bulk build report

2020-11-27 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Nov 11 15:24:16 MST 2020
Finished: Fri Nov 27 13:58:35 MST 2020
Duration: 15 Days 22 hours 34 minutes

Built using OpenBSD 6.8-current (GENERIC) #804: Wed Nov 11 02:39:50 MST 2020

Built 9449 packages

Number of packages built each day:
Nov 11: 585
Nov 12: 232
Nov 13: 464
Nov 14: 385
Nov 15: 734
Nov 16: 358
Nov 17: 285
Nov 18: 209
Nov 19: 289
Nov 20: 403
Nov 21: 415
Nov 22: 533
Nov 23: 380
Nov 24: 466
Nov 25: 464
Nov 26: 573
Nov 27: 2674


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-11-11/summary.log

Build failures: 20
http://build-failures.rhaalovely.net/powerpc/2020-11-11/archivers/innoextract.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/emulators/spike.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/games/scummvm.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/geo/spatialite/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/net/icinga/core2,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/net/powerdns_recursor.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/sysutils/py-elasticsearch-curator.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/www/webkitgtk4.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-11-11/x11/gnustep/performance.log



powerpc bulk build report

2020-11-06 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Oct 21 11:10:31 MDT 2020
Finished: Fri Nov  6 14:16:23 MST 2020
Duration: 16 Days 4 hours 6 minutes

Built using OpenBSD 6.8-current (GENERIC) #795: Wed Oct 21 04:38:46 MDT 2020

Built 9546 packages

Number of packages built each day:
Oct 21: 650
Oct 22: 147
Oct 23: 373
Oct 24: 647
Oct 25: 602
Oct 26: 320
Oct 27: 316
Oct 28: 318
Oct 29: 261
Oct 30: 358
Oct 31: 484
Nov 1: 474
Nov 2: 417
Nov 3: 567
Nov 4: 474
Nov 5: 527
Nov 6: 2611


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-10-21/summary.log

Build failures: 17
http://build-failures.rhaalovely.net/powerpc/2020-10-21/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/games/scummvm.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/geo/spatialite/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/security/recon-ng.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-10-21/x11/gnustep/performance.log



powerpc bulk build report

2020-10-18 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Oct  1 05:28:59 MDT 2020
Finished: Sun Oct 18 08:23:25 MDT 2020
Duration: 17 Days 2 hours 54 minutes

Built using OpenBSD 6.8 (GENERIC) #789: Tue Sep 29 15:50:25 MDT 2020

Built 9858 packages

Number of packages built each day:
Oct 1: 6837
Oct 2: 237
Oct 3: 511
Oct 4: 585
Oct 5: 428
Oct 6: 307
Oct 7: 292
Oct 8: 343
Oct 9: 318
Oct 10: 369
Oct 11: 353
Oct 12: 453
Oct 13: 433
Oct 14: 365
Oct 15: 562
Oct 16: 401
Oct 17: 499
Oct 18: 2524


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-10-01/summary.log

Build failures: 16
http://build-failures.rhaalovely.net/powerpc/2020-10-01/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/games/fs2open.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/x11/gnustep/performance.log
http://build-failures.rhaalovely.net/powerpc/2020-10-01/x11/kitty.log

Recurrent failures:
 failures/emulators/frodo.log
 failures/emulators/higan.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/lang/squeak/vm.log
 failures/productivity/gnucash.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/sysutils/libvirt.log
 failures/www/sope.log
 failures/x11/e17/elementary.log
 failures/x11/gnustep/dbuskit.log
 failures/x11/gnustep/gui.log
 failures/x11/gnustep/performance.log
 failures/x11/kitty.log

New failures:
+failures/games/fs2open.log

Resolved failures:
-failures/archivers/innoextract.log
-failures/archivers/p5-POE-Filter-Zlib.log
-failures/archivers/py-lzo.log
-failures/audio/calf.log
-failures/audio/ncmpc.log
-failures/audio/p5-gnupod.log
-failures/audio/pacpl.log
-failures/audio/paulstretch.log
-failures/audio/xmms2.log
-failures/books/mason-book.log
-failures/converters/html2wml.log
-failures/converters/p5-JSON-Any.log
-failures/converters/wv2.log
-failures/databases/p5-AnyEvent-CouchDB.log
-failures/databases/p5-ldap.log
-failures/devel/arm-none-eabi/gdb.log
-failures/devel/avr/gdb.log
-failures/devel/commoncpp.log
-failures/devel/libgit2/py-git2.log
-failures/devel/p5-Class-C3.log
-failures/devel/p5-Date-Extract.log
-failures/devel/p5-MooseX-Log-Log4perl.log
-failures/devel/p5-POE-Component-Supervisor.log
-failures/devel/p5-Parse-Method-Signatures.log
-failures/devel/p5-SVN-Web.log
-failures/devel/p5-Test-POE-Server-TCP.log
-failures/devel/quilt.log
-failures/devel/ruby-colorize,ruby26.log
-failures/devel/splint.log
-failures/devel/udis86.log
-failures/devel/vanessa/socket.log
-failures/devel/xdg-user-dirs.log
-failures/devel/zeal.log
-failures/editors/featherpad.log
-failures/editors/focuswriter.log
-failures/editors/teaqt.log
-failures/editors/vim,no_x11,perl,python,ruby,-main.log
-failures/editors/xemacs21/stable.log
-failures/emulators/dgen-sdl.log
-failures/games/brumbrumrally.log
-failures/games/dangerdeep.log
-failures/games/frozen-bubble,-main.log
-failures/games/openomf.log
-failures/games/puzzles.log
-failures/games/roadfighter.log
-failures/games/scummvm-tools.log
-failures/games/tuxpaint.log
-failures/games/zangband,no_x11.log
-failures/geo/spatialite/tools.log
-failures/graphics/ctl.log
-failures/graphics/dvdrip.log
-failures/graphics/evince,light.log
-failures/graphics/geeqie.log
-failures/graphics/gphoto2.log
-failures/graphics/opencolorio.log
-failures/graphics/p5-Barcode-DataMatrix.log
-failures/graphics/ufraw.log
-failures/graphics/xsane.log
-failures/inputmethods/fcitx-qt5.log
-failures/inputmethods/ibus-skk.log
-failures/lang/hashlink.log
-failures/lang/swi-prolog.log
-failures/mail/courier-imap,-main.log
-failures/mail/nmzmail.log
-failures/mail/p5-Mail-SPF-Query.log
-failures/mail/postgrey.log
-failures/mail/sylpheed.log
-failures/math/coq.log
-failures/math/lpsolve/python.log
-failures/math/p5-GraphViz.log
-failures/misc/p5-File-MMagic-XS.log
-failures/misc/p5-Finance-QuoteHist.log
-failures/multimedia/get_iplayer.log
-failures/multimedia/lives.log
-failures/multimedia/oggz.log
-failures/multimedia/p5-AMF-Connection.log
-failures/multimedia/p5-Data-AMF.log

powerpc bulk build report

2020-10-01 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Sep 14 04:37:02 MDT 2020
Finished: Thu Oct  1 00:47:23 MDT 2020
Duration: 16 Days 20 hours 10 minutes

Built using OpenBSD 6.8-beta (GENERIC) #783: Sat Sep 12 17:32:34 MDT 2020

Built 7959 packages

Number of packages built each day:
Sep 16: 1
Sep 17: 247
Sep 18: 629
Sep 19: 421
Sep 20: 204
Sep 21: 349
Sep 22: 300
Sep 23: 348
Sep 24: 534
Sep 25: 367
Sep 26: 370
Sep 27: 380
Sep 28: 586
Sep 29: 449
Sep 30: 2374
Oct 1: 400


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-09-14/summary.log

Build failures: 178
http://build-failures.rhaalovely.net/powerpc/2020-09-14/archivers/innoextract.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/archivers/p5-POE-Filter-Zlib.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/archivers/py-lzo.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/audio/calf.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/audio/ncmpc.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/audio/p5-gnupod.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/audio/pacpl.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/audio/paulstretch.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/audio/xmms2.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/books/mason-book.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/converters/html2wml.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/converters/p5-JSON-Any.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/converters/wv2.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/databases/p5-AnyEvent-CouchDB.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/databases/p5-ldap.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/arm-none-eabi/gdb.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/avr/gdb.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/commoncpp.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/libgit2/py-git2.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-Class-C3.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-Date-Extract.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-MooseX-Log-Log4perl.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-POE-Component-Supervisor.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-Parse-Method-Signatures.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-SVN-Web.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/p5-Test-POE-Server-TCP.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/quilt.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/ruby-colorize,ruby26.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/splint.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/udis86.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/vanessa/socket.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/xdg-user-dirs.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/devel/zeal.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/editors/featherpad.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/editors/focuswriter.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/editors/teaqt.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/editors/vim,no_x11,perl,python,ruby,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/editors/xemacs21/stable.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/emulators/dgen-sdl.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/brumbrumrally.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/dangerdeep.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/frozen-bubble,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/openomf.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/puzzles.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/roadfighter.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/scummvm-tools.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/tuxpaint.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/games/zangband,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/geo/spatialite/tools.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/graphics/ctl.log
http://build-failures.rhaalovely.net/powerpc/2020-09-14/graphics/dvdrip.log

powerpc bulk build report

2020-09-09 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sun Aug 23 06:49:03 MDT 2020
Finished: Wed Sep  9 06:03:32 MDT 2020
Duration: 16 Days 23 hours 14 minutes

Built using OpenBSD 6.7-current (GENERIC) #776: Fri Aug 21 16:07:28 MDT 2020

Built 9865 packages

Number of packages built each day:
Aug 23: 812
Aug 24: 82
Aug 25: 451
Aug 26: 492
Aug 27: 657
Aug 28: 374
Aug 29: 228
Aug 30: 287
Aug 31: 213
Sep 1: 383
Sep 2: 567
Sep 3: 477
Sep 4: 392
Sep 5: 553
Sep 6: 402
Sep 7: 516
Sep 8: 893
Sep 9: 2086


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-08-23/summary.log

Build failures: 18
http://build-failures.rhaalovely.net/powerpc/2020-08-23/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/emulators/higan.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/geo/pgrouting.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/graphics/babl.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/math/coq.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-08-23/x11/gnustep/performance.log

Recurrent failures:
 failures/devel/geany.log
 failures/emulators/frodo.log
 failures/emulators/mednafen.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/geo/pgrouting.log
 failures/graphics/babl.log
 failures/lang/gforth.log
 failures/lang/squeak/vm.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/sysutils/libvirt.log
 failures/www/sope.log
 failures/x11/gnustep/dbuskit.log
 failures/x11/gnustep/gui.log
 failures/x11/gnustep/performance.log

New failures:
+failures/emulators/higan.log
+failures/math/coq.log

Resolved failures:
-failures/devel/py-llvmlite,python3.log
-failures/emulators/advancemame.log
-failures/emulators/nono.log
-failures/games/gnushogi.log
-failures/lang/compcert.log
-failures/shells/nsh,static.log
-failures/x11/qt5/docs,-html.log

Packages newly built:
+databases/p5-SQL-Abstract-Classic
+devel/attinycore
+devel/p5-Test-CleanNamespaces
+devel/py-pebble,python3
+fonts/iosevka-fonts/default
+fonts/literata
+geo/routino
+mail/neomutt,gpgme,notmuch
+mail/neomutt,gpgme,notmuch,sasl
+mail/neomutt,notmuch
+math/p5-Math-Prime-Util
+math/p5-Math-Prime-Util-GMP
+multimedia/phonon
+security/p5-Alt-Crypt-RSA-BigInt
+security/p5-Crypt-OpenPGP
+security/p5-Unix-OpenBSD-Random
+shells/nsh,static
+www/p5-CGI-Struct
+www/p5-CGI-Struct-XS
+www/p5-Catalyst-Action-REST
+www/p5-Plack-Middleware-MethodOverride
+www/p5-URI-ws
+www/purritobin
+x11/hsetroot
+x11/mate/menu-advanced
+x11/qt5/docs
+x11/qt5/docs,-html
+x11/qt5/docs,-qch
+x11/screenkey

Packages not built this time:
-astro/py-astral
-devel/keystone/python
-devel/py-distutils-extra
-emulators/higan
-fonts/iosevka-fonts
-fonts/iosevka-fonts,-main
-fonts/iosevka-fonts,-term
-inputmethods/uim,-kde
-inputmethods/uim,-qt
-inputmethods/uim,-qt4
-mail/notmuch/py-notmuch
-math/coq
-math/py-ecos
-math/py-numexpr
-math/py-osqp
-math/py-snuggs
-multimedia/phonon-backend/gstreamer,-icons
-multimedia/phonon-backend/gstreamer,-main
-multimedia/phonon-backend/gstreamer,qt5
-multimedia/phonon-backend/gstreamer,qt5,-icons
-multimedia/phonon-backend/gstreamer,qt5,-main
-multimedia/phonon-qt5
-net/psi
-security/keepassx
-security/py-ropper
-security/qca
-security/qca,
-security/qca,,-gnupg
-security/qca,,-main
-security/qca,,-ossl
-security/qca,-gnupg
-security/qca,-main
-security/qca,-ossl
-www/ajaxterm
-www/goaccess,tokyocabinet
-www/py-webpy
-x11/dbusmenu-qt,qt5



powerpc bulk build report

2020-08-23 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Aug  5 14:32:36 MDT 2020
Finished: Sun Aug 23 03:33:34 MDT 2020
Duration: 17 Days 13 hours 1 minutes

Built using OpenBSD 6.7-current (GENERIC) #767: Tue Aug  4 14:50:21 MDT 2020

Built 9865 packages

Number of packages built each day:
Aug 5: 685
Aug 6: 378
Aug 7: 281
Aug 8: 490
Aug 9: 491
Aug 10: 428
Aug 11: 261
Aug 12: 293
Aug 13: 220
Aug 14: 390
Aug 15: 471
Aug 16: 448
Aug 17: 238
Aug 18: 293
Aug 19: 562
Aug 20: 566
Aug 21: 475
Aug 22: 1497
Aug 23: 1398



Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-08-05/summary.log

Build failures: 23
http://build-failures.rhaalovely.net/powerpc/2020-08-05/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/devel/py-llvmlite,python3.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/emulators/advancemame.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/emulators/mednafen.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/emulators/nono.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/games/gnushogi.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/geo/pgrouting.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/graphics/babl.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/shells/nsh,static.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/x11/gnustep/performance.log
http://build-failures.rhaalovely.net/powerpc/2020-08-05/x11/qt5/docs,-html.log



powerpc bulk build report

2020-07-31 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Wed Jul 15 14:50:42 MDT 2020
Finished: Fri Jul 31 08:39:34 MDT 2020
Duration: 15 Days 17 hours 49 minutes

Built using OpenBSD 6.7-current (GENERIC) #753: Tue Jul 14 12:55:03 MDT 2020

Built 9870 packages

Number of packages built each day:
Jul 15: 769
Jul 16: 206
Jul 17: 578
Jul 18: 454
Jul 19: 431
Jul 20: 343
Jul 21: 347
Jul 22: 331
Jul 23: 298
Jul 24: 533
Jul 25: 421
Jul 26: 584
Jul 27: 459
Jul 28: 567
Jul 29: 473
Jul 30: 560
Jul 31: 2516


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-07-15/summary.log

Build failures: 16
http://build-failures.rhaalovely.net/powerpc/2020-07-15/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/emulators/nono.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-07-15/x11/gnustep/performance.log

Recurrent failures:
 failures/devel/geany.log
 failures/emulators/frodo.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/lang/squeak/vm.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/sysutils/libvirt.log

New failures:
+failures/emulators/nono.log
+failures/lang/compcert.log
+failures/productivity/gnucash.log

Resolved failures:
-failures/devel/kdevelop.log

Packages newly built:
+cad/qflow
+devel/bamf
+devel/z80ex
+devel/zmac
+math/bc-gh
+net/py-slixmpp,python3
+sysutils/fff
+sysutils/py-hpilo,python3
+sysutils/py-joblib,python3
+textproc/luceneplusplus
+www/ephemetoot
+x11/bemenu
+x11/elementary/calculator
+x11/elementary/dock

Packages not built this time:
-audio/libgpod,
-audio/libgpod,,-python
-comms/amtterm
-devel/automoc
-devel/clang-tools-extra
-devel/py-astroid
-devel/py-cloudpickle
-devel/py-configargparse
-devel/pylint
-devel/pylint,-gui
-devel/pylint,-main
-geo/mapserver
-math/ebc
-multimedia/phonon
-net/p5-Net-GPSD
-net/py-aiodns
-net/py-slixmpp
-net/wireless
-net/wiresep
-www/vteplugin
-x11/qt5/qtspeech,
-x11/qt5/qtspeech,,-examples



powerpc bulk build report

2020-07-15 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Jun 29 14:04:10 MDT 2020
Finished: Wed Jul 15 12:26:36 MDT 2020
Duration: 15 Days 22 hours 22 minutes

Built using OpenBSD 6.7-current (GENERIC) #745: Sat Jun 27 20:58:25 MDT 2020

Built 9873 packages

Number of packages built each day:
Jun 29: 681
Jun 30: 243
Jul 1: 5726
Jul 2: 570
Jul 3: 312
Jul 4: 535
Jul 5: 376
Jul 6: 219
Jul 7: 332
Jul 8: 496
Jul 9: 383
Jul 10: 448
Jul 11: 407
Jul 12: 630
Jul 13: 450
Jul 14: 511
Jul 15: 2616


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-06-29/summary.log

Build failures: 14
http://build-failures.rhaalovely.net/powerpc/2020-06-29/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/devel/kdevelop.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-06-29/x11/gnustep/performance.log

Recurrent failures:
 failures/devel/geany.log
 failures/emulators/frodo.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/summary.log
 failures/sysutils/libvirt.log
 failures/www/sope.log
 failures/x11/e17/elementary.log
 failures/x11/gnustep/dbuskit.log
 failures/x11/gnustep/gui.log
 failures/x11/gnustep/performance.log

New failures:
+failures/devel/kdevelop.log

Resolved failures:
-failures/x11/agar/agar.log
-failures/x11/kde4/pimlibs.log

Packages newly built:
+astro/gnuastro
+audio/liblo
+devel/olm
+devel/py-dill,python3
+devel/py-multiprocess,python3
+devel/py-vulture,python3
+devel/spidermonkey68
+editors/editorconfig-core-c
+editors/kakoune
+editors/neovim-qt
+graphics/py-imageio,python3
+math/py-PyWavelets,python3
+math/py-cvxopt,python3
+math/py-cvxpy,python3
+math/py-ecos
+math/py-ecos,python3
+math/py-networkx,python3
+math/py-osqp
+math/py-osqp,python3
+math/py-scikit-image,python3
+math/py-scikit-learn,python3
+math/py-scs
+math/py-scs,python3
+misc/freeopcua/opcua-client-gui
+misc/freeopcua/py-opcua
+misc/freeopcua/py-opcua,python3
+misc/freeopcua/py-opcua-widgets
+misc/freeopcua/py-opcua-widgets,python3
+net/usockets
+productivity/qbirthday
+security/sudo,-main
+security/sudo,-python
+security/sudo,gettext,-main
+security/sudo,gettext,-python
+security/sudo,gettext,ldap,-main
+security/sudo,gettext,ldap,-python
+sysutils/py-consul,python3
+sysutils/py-dotenv,python3
+sysutils/ugrep
+www/uwebsockets
+x11/elementary/code
+x11/elementary/granite
+x11/gnome/books
+x11/gnome/characters
+x11/gnome/chrome-gnome-shell
+x11/gnome/documents
+x11/gnome/gjs
+x11/gnome/maps
+x11/gnome/session
+x11/gnome/shell
+x11/gnome/shell-extensions
+x11/gnome/sushi
+x11/gnome/terminal
+x11/gnome/tweaks
+x11/gnome/weather
+x11/kde-applications/akonadi
+x11/kde-applications/akonadi-contacts
+x11/kde-applications/akonadi-mime
+x11/kde-applications/akonadi-notes
+x11/kde-applications/akonadi-search
+x11/kde-applications/baloo-widgets
+x11/kde-applications/kalarmcal
+x11/kde-applications/kblog
+x11/kde-applications/kdav
+x11/kde-applications/kdepim-apps-libs
+x11/kde-applications/kget
+x11/kde-applications/kgpg
+x11/kde-applications/kitinerary
+x11/kde-applications/kleopatra
+x11/kde-applications/kontactinterface
+x11/kde-applications/kpkpass
+x11/kde-applications/kross-interpreters
+x11/kde-applications/ksmtp
+x11/kde-applications/ktnef
+x11/kde-applications/libgravatar
+x11/kde-applications/libkdepim
+x11/kde-applications/mailimporter
+x11/kde-applications/pimcommon

Packages not built this time:
-databases/mytop
-databases/soprano
-databases/strigi
-devel/kdevelop
-devel/py-wbem
-devel/spidermonkey60
-graphics/openscenegraph
-graphics/prison
-graphics/simgear
-math/py-scikit-learn
-net/cagibi
-productivity/akonadi
-productivity/attica
-productivity/gbirthday
-x11/grantlee
-x11/kde-shared-data,
-x11/kde4/kfilemetadata
-x11/kde4/libs
-x11/kde4/libs,
-x11/kde4/libs,,-en_US
-x11/kde4/libs,,-langlist
-x11/kde4/libs,,-main
-x11/kde4/libs,-en_US
-x11/kde4/libs,-langlist
-x11/kde4/libs,-main
-x11/polkit-qt
-x11/sisctrl



Re: powerpc bulk build report

2020-06-29 Thread Charlene Wendling
Hi,

On Mon, 29 Jun 2020 11:45:14 -0600 (MDT)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Sat Jun 13 07:45:16 MDT 2020
> Finished: Mon Jun 29 11:45:00 MDT 2020
> Duration: 16 Days 4 hours 0 minutes
> 
> Built using OpenBSD 6.7-current (GENERIC) #735: Fri Jun 12 08:20:27
> MDT 2020
> 
> Built 9822 packages

This bulk has been shorter and with less packages because it has
been started after kde4 has been mostly unhooked, but before Rafael
imported dozens of new kf5 ports.

Some GNUstep-related software that used to be broken have been built
again, runtime should be wrong [0]; this explains some failures
below. Maybe^W i'll try again with my fix for x11/gnustep/make.

MATE is working since last bulk [1]. GNOME still lacks gnome-session
and gnome-shell, now that spidermonkey68 is rust-free it may be 
available again soon :)

> http://build-failures.rhaalovely.net/powerpc/2020-06-13/devel/geany.log

I've a fix for it [2], despite my assumptions being wrong.

Charlène.


[0] https://marc.info/?l=openbsd-ports=158722515929053=2
[1] https://bsd.network/web/statuses/104336811837102326
[2] https://marc.info/?l=openbsd-ports=159188140009019=2

> Critical path missing pkgs:
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/summary.log
> 
> Build failures: 15

> http://build-failures.rhaalovely.net/powerpc/2020-06-13/emulators/frodo.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/games/hyperrogue.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/games/valyriatear.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/lang/gforth.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/lang/squeak/vm.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/shells/ksh93.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/sysutils/libvirt.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/www/sope.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/agar/agar.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/e17/elementary.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/gnustep/dbuskit.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/gnustep/gui.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/gnustep/performance.log
> http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/kde4/pimlibs.log



powerpc bulk build report

2020-06-29 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sat Jun 13 07:45:16 MDT 2020
Finished: Mon Jun 29 11:45:00 MDT 2020
Duration: 16 Days 4 hours 0 minutes

Built using OpenBSD 6.7-current (GENERIC) #735: Fri Jun 12 08:20:27 MDT 2020

Built 9822 packages

Number of packages built each day:
Jun 13: 874
Jun 14: 52
Jun 15: 757
Jun 16: 499
Jun 17: 552
Jun 18: 261
Jun 19: 297
Jun 20: 285
Jun 21: 312
Jun 22: 468
Jun 23: 315
Jun 24: 566
Jun 25: 425
Jun 26: 558
Jun 27: 478
Jun 28: 539
Jun 29: 2584


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-06-13/summary.log

Build failures: 15
http://build-failures.rhaalovely.net/powerpc/2020-06-13/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/sysutils/libvirt.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/www/sope.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/agar/agar.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/gnustep/dbuskit.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/gnustep/gui.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/gnustep/performance.log
http://build-failures.rhaalovely.net/powerpc/2020-06-13/x11/kde4/pimlibs.log

Recurrent failures:
 failures/devel/geany.log
 failures/emulators/frodo.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/lang/squeak/vm.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/x11/agar/agar.log
 failures/x11/e17/elementary.log

New failures:
+failures/sysutils/libvirt.log
+failures/www/sope.log
+failures/x11/gnustep/dbuskit.log
+failures/x11/gnustep/gui.log
+failures/x11/gnustep/performance.log
+failures/x11/kde4/pimlibs.log

Resolved failures:
-failures/benchmarks/wrk.log
-failures/cad/openscad.log
-failures/databases/sqlitebrowser.log
-failures/devel/pygame,python3.log
-failures/inputmethods/uim.log
-failures/lang/gprolog.log
-failures/lang/gravity.log
-failures/mail/kopano/core.log
-failures/security/aircrack-ng.log
-failures/x11/e16keyedit.log
-failures/x11/gnome/builder.log
-failures/x11/gnome/eog.log
-failures/x11/gnustep/base.log
-failures/x11/kde4/libkexiv2.log
-failures/x11/qt5/qtwebengine.log

Packages newly built:
+audio/pykaraoke
+benchmarks/wrk
+cad/openscad
+databases/p5-TAP-Parser-SourceHandler-pgTAP
+databases/pgtap
+databases/py-ldap,python3
+databases/py-ldap0,python3
+databases/py-pymysql,python3
+databases/sqlitebrowser
+databases/web2ldap
+devel/py-crc32c,python3
+devel/py-deprecation,python3
+devel/py-filetype,python3
+devel/py-mox3
+devel/py-mox3,python3
+devel/py3c
+devel/pygame
+devel/pygame,python3
+devel/ruby-colored2
+devel/ruby-colored2,ruby26
+devel/subversion,python3
+devel/subversion,python3,-ap2
+devel/subversion,python3,-gnome-keyring
+devel/subversion,python3,-main
+devel/subversion,python3,-perl
+devel/subversion,python3,-python
+devel/subversion,python3,-ruby
+emulators/fs-uae-launcher
+fonts/inconsolata-new
+games/angrydd
+games/childsplay
+games/forcedattack
+games/fretsonfire
+games/hypatia
+games/mysticmine
+games/oolite
+games/pathological
+games/pyganim
+games/pysol
+games/renpy
+games/singularity
+inputmethods/uim
+inputmethods/uim,-gtk
+inputmethods/uim,-gtk3
+inputmethods/uim,-kde
+inputmethods/uim,-main
+inputmethods/uim,-qt
+inputmethods/uim,-qt4
+inputmethods/uim-chewing
+inputmethods/uim-tomoe-gtk
+lang/microscheme
+multimedia/shotcut
+net/openvpn-auth-ldap
+productivity/bruce
+security/aircrack-ng
+security/gpgme,
+security/pivy
+shells/zsh-syntax-highlighting
+telephony/resiprocate
+telephony/resiprocate,
+telephony/resiprocate,,-main
+telephony/resiprocate,,-repro
+telephony/resiprocate,,-return
+telephony/resiprocate,-main
+telephony/resiprocate,-repro
+telephony/resiprocate,-return
+textproc/py-patiencediff,python3
+textproc/py-xlwt,python3
+www/ipynb-py-convert
+x11/gnome/builder
+x11/gnome/photos
+x11/gnustep/base
+x11/gnustep/camerakit
+x11/gnustep/corebase
+x11/gnustep/matharray
+x11/gnustep/netclasses
+x11/gnustep/pantomime
+x11/gnustep/pcapkit
+x11/gnustep/rsskit
+x11/qt5/qtscript,
+x11/qt5/qtscript,,-examples
+x11/qt5/qtspeech,
+x11/qt5/qtspeech,,-examples
+x11/qt5/qtwebchannel,
+x11/qt5/qtwebchannel,,-examples

Packages not built this time:
-audio/exaile
-cad/kicad-share/footprints
-cad/kicad-share/i18n
-cad/kicad-share/packages3D
-cad/kicad-share/symbols
-cad/kicad-share/templates
-cad/klogic
-databases/gq
-devel/gconf-editor
-devel/gtkparasite

Re: powerpc bulk build report

2020-06-12 Thread Charlene Wendling
On Fri, 12 Jun 2020 16:04:22 -0600 (MDT)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Tue May 26 11:12:39 MDT 2020
> Finished: Fri Jun 12 16:04:08 MDT 2020
> Duration: 17 Days 4 hours 51 minutes

^ We swapped some monsters that failed at runtime for GNOME/MATE 
stuff :)

> Built using OpenBSD 6.7-current (GENERIC) #722: Mon May 25 18:07:09
> MDT 2020
> 
> Built 9939 packages

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/cad/openscad.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-26/databases/sqlitebrowser.log

I'll commit the fix just after that mail

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/devel/geany.log

https://marc.info/?l=openbsd-ports=159188140009019=2

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/mail/kopano/core.log

Fixed, won't build on ld.bfd archs again

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/security/aircrack-ng.log

https://marc.info/?l=openbsd-ports=159141021925207=2

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/gnome/builder.log

Fixed, but it requires also that uncommitted fix for libdazzle:

https://marc.info/?l=openbsd-ports=159199473212267=2

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/gnome/eog.log

Rust only, it wasn't and won't be available, fixed.

> http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/qt5/qtwebengine.log

Fixed, added NOT_FOR_ARCHS



powerpc bulk build report

2020-06-12 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Tue May 26 11:12:39 MDT 2020
Finished: Fri Jun 12 16:04:08 MDT 2020
Duration: 17 Days 4 hours 51 minutes

Built using OpenBSD 6.7-current (GENERIC) #722: Mon May 25 18:07:09 MDT 2020

Built 9939 packages

Number of packages built each day:
May 26: 838
May 27: 65
May 28: 477
May 29: 702
May 30: 530
May 31: 99
Jun 1: 4043
Jun 2: 283
Jun 3: 242
Jun 4: 304
Jun 5: 544
Jun 6: 317
Jun 7: 563
Jun 8: 429
Jun 9: 503
Jun 10: 441
Jun 11: 554
Jun 12: 2623


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-05-26/summary.log

Build failures: 24
http://build-failures.rhaalovely.net/powerpc/2020-05-26/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/devel/pygame,python3.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/inputmethods/uim.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/lang/gravity.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/security/aircrack-ng.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/agar/agar.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/e16keyedit.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/gnome/builder.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/gnome/eog.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/gnustep/base.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/kde4/libkexiv2.log
http://build-failures.rhaalovely.net/powerpc/2020-05-26/x11/qt5/qtwebengine.log

Recurrent failures:
 failures/benchmarks/wrk.log
 failures/cad/openscad.log
 failures/databases/sqlitebrowser.log
 failures/devel/geany.log
 failures/emulators/frodo.log
 failures/games/hyperrogue.log
 failures/games/valyriatear.log
 failures/lang/gforth.log
 failures/lang/gprolog.log
 failures/lang/squeak/vm.log
 failures/mail/kopano/core.log
 failures/security/aircrack-ng.log
 failures/shells/ksh93.log
 failures/summary.log
 failures/x11/agar/agar.log
 failures/x11/e17/elementary.log
 failures/x11/gnustep/base.log

New failures:
+failures/devel/pygame,python3.log
+failures/inputmethods/uim.log
+failures/lang/gravity.log
+failures/x11/e16keyedit.log
+failures/x11/gnome/builder.log
+failures/x11/gnome/eog.log
+failures/x11/kde4/libkexiv2.log
+failures/x11/qt5/qtwebengine.log

Resolved failures:
-failures/devel/dyncall.log
-failures/devel/libpeas.log
-failures/emulators/gsplus.log
-failures/games/wesnoth.log
-failures/geo/osrm-backend.log
-failures/graphics/birdfont.log
-failures/lang/parrot.log
-failures/mail/hashcash.log
-failures/plan9/drawterm.log
-failures/productivity/gnucash.log
-failures/textproc/apertium-dicts/crh.log
-failures/textproc/apertium-dicts/tur.log
-failures/x11/gnome/libgweather.log
-failures/x11/gtk+4,-cloudprint.log
-failures/x11/gtk-vnc.log
-failures/x11/gtksourceview4.log

Packages newly built:
+audio/rhythmbox
+benchmarks/nuttcp
+databases/evolution-data-server
+devel/dyncall
+devel/kf5/kcalendarcore
+devel/kf5/kcontacts
+devel/libpeas
+devel/p5-Cairo-GObject
+devel/p5-Class-Tiny-Chained
+devel/p5-MooX-Aliases
+devel/p5-MooX-Traits
+devel/p5-Test-Spec
+devel/py-dulwich,python3
+devel/rttr
+devel/ruby-puppet_forge
+editors/emacs,gtk3
+emulators/gsplus
+emulators/sameboy
+emulators/sameboy,-libretro
+emulators/sameboy,-main
+fonts/cascadia-code
+games/ioquake3
+games/py-minecraft-launcher-lib,python3
+games/sauerbraten
+games/sauerbraten,-data
+games/sauerbraten,-main
+games/wesnoth
+games/widelands
+games/wrath
+graphics/birdfont
+graphics/libvips
+lang/parrot
+mail/evolution
+mail/evolution-ews
+mail/evolution-rss
+mail/geary
+mail/hashcash
+mail/notmuch/notmuch
+mail/notmuch/notmuch,-emacs
+mail/notmuch/notmuch,-main
+mail/notmuch/py-notmuch
+mail/notmuch/py-notmuch,python3
+mail/p5-Email-Filter-Rules
+mail/p5-Mail-ListDetector
+meta/mate,-extras
+multimedia/gnome-twitch
+multimedia/webvfx
+net/asdig
+net/dbip/asn
+net/gupnp/tools
+net/p5-Twitter-API
+net/py-geventhttpclient,python3
+net/py-transmissionrpc-ng,python3
+net/ruby-cbor,ruby26
+net/ruby-cbor,ruby27

Re: powerpc bulk build report

2020-05-26 Thread Charlene Wendling
On Tue, 26 May 2020 04:55:26 -0600 (MDT)
c...@openbsd.org wrote:

> Bulk build on macppc-0.ports.openbsd.org
> 
> Started : Sat May  9 02:01:05 MDT 2020
> Finished: Tue May 26 04:55:14 MDT 2020
> Duration: 17 Days 2 hours 54 minutes
>
> Built using OpenBSD 6.7 (GENERIC) #714: Fri May  8 11:06:48 MDT 2020
> 
> Built 9964 packages
> 
> Number of packages built each day:


Already fixed:

> http://build-failures.rhaalovely.net/powerpc/2020-05-09/devel/dyncall.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/emulators/gsplus.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/geo/osrm-backend.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/lang/parrot.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/mail/hashcash.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/plan9/drawterm.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/textproc/apertium-dicts/crh.log
> http://build-failures.rhaalovely.net/powerpc/2020-05-09/textproc/apertium-dicts/tur.log


Builds just fine at home:

> http://build-failures.rhaalovely.net/powerpc/2020-05-09/games/wesnoth.log



powerpc bulk build report

2020-05-26 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Sat May  9 02:01:05 MDT 2020
Finished: Tue May 26 04:55:14 MDT 2020
Duration: 17 Days 2 hours 54 minutes

Built using OpenBSD 6.7 (GENERIC) #714: Fri May  8 11:06:48 MDT 2020

Built 9964 packages

Number of packages built each day:
May 9: 866
May 10: 337
May 11: 736
May 12: 229
May 13: 158
May 14: 184
May 15: 462
May 16: 361
May 17: 256
May 18: 398
May 19: 371
May 20: 368
May 21: 555
May 22: 555
May 23: 536
May 24: 570
May 25: 1416
May 26: 1606


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-05-09/summary.log

Build failures: 32
http://build-failures.rhaalovely.net/powerpc/2020-05-09/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/devel/dyncall.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/devel/libpeas.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/emulators/gsplus.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/games/wesnoth.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/geo/osrm-backend.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/lang/parrot.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/mail/hashcash.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/plan9/drawterm.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/security/aircrack-ng.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/textproc/apertium-dicts/crh.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/textproc/apertium-dicts/tur.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/agar/agar.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/gnome/libgweather.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/gnustep/base.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/gtk+4,-cloudprint.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/gtk-vnc.log
http://build-failures.rhaalovely.net/powerpc/2020-05-09/x11/gtksourceview4.log



Re: powerpc bulk build report

2020-05-02 Thread Solene Rapenne
Le Wed, 29 Apr 2020 09:46:21 +0200,
Charlene Wendling  a écrit :

> On Tue, 28 Apr 2020 23:31:41 -0600 (MDT)
> c...@openbsd.org wrote:
> 
> Some informations that may be useful:
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/audio/qsynth.log
> >  
> 
> Waiting OK from maintainer:
> https://marc.info/?l=openbsd-ports=158806011730632=2
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/benchmarks/wrk.log
> >  
> 
> Waiting for upstream to deal with
> https://github.com/wg/wrk/pull/395
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/avr/binutils.log
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/riscv-elf/binutils.log
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/xtensa-esp32-elf/binutils.log
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/xtensa-lx106-elf/binutils.log
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/net/libtorrent-rasterbar.log
> >  
> 
> It will be fixed by
> https://marc.info/?l=openbsd-tech=158805196327877=2
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/frodo.log
> >  
> 
> It builds and works fine by passing -U__POWERPC__ as CFLAGS, but it's
> not the best idea.
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/gsplus.log
> >  
> 
> __builtin_ppc_mftb() is gcc-specific, i can provide a duct tape diff
> for it, but we loose some emulation fidelity.
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/retroarch.log
> >  
> 
> Waiting an OK from maintainer:
> https://marc.info/?l=openbsd-ports=158790761010953=2
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/games/valyriatear.log
> >  
> 
> Upstream has a build fix but colors are off:
> https://github.com/ValyriaTear/ValyriaTear/issues/655
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/lang/gforth.log
> >  
> 
> Using the i386 patches around that issue causes segfaults. Building
> everything with -O0 also causes segfaults.
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/print/pdflib.log
> >  
> 
> I've proposed a fix for that one:
> https://marc.info/?l=openbsd-ports=158809446412960=2
> 
> > http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gnustep/base.log
> >  
> 
> See https://marc.info/?l=openbsd-ports=158722515929053=2 
> 

I'm pretty sure you asked for testing powerpc packages now that they
are built with clang but didn't find the related mails, so I answer
here.

On my powerbook I tried the following packages successfully:

audacious
chocolate-doom
cataclysm-dda
feh
mednafen
moc
windowmaker
openttd
nethack
rednotebook (some webkitgtk features was crashing and works fine now)
zathura
lifeograph (was crashing when I imported but works fine now)
surf (works, didn't try previously, didn't try js)

thank you very much for your work



Re: powerpc bulk build report

2020-04-29 Thread Charlene Wendling
On Tue, 28 Apr 2020 23:31:41 -0600 (MDT)
c...@openbsd.org wrote:

Some informations that may be useful:

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/audio/qsynth.log

Waiting OK from maintainer:
https://marc.info/?l=openbsd-ports=158806011730632=2

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/benchmarks/wrk.log

Waiting for upstream to deal with
https://github.com/wg/wrk/pull/395

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/avr/binutils.log
> http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/riscv-elf/binutils.log
> http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/xtensa-esp32-elf/binutils.log
> http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/xtensa-lx106-elf/binutils.log
> http://build-failures.rhaalovely.net/powerpc/2020-04-09/net/libtorrent-rasterbar.log

It will be fixed by
https://marc.info/?l=openbsd-tech=158805196327877=2

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/frodo.log

It builds and works fine by passing -U__POWERPC__ as CFLAGS, but it's
not the best idea.

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/gsplus.log

__builtin_ppc_mftb() is gcc-specific, i can provide a duct tape diff
for it, but we loose some emulation fidelity.

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/retroarch.log

Waiting an OK from maintainer:
https://marc.info/?l=openbsd-ports=158790761010953=2

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/games/valyriatear.log

Upstream has a build fix but colors are off:
https://github.com/ValyriaTear/ValyriaTear/issues/655

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/lang/gforth.log

Using the i386 patches around that issue causes segfaults. Building
everything with -O0 also causes segfaults.

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/print/pdflib.log

I've proposed a fix for that one:
https://marc.info/?l=openbsd-ports=158809446412960=2

> http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gnustep/base.log

See https://marc.info/?l=openbsd-ports=158722515929053=2 



powerpc bulk build report

2020-04-29 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Thu Apr  9 09:35:33 MDT 2020
Finished: Tue Apr 28 23:31:21 MDT 2020
Duration: 19 Days 13 hours 56 minutes

Built using OpenBSD 6.7-beta (GENERIC) #697: Mon Apr 13 02:47:28 MDT 2020

Built 10023 packages

Number of packages built each day:
Apr 9: 577
Apr 10: 173
Apr 11: 564
Apr 12: 435
Apr 13: 182
Apr 14: 96
Apr 15: 192
Apr 16: 163
Apr 17: 314
Apr 18: 114
Apr 19: 327
Apr 20: 278
Apr 21: 583
Apr 22: 435
Apr 23: 446
Apr 24: 496
Apr 25: 602
Apr 26: 468
Apr 27: 659
Apr 28: 2919


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-04-09/summary.log

Build failures: 44
http://build-failures.rhaalovely.net/powerpc/2020-04-09/audio/qsynth.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/avr/binutils.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/libpeas.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/riscv-elf/binutils.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/xtensa-esp32-elf/binutils.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/devel/xtensa-lx106-elf/binutils.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/frodo.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/gsplus.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/emulators/retroarch.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/games/hyperrogue.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/games/postal.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/geo/osrm-backend.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/graphics/birdfont.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/graphics/openimageio.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/lang/gforth.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/lang/parrot.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/mail/dspam.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/mail/hashcash.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/multimedia/mkvtoolnix,no_x11.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/multimedia/synfigstudio.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/net/libtorrent-rasterbar.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/plan9/drawterm.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/print/pdflib.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/security/aircrack-ng.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/shells/ksh93.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/telephony/iaxclient.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/textproc/apertium-dicts/crh.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/textproc/apertium-dicts/tur.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/agar/agar.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/e17/elementary.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gnome/libgweather.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gnustep/base.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gtk+4,-cloudprint.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gtk-vnc.log
http://build-failures.rhaalovely.net/powerpc/2020-04-09/x11/gtksourceview4.log



powerpc bulk build report

2020-03-22 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Mon Mar  2 16:05:15 MST 2020
Finished: Sun Mar 22 03:42:03 MDT 2020
Duration: 19 Days 10 hours 37 minutes

Built using OpenBSD 6.6-current (GENERIC) #676: Sun Mar  1 13:32:42 MST 2020

Built 9859 packages

Number of packages built each day:
Mar 2: 4340
Mar 3: 1109
Mar 4: 450
Mar 5: 274
Mar 6: 140
Mar 7: 115
Mar 8: 322
Mar 9: 173
Mar 10: 247
Mar 11: 241
Mar 12: 132
Mar 13: 240
Mar 14: 286
Mar 15: 295
Mar 16: 313
Mar 17: 360
Mar 18: 349
Mar 19: 473
Mar 20: 588
Mar 21: 1921
Mar 22: 1010


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-03-02/summary.log

Build failures: 35
http://build-failures.rhaalovely.net/powerpc/2020-03-02/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/cad/magic.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/cad/qucs.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/devel/libpeas.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/devel/xtensa-elf/gcc.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/games/pokerth.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/games/postal.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/games/stone-soup.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/games/xevil.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/graphics/colord-gtk.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/lang/hashlink.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/lang/parrot.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/math/py-scikit-learn.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/misc/dtcltiny.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/net/dleyna/renderer.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/net/dleyna/server.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/sysutils/usmb.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/telephony/asterisk,imap,-calendar.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/telephony/iaxclient.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/www/sassc.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/gnome/libgweather.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/gtk-vnc.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/gtksourceview4.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/kde4/libs,,-en_US.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/libdbus-c++.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/libhandy.log
http://build-failures.rhaalovely.net/powerpc/2020-03-02/x11/mate/caja.log

Recurrent failures:
 failures/benchmarks/wrk.log
 failures/cad/magic.log
 failures/cad/openscad.log
 failures/cad/qucs.log
 failures/databases/sqlitebrowser.log
 failures/devel/geany.log
 failures/devel/libpeas.log
 failures/devel/xtensa-elf/gcc.log
 failures/games/stone-soup.log
 failures/games/valyriatear.log
 failures/games/xevil.log
 failures/graphics/colord-gtk.log
 failures/lang/gprolog.log
 failures/lang/parrot.log
 failures/lang/squeak/vm.log
 failures/mail/kopano/core.log
 failures/productivity/gnucash.log
 failures/summary.log
 failures/sysutils/usmb.log
 failures/telephony/iaxclient.log
 failures/www/sassc.log
 failures/x11/gnome/libgweather.log
 failures/x11/gtk-vnc.log
 failures/x11/gtksourceview4.log
 failures/x11/kde4/libs,,-en_US.log
 failures/x11/libdbus-c++.log
 failures/x11/libhandy.log
 failures/x11/mate/caja.log

New failures:
+failures/lang/hashlink.log
+failures/telephony/asterisk,imap,-calendar.log

Resolved failures:
-failures/cad/netgen.log
-failures/databases/sqliteman.log
-failures/geo/spatialite/gis.log
-failures/x11/kde4/smokeqt.log
-failures/x11/ogre.log

Packages newly built:
+cad/netgen
+databases/py-minidb,python3
+devel/git-crypt
+devel/got,-main
+devel/got,-web
+devel/http-parser
+devel/p5-Conf-Libconfig
+devel/py-esptool,python3
+devel/py-kitchen,python3
+editors/py-qscintilla,-common
+editors/py-qscintilla,-main
+editors/py-qscintilla,python3
+editors/py-qscintilla,python3,-common
+editors/py-qscintilla,python3,-main
+geo/spatialite/gis
+misc/p5-OPCUA-Open62541
+multimedia/libde265
+multimedia/libde265,-main
+multimedia/libde265,-tools
+multimedia/libheif
+net/purple-matrix

powerpc bulk build report

2020-03-02 Thread cwen
Bulk build on macppc-0.ports.openbsd.org

Started : Fri Feb 14 09:52:18 MST 2020
Finished: Mon Mar  2 13:05:14 MST 2020
Duration: 17 Days 3 hours 13 minutes

Built using OpenBSD 6.6-current (GENERIC) #669: Fri Feb 14 02:01:34 MST 2020

Built 9880 packages

Number of packages built each day:
Feb 14: 192
Feb 15: 1546
Feb 16: 389
Feb 17: 346
Feb 18: 102
Feb 19: 370
Feb 20: 169
Feb 21: 124
Feb 22: 343
Feb 23: 312
Feb 24: 349
Feb 25: 295
Feb 26: 422
Feb 27: 606
Feb 28: 554
Feb 29: 475
Mar 1: 680
Mar 2: 2606


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-02-14/summary.log

Build failures: 38
http://build-failures.rhaalovely.net/powerpc/2020-02-14/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/cad/magic.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/cad/netgen.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/cad/qucs.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/databases/sqliteman.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/devel/libpeas.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/devel/xtensa-elf/gcc.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/games/pokerth.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/games/postal.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/games/stone-soup.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/games/xevil.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/geo/spatialite/gis.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/graphics/colord-gtk.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/lang/parrot.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/math/py-scikit-learn.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/misc/dtcltiny.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/net/dleyna/renderer.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/net/dleyna/server.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/sysutils/usmb.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/telephony/iaxclient.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/www/sassc.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/gnome/libgweather.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/gtk-vnc.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/gtksourceview4.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/kde4/libs,,-en_US.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/kde4/smokeqt.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/libdbus-c++.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/libhandy.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/mate/caja.log
http://build-failures.rhaalovely.net/powerpc/2020-02-14/x11/ogre.log

Recurrent failures:
 failures/games/xevil.log
 failures/geo/spatialite/gis.log
 failures/graphics/colord-gtk.log
 failures/lang/gprolog.log
 failures/lang/squeak/vm.log
 failures/mail/kopano/core.log
 failures/math/py-scikit-learn.log
 failures/net/dleyna/renderer.log
 failures/net/dleyna/server.log
 failures/productivity/gnucash.log
 failures/summary.log
 failures/sysutils/usmb.log
 failures/telephony/iaxclient.log
 failures/x11/gnome/libgweather.log
 failures/x11/gtk-vnc.log
 failures/x11/gtksourceview4.log
 failures/x11/kde4/smokeqt.log
 failures/x11/libdbus-c++.log
 failures/x11/libhandy.log

New failures:
+failures/lang/parrot.log
+failures/misc/dtcltiny.log
+failures/www/sassc.log
+failures/x11/kde4/libs,,-en_US.log

Resolved failures:
-failures/graphics/gimp/stable.log
-failures/lang/compcert.log
-failures/net/mutella.log
-failures/print/hplip,-common.log
-failures/sysutils/collectd,-main.log
-failures/x11/gnome/ocrfeeder.log
-failures/x11/gtk+4,-cloudprint.log
-failures/x11/kde4/libs.log

Packages newly built:
+converters/bdf2sfd
+databases/py-ldap,python3
+devel/esptool-ck
+devel/p5-MooseX-Attribute-Chained
+devel/p5-TOML
+devel/p5-TOML-Parser
+devel/p5-Test2-Tools-Explain
+devel/py-minidump
+graphics/gimp/deskew
+graphics/gimp/liquid-rescale
+graphics/gimp/stable
+graphics/ufraw
+graphics/xsane,gimp
+mail/dovecot-fts-xapian
+math/py-bottleneck
+math/py-bottleneck,python3
+math/py-cftime
+math/py-netcdf4
+misc/open62541
+multimedia/mlt,

powerpc bulk build report

2020-02-14 Thread cwen
Bulk build on macppc-1.ports.openbsd.org

Started : Mon Jan 27 07:34:21 MST 2020
Finished: Fri Feb 14 05:32:06 MST 2020
Duration: 17 Days 21 hours 58 minutes

Built using OpenBSD 6.6-current (GENERIC) #656: Mon Jan 20 13:45:34 MST 2020

Built 9858 packages

Number of packages built each day:
Jan 27: 1397
Jan 28: 2687
Jan 29: 436
Jan 30: 501
Jan 31: 179
Feb 1: 2689
Feb 2: 319
Feb 3: 53
Feb 4: 196
Feb 5: 256
Feb 6: 181
Feb 7: 350
Feb 8: 291
Feb 9: 323
Feb 10: 342
Feb 11: 439
Feb 12: 455
Feb 13: 443
Feb 14: 900


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-01-27/summary.log

Build failures: 42
http://build-failures.rhaalovely.net/powerpc/2020-01-27/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/cad/magic.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/cad/netgen.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/cad/qucs.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/databases/sqliteman.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/devel/libpeas.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/devel/xtensa-elf/gcc.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/games/pokerth.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/games/postal.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/games/stone-soup.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/games/xevil.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/geo/spatialite/gis.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/graphics/colord-gtk.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/graphics/gimp/stable.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/lang/squeak/vm.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/math/py-scikit-learn.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/net/dleyna/renderer.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/net/dleyna/server.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/net/mutella.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/print/hplip,-common.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/sysutils/collectd,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/sysutils/usmb.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/telephony/iaxclient.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/gnome/libgweather.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/gnome/ocrfeeder.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/gtk+4,-cloudprint.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/gtk-vnc.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/gtksourceview4.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/kde4/libs.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/kde4/smokeqt.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/libdbus-c++.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/libhandy.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/mate/caja.log
http://build-failures.rhaalovely.net/powerpc/2020-01-27/x11/ogre.log

Recurrent failures:
 failures/devel/geany.log
 failures/devel/libpeas.log
 failures/devel/xtensa-elf/gcc.log
 failures/games/pokerth.log
 failures/games/postal.log
 failures/games/stone-soup.log
 failures/graphics/gimp/stable.log
 failures/lang/compcert.log
 failures/lang/gprolog.log
 failures/mail/kopano/core.log
 failures/math/py-scikit-learn.log
 failures/net/dleyna/renderer.log
 failures/net/dleyna/server.log
 failures/net/mutella.log
 failures/print/hplip,-common.log
 failures/productivity/gnucash.log
 failures/summary.log
 failures/sysutils/collectd,-main.log
 failures/sysutils/usmb.log
 failures/telephony/iaxclient.log
 failures/x11/gnome/libgweather.log
 failures/x11/gtk+4,-cloudprint.log
 failures/x11/gtk-vnc.log
 failures/x11/gtksourceview4.log
 failures/x11/kde4/smokeqt.log
 failures/x11/libdbus-c++.log
 failures/x11/libhandy.log

New failures:
+failures/lang/squeak/vm.log
+failures/x11/gnome/ocrfeeder.log
+failures/x11/kde4/libs.log

Resolved failures:
-failures/emulators/citra.log
-failures/games/eduke32.log
-failures/lang/quickjs.log
-failures/multimedia/synfig.log
-failures/security/scrypt.log

powerpc bulk build report

2020-01-26 Thread cwen
Bulk build on macppc-1.ports.openbsd.org

Started : Sat Jan 11 16:12:39 MST 2020
Finished: Sun Jan 26 20:37:54 MST 2020
Duration: 15 Days 4 hours 25 minutes

Built using OpenBSD 6.6-current (GENERIC.MP) #659: Sat Jan 11 09:56:19 MST 2020

Built 9848 packages

Number of packages built each day:
Jan 11: 773
Jan 12: 1343
Jan 13: 416
Jan 14: 465
Jan 15: 284
Jan 16: 237
Jan 17: 189
Jan 18: 375
Jan 19: 278
Jan 20: 361
Jan 21: 440
Jan 22: 397
Jan 23: 452
Jan 24: 448
Jan 25: 623
Jan 26: 2767


Critical path missing pkgs: 
http://build-failures.rhaalovely.net/powerpc/2020-01-11/summary.log

Build failures: 47
http://build-failures.rhaalovely.net/powerpc/2020-01-11/benchmarks/wrk.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/cad/magic.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/cad/netgen.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/cad/openscad.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/cad/qucs.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/databases/sqlitebrowser.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/databases/sqliteman.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/devel/geany.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/devel/libpeas.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/devel/xtensa-elf/gcc.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/emulators/citra.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/games/eduke32.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/games/pokerth.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/games/postal.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/games/stone-soup.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/games/valyriatear.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/games/xevil.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/geo/spatialite/gis.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/graphics/colord-gtk.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/graphics/gimp/stable.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/lang/compcert.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/lang/gprolog.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/lang/quickjs.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/mail/kopano/core.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/math/py-scikit-learn.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/multimedia/synfig.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/net/dleyna/renderer.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/net/dleyna/server.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/net/mutella.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/print/hplip,-common.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/productivity/gnucash.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/security/scrypt.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/sysutils/collectd,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/sysutils/usmb.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/telephony/iaxclient.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/telephony/pjsua,-main.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/www/ruby-passenger,ruby26.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/gnome/libgweather.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/gtk+4,-cloudprint.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/gtk-vnc.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/gtksourceview4.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/kde4/libs,,-en_US.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/kde4/smokeqt.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/libdbus-c++.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/libhandy.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/mate/caja.log
http://build-failures.rhaalovely.net/powerpc/2020-01-11/x11/ogre.log



  1   2   3   >