[ports-gcc] Unbreak graphics/k3dsurf

2019-03-01 Thread Charlene Wendling


> http://build-failures.rhaalovely.net/powerpc/2019-02-04/graphics/k3dsurf.log
> http://build-failures.rhaalovely.net/sparc64/2019-02-03/graphics/k3dsurf.log

Once again a header is missing. 

With that patch, it builds and runs fine on macppc [1] and amd64. 

Feedback/comments are welcome! 

Charlène.


[1] https://bsd.network/@julianaito/101678479745473355


Index: Makefile
===
RCS file: /cvs/ports/graphics/k3dsurf/Makefile,v
retrieving revision 1.17
diff -u -p -u -p -r1.17 Makefile
--- Makefile24 Oct 2018 14:28:05 -  1.17
+++ Makefile2 Mar 2019 01:31:52 -
@@ -3,7 +3,7 @@
 COMMENT=   visualize and manipulate mathematical models
 
 DISTNAME=  k3dsurf-0.6.2
-REVISION = 7
+REVISION = 8
 CATEGORIES=graphics math
 
 HOMEPAGE=  http://k3dsurf.sourceforge.net/
Index: patches/patch-src_PovConfig_h
===
RCS file: patches/patch-src_PovConfig_h
diff -N patches/patch-src_PovConfig_h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-src_PovConfig_h   2 Mar 2019 01:31:52 -
@@ -0,0 +1,14 @@
+$OpenBSD$
+ports-gcc fix for
+src/PovConfig.cpp:678:37: error: 'system' was not declared in this scope
+Index: src/PovConfig.h
+--- src/PovConfig.h.orig
 src/PovConfig.h
+@@ -36,6 +36,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include "k3dsurf.h"
+ 
+ class PovConfig: public QMainWindow



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 17:24:07

Modified files:
net/dhcpcd : Makefile 
net/dhcpcd/pkg : README 

Log message:
adjust the DHCPv6-PD example in dhcpcd's pkg-readme to give an example for
using dhcpcd to do slaac itself on the upstream; seems a bit more reliable
than mixing dhcpcd for PD and slaacd for SLAAC



Re: [ports-gcc] Unbreak games/spacehulk

2019-03-01 Thread Charlene Wendling
On Fri, 1 Mar 2019 23:03:00 +
Stuart Henderson wrote:

> On 2019/03/01 23:49, Charlene Wendling wrote:
> > 
> > > http://build-failures.rhaalovely.net/powerpc/2019-02-04/games/spacehulk.log
> > > http://build-failures.rhaalovely.net/sparc64/2019-02-03/games/spacehulk.log
> > 
> > It was just a single missing header. While doing a checkup of the
> > port, i noticed that WANTLIB needed a major refresh as well. 
> > 
> > It builds and works fine on macppc [1] and amd64. 
> 
> Hmm, at some points in the code it's using srand (via setSeed) to try
> to set a specific seed from a save file, presumably to recreate game
> state. If that's correct then this should be patched to use
> srand_deterministic(), see rand(3) for an explanation.

Thanks! It's the case.

In WRKSRC/src/datastoring.cpp, DataStoring::LoadFromContent calls 
DataStoring::LoadGameManager, fetching the seed from the given
save file.

I've changed the patch accordingly. 

> 
> > Any comment? 
> > 
> > Charlène. 
> > 
> > [1] https://bsd.network/@julianaito/101677613297792800
> > 


Index: Makefile
===
RCS file: /cvs/ports/games/spacehulk/Makefile,v
retrieving revision 1.19
diff -u -p -u -p -r1.19 Makefile
--- Makefile24 Oct 2018 14:28:04 -  1.19
+++ Makefile1 Mar 2019 23:47:58 -
@@ -4,7 +4,7 @@ COMMENT=total conversion of the Space H
 
 DISTNAME=  spacehulk-1.5-beta1
 PKGNAME=   spacehulk-1.5beta1
-REVISION = 9
+REVISION = 10
 CATEGORIES=games x11
 
 HOMEPAGE=  http://r.vinot.free.fr/spacehulk/
@@ -12,10 +12,11 @@ HOMEPAGE=   http://r.vinot.free.fr/spacehu
 # GPL
 PERMIT_PACKAGE_CDROM=  Yes
 
-WANTLIB += GL ICE SM X11 X11-xcb Xau Xcursor Xdamage Xdmcp Xext Xfixes
-WANTLIB += Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm c drm expat
-WANTLIB += fontconfig freetype glapi jpeg lcms m mng png pthread
-WANTLIB += ${COMPILER_LIBCXX} xcb xcb-dri2 xcb-glx z
+WANTLIB += ${COMPILER_LIBCXX} GL ICE SM X11 X11-xcb Xcursor Xdamage
+WANTLIB += Xext Xfixes Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm
+WANTLIB += c drm expat fontconfig freetype glapi jpeg lcms m mng
+WANTLIB += png16 xcb xcb-dri2 xcb-dri3 xcb-glx xcb-present xcb-sync
+WANTLIB += xcb-xfixes xshmfence z
 
 COMPILER = base-clang ports-gcc base-gcc
 
Index: patches/patch-src_rand_h
===
RCS file: patches/patch-src_rand_h
diff -N patches/patch-src_rand_h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-src_rand_h1 Mar 2019 23:47:58 -
@@ -0,0 +1,23 @@
+$OpenBSD$
+ports-gcc fix: error: 'srand' was not declared in this scope
+Also, the seed value comes from savefiles, we need to use 
+the deterministic algorithm.
+Index: src/rand.h
+--- src/rand.h.orig
 src/rand.h
+@@ -1,12 +1,14 @@
+ #ifndef _RAND_H_
+ #define _RAND_H_
+ 
++#include 
++
+ class Rand {
+ public:
+   static int seedvalue;
+   static int roll(int n, bool store=true);
+   static int simpleroll(int n);
+-  static void setSeed(int s) {seedvalue=s; srand(s);}
++  static void setSeed(int s) {seedvalue=s; srand_deterministic(s);}
+ };
+ 
+ #endif



Re: NEW: squash-fuse

2019-03-01 Thread Stuart Henderson
On 2019/03/01 16:19, Diana Eichert wrote:
> I built  squashfuse, mounted squashfs image, ls on mount point shows nothing.
> 
>  squashfuse -o debug,allow_other  /home/deeiche/tmp/squashfs.img  /mnt_deeiche

So this is similar to what I saw when I tried it on amd64 with the
images I found... But I just noticed there are some other tools that
aren't normally installed: squashfuse_ls and squashfuse_extract.
And these *are* able to list and extract files. So the problem must
be on the FUSE side somewhere rather than the squashfs reader.

I've attached a replacement tar that builds the tools so I think
you should at least be able to extract files out of these images,
even if the FUSE part doesn't work properly.



squashfuse.tgz
Description: application/tar-gz


Re: NEW: squash-fuse

