CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 16:40:28

Modified files:
infrastructure/bin: proot 

Log message:
always do mkpath, THEN check for nfs mounts, so that non-existing
dirs (at first) get classified correctly.

thx aja@ for testing on a virgin dir



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2016/05/13 16:30:25

Modified files:
databases/pg_stats_reporter: Makefile distinfo 
databases/pg_stats_reporter/pkg: PLIST 
Added files:
databases/pg_stats_reporter/patches: patch-bin_pg_stats_reporter 
Removed files:
databases/pg_stats_reporter/patches: 
 
patch-html_pg_stats_reporter_pg_stats_reporter_php 

Log message:
Update to pg_stats_reporter 3.2.1 to chase pg_statsinfo.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2016/05/13 16:09:21

Modified files:
databases/pg_statsinfo: Makefile distinfo 
databases/pg_statsinfo/patches: patch-agent_lib_libstatsinfo_c 
patch-agent_lib_port_c 
databases/pg_statsinfo/pkg: PLIST 
Added files:
databases/pg_statsinfo/patches: patch-agent_common_h 
Removed files:
databases/pg_statsinfo/patches: 
patch-agent_lib_last_xact_activity_c 
patch-agent_lib_pgut_pgut-spi_c 

Log message:
Unbreak by updating to pg_statsinfo 3.2.1.

Project moved to sourceforge, see http://pgstatsinfo.sourceforge.net/
Basic testing seems to show it works fine with postgres 9.5.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2016/05/13 16:06:29

Modified files:
devel/yasm : Makefile 

Log message:
skip the gettext dependency while there are no translations yet; ok Brad



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 15:44:52

Added files:
devel/p5-IO-KQueue/patches: patch-Makefile_PL 

Log message:
zap useless configure test. Either it builds or it doesn't.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 15:44:11

ports/devel/p5-IO-KQueue/patches

Update of /cvs/ports/devel/p5-IO-KQueue/patches
In directory cvs.openbsd.org:/tmp/cvs-serv16191/patches

Log Message:
Directory /cvs/ports/devel/p5-IO-KQueue/patches added to the repository



Re: no man page for pnmtopng

2016-05-13 Thread Christian Weisgerber
On 2016-05-10, "Anthony J. Bentley"  wrote:

>   Netpbm's maintainer believes man pages are obsolete and too limiting,
>   and doesn't have time to maintain the documentation in multiple
>   formats.  So instead of classic nroff man page format, the Netpbm
>   documentation is available as HTML, with one HTML file per program,
>   plus some others.  The current user manual is accessible on the World
>   Wide Web at ...

A side effect of moving the port to track the advanced release
series is that those web man pages should now be better in sync
with the programs provided by the port.

We could fetch the HTML documentation from the SVN repo at the same
revision as the release code and roll it into the distfile, but we
don't even have an HTML reader in base any longer...

-- 
Christian "naddy" Weisgerber  na...@mips.inka.de



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2016/05/13 14:19:27

Added files:
mail/postfix/snapshot/patches: patch-makedefs 
   patch-src_util_sys_defs_h 
mail/postfix/stable/patches: patch-makedefs 
 patch-src_util_sys_defs_h 

Log message:
fix with openbsd 6.x; from Brad



Re: libc++ port, including libc++abi and libunwind

2016-05-13 Thread Stuart Henderson
On 2016/05/13 21:49, Patrick Wildt wrote:
> +BUILD_DEPENDS += devel/llvm

Only thing I noticed in first review was this, please use

MODULES =   lang/clang
MODCLANG_LANGS =c++
MODCLANG_ARCHS =amd64

instead of the BUILD_DEPENDS. Then, in theory, you shouldn't need
these lines in the various Makefiles:

> +CC=  clang
> +CXX= clang++

I'll try to do some testing but I'm a bit swamped at the moment.



libc++ port, including libc++abi and libunwind

2016-05-13 Thread Patrick Wildt
Hi,

I created a port for libc++, LLVM's C++ standard library.  I'm not
a port's guy, so bear with me if this is not up to the standard.

The port contains libc++, libc++abi for the low level support and
libunwind as unwinder.  As libc++ and libc++abi kind of depend on each
other's headers I have put them together into a single port.

The cmake Makefiles expect to be compiled as part of a bigger LLVM
project checkout, which is overkill in my opinion.  Thus I have
created my own Makefiles for it.  In theory they could, with a few
modifications, also work in base.

The unwinder is configured to use the Itanium-ABI for exception
handling.  With LLVM/Clang it would also be possible to make ARM use
that ABI for exception handling.

libc++ actually expects the xlocale API to exist.  As we cannot provide
it, we just use Newlib's wrappers that basically ignore any thread-
local locales.  As far as I can see this also breaks a few of the tests,
but it's probably ok as a first step.

Additionally LLVM has to be modified to include the correct C++ header
directory if it is told to use libc++ as stdlib.  I have also appended
that diff, though without any REVISION change to LLVM.

Patrick


libc++ testsuite results:


Results for /home/patrick/openbsd-ports/pobj/libc++-3.7.1/libcxx-3.7.1.src/test:
using clang version 3.7.1 (tags/RELEASE_371/final)
Target: amd64-unknown-openbsd5.9
Thread model: posix
with -std=c++11 -stdlib=libc++ 
-I/home/patrick/openbsd-ports/pobj/libc++-3.7.1/libcxx-3.7.1.src/test/support 
-I/home/patrick/openbsd-ports/pobj/libc++-3.7.1/libcxx-3.7.1.src/include 
-L/home/patrick/openbsd-ports/pobj/libc++-3.7.1/libcxx-3.7.1.src/lib

sections without tests   : 13
sections with failures   : 55
sections without failures: 1106
   +   
total number of sections : 1174

number of tests failed   : 185
number of tests passed   : 4740
   +   
