[UPDATE] devel/p5-Coro to 6.511 + patch

2016-10-15 Thread Andrew Fresh
Coro 6.511 includes some patches to support perl 5.24, but it's 
apparently not enough, but fortunately someone at Debian has a patch for
the other problem building.

This update also disables the CORO_JIT because it violates W^X, yay for
a perl thing that does that I guess!

The current 6.49 port also needs to disable the JIT in order to work, so
not entirely convinced anyone actually uses this port. 

Anyway, with this, tests now pass under perl 5.24.1-RC4.

OK?

Index: Makefile
===
RCS file: /cvs/ports/devel/p5-Coro/Makefile,v
retrieving revision 1.13
diff -u -p -r1.13 Makefile
--- Makefile6 Jul 2016 21:06:21 -   1.13
+++ Makefile15 Oct 2016 22:21:14 -
@@ -3,7 +3,7 @@
 COMMENT =  coroutines for perl
 
 MODULES =  cpan
-DISTNAME = Coro-6.49
+DISTNAME = Coro-6.511
 REVISION = 0
 CATEGORIES =   devel
 
@@ -25,5 +25,8 @@ RUN_DEPENDS = devel/p5-Event>=0.89 \
 # check things work.
 
 # CONFIGURE_ENV = CORO_INTERFACE=s
+
+# The Coro JIT violates W^X, so we can't use it.
+CONFIGURE_ENV += CORO_JIT=n
 
 .include 
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-Coro/distinfo,v
retrieving revision 1.5
diff -u -p -r1.5 distinfo
--- distinfo14 Apr 2016 22:21:21 -  1.5
+++ distinfo15 Oct 2016 22:21:14 -
@@ -1,2 +1,2 @@
-SHA256 (Coro-6.49.tar.gz) = B4z0wM0efgx40+DPvAfN4sHvkBpPSwc2nBF3MPriFSI=
-SIZE (Coro-6.49.tar.gz) = 191823
+SHA256 (Coro-6.511.tar.gz) = fj7UjNs/N0LZSuOrPQiMOrgYxSH4aB2mxfZWvUmsU+o=
+SIZE (Coro-6.511.tar.gz) = 195173
Index: patches/patch-Coro_State_xs
===
RCS file: patches/patch-Coro_State_xs
diff -N patches/patch-Coro_State_xs
--- /dev/null   1 Jan 1970 00:00:00 -
+++ patches/patch-Coro_State_xs 15 Oct 2016 22:21:14 -
@@ -0,0 +1,22 @@
+$OpenBSD$
+Description: fix for Coro with 5.24
+Origin: https://paste.debian.net/688072
+Bug-Debian: https://bugs.debian.org/838851
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=114708
+Author: Anonymous
+Last-Update: 2016-09-25
+
+--- Coro/State.xs.orig Sun Jun 26 14:44:30 2016
 Coro/State.xs  Sat Oct 15 13:38:04 2016
+@@ -1412,7 +1412,11 @@ runops_trace (pTHX)
+   PUSHMARK (SP);
+   PUSHs (_sv_yes);
+   PUSHs (fullname);
++# if PERL_VERSION_ATLEAST(5,24,0)
++  PUSHs (CxHASARGS (cx) ? sv_2mortal (newRV_inc 
(PL_curpad[0])) : _sv_undef);
++#else
+   PUSHs (CxHASARGS (cx) ? sv_2mortal (newRV_inc ((SV 
*)cx->blk_sub.argarray)) : _sv_undef);
++#endif
+   PUTBACK;
+   cb = hv_fetch ((HV *)SvRV (coro_current), 
"_trace_sub_cb", sizeof ("_trace_sub_cb") - 1, 0);
+   if (cb) call_sv (*cb, G_KEEPERR | G_EVAL | G_VOID | 
G_DISCARD);



Re: OpenBSD 6/Qt 5/GC: crash