2019-03-01 Thread Diana Eichert
I built  squashfuse, mounted squashfs image, ls on mount point shows nothing.

 squashfuse -o debug,allow_other  /home/deeiche/tmp/squashfs.img  /mnt_deeiche


On Wed, Feb 27, 2019 at 9:20 PM Diana Eichert  wrote:
>
> ok, used the 6.4 changes, built and installed package.  Will try this
> package out tomorrow.
>
> thanks
>
> On Wed, Feb 27, 2019 at 3:22 PM Stuart Henderson  wrote:
> >
> > On 2019/02/27 15:11, Diana Eichert wrote:
> > > Is this port for current?  I have 6.4 on the USG and it failed here.
> >
> > yes, for 6.4 you need to at least change
> >
> > do-gen:
> > cd ${WRKSRC} && ${AUTOCONF_ENV} autoreconf -fi
> >
> > to
> >
> > post-patch:
> > cd ${WRKSRC} && AUTOMAKE_VERSION=${AUTOMAKE_VERSION} 
> > AUTOCONF_VERSION=${AUTOCONF_VERSION} autoreconf -fi
> >
> >
>
>
> --
>
> -
>
> Past hissy-fits are not a predictor of future hissy-fits.
> Nick Holland(06 Dec 2005)
>
> To announce that there must be no criticism of the president,
> or that we are to stand by the president, right or wrong, is not
> only unpatriotic and servile, but is morally treasonable to
> the American public.  - Theodore Roosevelt(1918)



-- 

-

Past hissy-fits are not a predictor of future hissy-fits.
Nick Holland(06 Dec 2005)

To announce that there must be no criticism of the president,
or that we are to stand by the president, right or wrong, is not
only unpatriotic and servile, but is morally treasonable to
the American public.  - Theodore Roosevelt(1918)



Re: [ports-gcc] Unbreak games/spacehulk

2019-03-01 Thread Stuart Henderson
On 2019/03/01 23:49, Charlene Wendling wrote:
> 
> > http://build-failures.rhaalovely.net/powerpc/2019-02-04/games/spacehulk.log
> > http://build-failures.rhaalovely.net/sparc64/2019-02-03/games/spacehulk.log
> 
> It was just a single missing header. While doing a checkup of the
> port, i noticed that WANTLIB needed a major refresh as well. 
> 
> It builds and works fine on macppc [1] and amd64. 

Hmm, at some points in the code it's using srand (via setSeed) to try
to set a specific seed from a save file, presumably to recreate game
state. If that's correct then this should be patched to use
srand_deterministic(), see rand(3) for an explanation.