total number of tests: 4925



libc++abi testsuite results:


Results for 
/home/patrick/openbsd-ports/pobj/libc++-3.7.1/libcxx-3.7.1.src/libcxxabi/test:
using clang version 3.7.1 (tags/RELEASE_371/final)
Target: amd64-unknown-openbsd5.9
Thread model: posix
with -std=c++0x -stdlib=libc++

sections without tests   : 3
sections with failures   : 1
sections without failures: 0
   +   
total number of sections : 4

number of tests failed   : 2
number of tests passed   : 39
   +   
total number of tests: 41



diff --git devel/libc++/Makefile devel/libc++/Makefile
new file mode 100644
index 000..9654917
--- /dev/null
+++ devel/libc++/Makefile
@@ -0,0 +1,56 @@
+# $OpenBSD$
+
+ONLY_FOR_ARCHS = amd64
+DPB_PROPERTIES = parallel
+
+COMMENT =  new implementation of the C++ standard library
+
+LLVM_V =   3.7.1
+DISTNAME = libcxx-${LLVM_V}.src
+PKGNAME =  libc++-${LLVM_V}
+REVISION = 0
+CATEGORIES =   devel
+DISTFILES =libcxx-${LLVM_V}.src${EXTRACT_SUFX} \
+   libcxxabi-${LLVM_V}.src${EXTRACT_SUFX} \
+   libunwind-${LLVM_V}.src${EXTRACT_SUFX}
+MASTER_SITES = http://www.llvm.org/releases/${LLVM_V}/
+EXTRACT_SUFX = .tar.xz
+
+SHARED_LIBS =  c++ 1.0 \
+   c++abi  1.0
+
+# packager notes in http://llvm.org/docs/Packaging.html
+HOMEPAGE = http://www.llvm.org/
+
+MAINTAINER=Patrick Wildt 
+
+# BSD
+PERMIT_PACKAGE_CDROM = Yes
+
+WANTLIB =  c
+
+BUILD_DEPENDS +=   devel/llvm
+
+SEPARATE_BUILD =   Yes
+
+WRKDIST = ${WRKDIR}/${DISTNAME}
+MAKE_ENV += LIBCXX=${WRKSRC}
+MAKE_ENV += LIBCXXABI=${WRKSRC}/libcxxabi
+MAKE_ENV += LIBUNWIND=${WRKSRC}/libunwind
+
+post-extract:
+   mv ${WRKDIR}/libcxxabi-${LLVM_V}.src ${WRKSRC}/libcxxabi
+   mv ${WRKDIR}/libunwind-${LLVM_V}.src ${WRKSRC}/libunwind
+   mkdir -p ${WRKBUILD}/libcxx
+   mkdir -p ${WRKBUILD}/libcxxabi
+
+pre-build:
+   @printf "major=${LIBc++_VERSION:R}\nminor=${LIBc++_VERSION:E}\n" \
+   >${WRKBUILD}/libcxx/shlib_version
+   @printf "major=${LIBc++abi_VERSION:R}\nminor=${LIBc++abi_VERSION:E}\n" \
+   >${WRKBUILD}/libcxxabi/shlib_version
+   @cp ${FILESDIR}/Makefile ${WRKBUILD}/Makefile
+   @cp ${FILESDIR}/libcxx-Makefile ${WRKBUILD}/libcxx/Makefile
+   @cp ${FILESDIR}/libcxxabi-Makefile ${WRKBUILD}/libcxxabi/Makefile
+
+.include 
diff --git devel/libc++/distinfo devel/libc++/distinfo
new file mode 100644
index 000..ac0d557
--- /dev/null
+++ devel/libc++/distinfo
@@ -0,0 +1,6 @@
+SHA256 (libcxx-3.7.1.src.tar.xz) = NX+9QojOmXM7oGrivsb1A0E9JYruuquLankSAeb38UQ=

Re: [UPDATE] databases/barman to 1.6.0