2016-10-15 Thread Claus Assmann
On Sat, Oct 15, 2016, Otto Moerbeek wrote:
> On Sat, Oct 15, 2016 at 11:59:05AM -0700, Claus Assmann wrote:

> > #0  0x178ecfe55d8a in _thread_sys___syscall () at :2
> > #1  0x178ecfe4662a in *_libc_mmap (addr=Variable "addr" is not 
> > available.
> > )
> > at /usr/src/lib/libc/sys/mmap.c:47
> > #2  0x178e9dc67db7 in WTF::OSAllocator::reserveAndCommit ()
> >from /usr/local/lib/qt5/libQt5WebKit.so.1.1

> smells lke a W^X violation. chekc your messages log.

Thanks, that is it.  I copied the binary to /usr/local and started
it from there, that worked.



[PATCH] for mupdf 1.8

2016-10-15 Thread Holger Mikolon
On some PDF documents I created with pdflatex mupdf 1.8p4 segfaults
in fz_process_path() (source/fitz/path.c)

The following upstream fix solves the issue for me. 
http://git.ghostscript.com/?p=mupdf.git;a=commit;h=47078209046ed26ff7828a73d5d43afe08a6941d

Below is a proposed patch file "patch-source_fitz_path_c"
based on the above upstream diff.

Holger
;-se


$ cat /usr/ports/textproc/mupdf/patches/patch-source_fitz_path_c

Bug 696630: Avoid needless (and potentially wrong) dereference.

--- source/fitz/path.c.orig Sat Nov 29 00:01:34 2014
+++ source/fitz/path.c  Sat Nov 29 00:01:39 2014
@@ -580,8 +580,8 @@
 {
int i, k, cmd_len;
float x, y, sx, sy;
-   uint8_t *cmds = path->cmds;
-   float *coords = path->coords;
+   uint8_t *cmds;
+   float *coords;
 
switch (path->packed)
{



[UPDATE] devel/p5-Scope-Upper to 0.29

2016-10-15 Thread Andrew Fresh
This is a simple update for Scope::Upper that does some refactoring, but
the big change is "a new implementation of reap(), localize_*() and
uplevel() to match the new context stack handling in perl 5.24."

https://metacpan.org/changes/distribution/Scope-Upper

Tests pass on my system with perl 5.24.1-RC4.

OK?

Index: Makefile
===
RCS file: /cvs/ports/devel/p5-Scope-Upper/Makefile,v
retrieving revision 1.13
diff -u -p -r1.13 Makefile
--- Makefile20 Mar 2016 19:56:34 -  1.13
+++ Makefile15 Oct 2016 20:50:04 -
@@ -3,7 +3,7 @@
 COMMENT =  act on upper scopes
 
 MODULES =  cpan
-DISTNAME = Scope-Upper-0.28
+DISTNAME = Scope-Upper-0.29
 CATEGORIES =   devel
 
 # Perl
Index: distinfo
===
RCS file: /cvs/ports/devel/p5-Scope-Upper/distinfo,v
retrieving revision 1.6
diff -u -p -r1.6 distinfo
--- distinfo24 Aug 2015 12:53:00 -  1.6
+++ distinfo15 Oct 2016 20:50:04 -
@@ -1,2 +1,2 @@
-SHA256 (Scope-Upper-0.28.tar.gz) = oNqBA96+AUQQ/GcY/jJ12ycTvpXCNfGMRZLNQUjoITc=
-SIZE (Scope-Upper-0.28.tar.gz) = 86754
+SHA256 (Scope-Upper-0.29.tar.gz) = Swc2CiQ84Myqz9+piuOO8mhqqQj89O89ZpEFrDZ1ngo=
+SIZE (Scope-Upper-0.29.tar.gz) = 93763



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2016/10/15 13:55:44

Modified files:
net/nagios/check_rabbitmq: Makefile 

Log message:
add missing CONFIGURE_STYLE=modbuild



Re: [NEW] cbmc - Bounded Model Checker for C and C++

2016-10-15 Thread Jan Klemkow
Hi Simon,

first, nice port.  I would like to test my own code with it.  But you
missed the clang dependency.  Your port is new and don't need a
REVISION.

bsd,port.mk(5):
REVISION
Revision number of the current package.  Defaults to empty (very
first package),...

Why do you not fixed the missing RCS tags of the portscheck you made?

Little nitpick: as far as I know its more common to use spaces between
variables and their equals signs like in
/usr/ports/infrastructure/templates/Makefile.template.

bye,
Jan

log:

## Entering big-int
gmake  -C big-int
gmake[1]: Entering directory
'/usr/ports/pobj/cbmc-5.5/cbmc-cbmc-5.5/src/big-int'
clang++ -c -MMD -MP -std=c++11  -Wall -O2  -o bigint-func.o
bigint-func.cc
gmake[1]: clang++: Command not found
gmake[1]: *** [../common:183: bigint-func.o] Error 127
gmake[1]: Leaving directory
'/usr/ports/pobj/cbmc-5.5/cbmc-cbmc-5.5/src/big-int'
gmake: *** [Makefile:50: big-int.dir] Error 2
*** Error 2 in . (/usr/ports/infrastructure/mk/bsd.port.mk:2671
'/usr/ports/pobj/cbmc-5.5/.build_done')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:1884
'/usr/ports/packages/amd64/all/cbmc-5.5p0.tgz')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:2409
'_internal-package')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:2389
'package')
*** Error 1 in . (/usr/ports/infrastructure/mk/bsd.port.mk:1901
'/var/db/pkg/cbmc-5.5p0/+CONTENTS')
*** Error 1 in /usr/ports/devel/cbmc
(/usr/ports/infrastructure/mk/bsd.port.mk:2389 'install')