> Any comment? 
> 
> Charlène. 
> 
> [1] https://bsd.network/@julianaito/101677613297792800
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/games/spacehulk/Makefile,v
> retrieving revision 1.19
> diff -u -p -u -p -r1.19 Makefile
> --- Makefile  24 Oct 2018 14:28:04 -  1.19
> +++ Makefile  1 Mar 2019 20:21:44 -
> @@ -4,7 +4,7 @@ COMMENT=  total conversion of the Space H
>  
>  DISTNAME=spacehulk-1.5-beta1
>  PKGNAME= spacehulk-1.5beta1
> -REVISION =   9
> +REVISION =   10
>  CATEGORIES=  games x11
>  
>  HOMEPAGE=http://r.vinot.free.fr/spacehulk/
> @@ -12,10 +12,11 @@ HOMEPAGE= http://r.vinot.free.fr/spacehu
>  # GPL
>  PERMIT_PACKAGE_CDROM=Yes
>  
> -WANTLIB += GL ICE SM X11 X11-xcb Xau Xcursor Xdamage Xdmcp Xext Xfixes
> -WANTLIB += Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm c drm expat
> -WANTLIB += fontconfig freetype glapi jpeg lcms m mng png pthread
> -WANTLIB += ${COMPILER_LIBCXX} xcb xcb-dri2 xcb-glx z
> +WANTLIB += ${COMPILER_LIBCXX} GL ICE SM X11 X11-xcb Xcursor Xdamage
> +WANTLIB += Xext Xfixes Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm
> +WANTLIB += c drm expat fontconfig freetype glapi jpeg lcms m mng
> +WANTLIB += png16 xcb xcb-dri2 xcb-dri3 xcb-glx xcb-present xcb-sync
> +WANTLIB += xcb-xfixes xshmfence z
>  
>  COMPILER =   base-clang ports-gcc base-gcc
>  
> Index: patches/patch-src_rand_h
> ===
> RCS file: patches/patch-src_rand_h
> diff -N patches/patch-src_rand_h
> --- /dev/null 1 Jan 1970 00:00:00 -
> +++ patches/patch-src_rand_h  1 Mar 2019 20:21:44 -
> @@ -0,0 +1,15 @@
> +$OpenBSD$
> +ports-gcc fix:
> +error: 'srand' was not declared in this scope
> +Index: src/rand.h
> +--- src/rand.h.orig
>  src/rand.h
> +@@ -1,6 +1,8 @@
> + #ifndef _RAND_H_
> + #define _RAND_H_
> + 
> ++#include 
> ++
> + class Rand {
> + public:
> +   static int seedvalue;
> 



[ports-gcc] Unbreak games/spacehulk

2019-03-01 Thread Charlene Wendling


> http://build-failures.rhaalovely.net/powerpc/2019-02-04/games/spacehulk.log
> http://build-failures.rhaalovely.net/sparc64/2019-02-03/games/spacehulk.log

It was just a single missing header. While doing a checkup of the
port, i noticed that WANTLIB needed a major refresh as well. 

It builds and works fine on macppc [1] and amd64. 

Any comment? 

Charlène. 

[1] https://bsd.network/@julianaito/101677613297792800

Index: Makefile
===
RCS file: /cvs/ports/games/spacehulk/Makefile,v
retrieving revision 1.19
diff -u -p -u -p -r1.19 Makefile
--- Makefile24 Oct 2018 14:28:04 -  1.19
+++ Makefile1 Mar 2019 20:21:44 -
@@ -4,7 +4,7 @@ COMMENT=total conversion of the Space H
 
 DISTNAME=  spacehulk-1.5-beta1
 PKGNAME=   spacehulk-1.5beta1
-REVISION = 9
+REVISION = 10
 CATEGORIES=games x11
 
 HOMEPAGE=  http://r.vinot.free.fr/spacehulk/
@@ -12,10 +12,11 @@ HOMEPAGE=   http://r.vinot.free.fr/spacehu
 # GPL
 PERMIT_PACKAGE_CDROM=  Yes
 
-WANTLIB += GL ICE SM X11 X11-xcb Xau Xcursor Xdamage Xdmcp Xext Xfixes
-WANTLIB += Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm c drm expat
-WANTLIB += fontconfig freetype glapi jpeg lcms m mng png pthread
-WANTLIB += ${COMPILER_LIBCXX} xcb xcb-dri2 xcb-glx z
+WANTLIB += ${COMPILER_LIBCXX} GL ICE SM X11 X11-xcb Xcursor Xdamage
+WANTLIB += Xext Xfixes Xft Xi Xinerama Xmu Xrandr Xrender Xt Xxf86vm
+WANTLIB += c drm expat fontconfig freetype glapi jpeg lcms m mng
+WANTLIB += png16 xcb xcb-dri2 xcb-dri3 xcb-glx xcb-present xcb-sync
+WANTLIB += xcb-xfixes xshmfence z
 
 COMPILER = base-clang ports-gcc base-gcc
 
Index: patches/patch-src_rand_h
===
RCS file: patches/patch-src_rand_h
diff -N patches/patch-src_rand_h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-src_rand_h1 Mar 2019 20:21:44 -
@@ -0,0 +1,15 @@
+$OpenBSD$
+ports-gcc fix:
+error: 'srand' was not declared in this scope
+Index: src/rand.h
+--- src/rand.h.orig
 src/rand.h
+@@ -1,6 +1,8 @@
+ #ifndef _RAND_H_
+ #define _RAND_H_
+ 
++#include 
++
+ class Rand {
+ public:
+   static int seedvalue;



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 14:12:20

Modified files:
net/wireshark  : Makefile 

Log message:
remove NO_TEST=Yes



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 13:57:14

Modified files:
net/wireshark  : Tag: OPENBSD_6_4 Makefile distinfo 

Log message:
update to wireshark-2.6.7 in -stable



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Juan Francisco Cantero Hurtado
CVSROOT:/cvs
Module name:ports
Changes by: juan...@cvs.openbsd.org 2019/03/01 13:52:33

Modified files:
lang/cython: Makefile distinfo 

Log message:
Update to cython 0.29.6.



Re: multimedia/phonon-backend/gstreamer tweak

2019-03-01 Thread Stuart Henderson
On 2019/03/01 12:53, Rafael Sadowski wrote:
> On Fri Mar 01, 2019 at 08:27:43AM +, Stuart Henderson wrote:
> > On 2019/03/01 06:56, Rafael Sadowski wrote:
> > > libxml is not in WANTLIB (also after update) but there is a CMake check
> > > at configure-time. Added NO_TEST=Yes, while here.
> > 
> > What's the story with libxml here? It has a cmake check but doesn't seem
> > to be used?
> 
> Exactly! There is a check in the main ./CMakeLists.txt and only one
> include (include_directories) in ./gstreamer/CMakeLists.txt.
> 
> "LibXml2 is required to compile the gstreamer backend for Phonon"
> ^^^

Yes I see the check - but I don't see where it is used.



Re: UPDATE: net/kismet

2019-03-01 Thread Matthias Kilian
Hi,

On Fri, Feb 15, 2019 at 11:44:51PM +0100, Matthias Kilian wrote:
> Still not tested (too much daywork)...

Finally, with a run(4) attached to my rotten netbook (amd64).  Works
as espected.

So ok, kili@, with this one addressed:

> One nit, however (already sent in private ail): pkg/MESSAGE should
> use ${PREFIX} instead of ${TRUEPREFIX} because TRUEPREFIX isn't
> passed to pkg_create(1).

If you want you can also drop me as MAINTAINER and/or put yourself
in.

Ciao,
Kili

ps: as a fun fact, I also tried to test it with that tiny run(4)
attached to my workstation under my desk in the office, but there
was absolutely nothing to see. As someone noted during a hackathon
a couple of years ago: the antenna is so tiny that it's besically
absent ;-)



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Charlene Wendling
CVSROOT:/cvs
Module name:ports
Changes by: c...@cvs.openbsd.org2019/03/01 13:01:27

Modified files:
games/crack-attack: Makefile 
Added files:
games/crack-attack/patches: patch-src_TextureLoader_h 

Log message:
crack-attack: Add missing header for ports-gcc

OK jca@



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Charlene Wendling
CVSROOT:/cvs
Module name:ports
Changes by: c...@cvs.openbsd.org2019/03/01 12:35:34

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

Log message:
Update smartmontools to 7.0
Changelog:
https://www.smartmontools.org/browser/tags/RELEASE_7_0/smartmontools/NEWS

OK giovanni@ (MAINTAINER) who had the same diff



[ports-gcc] Unbreak games/crack-attack

2019-03-01 Thread Charlene Wendling
Hi ports, Mattieu, 

> http://build-failures.rhaalovely.net/powerpc/2019-02-04/games/crack-attack.log
> http://build-failures.rhaalovely.net/sparc64/2019-02-03/games/crack-attack.log

It's just a missing header, once patched it builds and runs fine on
macppc [1]. No issues on amd64 indeed :)

Any comment? 

Charlène.


[1] https://bsd.network/@julianaito/101676999242372011


Index: Makefile
===
RCS file: /cvs/ports/games/crack-attack/Makefile,v
retrieving revision 1.24
diff -u -p -u -p -r1.24 Makefile
--- Makefile24 Oct 2018 14:28:02 -  1.24
+++ Makefile1 Mar 2019 19:08:54 -
@@ -3,7 +3,7 @@
 COMMENT=   OpenGL game based on SNES classic Tetris Attack
 
 DISTNAME=  crack-attack-1.1.14
-REVISION=  14
+REVISION=  15
 CATEGORIES=games
 
 MAINTAINER=Mattieu Baptiste 
Index: patches/patch-src_TextureLoader_h
===
RCS file: patches/patch-src_TextureLoader_h
diff -N patches/patch-src_TextureLoader_h
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-src_TextureLoader_h   1 Mar 2019 19:08:54 -
@@ -0,0 +1,14 @@
+$OpenBSD$
+Fix for ports-gcc:
+error: 'strncpy' was not declared in this scope
+Index: src/TextureLoader.h
+--- src/TextureLoader.h.orig
 src/TextureLoader.h
+@@ -28,6 +28,7 @@
+ #define TEXTURELOADER_H
+ 
+ #include 
++#include 
+ 
+ #include "glext.h"
+ #include "sstream.h"



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 11:06:46

Modified files:
net/wireshark  : Makefile distinfo 
net/wireshark/patches: patch-CMakeLists_txt patch-rawshark_c 
net/wireshark/pkg: DESCR-main PLIST-main PLIST-text 
Added files:
net/wireshark/patches: patch-caputils_capture-pcap-util_c 
Removed files:
net/wireshark/pkg: DESCR-gtk PLIST-gtk 

Log message:
update to wireshark-3.0.0



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 10:17:08

Modified files:
net/isc-bind   : Makefile distinfo 
net/isc-bind/patches: patch-bin_dig_dig_c patch-bin_dig_host_c 
  patch-bin_dig_nslookup_c 
  patch-lib_isc_unix_net_c 
  patch-lib_isc_unix_socket_c 

Log message:
update to BIND 9.11.6



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Ian Darwin
CVSROOT:/cvs
Module name:ports
Changes by: i...@cvs.openbsd.org2019/03/01 10:05:30

Modified files:
editors/libreoffice: Makefile 

