CVS: cvs.openbsd.org: ports

2017-04-05 Thread Pierre-Emmanuel Andre
CVSROOT:/cvs
Module name:ports
Changes by: p...@cvs.openbsd.org2017/04/05 21:49:40

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

Log message:
Reliability update to 9.5.6



textproc/xmlto

2017-04-05 Thread Ian McWilliam
Configure picks the wrong location for cp.

checking for cp... /bin/cp

and /usr/local/bin/xmlto contains

GCP_PATH=/usr/bin/cp

Therefore we wind up with things like

===>  Building for xdg-utils-1.1.1
gmake[1]: Entering directory 
'/usr/ports/pobj/xdg-utils-1.1.1/xdg-utils-1.1.1/scripts'
(cd html;/usr/local/bin/xmlto html-nochunks ../desc/xdg-desktop-menu.xml)
/usr/local/share/xmlto/format/docbook/html-nochunks: line 10: /usr/bin/cp: No 
such file or directory


Ian McWilliam


Re: [UPDATE] databases/mongodb to 3.2.12

2017-04-05 Thread Andrew Aldridge

ping

On 2017-03-25 12:38, Andrew Aldridge wrote:

Minor update, but fixes a few WiredTiger and aggregation bugs.

Also:
* install manpages,
* add mongobridge to PLIST,
* remove duplicated line,
* use BSD make loop structure rather than shell loop, so
  progress is reported.

Thanks,
Andrew Aldridge


Index: Makefile
===
RCS file: 
/var/storage/andrew/openbsd/cvs/ports/databases/mongodb/Makefile,v

retrieving revision 1.23
diff -u -p -r1.23 Makefile
--- Makefile20 Sep 2016 15:44:57 -  1.23
+++ Makefile25 Mar 2017 16:35:05 -
@@ -9,7 +9,7 @@ DPB_PROPERTIES = parallel

 COMMENT =  scalable, high-performance document-oriented database

-DISTNAME = mongodb-src-r3.2.7
+DISTNAME = mongodb-src-r3.2.12
 REVISION = 0
 PKGNAME =  ${DISTNAME:S/src-r//}
 CATEGORIES =   databases
@@ -37,7 +37,6 @@ NO_CCACHE =   Yes
 MODGCC4_ARCHS =*
 MODGCC4_LANGS =c c++
 MODPY_VERSION =${MODPY_DEFAULT_VERSION_2}
-ALL_TARGET =   core tools
 MODSCONS_ENV = CC="${CC}" \
CXX="${CXX}" \
CCFLAGS="${CFLAGS} -DBOOST_NO_USER_CONFIG" \
@@ -67,9 +66,12 @@ TEST_DEPENDS =   textproc/py-yaml \
 BUILD_DEPENDS =textproc/icu4c

 do-install:
-   for bin in mongo mongod mongos mongosniff mongobridge mongoperf; do \
-   ${INSTALL_PROGRAM} ${WRKSRC}/$$bin ${PREFIX}/bin/; \
-   done
+.for bin in mongo mongod mongos mongosniff mongobridge mongoperf
+   ${INSTALL_PROGRAM} ${WRKSRC}/${bin} ${PREFIX}/bin/
+   if [ -f ${WRKSRC}/debian/${bin}.1 ]; then \
+ ${INSTALL_MAN} ${WRKSRC}/debian/${bin}.1 ${PREFIX}/man/man1; \
+   fi
+.endfor
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/mongodb
${INSTALL_DATA} ${FILESDIR}/mongodb.conf \
${PREFIX}/share/examples/mongodb
Index: distinfo
===
RCS file: 
/var/storage/andrew/openbsd/cvs/ports/databases/mongodb/distinfo,v

retrieving revision 1.10
diff -u -p -r1.10 distinfo
--- distinfo20 Jun 2016 09:07:43 -  1.10
+++ distinfo24 Mar 2017 20:08:14 -
@@ -1,2 +1,2 @@
-SHA256 (mongodb-src-r3.2.7.tar.gz) =
zYlnavb5dWFwCgi1mcKH+2OPFKahAZ75Fnz1XtajlSo=
-SIZE (mongodb-src-r3.2.7.tar.gz) = 28494513
+SHA256 (mongodb-src-r3.2.12.tar.gz) =
QGzthzqavoo/D5KTm/U3RmO6yGxyGByAvsFErt9s0wY=
+SIZE (mongodb-src-r3.2.12.tar.gz) = 29178424
Index: pkg/PLIST
===
RCS file: 
/var/storage/andrew/openbsd/cvs/ports/databases/mongodb/pkg/PLIST,v

retrieving revision 1.6
diff -u -p -r1.6 PLIST
--- pkg/PLIST   6 May 2016 15:33:37 -   1.6
+++ pkg/PLIST   25 Mar 2017 16:06:38 -
@@ -2,10 +2,16 @@
 @newgroup _mongodb:670
 @newuser _mongodb:670:670:daemon:MongoDB 
Account:/nonexistent:/sbin/nologin

 @bin bin/mongo
+@bin bin/mongobridge
 @bin bin/mongod
 @bin bin/mongoperf
 @bin bin/mongos
 @bin bin/mongosniff
+@man man/man1/mongo.1
+@man man/man1/mongod.1
+@man man/man1/mongoperf.1
+@man man/man1/mongos.1
+@man man/man1/mongosniff.1
 share/examples/mongodb/
 share/examples/mongodb/mongodb.conf
 @sample ${SYSCONFDIR}/mongodb.conf


--
-- Andrew Aldridge



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Juan Francisco Cantero Hurtado
CVSROOT:/cvs
Module name:ports
Changes by: juan...@cvs.openbsd.org 2017/04/05 15:29:57

Modified files:
x11/st : Makefile 
x11/st/patches : patch-config_mk 
Added files:
x11/st/patches : patch-st_c 

Log message:
Add pledge() to st. Patch by tb@ and semarie@.
OK jung@ (MAINTAINER) gsoares@.



Re: UPDATE: print/gl2ps

2017-04-05 Thread paul
Ok, from reading

“Make it possible to add primitives directly, without parsing the OpenGL 
feedback buffer, using gl2psAddPolyPrimitive; gl2psBeginPage now accepts a 
buffersize of 0;”

I thought these two functions had their arguments changed. Turns out the first 
is a new function (although later in the log there is a list of new functions 
that does not include it) and the second is just semantics with no API changes.


So go ahead and commit :)

De la: Ingo Feinerer
Trimis: miercuri, 5 aprilie 2017 16:25
Către: Paul Irofti
Cc: ports@openbsd.org
Subiect: Re: UPDATE: print/gl2ps