2016-05-13 Thread Landry Breuil
On Fri, May 13, 2016 at 08:03:36PM +0200, Landry Breuil wrote:
> On Tue, May 10, 2016 at 06:26:13PM -0700, Eric Lalonde wrote:
> > Hello ports,
> > 
> > barman has been updated to 1.6.0. This is a major release for barman, with
> > new fixes and features, which include, but are not limited to:
> > 
> > - Support for the streaming_archiver option that allows Barman to receive
> > WAL files through PostgreSQL's native streaming protocol.
> > - Automatic management (startup and stop) of receive-wal command via cron
> > command
> > - Add support for the pigz compressor
> > - Native support for Python >= 3.3
> > - Fix management of backup ID during backup deletion (#22)
> > - Improve error handling in case of missing parameters
> > 
> > This diff includes a patch to MANIFEST.in which suppresses a build warning
> > that the default manifest file `MANIFEST` does not exist. Since the python
> > ports module appears to override the default manifest file with
> > barman.egg-info/SOURCES.txt, this warning appears unnecessary. Accordingly,
> > the file has been removed from the manifest infile. Further guidance is
> > welcome.
> > 
> > Full changelog is available at
> > https://sourceforge.net/projects/pgbarman/files/1.6.0/
> 
> I've built this without issues - one minor nit: I've tried
> enabling/running the test suite, ported py-test-timeout and
> py-test-catchlog (fork of py-test-capturelog), to realize that the
> tarball shipped via pypi doesnt contain the tests/ subdir, hence no
> tests are run:

Forgot to mention that if you decide to fetch the tarball from github
tags, the tests/ subdir is included

Landry



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2016/05/13 12:13:28

Modified files:
mail/mozilla-thunderbird: Makefile distinfo 
mail/thunderbird-i18n: Makefile.inc distinfo 

Log message:
Bugfix update to thunderbird 45.1.0 / lightning 4.7.1

- See https://www.mozilla.org/en-US/thunderbird/45.1.0/releasenotes/
- Fixes MFSA 2016-39



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2016/05/13 12:05:01

Modified files:
databases/barman: Makefile distinfo 
databases/barman/pkg: PLIST 
Added files:
databases/barman/patches: patch-manifest_in 

Log message:
Update to barman 1.6.0, from MAINTAINER Eric Lalonde.

Added some commented out/unimported yet test dependencies



Re: [UPDATE] databases/barman to 1.6.0

2016-05-13 Thread Landry Breuil
On Tue, May 10, 2016 at 06:26:13PM -0700, Eric Lalonde wrote:
> Hello ports,
> 
> barman has been updated to 1.6.0. This is a major release for barman, with
> new fixes and features, which include, but are not limited to:
> 
> - Support for the streaming_archiver option that allows Barman to receive
> WAL files through PostgreSQL's native streaming protocol.
> - Automatic management (startup and stop) of receive-wal command via cron
> command
> - Add support for the pigz compressor
> - Native support for Python >= 3.3
> - Fix management of backup ID during backup deletion (#22)
> - Improve error handling in case of missing parameters
> 
> This diff includes a patch to MANIFEST.in which suppresses a build warning
> that the default manifest file `MANIFEST` does not exist. Since the python
> ports module appears to override the default manifest file with
> barman.egg-info/SOURCES.txt, this warning appears unnecessary. Accordingly,
> the file has been removed from the manifest infile. Further guidance is
> welcome.
> 
> Full changelog is available at
> https://sourceforge.net/projects/pgbarman/files/1.6.0/

I've built this without issues - one minor nit: I've tried
enabling/running the test suite, ported py-test-timeout and
py-test-catchlog (fork of py-test-capturelog), to realize that the
tarball shipped via pypi doesnt contain the tests/ subdir, hence no
tests are run:

= test session starts ==
platform openbsd5 -- Python 2.7.11, pytest-2.9.1, py-1.4.31, pluggy-0.3.1
rootdir: /usr/obj/ports/barman-1.6.0/barman-1.6.0, inifile: 
plugins: timeout-1.0.0, catchlog-1.2.2
collected 0 items

= no tests ran in 0.04 seconds =


Here's barman/Makefile diff on top of yours, and find the attached additional
tdeps in this mail if you want to work on this. In the meantime, commiting your
diff as-is.

-# needs pytest-timeout and pytest-capturelog
+# needs pytest-timeout and pytest-catchlog
 NO_TEST =  Yes
+#TEST_DEPENDS =${RUN_DEPENDS} \
+#  devel/py-test-timeout \
+#  devel/py-test-catchlog \
+#  devel/py-test-runner \
+#  devel/py-setuptools_scm

Landry


barman-tdep.tgz
Description: application/tar-gz


CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 11:26:08

Modified files:
infrastructure/man/man1: proot.1 

Log message:
document new stuff



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Pierre-Emmanuel Andre
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2016/05/13 11:15:56

Modified files:
databases/postgresql: Makefile distinfo 
databases/postgresql/pkg: PLIST-docs 

Log message:
Update ton 9.5.3

ok jeremy@



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/05/13 11:10:38

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

Log message:
Update to terraform-0.6.16.



Re: CVS: cvs.openbsd.org: ports

2016-05-13 Thread Daniel Jakots
On Thu, 12 May 2016 21:34:28 -0600 (MDT), Gonzalo L. Rodriguez
 wrote:

> CVSROOT:  /cvs
> Module name:  ports
> Changes by:   gonz...@cvs.openbsd.org 2016/05/12 21:34:28
> 
> Modified files:
>   net/haproxy: Makefile distinfo 
> 
> Log message:
> Update for Haproxy to 1.6.5 from David CARLIER
> 
> http://www.haproxy.org/download/1.6/src/CHANGELOG
> 

What was the reason to commit it so quickly?
I wish you would have waited for maintainer's opinion/OK.



PostgreSQL updates

2016-05-13 Thread Pierre-Emmanuel André
Hi,

These 2 diffs update PostgreSQL to version 9.4.8 (OpenBSD -stable) and
to version 9.5.3 (OpenBSD -current).
Both tested on @amd64.

Comments, ok ?

Regards,
Index: Makefile
===
RCS file: /cvs/ports/databases/postgresql/Makefile,v
retrieving revision 1.209.2.1
diff -u -p -u -p -r1.209.2.1 Makefile
--- Makefile	1 Apr 2016 14:23:59 -	1.209.2.1
+++ Makefile	13 May 2016 15:21:24 -
@@ -11,7 +11,7 @@ BROKEN-sparc=	Requires v9|v9a|v9b; reque
 # DO NOT FORGET to also change the @ask-update entry in pkg/PLIST-server
 # in case a dump before / restore after pkg_add -u is required!
 
-VERSION=	9.4.7
+VERSION=	9.4.8
 DISTNAME=	postgresql-${VERSION}
 PKGNAME-main=	postgresql-client-${VERSION}
 PKGNAME-server=	postgresql-server-${VERSION}
Index: distinfo
===
RCS file: /cvs/ports/databases/postgresql/distinfo,v
retrieving revision 1.59.2.1
diff -u -p -u -p -r1.59.2.1 distinfo
--- distinfo	1 Apr 2016 14:23:59 -	1.59.2.1
+++ distinfo	13 May 2016 15:21:24 -
@@ -1,2 +1,2 @@
-SHA256 (postgresql-9.4.7.tar.gz) = c3pKOeB69YlXMZKnlJI7f5dMSs9OTQd2VNGlWFLRv9w=
-SIZE (postgresql-9.4.7.tar.gz) = 23288560
+SHA256 (postgresql-9.4.8.tar.gz) = lVjS3acQKvEoNdcqJosfH1x3djEjmxUrZcmNAhjv7N8=
+SIZE (postgresql-9.4.8.tar.gz) = 23310530
Index: pkg/PLIST-docs
===
RCS file: /cvs/ports/databases/postgresql/pkg/PLIST-docs,v
retrieving revision 1.71.2.1
diff -u -p -u -p -r1.71.2.1 PLIST-docs
--- pkg/PLIST-docs	1 Apr 2016 14:23:59 -	1.71.2.1
+++ pkg/PLIST-docs	13 May 2016 15:21:24 -
@@ -1,4 +1,4 @@
-@comment $OpenBSD: PLIST-docs,v 1.71.2.1 2016/04/01 14:23:59 pea Exp $
+@comment $OpenBSD: PLIST-docs,v 1.72 2016/04/01 13:00:18 pea Exp $
 share/doc/postgresql/
 share/doc/postgresql/COPYRIGHT
 share/doc/postgresql/HISTORY
@@ -866,6 +866,7 @@ share/doc/postgresql/html/release-9-2-13
 share/doc/postgresql/html/release-9-2-14.html
 share/doc/postgresql/html/release-9-2-15.html
 share/doc/postgresql/html/release-9-2-16.html
+share/doc/postgresql/html/release-9-2-17.html
 share/doc/postgresql/html/release-9-2-2.html
 share/doc/postgresql/html/release-9-2-3.html
 share/doc/postgresql/html/release-9-2-4.html
@@ -879,6 +880,7 @@ share/doc/postgresql/html/release-9-3-1.
 share/doc/postgresql/html/release-9-3-10.html
 share/doc/postgresql/html/release-9-3-11.html
 share/doc/postgresql/html/release-9-3-12.html
+share/doc/postgresql/html/release-9-3-13.html
 share/doc/postgresql/html/release-9-3-2.html
 share/doc/postgresql/html/release-9-3-3.html
 share/doc/postgresql/html/release-9-3-4.html
@@ -895,6 +897,7 @@ share/doc/postgresql/html/release-9-4-4.
 share/doc/postgresql/html/release-9-4-5.html
 share/doc/postgresql/html/release-9-4-6.html
 share/doc/postgresql/html/release-9-4-7.html
+share/doc/postgresql/html/release-9-4-8.html
 share/doc/postgresql/html/release-9-4.html
 share/doc/postgresql/html/release.html
 share/doc/postgresql/html/resources.html
Index: Makefile
===
RCS file: /cvs/ports/databases/postgresql/Makefile,v
retrieving revision 1.213
diff -u -p -u -p -r1.213 Makefile
--- Makefile	13 May 2016 14:27:48 -	1.213
+++ Makefile	13 May 2016 15:07:18 -
@@ -11,7 +11,7 @@ BROKEN-sparc=	Requires v9|v9a|v9b; reque
 # DO NOT FORGET to also change the @ask-update entry in pkg/PLIST-server
 # in case a dump before / restore after pkg_add -u is required!
 
-VERSION=	9.5.2
+VERSION=	9.5.3
 DISTNAME=	postgresql-${VERSION}
 PKGNAME-main=	postgresql-client-${VERSION}
 PKGNAME-server=	postgresql-server-${VERSION}
Index: distinfo
===
RCS file: /cvs/ports/databases/postgresql/distinfo,v
retrieving revision 1.61
diff -u -p -u -p -r1.61 distinfo
--- distinfo	13 May 2016 14:27:48 -	1.61
+++ distinfo	13 May 2016 15:07:18 -
@@ -1,2 +1,2 @@
-SHA256 (postgresql-9.5.2.tar.gz) = 9+B6uDdzSpW1JCacFFx73xddMhqrCbwPX2nqsPDkNCU=
-SIZE (postgresql-9.5.2.tar.gz) = 24100449
+SHA256 (postgresql-9.5.3.tar.gz) = HwcKjoDOdJ5ofSFi5KJxB+LMFwOkcVQOCBEbv7WFP54=
+SIZE (postgresql-9.5.3.tar.gz) = 24134415
Index: pkg/PLIST-docs
===
RCS file: /cvs/ports/databases/postgresql/pkg/PLIST-docs,v
retrieving revision 1.73
diff -u -p -u -p -r1.73 PLIST-docs
--- pkg/PLIST-docs	13 May 2016 14:27:48 -	1.73
+++ pkg/PLIST-docs	13 May 2016 15:07:18 -
@@ -106,9 +106,7 @@ share/doc/postgresql/html/catalog-pg-plt
 share/doc/postgresql/html/catalog-pg-policy.html
 share/doc/postgresql/html/catalog-pg-proc.html
 share/doc/postgresql/html/catalog-pg-range.html
-share/doc/postgresql/html/catalog-pg-replication-origin-status.html
 share/doc/postgresql/html/catalog-pg-replication-origin.html
-share/doc/postgresql/html/catalog-pg-replication-slots.html
 

CVS: cvs.openbsd.org: ports

2016-05-13 Thread Pierre-Emmanuel Andre
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2016/05/13 08:41:10

Modified files:
databases/pg_statsinfo: Makefile 

Log message:
Doesn't build with PostgreSQL 9.5.
ok jeremy@



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Jeremy Evans
CVSROOT:/cvs
Module name:ports
Changes by: jer...@cvs.openbsd.org  2016/05/13 08:36:37

Modified files:
databases/postgresql-pllua: Makefile 
databases/postgresql-plv8: Makefile 

Log message:
Bump for PostgreSQL 9.4 -> 9.5 upgrade



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 08:30:07

Modified files:
infrastructure/bin: proot 

Log message:
tweak user message, requested by dcoppa@



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Pierre-Emmanuel Andre
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2016/05/13 08:27:48

Modified files:
databases/postgresql: Makefile distinfo 
databases/postgresql/patches: 
  
patch-src_interfaces_ecpg_compatlib_Makefile 
  
patch-src_interfaces_ecpg_ecpglib_Makefile 
  
patch-src_interfaces_ecpg_pgtypeslib_Makefile 
  patch-src_interfaces_libpq_Makefile 
databases/postgresql/pkg: PLIST-contrib PLIST-docs PLIST-server 

Log message:
Update to 9.5.2
Tested in a bulk by ajacoutot@
ok jeremy@



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2016/05/13 08:24:48

Modified files:
net/cvsync : Makefile 
net/cvsync/files: cvsyncd.conf 

Log message:
The X11 and XF4 collections are no longer distributed.  Remove them from
the default cvsyncd.conf file, since otherwise cvsyncd will not start.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 08:17:24

Modified files:
infrastructure/bin: proot 

Log message:
check for absolute symlinks in the chroot.
report anything that we don't know about (from the base system)



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Joel Sing
CVSROOT:/cvs
Module name:ports
Changes by: js...@cvs.openbsd.org   2016/05/13 07:49:26

Modified files:
lang/go: Makefile 
Added files:
lang/go/patches: patch-src_cmd_link_internal_ld_elf_go 
 patch-src_runtime_sys_openbsd_386_s 

Log message:
Stop using sigreturn from the Go openbsd/386 signal trampoline - the
sigreturn syscall is going away in future versions of OpenBSD and its
use for Go is already broken due to the trampoline return checks. Instead
just return directly from the signal trampoline (as we have always done
for Go openbsd/amd64).

Also fix a bug in the Go openbsd/386 linker, which results in symbols in
the dynamic symbol table being emitted with a size of zero. With a current
ld.so, this results in symbol mismatch warnings.

Unbreaks the Go port on openbsd/386, however it still fails to pass regress
due to the PT_TLS changes.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2016/05/13 07:37:22

Modified files:
infrastructure/bin: proot 

Log message:
things that live strictly in the chroot can mostly be run there.
this solves the issue of resolving symlinks within the chroot
and matching them against nfs dirs, at the expense of a few more processes



Re: NEW: mail/rcub-carddav 1.0.0

2016-05-13 Thread Olivier Mehani
Hey Stu, all

On Fri, May 13, 2016 at 11:10:55AM +0100, Stuart Henderson wrote:
> from a quick read-through:

Thanks!

> | PERMIT_PACKAGE_FTP =Yes
> | PERMIT_DISTFILES_FTP =  Yes
> remove these

Right, I deleted comments in the template too quickly,
PERMIT_PACKAGE_CDROM is sufficient if both are Yes too.

> | @owner www
> | @group www
> The program code should never be writable by www. *IF* it needs
> to write any files at runtime, then just make the relevant files
> or directories writable by www, but that's not needed for most
> roundcube plugins.

Yup, this seems to work without this.

> | roundcubemail/plugins/carddav/composer.json
> | @sample roundcubemail/plugins/carddav/config.inc.php
> the way you have it, this copies composer.json to config.inc.php
> at install time. along with getting rid of mv in do-install,
> change those lines in PLIST to these:
> 
> roundcubemail/plugins/carddav/composer.json
> roundcubemail/plugins/carddav/config.inc.php.dist
> @sample roundcubemail/plugins/carddav/config.inc.php

Right. This would explain a lot of my confusing in porting things and
seeing files disappearing... Thanks a lot for that!


The rest of your comments were also addressed. See new archive attached.

Thanks again!

-- 
Olivier Mehani 
PGP fingerprint: 4435 CF6A 7C8D DD9B E2DE  F5F9 F012 A6E2 98C6 6655
Confidentiality cannot be guaranteed on emails sent or received unencrypted.


rcube-carddav-1.0.0.tgz
Description: application/tar-gz


signature.asc
Description: PGP signature


Re: lang/go fails to build on i386: SIGILL

2016-05-13 Thread Joel Sing
Thanks, I'll have this fixed shortly.

On Friday 13 May 2016 11:56:32 Stuart Henderson wrote:
> Bootstrap is now ok, but lang/go fails. Full log below, but the
> core of it is here:
> 
> # Building packages and commands for openbsd/386.
> runtime/internal/sys
> ./make.bash: line 166: 13151 Illegal instruction (core dumped)
> CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -gcflags
> "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std cmd
> 
> 
> There's not much to be had from pointing gdb at the core,
> 
> warning: Unexpected size of section `.reg2/31987' in core file.
> Core was generated by `go_bootstrap'.
> Program terminated with signal SIGILL, Illegal instruction.
> 
> warning: Unexpected size of section `.reg2/31987' in core file.
> #0  runtime.sigtramp () at /usr/local/go/src/runtime/sys_openbsd_386.s:224
> 224 /usr/local/go/src/runtime/sys_openbsd_386.s: No such file or
> directory.
> 
> ...
> 
> >>> Building on localhost under lang/go
> 
>BDEPENDS = [shells/bash;lang/go-bootstrap]
>DIST = [lang/go:go1.6.src.tar.gz]
>FULLPKGNAME = go-1.6p0
> (Junk lock obtained for localhost at 1463131428)
> 
> >>> Running depends in lang/go at 1463131428
> 
>last junk was in lang/php/5.5
> /usr/sbin/pkg_add -aI -Dunsigned -Drepair bash-4.3.42p0 go-bootstrap-1.4.3p1
> was: /usr/sbin/pkg_add -aI -Dunsigned -Drepair bash-4.3.42p0
> go-bootstrap-1.4.3p1 /usr/sbin/pkg_add -aI -Dunsigned -Drepair
> bash-4.3.42p0 go-bootstrap-1.4.3p1
> >>> Running show-prepare-results in lang/go at 1463131436
> 
> ===> lang/go
> ===> go-1.6p0 depends on: go-bootstrap-* -> go-bootstrap-1.4.3p1
> ===> go-1.6p0 depends on: bash-* -> bash-4.3.42p0
> ===>  Verifying specs:  c m pthread
> ===>  found c.87.0 m.9.0 pthread.22.0
> bash-4.3.42p0
> go-bootstrap-1.4.3p1
> (Junk lock released for localhost at 1463131436)
> distfiles size=12613308
> 
> >>> Running patch in lang/go at 1463131436
> 
> ===> lang/go
> ===>  Checking files for go-1.6p0
> `/usr/ports/distfiles/go1.6.src.tar.gz' is up to date.
> 
> >> (SHA256) go1.6.src.tar.gz: OK
> 
> ===>  Extracting for go-1.6p0
> ===>  Patching for go-1.6p0
> 
> >>> Running configure in lang/go at 1463131438
> 
> ===> lang/go
> ===>  Configuring for go-1.6p0
> 
> >>> Running build in lang/go at 1463131438
> 
> ===> lang/go
> ===>  Building for go-1.6p0
> # Building Go bootstrap tool.
> cmd/dist
> 
> # Building Go toolchain using /usr/local/go/bootstrap.
> bootstrap/internal/obj
> bootstrap/asm/internal/flags
> bootstrap/compile/internal/big
> bootstrap/internal/obj/arm
> bootstrap/internal/obj/arm64
> bootstrap/internal/obj/mips
> bootstrap/internal/obj/ppc64
> bootstrap/internal/obj/x86
> bootstrap/asm/internal/lex
> bootstrap/asm/internal/arch
> bootstrap/internal/gcprog
> bootstrap/compile/internal/gc
> bootstrap/asm/internal/asm
> bootstrap/asm
> bootstrap/link/internal/ld
> bootstrap/link/internal/amd64
> bootstrap/link/internal/arm
> bootstrap/link/internal/arm64
> bootstrap/link/internal/mips64
> bootstrap/link/internal/ppc64
> bootstrap/link/internal/x86
> bootstrap/link
> bootstrap/compile/internal/amd64
> bootstrap/compile/internal/arm
> bootstrap/compile/internal/arm64
> bootstrap/compile/internal/mips64
> bootstrap/compile/internal/ppc64
> bootstrap/compile/internal/x86
> bootstrap/compile
> 
> # Building go_bootstrap for host, openbsd/386.
> runtime/internal/sys
> runtime/internal/atomic
> runtime
> encoding
> errors
> internal/race
> math
> sort
> sync/atomic
> unicode
> unicode/utf16
> unicode/utf8
> container/heap
> sync
> io
> syscall
> internal/singleflight
> bytes
> hash
> strings
> hash/adler32
> bufio
> strconv
> path
> internal/syscall/windows
> internal/syscall/windows/registry
> time
> reflect
> encoding/base64
> crypto
> regexp/syntax
> crypto/sha1
> regexp
> os
> encoding/binary
> fmt
> os/signal
> path/filepath
> io/ioutil
> os/exec
> flag
> go/token
> log
> net/url
> text/template/parse
> compress/flate
> encoding/json
> debug/dwarf
> compress/zlib
> debug/macho
> debug/elf
> go/scanner
> go/ast
> text/template
> go/parser
> go/doc
> go/build
> cmd/go
> 
> # Building packages and commands for openbsd/386.
> runtime/internal/sys
> ./make.bash: line 166: 13151 Illegal instruction (core dumped)
> CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -gcflags
> "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std cmd *** Error 132 in lang/go
> (Makefile:63 'do-build': @cd /usr/obj/ports/go-1.6/go/src &&  CC="cc" 
> CXX="c++"  GOROOT=/usr/obj/ports/go-1.6/go  ...) *** Error 1 in lang/go
> (/usr/ports/infrastructure/mk/bsd.port.mk:2668
> '/usr/obj/ports/go-1.6/build-i386/.build_done') *** Error 1 in lang/go
> (/usr/ports/infrastructure/mk/bsd.port.mk:2394 'build') ===> Exiting
> lang/go with an error
> *** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:147 'build')
> Error: job failed 256



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/05/13 06:04:14

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

Log message:
update to empathy-3.12.12



lang/go fails to build on i386: SIGILL

2016-05-13 Thread Stuart Henderson
Bootstrap is now ok, but lang/go fails. Full log below, but the
core of it is here:

# Building packages and commands for openbsd/386.
runtime/internal/sys
./make.bash: line 166: 13151 Illegal instruction (core dumped) 
CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -gcflags 
"$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std cmd


There's not much to be had from pointing gdb at the core,

warning: Unexpected size of section `.reg2/31987' in core file.
Core was generated by `go_bootstrap'.
Program terminated with signal SIGILL, Illegal instruction.

warning: Unexpected size of section `.reg2/31987' in core file.
#0  runtime.sigtramp () at /usr/local/go/src/runtime/sys_openbsd_386.s:224
224 /usr/local/go/src/runtime/sys_openbsd_386.s: No such file or directory.

...

>>> Building on localhost under lang/go
 BDEPENDS = [shells/bash;lang/go-bootstrap]
 DIST = [lang/go:go1.6.src.tar.gz]
 FULLPKGNAME = go-1.6p0
(Junk lock obtained for localhost at 1463131428)
>>> Running depends in lang/go at 1463131428
   last junk was in lang/php/5.5
/usr/sbin/pkg_add -aI -Dunsigned -Drepair bash-4.3.42p0 go-bootstrap-1.4.3p1
was: /usr/sbin/pkg_add -aI -Dunsigned -Drepair bash-4.3.42p0 
go-bootstrap-1.4.3p1
/usr/sbin/pkg_add -aI -Dunsigned -Drepair bash-4.3.42p0 go-bootstrap-1.4.3p1
>>> Running show-prepare-results in lang/go at 1463131436
===> lang/go
===> go-1.6p0 depends on: go-bootstrap-* -> go-bootstrap-1.4.3p1
===> go-1.6p0 depends on: bash-* -> bash-4.3.42p0
===>  Verifying specs:  c m pthread
===>  found c.87.0 m.9.0 pthread.22.0
bash-4.3.42p0
go-bootstrap-1.4.3p1
(Junk lock released for localhost at 1463131436)
distfiles size=12613308
>>> Running patch in lang/go at 1463131436
===> lang/go
===>  Checking files for go-1.6p0
`/usr/ports/distfiles/go1.6.src.tar.gz' is up to date.
>> (SHA256) go1.6.src.tar.gz: OK
===>  Extracting for go-1.6p0
===>  Patching for go-1.6p0
>>> Running configure in lang/go at 1463131438
===> lang/go
===>  Configuring for go-1.6p0
>>> Running build in lang/go at 1463131438
===> lang/go
===>  Building for go-1.6p0
# Building Go bootstrap tool.
cmd/dist

# Building Go toolchain using /usr/local/go/bootstrap.
bootstrap/internal/obj
bootstrap/asm/internal/flags
bootstrap/compile/internal/big
bootstrap/internal/obj/arm
bootstrap/internal/obj/arm64
bootstrap/internal/obj/mips
bootstrap/internal/obj/ppc64
bootstrap/internal/obj/x86
bootstrap/asm/internal/lex
bootstrap/asm/internal/arch
bootstrap/internal/gcprog
bootstrap/compile/internal/gc
bootstrap/asm/internal/asm
bootstrap/asm
bootstrap/link/internal/ld
bootstrap/link/internal/amd64
bootstrap/link/internal/arm
bootstrap/link/internal/arm64
bootstrap/link/internal/mips64
bootstrap/link/internal/ppc64
bootstrap/link/internal/x86
bootstrap/link
bootstrap/compile/internal/amd64
bootstrap/compile/internal/arm
bootstrap/compile/internal/arm64
bootstrap/compile/internal/mips64
bootstrap/compile/internal/ppc64
bootstrap/compile/internal/x86
bootstrap/compile

# Building go_bootstrap for host, openbsd/386.
runtime/internal/sys
runtime/internal/atomic
runtime
encoding
errors
internal/race
math
sort
sync/atomic
unicode
unicode/utf16
unicode/utf8
container/heap
sync
io
syscall
internal/singleflight
bytes
hash
strings
hash/adler32
bufio
strconv
path
internal/syscall/windows
internal/syscall/windows/registry
time
reflect
encoding/base64
crypto
regexp/syntax
crypto/sha1
regexp
os
encoding/binary
fmt
os/signal
path/filepath
io/ioutil
os/exec
flag
go/token
log
net/url
text/template/parse
compress/flate
encoding/json
debug/dwarf
compress/zlib
debug/macho
debug/elf
go/scanner
go/ast
text/template
go/parser
go/doc
go/build
cmd/go

# Building packages and commands for openbsd/386.
runtime/internal/sys
./make.bash: line 166: 13151 Illegal instruction (core dumped) 
CC=$CC_FOR_TARGET "$GOTOOLDIR"/go_bootstrap install $GO_FLAGS -gcflags 
"$GO_GCFLAGS" -ldflags "$GO_LDFLAGS" -v std cmd
*** Error 132 in lang/go (Makefile:63 'do-build': @cd 
/usr/obj/ports/go-1.6/go/src &&  CC="cc"  CXX="c++"  
GOROOT=/usr/obj/ports/go-1.6/go  ...)
*** Error 1 in lang/go (/usr/ports/infrastructure/mk/bsd.port.mk:2668 
'/usr/obj/ports/go-1.6/build-i386/.build_done')
*** Error 1 in lang/go (/usr/ports/infrastructure/mk/bsd.port.mk:2394 'build')
===> Exiting lang/go with an error
*** Error 1 in /usr/ports (infrastructure/mk/bsd.port.subdir.mk:147 'build')
Error: job failed 256



CVS: cvs.openbsd.org: ports

2016-05-13 Thread David Coppa
CVSROOT:/cvs
Module name:ports
Changes by: dco...@cvs.openbsd.org  2016/05/13 04:47:50

Modified files:
www/youtube-dl : Makefile distinfo 
www/youtube-dl/patches: patch-setup_py 
www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl-2016.05.10



mail/postfix fails to build on 6.0

2016-05-13 Thread Christian Weisgerber
The mail/postfix/{stable,snapshot} ports fail to build, now that the
OpenBSD version has been bumped to 6.0:

===>  Configuring for postfix-3.1.0-sasl2-mysql
/usr/bin/make -f Makefile.in MAKELEVEL= Makefiles
(echo "# Do not edit -- this file documents how Postfix was built for
your machine."; /bin/sh makedefs) >makedefs.tmp
ATTENTION:
ATTENTION: Unknown system type: OpenBSD 6.0
ATTENTION:

-- 
Christian "naddy" Weisgerber  na...@mips.inka.de



Re: NEW: mail/rcub-carddav 1.0.0

2016-05-13 Thread Stuart Henderson
On 2016/05/13 18:40, Olivier Mehani wrote:
> Hi all,
> 
> Here is a CardDAV plugin for Roundcube. It works well against ownCloud's
> Contacts.
> 
> The port should be reasonably clean, but I get two messages from
> portcheck that I don't know how to address:
> 
> extra PERMIT_DISTFILES_FTP line(-s)
>   extra PERMIT_PACKAGE_FTP lines
> 
> (There is only one of each line).
> 
> Any comment is welcome, though please keep my address CC'd, as I only
> check the list sporadically through GMane.
> 
> Cheers.
> 
> -- 
> Olivier Mehani 
> PGP fingerprint: 4435 CF6A 7C8D DD9B E2DE  F5F9 F012 A6E2 98C6 6655
> Confidentiality cannot be guaranteed on emails sent or received unencrypted.

from a quick read-through:

Makefile:

| V = 1.0.0
| P = carddav
| DISTNAME =  rcube-${P}-${V}

no point having a variable for P, it's only used once - zap it
and use DISTNAME = rcube-carddav-${V}.

| PERMIT_PACKAGE_FTP =Yes
| PERMIT_DISTFILES_FTP =  Yes

remove these

| PREFIX =${VARBASE}/www

one too many tabs

| do-install:
| ${INSTALL_DATA_DIR} ${INSTDIR}
| cp -Rp ${WRKDIST} ${INSTDIR}/carddav
| mv ${INSTDIR}/carddav/config.inc.php.dist 
${INSTDIR}/carddav/config.inc.php

get rid of the mv

pkg/PLIST:

| @owner www
| @group www

The program code should never be writable by www. *IF* it needs
to write any files at runtime, then just make the relevant files
or directories writable by www, but that's not needed for most
roundcube plugins.

| roundcubemail/plugins/carddav/composer.json
| @sample roundcubemail/plugins/carddav/config.inc.php

the way you have it, this copies composer.json to config.inc.php
at install time. along with getting rid of mv in do-install,
change those lines in PLIST to these:

roundcubemail/plugins/carddav/composer.json
roundcubemail/plugins/carddav/config.inc.php.dist
@sample roundcubemail/plugins/carddav/config.inc.php

convert pkg/MESSAGE to pkg/README following the style of other ports
and ports/infrastructure/README.template, and add this to PLIST to get
it installed:

@cwd ${LOCALBASE}/share/doc/pkg-readmes
${FULLPKGNAME}

there are a few things to clean up in the text:

| To enable the CardDAV plugin, first run the following (depening on the

depening -> depending

| You will also need to review the
| ${PREFIX}/roundcubemail/plugins/carddav/config.inc.php file.

just "Review ${PREFIX}/roundcubemail/plugins/carddav/config.inc.php."
would be enough here

| Finally, connet to RoundCube, go to Settings/Settings/CardDAV and follow
| the instructions of the Manager.

connet -> connect
"Settings/Settings"?
Manager -> manager

Or maybe just "Configure user settings by connecting to Roundcube and going
to Settings/CardDAV".

pkg/DESCR:

| CardDAV adapter for connecting to CardDAV-enabled addressbooks

"Roundcube plugin to connect to CardDAV-enabled address books."



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Sebastian Reitenbach
CVSROOT:/cvs
Module name:ports
Changes by: sebas...@cvs.openbsd.org2016/05/13 04:09:10

Modified files:
sysutils/logstash: Makefile 
sysutils/logstash/pkg: PLIST 

Log message:
Also install the logstash-plugin utility to be able to manage plugins.
at least 'list', 'pack', 'unpack' commands tested to be working.

i.e. run it as: JAVA_HOME="$(/usr/local/bin/javaPathHelper -h logstash)" 
/usr/local/logstash/bin/logstash-plugin list

OK jasper@ (MAINTAINER)



NEW: mail/rcub-carddav 1.0.0

2016-05-13 Thread Olivier Mehani
Hi all,

Here is a CardDAV plugin for Roundcube. It works well against ownCloud's
Contacts.

The port should be reasonably clean, but I get two messages from
portcheck that I don't know how to address:

extra PERMIT_DISTFILES_FTP line(-s)
extra PERMIT_PACKAGE_FTP lines

(There is only one of each line).

Any comment is welcome, though please keep my address CC'd, as I only
check the list sporadically through GMane.

Cheers.

-- 
Olivier Mehani 
PGP fingerprint: 4435 CF6A 7C8D DD9B E2DE  F5F9 F012 A6E2 98C6 6655
Confidentiality cannot be guaranteed on emails sent or received unencrypted.


rcub-carddav-1.0.0.tgz
Description: application/tar-gz


signature.asc
Description: PGP signature


CVS: cvs.openbsd.org: ports

2016-05-13 Thread Nigel Taylor
CVSROOT:/cvs
Module name:ports
Changes by: ni...@cvs.openbsd.org   2016/05/13 01:56:55

Modified files:
multimedia/get_flash_videos: Makefile distinfo 
multimedia/get_flash_videos/pkg: PLIST 

Log message:
Take over as MAINTAINER, update to 1.25.92 version.
Ok sthen@



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/05/13 01:20:46

Modified files:
emulators/qemu : Makefile distinfo 
emulators/qemu/patches: patch-block_curl_c patch-configure 
patch-net_tap-bsd_c 
emulators/qemu/pkg: PLIST 
Added files:
emulators/qemu/patches: patch-tcg_ppc_tcg-target_inc_c 
Removed files:
emulators/qemu/patches: patch-tcg_ppc_tcg-target_c 

Log message:
Update to qemu-2.6.0.

from Brad (maintainer)



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/05/13 01:12:52

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

Log message:
Update to awscli-1.10.28.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/05/13 01:12:24

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

Log message:
Update to py-botocore-1.4.19.



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:ports
Changes by: jas...@cvs.openbsd.org  2016/05/13 00:43:37

Modified files:
lang/go: go.port.mk 

Log message:
bump MODGO_BUILD_DEPENDS to lang/go>=1.6

some ports that used to depend on GO15VENDOREXPERIMENT=1 need 1.6 or they
won't build as the usage of that variable has been removed in their Makefiles.

ok czarkoff@ sthen@



CVS: cvs.openbsd.org: ports

2016-05-13 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/05/13 00:06:14

Modified files:
security/vault : Makefile 
security/vault/files: vault.hcl 

Log message:
RCD ID.