Log message:
Remove BROKEN as builds on i386 with current clang. "give it a go" sthen@



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 08:27:27

Modified files:
databases/mariadb: Tag: OPENBSD_6_4 Makefile 
databases/mariadb/patches: Tag: OPENBSD_6_4 
   patch-scripts_mysql_install_db_sh 

Log message:
Fix the mysql_install_db script. From Brad.



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 08:27:06

Modified files:
databases/mariadb: Makefile 
databases/mariadb/patches: patch-scripts_mysql_install_db_sh 

Log message:
Fix the mysql_install_db script. From Brad.



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Jeremy Evans
CVSROOT:/cvs
Module name:ports
Changes by: jer...@cvs.openbsd.org  2019/03/01 07:30:45

Modified files:
databases/ruby-sequel_pg: Makefile distinfo 

Log message:
Update to sequel_pg 1.12.0



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Jeremy Evans
CVSROOT:/cvs
Module name:ports
Changes by: jer...@cvs.openbsd.org  2019/03/01 07:30:12

Modified files:
databases/ruby-sequel: Makefile distinfo 
databases/ruby-sequel/pkg: PLIST 

Log message:
Update to Sequel 5.18.0



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Giovanni Bechis
CVSROOT:/cvs
Module name:ports
Changes by: giova...@cvs.openbsd.org2019/03/01 07:16:42

Modified files:
net/p5-IP-Country: Makefile distinfo 

Log message:
Update database to 20190301



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2019/03/01 06:50:52

Modified files:
graphics/piglit: Makefile 

Log message:
Use CPPFLAGS instead of clobbering CFLAGS



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2019/03/01 05:47:27

Modified files:
lang/iverilog  : Makefile 

Log message:
Enable bz2 and thus LXT file support, unbreak on ports-gcc archs

On ports-gcc archs libbz2 was detected automatically because
/usr/local/lib is in the default library path, but the build failed at
compile time because bzlib.h wasn't found in the include search paths.

Initial diff by cwen@, ok sthen@ cwen@



[update] samba-4.8.9

2019-03-01 Thread Jeremie Courreges-Anglas


Hi,

here's an update to the latest samba version.  Note that the samba
daemon (AD DC support) is still broken at runtime.  Also smbd is slow at
startup.  Those are two problems that are still not fixed and which may
due to the switch to ld.lld.

port-lib-depends-check says ldap-2.4/ber-2.4 are used instead of
ldap/ber, because of a major version encoded in SONAME (a bit like
libpng).  I did not switch ldap-2.4/ber-2.4 in the diff below.

File server tests welcome...


Index: Makefile
===
RCS file: /cvs/ports/net/samba/Makefile,v
retrieving revision 1.268
diff -u -p -r1.268 Makefile
--- Makefile23 Jan 2019 01:46:19 -  1.268
+++ Makefile1 Mar 2019 12:12:13 -
@@ -1,6 +1,6 @@
 # $OpenBSD: Makefile,v 1.268 2019/01/23 01:46:19 jca Exp $
 
-VERSION =  4.8.7
+VERSION =  4.8.9
 DISTNAME = samba-${VERSION}
 
 COMMENT-main = SMB and CIFS client and server for UNIX
@@ -20,9 +20,8 @@ PKG_ARCH-docs =   *
 LDB_V =1.3.6
 TEVENT_V = 0.9.36
 
-REVISION-main =3
-REVISION-ldb = 5
-REVISION-tevent =  4
+REVISION-ldb = 6
+REVISION-tevent =  5
 
 SHARED_LIBS =  asn1-samba4 0.0 \
com_err-samba4  0.0 \
@@ -54,14 +53,14 @@ SHARED_LIBS =   asn1-samba4 0.0 \
samba-util  3.2 \
samdb   0.1 \
smbclient   4.2 \
-   smbconf 4.1 \
+   smbconf 5.0 \
smbldap 0.1 \
tevent  0.4 \
tevent-util 1.0 \
wbclient3.2 \
wind-samba4 0.0 \
-   replace 7.0 \
-   util-setid  7.0
+   replace 8.0 \
+   util-setid  8.0
 
 CATEGORIES =   net sysutils security
 
@@ -81,17 +80,17 @@ UTIL_WANTLIB =  ${UTIL_LIBS:S@^@lib/samb
 WANTLIB-common =   c pthread
 
 WANTLIB-main = ${WANTLIB-common} ${MODPY_WANTLIB}
-WANTLIB-main +=z
+WANTLIB-main +=crypto curses m util z
 WANTLIB-main +=avahi-client avahi-common cups dbus-1 execinfo 
fam
 WANTLIB-main +=iconv intl jansson lber ldap pam popt gnutls
 WANTLIB-main +=ldb pyldb-util pytalloc-util readline tdb 
talloc tevent
 WANTLIB-main +=${UTIL_WANTLIB}
 
 WANTLIB-ldb =  ${WANTLIB-common} ${MODPY_WANTLIB}
-WANTLIB-ldb += lber ldap popt talloc tdb tevent
+WANTLIB-ldb += lber ldap popt m talloc tdb tevent util
 
 WANTLIB-tevent =   ${WANTLIB-common} ${MODPY_WANTLIB}
-WANTLIB-tevent +=  talloc
+WANTLIB-tevent +=  m talloc util
 
 WANTLIB-util = ${WANTLIB-common}
 
Index: distinfo
===
RCS file: /cvs/ports/net/samba/distinfo,v
retrieving revision 1.73
diff -u -p -r1.73 distinfo
--- distinfo27 Nov 2018 10:15:58 -  1.73
+++ distinfo1 Mar 2019 12:12:13 -
@@ -1,2 +1,2 @@
-SHA256 (samba-4.8.7.tar.gz) = D29nky6Lsjq4O0MHADesRS+fxfIHY4V9K2fiCe5802I=
-SIZE (samba-4.8.7.tar.gz) = 17724232
+SHA256 (samba-4.8.9.tar.gz) = rSrPa+1DbBJTFKBU8FiTCOtmSsPZbPsC0F5lSkTgnIA=
+SIZE (samba-4.8.9.tar.gz) = 17750151
Index: pkg/PLIST-main
===
RCS file: /cvs/ports/net/samba/pkg/PLIST-main,v
retrieving revision 1.47
diff -u -p -r1.47 PLIST-main
--- pkg/PLIST-main  28 Nov 2018 16:36:05 -  1.47
+++ pkg/PLIST-main  1 Mar 2019 12:12:13 -
@@ -927,6 +927,7 @@ lib/samba/libcli-smb-common-samba4.so
 lib/samba/libcli-spoolss-samba4.so
 lib/samba/libcliauth-samba4.so
 lib/samba/libcluster-samba4.so
+lib/samba/libcmdline-contexts-samba4.so
 lib/samba/libcmdline-credentials-samba4.so
 @lib lib/samba/libcom_err-samba4.so.${LIBcom_err-samba4_VERSION}
 lib/samba/libcommon-auth-samba4.so
@@ -975,6 +976,7 @@ lib/samba/libnpa-tstream-samba4.so
 lib/samba/libnss-info-samba4.so
 lib/samba/libntvfs-samba4.so
 lib/samba/libpac-samba4.so
+lib/samba/libpopt-samba3-cmdline-samba4.so
 lib/samba/libpopt-samba3-samba4.so
 lib/samba/libposix-eadb-samba4.so
 lib/samba/libprinting-migrate-samba4.so
@@ -1056,6 +1058,7 @@ lib/samba/vfs/extd_audit.so
 lib/samba/vfs/fake_perms.so
 lib/samba/vfs/fruit.so
 lib/samba/vfs/full_audit.so
+lib/samba/vfs/glusterfs_fuse.so
 lib/samba/vfs/linux_xfs_sgid.so
 lib/samba/vfs/media_harmony.so
 lib/samba/vfs/netatalk.so
@@ -1201,6 +1204,7 @@ libexec/samba/
 @man man/man8/vfs_fruit.8
 @man man/man8/vfs_full_audit.8
 @man 

Re: multimedia/phonon-backend/gstreamer tweak

2019-03-01 Thread Rafael Sadowski
On Fri Mar 01, 2019 at 08:27:43AM +, Stuart Henderson wrote:
> On 2019/03/01 06:56, Rafael Sadowski wrote:
> > libxml is not in WANTLIB (also after update) but there is a CMake check
> > at configure-time. Added NO_TEST=Yes, while here.
> 
> What's the story with libxml here? It has a cmake check but doesn't seem
> to be used?

Exactly! There is a check in the main ./CMakeLists.txt and only one
include (include_directories) in ./gstreamer/CMakeLists.txt.

"LibXml2 is required to compile the gstreamer backend for Phonon"
^^^

> 
> > Index: Makefile
> > ===
> > RCS file: /cvs/ports/multimedia/phonon-backend/gstreamer/Makefile,v
> > retrieving revision 1.22
> > diff -u -p -u -p -r1.22 Makefile
> > --- Makefile19 Oct 2018 20:53:27 -  1.22
> > +++ Makefile20 Feb 2019 05:23:26 -
> > @@ -27,9 +27,9 @@ RUN_DEPENDS-main =multimedia/gstreamer1
> >  
> >  LIB_DEPENDS-icons =
> >  LIB_DEPENDS-main = ${LIB_DEPENDS} \
> > -   textproc/libxml \
> > multimedia/gstreamer1/core \
> > multimedia/gstreamer1/plugins-base
> > +LIB_DEPENDS-build =textproc/libxml
> 
> There is no -build subpackage.

Ops local jetlag ;) s/+LIB_DEPENDS-build/+BUILD_DEPENDS/