On Fri, Oct 14, 2016 at 08:15:21PM +0200, Simon Mages wrote:
> Hi,
> 
> this is my first port, i hope everything is fine.
> 
> A college of mine was using this tool to analyse some C code. I think this
> tool is pretty interesting and can be put to good use for all sorts of 
> programs
> or parts of it.
> 
> COMMENT=  Bounded Model Checker for C and C++ programs
> 
> # cat pkg/DESCR
> CBMC is a Bounded Model Checker for C and C++ programs. It supports C89, C99,
> most of C11 and most compiler extensions provided by gcc and Visual Studio. It
> also supports SystemC using Scoot. We have recently added experimental support
> for Java Bytecode.
> 
> CBMC verifies array bounds (buffer overflows), pointer safety, ex??cep??tions
> and user-specified as??ser??tions. Furthermore, it can check C and C++ for
> consistency with other languages, such as Verilog. The verification is
> performed by unwinding the loops in the program and passing the re??sul??ting
> equation to a decision procedure.
> 
> While CBMC is aimed for embedded software, it also supports dynamic memory
> allocation using malloc and new.
> 
> CBMC comes with a built-in solver for bit-vector formulas that is based on
> MiniSat. As an alternative, CBMC has featured support for external SMT solvers
> since version 3.3. The solvers we recommend are (in no particular order)
> Boolector, MathSAT, Yices 2 and Z3. Note that these solvers need to be
> installed separately and have different licensing conditions.
> 
> # portcheck
> Makefile does not have $OpenBSD$ RCS tag at the top
> patches/patch-Makefiles does not have $OpenBSD$ RCS tag at the top
> patches/patch-bigint-fix-includes does not have $OpenBSD$ RCS tag at the top
> devel/cbmc
> 
> Content of the archive:
> devel/cbmc
> devel/cbmc/Makefile
> devel/cbmc/patches
> devel/cbmc/patches/patch-Makefiles
> devel/cbmc/patches/patch-bigint-fix-includes
> devel/cbmc/distinfo
> devel/cbmc/pkg
> devel/cbmc/pkg/PLIST
> devel/cbmc/pkg/DESCR
> 
> BR
> Simon




CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 13:14:43

Modified files:
lang/elixir: Makefile distinfo 