On Wed, Apr 05, 2017 at 02:32:20PM +0300, Paul Irofti wrote:
> On Wed, Apr 05, 2017 at 01:01:52PM +0200, Ingo Feinerer wrote:
> > Update print/gl2ps 1.3.9 -> 1.4.0
> > (ChangeLog at http://www.geuz.org/gl2ps/#tth_sEc8)
> > 
> > OK?
> 
> I am not a master in library versioning, but from the ChangeLog it seems
> you need a major bump here: modified existing functions and added new
> ones

I checked with

nm -g /usr/local/lib/libgl2ps.so.0.0 | cut -c10- | grep -e^T
(as outlined at
https://www.openbsd.org/faq/ports/specialtopics.html#SharedLibs)

for both old and new:

$ diff old.txt new.txt
30a31
> T gl2psAddPolyPrimitive
39a41
> T gl2psForceRasterPos
43a46,47
> T gl2psLineCap
> T gl2psLineJoin
47a52
> T gl2psSpecialColor

The new functions correspond to what is mentioned in the ChangeLog.
gl2psBeginPage is the only function missing mentioned there, so I
manually checked the signature and it did not change.

So as only new functions are added, but no function seems to be modified
or removed, I just bumped the minor version number.

Best regards,
Ingo



Re: UPDATE: devel/qt-creator

2017-04-05 Thread Stuart Henderson
On 2017/04/05 22:31, Rafael Sadowski wrote:
> On Sat Feb 25, 2017 at 10:32:59AM +0100, Caspar Schutijser wrote:
> > On Sat, Jan 28, 2017 at 09:25:14PM +0100, Rafael Sadowski wrote:
> > > straightforward patch to 4.2.1.
> > 
> > Just tested the update on amd64, works fine for me.
> > 
> > Best regards,
> > Caspar Schutijser
> >
> > *ping*
> >
> > https://marc.info/?l=openbsd-ports=148563513727735=2
> 

I'm kind-of tempted to mark qt-creator as BROKEN until someone can figure
out the dpb bootstrap stuff so that packages can be built..



Re: NEW: x11/x2goclient 4.1.0.0

2017-04-05 Thread Rafael Sadowski
*ping* I work with it every day.

On Tue Mar 14, 2017 at 08:18:29PM +0100, Rafael Sadowski wrote:
> *ping*
> 
> On Sat Feb 25, 2017 at 10:35:05AM +0100, Rafael Sadowski wrote:
> > Hi ports@,
> > 
> > after a long way I happy to announce a stable X2Go client port. Please
> > find attached a new tarball with x2goclient-4.1.0.0.
> > 
> > "Increase the thread stack size to the default size on Linux, fixes a
> > crash." patch from jca@ and very much feedback.
> > 
> > Tested on amd64.
> > 
> > $ cat pkg/DESCR
> > The x2goclient application provides you the possibility to access the
> > remote running desktop, exchange files with it and redirect sound from
> > the session on the server to your local client.
> > 
> > Regards,
> > 
> > Rafael Sadowski
> 



Re: UPDATE: devel/doxygen and devel/doxygen-gui

2017-04-05 Thread Rafael Sadowski
*ping*

On Sat Mar 25, 2017 at 09:06:35AM +0100, Rafael Sadowski wrote:
> Hi All,
> 
> straightforward update to the last doxygen version. After all
> problematic doxygen ports have been modified, the doxygen update is
> ready. The following ports still use it but there are no PLIST changes:
> 
> astro/stellarium
> audio/liblo
> audio/libnjb
> databases/soprano
> devel/simulavr
> devel/tclap
> graphics/digikam-kde4
> graphics/opencv
> math/ginac
> net/libktorrent
> productivity/kmymoney
> productivity/libalkimia
> x11/kde4/nepomuk-core
> x11/kde4/runtime
> 
> Please find below one diff for doxygen and one for doxygen-gui.
> 
> Best regards,
> 
> Rafael Sadowski
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/devel/doxygen/Makefile,v
> retrieving revision 1.39
> diff -u -p -u -p -r1.39 Makefile
> --- Makefile  23 Dec 2016 15:23:11 -  1.39
> +++ Makefile  25 Mar 2017 08:00:30 -
> @@ -7,10 +7,9 @@ BROKEN-alpha=.got subsegment exceeds 64
>  
>  COMMENT= source code documentation generator tool
>  
> -VERSION= 1.8.12
> +VERSION= 1.8.13
>  DISTNAME=doxygen-${VERSION}.src
>  PKGNAME= doxygen-${VERSION}
> -REVISION=1
>  
>  CATEGORIES=  devel textproc
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/devel/doxygen/distinfo,v
> retrieving revision 1.10
> diff -u -p -u -p -r1.10 distinfo
> --- distinfo  12 Nov 2016 20:50:41 -  1.10
> +++ distinfo  25 Mar 2017 08:00:30 -
> @@ -1,2 +1,2 @@
> -SHA256 (doxygen-1.8.12.src.tar.gz) = 
> eS1AkcvfIoVJ/yAz3XH/fqUCnGtDYxfMXshm5xMC32w=
> -SIZE (doxygen-1.8.12.src.tar.gz) = 4880613
> +SHA256 (doxygen-1.8.13.src.tar.gz) = 
> r2Z4h716h9wNv5rI2GyWtVLfuMqceQ7Ry/+qYTFXP2s=
> +SIZE (doxygen-1.8.13.src.tar.gz) = 4893912
> 
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/devel/doxygen-gui/Makefile,v
> retrieving revision 1.1.1.1
> diff -u -p -u -p -r1.1.1.1 Makefile
> --- Makefile  23 Dec 2016 15:29:22 -  1.1.1.1
> +++ Makefile  25 Mar 2017 08:00:19 -
> @@ -7,10 +7,9 @@ BROKEN-alpha=.got subsegment exceeds 64
>  
>  COMMENT= GUI front-end for doxygen
>  
> -VERSION= 1.8.12
> +VERSION= 1.8.13
>  DISTNAME=doxygen-${VERSION}.src
>  PKGNAME= doxygen-gui-${VERSION}
> -REVISION=1
>  
>  CATEGORIES=  devel textproc
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/devel/doxygen-gui/distinfo,v
> retrieving revision 1.1.1.1
> diff -u -p -u -p -r1.1.1.1 distinfo
> --- distinfo  23 Dec 2016 15:29:22 -  1.1.1.1
> +++ distinfo  25 Mar 2017 08:00:19 -
> @@ -1,2 +1,2 @@
> -SHA256 (doxygen-1.8.12.src.tar.gz) = 
> eS1AkcvfIoVJ/yAz3XH/fqUCnGtDYxfMXshm5xMC32w=
> -SIZE (doxygen-1.8.12.src.tar.gz) = 4880613
> +SHA256 (doxygen-1.8.13.src.tar.gz) = 
> r2Z4h716h9wNv5rI2GyWtVLfuMqceQ7Ry/+qYTFXP2s=
> +SIZE (doxygen-1.8.13.src.tar.gz) = 4893912



Re: UPDATE: devel/qt-creator

2017-04-05 Thread Rafael Sadowski
On Sat Feb 25, 2017 at 10:32:59AM +0100, Caspar Schutijser wrote:
> On Sat, Jan 28, 2017 at 09:25:14PM +0100, Rafael Sadowski wrote:
> > straightforward patch to 4.2.1.
> 
> Just tested the update on amd64, works fine for me.
> 
> Best regards,
> Caspar Schutijser
>
> *ping*
>
> https://marc.info/?l=openbsd-ports=148563513727735=2



Re: UPDATE: graphics/maim

2017-04-05 Thread Rafael Sadowski
*ping*

On Sat Feb 25, 2017 at 10:17:07AM +0100, Rafael Sadowski wrote:
> Hi All,
> 
> straightforward patch to 4.4.47. maim drops imlib2 dependence and switch
> to C++11. Tested on and64.
> 
> Regards,
> 
> Rafael Sadowski
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/graphics/maim/Makefile,v
> retrieving revision 1.12
> diff -u -p -u -p -r1.12 Makefile
> --- Makefile  25 Aug 2015 13:18:27 -  1.12
> +++ Makefile  25 Feb 2017 09:13:12 -
> @@ -1,10 +1,9 @@
>  # $OpenBSD: Makefile,v 1.12 2015/08/25 13:18:27 sthen Exp $
>  
> -V =  3.4.43
> +V =  4.4.47
>  COMMENT =desktop screenshot utility (make image)
>  DISTNAME =   maim-${V}
>  CATEGORIES = graphics x11
> -REVISION =   0
>  
>  GH_ACCOUNT = naelstrof
>  GH_PROJECT = maim
> @@ -13,11 +12,17 @@ GH_TAGNAME =  v${V}
>  # GPLv3+
>  PERMIT_PACKAGE_CDROM =   Yes
>  
> -WANTLIB += ICE Imlib2 SM X11 Xext Xfixes Xrandr c m stdc++
> +WANTLIB += GL ICE SM X11 Xext Xfixes Xrandr c jpeg m png pthread
> +WANTLIB += z
>  
> -MODULES =devel/cmake
> +MODULES =devel/cmake \
> + gcc4
>  
> -LIB_DEPENDS =graphics/imlib2
> +MODGCC4_LANGS =  c++
> +MODGCC4_ARCHS =  *
> +
> +LIB_DEPENDS +=   graphics/jpeg \
> + graphics/png
>  
>  RUN_DEPENDS =graphics/slop
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/graphics/maim/distinfo,v
> retrieving revision 1.8
> diff -u -p -u -p -r1.8 distinfo
> --- distinfo  23 Jun 2015 01:45:34 -  1.8
> +++ distinfo  25 Feb 2017 09:13:12 -
> @@ -1,2 +1,2 @@
> -SHA256 (maim-3.4.43.tar.gz) = 6i8st7Sqjw6cdG9OFCNjzq9olqoDaPMbrM/w9lpbW2s=
> -SIZE (maim-3.4.43.tar.gz) = 43670
> +SHA256 (maim-4.4.47.tar.gz) = cRhUUETduwghWPwnfBLSHVai9zZwOTVC0kYsVMIV2C0=
> +SIZE (maim-4.4.47.tar.gz) = 32382



Re: UPDATE: graphics/slop

2017-04-05 Thread Rafael Sadowski
*ping*

On Sat Feb 25, 2017 at 10:12:32AM +0100, Rafael Sadowski wrote:
> Hi All,
> 
> update to the last stable version. Testeda with graphics/maim 4.4.47
> (Separate e-mail) and directly on amd64.
> 
> Regards,
> 
> Rafael Sadowski
> 
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/graphics/slop/Makefile,v
> retrieving revision 1.9
> diff -u -p -u -p -r1.9 Makefile
> --- Makefile  25 Aug 2015 13:18:27 -  1.9
> +++ Makefile  25 Feb 2017 09:04:31 -
> @@ -1,10 +1,9 @@
>  # $OpenBSD: Makefile,v 1.9 2015/08/25 13:18:27 sthen Exp $
>  
> -V =  4.1.16
> +V =  5.3.21
>  COMMENT =query for a selection and print to stdout (select operation)
>  DISTNAME =   slop-${V}
>  CATEGORIES = graphics x11
> -REVISION =   0
>  
>  GH_ACCOUNT = naelstrof
>  GH_PROJECT = slop
> @@ -13,9 +12,18 @@ GH_TAGNAME =   v${V}
>  # GPLv3+
>  PERMIT_PACKAGE_CDROM =   Yes
>  
> -WANTLIB += ICE SM X11 Xext c m stdc++
> +WANTLIB += GL GLU ICE SM X11 Xext c m pthread
>  
> -MODULES =devel/cmake
> +MODULES =devel/cmake \
> + gcc4
> +
> +MODGCC4_LANGS =  c++
> +MODGCC4_ARCHS =  *
> +
> +BUILD_DEPENDS += graphics/glm
> +
> +CONFIGURE_ARGS +=-DCMAKE_INSTALL_MANDIR="${LOCALBASE}/man" \
> + -DCMAKE_COMPRESS_MAN:BOOL=Off
>  
>  NO_TEST =Yes
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/graphics/slop/distinfo,v
> retrieving revision 1.5
> diff -u -p -u -p -r1.5 distinfo
> --- distinfo  21 Apr 2015 02:07:38 -  1.5
> +++ distinfo  25 Feb 2017 09:04:31 -
> @@ -1,2 +1,2 @@
> -SHA256 (slop-4.1.16.tar.gz) = wp8MzbKLxYfJFOmfo/qgmyE129UZp1thSP2kLEFX6Rg=
> -SIZE (slop-4.1.16.tar.gz) = 35997
> +SHA256 (slop-5.3.21.tar.gz) = i05ca4PkBZV2rRLG/prxhGEyw9kOqLyUBKTZqaKenmI=
> +SIZE (slop-5.3.21.tar.gz) = 62617
> Index: patches/patch-CMakeLists_txt
> ===
> RCS file: patches/patch-CMakeLists_txt
> diff -N patches/patch-CMakeLists_txt
> --- /dev/null 1 Jan 1970 00:00:00 -
> +++ patches/patch-CMakeLists_txt  25 Feb 2017 09:04:31 -
> @@ -0,0 +1,28 @@
> +$OpenBSD$
> +
> +- The slop executable requires C++11
> +-- commit from upstream 1fd9f104c00f46061ae644b1ae10b22e5022d512
> +
> +--- CMakeLists.txt.orig  Thu Feb 23 12:54:04 2017
>  CMakeLists.txt   Fri Feb 24 06:38:36 2017
> +@@ -47,6 +47,8 @@ set_property(TARGET ${LIBRARY_NAME} PROPERTY CXX_STAND
> + add_executable(${EXECUTABLE_NAME} src/options.cpp
> +   src/main.cpp)
> + 
> ++set_property(TARGET ${EXECUTABLE_NAME} PROPERTY CXX_STANDARD 11)
> ++
> + set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/modules" )
> + 
> + find_package(GLM REQUIRED)
> +@@ -65,8 +67,9 @@ target_link_libraries(${EXECUTABLE_NAME} ${X11_LIBRARI
> +  ${GLM_LIBRARIES}
> +  ${OPENGL_LIBRARIES}
> +  ${GLX_LIBRARY}
> +- ${XEXT_LIBRARIES}
> +- ${LIBRARY_NAME})
> ++ ${XEXT_LIBRARIES})
> ++
> ++target_link_libraries(${EXECUTABLE_NAME} ${LIBRARY_NAME})
> + 
> + install( TARGETS ${EXECUTABLE_NAME} DESTINATION 
> "${CMAKE_INSTALL_PREFIX}/bin" )
> + install( TARGETS ${LIBRARY_NAME} DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" )
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/graphics/slop/pkg/PLIST,v
> retrieving revision 1.1.1.1
> diff -u -p -u -p -r1.1.1.1 PLIST
> --- pkg/PLIST 16 Nov 2014 16:48:56 -  1.1.1.1
> +++ pkg/PLIST 25 Feb 2017 09:04:31 -
> @@ -1,2 +1,5 @@
>  @comment $OpenBSD: PLIST,v 1.1.1.1 2014/11/16 16:48:56 bcallah Exp $
>  @bin bin/slop
> +include/slop.hpp
> +lib/libslopy.so
> +@man man/man1/slop.1



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Frederic Cambus
CVSROOT:/cvs
Module name:ports
Changes by: fcam...@cvs.openbsd.org 2017/04/05 14:03:38

Modified files:
devel/quirks   : Makefile 
devel/quirks/files: Quirks.pm 

Log message:
Register removal of spectemu.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Frederic Cambus
CVSROOT:/cvs
Module name:ports
Changes by: fcam...@cvs.openbsd.org 2017/04/05 13:57:22

Modified files:
emulators  : Makefile 
Removed files:
emulators/spectemu: Makefile distinfo 
emulators/spectemu/patches: patch-Makefile_in patch-README 
patch-spmain_c patch-spsound_c 
emulators/spectemu/pkg: DESCR PLIST 

Log message:
Remove emulators/spectemu.

The version we have in ports (0.94) is from 1998, and has been marked as
BROKEN since July 2015. The most recent release (0.99.3) is from 2004.

We have an up to date port for emulators/fuse, which emulates the 48K
and more, and is still being maintained.

OK jca@, sthen@, benoit@



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Juan Francisco Cantero Hurtado
CVSROOT:/cvs
Module name:ports
Changes by: juan...@cvs.openbsd.org 2017/04/05 13:45:44

Modified files:
sysutils/udfclient: Makefile distinfo 

Log message:
Update to udfclient 0.8.8. From Josh Grosse (MAINTAINER).



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Frederic Cambus
CVSROOT:/cvs
Module name:ports
Changes by: fcam...@cvs.openbsd.org 2017/04/05 13:43:15

Modified files:
net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.



Update lang/ruby/2.3 2.3.3 -> 2.3.4

2017-04-05 Thread Jeremy Evans
Simple update to the latest version of ruby 2.3.  Release announcement
at https://www.ruby-lang.org/en/news/2017/03/30/ruby-2-3-4-released/

Shared lib major bump due to rb_method_entry_complement_defined_class 
function argument added.

Tested on amd64.  Will be committing in a couple days unless I hear
objections.

Thanks,
Jeremy

Index: Makefile
===
RCS file: /cvs/ports/lang/ruby/2.3/Makefile,v
retrieving revision 1.16
diff -u -p -r1.16 Makefile
--- Makefile21 Feb 2017 16:45:36 -  1.16
+++ Makefile4 Apr 2017 21:41:12 -
@@ -5,11 +5,11 @@ COMMENT-gdbm =gdbm interface for ruby
 COMMENT-tk =   tk interface for ruby
 COMMENT-ri_docs =  ri documentation files for ruby
 
-VERSION =  2.3.3
+VERSION =  2.3.4
 RUBYLIBREV =   2.3
 DISTNAME = ruby-${VERSION}
 
-SHARED_LIBS =  ruby23  0.1
+SHARED_LIBS =  ruby23  1.0
 PKGNAME-main = ruby-${VERSION}
 PKGNAME-gdbm = ruby23-gdbm-${VERSION}
 PKGNAME-tk =   ruby23-tk-${VERSION}
Index: distinfo
===
RCS file: /cvs/ports/lang/ruby/2.3/distinfo,v
retrieving revision 1.4
diff -u -p -r1.4 distinfo
--- distinfo23 Nov 2016 15:59:32 -  1.4
+++ distinfo4 Apr 2017 21:41:38 -
@@ -1,2 +1,2 @@
-SHA256 (ruby-2.3.3.tar.gz) = JBQIyMVVsliEY2iDCgYUbkhJodWNyvaxSjtqcwWBFbc=
-SIZE (ruby-2.3.3.tar.gz) = 17813577
+SHA256 (ruby-2.3.4.tar.gz) = mOGPF8kzMY0OMv7TrqZ+ME8XTQMXCjj9kgxPvkn+wMM=
+SIZE (ruby-2.3.4.tar.gz) = 17820518
Index: pkg/PLIST-ri_docs
===
RCS file: /cvs/ports/lang/ruby/2.3/pkg/PLIST-ri_docs,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST-ri_docs
--- pkg/PLIST-ri_docs   19 Nov 2016 04:56:00 -  1.3
+++ pkg/PLIST-ri_docs   4 Apr 2017 22:10:48 -
@@ -2034,6 +2034,7 @@ share/ri/${RUBYLIBREV}/system/Float/zero
 share/ri/${RUBYLIBREV}/system/FloatDomainError/
 share/ri/${RUBYLIBREV}/system/FloatDomainError/cdesc-FloatDomainError.ri
 share/ri/${RUBYLIBREV}/system/Forwardable/
+share/ri/${RUBYLIBREV}/system/Forwardable/_delegator_method-c.ri
 share/ri/${RUBYLIBREV}/system/Forwardable/cdesc-Forwardable.ri
 share/ri/${RUBYLIBREV}/system/Forwardable/debug-c.ri
 share/ri/${RUBYLIBREV}/system/Forwardable/def_delegator-i.ri
@@ -13028,14 +13029,6 @@ share/ri/${RUBYLIBREV}/system/SimpleDele
 share/ri/${RUBYLIBREV}/system/SimpleDelegator/__getobj__-i.ri
 share/ri/${RUBYLIBREV}/system/SimpleDelegator/__setobj__-i.ri
 share/ri/${RUBYLIBREV}/system/SimpleDelegator/cdesc-SimpleDelegator.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/
-share/ri/${RUBYLIBREV}/system/SingleForwardable/cdesc-SingleForwardable.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/def_delegator-i.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/def_delegators-i.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/def_single_delegator-i.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/def_single_delegators-i.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/delegate-i.ri
-share/ri/${RUBYLIBREV}/system/SingleForwardable/single_delegate-i.ri
 share/ri/${RUBYLIBREV}/system/Singleton/
 share/ri/${RUBYLIBREV}/system/Singleton/_dump-i.ri
 share/ri/${RUBYLIBREV}/system/Singleton/_load-c.ri



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Jeremie Courreges-Anglas
CVSROOT:/cvs
Module name:ports
Changes by: j...@cvs.openbsd.org2017/04/05 08:52:13

Modified files:
net/samba  : Tag: OPENBSD_6_0 Makefile 
net/samba/patches: Tag: OPENBSD_6_0 patch-source3_smbd_open_c 
Added files:
net/samba/patches: Tag: OPENBSD_6_0 
   patch-source3_smbd_filename_c 
   patch-source3_smbd_proto_h 
   patch-source3_smbd_vfs_c 

Log message:
Fix a regression introduced by the fix for CVE-2017-2619

* BUG 12721: Fix regression with "follow symlinks = no"
Patch adapted from samba-4.4.13.  Tests & ok Ian



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2017/04/05 08:39:39

Modified files:
sysutils/packer: Makefile distinfo 

Log message:
Update to packer-1.0.0.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:ports
Changes by: bl...@cvs.openbsd.org   2017/04/05 07:36:34

Modified files:
security/botan : Makefile distinfo 

Log message:
update botan to 1.10.16
CVE-2017-2801



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 07:29:10

Modified files:
security/py-artifacts: Makefile distinfo 

Log message:
update to 20161022.
inputs and ok benoit@.



Re: UPDATE: print/gl2ps

2017-04-05 Thread Ingo Feinerer
On Wed, Apr 05, 2017 at 02:32:20PM +0300, Paul Irofti wrote:
> On Wed, Apr 05, 2017 at 01:01:52PM +0200, Ingo Feinerer wrote:
> > Update print/gl2ps 1.3.9 -> 1.4.0
> > (ChangeLog at http://www.geuz.org/gl2ps/#tth_sEc8)
> > 
> > OK?
> 
> I am not a master in library versioning, but from the ChangeLog it seems
> you need a major bump here: modified existing functions and added new
> ones

I checked with

nm -g /usr/local/lib/libgl2ps.so.0.0 | cut -c10- | grep -e^T
(as outlined at
https://www.openbsd.org/faq/ports/specialtopics.html#SharedLibs)

for both old and new:

$ diff old.txt new.txt
30a31
> T gl2psAddPolyPrimitive
39a41
> T gl2psForceRasterPos
43a46,47
> T gl2psLineCap
> T gl2psLineJoin
47a52
> T gl2psSpecialColor

The new functions correspond to what is mentioned in the ChangeLog.
gl2psBeginPage is the only function missing mentioned there, so I
manually checked the signature and it did not change.

So as only new functions are added, but no function seems to be modified
or removed, I just bumped the minor version number.

Best regards,
Ingo



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:ports
Changes by: bl...@cvs.openbsd.org   2017/04/05 06:41:34

Modified files:
textproc/p5-Regexp-Common: Makefile distinfo 

Log message:
update p5-Regexp-Common to 2017040401



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:ports
Changes by: bl...@cvs.openbsd.org   2017/04/05 06:20:53

Modified files:
converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 3.0231



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:ports
Changes by: bl...@cvs.openbsd.org   2017/04/05 06:19:02

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

Log message:
update p5-Test-Regexp to 2017040101



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Marc Espie
CVSROOT:/cvs
Module name:ports
Changes by: es...@cvs.openbsd.org   2017/04/05 06:08:20

Added files:
infrastructure/bin: extract-dependencies 

Log message:
resurrect extract-dependencies, it's actually a helper for show-required-by
which I forgot. found out by kili@
(no real impact for release since ports work should happen on current anyway)



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 05:56:51

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

Log message:
update libregf to 20170130.
ok benoit@.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 05:45:20

Modified files:
sysutils/libqcow: Makefile distinfo 

Log message:
update libqcow to 20170222.
ok benoit@.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 05:44:45

Modified files:
sysutils/libvhdi: Makefile distinfo 

Log message:
update libvhdi to 20170223.
ok benoit@.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 05:44:11

Modified files:
sysutils/libesedb: Makefile distinfo 

Log message:
update liesedb to 20170121.
ok benoit@.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 05:43:23

Modified files:
lang/python/3.5: Makefile distinfo 
lang/python/3.5/pkg: PLIST-idle PLIST-main PLIST-tests 

Log message:
update to 3.5.3.
more information: 
https://docs.python.org/3.5/whatsnew/changelog.html#python-3-5-3
ok benoit@.



Re: UPDATE: print/gl2ps

2017-04-05 Thread Paul Irofti
On Wed, Apr 05, 2017 at 01:01:52PM +0200, Ingo Feinerer wrote:
> Update print/gl2ps 1.3.9 -> 1.4.0
> (ChangeLog at http://www.geuz.org/gl2ps/#tth_sEc8)
> 
> OK?

I am not a master in library versioning, but from the ChangeLog it seems
you need a major bump here: modified existing functions and added new
ones

Otherwise looks okay to me.

> 
> Best regards,
> Ingo
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/print/gl2ps/Makefile,v
> retrieving revision 1.3
> diff -u -p -r1.3 Makefile
> --- Makefile  23 Oct 2015 15:27:16 -  1.3
> +++ Makefile  5 Apr 2017 10:57:30 -
> @@ -2,9 +2,9 @@
>  
>  COMMENT =OpenGL to PostScript printing library
>  
> -DISTNAME =   gl2ps-1.3.9
> +DISTNAME =   gl2ps-1.4.0
>  
> -SHARED_LIBS =gl2ps   0.0 # 1.3
> +SHARED_LIBS =gl2ps   0.1 # 1.4
>  
>  CATEGORIES = print
>  
> Index: distinfo
> ===
> RCS file: /cvs/ports/print/gl2ps/distinfo,v
> retrieving revision 1.2
> diff -u -p -r1.2 distinfo
> --- distinfo  23 Oct 2015 15:27:16 -  1.2
> +++ distinfo  5 Apr 2017 10:57:30 -
> @@ -1,2 +1,2 @@
> -SHA256 (gl2ps-1.3.9.tgz) = imgL/xIN+LzXivrCds3DgEH+1hfychut4BITNivMNkA=
> -SIZE (gl2ps-1.3.9.tgz) = 294907
> +SHA256 (gl2ps-1.4.0.tgz) = A8tebfzYcYPzubo7IvBM0VUJavgeUpiMw32Njv5s8eI=
> +SIZE (gl2ps-1.4.0.tgz) = 300339



UPDATE: print/gl2ps

2017-04-05 Thread Ingo Feinerer
Update print/gl2ps 1.3.9 -> 1.4.0
(ChangeLog at http://www.geuz.org/gl2ps/#tth_sEc8)

OK?

Best regards,
Ingo

Index: Makefile
===
RCS file: /cvs/ports/print/gl2ps/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile23 Oct 2015 15:27:16 -  1.3
+++ Makefile5 Apr 2017 10:57:30 -
@@ -2,9 +2,9 @@
 
 COMMENT =  OpenGL to PostScript printing library
 
-DISTNAME = gl2ps-1.3.9
+DISTNAME = gl2ps-1.4.0
 
-SHARED_LIBS =  gl2ps   0.0 # 1.3
+SHARED_LIBS =  gl2ps   0.1 # 1.4
 
 CATEGORIES =   print
 
Index: distinfo
===
RCS file: /cvs/ports/print/gl2ps/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo23 Oct 2015 15:27:16 -  1.2
+++ distinfo5 Apr 2017 10:57:30 -
@@ -1,2 +1,2 @@
-SHA256 (gl2ps-1.3.9.tgz) = imgL/xIN+LzXivrCds3DgEH+1hfychut4BITNivMNkA=
-SIZE (gl2ps-1.3.9.tgz) = 294907
+SHA256 (gl2ps-1.4.0.tgz) = A8tebfzYcYPzubo7IvBM0VUJavgeUpiMw32Njv5s8eI=
+SIZE (gl2ps-1.4.0.tgz) = 300339



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Stuart Henderson
CVSROOT:/cvs
Module name:ports
Changes by: st...@cvs.openbsd.org   2017/04/05 04:27:36

Modified files:
telephony/asterisk: Makefile distinfo 

Log message:
update to asterisk-13.14.1

http://downloads.digium.com/pub/security/AST-2017-001.html

CDR: Protect from data overflow in ast_cdr_setuserfield.
ast_cdr_setuserfield wrote to a fixed length field using strcpy.
This could result in a buffer overrun when called from chan_sip or
func_cdr. This patch adds a maximum bytes written to the field by using
ast_copy_string instead.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Juan Francisco Cantero Hurtado
CVSROOT:/cvs
Module name:ports
Changes by: juan...@cvs.openbsd.org 2017/04/05 04:02:06

Modified files:
lang/bacon : Makefile distinfo 

Log message:
Update to bacon 3.5.3.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Landry Breuil
CVSROOT:/cvs
Module name:ports
Changes by: lan...@cvs.openbsd.org  2017/04/05 03:46:18

Modified files:
mail/mozilla-thunderbird: Makefile distinfo 
mail/mozilla-thunderbird/patches: 
  patch-mail_installer_Makefile_in 
  
patch-mozilla_js_src_jit_ProcessExecutableMemory_cpp 
  
patch-mozilla_security_manager_pki_resources_content_exceptionDialog_js 
  
patch-mozilla_storage_mozStorageConnection_cpp 
mail/mozilla-thunderbird/pkg: PLIST-lightning PLIST-main 
mail/thunderbird-i18n: Makefile.inc distinfo 
Removed files:
mail/mozilla-thunderbird/patches: 
  
patch-mozilla_js_src_jit_ProcessExecutableMemory_h 
  
patch-mozilla_toolkit_components_protobuf_src_google_protobuf_stubs_atomicops_h 

Log message:
Update to thunderbird 52.0/lightning 5.4.

See https://www.mozilla.org/en-US/thunderbird/52.0/releasenotes/

Note that it now defaults to use Gtk+3.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2017/04/05 03:34:39

Modified files:
www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.16.1.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Kirill Bychkov
CVSROOT:/cvs
Module name:ports
Changes by: ki...@cvs.openbsd.org   2017/04/05 02:02:05

Modified files:
comms/gammu: Makefile distinfo 
comms/gammu/patches: patch-CMakeLists_txt 

Log message:
Update to gammu-1.38.2.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2017/04/05 01:52:00

Modified files:
devel/glib2mm  : Makefile distinfo 

Log message:
Update to glib2mm-2.50.1.



[UPDATE] sysutils/libregf

2017-04-05 Thread Remi Pointel

Hi,

this is the diff to update libregf to latest release.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/sysutils/libregf/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 Makefile
--- Makefile	13 Feb 2017 19:43:16 -	1.1.1.1
+++ Makefile	5 Apr 2017 07:26:35 -
@@ -2,7 +2,7 @@
 
 COMMENT =	library and tools to access the Windows NT Registry File
 
-VERSION = 	20160424
+VERSION = 	20170130
 DISTNAME =	libregf-alpha-${VERSION}
 PKGNAME =	${DISTNAME:S/-alpha//}
 
Index: distinfo
===
RCS file: /cvs/ports/sysutils/libregf/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 distinfo
--- distinfo	13 Feb 2017 19:43:16 -	1.1.1.1
+++ distinfo	5 Apr 2017 07:26:35 -
@@ -1,2 +1,2 @@
-SHA256 (libregf-alpha-20160424.tar.gz) = XtjsEeFH7A15VHLDnBuoW4AjrXZ3Kgu5WsKJiSJiv/A=
-SIZE (libregf-alpha-20160424.tar.gz) = 1663062
+SHA256 (libregf-alpha-20170130.tar.gz) = K0PIU0K4shgoiEc8aocWnfKab1WNQ4jFCoTy2tseZBk=
+SIZE (libregf-alpha-20170130.tar.gz) = 1526738
Index: pkg/PLIST
===
RCS file: /cvs/ports/sysutils/libregf/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 PLIST
--- pkg/PLIST	13 Feb 2017 19:43:16 -	1.1.1.1
+++ pkg/PLIST	5 Apr 2017 07:26:35 -
@@ -2,7 +2,6 @@
 @bin bin/regfexport
 @bin bin/regfinfo
 @bin bin/regfmount
-@bin bin/regfreport
 include/libregf/
 include/libregf.h
 include/libregf/codepage.h


[UPDATE] security/py-artifacts

2017-04-05 Thread Remi Pointel

Hi,

this is the diff to update py-artifacts to latest release.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/security/py-artifacts/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 Makefile
--- Makefile	22 Jan 2017 07:50:49 -	1.1.1.1
+++ Makefile	5 Apr 2017 07:29:28 -
@@ -2,7 +2,7 @@
 
 COMMENT =	ForensicArtifacts.com Artifact Repository
 
-MODPY_EGG_VERSION = 20160918
+MODPY_EGG_VERSION = 20161022
 DISTNAME =	artifacts-${MODPY_EGG_VERSION}
 PKGNAME =	py-${DISTNAME}
 
Index: distinfo
===
RCS file: /cvs/ports/security/py-artifacts/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 distinfo
--- distinfo	22 Jan 2017 07:50:49 -	1.1.1.1
+++ distinfo	5 Apr 2017 07:29:28 -
@@ -1,2 +1,2 @@
-SHA256 (artifacts-20160918.tar.gz) = TW3zqOcRhPGJQX0ncXYV1Vg4nQvwgwY6ARuXxKsel3w=
-SIZE (artifacts-20160918.tar.gz) = 49378
+SHA256 (artifacts-20161022.tar.gz) = Xyb5e18Pnw7AAgt//0S1F+mt/lXpdfCwWLqETJ1QbiI=
+SIZE (artifacts-20161022.tar.gz) = 49375
Index: pkg/PLIST
===
RCS file: /cvs/ports/security/py-artifacts/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 PLIST
--- pkg/PLIST	22 Jan 2017 07:50:49 -	1.1.1.1
+++ pkg/PLIST	5 Apr 2017 07:29:28 -
@@ -9,22 +9,21 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/artifacts-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/requires.txt
 lib/python${MODPY_VERSION}/site-packages/artifacts-${MODPY_EGG_VERSION}-py${MODPY_VERSION}.egg-info/top_level.txt
 lib/python${MODPY_VERSION}/site-packages/artifacts/__init__.py
-${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}/
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}artifact.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}definitions.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}errors.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}reader.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}registry.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}source_type.${MODPY_PYC_MAGIC_TAG}pyc
-lib/python${MODPY_VERSION}/site-packages/artifacts/${MODPY_PYCACHE}writer.${MODPY_PYC_MAGIC_TAG}pyc
+lib/python${MODPY_VERSION}/site-packages/artifacts/__init__.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/artifact.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/artifact.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/definitions.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/definitions.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/errors.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/errors.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/reader.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/reader.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/registry.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/registry.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/source_type.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/source_type.pyc
 lib/python${MODPY_VERSION}/site-packages/artifacts/writer.py
+lib/python${MODPY_VERSION}/site-packages/artifacts/writer.pyc
 share/artifacts/
 share/artifacts/antivirus.yaml
 share/artifacts/applications.yaml


[UPDATE] sysutils/libqcow

2017-04-05 Thread Remi Pointel

Hi,

this is the diff to update libqcow to latest release.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/sysutils/libqcow/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 Makefile
--- Makefile	13 Feb 2017 19:42:15 -	1.1.1.1
+++ Makefile	5 Apr 2017 07:25:44 -
@@ -2,7 +2,7 @@
 
 COMMENT =	library and tools to access the QEMU Copy-On-Write (QCOW)
 
-VERSION = 	20160123
+VERSION = 	20170222
 DISTNAME =	libqcow-alpha-${VERSION}
 PKGNAME =	${DISTNAME:S/-alpha//}
 
Index: distinfo
===
RCS file: /cvs/ports/sysutils/libqcow/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 distinfo
--- distinfo	13 Feb 2017 19:42:15 -	1.1.1.1
+++ distinfo	5 Apr 2017 07:25:44 -
@@ -1,2 +1,2 @@
-SHA256 (libqcow-alpha-20160123.tar.gz) = qUh7MiHr7Z1wC2v5ZpCj73q6+IpwXEF4Pv6hGlAh+6A=
-SIZE (libqcow-alpha-20160123.tar.gz) = 1419626
+SHA256 (libqcow-alpha-20170222.tar.gz) = i0o/l7MJHLjcSZCgOhycQjheN9h266bmUTsekQTpUS0=
+SIZE (libqcow-alpha-20170222.tar.gz) = 1426203


[UPDATE] sysutils/libvhdi

2017-04-05 Thread Remi Pointel

Hi,

this is the diff to update libvhdi to latest release.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/sysutils/libvhdi/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 Makefile
--- Makefile	14 Feb 2017 20:25:58 -	1.1.1.1
+++ Makefile	5 Apr 2017 07:22:54 -
@@ -2,7 +2,7 @@
 
 COMMENT =	library and tools to access the VHD image format
 
-VERSION = 	20160424
+VERSION = 	20170223
 DISTNAME =	libvhdi-alpha-${VERSION}
 PKGNAME =	${DISTNAME:S/-alpha//}
 
Index: distinfo
===
RCS file: /cvs/ports/sysutils/libvhdi/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 distinfo
--- distinfo	14 Feb 2017 20:25:58 -	1.1.1.1
+++ distinfo	5 Apr 2017 07:22:54 -
@@ -1,2 +1,2 @@
-SHA256 (libvhdi-alpha-20160424.tar.gz) = rdzjcmDhMNUmb73q4TvMKdzn0VGsx09LpWPdwXsyTjo=
-SIZE (libvhdi-alpha-20160424.tar.gz) = 1409910
+SHA256 (libvhdi-alpha-20170223.tar.gz) = Wp/tqrUaFKkjIM1nKkig+gsBS5ddXc6l1OlEsyvxSY0=
+SIZE (libvhdi-alpha-20170223.tar.gz) = 1410977


[UPDATE] sysutils/libesedb

2017-04-05 Thread Remi Pointel

Hi,

this is the diff to update libesedb to latest release.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/sysutils/libesedb/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 Makefile
--- Makefile	13 Feb 2017 19:45:46 -	1.1.1.1
+++ Makefile	5 Apr 2017 07:18:59 -
@@ -2,7 +2,7 @@
 
 COMMENT =	library and tools to access the ESE and EDB format
 
-VERSION = 	20160622
+VERSION = 	20170121
 DISTNAME =	libesedb-experimental-${VERSION}
 PKGNAME =	${DISTNAME:S/-experimental//}
 
Index: distinfo
===
RCS file: /cvs/ports/sysutils/libesedb/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -u -p -r1.1.1.1 distinfo
--- distinfo	13 Feb 2017 19:45:46 -	1.1.1.1
+++ distinfo	5 Apr 2017 07:18:59 -
@@ -1,2 +1,2 @@
-SHA256 (libesedb-experimental-20160622.tar.gz) = EmJlfGOHWOk8qHfE+px5WvCilnDbpfS8UTHv60+gY68=
-SIZE (libesedb-experimental-20160622.tar.gz) = 1766643
+SHA256 (libesedb-experimental-20170121.tar.gz) = tvyzss2uwVIEll46E5QHkjr1MPRsprxMWQA/tJcpMUA=
+SIZE (libesedb-experimental-20170121.tar.gz) = 1782769


CVS: cvs.openbsd.org: ports

2017-04-05 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2017/04/05 01:35:08

Modified files:
sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.11.71.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Antoine Jacoutot
CVSROOT:/cvs
Module name:ports
Changes by: ajacou...@cvs.openbsd.org   2017/04/05 01:34:48

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

Log message:
Update to py-botocore-1.5.35.



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 01:13:55

Modified files:
security/pdf-parser: Makefile distinfo 

Log message:
update pdf-parser to 0.6.7.
more information: 
https://blog.didierstevens.com/2016/12/28/update-pdf-parser-version-0-6-7/



CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 01:08:51

Modified files:
security/oledump: Makefile distinfo 
security/oledump/pkg: PLIST 

Log message:
minor update to 0.0.27.



[UPDATE] Python 3.4.6

2017-04-05 Thread Remi Pointel

Hi,

this is the diff to update to Python 3.4.6.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/lang/python/3.4/Makefile,v
retrieving revision 1.15
diff -u -p -u -p -r1.15 Makefile
--- Makefile	20 Feb 2017 11:04:27 -	1.15
+++ Makefile	5 Apr 2017 07:04:57 -
@@ -6,8 +6,7 @@
 # Python itself.
 
 VERSION =		3.4
-PATCHLEVEL =		.5
-REVISION =		2
+PATCHLEVEL =		.6
 SHARED_LIBS =		python3.4m 1.0
 VERSION_SPEC =		>=3.4,<3.5
 
Index: distinfo
===
RCS file: /cvs/ports/lang/python/3.4/distinfo,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 distinfo
--- distinfo	3 Jul 2016 18:16:00 -	1.6
+++ distinfo	5 Apr 2017 07:04:57 -
@@ -1,2 +1,2 @@
-SHA256 (Python-3.4.5.tgz) = mXrKTdhpLzyVRlij2xHB0IYry/jq3WoWR0brM9MXwDQ=
-SIZE (Python-3.4.5.tgz) = 19611207
+SHA256 (Python-3.4.6.tgz) = /lnaztmVSdHUUnJ8BQrkhhaelxaokM/7DUaLN22Ra0g=
+SIZE (Python-3.4.6.tgz) = 19631408
Index: pkg/PLIST-main
===
RCS file: /cvs/ports/lang/python/3.4/pkg/PLIST-main,v
retrieving revision 1.9
diff -u -p -u -p -r1.9 PLIST-main
--- pkg/PLIST-main	3 Jul 2016 18:16:00 -	1.9
+++ pkg/PLIST-main	5 Apr 2017 07:04:57 -
@@ -1601,8 +1601,8 @@ lib/python3.4/ensurepip/__pycache__/__ma
 lib/python3.4/ensurepip/__pycache__/_uninstall.cpython-34.pyc
 lib/python3.4/ensurepip/__pycache__/_uninstall.cpython-34.pyo
 lib/python3.4/ensurepip/_bundled/
-lib/python3.4/ensurepip/_bundled/pip-8.1.1-py2.py3-none-any.whl
-lib/python3.4/ensurepip/_bundled/setuptools-20.10.1-py2.py3-none-any.whl
+lib/python3.4/ensurepip/_bundled/pip-9.0.1-py2.py3-none-any.whl
+lib/python3.4/ensurepip/_bundled/setuptools-28.8.0-py2.py3-none-any.whl
 lib/python3.4/ensurepip/_uninstall.py
 lib/python3.4/enum.py
 lib/python3.4/filecmp.py
@@ -1753,9 +1753,9 @@ lib/python3.4/lib-dynload/xxlimited.so
 lib/python3.4/lib-dynload/zlib.so
 lib/python3.4/lib2to3/
 lib/python3.4/lib2to3/Grammar.txt
-lib/python3.4/lib2to3/Grammar3.4.5.final.0.pickle
+lib/python3.4/lib2to3/Grammar3.4.6.final.0.pickle
 lib/python3.4/lib2to3/PatternGrammar.txt
-lib/python3.4/lib2to3/PatternGrammar3.4.5.final.0.pickle
+lib/python3.4/lib2to3/PatternGrammar3.4.6.final.0.pickle
 lib/python3.4/lib2to3/__init__.py
 lib/python3.4/lib2to3/__main__.py
 lib/python3.4/lib2to3/__pycache__/


CVS: cvs.openbsd.org: ports

2017-04-05 Thread Remi Pointel
CVSROOT:/cvs
Module name:ports
Changes by: rpoin...@cvs.openbsd.org2017/04/05 01:00:37

Modified files:
lang/python/3.6: Makefile distinfo 
lang/python/3.6/pkg: PLIST-main PLIST-tests 
Removed files:
lang/python/3.6/patches: patch-Python_random_c 

Log message:
update to python 3.6.1.
release notes: https://docs.python.org/3.6/whatsnew/changelog.html#python-3-6-1
ok benoit@.



[UPDATE] Python 3.5.3

2017-04-05 Thread Remi Pointel

Hi,

this diff updates Python to 3.5.3.

Ok?

Cheers,

Remi.
Index: Makefile
===
RCS file: /cvs/ports/lang/python/3.5/Makefile,v
retrieving revision 1.12
diff -u -p -u -p -r1.12 Makefile
--- Makefile	20 Feb 2017 11:04:27 -	1.12
+++ Makefile	5 Apr 2017 06:58:22 -
@@ -6,8 +6,7 @@
 # Python itself.
 
 VERSION =		3.5
-PATCHLEVEL =		.2
-REVISION =		2
+PATCHLEVEL =		.3
 SHARED_LIBS =		python3.5m 0.0
 VERSION_SPEC =		>=3.5,<3.6
 
Index: distinfo
===
RCS file: /cvs/ports/lang/python/3.5/distinfo,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 distinfo
--- distinfo	3 Jul 2016 18:16:00 -	1.3
+++ distinfo	5 Apr 2017 06:58:22 -
@@ -1,2 +1,2 @@
-SHA256 (Python-3.5.2.tgz) = FSS4QOQs87kJ6PjfZ8FyQBLH3H+dB21P7vLT7/Ax6KA=
-SIZE (Python-3.5.2.tgz) = 20566643
+SHA256 (Python-3.5.3.tgz) = 2IkLhNdzzXBZ5Zfb76UQNA3oM27JuekDK/Aw8ZKRVlo=
+SIZE (Python-3.5.3.tgz) = 20656090
Index: pkg/PLIST-idle
===
RCS file: /cvs/ports/lang/python/3.5/pkg/PLIST-idle,v
retrieving revision 1.4
diff -u -p -u -p -r1.4 PLIST-idle
--- pkg/PLIST-idle	3 Jul 2016 18:16:00 -	1.4
+++ pkg/PLIST-idle	5 Apr 2017 06:58:22 -
@@ -45,6 +45,7 @@ lib/python3.5/idlelib/IdleHistory.py
 lib/python3.5/idlelib/MultiCall.py
 lib/python3.5/idlelib/MultiStatusBar.py
 lib/python3.5/idlelib/NEWS.txt
+lib/python3.5/idlelib/NEWS2x.txt
 lib/python3.5/idlelib/ObjectBrowser.py
 lib/python3.5/idlelib/OutputWindow.py
 lib/python3.5/idlelib/ParenMatch.py
@@ -319,6 +320,9 @@ lib/python3.5/idlelib/idle_test/__pycach
 lib/python3.5/idlelib/idle_test/__pycache__/test_grep.cpython-35.opt-1.pyc
 lib/python3.5/idlelib/idle_test/__pycache__/test_grep.cpython-35.opt-2.pyc
 lib/python3.5/idlelib/idle_test/__pycache__/test_grep.cpython-35.pyc
+lib/python3.5/idlelib/idle_test/__pycache__/test_help_about.cpython-35.opt-1.pyc
+lib/python3.5/idlelib/idle_test/__pycache__/test_help_about.cpython-35.opt-2.pyc
+lib/python3.5/idlelib/idle_test/__pycache__/test_help_about.cpython-35.pyc
 lib/python3.5/idlelib/idle_test/__pycache__/test_hyperparser.cpython-35.opt-1.pyc
 lib/python3.5/idlelib/idle_test/__pycache__/test_hyperparser.cpython-35.opt-2.pyc
 lib/python3.5/idlelib/idle_test/__pycache__/test_hyperparser.cpython-35.pyc
@@ -381,6 +385,7 @@ lib/python3.5/idlelib/idle_test/test_edi
 lib/python3.5/idlelib/idle_test/test_editor.py
 lib/python3.5/idlelib/idle_test/test_formatparagraph.py
 lib/python3.5/idlelib/idle_test/test_grep.py
+lib/python3.5/idlelib/idle_test/test_help_about.py
 lib/python3.5/idlelib/idle_test/test_hyperparser.py
 lib/python3.5/idlelib/idle_test/test_idlehistory.py
 lib/python3.5/idlelib/idle_test/test_io.py
Index: pkg/PLIST-main
===
RCS file: /cvs/ports/lang/python/3.5/pkg/PLIST-main,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 PLIST-main
--- pkg/PLIST-main	3 Jul 2016 18:16:00 -	1.6
+++ pkg/PLIST-main	5 Apr 2017 06:58:23 -
@@ -2151,8 +2151,8 @@ lib/python3.5/ensurepip/__pycache__/_uni
 lib/python3.5/ensurepip/__pycache__/_uninstall.cpython-35.opt-2.pyc
 lib/python3.5/ensurepip/__pycache__/_uninstall.cpython-35.pyc
 lib/python3.5/ensurepip/_bundled/
-lib/python3.5/ensurepip/_bundled/pip-8.1.1-py2.py3-none-any.whl
-lib/python3.5/ensurepip/_bundled/setuptools-20.10.1-py2.py3-none-any.whl
+lib/python3.5/ensurepip/_bundled/pip-9.0.1-py2.py3-none-any.whl
+lib/python3.5/ensurepip/_bundled/setuptools-28.8.0-py2.py3-none-any.whl
 lib/python3.5/ensurepip/_uninstall.py
 lib/python3.5/enum.py
 lib/python3.5/filecmp.py
@@ -2325,9 +2325,9 @@ lib/python3.5/lib-dynload/xxlimited.so
 lib/python3.5/lib-dynload/zlib.so
 lib/python3.5/lib2to3/
 lib/python3.5/lib2to3/Grammar.txt
-lib/python3.5/lib2to3/Grammar3.5.2.final.0.pickle
+lib/python3.5/lib2to3/Grammar3.5.3.final.0.pickle
 lib/python3.5/lib2to3/PatternGrammar.txt
-lib/python3.5/lib2to3/PatternGrammar3.5.2.final.0.pickle
+lib/python3.5/lib2to3/PatternGrammar3.5.3.final.0.pickle
 lib/python3.5/lib2to3/__init__.py
 lib/python3.5/lib2to3/__main__.py
 lib/python3.5/lib2to3/__pycache__/
@@ -2386,9 +2386,6 @@ lib/python3.5/lib2to3/fixes/__pycache__/
 lib/python3.5/lib2to3/fixes/__pycache__/fix_buffer.cpython-35.opt-1.pyc
 lib/python3.5/lib2to3/fixes/__pycache__/fix_buffer.cpython-35.opt-2.pyc
 lib/python3.5/lib2to3/fixes/__pycache__/fix_buffer.cpython-35.pyc
-lib/python3.5/lib2to3/fixes/__pycache__/fix_callable.cpython-35.opt-1.pyc
-lib/python3.5/lib2to3/fixes/__pycache__/fix_callable.cpython-35.opt-2.pyc
-lib/python3.5/lib2to3/fixes/__pycache__/fix_callable.cpython-35.pyc
 lib/python3.5/lib2to3/fixes/__pycache__/fix_dict.cpython-35.opt-1.pyc
 lib/python3.5/lib2to3/fixes/__pycache__/fix_dict.cpython-35.opt-2.pyc
 lib/python3.5/lib2to3/fixes/__pycache__/fix_dict.cpython-35.pyc
@@ -2537,7 +2534,6 @@ lib/python3.5/lib2to3/fixes/fix_apply.py
 

Re: UPDATE: devel/mercurial 4.1.1

2017-04-05 Thread Remi Pointel

On 03/27/17 04:25, Juan Francisco Cantero Hurtado wrote:

OK? Objections?. 4.1 is faster than 3.8 and includes chg and zstd. I
would like to have this version in 6.1.

czarkoff, the update breaks hg-git with https urls, even with the latest
upstream code. git:// works for me. Let me know if you see more problems
with your ports.



Hi,

mercurial and tortoisehg diff sounds good for me.

ok @czarkoff?

Remi.