> 
> Changing runtime dependencies requires a REVISION bump.
> 

ACK;



Re: [UPDATE] sysutils/smartmontools 6.6 -> 7.0

2019-03-01 Thread Giovanni Bechis
On 2/28/19 6:17 PM, Charlene Wendling wrote:
> Hi Giovanni, ports, 
> 
> I wanted to check if i could read my nvme(4) ssd SMART infos, it seems
> it's not possible, but since i've tried with the latest version too, 
> i felt like sharing the diff :)
> 
> The full changelog can be found here [1], some highlights:
> 
> - Experimental JSON output is now available through the 
>   '-j' option
> - There is a new build option '--with-cxx11-regex', 'no' being the 
>   default. I've kept it as-is given what CONFIGURE_ARGS says.
> 
> It has been built and tested successfully on macppc and amd64.
> 
> Any comments are welcome!
>
ok giovanni@
I have the same diff on my tree and didn't commit it just because I am a 
slacker.
 Cheers
  Giovanni

 
> Charlène. 
> 
> [1]
> https://www.smartmontools.org/browser/tags/RELEASE_7_0/smartmontools/NEWS
> 
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/sysutils/smartmontools/Makefile,v
> retrieving revision 1.39
> diff -u -p -u -p -r1.39 Makefile
> --- Makefile  24 Oct 2018 14:28:10 -  1.39
> +++ Makefile  28 Feb 2019 16:44:04 -
> @@ -3,9 +3,8 @@
>  COMMENT= control and monitor storage systems using SMART
>  
>  # XXX at update time check whether C++11 is actually needed
> -DISTNAME=smartmontools-6.6
> +DISTNAME=smartmontools-7.0
>  CATEGORIES=  sysutils
> -REVISION=1
>  
>  HOMEPAGE=https://www.smartmontools.org/
>  MAINTAINER=  Giovanni Bechis 
> Index: distinfo
> ===
> RCS file: /cvs/ports/sysutils/smartmontools/distinfo,v
> retrieving revision 1.17
> diff -u -p -u -p -r1.17 distinfo
> --- distinfo  1 Dec 2017 17:10:48 -   1.17
> +++ distinfo  28 Feb 2019 16:44:04 -
> @@ -1,2 +1,2 @@
> -SHA256 (smartmontools-6.6.tar.gz) = 
> UfQ9D7Bk/Mr4I7vmjPDTF9CJX/iVqjU7MzmjsxalMFQ=
> -SIZE (smartmontools-6.6.tar.gz) = 903847
> +SHA256 (smartmontools-7.0.tar.gz) = 
> 5eGsJ4a8h/29b5LQ7nUbeZ+7PhoJwKajefnrZLPo9hw=
> +SIZE (smartmontools-7.0.tar.gz) = 944925
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/sysutils/smartmontools/pkg/PLIST,v
> retrieving revision 1.7
> diff -u -p -u -p -r1.7 PLIST
> --- pkg/PLIST 18 May 2015 17:17:40 -  1.7
> +++ pkg/PLIST 28 Feb 2019 16:44:04 -
> @@ -1,4 +1,5 @@
>  @comment $OpenBSD: PLIST,v 1.7 2015/05/18 17:17:40 giovanni Exp $
> +@rcscript ${RCDIR}/smartd
>  @man man/man5/smartd.conf.5
>  @man man/man8/smartctl.8
>  @man man/man8/smartd.8
> @@ -16,4 +17,3 @@ share/examples/smartmontools/Example5
>  share/examples/smartmontools/Example6
>  share/examples/smartmontools/README
>  share/examples/smartmontools/smartd_warning.sh
> -@rcscript ${RCDIR}/smartd
> 



UPDATE: www/stagit 0.8->0.9.1

2019-03-01 Thread Hiltjo Posthuma
Hi,

This updates stagit from 0.8 to 0.9.1.

Port changes:

- Respect system LDFLAGS.
- Use the main releases location (2f30 is a mirror).
- Remove now unneeded config.mk patch: stagit now checks #ifdef __OpenBSD__
  for pledge(2).


stagit project changes:

- Fix compile for API change in new libgit2 0.28+ (libgit changed giterr_last()
  to git_error_last()).