Log message:
update to elixir-1.3.3



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 13:14:20

Modified files:
sysutils/libvirt: Makefile 
sysutils/libvirt-python: Makefile 
sysutils/p5-Sys-Virt: Makefile 
sysutils/ruby-libvirt: Makefile 
sysutils/virt-manager: Makefile 
devel/libvirt-glib: Makefile 
devel/spice-protocol: Makefile 
x11/nx : Makefile.inc 
x11/nx/nxcomp  : Makefile 
x11/nx/nxproxy : Makefile 
x11/nx/nxssh   : Makefile 
x11/nx/opennx  : Makefile 
x11/spice-gtk  : Makefile 

Log message:
drop maintainer for a bunch of ports (libvirt and nx) I hardly ever use anymore



Re: OpenBSD 6/Qt 5/GC: crash

2016-10-15 Thread Otto Moerbeek
On Sat, Oct 15, 2016 at 11:59:05AM -0700, Claus Assmann wrote:

> Maybe someone can give me a hint how to fix/handle this problem:
> GoldenCheetah crashes on OpenBSD 6.0 (amd64) when compiled against
> Qt5 (installed from ports). I currently have a working version on
> OpenBSD 5.3 (i386) compiled against Qt4 (from ports), but an upgrade
> is a bit overdue...
> 
> $ gdb GoldenCheetah{,.core}
[snip]
> #0  0x178ecfe55d8a in _thread_sys___syscall () at :2
> 2   : No such file or directory.
> in 
> (gdb) where
> #0  0x178ecfe55d8a in _thread_sys___syscall () at :2
> #1  0x178ecfe4662a in *_libc_mmap (addr=Variable "addr" is not available.
> )
> at /usr/src/lib/libc/sys/mmap.c:47
> #2  0x178e9dc67db7 in WTF::OSAllocator::reserveAndCommit ()
>from /usr/local/lib/qt5/libQt5WebKit.so.1.1

smells lke a W^X violation. chekc your messages log.

-Otto



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 13:05:18

Modified files:
x11/spice-gtk  : Makefile distinfo 
x11/spice-gtk/pkg: PLIST 

Log message:
update to spice-gtk-0.33



OpenBSD 6/Qt 5/GC: crash

2016-10-15 Thread Claus Assmann
Maybe someone can give me a hint how to fix/handle this problem:
GoldenCheetah crashes on OpenBSD 6.0 (amd64) when compiled against
Qt5 (installed from ports). I currently have a working version on
OpenBSD 5.3 (i386) compiled against Qt4 (from ports), but an upgrade
is a bit overdue...

