UPDATE - sysutils/borgbackup

2016-12-19 Thread Björn Ketelaars
Please find enclosed a diff for updating sysutils/borgbackup to 1.0.9. This
update fixes 2 security issues and a couple of bugs:

https://github.com/borgbackup/borg/blob/1.0.9/docs/changes.rst#version-109-2016-12-20

-- 
Björn Ketelaars
GPG key: 0x4F0E5F21


diff --git sysutils/borgbackup/Makefile sysutils/borgbackup/Makefile
index 6462bb5cf08..c47daef0e3a 100644
--- sysutils/borgbackup/Makefile
+++ sysutils/borgbackup/Makefile
@@ -2,7 +2,7 @@
 
 COMMENT =  deduplicating backup program
 
-MODPY_EGG_VERSION =1.0.8
+MODPY_EGG_VERSION =1.0.9
 DISTNAME = borgbackup-${MODPY_EGG_VERSION}
 
 MODPY_PI = Yes
diff --git sysutils/borgbackup/distinfo sysutils/borgbackup/distinfo
index f5e96a9f079..539e3495195 100644
--- sysutils/borgbackup/distinfo
+++ sysutils/borgbackup/distinfo
@@ -1,2 +1,2 @@
-SHA256 (borgbackup-1.0.8.tar.gz) = aQJWPER8TzeP8aExZ/g9FetgoCMWoGNopTm3/z2Irrk=
-SIZE (borgbackup-1.0.8.tar.gz) = 501606
+SHA256 (borgbackup-1.0.9.tar.gz) = NYYIQOBCnUuzrMi53TOqWZakL7K2eIE6mCsyGn26PLI=
+SIZE (borgbackup-1.0.9.tar.gz) = 541796



Re: Import PHP 7.1

2016-12-19 Thread Jason Tubnor
I couldn't go to 7.x on my host due to issues with phpBB 3.1.x but this is
fixed in phpBB 3.2.x.  I'll bump to php 7.x as soon as phpBB 3.2 goes to
release so I'd like to see the support kept up to date moving forward as
long as the maintainer is happy to do so.

Thanks!

On 20 December 2016 at 06:18, Robert Nagy  wrote:

> Let's wait and see if anyone really needs 7.0 itself and then
> I guess we can switch 7.0 with 7.1
>
> On (2016-12-19 19:24), Martijn van Duren wrote:
> > PHP 5.6 support will drop support after 7.0[1], so having 7.0 and 7.1
> > after 5.6 dies seems highly unlikely to me.
> > Considering the minor backwards incompatible differences between 7.0 and
> > 7.1[2] what about throwing out 7.0 in favor of 7.1 if the 3 stable PHP
> > version are too much? I'd like to use some 7.1 features and would hate
> > to wait another 2 years before having them in OpenBSD.
> >
> > martijn@
> >
> > [1] http://php.net/supported-versions.php
> > [2] http://php.net/manual/en/migration71.incompatible.php
> >
> > On 12/19/16 11:33, Robert Nagy wrote:
> > > I think we should not have this, there is just too much php already.
> > > 5.6 and 7.0 should be enough and when 5.6 dies we can have 7.1 and 7.0.
> > >
> > > On (2016-12-16 21:22), Martijn van Duren wrote:
> > >> Hello ports@,
> > >>
> > >> Here's my attempt at importing PHP 7.1. This is my first ports
> attempt,
> > >> so I might have overlooked some things.
> > >> Builds, packages, and runs for me.
> > >> OK?
> > >>
> > >> martijn@
> > >>
> > >> Index: Makefile.inc
> > >> ===
> > >> RCS file: /cvs/ports/lang/php/Makefile.inc,v
> > >> retrieving revision 1.88
> > >> diff -u -p -r1.88 Makefile.inc
> > >> --- Makefile.inc   4 Nov 2016 11:35:19 -   1.88
> > >> +++ Makefile.inc   8 Dec 2016 12:27:42 -
> > >> @@ -44,7 +44,7 @@ INI_TEMPLATES?=  development production
> > >>  # don't have.
> > >>  USE_LIBTOOL?= No
> > >>
> > >> -.if ${PV} != "7.0"
> > >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> > >>  FLAVORS=  no_suhosin
> > >>  .endif
> > >>  FLAVOR?=
> > >> @@ -144,7 +144,7 @@ MULTI_PACKAGES+=   -gd
> > >>  COMMENT-gd=   image manipulation extensions for php5
> > >>  LIB_DEPENDS-gd=   graphics/jpeg \
> > >>graphics/png
> > >> -.if ${PV} != "7.0"
> > >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> > >>  LIB_DEPENDS-gd+=  devel/t1lib
> > >>  WANTLIB-gd+=  t1>=5
> > >>  .endif
> > >> @@ -194,7 +194,7 @@ CONFIGURE_ARGS+=   --with-mcrypt=shared,${
> > >>  LIB_DEPENDS-mcrypt=   security/libmcrypt devel/libtool,-ltdl
> > >>  WANTLIB-mcrypt=   mcrypt ltdl>=1 pthread
> > >>
> > >> -.if ${PV} != "7.0"
> > >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> > >>  # mysql
> > >>  MULTI_PACKAGES+=  -mysql
> > >>  COMMENT-mysql=mysql database access extensions for php5
> > >> @@ -276,7 +276,7 @@ CONFIGURE_ARGS+=   --with-snmp=shared,${LO
> > >>  LIB_DEPENDS-snmp= net/net-snmp
> > >>  WANTLIB-snmp= crypto m netsnmp>=6.2 pthread
> > >>
> > >> -.if ${PV} != "7.0"
> > >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> > >>  # sybase-ct
> > >>  MULTI_PACKAGES+=  -sybase_ct
> > >>  COMMENT-sybase_ct=sybase database access extensions for php5
> > >> @@ -292,7 +292,7 @@ CONFIGURE_ARGS+=--with-pdo-dblib
> > >>  LIB_DEPENDS-pdo_dblib=databases/freetds
> > >>  WANTLIB-pdo_dblib=sybdb>=6 pthread
> > >>
> > >> -.if ${PV} != "7.0"
> > >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> > >>  # mssql
> > >>  MULTI_PACKAGES+=  -mssql
> > >>  COMMENT-mssql=microsoft sql access extensions for php5
> > >> @@ -350,7 +350,7 @@ LIB_DEPENDS-fastcgi=   ${LIB_DEPENDS-main}
> > >>  RUN_DEPENDS-fastcgi=
> > >>
> > >>  SUHOSIN_V=0.9.38
> > >> -.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0"
> > >> +.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0" || ${PV} == "7.1"
> > >>  SUPDISTFILES= suhosin-${SUHOSIN_V}.tar.gz:0
> > >>  .else
> > >>  DISTFILES+=   suhosin-${SUHOSIN_V}.tar.gz:0
> > >> @@ -406,7 +406,7 @@ post-install:
> > >>${INSTALL_MAN} ${WRKBUILD}/sapi/fpm/php-fpm.8
> ${PREFIX}/man/man8/php-fpm-${PV}.8
> > >>${INSTALL_DATA} ${WRKBUILD}/sapi/fpm/php-fpm.conf \
> > >>${PREFIX}/share/examples/php-${PV}/php-fpm.conf
> > >> -.if ${PV} == "7.0"
> > >> +.if ${PV} == "7.0" && ${PV} == "7.1"
> > >>cat ${WRKBUILD}/sapi/fpm/www.conf >> \
> > >>${PREFIX}/share/examples/php-${PV}/php-fpm.conf
> > >>  .endif
> > >
> > >
>
>


-- 
"If my calculations are correct, when this baby hits 88MPH, you're gonna to
see some serious shit" - Emmett "Doc" Brown


CVS: cvs.openbsd.org: ports

2016-12-19 Thread Vadim Zhukov
CVSROOT:/cvs
Module name:ports
Changes by: z...@cvs.openbsd.org2016/12/19 15:52:46

Modified files:
audio/moc  : Makefile 

Log message:
Apply the same workaround for estdc++ issue to audio/moc that was done
for, e.g., multimedia/gstreamer1/plugins-good. This way it should build
on non-Intel archs.



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2016/12/19 14:48:12

Modified files:
devel/gmp  : Makefile distinfo 

Log message:
update to 6.1.2: bug fixes



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2016/12/19 13:47:26

Modified files:
lang/python/2.7: Makefile distinfo 
lang/python/2.7/patches: patch-Lib_test_regrtest_py 
 patch-Makefile_pre_in 
 patch-configure_ac 
lang/python/2.7/pkg: PLIST-main PLIST-tests PLIST-tools 
Added files:
lang/python/2.7/patches: patch-Python_random_c 

Log message:
update Python to 2.7.13.
ok juanfra@ shadchin@



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2016/12/19 13:43:49

Modified files:
sysutils/ggrep : Makefile distinfo 

Log message:
maintenance update to 2.27



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Martijn van Duren
CVSROOT:/cvs
Module name:ports
Changes by: mart...@cvs.openbsd.org 2016/12/19 13:35:47

Modified files:
lang/php/7.0   : Makefile distinfo 
lang/php/7.0/patches: patch-ext_pcre_php_pcre_c 
  patch-main_php_ini_c 

Log message:
update to php-7.0.14 ok robert@



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Martijn van Duren
CVSROOT:/cvs
Module name:ports
Changes by: mart...@cvs.openbsd.org 2016/12/19 13:35:09

Modified files:
lang/php/5.6   : Makefile distinfo 
lang/php/5.6/patches: patch-ext_mcrypt_mcrypt_c 
  patch-main_php_ini_c 
  patch-php_ini-development 
  patch-php_ini-production 
  patch-sapi_cgi_cgi_main_c 
  patch-sapi_cli_php_cli_c 

Log message:
update to php-5.6.29, ok robert@



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Martijn van Duren
CVSROOT:/cvs
Module name:ports
Changes by: mart...@cvs.openbsd.org 2016/12/19 13:34:22

Modified files:
lang/php/5.5   : Makefile distinfo 
lang/php/5.5/patches: patch-main_php_ini_c 

Log message:
update to php-5.5.38, ok robert@



[update] ecl-16.1.3

2016-12-19 Thread Timo Myyrä
Hi,

Here's an update to ECL.
Quickly tested on amd64, tests pass and loading few libraries with quicklisp
works as expected.
Note that this makes one test fail on math/maxima but its caused by fpe 
exception handling.
for details: https://gitlab.com/embeddable-common-lisp/ecl/issues/307

Timo

Index: Makefile
===
RCS file: /cvs/ports/lang/ecl/Makefile,v
retrieving revision 1.31
diff -u -p -r1.31 Makefile
--- Makefile13 Oct 2016 15:14:29 -  1.31
+++ Makefile19 Dec 2016 20:13:39 -
@@ -6,9 +6,9 @@ CATEGORIES =lang
 BROKEN-mips64 =ecl_min fails
 BROKEN-arm =   infinite loop while building
 
-V =16.1.2
+V =16.1.3
 DISTNAME = ecl-$V
-SHARED_LIBS += ecl 5.0
+SHARED_LIBS += ecl 6.0
 
 HOMEPAGE = https://common-lisp.net/project/ecl/
 
@@ -20,6 +20,7 @@ PERMIT_PACKAGE_CDROM =Yes
 
 MASTER_SITES = ${HOMEPAGE}static/files/release/
 
+USE_GMAKE =Yes
 CONFIGURE_STYLE =  gnu
 TEST_TARGET =  check
 CONFIGURE_ENV +=   CPPFLAGS=-I${LOCALBASE}/include \
Index: distinfo
===
RCS file: /cvs/ports/lang/ecl/distinfo,v
retrieving revision 1.8
diff -u -p -r1.8 distinfo
--- distinfo13 Mar 2016 00:18:19 -  1.8
+++ distinfo19 Dec 2016 20:13:39 -
@@ -1,2 +1,2 @@
-SHA256 (ecl-16.1.2.tgz) = LUgrGgpPvV2IFDRRcDInnYCMtkBeIt2R721zNTRGS5k=
-SIZE (ecl-16.1.2.tgz) = 7449461
+SHA256 (ecl-16.1.3.tgz) = dqWFxhbo+oOmtyCTJaMJ2lvAymjgZY85b0mVVjgRElQ=
+SIZE (ecl-16.1.3.tgz) = 7459212
Index: patches/patch-src_Makefile_in
===
RCS file: /cvs/ports/lang/ecl/patches/patch-src_Makefile_in,v
retrieving revision 1.5
diff -u -p -r1.5 patch-src_Makefile_in
--- patches/patch-src_Makefile_in   29 Aug 2015 14:48:34 -  1.5
+++ patches/patch-src_Makefile_in   19 Dec 2016 20:13:39 -
@@ -1,10 +1,10 @@
 $OpenBSD: patch-src_Makefile_in,v 1.5 2015/08/29 14:48:34 jasper Exp $
 src/Makefile.in.orig   Mon Aug 24 15:25:08 2015
-+++ src/Makefile.inMon Aug 24 15:28:43 2015
-@@ -173,30 +173,15 @@ install:
+--- src/Makefile.in.orig   Mon Dec 19 21:24:59 2016
 src/Makefile.inMon Dec 19 21:27:43 2016
+@@ -296,30 +296,15 @@ install:
+   for i in `(cd ecl && find . -name '*.h')`; do echo $$i; \
+ $(INSTALL_DATA) ecl/$$i $(DESTDIR)$(includedir)/ecl/$$i; \
done
-   $(RM) -f $(DESTDIR)$(includedir)/ecl/config.h
-   mv $(DESTDIR)$(includedir)/ecl/config-install.h 
$(DESTDIR)$(includedir)/ecl/config.h
 +  $(INSTALL_DATA) help.doc $(DESTDIR)$(ecldir)
$(INSTALL_SCRIPT) bin/ecl-config $(DESTDIR)$(bindir)
 -  for i in build-stamp help.doc TAGS ; do \
@@ -27,8 +27,8 @@ $OpenBSD: patch-src_Makefile_in,v 1.5 20
 -  fi
 +  ${INSTALL_LIBRARY} libecl.so $(DESTDIR)$(libdir)/$(LSP_LIBRARIES)
 +  cd $(DESTDIR)$(libdir) && ln -sf $(LSP_LIBRARIES) libecl.so
-   $(INSTALL_PROGRAM) c/dpp$(EXE) $(DESTDIR)$(ecldir)
-   $(INSTALL_PROGRAM) ecl_min$(EXE) $(DESTDIR)$(ecldir)
+   $(INSTALL_PROGRAM) $(DPP) $(DESTDIR)$(ecldir)
+   $(INSTALL_PROGRAM) $(ECL_MIN) $(DESTDIR)$(ecldir)
for i in `cat modules`; do \
  case $$i in \
 -  *.fas) $(INSTALL_PROGRAM) $$i $(DESTDIR)$(ecldir);; \
Index: patches/patch-src_compile_lsp_in
===
RCS file: /cvs/ports/lang/ecl/patches/patch-src_compile_lsp_in,v
retrieving revision 1.3
diff -u -p -r1.3 patch-src_compile_lsp_in
--- patches/patch-src_compile_lsp_in29 Aug 2015 14:48:34 -  1.3
+++ patches/patch-src_compile_lsp_in19 Dec 2016 20:13:39 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-src_compile_lsp_in,v 1.3 2015/08/29 14:48:34 jasper Exp $
 src/compile.lsp.in.origMon Aug 24 15:32:27 2015
-+++ src/compile.lsp.in Mon Aug 24 15:35:06 2015
-@@ -71,19 +71,19 @@
+--- src/compile.lsp.in.origMon Dec 19 21:27:57 2016
 src/compile.lsp.in Mon Dec 19 21:29:57 2016
+@@ -74,19 +74,19 @@
"@LDFLAGS@ @LIBPREFIX@ecl.@LIBEXT@ @CORE_LIBS@ @FASL_LIBS@ @LIBS@")
  #+(and :wants-dlopen (not nonstop))
  (setf c::*ld-flags*
@@ -9,10 +9,10 @@ $OpenBSD: patch-src_compile_lsp_in,v 1.3
 +  "@LDFLAGS@ -L. -lecl @LIBS@"
c::*ld-shared-flags*
 -  "@SHARED_LDFLAGS@ @LDFLAGS@ @SHAREDPREFIX@ecl.@SHAREDEXT@ @FASL_LIBS@ 
@LIBS@"
-+  "@SHARED_LDFLAGS@ @LDFLAGS@ -L. -lecl @LIBS@ @FASL_LIBS@"
++  "@SHARED_LDFLAGS@ @LDFLAGS@ -L. -lecl @FASL_LIBS@ @LIBS@"
c::*ld-bundle-flags*
 -  "@BUNDLE_LDFLAGS@ @LDFLAGS@ @SHAREDPREFIX@ecl.@SHAREDEXT@ @FASL_LIBS@ 
@LIBS@")
-+  "@BUNDLE_LDFLAGS@ @LDFLAGS@ -L -lecl @FASL_LIBS@ @LIBS@")
++  "@BUNDLE_LDFLAGS@ @LDFLAGS@ -L. -lecl @FASL_LIBS@ @LIBS@")
  ;;; FIXME: The nonstop platform does not support soname
  #+(and :wants-dlopen nonstop)
  (setf c::*ld-flags*
@@ -20,10 +20,10 @@ $OpenBSD: 

UPDATE: textproc/p5-Text-Unidecode 1.30

2016-12-19 Thread Mikolaj Kucharski
Hi,

Maintainer update to 1.30 from 1.27.

ChangeLog says:

2016-11-26   Sean M. Burke  sbu...@cpan.org
* Release 1.30
* Many many (forty?) tables were missing the final character! Fixed.
* Minor stuff:
 . Added just a few Arabesque things to U+FD__
 . Renamed t/00400_just_load_module.t
to t/00400_just_load_main_module.t
 . This is the first time non-7bit data appears in any Unidecode/x__.pm
   files, although it is just in comments. (In x02.pm, x03.pm, xfd.pm)
   But this is just THE SHAPE OF THINGS TO COME.
* Oh look, I blinked and a year went by. I've been spending about the
  past *two* years trying to think of how Unidecode v2-and-later's data
  tables should work.
* TODO: Kill the surrogatey "xD8", "xD9", "xDA", "xDB" blocks,
  and actually handle surrogates (when properly encoded).
* TODO: Inaugurate the (private) Text::Unidecode::Blackbox namespace.

http://cpansearch.perl.org/src/SBURKE/Text-Unidecode-1.30/ChangeLog


make test finshes with: All tests successful.

Used it today with Polish letters and it seems to work.


Index: Makefile
===
RCS file: /cvs/ports/textproc/p5-Text-Unidecode/Makefile,v
retrieving revision 1.15
diff -u -p -r1.15 Makefile
--- Makefile20 Mar 2016 19:57:10 -  1.15
+++ Makefile19 Dec 2016 18:34:36 -
@@ -4,7 +4,7 @@ COMMENT =   US-ASCII transliterations of U
 
 MODULES =  cpan
 PKG_ARCH = *
-DISTNAME = Text-Unidecode-1.27
+DISTNAME = Text-Unidecode-1.30
 CATEGORIES =   textproc
 
 MAINTAINER =   Mikolaj Kucharski 
Index: distinfo
===
RCS file: /cvs/ports/textproc/p5-Text-Unidecode/distinfo,v
retrieving revision 1.6
diff -u -p -r1.6 distinfo
--- distinfo13 Mar 2016 11:59:50 -  1.6
+++ distinfo19 Dec 2016 18:34:36 -
@@ -1,2 +1,2 @@
-SHA256 (Text-Unidecode-1.27.tar.gz) = 
EYdqkPDOhY0xID6A1ikAODu2Qu2KRwxnU5tgfyp3LQI=
-SIZE (Text-Unidecode-1.27.tar.gz) = 134929
+SHA256 (Text-Unidecode-1.30.tar.gz) = 
bCTxTdwdIOJhYcIHtzyhhO7S71fwi1+y7hlubi6IscY=
+SIZE (Text-Unidecode-1.30.tar.gz) = 137977


-- 
best regards
q#



Re: Import PHP 7.1

2016-12-19 Thread Robert Nagy
Let's wait and see if anyone really needs 7.0 itself and then
I guess we can switch 7.0 with 7.1

On (2016-12-19 19:24), Martijn van Duren wrote:
> PHP 5.6 support will drop support after 7.0[1], so having 7.0 and 7.1
> after 5.6 dies seems highly unlikely to me.
> Considering the minor backwards incompatible differences between 7.0 and
> 7.1[2] what about throwing out 7.0 in favor of 7.1 if the 3 stable PHP 
> version are too much? I'd like to use some 7.1 features and would hate 
> to wait another 2 years before having them in OpenBSD.
> 
> martijn@
> 
> [1] http://php.net/supported-versions.php
> [2] http://php.net/manual/en/migration71.incompatible.php
> 
> On 12/19/16 11:33, Robert Nagy wrote:
> > I think we should not have this, there is just too much php already.
> > 5.6 and 7.0 should be enough and when 5.6 dies we can have 7.1 and 7.0.
> > 
> > On (2016-12-16 21:22), Martijn van Duren wrote:
> >> Hello ports@,
> >>
> >> Here's my attempt at importing PHP 7.1. This is my first ports attempt,
> >> so I might have overlooked some things.
> >> Builds, packages, and runs for me.
> >> OK?
> >>
> >> martijn@
> >>
> >> Index: Makefile.inc
> >> ===
> >> RCS file: /cvs/ports/lang/php/Makefile.inc,v
> >> retrieving revision 1.88
> >> diff -u -p -r1.88 Makefile.inc
> >> --- Makefile.inc   4 Nov 2016 11:35:19 -   1.88
> >> +++ Makefile.inc   8 Dec 2016 12:27:42 -
> >> @@ -44,7 +44,7 @@ INI_TEMPLATES?=  development production
> >>  # don't have.
> >>  USE_LIBTOOL?= No
> >>  
> >> -.if ${PV} != "7.0"
> >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> >>  FLAVORS=  no_suhosin
> >>  .endif
> >>  FLAVOR?=
> >> @@ -144,7 +144,7 @@ MULTI_PACKAGES+=   -gd
> >>  COMMENT-gd=   image manipulation extensions for php5
> >>  LIB_DEPENDS-gd=   graphics/jpeg \
> >>graphics/png
> >> -.if ${PV} != "7.0"
> >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> >>  LIB_DEPENDS-gd+=  devel/t1lib
> >>  WANTLIB-gd+=  t1>=5
> >>  .endif
> >> @@ -194,7 +194,7 @@ CONFIGURE_ARGS+=   --with-mcrypt=shared,${
> >>  LIB_DEPENDS-mcrypt=   security/libmcrypt devel/libtool,-ltdl
> >>  WANTLIB-mcrypt=   mcrypt ltdl>=1 pthread
> >>  
> >> -.if ${PV} != "7.0"
> >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> >>  # mysql
> >>  MULTI_PACKAGES+=  -mysql
> >>  COMMENT-mysql=mysql database access extensions for php5
> >> @@ -276,7 +276,7 @@ CONFIGURE_ARGS+=   --with-snmp=shared,${LO
> >>  LIB_DEPENDS-snmp= net/net-snmp
> >>  WANTLIB-snmp= crypto m netsnmp>=6.2 pthread
> >>  
> >> -.if ${PV} != "7.0"
> >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> >>  # sybase-ct
> >>  MULTI_PACKAGES+=  -sybase_ct
> >>  COMMENT-sybase_ct=sybase database access extensions for php5
> >> @@ -292,7 +292,7 @@ CONFIGURE_ARGS+=--with-pdo-dblib
> >>  LIB_DEPENDS-pdo_dblib=databases/freetds
> >>  WANTLIB-pdo_dblib=sybdb>=6 pthread
> >>  
> >> -.if ${PV} != "7.0"
> >> +.if ${PV} != "7.0" && ${PV} != "7.1"
> >>  # mssql
> >>  MULTI_PACKAGES+=  -mssql
> >>  COMMENT-mssql=microsoft sql access extensions for php5
> >> @@ -350,7 +350,7 @@ LIB_DEPENDS-fastcgi=   ${LIB_DEPENDS-main}
> >>  RUN_DEPENDS-fastcgi=
> >>  
> >>  SUHOSIN_V=0.9.38
> >> -.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0"
> >> +.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0" || ${PV} == "7.1"
> >>  SUPDISTFILES= suhosin-${SUHOSIN_V}.tar.gz:0
> >>  .else
> >>  DISTFILES+=   suhosin-${SUHOSIN_V}.tar.gz:0
> >> @@ -406,7 +406,7 @@ post-install:
> >>${INSTALL_MAN} ${WRKBUILD}/sapi/fpm/php-fpm.8 
> >> ${PREFIX}/man/man8/php-fpm-${PV}.8
> >>${INSTALL_DATA} ${WRKBUILD}/sapi/fpm/php-fpm.conf \
> >>${PREFIX}/share/examples/php-${PV}/php-fpm.conf
> >> -.if ${PV} == "7.0"
> >> +.if ${PV} == "7.0" && ${PV} == "7.1"
> >>cat ${WRKBUILD}/sapi/fpm/www.conf >> \
> >>${PREFIX}/share/examples/php-${PV}/php-fpm.conf
> >>  .endif
> > 
> > 



Re: Import PHP 7.1

2016-12-19 Thread Martijn van Duren
PHP 5.6 support will drop support after 7.0[1], so having 7.0 and 7.1
after 5.6 dies seems highly unlikely to me.
Considering the minor backwards incompatible differences between 7.0 and
7.1[2] what about throwing out 7.0 in favor of 7.1 if the 3 stable PHP 
version are too much? I'd like to use some 7.1 features and would hate 
to wait another 2 years before having them in OpenBSD.

martijn@

[1] http://php.net/supported-versions.php
[2] http://php.net/manual/en/migration71.incompatible.php

On 12/19/16 11:33, Robert Nagy wrote:
> I think we should not have this, there is just too much php already.
> 5.6 and 7.0 should be enough and when 5.6 dies we can have 7.1 and 7.0.
> 
> On (2016-12-16 21:22), Martijn van Duren wrote:
>> Hello ports@,
>>
>> Here's my attempt at importing PHP 7.1. This is my first ports attempt,
>> so I might have overlooked some things.
>> Builds, packages, and runs for me.
>> OK?
>>
>> martijn@
>>
>> Index: Makefile.inc
>> ===
>> RCS file: /cvs/ports/lang/php/Makefile.inc,v
>> retrieving revision 1.88
>> diff -u -p -r1.88 Makefile.inc
>> --- Makefile.inc 4 Nov 2016 11:35:19 -   1.88
>> +++ Makefile.inc 8 Dec 2016 12:27:42 -
>> @@ -44,7 +44,7 @@ INI_TEMPLATES?=development production
>>  # don't have.
>>  USE_LIBTOOL?=   No
>>  
>> -.if ${PV} != "7.0"
>> +.if ${PV} != "7.0" && ${PV} != "7.1"
>>  FLAVORS=no_suhosin
>>  .endif
>>  FLAVOR?=
>> @@ -144,7 +144,7 @@ MULTI_PACKAGES+= -gd
>>  COMMENT-gd= image manipulation extensions for php5
>>  LIB_DEPENDS-gd= graphics/jpeg \
>>  graphics/png
>> -.if ${PV} != "7.0"
>> +.if ${PV} != "7.0" && ${PV} != "7.1"
>>  LIB_DEPENDS-gd+=devel/t1lib
>>  WANTLIB-gd+=t1>=5
>>  .endif
>> @@ -194,7 +194,7 @@ CONFIGURE_ARGS+= --with-mcrypt=shared,${
>>  LIB_DEPENDS-mcrypt= security/libmcrypt devel/libtool,-ltdl
>>  WANTLIB-mcrypt= mcrypt ltdl>=1 pthread
>>  
>> -.if ${PV} != "7.0"
>> +.if ${PV} != "7.0" && ${PV} != "7.1"
>>  # mysql
>>  MULTI_PACKAGES+=-mysql
>>  COMMENT-mysql=  mysql database access extensions for php5
>> @@ -276,7 +276,7 @@ CONFIGURE_ARGS+= --with-snmp=shared,${LO
>>  LIB_DEPENDS-snmp=   net/net-snmp
>>  WANTLIB-snmp=   crypto m netsnmp>=6.2 pthread
>>  
>> -.if ${PV} != "7.0"
>> +.if ${PV} != "7.0" && ${PV} != "7.1"
>>  # sybase-ct
>>  MULTI_PACKAGES+=-sybase_ct
>>  COMMENT-sybase_ct=  sybase database access extensions for php5
>> @@ -292,7 +292,7 @@ CONFIGURE_ARGS+=--with-pdo-dblib
>>  LIB_DEPENDS-pdo_dblib=  databases/freetds
>>  WANTLIB-pdo_dblib=  sybdb>=6 pthread
>>  
>> -.if ${PV} != "7.0"
>> +.if ${PV} != "7.0" && ${PV} != "7.1"
>>  # mssql
>>  MULTI_PACKAGES+=-mssql
>>  COMMENT-mssql=  microsoft sql access extensions for php5
>> @@ -350,7 +350,7 @@ LIB_DEPENDS-fastcgi= ${LIB_DEPENDS-main}
>>  RUN_DEPENDS-fastcgi=
>>  
>>  SUHOSIN_V=  0.9.38
>> -.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0"
>> +.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0" || ${PV} == "7.1"
>>  SUPDISTFILES=   suhosin-${SUHOSIN_V}.tar.gz:0
>>  .else
>>  DISTFILES+= suhosin-${SUHOSIN_V}.tar.gz:0
>> @@ -406,7 +406,7 @@ post-install:
>>  ${INSTALL_MAN} ${WRKBUILD}/sapi/fpm/php-fpm.8 
>> ${PREFIX}/man/man8/php-fpm-${PV}.8
>>  ${INSTALL_DATA} ${WRKBUILD}/sapi/fpm/php-fpm.conf \
>>  ${PREFIX}/share/examples/php-${PV}/php-fpm.conf
>> -.if ${PV} == "7.0"
>> +.if ${PV} == "7.0" && ${PV} == "7.1"
>>  cat ${WRKBUILD}/sapi/fpm/www.conf >> \
>>  ${PREFIX}/share/examples/php-${PV}/php-fpm.conf
>>  .endif
> 
> 



Re: [UPDATE] Python 2.7.13

2016-12-19 Thread Alexandr Shadchin
On Sun, Dec 18, 2016 at 09:49:20AM +0100, Remi Pointel wrote:
> Hi,
> 
> this is the diff to update Python to 2.7.13. I just tested on amd64.
> 
> Ok?
> 
> Cheers,
> 
> Remi.

no regress for me, ok shadchin@

-- 
Alexandr Shadchin



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Robert Peichaer
CVSROOT:/cvs
Module name:ports
Changes by: r...@cvs.openbsd.org2016/12/19 10:31:45

Modified files:
www/awstats: Makefile distinfo 
www/awstats/pkg: PLIST 

Log message:
Update www/awstats to version 7.6

Noteable changes:
- Security fix: "|" not allowed into DirLang parameter.
- Security fix: More restrictive rule for using AWSTATS_ENABLE_CONFIG_DIR.

OK @aja



Re: [UPDATE] devel/jdk/1.8 u112

2016-12-19 Thread Kurt Miller
Thank you Pavel for looking into this. I will take a closer look at it
and get back to you.

-Kurt

On Sun, 2016-12-18 at 02:50 +0300, Pavel Korovin wrote:
> Hi Kurt,
> 
> Thank you for the jdk ports!
> 
> Please see the patch for the latest jdk attached.
> 
> There's some mess in 
> jdk/src/solaris/native/sun/management/OperatingSystemImpl.c
> #defines:
> 
> #ifdef _ALLBSD_SOURCE
> #define FD_DIR "/dev/fd"
> #else
> #define FD_DIR "/proc/self/fd"
> #endif
> 
> /* skip */
> 
> #if defined(_AIX)
> /* do stuff */
> #else
> #define FD_DIR "/proc/self/fd"
> #endif
> 
> This means that the FD_DIR will always be redefined to "/proc/self/fd" on
> everything but AIX. And platforms without /proc support will get this:
> 
> throw_internal_error(env, "Unable to open directory " FD_DIR);
> return -1;
> 
> if they call 
> Java_sun_management_OperatingSystemImpl_getOpenFileDescriptorCount.
> 




CVS: cvs.openbsd.org: ports

2016-12-19 Thread Christian Weisgerber
CVSROOT:/cvs
Module name:ports
Changes by: na...@cvs.openbsd.org   2016/12/19 09:37:40

Modified files:
editors/nano   : Makefile distinfo 
editors/nano/patches: patch-doc_man_nano_1 patch-src_Makefile_in 

Log message:
Update to 2.7.2.  New feature: complete with one keystroke (^] by
default) a fragment of a word to a full word existing elsewhere in
the current buffer.



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Kurt Miller
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2016/12/19 09:44:50

Modified files:
textproc/xerces: Makefile distinfo 
textproc/xerces/pkg: PLIST 

Log message:
update to 2.11.0. okay ajacoutot@



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Kurt Miller
CVSROOT:/cvs
Module name:ports
Changes by: k...@cvs.openbsd.org2016/12/19 09:35:27

Modified files:
devel  : Makefile 
devel/quirks   : Makefile 
devel/quirks/files: Quirks.pm 
Removed files:
devel/jakarta-servletapi: Makefile distinfo 
devel/jakarta-servletapi/pkg: DESCR PLIST 

Log message:
remove jakarta-servletapi. unmaintained and not useful.
okay ian@ ajacoutot@



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2016/12/19 09:11:38

Modified files:
www/mozilla: mozilla.port.mk 

Log message:
Put ac_cv_path_SED=/usr/bin/sed in CONFIGURE_ENV, should fix another
build failure seen by ajacoutot@. damn libffi's configure script tries
hard to detect and use gsed...



add OpenBSD defs to llvm aarch64 target

2016-12-19 Thread Jonathan Gray
Same change patrick made to llvm in base.

With this aarch64-unknown-openbsd6.0 defines now include

#define __ELF__ 1
#define __OpenBSD__ 1
#define __unix 1
#define __unix__ 1
#define unix 1

Index: Makefile
===
RCS file: /cvs/ports/devel/llvm/Makefile,v
retrieving revision 1.125
diff -u -p -r1.125 Makefile
--- Makefile2 Nov 2016 07:46:33 -   1.125
+++ Makefile19 Dec 2016 10:39:28 -
@@ -11,7 +11,7 @@ COMMENT = modular, fast C/C++/ObjC compi
 LLVM_V =   3.9.0
 DISTNAME = llvm-${LLVM_V}.src
 PKGNAME =  llvm-${LLVM_V}
-REVISION = 2
+REVISION = 3
 CATEGORIES =   devel
 DISTFILES =llvm-${LLVM_V}.src${EXTRACT_SUFX} \
cfe-${LLVM_V}.src${EXTRACT_SUFX} \
Index: patches/patch-tools_clang_lib_Basic_Targets_cpp
===
RCS file: 
/cvs/ports/devel/llvm/patches/patch-tools_clang_lib_Basic_Targets_cpp,v
retrieving revision 1.17
diff -u -p -r1.17 patch-tools_clang_lib_Basic_Targets_cpp
--- patches/patch-tools_clang_lib_Basic_Targets_cpp 7 Oct 2016 08:55:30 
-   1.17
+++ patches/patch-tools_clang_lib_Basic_Targets_cpp 19 Dec 2016 10:50:39 
-
@@ -3,9 +3,10 @@ $OpenBSD: patch-tools_clang_lib_Basic_Ta
 - Enable __float128 support on X86
 - [OpenBSD] Add type sign information for OpenBSD
 - Set ABI for ARM
+- [OpenBSD] set OpenBSD defines for aarch64
 
 tools/clang/lib/Basic/Targets.cpp.orig Mon Jul 25 12:21:28 2016
-+++ tools/clang/lib/Basic/Targets.cpp  Sat Sep 24 12:02:09 2016
+--- tools/clang/lib/Basic/Targets.cpp.orig Tue Jul 26 02:21:28 2016
 tools/clang/lib/Basic/Targets.cpp  Mon Dec 19 21:48:14 2016
 @@ -531,6 +531,8 @@ class OpenBSDTargetInfo : public OSTargetInfo 
  Builder.defineMacro("__ELF__");
  if (Opts.POSIXThreads)
@@ -64,3 +65,12 @@ $OpenBSD: patch-tools_clang_lib_Basic_Ta
  else
setABI("aapcs");
  break;
+@@ -8148,6 +8159,8 @@ static TargetInfo *AllocateTarget(const llvm::Triple &
+   return new LinuxTargetInfo(Triple, Opts);
+ case llvm::Triple::NetBSD:
+   return new NetBSDTargetInfo(Triple, Opts);
++case llvm::Triple::OpenBSD:
++  return new OpenBSDTargetInfo(Triple, Opts);
+ default:
+   return new AArch64leTargetInfo(Triple, Opts);
+ }



Pending samba security updates

2016-12-19 Thread Jeremie Courreges-Anglas

Hi,

I committed an update to samba-4.5.2 on -current earlier today.  Below
there's a diff to update to samba-4.5.3, a security update.

o  CVE-2016-2123 (Samba NDR Parsing ndr_pull_dnsp_name Heap-based Buffer
   Overflow Remote Code Execution Vulnerability).
o  CVE-2016-2125 (Unconditional privilege delegation to Kerberos servers in
   trusted realms).
o  CVE-2016-2126 (Flaws in Kerberos PAC validation can trigger privilege
   elevation).

  https://www.samba.org/samba/history/samba-4.5.3.html


Index: Makefile
===
RCS file: /d/cvs/ports/net/samba/Makefile,v
retrieving revision 1.231
diff -u -p -r1.231 Makefile
--- Makefile19 Dec 2016 10:12:18 -  1.231
+++ Makefile19 Dec 2016 10:12:32 -
@@ -1,6 +1,6 @@
 # $OpenBSD: Makefile,v 1.231 2016/12/19 10:12:18 jca Exp $
 
-VERSION =  4.5.2
+VERSION =  4.5.3
 DISTNAME = samba-${VERSION}
 
 COMMENT-main = SMB and CIFS client and server for UNIX
Index: distinfo
===
RCS file: /d/cvs/ports/net/samba/distinfo,v
retrieving revision 1.55
diff -u -p -r1.55 distinfo
--- distinfo19 Dec 2016 10:12:18 -  1.55
+++ distinfo19 Dec 2016 10:39:57 -
@@ -1,2 +1,2 @@
-SHA256 (samba-4.5.2.tar.gz) = kpfE2hou4s22UWFpm3AHvJSvs51GwlrNM/ZOZMa0OXo=
-SIZE (samba-4.5.2.tar.gz) = 20944229
+SHA256 (samba-4.5.3.tar.gz) = 8G3EVKG7crIaMp4a11oUeViGQBZx7HQ51pprgkxJLso=
+SIZE (samba-4.5.3.tar.gz) = 20946015


For -stable I plan to cook a diff later today / tomorrow, an update to
4.4.8 (since -stable is currently at 4.4.5).

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE


signature.asc
Description: PGP signature


Re: devel/doxygen: Split the gui off to a different port

2016-12-19 Thread Rafael Sadowski
On Mon Dec 19, 2016 at 03:34:34PM +0300, Vadim Zhukov wrote:
> 
> We could also stop avoiding devel/doxygen dep in general, right?
> 

Yes, this is on my list after the split.

Rafael



Re: devel/doxygen: Split the gui off to a different port

2016-12-19 Thread Vadim Zhukov
2016-12-19 1:31 GMT+03:00 Jeremie Courreges-Anglas :
> Rafael Sadowski  writes:
>
> [...]
>
>> @@ -47,11 +35,6 @@ MODULES=   devel/cmake \
>>  MODPY_RUNDEP=No
>>
>>  .include 
>
> This line isn't needed any more.  The MACHINE_ARCH variable used in the
> tests below is set by make(1).
>
>> -.if ${BUILD_PACKAGES:M-gui}
>> -CONFIGURE_ARGS+=-Dbuild_wizard:Bool=ON
>> -CONFIGURE_ARGS+=-Dforce_qt4:Bool=ON
>> -MODULES+=x11/qt4
>> -.endif
>>  .if ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el"
>>  # ld(1) fails
>>  CONFIGURE_ARGS+=-Denglish_only:Bool=ON
>
> devel/doxygen-gui would need this as much as devel/doxygen does.
>
> re doxygen-gui: since we build doxygen and not just doxywizard, libiconv
> is still directly used at build time, so it needs to be in
> BUILD_DEPENDS.  xapian-core is not needed for doxygen-gui.
>
> Updated diff for doxygen below, updated tarball for doxygen-gui
> attached.  It would be nice to move B/L/R deps around to make things
> clearer, but I'd rather not add more churn right now.
>
> Since doxygen-gui is a "new" port I'd need a review/ok from another
> developer.

Ideally, someone who owns alpha, mips64/mips64el, m88k and/or landisk
could verify what package builds where now. Unfortunately, that's not
me, though. :(

We could also stop avoiding devel/doxygen dep in general, right?

In any case, the whole thing looks like okay to me.

--
  WBR,
  Vadim Zhukov



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Kirill Bychkov
CVSROOT:/cvs
Module name:ports
Changes by: ki...@cvs.openbsd.org   2016/12/19 05:29:01

Modified files:
games/warzone2100: Makefile distinfo 
games/warzone2100/patches: patch-icons_Makefile_in 
   patch-src_Makefile_in 
games/warzone2100/pkg: PLIST 

Log message:
Bugfix update to warzone2100-3.2.2



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Vadim Zhukov
CVSROOT:/cvs
Module name:ports
Changes by: z...@cvs.openbsd.org2016/12/19 04:57:22

Modified files:
x11/tellico-kde4: Makefile distinfo 
x11/tellico-kde4/patches: patch-src_fetch_allocinefetcher_cpp 
  patch-src_fetch_discogsfetcher_cpp 
  patch-src_fetch_moviemeterfetcher_cpp 
  patch-src_fetch_themoviedbfetcher_cpp 
  patch-src_fetch_vndbfetcher_cpp 
  patch-src_tests_discogsfetchertest_cpp 
x11/tellico-kde4/pkg: PLIST 

Log message:
Minor update to Tellico 2.3.11. All patches went upstream.

>From Rafael Sadowski.



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Vadim Zhukov
CVSROOT:/cvs
Module name:ports
Changes by: z...@cvs.openbsd.org2016/12/19 04:55:56

Modified files:
x11/dbusmenu-qt: Makefile distinfo 
x11/dbusmenu-qt/pkg: PLIST 

Log message:
Minor update of libdbusmenu-qt, switching off doxygen dependency.

>From Rafael Sadowski.



Re: NEW: emulators/xroar

2016-12-19 Thread Frederic Cambus
On Sun, Dec 18, 2016 at 04:09:24AM +0100, Juan Francisco Cantero Hurtado wrote:

> XRoar is a Dragon emulator. Due to hardware similarities, also emulates the
> Tandy Colour Computer (CoCo) models 1 & 2. Some features are:

Builds and works fine for me, tested by emulating a Dragon 64 and
notably enjoying the Nyan Cat demo available on HOMEPAGE.

OK fcambus@ to import.



Re: Import PHP 7.1

2016-12-19 Thread Robert Nagy
I think we should not have this, there is just too much php already.
5.6 and 7.0 should be enough and when 5.6 dies we can have 7.1 and 7.0.

On (2016-12-16 21:22), Martijn van Duren wrote:
> Hello ports@,
> 
> Here's my attempt at importing PHP 7.1. This is my first ports attempt,
> so I might have overlooked some things.
> Builds, packages, and runs for me.
> OK?
> 
> martijn@
> 
> Index: Makefile.inc
> ===
> RCS file: /cvs/ports/lang/php/Makefile.inc,v
> retrieving revision 1.88
> diff -u -p -r1.88 Makefile.inc
> --- Makefile.inc  4 Nov 2016 11:35:19 -   1.88
> +++ Makefile.inc  8 Dec 2016 12:27:42 -
> @@ -44,7 +44,7 @@ INI_TEMPLATES?= development production
>  # don't have.
>  USE_LIBTOOL?=No
>  
> -.if ${PV} != "7.0"
> +.if ${PV} != "7.0" && ${PV} != "7.1"
>  FLAVORS= no_suhosin
>  .endif
>  FLAVOR?=
> @@ -144,7 +144,7 @@ MULTI_PACKAGES+=  -gd
>  COMMENT-gd=  image manipulation extensions for php5
>  LIB_DEPENDS-gd=  graphics/jpeg \
>   graphics/png
> -.if ${PV} != "7.0"
> +.if ${PV} != "7.0" && ${PV} != "7.1"
>  LIB_DEPENDS-gd+= devel/t1lib
>  WANTLIB-gd+= t1>=5
>  .endif
> @@ -194,7 +194,7 @@ CONFIGURE_ARGS+=  --with-mcrypt=shared,${
>  LIB_DEPENDS-mcrypt=  security/libmcrypt devel/libtool,-ltdl
>  WANTLIB-mcrypt=  mcrypt ltdl>=1 pthread
>  
> -.if ${PV} != "7.0"
> +.if ${PV} != "7.0" && ${PV} != "7.1"
>  # mysql
>  MULTI_PACKAGES+= -mysql
>  COMMENT-mysql=   mysql database access extensions for php5
> @@ -276,7 +276,7 @@ CONFIGURE_ARGS+=  --with-snmp=shared,${LO
>  LIB_DEPENDS-snmp=net/net-snmp
>  WANTLIB-snmp=crypto m netsnmp>=6.2 pthread
>  
> -.if ${PV} != "7.0"
> +.if ${PV} != "7.0" && ${PV} != "7.1"
>  # sybase-ct
>  MULTI_PACKAGES+= -sybase_ct
>  COMMENT-sybase_ct=   sybase database access extensions for php5
> @@ -292,7 +292,7 @@ CONFIGURE_ARGS+=--with-pdo-dblib
>  LIB_DEPENDS-pdo_dblib=   databases/freetds
>  WANTLIB-pdo_dblib=   sybdb>=6 pthread
>  
> -.if ${PV} != "7.0"
> +.if ${PV} != "7.0" && ${PV} != "7.1"
>  # mssql
>  MULTI_PACKAGES+= -mssql
>  COMMENT-mssql=   microsoft sql access extensions for php5
> @@ -350,7 +350,7 @@ LIB_DEPENDS-fastcgi=  ${LIB_DEPENDS-main}
>  RUN_DEPENDS-fastcgi=
>  
>  SUHOSIN_V=   0.9.38
> -.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0"
> +.if ${FLAVOR:Mno_suhosin} || ${PV} == "7.0" || ${PV} == "7.1"
>  SUPDISTFILES=suhosin-${SUHOSIN_V}.tar.gz:0
>  .else
>  DISTFILES+=  suhosin-${SUHOSIN_V}.tar.gz:0
> @@ -406,7 +406,7 @@ post-install:
>   ${INSTALL_MAN} ${WRKBUILD}/sapi/fpm/php-fpm.8 
> ${PREFIX}/man/man8/php-fpm-${PV}.8
>   ${INSTALL_DATA} ${WRKBUILD}/sapi/fpm/php-fpm.conf \
>   ${PREFIX}/share/examples/php-${PV}/php-fpm.conf
> -.if ${PV} == "7.0"
> +.if ${PV} == "7.0" && ${PV} == "7.1"
>   cat ${WRKBUILD}/sapi/fpm/www.conf >> \
>   ${PREFIX}/share/examples/php-${PV}/php-fpm.conf
>  .endif




Re: Remove PHP 5.5?

2016-12-19 Thread Robert Nagy
Yeah I don't want to remove it just yet.

On (2016-12-16 21:22), Martijn van Duren wrote:
> Hello ports@,
> 
> I would like to remove PHP 5.5. It's unsupported upstream and could make
> room for PHP 7.1. Any objections to removing it?
> 
> If there are people objecting, at least upgrade it to it's last version.
> 
> martijn@
> 
> Index: 5.5/Makefile
> ===
> RCS file: /cvs/ports/lang/php/5.5/Makefile,v
> retrieving revision 1.62
> diff -u -p -r1.62 Makefile
> --- 5.5/Makefile  4 Nov 2016 11:35:19 -   1.62
> +++ 5.5/Makefile  8 Dec 2016 12:27:42 -
> @@ -1,12 +1,7 @@
>  # $OpenBSD: Makefile,v 1.62 2016/11/04 11:35:19 sthen Exp $
>  
>  PV=  5.5
> -V=   ${PV}.37
> +V=   ${PV}.38
>  REVISION =   0
> -
> -REVISION-curl=   1
> -REVISION-soap=   1
> -REVISION-xmlrpc= 1
> -REVISION-xsl=1
>  
>  .include 
> Index: 5.5/distinfo
> ===
> RCS file: /cvs/ports/lang/php/5.5/distinfo,v
> retrieving revision 1.32
> diff -u -p -r1.32 distinfo
> --- 5.5/distinfo  25 Jun 2016 18:54:15 -  1.32
> +++ 5.5/distinfo  8 Dec 2016 12:27:42 -
> @@ -1,4 +1,4 @@
> -SHA256 (php-5.5.37.tar.bz2) = 0jgOvkbK8X8sTNBVhn0AqC5nAtxfYtwpzoZKV0KQXYg=
> +SHA256 (php-5.5.38.tar.bz2) = RzyB67LkjKRoyu4DF2ImZlGEPXInwYqCSt2bB7k5Pjg=
>  SHA256 (suhosin-0.9.38.tar.gz) = wC12xOfOd3kQo3wYGBy2f9npDv4BB/6rPeMTG1+JvOo=
> -SIZE (php-5.5.37.tar.bz2) = 13699851
> +SIZE (php-5.5.38.tar.bz2) = 13701262
>  SIZE (suhosin-0.9.38.tar.gz) = 122800
> Index: 5.5/patches/patch-main_php_ini_c
> ===
> RCS file: /cvs/ports/lang/php/5.5/patches/patch-main_php_ini_c,v
> retrieving revision 1.2
> diff -u -p -r1.2 patch-main_php_ini_c
> --- 5.5/patches/patch-main_php_ini_c  2 Dec 2014 09:41:07 -   1.2
> +++ 5.5/patches/patch-main_php_ini_c  8 Dec 2016 12:27:42 -
> @@ -1,6 +1,6 @@
>  $OpenBSD: patch-main_php_ini_c,v 1.2 2014/12/02 09:41:07 brad Exp $
>  main/php_ini.c.orig.port Wed Nov 12 04:38:46 2014
> -+++ main/php_ini.c   Tue Dec  2 04:23:40 2014
> +--- main/php_ini.c.orig.port Wed Jul 20 10:41:48 2016
>  main/php_ini.c   Thu Dec  8 10:53:58 2016
>  @@ -576,7 +576,7 @@ int php_init_config(TSRMLS_D)
>   
>   /* If still no ini file found, search for php.ini file in 
> search path */
> 



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2016/12/19 03:12:18

Modified files:
net/samba  : Makefile distinfo 
net/samba/pkg  : PLIST-main 

Log message:
Update to samba-4.5.2



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Alexandr Shadchin
CVSROOT:/cvs
Module name:ports
Changes by: shadc...@cvs.openbsd.org2016/12/19 02:17:58

Modified files:
devel/py-astroid: Makefile distinfo 

Log message:
Update to py-astroid 1.4.9



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/12/19 02:16:32

Modified files:
x11/gnome/latexila: Makefile distinfo 

Log message:
Update to latexila-3.22.1.



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/12/19 02:06:15

Modified files:
productivity/gnucash: Makefile distinfo 
productivity/gnucash/pkg: PLIST 

Log message:
Update to gnucash-2.6.15.



CVS: cvs.openbsd.org: ports

2016-12-19 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2016/12/19 02:02:27

Modified files:
productivity/tryton/tryton: Makefile distinfo 

Log message:
Update to tryton-3.2.20.