- Change order of commits in log from most recent to old to applied order.
- Improve indication of changes, prefix with letters similar to CVS.
- Improve heuristic of file rename changes.
- Detect more filenames for README and LICENSE files: .md and COPYING.
- Improve stylesheet (CSS).
- Minor documentation improvements.


Patch below:


diff --git a/www/stagit/Makefile b/www/stagit/Makefile
index 55f23797597..dc73aad1198 100644
--- a/www/stagit/Makefile
+++ b/www/stagit/Makefile
@@ -2,11 +2,11 @@
 
 COMMENT =  static git page generator
 
-DISTNAME = stagit-0.8
+DISTNAME = stagit-0.9.1
 
 CATEGORIES =   www
 
-HOMEPAGE = https://git.2f30.org/stagit/
+HOMEPAGE = https://codemadness.org/
 
 # MIT/X Consortium License
 PERMIT_PACKAGE_CDROM = Yes
@@ -16,13 +16,12 @@ WANTLIB =   c git2
 
 LIB_DEPENDS =  devel/libgit2/libgit2>=0.22
 
-MASTER_SITES = https://dl.2f30.org/releases/
+MASTER_SITES = https://codemadness.org/releases/stagit/
 
 MAKE_FLAGS=CC='${CC}' \
-   CFLAGS='${CFLAGS}' \
-   COMPATOBJ='' \
-   GITINC=${LOCALBASE}/include \
-   GITLIB=${LOCALBASE}/lib
+   CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
+   LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib -lgit2" \
+   COMPATOBJ=''
 
 NO_TEST =  Yes
 
diff --git a/www/stagit/distinfo b/www/stagit/distinfo
index 83181d38808..00a44d5cc0b 100644
--- a/www/stagit/distinfo
+++ b/www/stagit/distinfo
@@ -1,2 +1,2 @@
-SHA256 (stagit-0.8.tar.gz) = 3w0+/hopdY5BUh1Ku8cSvPv+++uDeUXylRIf9oC8KKY=
-SIZE (stagit-0.8.tar.gz) = 17378
+SHA256 (stagit-0.9.1.tar.gz) = hRDMfq5rusctjMYQkuYi0fpxkvGevJrH/lkZIwC/55A=
+SIZE (stagit-0.9.1.tar.gz) = 18426
diff --git a/www/stagit/patches/patch-config_mk 
b/www/stagit/patches/patch-config_mk
deleted file mode 100644
index 34fae97ad5a..000
--- a/www/stagit/patches/patch-config_mk
+++ /dev/null
@@ -1,9 +0,0 @@
-Index: config.mk
 config.mk.orig
-+++ config.mk
-@@ -29,4 +29,4 @@ LDFLAGS = -s ${LIBS}
- CPPFLAGS = -D_XOPEN_SOURCE=700 -D_DEFAULT_SOURCE -D_BSD_SOURCE ${INCS}
- 
- # OpenBSD 5.9+: use pledge(2)
--#CPPFLAGS = -D_XOPEN_SOURCE=700 -D_DEFAULT_SOURCE -D_BSD_SOURCE -DUSE_PLEDGE 
${INCS}
-+CPPFLAGS += -DUSE_PLEDGE
diff --git a/www/stagit/pkg/PLIST b/www/stagit/pkg/PLIST
index a92f071a033..6ecd7bc1368 100644
--- a/www/stagit/pkg/PLIST
+++ b/www/stagit/pkg/PLIST
@@ -3,10 +3,10 @@
 @bin bin/stagit-index
 @man man/man1/stagit-index.1
 @man man/man1/stagit.1
-share/stagit/
-share/stagit/README
-share/stagit/example_create.sh
-share/stagit/example_post-receive.sh
-share/stagit/favicon.png
-share/stagit/logo.png
-share/stagit/style.css
+share/doc/stagit/
+share/doc/stagit/README
+share/doc/stagit/example_create.sh
+share/doc/stagit/example_post-receive.sh
+share/doc/stagit/favicon.png
+share/doc/stagit/logo.png
+share/doc/stagit/style.css

-- 
Kind regards,
Hiltjo



Re: your mail

2019-03-01 Thread Stuart Henderson
On 2019/03/01 02:49, Eddie Thieda wrote:
> Updated url for simh pkg/DESC file.
> 
> cvs server: Diffing .
> cvs server: Diffing patches
> cvs server: Diffing pkg
> Index: pkg/DESCR
> ===
> RCS file: /cvs/ports/emulators/simh/pkg/DESCR,v
> retrieving revision 1.10
> diff -u -p -r1.10 DESCR
> --- pkg/DESCR   10 May 2007 21:01:15 -  1.10
> +++ pkg/DESCR   1 Mar 2019 07:43:51 -
> @@ -20,5 +20,5 @@ Simulators included in this package:
> - Royal-Mcbee LGP-30, LGP-21
> - Scientific Data Systems SDS 940
> 
> -See http://www.openbsd.org/vax-simh.html for instructions on how to run
> +See http://www.openbsd.org/vax.html for instructions on how to run
>  OpenBSD/vax on simh-vax.

vax.html doesn't include the instructions that used to be on
vax-simh.html, I'll just remove the link instead.

> 02:44:57 /usr/ports/emulators/simh $ doas cvs diff
> cvs server: Diffing .
> cvs server: Diffing patches
> cvs server: Diffing pkg
> Index: pkg/DESCR
> ===
> RCS file: /cvs/ports/emulators/simh/pkg/DESCR,v
> retrieving revision 1.10
> diff -u -p -r1.10 DESCR
> --- pkg/DESCR   10 May 2007 21:01:15 -  1.10
> +++ pkg/DESCR   1 Mar 2019 07:45:03 -
> @@ -20,5 +20,5 @@ Simulators included in this package:
> - Royal-Mcbee LGP-30, LGP-21
> - Scientific Data Systems SDS 940
> 
> -See http://www.openbsd.org/vax-simh.html for instructions on how to run
> +See http://www.openbsd.org/vax.html for instructions on how to run
>  OpenBSD/vax on simh-vax.



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2019/03/01 02:39:38

Modified files:
emulators/simh : Makefile 
emulators/simh/pkg: DESCR 

Log message:
remove link to the no-longer-present http://www.openbsd.org/vax-simh.html

Eddie Thieda suggested linking to vax.html but that doesn't include any
installation instructions.



答复: [Update] devel/p5-Array-Compare : update to 3.0.2

2019-03-01 Thread wen heping
Sorry for the twice sending the mail by mistake.
And please hold the mail because the patch need more
tests, bioperl depends on it.

wen



发件人: owner-po...@openbsd.org  代表 wen heping 

发送时间: 2019年3月1日 15:20
收件人: ports@openbsd.org
主题: [Update] devel/p5-Array-Compare : update to 3.0.2

Hi, ports@:

   Here is a patch to update devel/p5-Array-Compare to 3.0.2.
   It build OK and passed all tests on my OpenBSD-current amd64 system.
   No other ports depends on it.

  Comments ?

wen


Re: UPDATE: sysutils/pick