$ gdb GoldenCheetah{,.core}
GNU gdb 6.3
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "amd64-unknown-openbsd6.0"...
Core was generated by `GoldenCheetah'.
Program terminated with signal 6, Aborted.
Reading symbols from /usr/lib/libpthread.so.22.0...done.
Loaded symbols for /usr/lib/libpthread.so.22.0
Loaded symbols for 
/home/ca/pd/cycling/GoldenCheetah/GoldenCheetah/src/GoldenCheetah
Reading symbols from 
/home/ca/pd/cycling/GoldenCheetah/GoldenCheetah/qwt/lib/libqwt.so.6.1...done.
Loaded symbols for 
/home/ca/pd/cycling/GoldenCheetah/GoldenCheetah/qwt/lib/libqwt.so.6.1
Reading symbols from /usr/lib/libz.so.5.0...done.
Loaded symbols for /usr/lib/libz.so.5.0
Reading symbols from /home/ca/OpenBSD/lib/libsrmio.so.2.0...done.
Loaded symbols for /home/ca/OpenBSD/lib/libsrmio.so.2.0
Reading symbols from /usr/local/lib/libusb.so.10.0...done.
Loaded symbols for /usr/local/lib/libusb.so.10.0
Reading symbols from /usr/local/lib/qt5/libQt5Svg.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Svg.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5WebKitWidgets.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5WebKitWidgets.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5MultimediaWidgets.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5MultimediaWidgets.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Widgets.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Widgets.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5WebKit.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5WebKit.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Multimedia.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Multimedia.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Gui.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Gui.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Xml.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Xml.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Sql.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Sql.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Network.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Network.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Concurrent.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Concurrent.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5SerialPort.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5SerialPort.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5Core.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5Core.so.1.1
Reading symbols from /usr/X11R6/lib/libGL.so.17.0...done.
Loaded symbols for /usr/X11R6/lib/libGL.so.17.0
Symbols already loaded for /usr/lib/libpthread.so.22.0
Reading symbols from /usr/local/lib/libestdc++.so.17.0...done.
Loaded symbols for /usr/local/lib/libestdc++.so.17.0
Reading symbols from /usr/lib/libm.so.9.0...done.
Loaded symbols for /usr/lib/libm.so.9.0
Reading symbols from /usr/lib/libc.so.88.0...done.
Loaded symbols for /usr/lib/libc.so.88.0
Reading symbols from /usr/local/lib/qt5/libQt5PrintSupport.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5PrintSupport.so.1.1
Reading symbols from /usr/local/lib/qt5/libQt5OpenGL.so.1.1...done.
Loaded symbols for /usr/local/lib/qt5/libQt5OpenGL.so.1.1
Reading symbols from /usr/lib/libstdc++.so.57.0...done.
Loaded symbols for /usr/lib/libstdc++.so.57.0
Reading symbols from /usr/local/lib/libusb-1.0.so.1.1...done.
Loaded symbols for /usr/local/lib/libusb-1.0.so.1.1
Reading symbols from /usr/X11R6/lib/libXext.so.13.0...done.
Loaded symbols for /usr/X11R6/lib/libXext.so.13.0
Reading symbols from /usr/X11R6/lib/libX11.so.16.1...done.
Loaded symbols for /usr/X11R6/lib/libX11.so.16.1
Reading symbols from /usr/local/lib/libxslt.so.3.8...done.
Loaded symbols for /usr/local/lib/libxslt.so.3.8
Reading symbols from /usr/local/lib/libiconv.so.6.0...done.
Loaded symbols for /usr/local/lib/libiconv.so.6.0
Reading symbols from /usr/local/lib/libxml2.so.15.1...done.
Loaded symbols for /usr/local/lib/libxml2.so.15.1
Reading symbols from /usr/local/lib/libgio-2.0.so.4200.3...done.
Loaded symbols for /usr/local/lib/libgio-2.0.so.4200.3
Reading symbols from /usr/local/lib/libgstapp-1.0.so.3.0...done.
Loaded symbols for /usr/local/lib/libgstapp-1.0.so.3.0
Reading symbols from /usr/local/lib/libgstpbutils-1.0.so.3.0...done.
Loaded symbols for 

CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 12:41:27

Modified files:
sysutils/tmuxinator: Makefile distinfo 
sysutils/tmuxinator/patches: patch-lib_tmuxinator_config_rb 
sysutils/tmuxinator/pkg: PLIST 

Log message:
update to tmuxinator-0.9.0



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 12:39:56

Modified files:
graphics/birdfont: Makefile distinfo 

Log message:
birdfont-2.16.12



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Dmitrij Czarkoff
CVSROOT:/cvs
Module name:ports
Changes by: czark...@cvs.openbsd.org2016/10/15 09:41:13

Modified files:
devel  : Makefile 

Log message:
+py-fastimport,python3



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 07:02:58

Modified files:
net/gupnp/core : Makefile distinfo 
net/gupnp/core/pkg: PLIST 

Log message:
update to gupnp-1.0.1



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 07:02:52

Modified files:
net/gssdp  : Makefile distinfo 

Log message:
update to gssdp-1.0.1



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 06:56:15

Modified files:
net/gupnp/av   : Makefile distinfo 
net/gupnp/av/pkg: PLIST 

Log message:
update to gupnp-av-0.12.10 (upstream dropped hidden gssdp dependency)



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/10/15 06:28:21

Modified files:
graphics/libgxps: Makefile 

Log message:
--disable-test or it will pick up gtk+3 which may end up breaking bulk
builds.

reported by naddy@



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Dmitrij Czarkoff
CVSROOT:/cvs
Module name:ports
Changes by: czark...@cvs.openbsd.org2016/10/15 05:14:58

Modified files:
devel  : Makefile 

Log message:
+py-fastimport

Reminded by sthen@



Re: CVS: cvs.openbsd.org: ports

2016-10-15 Thread Stuart Henderson
Don't forget devel/Makefile.

On 2016/10/14 07:55, Dmitrij Czarkoff wrote:
> CVSROOT:  /cvs
> Module name:  ports
> Changes by:   czark...@cvs.openbsd.org2016/10/14 07:55:31
> 
> Log message:
> py-fastimport is a parser for and a generator of the Git fastimport 
> format.
> 
> OK sthen@
> 
> Status:
> 
> Vendor Tag:   czarkoff
> Release Tags: czarkoff_20161014
> 
> N ports/devel/py-fastimport/distinfo
> N ports/devel/py-fastimport/Makefile
> N ports/devel/py-fastimport/pkg/DESCR
> N ports/devel/py-fastimport/pkg/PLIST
> 
> No conflicts created by this import



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 03:04:36

Modified files:
sysutils/ansible: Makefile 

Log message:
${PREFIX}/man is already created by mtree, no need to re-mkdir it



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 03:03:05

Modified files:
sysutils/ansible: Makefile 

Log message:
- use sed instead of perl
- simplify post-install



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 02:51:08

Modified files:
sysutils/ansible: Makefile 
sysutils/ansible/pkg: PLIST 
Added files:
sysutils/ansible/pkg: README 

Log message:
- drop py-paramiko dependency which most people don't need
- add README mentioning the optional dependencies for ansible's modules/scripts

input from aja@ rpe@



Re: gcc52?

2016-10-15 Thread Dan Andersen
Thanks!

Regards.

--
Dan Andersen



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/10/15 02:33:52

Modified files:
sysutils/ansible/patches: 
  
patch-lib_ansible_modules_extras_packaging_os_openbsd_pkg_py 

Log message:
patrik's patch was merged



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Ingo Feinerer
CVSROOT:/cvs
Module name:ports
Changes by: feine...@cvs.openbsd.org2016/10/15 01:37:56

Modified files:
databases  : Makefile 

Log message:
+py-pg_activity



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Ingo Feinerer
CVSROOT:/cvs
Module name:ports
Changes by: feine...@cvs.openbsd.org2016/10/15 01:29:10

Log message:
Import pg_activity 1.3.1

pg_activity is a top like application for PostgreSQL server activity
monitoring.

OK landry@

Status:

Vendor Tag: feinerer
Release Tags:   feinerer_20161015

N ports/databases/py-pg_activity/Makefile
N ports/databases/py-pg_activity/distinfo
N ports/databases/py-pg_activity/pkg/PLIST
N ports/databases/py-pg_activity/pkg/DESCR

No conflicts created by this import



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/10/15 00:50:55

Modified files:
net/py-libcloud: Makefile distinfo 
net/py-libcloud/pkg: PLIST 

Log message:
Update to py-libcloud-1.3.0.



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2016/10/15 00:35:39

Modified files:
devel  : Makefile 

Log message:
+ SUBDIR += libbfio



CVS: cvs.openbsd.org: ports

2016-10-15 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2016/10/15 00:35:00

Log message:
import libffio, basic file input/output abstraction C library.
ok benoit@, jca@.

Status:

Vendor Tag: rpointel
Release Tags:   rpointel_20161015

N ports/devel/libbfio/Makefile
N ports/devel/libbfio/distinfo
N ports/devel/libbfio/pkg/PLIST
N ports/devel/libbfio/pkg/DESCR

No conflicts created by this import