2019-03-01 Thread Marcus MERIGHI
Hello Anton, 

I suspect my mail to  did not 
make it. 
If it did make it and was declined then do not read any further.
My suggestion inline below...

an...@openbsd.org (Anton Lindqvist), 2019.02.28 (Thu) 20:46 (CET):
> Hi,
> Update pick to 3.0.0 from maintainer. The changelog can be found here[1]
> and the only real change is replacing auto{conf,make} with a
> shell-script and plain Makefile(s).
> 
> Comments? OK?
> 
> [1] https://github.com/mptre/pick/releases/tag/v3.0.0
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/sysutils/pick/Makefile,v
> retrieving revision 1.9
> diff -u -p -r1.9 Makefile
> --- Makefile  11 Apr 2018 06:55:15 -  1.9
> +++ Makefile  27 Feb 2019 19:30:29 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT =fuzzy select anything

"fuzzy search to use in unix pipes, with curses menu"

Marcus

>  
> -V =  2.0.2
> +V =  3.0.0
>  DISTNAME =   pick-${V}
>  
>  CATEGORIES = sysutils
> @@ -19,7 +19,6 @@ WANTLIB +=  c curses
>  
>  MASTER_SITES =   https://github.com/mptre/pick/releases/download/v${V}/
>  
> -SEPARATE_BUILD = Yes
> -CONFIGURE_STYLE =gnu
> +CONFIGURE_STYLE =simple
>  
>  .include 
> Index: distinfo
> ===
> RCS file: /cvs/ports/sysutils/pick/distinfo,v
> retrieving revision 1.8
> diff -u -p -r1.8 distinfo
> --- distinfo  11 Apr 2018 06:55:15 -  1.8
> +++ distinfo  27 Feb 2019 19:30:29 -
> @@ -1,2 +1,2 @@
> -SHA256 (pick-2.0.2.tar.gz) = 8rQ6qlQK0/8FolalMcL0fT2VFFuCwdGw1i37QNeT04U=
> -SIZE (pick-2.0.2.tar.gz) = 132174
> +SHA256 (pick-3.0.0.tar.gz) = J4O5wRtUMBzjLAwucM9NyNQ3y2jPE2uiBKYGVCIFUpg=
> +SIZE (pick-3.0.0.tar.gz) = 29736
> 



CVS: cvs.openbsd.org: ports

2019-03-01 Thread Benoit Lecocq
CVSROOT:/cvs
Module name:ports
Changes by: ben...@cvs.openbsd.org  2019/03/01 01:39:23

Modified files:
devel/p5-Test-MockTime: Makefile distinfo 

Log message:
Update to p5-Test-MockTime-0.17.



UPDATE: Nextcloud-15.0.5

2019-03-01 Thread Gonzalo L. Rodriguez
Hello,

Update for Nextcloud to 15.0.5:

https://nextcloud.com/changelog/

OK? Comments?

Cheers.-

-- 
Sending from my toaster.
Index: Makefile
===
RCS file: /cvs/ports/www/nextcloud/Makefile,v
retrieving revision 1.33
diff -u -p -r1.33 Makefile
--- Makefile8 Feb 2019 07:38:51 -   1.33
+++ Makefile1 Mar 2019 08:33:08 -
@@ -2,7 +2,7 @@
 
 COMMENT=   easy and universal access to shared and/or personal 
files
 
-V= 15.0.4
+V= 15.0.5
 DISTNAME=  nextcloud-${V}
 EXTRACT_SUFX=  .tar.bz2
 
Index: distinfo
===
RCS file: /cvs/ports/www/nextcloud/distinfo,v
retrieving revision 1.21
diff -u -p -r1.21 distinfo
--- distinfo8 Feb 2019 07:38:51 -   1.21
+++ distinfo1 Mar 2019 08:33:08 -
@@ -1,2 +1,2 @@
-SHA256 (nextcloud-15.0.4.tar.bz2) = 
+H2wR8F09WPjkaIslZ2aznZ8oU7w+X/DlPMGH8Y9j3c=
-SIZE (nextcloud-15.0.4.tar.bz2) = 47648166
+SHA256 (nextcloud-15.0.5.tar.bz2) = 
RmGGm3l6NAzZZ6uz2+aTGzdUNOCkRIA0aifM1zJQuYg=
+SIZE (nextcloud-15.0.5.tar.bz2) = 56489515
Index: pkg/PLIST
===
RCS file: /cvs/ports/www/nextcloud/pkg/PLIST,v
retrieving revision 1.24
diff -u -p -r1.24 PLIST
--- pkg/PLIST   8 Feb 2019 07:38:51 -   1.24
+++ pkg/PLIST   1 Mar 2019 08:33:09 -
@@ -10,7 +10,6 @@ nextcloud/.htaccess.dist
 nextcloud/.user.ini
 nextcloud/3rdparty/
 nextcloud/3rdparty/.drone.yml
-nextcloud/3rdparty/.gitignore
 nextcloud/3rdparty/LICENSE INFO
 nextcloud/3rdparty/README.md
 nextcloud/3rdparty/autoload.php
@@ -1473,7 +1472,6 @@ nextcloud/3rdparty/aws/aws-sdk-php/src/d
 nextcloud/3rdparty/aws/aws-sdk-php/src/functions.php
 nextcloud/3rdparty/bantu/
 nextcloud/3rdparty/bantu/ini-get-wrapper/
-nextcloud/3rdparty/bantu/ini-get-wrapper/.gitignore
 nextcloud/3rdparty/bantu/ini-get-wrapper/.scrutinizer.yml
 nextcloud/3rdparty/bantu/ini-get-wrapper/LICENSE
 nextcloud/3rdparty/bantu/ini-get-wrapper/README.md
@@ -1540,7 +1538,6 @@ nextcloud/3rdparty/doctrine/annotations/
 
nextcloud/3rdparty/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php
 nextcloud/3rdparty/doctrine/cache/
 nextcloud/3rdparty/doctrine/cache/.coveralls.yml
-nextcloud/3rdparty/doctrine/cache/.gitignore
 nextcloud/3rdparty/doctrine/cache/LICENSE
 nextcloud/3rdparty/doctrine/cache/README.md
 nextcloud/3rdparty/doctrine/cache/UPGRADE.md
@@ -1573,7 +1570,6 @@ nextcloud/3rdparty/doctrine/cache/lib/Do
 nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/XcacheCache.php
 nextcloud/3rdparty/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php
 nextcloud/3rdparty/doctrine/collections/
-nextcloud/3rdparty/doctrine/collections/.gitignore
 nextcloud/3rdparty/doctrine/collections/LICENSE
 nextcloud/3rdparty/doctrine/collections/lib/
 nextcloud/3rdparty/doctrine/collections/lib/Doctrine/
@@ -1940,7 +1936,6 @@ nextcloud/3rdparty/doctrine/dbal/lib/Doc
 nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Version.php
 
nextcloud/3rdparty/doctrine/dbal/lib/Doctrine/DBAL/VersionAwarePlatformDriver.php
 nextcloud/3rdparty/doctrine/inflector/
-nextcloud/3rdparty/doctrine/inflector/.gitignore
 nextcloud/3rdparty/doctrine/inflector/LICENSE
 nextcloud/3rdparty/doctrine/inflector/lib/
 nextcloud/3rdparty/doctrine/inflector/lib/Doctrine/
@@ -2176,7 +2171,6 @@ nextcloud/3rdparty/guzzlehttp/streams/sr
 nextcloud/3rdparty/guzzlehttp/streams/src/Utils.php
 nextcloud/3rdparty/icewind/
 nextcloud/3rdparty/icewind/searchdav/
-nextcloud/3rdparty/icewind/searchdav/.gitignore
 nextcloud/3rdparty/icewind/searchdav/LICENSE
 nextcloud/3rdparty/icewind/searchdav/src/
 nextcloud/3rdparty/icewind/searchdav/src/Backend/
@@ -2208,7 +2202,6 @@ nextcloud/3rdparty/icewind/searchdav/src
 nextcloud/3rdparty/icewind/searchdav/src/XML/Scope.php
 nextcloud/3rdparty/icewind/searchdav/src/XML/SupportedQueryGrammar.php
 nextcloud/3rdparty/icewind/streams/
-nextcloud/3rdparty/icewind/streams/.gitignore
 nextcloud/3rdparty/icewind/streams/src/
 nextcloud/3rdparty/icewind/streams/src/CallbackWrapper.php
 nextcloud/3rdparty/icewind/streams/src/CountWrapper.php
@@ -2410,7 +2403,6 @@ nextcloud/3rdparty/league/flysystem/src/
 nextcloud/3rdparty/league/flysystem/src/Util/StreamHasher.php
 nextcloud/3rdparty/lukasreschke/
 nextcloud/3rdparty/lukasreschke/id3parser/
-nextcloud/3rdparty/lukasreschke/id3parser/.gitignore
 nextcloud/3rdparty/lukasreschke/id3parser/README.md
 nextcloud/3rdparty/lukasreschke/id3parser/composer.json
 nextcloud/3rdparty/lukasreschke/id3parser/src/
@@ -2569,7 +2561,6 @@ nextcloud/3rdparty/microsoft/azure-stora
 
nextcloud/3rdparty/microsoft/azure-storage-common/src/Common/SharedAccessSignatureHelper.php
 nextcloud/3rdparty/mtdowling/
 nextcloud/3rdparty/mtdowling/jmespath.php/
-nextcloud/3rdparty/mtdowling/jmespath.php/.gitignore
 

Re: multimedia/phonon-backend/gstreamer tweak

2019-03-01 Thread Stuart Henderson
On 2019/03/01 06:56, Rafael Sadowski wrote:
> libxml is not in WANTLIB (also after update) but there is a CMake check
> at configure-time. Added NO_TEST=Yes, while here.

What's the story with libxml here? It has a cmake check but doesn't seem
to be used?

> Index: Makefile
> ===
> RCS file: /cvs/ports/multimedia/phonon-backend/gstreamer/Makefile,v
> retrieving revision 1.22
> diff -u -p -u -p -r1.22 Makefile
> --- Makefile  19 Oct 2018 20:53:27 -  1.22
> +++ Makefile  20 Feb 2019 05:23:26 -
> @@ -27,9 +27,9 @@ RUN_DEPENDS-main =  multimedia/gstreamer1
>  
>  LIB_DEPENDS-icons =
>  LIB_DEPENDS-main =   ${LIB_DEPENDS} \
> - textproc/libxml \
>   multimedia/gstreamer1/core \
>   multimedia/gstreamer1/plugins-base
> +LIB_DEPENDS-build =  textproc/libxml

There is no -build subpackage.

Changing runtime dependencies requires a REVISION bump.



Re: UPDATE: misc/screen

2019-03-01 Thread Stuart Henderson
On 2019/03/01 06:51, Rafael Sadowski wrote:
> Because it's on my OpenBSD ports list[1]. Please find below an update diff
> to the latest stable screen version.
> 
> Build tested with base clang, base gcc and ports gcc with all FLAVORS.
> Only lightly runtime tested with all FLAVORS on amd64 .
> 
> Tests welcome and also OKs/Feedback.

The shm flavour builds, but doesn't really work, it exits right at
startup. I've made two or three attempts to update screen in the past,
but was never able to get that to work (it's needed for brltty), so I
haven't sent out diffs..



powerpc bulk build report

2019-03-01 Thread landry
bulk build on macppc-1.ports.openbsd.org
started on  Mon Feb 4 13:56:51 MST 2019
finished at Fri Mar 1 01:00:46 MST 2019
lasted 25D04h03m
done with kern.version=OpenBSD 6.4-current (GENERIC.MP) #401: Sun Feb  3 
13:55:41 MST 2019

built packages:9377
Feb 4:398
Feb 5:463
Feb 6:111
Feb 7:286
Feb 8:588
Feb 9:398
Feb 10:352
Feb 11:267
Feb 12:215
Feb 13:162
Feb 14:215
Feb 15:236
Feb 16:112
Feb 17:268
Feb 18:214
Feb 19:221
Feb 20:376
Feb 21:248
Feb 22:118
Feb 23:136
Feb 24:348
Feb 25:300
Feb 26:305
Feb 27:335
Feb 28:2423
Mar 1:281


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

build failures: 88
http://build-failures.rhaalovely.net//powerpc/2019-02-04/audio/audacious-plugins.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/audio/ncmpc.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/audio/qsynth.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/benchmarks/wrk.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/cad/qucs.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/comms/hackrf.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/appstream-glib.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/avr/gdb.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/avr/libc.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/include-what-you-use.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/libvmime.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/py-llvmlite,python3.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/vte3.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/devel/xtensa-elf/gcc.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/editors/abiword.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/editors/neovim.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/editors/qscintilla,qt5.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/editors/scintilla.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/BasiliskII.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/citra.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/higan.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/nestopia,-libretro.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/ppsspp.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/retroarch.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/emulators/vice.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/crack-attack.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/freeorion.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/godot.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/grhino.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/openclonk.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/pentobi.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/spacehulk.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/games/supertux.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/geo/qlandkartegt.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/geo/spatialite/gis.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/graphics/aqsis.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/graphics/darktable.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/graphics/k3dsurf.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/graphics/makehuman.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/graphics/openscenegraph.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/graphics/pstoedit.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/inputmethods/scim-fcitx.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/inputmethods/scim-hangul.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/inputmethods/scim-pinyin.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/inputmethods/scim-tables.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/lang/gpc.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/lang/gprolog.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/lang/iverilog.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/lang/parrot.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/mail/mu.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/math/kst.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/math/mlpack,-main.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/math/veusz.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/math/z3.log
http://build-failures.rhaalovely.net//powerpc/2019-02-04/multimedia/mlt,,-main.log