From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:03:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79B88B7; Sun, 5 Oct 2014 00:03:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DD452DB; Sat, 4 Oct 2014 23:54:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s94NsmJw006440; Sat, 4 Oct 2014 23:54:48 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s94Nsmva006439; Sat, 4 Oct 2014 23:54:48 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410042354.s94Nsmva006439@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 4 Oct 2014 23:54:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370021 - head/audio/dir2ogg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:03:33 -0000 Author: jhale Date: Sat Oct 4 23:54:47 2014 New Revision: 370021 URL: https://svnweb.freebsd.org/changeset/ports/370021 QAT: https://qat.redports.org/buildarchive/r370021/ Log: - Convert to USES=python, limit to 2.x - Add LICENSE - USES=shebangfix instead of post-patch - Simplify DOCS install Modified: head/audio/dir2ogg/Makefile Modified: head/audio/dir2ogg/Makefile ============================================================================== --- head/audio/dir2ogg/Makefile Sat Oct 4 23:52:12 2014 (r370020) +++ head/audio/dir2ogg/Makefile Sat Oct 4 23:54:47 2014 (r370021) @@ -11,12 +11,16 @@ MASTER_SITE_SUBDIR= ${PORTVERSION:R} MAINTAINER= ports@FreeBSD.org COMMENT= Command-line {wav,mp3,m4a} to ogg converter +LICENSE= GPLv2 + RUN_DEPENDS= faad:${PORTSDIR}/audio/faad \ mutagen-inspect:${PORTSDIR}/audio/py-mutagen \ mplayer:${PORTSDIR}/multimedia/mplayer \ oggenc:${PORTSDIR}/audio/vorbis-tools -USE_PYTHON= yes +USES= python:2 shebangfix + +SHEBANG_FILES= ${PORTNAME} NO_BUILD= yes PORTDOCS= NEWS README @@ -25,16 +29,10 @@ PLIST_FILES= bin/${PORTNAME} \ OPTIONS_DEFINE= DOCS -post-patch: - @${REINPLACE_CMD} -e \ - '/^#!/s|/.*python|${SETENV} python|g' ${WRKSRC}/${PORTNAME} - do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DOCSDIR} -.for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} -.endfor + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:06:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D83D33B; Sun, 5 Oct 2014 00:06:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5E513EF; Sun, 5 Oct 2014 00:06:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95063G4011809; Sun, 5 Oct 2014 00:06:03 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s950635M011808; Sun, 5 Oct 2014 00:06:03 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410050006.s950635M011808@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sun, 5 Oct 2014 00:06:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370025 - head/audio/pytone X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:06:04 -0000 Author: jhale Date: Sun Oct 5 00:06:03 2014 New Revision: 370025 URL: https://svnweb.freebsd.org/changeset/ports/370025 QAT: https://qat.redports.org/buildarchive/r370025/ Log: - Convert to USES=python, limit to 2.x - Fix typo in RUN_DEPENDS - Simplify post-install - Remove PYAO option as the port builds a library for handling libao by default and py-ao would only be needed if that library wasn't built - Bump PORTREVISION Modified: head/audio/pytone/Makefile Modified: head/audio/pytone/Makefile ============================================================================== --- head/audio/pytone/Makefile Sun Oct 5 00:01:19 2014 (r370024) +++ head/audio/pytone/Makefile Sun Oct 5 00:06:03 2014 (r370025) @@ -3,6 +3,7 @@ PORTNAME= pytone PORTVERSION= 3.0.3 +PORTREVISION= 1 CATEGORIES= audio python MASTER_SITES= http://www.luga.de/pytone/download/ \ http://redundancy.redundancy.org/mirror/ @@ -15,29 +16,25 @@ LICENSE= GPLv2 LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}mutagen>0y:${PORTSDIR}/audio/py-mutagen + ${PYTHON_PKGNAMEPREFIX}mutagen>0:${PORTSDIR}/audio/py-mutagen -USES= ncurses -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= ncurses python:2 +USE_PYTHON= autoplist distutils -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib +CFLAGS+= -I${LOCALBASE}/include SUB_FILES= pkg-message PLIST_FILES= etc/pytonerc.sample -OPTIONS_DEFINE= MAD MPG123 MPG321 PYAO VORBIS +OPTIONS_DEFINE= MAD MPG123 MPG321 VORBIS OPTIONS_DEFAULT= MAD VORBIS MAD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mad>0:${PORTSDIR}/audio/py-mad MPG123_RUN_DEPENDS= mpg123:${PORTSDIR}/audio/mpg123 MPG321_DESC= MP3 decoding support via mpg321 MPG321_RUN_DEPENDS= mpg321:${PORTSDIR}/audio/mpg321 -PYAO_DESC= ${AO_DESC} -PYAO_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ao>0:${PORTSDIR}/audio/py-ao VORBIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vorbis>0:${PORTSDIR}/audio/py-vorbis post-patch: @@ -48,8 +45,7 @@ post-patch: .endfor post-install: - (cd ${WRKSRC}/conf && ${INSTALL_DATA} pytonerc \ - ${STAGEDIR}${PREFIX}/etc/pytonerc.sample) + ${INSTALL_DATA} ${WRKSRC}/conf/pytonerc ${STAGEDIR}${PREFIX}/etc/pytonerc.sample @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pytone/*.so .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:07:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCF41437; Sun, 5 Oct 2014 00:07:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9D72400; Sun, 5 Oct 2014 00:07:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9507xNo012124; Sun, 5 Oct 2014 00:07:59 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9507xon012123; Sun, 5 Oct 2014 00:07:59 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050007.s9507xon012123@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:07:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370026 - head/graphics/py-soya3d X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:08:00 -0000 Author: wg Date: Sun Oct 5 00:07:58 2014 New Revision: 370026 URL: https://svnweb.freebsd.org/changeset/ports/370026 QAT: https://qat.redports.org/buildarchive/r370026/ Log: graphics/py-soya3d: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/graphics/py-soya3d/Makefile Modified: head/graphics/py-soya3d/Makefile ============================================================================== --- head/graphics/py-soya3d/Makefile Sun Oct 5 00:06:03 2014 (r370025) +++ head/graphics/py-soya3d/Makefile Sun Oct 5 00:07:58 2014 (r370026) @@ -3,7 +3,7 @@ PORTNAME= soya3d PORTVERSION= 0.14 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= graphics python MASTER_SITES= http://download.gna.org/soya/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,18 +15,16 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Very high level 3D engine for Python BUILD_DEPENDS= ${LOCALBASE}/lib/libode.a:${PORTSDIR}/devel/ode \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow LIB_DEPENDS= libcal3d.so:${PORTSDIR}/graphics/cal3d \ libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/editobj/editor.py:${PORTSDIR}/graphics/py-editobj \ ${PYTHON_SITELIBDIR}/tofu/client.py:${PORTSDIR}/net/py-tofu \ ${PYTHON_SITELIBDIR}/cerealizer/__init__.py:${PORTSDIR}/security/py-cerealizer -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes -USES= gmake openal:al,alut tar:bzip2 +USES= gmake openal:al,alut python tar:bzip2 USE_GL= glew glu +USE_PYTHON= autoplist distutils USE_SDL= sdl LDFLAGS+= -L${LOCALBASE}/lib -lGLU From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:08:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28FD252B; Sun, 5 Oct 2014 00:08:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A854C30D; Sat, 4 Oct 2014 23:59:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s94NxmWL007289; Sat, 4 Oct 2014 23:59:48 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s94Nxm5A007288; Sat, 4 Oct 2014 23:59:48 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410042359.s94Nxm5A007288@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sat, 4 Oct 2014 23:59:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370023 - head/graphics/py-gchartwrapper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:08:33 -0000 Author: wg Date: Sat Oct 4 23:59:47 2014 New Revision: 370023 URL: https://svnweb.freebsd.org/changeset/ports/370023 QAT: https://qat.redports.org/buildarchive/r370023/ Log: graphics/py-gchartwrapper: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/graphics/py-gchartwrapper/Makefile Modified: head/graphics/py-gchartwrapper/Makefile ============================================================================== --- head/graphics/py-gchartwrapper/Makefile Sat Oct 4 23:59:40 2014 (r370022) +++ head/graphics/py-gchartwrapper/Makefile Sat Oct 4 23:59:47 2014 (r370023) @@ -3,7 +3,7 @@ PORTNAME= GChartWrapper PORTVERSION= 0.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,12 +13,11 @@ COMMENT= Python Google Chart Wrapper LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=1.1.6_2:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow PROJECTHOST= google-chartwrapper -PYDISTUTILS_AUTOPLIST= yes -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= python +USE_PYTHON= autoplist distutils .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:08:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58B57549; Sun, 5 Oct 2014 00:08:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57C5330B; Sat, 4 Oct 2014 23:59:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s94NxfJ1007188; Sat, 4 Oct 2014 23:59:41 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s94NxeYT007180; Sat, 4 Oct 2014 23:59:40 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410042359.s94NxeYT007180@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 4 Oct 2014 23:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370022 - head/audio/mpdbrowser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:08:33 -0000 Author: jhale Date: Sat Oct 4 23:59:40 2014 New Revision: 370022 URL: https://svnweb.freebsd.org/changeset/ports/370022 QAT: https://qat.redports.org/buildarchive/r370022/ Log: - Convert to USES=python, limit to 2.x - Use options helpers - Whitespace cleanup - Trim plist Modified: head/audio/mpdbrowser/Makefile head/audio/mpdbrowser/pkg-plist Modified: head/audio/mpdbrowser/Makefile ============================================================================== --- head/audio/mpdbrowser/Makefile Sat Oct 4 23:54:47 2014 (r370021) +++ head/audio/mpdbrowser/Makefile Sat Oct 4 23:59:40 2014 (r370022) @@ -9,25 +9,22 @@ MASTER_SITES= http://mpdbrowser.tuxfamil PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= mpdBrowser-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= GTK+ client for the Music Player Daemon (MPD) +LICENSE= GPLv2 + RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mpd>=0.2.0:${PORTSDIR}/audio/py-mpd -PYDISTUTILS_PKGNAME= mpdBrowser -USES= gettext iconv tar:tgz -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= gettext iconv python:2 tar:tgz USE_GNOME= intltool pygtk2 +USE_PYTHON= distutils +PYDISTUTILS_PKGNAME= mpdBrowser OPTIONS_DEFINE= MPD OPTIONS_DEFAULT= MPD -MPD_DESC= Install Music Player Daemon - -.include -.if ${PORT_OPTIONS:MMPD} -RUN_DEPENDS+= musicpd:${PORTSDIR}/audio/musicpd -.endif +MPD_DESC= Install Music Player Daemon +MPD_RUN_DEPENDS= musicpd:${PORTSDIR}/audio/musicpd .include Modified: head/audio/mpdbrowser/pkg-plist ============================================================================== --- head/audio/mpdbrowser/pkg-plist Sat Oct 4 23:54:47 2014 (r370021) +++ head/audio/mpdbrowser/pkg-plist Sat Oct 4 23:59:40 2014 (r370022) @@ -50,6 +50,3 @@ share/mpdBrowser/TRANSLATORS share/pixmaps/mpdBrowser.png share/pixmaps/mpdBrowser_case.png share/pixmaps/mpdBrowser_empty.png -@dirrmtry %%PYTHON_SITELIBDIR%%/mpdBrowser -@dirrmtry %%PYTHON_SITELIBDIR%%/mpdBrowser-0.9.16-py2.7.egg-info -@dirrmtry share/mpdBrowser From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:08:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D99E53E; Sun, 5 Oct 2014 00:08:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7A4313A1; Sun, 5 Oct 2014 00:01:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9501Kbd010658; Sun, 5 Oct 2014 00:01:20 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9501KpP010657; Sun, 5 Oct 2014 00:01:20 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050001.s9501KpP010657@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:01:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370024 - head/graphics/py-mcomix X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:08:33 -0000 Author: wg Date: Sun Oct 5 00:01:19 2014 New Revision: 370024 URL: https://svnweb.freebsd.org/changeset/ports/370024 QAT: https://qat.redports.org/buildarchive/r370024/ Log: graphics/py-mcomix: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/graphics/py-mcomix/Makefile Modified: head/graphics/py-mcomix/Makefile ============================================================================== --- head/graphics/py-mcomix/Makefile Sat Oct 4 23:59:47 2014 (r370023) +++ head/graphics/py-mcomix/Makefile Sun Oct 5 00:01:19 2014 (r370024) @@ -3,7 +3,7 @@ PORTNAME= mcomix PORTVERSION= 1.00 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/MComix-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,13 +14,11 @@ COMMENT= GTK2 comic book viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= tar:bzip2 -USE_GNOME= pygtk2 -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python tar:bzip2 +USE_GNOME= pygtk2 +USE_PYTHON= autoplist distutils .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:09:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFA9D80B; Sun, 5 Oct 2014 00:09:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ACF445F3; Sun, 5 Oct 2014 00:09:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9509Gas012493; Sun, 5 Oct 2014 00:09:16 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9509Gwm012492; Sun, 5 Oct 2014 00:09:16 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050009.s9509Gwm012492@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:09:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370027 - head/graphics/py-sorl-thumbnail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:09:16 -0000 Author: wg Date: Sun Oct 5 00:09:15 2014 New Revision: 370027 URL: https://svnweb.freebsd.org/changeset/ports/370027 QAT: https://qat.redports.org/buildarchive/r370027/ Log: graphics/py-sorl-thumbnail: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/graphics/py-sorl-thumbnail/Makefile Modified: head/graphics/py-sorl-thumbnail/Makefile ============================================================================== --- head/graphics/py-sorl-thumbnail/Makefile Sun Oct 5 00:07:58 2014 (r370026) +++ head/graphics/py-sorl-thumbnail/Makefile Sun Oct 5 00:09:15 2014 (r370027) @@ -3,7 +3,7 @@ PORTNAME= sorl-thumbnail PORTVERSION= 3.2.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,11 +13,10 @@ COMMENT= Sorl-thumbnail provides an easy LICENSE= BSD -RUN_DEPENDS= ${LOCALBASE}/bin/pildriver.py:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +USE_PYTHON= autoplist distutils DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:09:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40B898ED; Sun, 5 Oct 2014 00:09:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1366A5F8; Sun, 5 Oct 2014 00:09:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9509oqC012757; Sun, 5 Oct 2014 00:09:50 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9509ov1012755; Sun, 5 Oct 2014 00:09:50 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410050009.s9509ov1012755@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sun, 5 Oct 2014 00:09:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370028 - in head/audio/soundconverter: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:09:51 -0000 Author: jhale Date: Sun Oct 5 00:09:49 2014 New Revision: 370028 URL: https://svnweb.freebsd.org/changeset/ports/370028 QAT: https://qat.redports.org/buildarchive/r370028/ Log: - Convert to USES=python, limit to 2.x - Drop leading "The" from COMMENT - Use shebangfix instead of multiple patching - Trim plist Deleted: head/audio/soundconverter/files/ Modified: head/audio/soundconverter/Makefile head/audio/soundconverter/pkg-plist Modified: head/audio/soundconverter/Makefile ============================================================================== --- head/audio/soundconverter/Makefile Sun Oct 5 00:09:15 2014 (r370027) +++ head/audio/soundconverter/Makefile Sun Oct 5 00:09:49 2014 (r370028) @@ -8,23 +8,25 @@ CATEGORIES= audio python MASTER_SITES= BERLIOS MAINTAINER= ports@FreeBSD.org -COMMENT= The sound conversion application for the GNOME environment +COMMENT= Sound conversion application for the GNOME environment LICENSE= GPLv3 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gst-0.10/gst/__init__.py:${PORTSDIR}/multimedia/py-gstreamer +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gstreamer>=0.10:${PORTSDIR}/multimedia/py-gstreamer + +USES= gettext gmake desktop-file-utils python:2 shebangfix + +SHEBANG_FILES= src/soundconverter.py +python_OLD_CMD= /usr/bin/python -tt -USES= gettext gmake desktop-file-utils GNU_CONFIGURE= yes -USE_PYTHON= yes USE_GNOME= pygtk2 pygnome2 -MAKE_ENV= MAKE=${LOCALBASE}/bin/gmake +MAKE_ENV= MAKE=${MAKE_CMD} INSTALLS_ICONS= yes post-patch: @${REINPLACE_CMD} -e 's|@GMSGFMT@|${LOCALBASE}/bin/msgfmt|; \ s|itlocaledir = .*|itlocaledir = ${LOCALBASE}/share/locale|g' \ ${WRKSRC}/po/Makefile.in.in - @${REINPLACE_CMD} -e 's|#!/usr/bin/python|#!/usr/bin/env python|' ${WRKSRC}/src/soundconverter.py .include Modified: head/audio/soundconverter/pkg-plist ============================================================================== --- head/audio/soundconverter/pkg-plist Sun Oct 5 00:09:15 2014 (r370027) +++ head/audio/soundconverter/pkg-plist Sun Oct 5 00:09:49 2014 (r370028) @@ -46,4 +46,3 @@ share/locale/zh_CN/LC_MESSAGES/soundconv share/applications/soundconverter.desktop share/icons/hicolor/48x48/apps/soundconverter.png share/icons/hicolor/scalable/apps/soundconverter.svg -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:11:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 412E19D0; Sun, 5 Oct 2014 00:11:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2E8C7694; Sun, 5 Oct 2014 00:11:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s950BQu9015418; Sun, 5 Oct 2014 00:11:26 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s950BPXI015417; Sun, 5 Oct 2014 00:11:25 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050011.s950BPXI015417@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:11:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370029 - head/misc/cs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:11:26 -0000 Author: wg Date: Sun Oct 5 00:11:25 2014 New Revision: 370029 URL: https://svnweb.freebsd.org/changeset/ports/370029 QAT: https://qat.redports.org/buildarchive/r370029/ Log: misc/cs: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/misc/cs/Makefile Modified: head/misc/cs/Makefile ============================================================================== --- head/misc/cs/Makefile Sun Oct 5 00:09:49 2014 (r370028) +++ head/misc/cs/Makefile Sun Oct 5 00:11:25 2014 (r370029) @@ -3,6 +3,7 @@ PORTNAME= cs PORTVERSION= 0.9.6 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://njhurst.com/programming/cross-stitch/ @@ -11,13 +12,12 @@ COMMENT= Cross Stitch software LICENSE= GPLv2 # (or later) -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow NO_BUILD= yes -USES= shebangfix tar:tgz +USES= python:run shebangfix tar:tgz SHEBANG_FILES= xs.py -USE_PYTHON_RUN= yes PLIST_FILES= bin/xs From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:16:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 723ECB20; Sun, 5 Oct 2014 00:16:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45A616C5; Sun, 5 Oct 2014 00:16:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s950G1cE017144; Sun, 5 Oct 2014 00:16:01 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s950G0dj017139; Sun, 5 Oct 2014 00:16:00 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050016.s950G0dj017139@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:16:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370030 - in head/misc/pylize: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:16:01 -0000 Author: wg Date: Sun Oct 5 00:16:00 2014 New Revision: 370030 URL: https://svnweb.freebsd.org/changeset/ports/370030 QAT: https://qat.redports.org/buildarchive/r370030/ Log: misc/pylize: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/misc/pylize/files/ head/misc/pylize/files/patch-pylize.in (contents, props changed) Modified: head/misc/pylize/Makefile Modified: head/misc/pylize/Makefile ============================================================================== --- head/misc/pylize/Makefile Sun Oct 5 00:11:25 2014 (r370029) +++ head/misc/pylize/Makefile Sun Oct 5 00:16:00 2014 (r370030) @@ -3,7 +3,7 @@ PORTNAME= pylize PORTVERSION= 1.3.b -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc textproc MASTER_SITES= http://www.chrisarndt.de/en/software/pylize/download/ \ http://dryice.name/computer/FreeBSD/distfiles/ @@ -14,17 +14,12 @@ COMMENT= Presentation generation tool BUILD_DEPENDS= python:${PORTSDIR}/lang/python \ ${PYTHON_SITELIBDIR}/HTMLgen.py:${PORTSDIR}/www/py-HTMLgen \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \ - ${PYTHON_SITELIBDIR}/em.py:${PORTSDIR}/textproc/py-empy -RUN_DEPENDS= python:${PORTSDIR}/lang/python \ - ${PYTHON_SITELIBDIR}/HTMLgen.py:${PORTSDIR}/www/py-HTMLgen \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_SITELIBDIR}/em.py:${PORTSDIR}/textproc/py-empy +RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= tar:bzip2 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 tar:bzip2 +USE_PYTHON= autoplist distutils do-configure: @(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} configure.py) Added: head/misc/pylize/files/patch-pylize.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/pylize/files/patch-pylize.in Sun Oct 5 00:16:00 2014 (r370030) @@ -0,0 +1,11 @@ +--- pylize.in.orig 2014-10-05 00:14:33 UTC ++++ pylize.in +@@ -113,7 +113,7 @@ + def mkLogoLink(meta): + if meta.has_key('logo'): + try: +- import Image ++ from PIL import Image + if os.path.exists(meta['logo']): + i = Image.open(meta['logo']) + else: From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:19:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0458EC28; Sun, 5 Oct 2014 00:19:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5CAC6DC; Sun, 5 Oct 2014 00:19:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s950J2vX017603; Sun, 5 Oct 2014 00:19:02 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s950J2Sv017598; Sun, 5 Oct 2014 00:19:02 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410050019.s950J2Sv017598@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 5 Oct 2014 00:19:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370031 - in head/misc/wotsap: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:19:03 -0000 Author: wg Date: Sun Oct 5 00:19:01 2014 New Revision: 370031 URL: https://svnweb.freebsd.org/changeset/ports/370031 QAT: https://qat.redports.org/buildarchive/r370031/ Log: misc/wotsap: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/misc/wotsap/files/ head/misc/wotsap/files/patch-wotsap (contents, props changed) Modified: head/misc/wotsap/Makefile Modified: head/misc/wotsap/Makefile ============================================================================== --- head/misc/wotsap/Makefile Sun Oct 5 00:16:00 2014 (r370030) +++ head/misc/wotsap/Makefile Sun Oct 5 00:19:01 2014 (r370031) @@ -3,6 +3,7 @@ PORTNAME= wotsap PORTVERSION= 0.7 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://www.lysator.liu.se/~jc/wotsap/download/ EXTRACT_SUFX= .tgz @@ -10,9 +11,9 @@ EXTRACT_SUFX= .tgz MAINTAINER= danilo@FreeBSD.org COMMENT= Web of trust statistics and pathfinder -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow -USE_PYTHON_RUN= 2 +USES= python:2,run NO_BUILD= yes PLIST_FILES= bin/pks2wot bin/wotsap Added: head/misc/wotsap/files/patch-wotsap ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/wotsap/files/patch-wotsap Sun Oct 5 00:19:01 2014 (r370031) @@ -0,0 +1,11 @@ +--- wotsap.orig 2014-10-05 00:18:42 UTC ++++ wotsap +@@ -193,7 +193,7 @@ + + try: + global Image, ImageDraw, ImageFont +- import Image, ImageDraw, ImageFont ++ from PIL import Image, ImageDraw, ImageFont + except ImportError: + print >>sys.stderr, \ + "wotsap: Unable to import Python Imaging Library modules\n" \ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 00:49:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88F0BD4; Sun, 5 Oct 2014 00:49:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 766EB97C; Sun, 5 Oct 2014 00:49:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s950ne5T031423; Sun, 5 Oct 2014 00:49:40 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s950nePH031421; Sun, 5 Oct 2014 00:49:40 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201410050049.s950nePH031421@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 5 Oct 2014 00:49:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370032 - head/www/testlink X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 00:49:40 -0000 Author: tota Date: Sun Oct 5 00:49:39 2014 New Revision: 370032 URL: https://svnweb.freebsd.org/changeset/ports/370032 QAT: https://qat.redports.org/buildarchive/r370032/ Log: - Upstream rerolled tarball Reported by: antoine@ Modified: head/www/testlink/Makefile head/www/testlink/distinfo Modified: head/www/testlink/Makefile ============================================================================== --- head/www/testlink/Makefile Sun Oct 5 00:19:01 2014 (r370031) +++ head/www/testlink/Makefile Sun Oct 5 00:49:39 2014 (r370032) @@ -3,6 +3,7 @@ PORTNAME= testlink PORTVERSION= 1.9.12 +PORTREVISION= 1 CATEGORIES= www devel MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/TestLink%201.9/TestLink%20${PORTVERSION} Modified: head/www/testlink/distinfo ============================================================================== --- head/www/testlink/distinfo Sun Oct 5 00:19:01 2014 (r370031) +++ head/www/testlink/distinfo Sun Oct 5 00:49:39 2014 (r370032) @@ -1,2 +1,2 @@ -SHA256 (testlink-1.9.12.tar.gz) = bb7b359ce3f5d66c364e6d01a265eb4f755372f882e434c62ef2286e828a0719 -SIZE (testlink-1.9.12.tar.gz) = 26416243 +SHA256 (testlink-1.9.12.tar.gz) = deadc06fb8d3c5c0b287cb60b67dea5a588487a863db8e68fbcac2a9f56c49ee +SIZE (testlink-1.9.12.tar.gz) = 26435862 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 01:15:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31E87473; Sun, 5 Oct 2014 01:15:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1FB7BBBE; Sun, 5 Oct 2014 01:15:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s951FtJE044671; Sun, 5 Oct 2014 01:15:55 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s951FtdJ044670; Sun, 5 Oct 2014 01:15:55 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410050115.s951FtdJ044670@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 01:15:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370033 - head/www/py-beaker X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 01:15:56 -0000 Author: wen Date: Sun Oct 5 01:15:55 2014 New Revision: 370033 URL: https://svnweb.freebsd.org/changeset/ports/370033 QAT: https://qat.redports.org/buildarchive/r370033/ Log: - Update LICENSE - Reset maintainer to ports@ Modified: head/www/py-beaker/Makefile Modified: head/www/py-beaker/Makefile ============================================================================== --- head/www/py-beaker/Makefile Sun Oct 5 00:49:39 2014 (r370032) +++ head/www/py-beaker/Makefile Sun Oct 5 01:15:55 2014 (r370033) @@ -9,13 +9,12 @@ MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Beaker-${PORTVERSION} -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Session and Caching library with WSGI Middleware -LICENSE= BSD +LICENSE= BSD3CLAUSE -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 04:13:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5920B95D; Sun, 5 Oct 2014 04:13:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B052C9A; Sun, 5 Oct 2014 04:13:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s954DnIM029717; Sun, 5 Oct 2014 04:13:49 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s954DmP9029715; Sun, 5 Oct 2014 04:13:48 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201410050413.s954DmP9029715@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 5 Oct 2014 04:13:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370034 - head/finance/R-cran-quantmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 04:13:49 -0000 Author: tota Date: Sun Oct 5 04:13:48 2014 New Revision: 370034 URL: https://svnweb.freebsd.org/changeset/ports/370034 QAT: https://qat.redports.org/buildarchive/r370034/ Log: - Update to 0.4-1 - Fix RUN_DEPENDS - Optionize R-cran-Defaults Modified: head/finance/R-cran-quantmod/Makefile head/finance/R-cran-quantmod/distinfo Modified: head/finance/R-cran-quantmod/Makefile ============================================================================== --- head/finance/R-cran-quantmod/Makefile Sun Oct 5 01:15:55 2014 (r370033) +++ head/finance/R-cran-quantmod/Makefile Sun Oct 5 04:13:48 2014 (r370034) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= quantmod -DISTVERSION= 0.4-0 -PORTREVISION= 6 +DISTVERSION= 0.4-1 CATEGORIES= finance DISTNAME= ${PORTNAME}_${DISTVERSION} @@ -12,11 +11,16 @@ COMMENT= Quantitative Financial Modellin LICENSE= GPLv3 -RUN_DEPENDS= R-cran-Defaults>0:${PORTSDIR}/devel/R-cran-Defaults \ - R-cran-xts>=0.9.0:${PORTSDIR}/math/R-cran-sp \ +RUN_DEPENDS= R-cran-xts>=0.9.0:${PORTSDIR}/math/R-cran-xts \ R-cran-zoo>0:${PORTSDIR}/math/R-cran-zoo \ R-cran-TTR>=0.2:${PORTSDIR}/finance/R-cran-TTR USES= cran:auto-plist +OPTIONS_DEFINE= DEFAULT +DEFAULT_DESC= Run with R-cran-Default +DEFAULT_RUN_DEPENDS= R-cran-Default>0:${PORTSDIR}/devel/R-cran-Defaults + +OPTIONS_DEFAULT= DEFAULT + .include Modified: head/finance/R-cran-quantmod/distinfo ============================================================================== --- head/finance/R-cran-quantmod/distinfo Sun Oct 5 01:15:55 2014 (r370033) +++ head/finance/R-cran-quantmod/distinfo Sun Oct 5 04:13:48 2014 (r370034) @@ -1,2 +1,2 @@ -SHA256 (quantmod_0.4-0.tar.gz) = b2eca4a511494ecf0328e7433d710651bb024b9e4355007c8936b820a70f8188 -SIZE (quantmod_0.4-0.tar.gz) = 124084 +SHA256 (quantmod_0.4-1.tar.gz) = 2d4a2b8c4b4e34464c9c139c8a17da6da2f65b83ed67661b02dd115714b2f0c7 +SIZE (quantmod_0.4-1.tar.gz) = 129042 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 06:59:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA95DCA4; Sun, 5 Oct 2014 06:59:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BDA2BF9; Sun, 5 Oct 2014 06:59:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s956xP0Z005100; Sun, 5 Oct 2014 06:59:25 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s956xOS5005097; Sun, 5 Oct 2014 06:59:24 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410050659.s956xOS5005097@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 06:59:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370035 - in head: print/py-trml2pdf www/py-satchmo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 06:59:25 -0000 Author: antoine Date: Sun Oct 5 06:59:24 2014 New Revision: 370035 URL: https://svnweb.freebsd.org/changeset/ports/370035 QAT: https://qat.redports.org/buildarchive/r370035/ Log: Unbreak py-satchmo, it depended on both py-imaging (self+via py-sorl-thumbnail) and py-pillow (via py-trml2pdf) Modified: head/print/py-trml2pdf/Makefile head/print/py-trml2pdf/pkg-plist head/www/py-satchmo/Makefile Modified: head/print/py-trml2pdf/Makefile ============================================================================== --- head/print/py-trml2pdf/Makefile Sun Oct 5 04:13:48 2014 (r370034) +++ head/print/py-trml2pdf/Makefile Sun Oct 5 06:59:24 2014 (r370035) @@ -3,7 +3,7 @@ PORTNAME= trml2pdf PORTVERSION= 1.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print python MASTER_SITES= SF/kraft/${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,13 +11,12 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@caomhin.org COMMENT= Tiny RML2PDF easily creates PDF documents -RUN_DEPENDS= ${LOCALBASE}/bin/pildriver.py:${PORTSDIR}/graphics/py-imaging \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}reportlab1>=0:${PORTSDIR}/print/py-reportlab1 NO_BUILD= yes -USES= tar:bzip2 -USE_PYTHON= yes +USES= python tar:bzip2 DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} Modified: head/print/py-trml2pdf/pkg-plist ============================================================================== --- head/print/py-trml2pdf/pkg-plist Sun Oct 5 04:13:48 2014 (r370034) +++ head/print/py-trml2pdf/pkg-plist Sun Oct 5 06:59:24 2014 (r370035) @@ -36,8 +36,3 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rmls/pict/replogo.gif %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rmls/pict/screenshot.jpg %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rmls/pict/tiny_logo.png -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/rmls/pict -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/rmls -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/trml2pdf Modified: head/www/py-satchmo/Makefile ============================================================================== --- head/www/py-satchmo/Makefile Sun Oct 5 04:13:48 2014 (r370034) +++ head/www/py-satchmo/Makefile Sun Oct 5 06:59:24 2014 (r370035) @@ -3,7 +3,7 @@ PORTNAME= satchmo PORTVERSION= 0.9.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= http://www.caomhin.org/ports/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,33 +11,32 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@caomhin.org COMMENT= Shopping cart application for Django -LICENSE= BSD +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_hg>=0.4:${PORTSDIR}/devel/py-setuptools_hg RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.2.3:${PORTSDIR}/www/py-django \ - ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:${PORTSDIR}/security/py-pycrypto \ - ${PYTHON_PKGNAMEPREFIX}reportlab1>=0:${PORTSDIR}/print/py-reportlab1 \ - ${PYTHON_PKGNAMEPREFIX}trml2pdf>=0:${PORTSDIR}/print/py-trml2pdf \ - ${PYTHON_PKGNAMEPREFIX}django-registration>=0.8:${PORTSDIR}/www/py-django-registration \ - ${PYTHON_PKGNAMEPREFIX}yaml>=0:${PORTSDIR}/devel/py-yaml \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging \ - ${PYTHON_PKGNAMEPREFIX}sorl-thumbnail<4:${PORTSDIR}/graphics/py-sorl-thumbnail \ - ${PYTHON_PKGNAMEPREFIX}django-caching-app-plugins>=0:${PORTSDIR}/www/py-django-caching-app-plugins \ - ${PYTHON_PKGNAMEPREFIX}django-keyedcache>=0:${PORTSDIR}/www/py-django-keyedcache \ - ${PYTHON_PKGNAMEPREFIX}django-livesettings>=0:${PORTSDIR}/www/py-django-livesettings \ - ${PYTHON_PKGNAMEPREFIX}django-signals-ahoy>=0:${PORTSDIR}/www/py-django-signals-ahoy \ - ${PYTHON_PKGNAMEPREFIX}django-threaded-multihost>=0:${PORTSDIR}/www/py-django-threaded-multihost - -USES= gettext -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes + ${PYTHON_PKGNAMEPREFIX}pycrypto>=0:${PORTSDIR}/security/py-pycrypto \ + ${PYTHON_PKGNAMEPREFIX}reportlab1>=0:${PORTSDIR}/print/py-reportlab1 \ + ${PYTHON_PKGNAMEPREFIX}trml2pdf>=0:${PORTSDIR}/print/py-trml2pdf \ + ${PYTHON_PKGNAMEPREFIX}django-registration>=0.8:${PORTSDIR}/www/py-django-registration \ + ${PYTHON_PKGNAMEPREFIX}yaml>=0:${PORTSDIR}/devel/py-yaml \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ + ${PYTHON_PKGNAMEPREFIX}sorl-thumbnail<4:${PORTSDIR}/graphics/py-sorl-thumbnail \ + ${PYTHON_PKGNAMEPREFIX}django-caching-app-plugins>=0:${PORTSDIR}/www/py-django-caching-app-plugins \ + ${PYTHON_PKGNAMEPREFIX}django-keyedcache>=0:${PORTSDIR}/www/py-django-keyedcache \ + ${PYTHON_PKGNAMEPREFIX}django-livesettings>=0:${PORTSDIR}/www/py-django-livesettings \ + ${PYTHON_PKGNAMEPREFIX}django-signals-ahoy>=0:${PORTSDIR}/www/py-django-signals-ahoy \ + ${PYTHON_PKGNAMEPREFIX}django-threaded-multihost>=0:${PORTSDIR}/www/py-django-threaded-multihost + +USES= gettext python +USE_PYTHON= distutils autoplist OPTIONS_DEFINE= SOUTH FEDEX AKISMET OPTIONS_DEFAULT=FEDEX -SOUTH_DESC= Use South database migration tool for upgrades -FEDEX_DESC= Use Fedex web services for shipping +SOUTH_DESC= Use South database migration tool for upgrades +FEDEX_DESC= Use Fedex web services for shipping AKISMET_DESC= Use Akismet for spam filtering on product reviews .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 07:03:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAC57DA9; Sun, 5 Oct 2014 07:03:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7EC0C96; Sun, 5 Oct 2014 07:03:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9573j4T009246; Sun, 5 Oct 2014 07:03:45 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9573juq009244; Sun, 5 Oct 2014 07:03:45 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410050703.s9573juq009244@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 5 Oct 2014 07:03:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370036 - head/audio/mpdas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 07:03:45 -0000 Author: riggs Date: Sun Oct 5 07:03:44 2014 New Revision: 370036 URL: https://svnweb.freebsd.org/changeset/ports/370036 QAT: https://qat.redports.org/buildarchive/r370036/ Log: - Update to upstream version 0.3.2 While on it: - Add LICENSE PR: 193998 Submitted by: henrik@affekt.org (maintainer) Modified: head/audio/mpdas/Makefile head/audio/mpdas/distinfo Modified: head/audio/mpdas/Makefile ============================================================================== --- head/audio/mpdas/Makefile Sun Oct 5 06:59:24 2014 (r370035) +++ head/audio/mpdas/Makefile Sun Oct 5 07:03:44 2014 (r370036) @@ -2,14 +2,16 @@ # $FreeBSD$ PORTNAME= mpdas -PORTVERSION= 0.3.1 -PORTREVISION= 1 +PORTVERSION= 0.3.2 CATEGORIES= audio MASTER_SITES= http://50hz.ws/mpdas/ MAINTAINER= henrik@affekt.org COMMENT= MPD AudioScrobbler written in C++ supporting the latest protocol +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl \ libmpd.so:${PORTSDIR}/audio/libmpd Modified: head/audio/mpdas/distinfo ============================================================================== --- head/audio/mpdas/distinfo Sun Oct 5 06:59:24 2014 (r370035) +++ head/audio/mpdas/distinfo Sun Oct 5 07:03:44 2014 (r370036) @@ -1,2 +1,2 @@ -SHA256 (mpdas-0.3.1.tar.gz) = 11b3ae37597f252c270ee3217e48b276323c7a037f26179b94411d9fa11f9099 -SIZE (mpdas-0.3.1.tar.gz) = 13978 +SHA256 (mpdas-0.3.2.tar.gz) = 145f85b29f7bd0b1b83d85c887fcf233ff463b31abb4767e7e289e1f9e7abb62 +SIZE (mpdas-0.3.2.tar.gz) = 14143 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 07:06:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28D3CEA7; Sun, 5 Oct 2014 07:06:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15675CA5; Sun, 5 Oct 2014 07:06:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95768bT009734; Sun, 5 Oct 2014 07:06:08 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95768jR009732; Sun, 5 Oct 2014 07:06:08 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201410050706.s95768jR009732@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Sun, 5 Oct 2014 07:06:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370037 - in head/databases: postgresql-plv8js postgresql93-plv8js X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 07:06:09 -0000 Author: lwhsu Date: Sun Oct 5 07:06:08 2014 New Revision: 370037 URL: https://svnweb.freebsd.org/changeset/ports/370037 QAT: https://qat.redports.org/buildarchive/r370037/ Log: - Turn postgresql-plv8js version aware and add postgresql93-plv8js Approved by: vanilla (via skype) Added: head/databases/postgresql93-plv8js/ head/databases/postgresql93-plv8js/Makefile (contents, props changed) Modified: head/databases/postgresql-plv8js/Makefile Modified: head/databases/postgresql-plv8js/Makefile ============================================================================== --- head/databases/postgresql-plv8js/Makefile Sun Oct 5 07:03:44 2014 (r370036) +++ head/databases/postgresql-plv8js/Makefile Sun Oct 5 07:06:08 2014 (r370037) @@ -5,7 +5,7 @@ PORTNAME= plv8js PORTVERSION= 1.4.2 CATEGORIES= databases MASTER_SITES= http://api.pgxn.org/dist/plv8/${PORTVERSION}/ -PKGNAMEPREFIX= postgresql- +PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- DISTNAME= plv8-${PORTVERSION} MAINTAINER= vanilla@FreeBSD.org @@ -15,7 +15,8 @@ LICENSE= PostgreSQL LIB_DEPENDS+= libv8.so:${PORTSDIR}/lang/v8 -USES= gmake perl5 zip pgsql:9.1+ +WANT_PGSQL_VER= 9.1+ +USES= gmake perl5 zip pgsql:${WANT_PGSQL_VER} USE_PERL5= build PLIST_SUB+= PORTVERSION="${PORTVERSION}" Added: head/databases/postgresql93-plv8js/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/postgresql93-plv8js/Makefile Sun Oct 5 07:06:08 2014 (r370037) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +WANT_PGSQL_VER= 9.3 + +MASTERDIR= ${.CURDIR}/../postgresql-plv8js/ + +.include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 07:10:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BEE74C1; Sun, 5 Oct 2014 07:10:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABF94CC8; Sun, 5 Oct 2014 07:10:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s957APgX010985; Sun, 5 Oct 2014 07:10:25 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s957APu1010984; Sun, 5 Oct 2014 07:10:25 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201410050710.s957APu1010984@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Sun, 5 Oct 2014 07:10:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370038 - head/databases/postgresql-plv8js X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 07:10:25 -0000 Author: lwhsu Date: Sun Oct 5 07:10:24 2014 New Revision: 370038 URL: https://svnweb.freebsd.org/changeset/ports/370038 QAT: https://qat.redports.org/buildarchive/r370038/ Log: - Let slave port can override WANT_PGSQL_VER Modified: head/databases/postgresql-plv8js/Makefile Modified: head/databases/postgresql-plv8js/Makefile ============================================================================== --- head/databases/postgresql-plv8js/Makefile Sun Oct 5 07:06:08 2014 (r370037) +++ head/databases/postgresql-plv8js/Makefile Sun Oct 5 07:10:24 2014 (r370038) @@ -15,7 +15,7 @@ LICENSE= PostgreSQL LIB_DEPENDS+= libv8.so:${PORTSDIR}/lang/v8 -WANT_PGSQL_VER= 9.1+ +WANT_PGSQL_VER?= 9.1+ USES= gmake perl5 zip pgsql:${WANT_PGSQL_VER} USE_PERL5= build PLIST_SUB+= PORTVERSION="${PORTVERSION}" From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 07:57:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66C2B924; Sun, 5 Oct 2014 07:57:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52DAC103; Sun, 5 Oct 2014 07:57:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s957v07s033833; Sun, 5 Oct 2014 07:57:00 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s957uxR2033823; Sun, 5 Oct 2014 07:56:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410050756.s957uxR2033823@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 5 Oct 2014 07:56:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370039 - head/devel/p5-AnyEvent-I3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 07:57:00 -0000 Author: bapt Date: Sun Oct 5 07:56:59 2014 New Revision: 370039 URL: https://svnweb.freebsd.org/changeset/ports/370039 QAT: https://qat.redports.org/buildarchive/r370039/ Log: Update to 0.16 Modified: head/devel/p5-AnyEvent-I3/Makefile head/devel/p5-AnyEvent-I3/distinfo Modified: head/devel/p5-AnyEvent-I3/Makefile ============================================================================== --- head/devel/p5-AnyEvent-I3/Makefile Sun Oct 5 07:10:24 2014 (r370038) +++ head/devel/p5-AnyEvent-I3/Makefile Sun Oct 5 07:56:59 2014 (r370039) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= AnyEvent-I3 -PORTVERSION= 0.15 +PORTVERSION= 0.16 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-AnyEvent-I3/distinfo ============================================================================== --- head/devel/p5-AnyEvent-I3/distinfo Sun Oct 5 07:10:24 2014 (r370038) +++ head/devel/p5-AnyEvent-I3/distinfo Sun Oct 5 07:56:59 2014 (r370039) @@ -1,2 +1,2 @@ -SHA256 (AnyEvent-I3-0.15.tar.gz) = 116f28225cb8d422eb6f30941c0430b786d340c731b763bb7a6d1d630c881f75 -SIZE (AnyEvent-I3-0.15.tar.gz) = 24665 +SHA256 (AnyEvent-I3-0.16.tar.gz) = 2fc2010011462b6ac9f64dbc5049c5a4298020b9f0f3340d4d22d95a77519be3 +SIZE (AnyEvent-I3-0.16.tar.gz) = 25320 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 08:00:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 116E5ABD; Sun, 5 Oct 2014 08:00:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F21AD12E; Sun, 5 Oct 2014 08:00:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9580r6g037861; Sun, 5 Oct 2014 08:00:53 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9580rO3037704; Sun, 5 Oct 2014 08:00:53 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410050800.s9580rO3037704@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 08:00:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370040 - head/www/mediawiki123 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 08:00:54 -0000 Author: wen Date: Sun Oct 5 08:00:52 2014 New Revision: 370040 URL: https://svnweb.freebsd.org/changeset/ports/370040 QAT: https://qat.redports.org/buildarchive/r370040/ Log: - Update to 1.23.5 Modified: head/www/mediawiki123/Makefile head/www/mediawiki123/distinfo Modified: head/www/mediawiki123/Makefile ============================================================================== --- head/www/mediawiki123/Makefile Sun Oct 5 07:56:59 2014 (r370039) +++ head/www/mediawiki123/Makefile Sun Oct 5 08:00:52 2014 (r370040) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.23.4 +PORTVERSION= 1.23.5 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 123 Modified: head/www/mediawiki123/distinfo ============================================================================== --- head/www/mediawiki123/distinfo Sun Oct 5 07:56:59 2014 (r370039) +++ head/www/mediawiki123/distinfo Sun Oct 5 08:00:52 2014 (r370040) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.23.4.tar.gz) = 3fd31c61d60b3472483d9d18b19b8f5dc1ff1462601490522504b2a60fa070e9 -SIZE (mediawiki-1.23.4.tar.gz) = 19898828 +SHA256 (mediawiki-1.23.5.tar.gz) = 3d269afc66726b03fd4c5c8573fdf1f0cb5878cacc2f634523bb824352d3181b +SIZE (mediawiki-1.23.5.tar.gz) = 19900060 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 08:09:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 81FA1CAB; Sun, 5 Oct 2014 08:09:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E7F51EF; Sun, 5 Oct 2014 08:09:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9589uMn039263; Sun, 5 Oct 2014 08:09:56 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9589ujh039262; Sun, 5 Oct 2014 08:09:56 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410050809.s9589ujh039262@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 5 Oct 2014 08:09:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370041 - head/editors/emacs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 08:09:56 -0000 Author: bapt Date: Sun Oct 5 08:09:55 2014 New Revision: 370041 URL: https://svnweb.freebsd.org/changeset/ports/370041 QAT: https://qat.redports.org/buildarchive/r370041/ Log: Fix plist for emacs info files The dir directory it generated at stage time by install-info but this should be ignored as now indexinfo it createing an index at package installation time. This commit is anyway mostly useless here as emacs info files being installed in a custom place are not directly viewable/indexed by the info(1) command Modified: head/editors/emacs/pkg-plist Modified: head/editors/emacs/pkg-plist ============================================================================== --- head/editors/emacs/pkg-plist Sun Oct 5 08:00:52 2014 (r370040) +++ head/editors/emacs/pkg-plist Sun Oct 5 08:09:55 2014 (r370041) @@ -15,7 +15,7 @@ share/applications/emacs.desktop %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/site-lisp/site-start.el %%DATADIR%%/%%EMACS_VER%%/site-lisp/subdirs.el %%DATADIR%%/site-lisp/subdirs.el -%%INFODIR%%/dir +@comment %%INFODIR%%/dir share/icons/hicolor/128x128/apps/emacs.png share/icons/hicolor/16x16/apps/emacs.png share/icons/hicolor/24x24/apps/emacs.png @@ -23,5 +23,3 @@ share/icons/hicolor/32x32/apps/emacs.png share/icons/hicolor/48x48/apps/emacs.png share/icons/hicolor/scalable/apps/emacs.svg share/icons/hicolor/scalable/mimetypes/emacs-document.svg -@dirrmtry %%INFODIR%% -@dirrmtry %%DATADIR%%/%%EMACS_VER%%/site-lisp From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 08:10:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41646D8F; Sun, 5 Oct 2014 08:10:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DB291F6; Sun, 5 Oct 2014 08:10:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s958AiWl041371; Sun, 5 Oct 2014 08:10:44 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s958Aiej041370; Sun, 5 Oct 2014 08:10:44 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410050810.s958Aiej041370@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sun, 5 Oct 2014 08:10:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370042 - head/editors/emacs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 08:10:44 -0000 Author: bapt Date: Sun Oct 5 08:10:43 2014 New Revision: 370042 URL: https://svnweb.freebsd.org/changeset/ports/370042 QAT: https://qat.redports.org/buildarchive/r370042/ Log: bump portrevision due to changes in the plist Modified: head/editors/emacs/Makefile Modified: head/editors/emacs/Makefile ============================================================================== --- head/editors/emacs/Makefile Sun Oct 5 08:09:55 2014 (r370041) +++ head/editors/emacs/Makefile Sun Oct 5 08:10:43 2014 (r370042) @@ -3,7 +3,7 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} -PORTREVISION?= 7 +PORTREVISION?= 8 PORTEPOCH= 3 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 09:19:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5BD1D9B9; Sun, 5 Oct 2014 09:19:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47516A8B; Sun, 5 Oct 2014 09:19:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s959J6u5071980; Sun, 5 Oct 2014 09:19:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s959J5oO071977; Sun, 5 Oct 2014 09:19:05 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410050919.s959J5oO071977@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 09:19:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370043 - head/www/xoops X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 09:19:06 -0000 Author: antoine Date: Sun Oct 5 09:19:05 2014 New Revision: 370043 URL: https://svnweb.freebsd.org/changeset/ports/370043 QAT: https://qat.redports.org/buildarchive/r370043/ Log: - Allow staging as a regular user - Bump portrevision as @exec was not acting on the right files Modified: head/www/xoops/Makefile head/www/xoops/pkg-plist Modified: head/www/xoops/Makefile ============================================================================== --- head/www/xoops/Makefile Sun Oct 5 08:10:43 2014 (r370042) +++ head/www/xoops/Makefile Sun Oct 5 09:19:05 2014 (r370043) @@ -3,6 +3,7 @@ PORTNAME= xoops PORTVERSION= 2.5.7 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/XOOPS%20Core%20%28stable%20releases%29/XOOPS_${PORTVERSION} @@ -12,6 +13,7 @@ COMMENT= Dynamic Web CMS USE_PHP= mysql NO_BUILD= yes +PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" SUB_FILES= pkg-message do-install: @@ -22,11 +24,6 @@ do-install: .for d in docs extras htdocs @cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${WWWDIR} .endfor - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} @${CHMOD} -R 755 ${STAGEDIR}${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}' \ - >> ${TMPPLIST} - @${ECHO_CMD} '@exec ${CHMOD} -R 755 ${STAGEDIR}${WWWDIR}' \ - >> ${TMPPLIST} .include Modified: head/www/xoops/pkg-plist ============================================================================== --- head/www/xoops/pkg-plist Sun Oct 5 08:10:43 2014 (r370042) +++ head/www/xoops/pkg-plist Sun Oct 5 09:19:05 2014 (r370043) @@ -1,3 +1,5 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% %%WWWDIR%%/checksum.md5 %%WWWDIR%%/checksum.php %%WWWDIR%%/docs/README.txt @@ -3301,511 +3303,513 @@ %%WWWDIR%%/htdocs/xoops_lib/modules/protector/sql/mysql.sql %%WWWDIR%%/htdocs/xoops_lib/modules/protector/xoops_version.php %%WWWDIR%%/htdocs/xoops_lib/readme.txt -@dirrmtry %%WWWDIR%%/docs/images -@dirrmtry %%WWWDIR%%/docs -@dirrmtry %%WWWDIR%%/extras/modules/system/admin/filemanager -@dirrmtry %%WWWDIR%%/extras/modules/system/admin -@dirrmtry %%WWWDIR%%/extras/modules/system/js -@dirrmtry %%WWWDIR%%/extras/modules/system/language/english/admin -@dirrmtry %%WWWDIR%%/extras/modules/system/language/english -@dirrmtry %%WWWDIR%%/extras/modules/system/language -@dirrmtry %%WWWDIR%%/extras/modules/system/templates/admin -@dirrmtry %%WWWDIR%%/extras/modules/system/templates -@dirrmtry %%WWWDIR%%/extras/modules/system -@dirrmtry %%WWWDIR%%/extras/modules -@dirrmtry %%WWWDIR%%/extras/mysqli -@dirrmtry %%WWWDIR%%/extras -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/art -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/compat/include -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/compat -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons/16 -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons/32 -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons/bookmarks -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/css -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/doc -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/images -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/language/english -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/language -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/moduleclasses -@dirrmtry %%WWWDIR%%/htdocs/Frameworks/textsanitizer -@dirrmtry %%WWWDIR%%/htdocs/Frameworks -@dirrmtry %%WWWDIR%%/htdocs/cache -@dirrmtry %%WWWDIR%%/htdocs/class/auth -@dirrmtry %%WWWDIR%%/htdocs/class/cache -@dirrmtry %%WWWDIR%%/htdocs/class/captcha/image/backgrounds -@dirrmtry %%WWWDIR%%/htdocs/class/captcha/image/fonts -@dirrmtry %%WWWDIR%%/htdocs/class/captcha/image/scripts -@dirrmtry %%WWWDIR%%/htdocs/class/captcha/image -@dirrmtry %%WWWDIR%%/htdocs/class/captcha/recaptcha -@dirrmtry %%WWWDIR%%/htdocs/class/captcha -@dirrmtry %%WWWDIR%%/htdocs/class/database -@dirrmtry %%WWWDIR%%/htdocs/class/file -@dirrmtry %%WWWDIR%%/htdocs/class/logger -@dirrmtry %%WWWDIR%%/htdocs/class/mail/phpmailer/language -@dirrmtry %%WWWDIR%%/htdocs/class/mail/phpmailer -@dirrmtry %%WWWDIR%%/htdocs/class/mail -@dirrmtry %%WWWDIR%%/htdocs/class/model -@dirrmtry %%WWWDIR%%/htdocs/class/smarty/configs -@dirrmtry %%WWWDIR%%/htdocs/class/smarty/internals -@dirrmtry %%WWWDIR%%/htdocs/class/smarty/plugins -@dirrmtry %%WWWDIR%%/htdocs/class/smarty/xoops_plugins -@dirrmtry %%WWWDIR%%/htdocs/class/smarty -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/censor -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/flash -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/iframe -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/image -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/li -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/mms -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/mp3 -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/rtsp -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/soundcloud -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/syntaxhighlight -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/textfilter -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/ul -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/wiki -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/wmp -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer/youtube -@dirrmtry %%WWWDIR%%/htdocs/class/textsanitizer -@dirrmtry %%WWWDIR%%/htdocs/class/utility -@dirrmtry %%WWWDIR%%/htdocs/class/xml/rpc -@dirrmtry %%WWWDIR%%/htdocs/class/xml/rss -@dirrmtry %%WWWDIR%%/htdocs/class/xml -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/dhtmltextarea/language -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/dhtmltextarea -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/textarea/language -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/textarea -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/include -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/language -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlist -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/autolink -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/autoresize -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/autosave -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/bbcode -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/contextmenu -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/directionality -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example_dependency -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullscreen -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/iespell -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2 -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/insertdatetime -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/layer -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/legacyoutput -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/lists -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/nonbreaking -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/noneditable -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/paste/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/paste/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/paste -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/preview/jscripts -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/preview -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/print -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/save -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/tabfocus -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualchars -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/wordcount -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/css -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/js -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7 -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/langs -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/default -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7 -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/utils -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor/tinymce -@dirrmtry %%WWWDIR%%/htdocs/class/xoopseditor -@dirrmtry %%WWWDIR%%/htdocs/class/xoopsform -@dirrmtry %%WWWDIR%%/htdocs/class -@dirrmtry %%WWWDIR%%/htdocs/images/banners -@dirrmtry %%WWWDIR%%/htdocs/images/form -@dirrmtry %%WWWDIR%%/htdocs/images/icons -@dirrmtry %%WWWDIR%%/htdocs/images/subject -@dirrmtry %%WWWDIR%%/htdocs/images -@dirrmtry %%WWWDIR%%/htdocs/include -@dirrmtry %%WWWDIR%%/htdocs/install/class -@dirrmtry %%WWWDIR%%/htdocs/install/css -@dirrmtry %%WWWDIR%%/htdocs/install/img -@dirrmtry %%WWWDIR%%/htdocs/install/include -@dirrmtry %%WWWDIR%%/htdocs/install/js -@dirrmtry %%WWWDIR%%/htdocs/install/language/english -@dirrmtry %%WWWDIR%%/htdocs/install/language -@dirrmtry %%WWWDIR%%/htdocs/install/sql -@dirrmtry %%WWWDIR%%/htdocs/install -@dirrmtry %%WWWDIR%%/htdocs/kernel -@dirrmtry %%WWWDIR%%/htdocs/language/english/mail_template -@dirrmtry %%WWWDIR%%/htdocs/language/english -@dirrmtry %%WWWDIR%%/htdocs/language -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/admin -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/assets/css -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/assets/images -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/assets/js -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/assets -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/class -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/docs -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/include -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/language/english/help -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/language/english -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/language -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/preloads -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/sql -@dirrmtry %%WWWDIR%%/htdocs/modules/pm/templates -@dirrmtry %%WWWDIR%%/htdocs/modules/pm -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/admin -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/assets/css -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/assets/images/actions -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/assets/images -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/assets/js -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/assets -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/class -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/docs -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/include -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/language/english/help -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/language/english/mail_template -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/language/english -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/language -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/preloads -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/sql -@dirrmtry %%WWWDIR%%/htdocs/modules/profile/templates -@dirrmtry %%WWWDIR%%/htdocs/modules/profile -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/admin -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/blocks -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/docs -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/images -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/language/english/help -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/language/english -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/language -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/preload -@dirrmtry %%WWWDIR%%/htdocs/modules/protector/preloads -@dirrmtry %%WWWDIR%%/htdocs/modules/protector -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/avatars -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/banners -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/blocksadmin -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/comments -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/groups -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/mailusers -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/maintenance/dump -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/maintenance -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/modulesadmin -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/preferences -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/smilies -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/tplsets -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/userrank -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin/users -@dirrmtry %%WWWDIR%%/htdocs/modules/system/admin -@dirrmtry %%WWWDIR%%/htdocs/modules/system/blocks -@dirrmtry %%WWWDIR%%/htdocs/modules/system/class/thumbs/fonts -@dirrmtry %%WWWDIR%%/htdocs/modules/system/class/thumbs -@dirrmtry %%WWWDIR%%/htdocs/modules/system/class -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/code_mirror -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/base/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/base/minified/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/base/minified -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/base -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/cupertino/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/cupertino -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/redmond/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/redmond -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/smoothness/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/smoothness -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/south-street/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/south-street -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/ui-darkness/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/ui-darkness -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/ui-lightness/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui/ui-lightness -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css/ui -@dirrmtry %%WWWDIR%%/htdocs/modules/system/css -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/breadcrumb/default -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/breadcrumb -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/icons/default/xoops -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/icons/default -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/icons -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/menu -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images/mimetypes -@dirrmtry %%WWWDIR%%/htdocs/modules/system/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/include -@dirrmtry %%WWWDIR%%/htdocs/modules/system/js/code_mirror -@dirrmtry %%WWWDIR%%/htdocs/modules/system/js -@dirrmtry %%WWWDIR%%/htdocs/modules/system/language/english/admin -@dirrmtry %%WWWDIR%%/htdocs/modules/system/language/english/help -@dirrmtry %%WWWDIR%%/htdocs/modules/system/language/english/images -@dirrmtry %%WWWDIR%%/htdocs/modules/system/language/english -@dirrmtry %%WWWDIR%%/htdocs/modules/system/language -@dirrmtry %%WWWDIR%%/htdocs/modules/system/preloads -@dirrmtry %%WWWDIR%%/htdocs/modules/system/templates/admin -@dirrmtry %%WWWDIR%%/htdocs/modules/system/templates/blocks -@dirrmtry %%WWWDIR%%/htdocs/modules/system/templates -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/css -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/icons -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/img/dark -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/img/orange -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/img/silver -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/img -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/js -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/language/english -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/language -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default/xotpl -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/default -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/legacy/css -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/legacy/icons -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/legacy/img -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/legacy -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/thadmin -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/css -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/docs -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/extras -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/icons -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/img/icons -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/img -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/js -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/language/english -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/language -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/xotpl -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes/zetadigme -@dirrmtry %%WWWDIR%%/htdocs/modules/system/themes -@dirrmtry %%WWWDIR%%/htdocs/modules/system -@dirrmtry %%WWWDIR%%/htdocs/modules -@dirrmtry %%WWWDIR%%/htdocs/templates_c -@dirrmtry %%WWWDIR%%/htdocs/themes/default/icons -@dirrmtry %%WWWDIR%%/htdocs/themes/default/modules/system -@dirrmtry %%WWWDIR%%/htdocs/themes/default/modules -@dirrmtry %%WWWDIR%%/htdocs/themes/default -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/css -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/docs -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/extras -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/fonts -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/icons/action -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/icons/flags -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/icons/footer -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/icons/users -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/icons -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/img -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/js/img -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/js -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/language/english -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/language -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/modules/pm -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/modules/system/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/modules/system -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/modules -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/xoplugin -@dirrmtry %%WWWDIR%%/htdocs/themes/suico/xotpl -@dirrmtry %%WWWDIR%%/htdocs/themes/suico -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/css -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/docs/xoopstube/include -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/docs/xoopstube -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/docs -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/fonts -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/images -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/js/owl -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/js -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/language/english -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/language/pt-br_utf8 -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/language -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/contact -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/extgallery -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/newbb -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/news/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/news -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/obituaries -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/pm -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/profile -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/class -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher/class -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher/css -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/system/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/system -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/tag -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/tdmdownloads/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/tdmdownloads -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/xoopsfaq -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/xoopstube/blocks -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules/xoopstube -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/modules -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap/tpl -@dirrmtry %%WWWDIR%%/htdocs/themes/xbootstrap -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/css -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/icons/action -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/icons/footer -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/icons/users -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/icons -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/img -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/language/english -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/language -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/modules/system -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/modules -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis/xotpl -@dirrmtry %%WWWDIR%%/htdocs/themes/zetagenesis -@dirrmtry %%WWWDIR%%/htdocs/themes -@dirrmtry %%WWWDIR%%/htdocs/uploads/avatars -@dirrmtry %%WWWDIR%%/htdocs/uploads/files -@dirrmtry %%WWWDIR%%/htdocs/uploads/images -@dirrmtry %%WWWDIR%%/htdocs/uploads/ranks -@dirrmtry %%WWWDIR%%/htdocs/uploads/smilies -@dirrmtry %%WWWDIR%%/htdocs/uploads -@dirrmtry %%WWWDIR%%/htdocs/xoops_data/caches/smarty_cache -@dirrmtry %%WWWDIR%%/htdocs/xoops_data/caches/smarty_compile -@dirrmtry %%WWWDIR%%/htdocs/xoops_data/caches/xoops_cache -@dirrmtry %%WWWDIR%%/htdocs/xoops_data/caches -@dirrmtry %%WWWDIR%%/htdocs/xoops_data/configs -@dirrmtry %%WWWDIR%%/htdocs/xoops_data/data -@dirrmtry %%WWWDIR%%/htdocs/xoops_data -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/Frameworks/jquery/plugins -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/Frameworks/jquery -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/Frameworks -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/admin -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/blocks -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/class -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/configs -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/docs -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/filters_disabled -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/filters_enabled -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/images -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/include -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/language/english -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/language -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrDef/CSS -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrDef/HTML -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrDef/URI/Email -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrDef/URI -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrDef -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/AttrTransform -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/ChildDef -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/ConfigSchema/Builder -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/ConfigSchema/Interchange -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/ConfigSchema/schema -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/ConfigSchema -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/DefinitionCache/Decorator -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/DefinitionCache/Serializer -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/DefinitionCache -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/EntityLookup -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Filter -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/HTMLModule/Tidy -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/HTMLModule -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Injector -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Language/classes -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Language/messages -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Language -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Lexer -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Node -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Printer -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Strategy -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/TagTransform -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/Token -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/URIFilter -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/URIScheme -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier/VarParser -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library/HTMLPurifier -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/library -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/main -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector/sql -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules/protector -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib/modules -@dirrmtry %%WWWDIR%%/htdocs/xoops_lib -@dirrmtry %%WWWDIR%%/htdocs -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/docs/images +@dir %%WWWDIR%%/docs +@dir %%WWWDIR%%/extras/modules/system/admin/filemanager +@dir %%WWWDIR%%/extras/modules/system/admin +@dir %%WWWDIR%%/extras/modules/system/js +@dir %%WWWDIR%%/extras/modules/system/language/english/admin +@dir %%WWWDIR%%/extras/modules/system/language/english +@dir %%WWWDIR%%/extras/modules/system/language +@dir %%WWWDIR%%/extras/modules/system/templates/admin +@dir %%WWWDIR%%/extras/modules/system/templates +@dir %%WWWDIR%%/extras/modules/system +@dir %%WWWDIR%%/extras/modules +@dir %%WWWDIR%%/extras/mysqli +@dir %%WWWDIR%%/extras +@dir %%WWWDIR%%/htdocs/Frameworks/art +@dir %%WWWDIR%%/htdocs/Frameworks/compat/include +@dir %%WWWDIR%%/htdocs/Frameworks/compat +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons/16 +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons/32 +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons/bookmarks +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/icons +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/css +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/doc +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/images +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/language/english +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin/language +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses/moduleadmin +@dir %%WWWDIR%%/htdocs/Frameworks/moduleclasses +@dir %%WWWDIR%%/htdocs/Frameworks/textsanitizer +@dir %%WWWDIR%%/htdocs/Frameworks +@dir %%WWWDIR%%/htdocs/cache +@dir %%WWWDIR%%/htdocs/class/auth +@dir %%WWWDIR%%/htdocs/class/cache +@dir %%WWWDIR%%/htdocs/class/captcha/image/backgrounds +@dir %%WWWDIR%%/htdocs/class/captcha/image/fonts +@dir %%WWWDIR%%/htdocs/class/captcha/image/scripts +@dir %%WWWDIR%%/htdocs/class/captcha/image +@dir %%WWWDIR%%/htdocs/class/captcha/recaptcha +@dir %%WWWDIR%%/htdocs/class/captcha +@dir %%WWWDIR%%/htdocs/class/database +@dir %%WWWDIR%%/htdocs/class/file +@dir %%WWWDIR%%/htdocs/class/logger +@dir %%WWWDIR%%/htdocs/class/mail/phpmailer/language +@dir %%WWWDIR%%/htdocs/class/mail/phpmailer +@dir %%WWWDIR%%/htdocs/class/mail +@dir %%WWWDIR%%/htdocs/class/model +@dir %%WWWDIR%%/htdocs/class/smarty/configs +@dir %%WWWDIR%%/htdocs/class/smarty/internals +@dir %%WWWDIR%%/htdocs/class/smarty/plugins +@dir %%WWWDIR%%/htdocs/class/smarty/xoops_plugins +@dir %%WWWDIR%%/htdocs/class/smarty +@dir %%WWWDIR%%/htdocs/class/textsanitizer/censor +@dir %%WWWDIR%%/htdocs/class/textsanitizer/flash +@dir %%WWWDIR%%/htdocs/class/textsanitizer/iframe +@dir %%WWWDIR%%/htdocs/class/textsanitizer/image +@dir %%WWWDIR%%/htdocs/class/textsanitizer/li +@dir %%WWWDIR%%/htdocs/class/textsanitizer/mms +@dir %%WWWDIR%%/htdocs/class/textsanitizer/mp3 +@dir %%WWWDIR%%/htdocs/class/textsanitizer/rtsp +@dir %%WWWDIR%%/htdocs/class/textsanitizer/soundcloud +@dir %%WWWDIR%%/htdocs/class/textsanitizer/syntaxhighlight +@dir %%WWWDIR%%/htdocs/class/textsanitizer/textfilter +@dir %%WWWDIR%%/htdocs/class/textsanitizer/ul +@dir %%WWWDIR%%/htdocs/class/textsanitizer/wiki +@dir %%WWWDIR%%/htdocs/class/textsanitizer/wmp +@dir %%WWWDIR%%/htdocs/class/textsanitizer/youtube +@dir %%WWWDIR%%/htdocs/class/textsanitizer +@dir %%WWWDIR%%/htdocs/class/utility +@dir %%WWWDIR%%/htdocs/class/xml/rpc +@dir %%WWWDIR%%/htdocs/class/xml/rss +@dir %%WWWDIR%%/htdocs/class/xml +@dir %%WWWDIR%%/htdocs/class/xoopseditor/dhtmltextarea/language +@dir %%WWWDIR%%/htdocs/class/xoopseditor/dhtmltextarea +@dir %%WWWDIR%%/htdocs/class/xoopseditor/textarea/language +@dir %%WWWDIR%%/htdocs/class/xoopseditor/textarea +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/include +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/language +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advhr +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advimage +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlink +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/advlist +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/autolink +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/autoresize +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/autosave +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/bbcode +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/contextmenu +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/directionality +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/emotions +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/example_dependency +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullpage +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/fullscreen +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/iespell +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2 +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/inlinepopups +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/insertdatetime +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/layer +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/legacyoutput +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/lists +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/media +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/nonbreaking +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/noneditable +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/pagebreak +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/paste/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/paste/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/paste +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/preview/jscripts +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/preview +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/print +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/save +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/searchreplace +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/spellchecker +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/style +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/tabfocus +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/table +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/template +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualchars +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/wordcount +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopscode +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsemotions +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsimagemanager +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/css +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsmlcontent +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/xoopsquote +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/js +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/default +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7 +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced/skins +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/advanced +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/langs +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/default +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7 +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple/skins +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes/simple +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/themes +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/utils +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce/jscripts +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce/tinymce +@dir %%WWWDIR%%/htdocs/class/xoopseditor/tinymce +@dir %%WWWDIR%%/htdocs/class/xoopseditor +@dir %%WWWDIR%%/htdocs/class/xoopsform +@dir %%WWWDIR%%/htdocs/class +@dir %%WWWDIR%%/htdocs/images/banners +@dir %%WWWDIR%%/htdocs/images/form +@dir %%WWWDIR%%/htdocs/images/icons +@dir %%WWWDIR%%/htdocs/images/subject +@dir %%WWWDIR%%/htdocs/images +@dir %%WWWDIR%%/htdocs/include +@dir %%WWWDIR%%/htdocs/install/class +@dir %%WWWDIR%%/htdocs/install/css +@dir %%WWWDIR%%/htdocs/install/img +@dir %%WWWDIR%%/htdocs/install/include +@dir %%WWWDIR%%/htdocs/install/js +@dir %%WWWDIR%%/htdocs/install/language/english +@dir %%WWWDIR%%/htdocs/install/language +@dir %%WWWDIR%%/htdocs/install/sql +@dir %%WWWDIR%%/htdocs/install +@dir %%WWWDIR%%/htdocs/kernel +@dir %%WWWDIR%%/htdocs/language/english/mail_template +@dir %%WWWDIR%%/htdocs/language/english +@dir %%WWWDIR%%/htdocs/language +@dir %%WWWDIR%%/htdocs/modules/pm/admin +@dir %%WWWDIR%%/htdocs/modules/pm/assets/css +@dir %%WWWDIR%%/htdocs/modules/pm/assets/images +@dir %%WWWDIR%%/htdocs/modules/pm/assets/js +@dir %%WWWDIR%%/htdocs/modules/pm/assets +@dir %%WWWDIR%%/htdocs/modules/pm/class +@dir %%WWWDIR%%/htdocs/modules/pm/docs +@dir %%WWWDIR%%/htdocs/modules/pm/include +@dir %%WWWDIR%%/htdocs/modules/pm/language/english/help +@dir %%WWWDIR%%/htdocs/modules/pm/language/english +@dir %%WWWDIR%%/htdocs/modules/pm/language +@dir %%WWWDIR%%/htdocs/modules/pm/preloads +@dir %%WWWDIR%%/htdocs/modules/pm/sql +@dir %%WWWDIR%%/htdocs/modules/pm/templates +@dir %%WWWDIR%%/htdocs/modules/pm +@dir %%WWWDIR%%/htdocs/modules/profile/admin +@dir %%WWWDIR%%/htdocs/modules/profile/assets/css +@dir %%WWWDIR%%/htdocs/modules/profile/assets/images/actions +@dir %%WWWDIR%%/htdocs/modules/profile/assets/images +@dir %%WWWDIR%%/htdocs/modules/profile/assets/js +@dir %%WWWDIR%%/htdocs/modules/profile/assets +@dir %%WWWDIR%%/htdocs/modules/profile/class +@dir %%WWWDIR%%/htdocs/modules/profile/docs +@dir %%WWWDIR%%/htdocs/modules/profile/include +@dir %%WWWDIR%%/htdocs/modules/profile/language/english/help +@dir %%WWWDIR%%/htdocs/modules/profile/language/english/mail_template +@dir %%WWWDIR%%/htdocs/modules/profile/language/english +@dir %%WWWDIR%%/htdocs/modules/profile/language +@dir %%WWWDIR%%/htdocs/modules/profile/preloads +@dir %%WWWDIR%%/htdocs/modules/profile/sql +@dir %%WWWDIR%%/htdocs/modules/profile/templates +@dir %%WWWDIR%%/htdocs/modules/profile +@dir %%WWWDIR%%/htdocs/modules/protector/admin +@dir %%WWWDIR%%/htdocs/modules/protector/blocks +@dir %%WWWDIR%%/htdocs/modules/protector/docs +@dir %%WWWDIR%%/htdocs/modules/protector/images +@dir %%WWWDIR%%/htdocs/modules/protector/language/english/help +@dir %%WWWDIR%%/htdocs/modules/protector/language/english +@dir %%WWWDIR%%/htdocs/modules/protector/language +@dir %%WWWDIR%%/htdocs/modules/protector/preload +@dir %%WWWDIR%%/htdocs/modules/protector/preloads +@dir %%WWWDIR%%/htdocs/modules/protector +@dir %%WWWDIR%%/htdocs/modules/system/admin/avatars +@dir %%WWWDIR%%/htdocs/modules/system/admin/banners +@dir %%WWWDIR%%/htdocs/modules/system/admin/blocksadmin +@dir %%WWWDIR%%/htdocs/modules/system/admin/comments +@dir %%WWWDIR%%/htdocs/modules/system/admin/groups +@dir %%WWWDIR%%/htdocs/modules/system/admin/images +@dir %%WWWDIR%%/htdocs/modules/system/admin/mailusers +@dir %%WWWDIR%%/htdocs/modules/system/admin/maintenance/dump +@dir %%WWWDIR%%/htdocs/modules/system/admin/maintenance +@dir %%WWWDIR%%/htdocs/modules/system/admin/modulesadmin +@dir %%WWWDIR%%/htdocs/modules/system/admin/preferences +@dir %%WWWDIR%%/htdocs/modules/system/admin/smilies +@dir %%WWWDIR%%/htdocs/modules/system/admin/tplsets +@dir %%WWWDIR%%/htdocs/modules/system/admin/userrank +@dir %%WWWDIR%%/htdocs/modules/system/admin/users +@dir %%WWWDIR%%/htdocs/modules/system/admin +@dir %%WWWDIR%%/htdocs/modules/system/blocks +@dir %%WWWDIR%%/htdocs/modules/system/class/thumbs/fonts +@dir %%WWWDIR%%/htdocs/modules/system/class/thumbs +@dir %%WWWDIR%%/htdocs/modules/system/class +@dir %%WWWDIR%%/htdocs/modules/system/css/code_mirror +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/base/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/base/minified/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/base/minified +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/base +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/cupertino/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/cupertino +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/redmond/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/redmond +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/smoothness/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/smoothness +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/south-street/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/south-street +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/ui-darkness/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/ui-darkness +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/ui-lightness/images +@dir %%WWWDIR%%/htdocs/modules/system/css/ui/ui-lightness +@dir %%WWWDIR%%/htdocs/modules/system/css/ui +@dir %%WWWDIR%%/htdocs/modules/system/css +@dir %%WWWDIR%%/htdocs/modules/system/images/breadcrumb/default +@dir %%WWWDIR%%/htdocs/modules/system/images/breadcrumb +@dir %%WWWDIR%%/htdocs/modules/system/images/icons/default/xoops +@dir %%WWWDIR%%/htdocs/modules/system/images/icons/default +@dir %%WWWDIR%%/htdocs/modules/system/images/icons +@dir %%WWWDIR%%/htdocs/modules/system/images/menu +@dir %%WWWDIR%%/htdocs/modules/system/images/mimetypes +@dir %%WWWDIR%%/htdocs/modules/system/images +@dir %%WWWDIR%%/htdocs/modules/system/include +@dir %%WWWDIR%%/htdocs/modules/system/js/code_mirror +@dir %%WWWDIR%%/htdocs/modules/system/js +@dir %%WWWDIR%%/htdocs/modules/system/language/english/admin +@dir %%WWWDIR%%/htdocs/modules/system/language/english/help +@dir %%WWWDIR%%/htdocs/modules/system/language/english/images +@dir %%WWWDIR%%/htdocs/modules/system/language/english +@dir %%WWWDIR%%/htdocs/modules/system/language +@dir %%WWWDIR%%/htdocs/modules/system/preloads +@dir %%WWWDIR%%/htdocs/modules/system/templates/admin +@dir %%WWWDIR%%/htdocs/modules/system/templates/blocks +@dir %%WWWDIR%%/htdocs/modules/system/templates +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/css +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/icons +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/img/dark +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/img/orange +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/img/silver +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/img +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/js +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/language/english +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/language +@dir %%WWWDIR%%/htdocs/modules/system/themes/default/xotpl +@dir %%WWWDIR%%/htdocs/modules/system/themes/default +@dir %%WWWDIR%%/htdocs/modules/system/themes/legacy/css +@dir %%WWWDIR%%/htdocs/modules/system/themes/legacy/icons +@dir %%WWWDIR%%/htdocs/modules/system/themes/legacy/img +@dir %%WWWDIR%%/htdocs/modules/system/themes/legacy +@dir %%WWWDIR%%/htdocs/modules/system/themes/thadmin +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/css +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/docs +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/extras +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/icons +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/img/icons +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/img +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/js +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/language/english +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/language +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme/xotpl +@dir %%WWWDIR%%/htdocs/modules/system/themes/zetadigme +@dir %%WWWDIR%%/htdocs/modules/system/themes +@dir %%WWWDIR%%/htdocs/modules/system +@dir %%WWWDIR%%/htdocs/modules +@dir %%WWWDIR%%/htdocs/templates_c +@dir %%WWWDIR%%/htdocs/themes/default/icons +@dir %%WWWDIR%%/htdocs/themes/default/modules/system +@dir %%WWWDIR%%/htdocs/themes/default/modules +@dir %%WWWDIR%%/htdocs/themes/default +@dir %%WWWDIR%%/htdocs/themes/suico/css +@dir %%WWWDIR%%/htdocs/themes/suico/docs +@dir %%WWWDIR%%/htdocs/themes/suico/extras +@dir %%WWWDIR%%/htdocs/themes/suico/fonts +@dir %%WWWDIR%%/htdocs/themes/suico/icons/action +@dir %%WWWDIR%%/htdocs/themes/suico/icons/flags +@dir %%WWWDIR%%/htdocs/themes/suico/icons/footer +@dir %%WWWDIR%%/htdocs/themes/suico/icons/users +@dir %%WWWDIR%%/htdocs/themes/suico/icons +@dir %%WWWDIR%%/htdocs/themes/suico/img +@dir %%WWWDIR%%/htdocs/themes/suico/js/img +@dir %%WWWDIR%%/htdocs/themes/suico/js +@dir %%WWWDIR%%/htdocs/themes/suico/language/english +@dir %%WWWDIR%%/htdocs/themes/suico/language +@dir %%WWWDIR%%/htdocs/themes/suico/modules/pm +@dir %%WWWDIR%%/htdocs/themes/suico/modules/system/blocks +@dir %%WWWDIR%%/htdocs/themes/suico/modules/system +@dir %%WWWDIR%%/htdocs/themes/suico/modules +@dir %%WWWDIR%%/htdocs/themes/suico/xoplugin +@dir %%WWWDIR%%/htdocs/themes/suico/xotpl +@dir %%WWWDIR%%/htdocs/themes/suico +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/css +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/docs/xoopstube/include +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/docs/xoopstube +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/docs +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/fonts +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/images +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/js/owl +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/js +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/language/english +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/language/pt-br_utf8 +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/language +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/contact +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/extgallery +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/newbb +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/news/blocks +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/news +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/obituaries +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/pm +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/profile +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/blocks +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/class +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher/blocks +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher/class +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher/css +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules/publisher +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes/modules +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher/xoops_and_module_changes +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/publisher +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/system/blocks +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/system +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/tag +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/tdmdownloads/blocks +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/tdmdownloads +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/xoopsfaq +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/xoopstube/blocks +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules/xoopstube +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/modules +@dir %%WWWDIR%%/htdocs/themes/xbootstrap/tpl +@dir %%WWWDIR%%/htdocs/themes/xbootstrap +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/css +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/icons/action +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/icons/footer +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/icons/users +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/icons +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/img +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/language/english +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/language +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/modules/system +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/modules +@dir %%WWWDIR%%/htdocs/themes/zetagenesis/xotpl +@dir %%WWWDIR%%/htdocs/themes/zetagenesis +@dir %%WWWDIR%%/htdocs/themes +@dir %%WWWDIR%%/htdocs/uploads/avatars +@dir %%WWWDIR%%/htdocs/uploads/files +@dir %%WWWDIR%%/htdocs/uploads/images +@dir %%WWWDIR%%/htdocs/uploads/ranks +@dir %%WWWDIR%%/htdocs/uploads/smilies +@dir %%WWWDIR%%/htdocs/uploads +@dir %%WWWDIR%%/htdocs/xoops_data/caches/smarty_cache +@dir %%WWWDIR%%/htdocs/xoops_data/caches/smarty_compile +@dir %%WWWDIR%%/htdocs/xoops_data/caches/xoops_cache *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 09:21:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DE711AE4; Sun, 5 Oct 2014 09:21:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A905BB43; Sun, 5 Oct 2014 09:21:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s959LsKI075820; Sun, 5 Oct 2014 09:21:54 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s959Lsm0075818; Sun, 5 Oct 2014 09:21:54 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410050921.s959Lsm0075818@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 09:21:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370044 - head/net-mgmt/kismet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 09:21:55 -0000 Author: antoine Date: Sun Oct 5 09:21:53 2014 New Revision: 370044 URL: https://svnweb.freebsd.org/changeset/ports/370044 QAT: https://qat.redports.org/buildarchive/r370044/ Log: Allow staging as a regular user Modified: head/net-mgmt/kismet/Makefile head/net-mgmt/kismet/pkg-plist Modified: head/net-mgmt/kismet/Makefile ============================================================================== --- head/net-mgmt/kismet/Makefile Sun Oct 5 09:19:05 2014 (r370043) +++ head/net-mgmt/kismet/Makefile Sun Oct 5 09:21:53 2014 (r370044) @@ -80,6 +80,10 @@ post-patch: @${FIND} ${WRKSRC} -type f -name 'Makefile' -print0 | ${XARGS} -0 \ ${REINPLACE_CMD} -E \ '/C(XX)?FLAGS[[:blank:]]*\+=/s/ -g / /' + @${FIND} ${WRKSRC} -type f \( -name Makefile -o -name Makefile.in \) -print0 | ${XARGS} -0 \ + ${REINPLACE_CMD} -e 's,-o $$(INSTUSR) -g $$(INSTGRP),,' \ + -e 's,-o $$(INSTUSR) -g $$(MANGRP),,' \ + -e 's,-o $$(INSTUSR) -g $$(SUIDGROUP) -m 4550,,' post-build: @cd ${WRKSRC}; ${STRIP_CMD} kismet_client kismet_drone kismet_server */*.so Modified: head/net-mgmt/kismet/pkg-plist ============================================================================== --- head/net-mgmt/kismet/pkg-plist Sun Oct 5 09:19:05 2014 (r370043) +++ head/net-mgmt/kismet/pkg-plist Sun Oct 5 09:21:53 2014 (r370044) @@ -1,14 +1,10 @@ bin/kismet -@group %%SUIDGROUP%% -%%SUID%%bin/kismet_capture -@group +%%SUID%%@(,%%SUIDGROUP%%,4550) bin/kismet_capture bin/kismet_client bin/kismet_drone bin/kismet_server -@unexec if cmp -s %D/etc/kismet.conf %D/etc/kismet.conf.sample; then rm -f %D/etc/kismet.conf; fi -etc/kismet.conf.sample -@unexec if cmp -s %D/etc/kismet_drone.conf %D/etc/kismet_drone.conf.sample; then rm -f %D/etc/kismet_drone.conf; fi -etc/kismet_drone.conf.sample +@sample etc/kismet.conf.sample +@sample etc/kismet_drone.conf.sample %%PLUGINS%%lib/kismet/aircrack-kismet.so %%PLUGINS%%lib/kismet/alertsyslog.so %%PLUGINS%%lib/kismet/autowep-kismet.so @@ -24,7 +20,3 @@ man/man5/kismet_drone.conf.5.gz %%DATADIR%%/wav/gpslost.wav %%DATADIR%%/wav/new.wav %%DATADIR%%/wav/packet.wav -@dirrm %%DATADIR%%/wav -@dirrm %%DATADIR%% -%%PLUGINS%%@dirrm lib/kismet -%%PLUGINS%%@dirrm lib/kismet_client From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 09:25:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AFEBC24; Sun, 5 Oct 2014 09:25:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1312B7B; Sun, 5 Oct 2014 09:25:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s959PSCJ076406; Sun, 5 Oct 2014 09:25:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s959PSa9076405; Sun, 5 Oct 2014 09:25:28 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410050925.s959PSa9076405@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 09:25:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370045 - head/www/atutor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 09:25:29 -0000 Author: antoine Date: Sun Oct 5 09:25:28 2014 New Revision: 370045 URL: https://svnweb.freebsd.org/changeset/ports/370045 QAT: https://qat.redports.org/buildarchive/r370045/ Log: Allow staging as a regular user Modified: head/www/atutor/Makefile Modified: head/www/atutor/Makefile ============================================================================== --- head/www/atutor/Makefile Sun Oct 5 09:21:53 2014 (r370044) +++ head/www/atutor/Makefile Sun Oct 5 09:25:28 2014 (r370045) @@ -13,8 +13,6 @@ COMMENT= Open Source Web-based Learning USE_PHP= session mbstring zlib mysql WRKSRC= ${WRKDIR}/ATutor -.include - NO_BUILD= yes PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message @@ -24,24 +22,17 @@ ATUTDATDIR= ${WWWDIR}/content ATUTCONFIG= include/config.inc.php pre-install: - @${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${ATUTDIR}?g" >${PLIST} - @${ECHO} @dirrm ${ATUTDIR}/content >> ${PLIST} - @${FIND} -s -d ${WRKSRC} -type d | ${SED} "s?${WRKSRC}?@dirrm ${ATUTDIR}?g" >> ${PLIST} + @${ECHO_CMD} -e '@owner ${WWWOWN}\n@group ${WWWGRP}' > ${PLIST} + @${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${ATUTDIR}?g" >> ${PLIST} + @${ECHO} @dir ${ATUTDIR}/content >> ${PLIST} + @${FIND} -s -d ${WRKSRC} -type d | ${SED} "s?${WRKSRC}?@dir ${ATUTDIR}?g" >> ${PLIST} + @${ECHO_CMD} -e '@owner\n@group' >> ${PLIST} do-install: @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} \ - ${WWWDIR}' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${WWWDIR} -type d -exec ${CHMOD} a+x {} \; @${INSTALL_DATA} -d ${STAGEDIR}${ATUTDATDIR} @${CHMOD} 777 ${STAGEDIR}${ATUTDATDIR} - @${ECHO_CMD} '@exec ${CHMOD} 777 ${ATUTDATDIR}' >> ${TMPPLIST} @${CHMOD} 666 ${STAGEDIR}${WWWDIR}/${ATUTCONFIG} - @${ECHO_CMD} '@exec ${CHMOD} 666 \ - ${WWWDIR}/${ATUTCONFIG}' >> ${TMPPLIST} - -post-install: - @${CAT} ${PKGMESSAGE} -.include +.include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 09:29:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B61E3E32; Sun, 5 Oct 2014 09:29:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8808DBBF; Sun, 5 Oct 2014 09:29:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s959TfSw076995; Sun, 5 Oct 2014 09:29:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s959TfYs076992; Sun, 5 Oct 2014 09:29:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410050929.s959TfYs076992@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 09:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370046 - head/www/phpmp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 09:29:41 -0000 Author: antoine Date: Sun Oct 5 09:29:40 2014 New Revision: 370046 URL: https://svnweb.freebsd.org/changeset/ports/370046 QAT: https://qat.redports.org/buildarchive/r370046/ Log: - Allow staging as a regular user - Bump portrevision as files were not packaged with intended owner Modified: head/www/phpmp/Makefile head/www/phpmp/pkg-plist Modified: head/www/phpmp/Makefile ============================================================================== --- head/www/phpmp/Makefile Sun Oct 5 09:25:28 2014 (r370045) +++ head/www/phpmp/Makefile Sun Oct 5 09:29:40 2014 (r370046) @@ -3,6 +3,7 @@ PORTNAME= phpmp PORTVERSION= 0.12.0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://www.bayofrum.net/dist/${PORTNAME}/ @@ -15,15 +16,11 @@ NO_BUILD= yes USE_PHP= pcre sockets PHPMP?= ${WWWDIR_REL} -PLIST_SUB+= PHPMP=${PHPMP} +PLIST_SUB= PHPMP="${PHPMP}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${PHPMP} @${CP} -R ${WRKSRC}/ ${STAGEDIR}${PREFIX}/${PHPMP} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${PREFIX}/${PHPMP} @${CHMOD} -R 755 ${STAGEDIR}${PREFIX}/${PHPMP} -post-install: - @${CAT} ${PKGMESSAGE} - .include Modified: head/www/phpmp/pkg-plist ============================================================================== --- head/www/phpmp/pkg-plist Sun Oct 5 09:25:28 2014 (r370045) +++ head/www/phpmp/pkg-plist Sun Oct 5 09:29:40 2014 (r370046) @@ -1,11 +1,11 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% %%PHPMP%%/COPYING %%PHPMP%%/ChangeLog %%PHPMP%%/INSTALL %%PHPMP%%/README %%PHPMP%%/TODO -@unexec if cmp -s %D/%%PHPMP%%/config.php.sample %D/%%PHPMP%%/config.php; then rm -f %D/%%PHPMP%%/config.php; fi -%%PHPMP%%/config.php.sample -@exec if [ ! -f %D/%%PHPMP%%/config.php ] ; then cp -p %D/%F %B/config.php; fi +@sample %%PHPMP%%/config.php.sample %%PHPMP%%/features.php %%PHPMP%%/index.php %%PHPMP%%/info.php @@ -18,4 +18,6 @@ %%PHPMP%%/transparent.gif %%PHPMP%%/utils.php %%PHPMP%%/xml-parse.php -@dirrmtry %%PHPMP%% +@dir %%PHPMP%% +@owner +@group From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 09:37:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A283126; Sun, 5 Oct 2014 09:37:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6ADEDCAA; Sun, 5 Oct 2014 09:37:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s959bHQT081452; Sun, 5 Oct 2014 09:37:17 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s959bHID081450; Sun, 5 Oct 2014 09:37:17 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410050937.s959bHID081450@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 5 Oct 2014 09:37:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370047 - in head/emulators/mame: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 09:37:17 -0000 Author: marino Date: Sun Oct 5 09:37:16 2014 New Revision: 370047 URL: https://svnweb.freebsd.org/changeset/ports/370047 QAT: https://qat.redports.org/buildarchive/r370047/ Log: emulators/mame: clean up, remove zip dependency, support DragonFly This port has a post-extract target that wants to use native unzip on an extracted file. This is an issue for DragonFly, but tar can handle the zip file just file on both platforms, so switch to that. DragonFly still has the incomplete FILE that it inherited from FreeBSD, which is really a pain when FILE is a parameter in c++ routines. This adds an extra patch for DragonFly to use an alternative default logging callbacks to all mame to finally build on this platform. While here: - remove use of ${PORTNAME} where "mame" is the only correct value - use ".zip" instead of extract variable - Unmask installation commands - Group mkdir commands into one - Use NOT_FOR_ARCHS instead of conditional BROKEN - Convert to USES=python - Remove unnecessary conversion of -lpthread => -pthread Added: head/emulators/mame/files/extra-patch-src_osd_osdcore.c (contents, props changed) Modified: head/emulators/mame/Makefile Modified: head/emulators/mame/Makefile ============================================================================== --- head/emulators/mame/Makefile Sun Oct 5 09:29:40 2014 (r370046) +++ head/emulators/mame/Makefile Sun Oct 5 09:37:16 2014 (r370047) @@ -8,9 +8,9 @@ CATEGORIES= emulators MASTER_SITES= http://mamedev.mameworld.info/releases/ \ http://emumovies.com/aarongiles/releases/ \ http://mamedev.org/updates/:patchsets -DISTFILES= ${PORTNAME}${PORTVERSION:S/.//:C/p[0-9]*$//}s${EXTRACT_SUFX} \ +DISTFILES= mame${PORTVERSION:S/.//:C/p[0-9]*$//}s.zip \ ${UPDATE_PATCHES:C/$/.zip:patchsets/} -DIST_SUBDIR= ${PORTNAME} +DIST_SUBDIR= mame MAINTAINER= ports@FreeBSD.org COMMENT= Multi Arcade Machine Emulator @@ -21,13 +21,14 @@ LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audi libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= liberation-fonts-ttf>=0:${PORTSDIR}/x11-fonts/liberation-fonts-ttf -NO_WRKSUBDIR= yes +NOT_FOR_ARCHS= ia64 powerpc sparc64 -USES= dos2unix gmake pkgconfig shebangfix zip +USES= dos2unix gmake pkgconfig python:2,build shebangfix DOS2UNIX_FILES= src/lib/lib7z/CpuArch.h \ src/lib/lua/luaconf.h \ src/osd/eigccx86.h \ src/osd/eminline.h \ + src/osd/osdcore.c \ src/osd/sdl/osinline.h \ src/osd/sdl/sdlsync_ntc.c \ src/osd/sdl/sdlsync_os2.c @@ -37,12 +38,12 @@ SHEBANG_FILES= src/emu/cpu/m6502/m6502ma src/emu/cpu/tms57002/tmsmake.py USE_XORG= xext xi xinerama xrender USE_GL= gl -USE_PYTHON_BUILD=2 +NO_WRKSUBDIR= yes MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \ LD="${CXX}" PYTHON="${PYTHON_CMD}" \ OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ - TARGET="${PORTNAME}" FULLNAME="${PORTNAME}" \ - SDL_NETWORK="pcap" + TARGET="mame" FULLNAME="mame" SDL_NETWORK="pcap" +MAKE_ARGS= TARGETOS=freebsd MAKEFILE= makefile SUB_FILES= pkg-message @@ -73,19 +74,22 @@ UPDATE_PATCHES!= /usr/bin/jot -s " " \ USE_SDL= sdl ttf .endif -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= Does not install on ia64, powerpc, or sparc64 +.if ${ARCH} == amd64 +MAKE_ARGS+= PTR64=1 +.endif + +.if ${OPSYS} == DragonFly +EXTRA_PATCHES= ${FILESDIR}/extra-patch-src_osd_osdcore.c .endif post-extract: - @(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} mame.zip \ - ${EXTRACT_AFTER_ARGS}) + (cd ${WRKDIR} && ${TAR} -xf mame.zip) @${RM} -f ${WRKDIR}/mame.zip # Use post-extract target to get in before dos2unix-isation .if defined(UPDATE_PATCHES) . for patch in ${UPDATE_PATCHES:S/_/./} @${ECHO_MSG} -n "===> Applying upstream development patch ${patch}... " - @${PATCH} ${PATCH_ARGS} < ${WRKSRC}/${patch} + ${PATCH} ${PATCH_ARGS} < ${WRKSRC}/${patch} @${ECHO_MSG} "[DONE]" . endfor .endif @@ -102,29 +106,25 @@ post-patch: s|-O$$(OPTIMIZE)|| ; \ /--warn-common/s|= -Wl,|= $$(GCC_LDFLAGS) -Wl,| ; \ /LDFLAGS/s|-s|| ; \ - /LIBS/s|-lstdc++|| ; \ - /LIBS/s|-lpthread|-pthread|' ${WRKSRC}/makefile + /LIBS/s|-lstdc++||' ${WRKSRC}/makefile @${REINPLACE_CMD} -e \ - '/LIBS/s|-lpthread|-pthread| ; \ - /-isystem/s|^|#| ; \ + '/-isystem/s|^|#| ; \ /X11R6/s|^|#|' ${WRKSRC}/src/osd/sdl/sdl.mak do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} \ - ${STAGEDIR}${PREFIX}/bin) - @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME} -.for F in chdman jedutil ldresample ldverify romcmp testkeys unidasm - (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${F} \ - ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}) -.endfor - @${MKDIR} ${STAGEDIR}${DATADIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR}) - @(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR}) - @(cd ${WRKSRC}/src/osd/sdl && ${COPYTREE_SHARE} keymaps \ - ${STAGEDIR}${DATADIR}) - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + @${MKDIR} ${STAGEDIR}${DATADIR} \ + ${STAGEDIR}${DOCSDIR} \ + ${STAGEDIR}${EXAMPLESDIR} \ + ${STAGEDIR}${PREFIX}/libexec/mame + ${INSTALL_PROGRAM} ${WRKSRC}/mame ${STAGEDIR}${PREFIX}/bin + (cd ${WRKSRC} && \ + ${INSTALL_PROGRAM} chdman jedutil ldresample ldverify \ + romcmp testkeys unidasm ${STAGEDIR}${PREFIX}/libexec/mame) + (cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC}/src/osd/sdl && \ + ${COPYTREE_SHARE} keymaps ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) (cd ${FILESDIR} && ${INSTALL_DATA} mame.ini ${STAGEDIR}${EXAMPLESDIR}) .include Added: head/emulators/mame/files/extra-patch-src_osd_osdcore.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/mame/files/extra-patch-src_osd_osdcore.c Sun Oct 5 09:37:16 2014 (r370047) @@ -0,0 +1,63 @@ +--- src/osd/osdcore.c.orig 2014-10-05 09:30:10 UTC ++++ src/osd/osdcore.c +@@ -2,6 +2,10 @@ + #include "osdcore.h" + #include "portmidi/portmidi.h" + ++typedef struct __FILE_public FILEX; ++FILEX dummyval; ++FILEX * dummy = &dummyval; ++ + bool g_print_verbose = false; + + +@@ -10,9 +14,14 @@ bool g_print_verbose = false; + for file output + -------------------------------------------------*/ + +-void osd_file_output_callback(FILE *param, const char *format, va_list argptr) ++void osd_file_std_output_callback(FILEX *param, const char *format, va_list argptr) ++{ ++ vfprintf(stdout, format, argptr); ++} ++ ++void osd_file_err_output_callback(FILEX *param, const char *format, va_list argptr) + { +- vfprintf(param, format, argptr); ++ vfprintf(stderr, format, argptr); + } + + +@@ -21,7 +30,7 @@ void osd_file_output_callback(FILE *para + for no output + -------------------------------------------------*/ + +-void osd_null_output_callback(FILE *param, const char *format, va_list argptr) ++void osd_null_std_output_callback(FILEX *param, const char *format, va_list argptr) + { + } + +@@ -30,16 +39,16 @@ void osd_null_output_callback(FILE *para + /* output channels */ + static output_delegate output_cb[OSD_OUTPUT_CHANNEL_COUNT] = + { +- output_delegate(FUNC(osd_file_output_callback), stderr), // OSD_OUTPUT_CHANNEL_ERROR +- output_delegate(FUNC(osd_file_output_callback), stderr), // OSD_OUTPUT_CHANNEL_WARNING +- output_delegate(FUNC(osd_file_output_callback), stdout), // OSD_OUTPUT_CHANNEL_INFO ++ output_delegate(FUNC(osd_file_err_output_callback), dummy), // OSD_OUTPUT_CHANNEL_ERROR ++ output_delegate(FUNC(osd_file_err_output_callback), dummy), // OSD_OUTPUT_CHANNEL_WARNING ++ output_delegate(FUNC(osd_file_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_INFO + #ifdef MAME_DEBUG +- output_delegate(FUNC(osd_file_output_callback), stdout), // OSD_OUTPUT_CHANNEL_DEBUG ++ output_delegate(FUNC(osd_file_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_DEBUG + #else +- output_delegate(FUNC(osd_null_output_callback), stdout), // OSD_OUTPUT_CHANNEL_DEBUG ++ output_delegate(FUNC(osd_null_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_DEBUG + #endif +- output_delegate(FUNC(osd_file_output_callback), stdout), // OSD_OUTPUT_CHANNEL_VERBOSE +- output_delegate(FUNC(osd_file_output_callback), stdout) // OSD_OUTPUT_CHANNEL_LOG ++ output_delegate(FUNC(osd_file_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_VERBOSE ++ output_delegate(FUNC(osd_file_std_output_callback), dummy) // OSD_OUTPUT_CHANNEL_LOG + }; + + From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 09:57:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49FBB63A; Sun, 5 Oct 2014 09:57:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A7EEEE0; Sun, 5 Oct 2014 09:57:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s959vHRh090619; Sun, 5 Oct 2014 09:57:17 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s959vHoX090618; Sun, 5 Oct 2014 09:57:17 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410050957.s959vHoX090618@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 09:57:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370048 - head/net/boinc-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 09:57:17 -0000 Author: tijl Date: Sun Oct 5 09:57:16 2014 New Revision: 370048 URL: https://svnweb.freebsd.org/changeset/ports/370048 QAT: https://qat.redports.org/buildarchive/r370048/ Log: - Convert to USES=autoreconf - Use CXX compiler for OBJCXX so libtool recognises it. On FreeBSD 8 and 9 configure would set OBJCXX to g++ while CXX was c++. - Add NLS option - Add missing Xorg dependencies to MANAGER option - Combine post-extract, post-patch and post-configure into post-patch PR: 194068 Modified: head/net/boinc-client/Makefile Modified: head/net/boinc-client/Makefile ============================================================================== --- head/net/boinc-client/Makefile Sun Oct 5 09:37:16 2014 (r370047) +++ head/net/boinc-client/Makefile Sun Oct 5 09:57:16 2014 (r370048) @@ -3,7 +3,7 @@ PORTNAME= boinc-client PORTVERSION= 7.2.33 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_LOCAL} \ ftp://rene-ladan.nl/pub/distfiles/ @@ -14,8 +14,7 @@ COMMENT= Berkeley Open Infrastructure fo GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= dos2unix gmake libtool pkgconfig tar:xz -USE_AUTOTOOLS= autoconf:env automake:env libtoolize:env +USES= autoreconf dos2unix gmake libtool pkgconfig tar:xz USE_LDCONFIG= yes DOS2UNIX_GLOB= *.xpm @@ -33,10 +32,11 @@ SUB_LIST= BOINC_CLIENT_HOME="${BOINC_CLI PREFIX="${PREFIX}" LOCALBASE="${LOCALBASE}" CONFIGURE_ARGS= --disable-server +CONFIGURE_ENV= OBJCXX="${CXX}" CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_DEFINE= CLIENT MANAGER X11 LINUX USER SKINS +OPTIONS_DEFINE= CLIENT MANAGER NLS X11 LINUX USER SKINS OPTIONS_DEFAULT= CLIENT MANAGER X11 USER OPTIONS_GROUP= SCRIPT OPTIONS_GROUP_SCRIPT= NO_GUI_RPC NO_NET_INFO @@ -46,7 +46,6 @@ X11_DESC= Build graphics API LINUX_DESC= Accept Linux science applications USER_DESC= Create/check BOINC client user and directory SKINS_DESC= Install more skins for BOINC manager -#OPTIMIZE_DESC= Enable compiler optimization flags SCRIPT_DESC= Command line options in script NO_GUI_RPC_DESC= Disable GUI RPC and socket (breaks boinc_curses) NO_NET_INFO_DESC= Do not send host address and name to servers @@ -59,7 +58,7 @@ MANAGER_LIB_DEPENDS= libnotify.so:${PORT MANAGER_CONFIGURE_ON= --with-sqlite3-prefix=${LOCALBASE} MANAGER_CONFIGURE_OFF= --with-wx-config=false --without-x MANAGER_CONFIGURE_ENABLE=manager -MANAGER_USE= XORG=x11 WX=2.8 +MANAGER_USE= XORG=x11,xext,xscrnsaver WX=2.8 CLIENT_CONFIGURE_ENABLE=client CLIENT_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl @@ -69,15 +68,13 @@ CLIENT_USE= RC_SUBR=boinc-client LINUX_CONFIGURE_ON= --with-boinc-alt-platform=i686-pc-linux-gnu LINUX_USE= LINUX=yes -#OPTIMIZE_CONFIGURE_ENBABLE= optimize - X11_LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg X11_USE= GL=glut XORG=xmu,xi +X11_CONFIGURE_OFF= ax_cv_check_glut_libglut=no .include .if ${PORT_OPTIONS:MMANAGER} -#PORT_OPTIONS+= CLIENT X11 WX_CONF_ARGS= absolute WX_UNICODE= yes . if ${OSVERSION} < 900506 || (${OSVERSION} >= 1000000 && ${OSVERSION} < 1000002) @@ -91,15 +88,6 @@ SUB_LIST+= OPTION_MANAGER="" .if ${PORT_OPTIONS:MCLIENT} SUB_LIST+= OPTION_NO_GUI_RPC=${PORT_OPTIONS:MNO_GUI_RPC:S/^NO_GUI_RPC$/--no_gui_rpc/} \ OPTION_NO_NET_INFO=${PORT_OPTIONS:MNO_NET_INFO:S/^NO_NET_INFO$/--suppress_net_info/} -#.else -#PORT_OPTIONS:= ${PORT_OPTIONS:NUSER} -.endif - -# XXX NLS is not filled in by OPTIONS_SUB ? -.if ${PORT_OPTIONS:MNLS} -PLIST_SUB+= NLS="" -.else -PLIST_SUB+= NLS="@comment " .endif .if ${PORT_OPTIONS:MUSER} @@ -108,15 +96,18 @@ SUB_LIST+= OPTION_USER="true" SUB_LIST+= OPTION_USER="" .endif -PORT_OPTIONS:= ${PORT_OPTIONS:O:u} - +post-patch: + @${REINPLACE_CMD} -e 's|@PREFIX@|${PREFIX}|' \ + ${WRKSRC}/client/hostinfo_unix.cpp + @${REINPLACE_CMD} -e 's|client/scripts||' ${WRKSRC}/Makefile.am + @${REINPLACE_CMD} -e 's|$$$$mydir/$$$$ldir|&/LC_MESSAGES|' \ + ${WRKSRC}/locale/Makefile.am # avoid build conflict with archivers/libzip -post-extract: - ${MV} ${WRKSRC}/zip/unzip/zip.h ${WRKSRC}/zip/unzip/boinczip.h - ${MV} ${WRKSRC}/zip/zip/zip.h ${WRKSRC}/zip/zip/boinczip.h - ${REINPLACE_CMD} -e 's|zip/zip.h|zip/boinczip.h|' \ + @${MV} ${WRKSRC}/zip/unzip/zip.h ${WRKSRC}/zip/unzip/boinczip.h + @${MV} ${WRKSRC}/zip/zip/zip.h ${WRKSRC}/zip/zip/boinczip.h + @${REINPLACE_CMD} -e 's|zip/zip.h|zip/boinczip.h|' \ ${WRKSRC}/zip/boinc_zip.cpp - ${REINPLACE_CMD} -e 's|"zip.h"|"boinczip.h"|' \ + @${REINPLACE_CMD} -e 's|"zip.h"|"boinczip.h"|' \ ${WRKSRC}/zip/unzip/crc32.c ${WRKSRC}/zip/unzip/ttyio.c \ ${WRKSRC}/zip/zip/deflate.c ${WRKSRC}/zip/zip/trees.c \ ${WRKSRC}/zip/zip/unix/z_unix.c ${WRKSRC}/zip/zip/util.c \ @@ -124,26 +115,6 @@ post-extract: ${WRKSRC}/zip/zip/zip.c ${WRKSRC}/zip/zip/zipfile.c \ ${WRKSRC}/zip/zip/zipup.c -post-patch: - ${REINPLACE_CMD} -e 's|@PREFIX@|${PREFIX}|' \ - ${WRKSRC}/client/hostinfo_unix.cpp - -pre-configure: - (cd ${WRKSRC} ; ./_autosetup) - -post-configure: - @${REINPLACE_CMD} -e 's|client/scripts||' ${WRKSRC}/Makefile.in -.if ${PORT_OPTIONS:MNLS} - @${REINPLACE_CMD} -e 's|$$$$mydir/$$$$ldir|&/LC_MESSAGES|' \ - ${WRKSRC}/locale/Makefile.in -.else - @${REINPLACE_CMD} -e 's| locale||' ${WRKSRC}/Makefile.in -.endif -.if ! ${PORT_OPTIONS:MX11} - @${REINPLACE_CMD} -e 's|@BUILD_GRAPHICS_API_TRUE@|#&|' \ - ${WRKSRC}/api/Makefile.in -.endif - post-install: .if ${PORT_OPTIONS:MMANAGER} || ${PORT_OPTIONS:MX11} ${MKDIR} ${STAGEDIR}${PREFIX}/share/boinc From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 10:06:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3A9E5878; Sun, 5 Oct 2014 10:06:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2680EB; Sun, 5 Oct 2014 10:06:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95A6aD0095325; Sun, 5 Oct 2014 10:06:36 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95A6Zs9095323; Sun, 5 Oct 2014 10:06:35 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051006.s95A6Zs9095323@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 10:06:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370049 - in head/devel/liblangtag: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 10:06:36 -0000 Author: tijl Date: Sun Oct 5 10:06:35 2014 New Revision: 370049 URL: https://svnweb.freebsd.org/changeset/ports/370049 QAT: https://qat.redports.org/buildarchive/r370049/ Log: Patch configure to avoid dependency on devel/libtool Added: head/devel/liblangtag/files/ head/devel/liblangtag/files/patch-configure (contents, props changed) Modified: head/devel/liblangtag/Makefile Modified: head/devel/liblangtag/Makefile ============================================================================== --- head/devel/liblangtag/Makefile Sun Oct 5 09:57:16 2014 (r370048) +++ head/devel/liblangtag/Makefile Sun Oct 5 10:06:35 2014 (r370049) @@ -15,7 +15,6 @@ LICENSE_COMB= dual LIB_DEPENDS= libxml2.so:${PORTSDIR}/textproc/libxml2 GNU_CONFIGURE= yes -USE_AUTOTOOLS= libtoolize USE_LDCONFIG= yes USES= gmake iconv libtool pathfix pkgconfig tar:bzip2 INSTALL_TARGET= install-strip Added: head/devel/liblangtag/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/liblangtag/files/patch-configure Sun Oct 5 10:06:35 2014 (r370049) @@ -0,0 +1,15 @@ +--- configure.orig 2014-05-21 03:36:23 UTC ++++ configure +@@ -14651,11 +14651,7 @@ MODULE_LIBS= + if test "x$enable_modules" != "xno"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the suffix of module shared libraries" >&5 + $as_echo_n "checking for the suffix of module shared libraries... " >&6; } +- export SED +- shrext_cmds=`libtool --config | grep '^shrext_cmds='` +- eval $shrext_cmds +- module=yes eval std_shrext=$shrext_cmds +- lt_module_suffix=`echo $std_shrext | sed 's/^\.//'` ++ lt_module_suffix=so + { $as_echo "$as_me:${as_lineno-$LINENO}: result: .$lt_module_suffix" >&5 + $as_echo ".$lt_module_suffix" >&6; } + if test "x$lt_module_suffix" = x; then From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 10:09:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AFEB98A; Sun, 5 Oct 2014 10:09:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7708D80; Sun, 5 Oct 2014 10:09:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95A9Mgw095854; Sun, 5 Oct 2014 10:09:22 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95A9M5h095853; Sun, 5 Oct 2014 10:09:22 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051009.s95A9M5h095853@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 10:09:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370050 - head/dns/ldns X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 10:09:22 -0000 Author: tijl Date: Sun Oct 5 10:09:21 2014 New Revision: 370050 URL: https://svnweb.freebsd.org/changeset/ports/370050 QAT: https://qat.redports.org/buildarchive/r370050/ Log: Avoid dependency on devel/libtool Modified: head/dns/ldns/Makefile Modified: head/dns/ldns/Makefile ============================================================================== --- head/dns/ldns/Makefile Sun Oct 5 10:06:35 2014 (r370049) +++ head/dns/ldns/Makefile Sun Oct 5 10:09:21 2014 (r370050) @@ -14,8 +14,8 @@ COMMENT= Library for programs conforming LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +GNU_CONFIGURE= yes USES= gmake libtool -USE_AUTOTOOLS= libtoolize USE_OPENSSL= yes USE_LDCONFIG= yes @@ -108,15 +108,18 @@ CONFIGURE_ARGS+= --enable-rrtype-ta .if ! (defined(BUILD_PYLDNS) || defined(BUILD_P5PERL)) post-configure: +# ac_cv_prog_libtool=../libtool => Always use bundled libtool .if ${PORT_OPTIONS:MEXAMPLES} @(cd ${WRKSRC}/examples; ./configure --prefix=${PREFIX} \ --infodir=${PREFIX}/${INFO_PATH} --mandir=${MANPREFIX}/man \ - --build=${CONFIGURE_TARGET} ${NO_GOST} ${NO_SHA2}) + --build=${CONFIGURE_TARGET} ${NO_GOST} ${NO_SHA2} \ + ac_cv_prog_libtool=../libtool) .endif .if ${PORT_OPTIONS:MDRILL} @(cd ${WRKSRC}/drill; ./configure --prefix=${PREFIX} \ --mandir=${MANPREFIX}/man \ - --build=${CONFIGURE_TARGET}) + --build=${CONFIGURE_TARGET} \ + ac_cv_prog_libtool=../libtool) .endif post-build: From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 10:10:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9FD0A84; Sun, 5 Oct 2014 10:10:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B65F7146; Sun, 5 Oct 2014 10:10:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95AAUWe096162; Sun, 5 Oct 2014 10:10:30 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95AAUPF096161; Sun, 5 Oct 2014 10:10:30 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051010.s95AAUPF096161@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 10:10:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370051 - head/games/gnubg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 10:10:30 -0000 Author: tijl Date: Sun Oct 5 10:10:29 2014 New Revision: 370051 URL: https://svnweb.freebsd.org/changeset/ports/370051 QAT: https://qat.redports.org/buildarchive/r370051/ Log: Remove USE_AUTOTOOLS Modified: head/games/gnubg/Makefile Modified: head/games/gnubg/Makefile ============================================================================== --- head/games/gnubg/Makefile Sun Oct 5 10:09:21 2014 (r370050) +++ head/games/gnubg/Makefile Sun Oct 5 10:10:29 2014 (r370051) @@ -28,7 +28,6 @@ GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALL_TARGET= install-strip USES= gmake libtool pathfix shebangfix python pkgconfig compiler:c++11-lang -USE_AUTOTOOLS= aclocal automake libtoolize USE_GNOME= glib20 OPTIONS_DEFINE= NLS DOCS @@ -38,7 +37,4 @@ OPTIONS_SUB= yes NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -#pre-configure: -# cd ${WRKSRC} && ./autogen.sh - .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 10:20:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCEDAD62; Sun, 5 Oct 2014 10:20:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C84341E4; Sun, 5 Oct 2014 10:20:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95AKPXA001636; Sun, 5 Oct 2014 10:20:25 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95AKPV6001629; Sun, 5 Oct 2014 10:20:25 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410051020.s95AKPV6001629@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 5 Oct 2014 10:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370052 - in head/emulators/mess: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 10:20:26 -0000 Author: marino Date: Sun Oct 5 10:20:24 2014 New Revision: 370052 URL: https://svnweb.freebsd.org/changeset/ports/370052 QAT: https://qat.redports.org/buildarchive/r370052/ Log: emulators/mess: clean up, remove zip dependency, support DragonFly This port has a post-extract target that wants to use native unzip on an extracted file. This is an issue for DragonFly, but tar can handle the zip file just file on both platforms, so switch to that. DragonFly still has the incomplete FILE that it inherited from FreeBSD, which is really a pain when FILE is a parameter in c++ routines. This adds an extra patch for DragonFly to use an alternative default logging callbacks to all mame to finally build on this platform. While here: - remove use of ${PORTNAME} where "mess" is the only correct value - use ".zip" instead of extract variable - Unmask installation commands - Group mkdir commands into one - Use NOT_FOR_ARCHS instead of conditional BROKEN - Convert to USES=python - Remove unnecessary conversion of -lpthread => -pthread - Remove redundant @dirrm from pkg-plist Added: head/emulators/mess/files/extra-patch-src_osd_osdcore.c (contents, props changed) Modified: head/emulators/mess/Makefile head/emulators/mess/pkg-plist Modified: head/emulators/mess/Makefile ============================================================================== --- head/emulators/mess/Makefile Sun Oct 5 10:10:29 2014 (r370051) +++ head/emulators/mess/Makefile Sun Oct 5 10:20:24 2014 (r370052) @@ -8,7 +8,7 @@ CATEGORIES= emulators MASTER_SITES= http://mamedev.mameworld.info/releases/ \ http://emumovies.com/aarongiles/releases/ \ http://mamedev.org/updates/:patchsets -DISTFILES= mame${PORTVERSION:S/.//:C/p[0-9]*$//}s${EXTRACT_SUFX} \ +DISTFILES= mame${PORTVERSION:S/.//:C/p[0-9]*$//}s.zip \ ${UPDATE_PATCHES:C/$/.zip:patchsets/} DIST_SUBDIR= mame @@ -21,13 +21,14 @@ LIB_DEPENDS= libFLAC.so:${PORTSDIR}/audi libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig RUN_DEPENDS= liberation-fonts-ttf>=0:${PORTSDIR}/x11-fonts/liberation-fonts-ttf -NO_WRKSUBDIR= yes +NOT_FOR_ARCHS= ia64 powerpc sparc64 -USES= dos2unix gmake pkgconfig shebangfix zip +USES= dos2unix gmake pkgconfig python:2,build shebangfix DOS2UNIX_FILES= src/lib/lib7z/CpuArch.h \ src/lib/lua/luaconf.h \ src/osd/eigccx86.h \ src/osd/eminline.h \ + src/osd/osdcore.c \ src/osd/sdl/osinline.h \ src/osd/sdl/sdlsync_ntc.c \ src/osd/sdl/sdlsync_os2.c @@ -37,12 +38,12 @@ SHEBANG_FILES= src/emu/cpu/m6502/m6502ma src/emu/cpu/tms57002/tmsmake.py USE_XORG= xext xi xinerama xrender USE_GL= gl -USE_PYTHON_BUILD=2 +NO_WRKSUBDIR= yes MAKE_ENV= NOWERROR=1 USE_NETWORK=1 \ LD="${CXX}" PYTHON="${PYTHON_CMD}" \ OPT_FLAGS="${CXXFLAGS}" GCC_LDFLAGS="${LDFLAGS}" \ - TARGET="${PORTNAME}" FULLNAME="${PORTNAME}" \ - SDL_NETWORK="pcap" + TARGET="mess" FULLNAME="mess" SDL_NETWORK="pcap" +MAKE_ARGS= TARGETOS=freebsd MAKEFILE= makefile SUB_FILES= pkg-message @@ -73,19 +74,22 @@ UPDATE_PATCHES!= /usr/bin/jot -s " " \ USE_SDL= sdl ttf .endif -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= Does not install on ia64, powerpc, or sparc64 +.if ${ARCH} == amd64 +MAKE_ARGS+= PTR64=1 +.endif + +.if ${OPSYS} == DragonFly +EXTRA_PATCHES= ${FILESDIR}/extra-patch-src_osd_osdcore.c .endif post-extract: - @(cd ${WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} mame.zip \ - ${EXTRACT_AFTER_ARGS}) + (cd ${WRKDIR} && ${TAR} -xf mame.zip) @${RM} -f ${WRKDIR}/mame.zip # Use post-extract target to get in before dos2unix-isation .if defined(UPDATE_PATCHES) . for patch in ${UPDATE_PATCHES:S/_/./} @${ECHO_MSG} -n "===> Applying upstream development patch ${patch}... " - @${PATCH} ${PATCH_ARGS} < ${WRKSRC}/${patch} + ${PATCH} ${PATCH_ARGS} < ${WRKSRC}/${patch} @${ECHO_MSG} "[DONE]" . endfor .endif @@ -102,30 +106,25 @@ post-patch: s|-O$$(OPTIMIZE)|| ; \ /--warn-common/s|= -Wl,|= $$(GCC_LDFLAGS) -Wl,| ; \ /LDFLAGS/s|-s|| ; \ - /LIBS/s|-lstdc++|| ; \ - /LIBS/s|-lpthread|-pthread|' ${WRKSRC}/makefile + /LIBS/s|-lstdc++||' ${WRKSRC}/makefile @${REINPLACE_CMD} -e \ - '/LIBS/s|-lpthread|-pthread| ; \ - /-isystem/s|^|#| ; \ + '/-isystem/s|^|#| ; \ /X11R6/s|^|#|' ${WRKSRC}/src/osd/sdl/sdl.mak do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${PORTNAME} \ - ${STAGEDIR}${PREFIX}/bin) - @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME} -.for F in castool chdman imgtool jedutil ldresample ldverify romcmp \ - testkeys unidasm - (cd ${WRKSRC} && ${INSTALL_PROGRAM} ${F} \ - ${STAGEDIR}${PREFIX}/libexec/${PORTNAME}) -.endfor - @${MKDIR} ${STAGEDIR}${DATADIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR}) - @(cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR}) - @(cd ${WRKSRC}/src/osd/sdl && ${COPYTREE_SHARE} keymaps \ - ${STAGEDIR}${DATADIR}) - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @(cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - (cd ${FILESDIR} && ${INSTALL_DATA} mess.ini ${STAGEDIR}${EXAMPLESDIR}) + @${MKDIR} ${STAGEDIR}${DATADIR} \ + ${STAGEDIR}${DOCSDIR} \ + ${STAGEDIR}${EXAMPLESDIR} \ + ${STAGEDIR}${PREFIX}/libexec/mess + ${INSTALL_PROGRAM} ${WRKSRC}/mess ${STAGEDIR}${PREFIX}/bin + (cd ${WRKSRC} && ${INSTALL_PROGRAM} castool chdman imgtool jedutil \ + ldresample ldverify romcmp testkeys unidasm \ + ${STAGEDIR}${PREFIX}/libexec/mess) + (cd ${WRKSRC} && ${COPYTREE_SHARE} artwork ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC} && ${COPYTREE_SHARE} hash ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC}/src/osd/sdl && \ + ${COPYTREE_SHARE} keymaps ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${FILESDIR}/mess.ini ${STAGEDIR}${EXAMPLESDIR} .include Added: head/emulators/mess/files/extra-patch-src_osd_osdcore.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/mess/files/extra-patch-src_osd_osdcore.c Sun Oct 5 10:20:24 2014 (r370052) @@ -0,0 +1,63 @@ +--- src/osd/osdcore.c.orig 2014-10-05 09:30:10 UTC ++++ src/osd/osdcore.c +@@ -2,6 +2,10 @@ + #include "osdcore.h" + #include "portmidi/portmidi.h" + ++typedef struct __FILE_public FILEX; ++FILEX dummyval; ++FILEX * dummy = &dummyval; ++ + bool g_print_verbose = false; + + +@@ -10,9 +14,14 @@ bool g_print_verbose = false; + for file output + -------------------------------------------------*/ + +-void osd_file_output_callback(FILE *param, const char *format, va_list argptr) ++void osd_file_std_output_callback(FILEX *param, const char *format, va_list argptr) ++{ ++ vfprintf(stdout, format, argptr); ++} ++ ++void osd_file_err_output_callback(FILEX *param, const char *format, va_list argptr) + { +- vfprintf(param, format, argptr); ++ vfprintf(stderr, format, argptr); + } + + +@@ -21,7 +30,7 @@ void osd_file_output_callback(FILE *para + for no output + -------------------------------------------------*/ + +-void osd_null_output_callback(FILE *param, const char *format, va_list argptr) ++void osd_null_std_output_callback(FILEX *param, const char *format, va_list argptr) + { + } + +@@ -30,16 +39,16 @@ void osd_null_output_callback(FILE *para + /* output channels */ + static output_delegate output_cb[OSD_OUTPUT_CHANNEL_COUNT] = + { +- output_delegate(FUNC(osd_file_output_callback), stderr), // OSD_OUTPUT_CHANNEL_ERROR +- output_delegate(FUNC(osd_file_output_callback), stderr), // OSD_OUTPUT_CHANNEL_WARNING +- output_delegate(FUNC(osd_file_output_callback), stdout), // OSD_OUTPUT_CHANNEL_INFO ++ output_delegate(FUNC(osd_file_err_output_callback), dummy), // OSD_OUTPUT_CHANNEL_ERROR ++ output_delegate(FUNC(osd_file_err_output_callback), dummy), // OSD_OUTPUT_CHANNEL_WARNING ++ output_delegate(FUNC(osd_file_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_INFO + #ifdef MAME_DEBUG +- output_delegate(FUNC(osd_file_output_callback), stdout), // OSD_OUTPUT_CHANNEL_DEBUG ++ output_delegate(FUNC(osd_file_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_DEBUG + #else +- output_delegate(FUNC(osd_null_output_callback), stdout), // OSD_OUTPUT_CHANNEL_DEBUG ++ output_delegate(FUNC(osd_null_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_DEBUG + #endif +- output_delegate(FUNC(osd_file_output_callback), stdout), // OSD_OUTPUT_CHANNEL_VERBOSE +- output_delegate(FUNC(osd_file_output_callback), stdout) // OSD_OUTPUT_CHANNEL_LOG ++ output_delegate(FUNC(osd_file_std_output_callback), dummy), // OSD_OUTPUT_CHANNEL_VERBOSE ++ output_delegate(FUNC(osd_file_std_output_callback), dummy) // OSD_OUTPUT_CHANNEL_LOG + }; + + Modified: head/emulators/mess/pkg-plist ============================================================================== --- head/emulators/mess/pkg-plist Sun Oct 5 10:10:29 2014 (r370051) +++ head/emulators/mess/pkg-plist Sun Oct 5 10:20:24 2014 (r370052) @@ -358,11 +358,3 @@ libexec/mess/unidasm %%DATADIR%%/keymaps/km-fr-OSX.txt %%DATADIR%%/keymaps/km-fr.txt %%DATADIR%%/keymaps/km_it.txt -@dirrm %%DATADIR%%/keymaps -@dirrm %%DATADIR%%/hash -@dirrm %%DATADIR%%/artwork -@dirrm %%DATADIR%% -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm libexec/mess From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 10:30:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 261D51DE; Sun, 5 Oct 2014 10:30:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1246E322; Sun, 5 Oct 2014 10:30:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95AUeas005878; Sun, 5 Oct 2014 10:30:40 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95AUeRL005876; Sun, 5 Oct 2014 10:30:40 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410051030.s95AUeRL005876@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 5 Oct 2014 10:30:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370053 - head/emulators/mame X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 10:30:41 -0000 Author: marino Date: Sun Oct 5 10:30:40 2014 New Revision: 370053 URL: https://svnweb.freebsd.org/changeset/ports/370053 QAT: https://qat.redports.org/buildarchive/r370053/ Log: emulators/mame: Remove redundant @dirrm, simplify an install command Modified: head/emulators/mame/Makefile head/emulators/mame/pkg-plist Modified: head/emulators/mame/Makefile ============================================================================== --- head/emulators/mame/Makefile Sun Oct 5 10:20:24 2014 (r370052) +++ head/emulators/mame/Makefile Sun Oct 5 10:30:40 2014 (r370053) @@ -125,6 +125,6 @@ do-install: (cd ${WRKSRC}/src/osd/sdl && \ ${COPYTREE_SHARE} keymaps ${STAGEDIR}${DATADIR}) (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) - (cd ${FILESDIR} && ${INSTALL_DATA} mame.ini ${STAGEDIR}${EXAMPLESDIR}) + ${INSTALL_DATA} ${FILESDIR}/mame.ini ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/emulators/mame/pkg-plist ============================================================================== --- head/emulators/mame/pkg-plist Sun Oct 5 10:20:24 2014 (r370052) +++ head/emulators/mame/pkg-plist Sun Oct 5 10:30:40 2014 (r370053) @@ -356,11 +356,3 @@ libexec/mame/unidasm %%DATADIR%%/keymaps/km-fr-OSX.txt %%DATADIR%%/keymaps/km-fr.txt %%DATADIR%%/keymaps/km_it.txt -@dirrm %%DATADIR%%/keymaps -@dirrm %%DATADIR%%/hash -@dirrm %%DATADIR%%/artwork -@dirrm %%DATADIR%% -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/docs -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm libexec/mame From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 10:42:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 751D1493; Sun, 5 Oct 2014 10:42:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47DCC6B4; Sun, 5 Oct 2014 10:42:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95AgjDe014247; Sun, 5 Oct 2014 10:42:45 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95AgiGN014245; Sun, 5 Oct 2014 10:42:44 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051042.s95AgiGN014245@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 10:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370054 - head/sysutils/grub2-pcbsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 10:42:45 -0000 Author: antoine Date: Sun Oct 5 10:42:44 2014 New Revision: 370054 URL: https://svnweb.freebsd.org/changeset/ports/370054 QAT: https://qat.redports.org/buildarchive/r370054/ Log: Do not package info/dir Modified: head/sysutils/grub2-pcbsd/Makefile head/sysutils/grub2-pcbsd/pkg-plist Modified: head/sysutils/grub2-pcbsd/Makefile ============================================================================== --- head/sysutils/grub2-pcbsd/Makefile Sun Oct 5 10:30:40 2014 (r370053) +++ head/sysutils/grub2-pcbsd/Makefile Sun Oct 5 10:42:44 2014 (r370054) @@ -3,7 +3,7 @@ PORTNAME= grub2-pcbsd PORTVERSION= 2.02p -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils MASTER_SITES= http://www.pcbsd.org/~kris/software/ \ ftp://ftp.pcbsd.org/pub/software/ @@ -22,11 +22,10 @@ WRKSRC= ${WRKDIR}/grub-2.02 CONFLICTS= grub-0* grub2-2* SSP_UNSAFE= yes USE_GCC= yes -USE_PYTHON= yes USE_AUTOTOOLS= automake aclocal autoconf ACLOCAL_ARGS= -Im4 GNU_CONFIGURE= yes -USES= bison gettext gmake makeinfo tar:xz +USES= bison gettext gmake makeinfo python tar:xz ONLY_FOR_ARCHS= i386 amd64 INFO= grub grub-dev MAKE_JOBS_UNSAFE= yes Modified: head/sysutils/grub2-pcbsd/pkg-plist ============================================================================== --- head/sysutils/grub2-pcbsd/pkg-plist Sun Oct 5 10:30:40 2014 (r370053) +++ head/sysutils/grub2-pcbsd/pkg-plist Sun Oct 5 10:42:44 2014 (r370054) @@ -55,7 +55,6 @@ bin/grub-glue-efi bin/grub-render-label bin/grub-syslinux2cfg sbin/grub-macbless -info/dir lib/grub/i386-pc/archelp.mod lib/grub/i386-pc/archelp.module lib/grub/i386-pc/boot_hybrid.image @@ -640,10 +639,3 @@ man/man8/grub-probe.8.gz man/man8/grub-reboot.8.gz man/man8/grub-set-default.8.gz man/man8/grub-sparc64-setup.8.gz -%%MKFONT%%@dirrm share/grub/themes/starfield -%%MKFONT%%@dirrm share/grub/themes -@dirrm share/grub -@dirrm lib/grub/i386-pc -@dirrm lib/grub -@dirrmtry etc/grub.d -@dirrmtry etc/bash_completion.d From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 11:08:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B5178E9; Sun, 5 Oct 2014 11:08:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 56A1E900; Sun, 5 Oct 2014 11:08:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95B8gFF024537; Sun, 5 Oct 2014 11:08:42 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95B8fHu024533; Sun, 5 Oct 2014 11:08:41 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410051108.s95B8fHu024533@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 5 Oct 2014 11:08:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370055 - in head/mail: . filtermail filtermail/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 11:08:42 -0000 Author: pi Date: Sun Oct 5 11:08:40 2014 New Revision: 370055 URL: https://svnweb.freebsd.org/changeset/ports/370055 QAT: https://qat.redports.org/buildarchive/r370055/ Log: mail/filtermail: resurrect, stage, 0.8.2 -> 0.8.3, new maintainer PR: 193721 Submitted by: Mike Clarke Added: head/mail/filtermail/ - copied from r366684, head/mail/filtermail/ Modified: head/mail/Makefile head/mail/filtermail/Makefile head/mail/filtermail/distinfo head/mail/filtermail/files/patch-src__Makefile.in Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Oct 5 10:42:44 2014 (r370054) +++ head/mail/Makefile Sun Oct 5 11:08:40 2014 (r370055) @@ -137,6 +137,7 @@ SUBDIR += fastforward SUBDIR += fdm SUBDIR += fetchmail + SUBDIR += filtermail SUBDIR += findmaildirs SUBDIR += gbuffy SUBDIR += gensig Modified: head/mail/filtermail/Makefile ============================================================================== --- head/mail/filtermail/Makefile Sat Aug 30 21:49:21 2014 (r366684) +++ head/mail/filtermail/Makefile Sun Oct 5 11:08:40 2014 (r370055) @@ -1,18 +1,12 @@ -# Created by: Harry Newton # $FreeBSD$ -# Called this port 'filtermail' because there is already a 'mailfilter' -# in the ports tree. - PORTNAME= filtermail -PORTVERSION= 0.8.2 +PORTVERSION= 0.8.3 CATEGORIES= mail -MASTER_SITES= SFP \ - http://home.in.tum.de/baueran/%SUBDIR%/ -MASTER_SITE_SUBDIR= mailfilter/Mailfilter/${PORTVERSION} +MASTER_SITES= http://sourceforge.net/projects/mailfilter/files/Mailfilter/ DISTNAME= mailfilter-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jmc-filtermail@milibyte.co.uk COMMENT= Filter mail on a POP3 server: saves downloading spam LICENSE= GPLv3 @@ -32,15 +26,14 @@ USES= bison gmake GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes -MAN1= filtermail.1 -MAN5= filtermailex.5 filtermailrc.5 - CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -PLIST_FILES= bin/filtermail +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz \ + man/man5/${PORTNAME}ex.5.gz \ + man/man5/${PORTNAME}rc.5.gz -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|filtermail.sourceforge|mailfilter.sourceforge|g' ${WRKSRC}/README Modified: head/mail/filtermail/distinfo ============================================================================== --- head/mail/filtermail/distinfo Sat Aug 30 21:49:21 2014 (r366684) +++ head/mail/filtermail/distinfo Sun Oct 5 11:08:40 2014 (r370055) @@ -1,2 +1,2 @@ -SHA256 (mailfilter-0.8.2.tar.gz) = 4822fdfc4c7db543539a96429086b4d01ac22629396896ee7e52e6edce43fdec -SIZE (mailfilter-0.8.2.tar.gz) = 382966 +SHA256 (mailfilter-0.8.3.tar.gz) = 60a40e1d35148fd50a2627fc4bbe47626b886614db50f88c0a21d934df63cb7a +SIZE (mailfilter-0.8.3.tar.gz) = 425337 Modified: head/mail/filtermail/files/patch-src__Makefile.in ============================================================================== --- head/mail/filtermail/files/patch-src__Makefile.in Sat Aug 30 21:49:21 2014 (r366684) +++ head/mail/filtermail/files/patch-src__Makefile.in Sun Oct 5 11:08:40 2014 (r370055) @@ -1,6 +1,6 @@ --- src/Makefile.in.orig Sat Nov 27 22:29:44 2004 +++ src/Makefile.in Mon Mar 7 22:54:36 2005 -@@ -317,8 +315,6 @@ +@@ -421,8 +421,6 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apop.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/feedback.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filter.Po@am__quote@ @@ -9,3 +9,4 @@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filtermail.Po@am__quote@ + From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 11:12:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AE249F5; Sun, 5 Oct 2014 11:12:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04F869A7; Sun, 5 Oct 2014 11:12:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95BC9NT028667; Sun, 5 Oct 2014 11:12:09 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95BC9Vj028664; Sun, 5 Oct 2014 11:12:09 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410051112.s95BC9Vj028664@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 11:12:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370056 - head/math/cgal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 11:12:10 -0000 Author: wen Date: Sun Oct 5 11:12:08 2014 New Revision: 370056 URL: https://svnweb.freebsd.org/changeset/ports/370056 QAT: https://qat.redports.org/buildarchive/r370056/ Log: - Update to 4.4 - Add GUI option [1] PR: 192896 [1] Submitted by: Robert Kruus [1] Modified: head/math/cgal/Makefile head/math/cgal/distinfo head/math/cgal/pkg-plist Modified: head/math/cgal/Makefile ============================================================================== --- head/math/cgal/Makefile Sun Oct 5 11:08:40 2014 (r370055) +++ head/math/cgal/Makefile Sun Oct 5 11:12:08 2014 (r370056) @@ -2,10 +2,9 @@ # $FreeBSD$ PORTNAME= cgal -PORTVERSION= 4.3 -PORTREVISION= 1 +PORTVERSION= 4.4 CATEGORIES= math -MASTER_SITES= http://gforge.inria.fr/frs/download.php/32997/ +MASTER_SITES= http://gforge.inria.fr/frs/download.php/33524/ DISTNAME= CGAL-${PORTVERSION} MAINTAINER= wen@FreeBSD.org @@ -16,16 +15,32 @@ LICENSE_COMB= multi BUILD_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:${PORTSDIR}/devel/boost-libs RUN_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:${PORTSDIR}/devel/boost-libs -LIB_DEPENDS= libGLU.so:${PORTSDIR}/graphics/libGLU \ - libgmp.so:${PORTSDIR}/math/gmp \ - libmpfr.so:${PORTSDIR}/math/mpfr +LIB_DEPENDS= libmpfr.so:${PORTSDIR}/math/mpfr \ + libgmp.so:${PORTSDIR}/math/gmp USE_LDCONFIG= yes -USES= cmake tar:bzip2 -USE_QT4= corelib opengl qmake_build gui moc_build rcc_build uic_build +USES= cmake tar:bzip2 shebangfix +SHEBANG_FILES= scripts/cgal_create_CMakeLists HAS_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= GUI +OPTIONS_DEFAULT= GUI +GUI_DESC= Build libCGAL_ImageIO and libCGAL_Qt4 + +.include + +.if ${PORT_OPTIONS:MGUI} +USE_QT4= corelib qmake_build moc_build rcc_build uic_build gui opengl +LIB_DEPENDS+= libGLU.so:${PORTSDIR}/graphics/libGLU +CMAKE_ARGS= -DWITH_CGAL_Qt3=OFF +PLIST_SUB+= GUI="" +.else +USE_QT4= corelib qmake_build moc_build rcc_build uic_build +CMAKE_ARGS= -DWITH_CGAL_Qt4=OFF -DWITH_CGAL_ImageIO=OFF -DWITH_CGAL_Qt3=OFF +PLIST_SUB+= GUI="@comment " +.endif + post-install: ${INSTALL_MAN} ${WRKSRC}/auxiliary/cgal_create_cmake_script.1 ${STAGEDIR}${PREFIX}/man/man1/ Modified: head/math/cgal/distinfo ============================================================================== --- head/math/cgal/distinfo Sun Oct 5 11:08:40 2014 (r370055) +++ head/math/cgal/distinfo Sun Oct 5 11:12:08 2014 (r370056) @@ -1,4 +1,2 @@ -SHA256 (CGAL-4.3.tar.bz2) = a255361b9edc85b468a0a6d2de429314923698166429e77ad5ce08d628905ca4 -SIZE (CGAL-4.3.tar.bz2) = 13297660 -SHA256 (CGAL-4.3-doc_html.tar.bz2) = 5d73b2abb24f5b4c65c0bfcdb3c3167c8c897bd71f09a8841980e6a8dbb50a08 -SIZE (CGAL-4.3-doc_html.tar.bz2) = 21052184 +SHA256 (CGAL-4.4.tar.bz2) = 454633765d2f6c95a539612fad679dab9c24f91dbcb4141bc555e8f21d89ffed +SIZE (CGAL-4.4.tar.bz2) = 13762324 Modified: head/math/cgal/pkg-plist ============================================================================== --- head/math/cgal/pkg-plist Sun Oct 5 11:08:40 2014 (r370055) +++ head/math/cgal/pkg-plist Sun Oct 5 11:12:08 2014 (r370056) @@ -1,2725 +1,2621 @@ bin/cgal_create_CMakeLists bin/cgal_create_cmake_script bin/cgal_make_macosx_app -include/CGAL/Bbox_2_Ray_2_intersection.h -include/CGAL/QP_options.h -include/CGAL/Circular_kernel_converter.h -include/CGAL/Ray_2.h -include/CGAL/certified_quotient_predicates.h -include/CGAL/Combinatorial_map_min_items.h -include/CGAL/Algebraic_kernel_for_spheres_2_3.h -include/CGAL/Algebraic_kernel_d_1.h -include/CGAL/min_quadrilateral_2.h -include/CGAL/sse2.h -include/CGAL/HalfedgeDS_halfedge_base.h -include/CGAL/Spherical_kernel_type_equality_wrapper.h -include/CGAL/Bounded_kernel.h -include/CGAL/Mesh_facet_criteria_3.h -include/CGAL/Parabola_2.h -include/CGAL/Discrete_conformal_map_parameterizer_3.h -include/CGAL/Mesh_facet_topology.h -include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h -include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_debug.h -include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_configure.h -include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h -include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation.h -include/CGAL/number_utils.h -include/CGAL/Sqrt_extension.h -include/CGAL/Min_sphere_of_spheres_d_traits_3.h -include/CGAL/trace.h -include/CGAL/Min_sphere_of_points_d_traits_3.h -include/CGAL/Bbox_3.h -include/CGAL/Iso_rectangle_2_Iso_rectangle_2_intersection.h -include/CGAL/Arr_vertical_decomposition_2.h -include/CGAL/Algebraic_kernel_rs_gmpz_d_1.h -include/CGAL/Coercion_traits.h -include/CGAL/Splitters.h -include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree.h -include/CGAL/Algebraic_kernel_d/flags.h -include/CGAL/Algebraic_kernel_d/Real_embeddable_extension.h -include/CGAL/Algebraic_kernel_d/Shear_transformation.h -include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel.h -include/CGAL/Algebraic_kernel_d/Interval_evaluate_1.h -include/CGAL/Algebraic_kernel_d/refine_zero_against.h -include/CGAL/Algebraic_kernel_d/construct_binary.h +include/CGAL/AABB_face_graph_triangle_primitive.h +include/CGAL/AABB_halfedge_graph_segment_primitive.h +include/CGAL/AABB_intersections.h +include/CGAL/AABB_polyhedral_oracle.h +include/CGAL/AABB_polyhedron_segment_primitive.h +include/CGAL/AABB_polyhedron_triangle_primitive.h +include/CGAL/AABB_primitive.h +include/CGAL/AABB_segment_primitive.h +include/CGAL/AABB_traits.h +include/CGAL/AABB_tree.h +include/CGAL/AABB_triangle_primitive.h +include/CGAL/Aff_transformation_2.h +include/CGAL/Aff_transformation_3.h +include/CGAL/Algebraic_extension_traits.h +include/CGAL/Algebraic_kernel_converter.h +include/CGAL/Algebraic_kernel_d/Algebraic_curve_kernel_2.h include/CGAL/Algebraic_kernel_d/Algebraic_real_d_1.h -include/CGAL/Algebraic_kernel_d/enums.h +include/CGAL/Algebraic_kernel_d/Algebraic_real_quadratic_refinement_rep_bfi.h +include/CGAL/Algebraic_kernel_d/Algebraic_real_rep.h +include/CGAL/Algebraic_kernel_d/Algebraic_real_rep_bfi.h +include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel.h +include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel_at_alpha.h +include/CGAL/Algebraic_kernel_d/Bitstream_descartes.h +include/CGAL/Algebraic_kernel_d/Bitstream_descartes_E08_tree.h +include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree.h +include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree_traits.h include/CGAL/Algebraic_kernel_d/Curve_analysis_2.h -include/CGAL/Algebraic_kernel_d/Shear_controller.h -include/CGAL/Algebraic_kernel_d/Status_line_CA_1.h include/CGAL/Algebraic_kernel_d/Curve_pair_analysis_2.h -include/CGAL/Algebraic_kernel_d/Bitstream_descartes_rndl_tree_traits.h -include/CGAL/Algebraic_kernel_d/shear.h -include/CGAL/Algebraic_kernel_d/Float_traits.h -include/CGAL/Algebraic_kernel_d/algebraic_curve_kernel_2_tools.h -include/CGAL/Algebraic_kernel_d/Event_line_builder.h -include/CGAL/Algebraic_kernel_d/LRU_hashed_map.h -include/CGAL/Algebraic_kernel_d/exceptions.h -include/CGAL/Algebraic_kernel_d/Algebraic_curve_kernel_2.h -include/CGAL/Algebraic_kernel_d/Algebraic_real_quadratic_refinement_rep_bfi.h include/CGAL/Algebraic_kernel_d/Descartes.h -include/CGAL/Algebraic_kernel_d/Bitstream_descartes_E08_tree.h -include/CGAL/Algebraic_kernel_d/Bitstream_descartes.h -include/CGAL/Algebraic_kernel_d/univariate_polynomial_utils.h +include/CGAL/Algebraic_kernel_d/Event_line_builder.h +include/CGAL/Algebraic_kernel_d/Float_traits.h +include/CGAL/Algebraic_kernel_d/Interval_evaluate_1.h include/CGAL/Algebraic_kernel_d/Interval_evaluate_2.h -include/CGAL/Algebraic_kernel_d/bound_between_1.h -include/CGAL/Algebraic_kernel_d/Algebraic_real_rep_bfi.h -include/CGAL/Algebraic_kernel_d/Algebraic_real_rep.h +include/CGAL/Algebraic_kernel_d/LRU_hashed_map.h +include/CGAL/Algebraic_kernel_d/Real_embeddable_extension.h +include/CGAL/Algebraic_kernel_d/Real_roots.h +include/CGAL/Algebraic_kernel_d/Shear_controller.h +include/CGAL/Algebraic_kernel_d/Shear_transformation.h +include/CGAL/Algebraic_kernel_d/Status_line_CA_1.h include/CGAL/Algebraic_kernel_d/Status_line_CPA_1.h -include/CGAL/Algebraic_kernel_d/macros.h include/CGAL/Algebraic_kernel_d/Xy_coordinate_2.h -include/CGAL/Algebraic_kernel_d/Real_roots.h -include/CGAL/Algebraic_kernel_d/Bitstream_coefficient_kernel_at_alpha.h -include/CGAL/Polyhedron_3_property_map.h -include/CGAL/Multi_surface_3.h -include/CGAL/convex_hull_2.h -include/CGAL/version_macros.h -include/CGAL/Parabola_segment_2.h -include/CGAL/Approximate_min_ellipsoid_d_traits_d.h -include/CGAL/Periodic_2_triangulation_iterators_2.h -include/CGAL/Robust_circumcenter_traits_3.h -include/CGAL/generic_sweep.h -include/CGAL/Eigen_svd.h -include/CGAL/arrange_offset_polygons_2.h -include/CGAL/Arrangement_on_surface_2.h -include/CGAL/Segment_2_Triangle_2_intersection.h -include/CGAL/Triangulation_vertex_base_2.h -include/CGAL/constant.h -include/CGAL/Kernel_d/Kernel_classesHd.h -include/CGAL/Kernel_d/VectorCd_impl.h -include/CGAL/Kernel_d/debug.h -include/CGAL/Kernel_d/function_objectsCd.h -include/CGAL/Kernel_d/Line_d.h -include/CGAL/Kernel_d/Line_d_impl.h -include/CGAL/Kernel_d/Direction_d.h -include/CGAL/Kernel_d/Interface_classes.h -include/CGAL/Kernel_d/function_objectsHd.h -include/CGAL/Kernel_d/Vector__.h -include/CGAL/Kernel_d/Matrix__.h -include/CGAL/Kernel_d/Hyperplane_d.h -include/CGAL/Kernel_d/Vector_d.h -include/CGAL/Kernel_d/intersection_objectsHd.h -include/CGAL/Kernel_d/PVDHAHd_impl.h -include/CGAL/Kernel_d/intersection_objects_d.h -include/CGAL/Kernel_d/simple_objects.h -include/CGAL/Kernel_d/intersection_objectsCd.h -include/CGAL/Kernel_d/Ray_d.h -include/CGAL/Kernel_d/DirectionHd.h -include/CGAL/Kernel_d/PointHd_impl.h -include/CGAL/Kernel_d/HyperplaneHd_impl.h -include/CGAL/Kernel_d/Linear_algebraHd_impl.h -include/CGAL/Kernel_d/Aff_transformationHd.h -include/CGAL/Kernel_d/VectorCd.h -include/CGAL/Kernel_d/PVDHACd_impl.h -include/CGAL/Kernel_d/Point_d.h -include/CGAL/Kernel_d/Sphere_d.h -include/CGAL/Kernel_d/HyperplaneCd_impl.h -include/CGAL/Kernel_d/Cartesian_const_iterator_d.h -include/CGAL/Kernel_d/Aff_transformationCd.h -include/CGAL/Kernel_d/DirectionHd_impl.h -include/CGAL/Kernel_d/HyperplaneCd.h -include/CGAL/Kernel_d/Tuple_d.h -include/CGAL/Kernel_d/Iso_box_d.h -include/CGAL/Kernel_d/Kernel_classesCd.h -include/CGAL/Kernel_d/Linear_algebraCd_impl.h -include/CGAL/Kernel_d/DirectionCd.h -include/CGAL/Kernel_d/VectorHd.h -include/CGAL/Kernel_d/Pair_d.h -include/CGAL/Kernel_d/Aff_transformation_d.h -include/CGAL/Kernel_d/DirectionCd_impl.h -include/CGAL/Kernel_d/HyperplaneHd.h -include/CGAL/Kernel_d/PointCd_impl.h -include/CGAL/Kernel_d/PointHd.h -include/CGAL/Kernel_d/function_objects.h -include/CGAL/Kernel_d/PointCd.h -include/CGAL/Kernel_d/Segment_d.h -include/CGAL/Kernel_d/VectorHd_impl.h -include/CGAL/Random_polygon_2_sweep.h -include/CGAL/is_convertible.h -include/CGAL/HalfedgeDS_iterator_adaptor.h -include/CGAL/Random_access_value_adaptor.h -include/CGAL/AABB_polyhedron_triangle_primitive.h -include/CGAL/primes.h -include/CGAL/Linear_cell_complex_operations.h -include/CGAL/basic.h -include/CGAL/Sweep_line_2.h -include/CGAL/Random_access_adaptor.h -include/CGAL/Triangulation_ds_vertex_base_2.h -include/CGAL/Handle_for_virtual.h -include/CGAL/Arr_non_caching_segment_basic_traits_2.h -include/CGAL/Circular_arc_3.h -include/CGAL/Line_2_Triangle_2_intersection.h -include/CGAL/surface_mesh_parameterization_assertions.h -include/CGAL/Number_types/internal_functions_comparison_root_of_2.h -include/CGAL/use.h -include/CGAL/Fixed_alpha_shape_3.h -include/CGAL/Circular_arc_2.h -include/CGAL/Arrangement_zone_2.h -include/CGAL/Triangle_2_Point_2_intersection.h -include/CGAL/Filtered_construction.h -include/CGAL/Kd_tree_node.h -include/CGAL/squared_distance_2.h -include/CGAL/Periodic_3_triangulation_iterators_3.h -include/CGAL/Nef_polyhedron_S2.h -include/CGAL/Triangle_2.h -include/CGAL/Triangulated_mixed_complex_observer_3.h -include/CGAL/Periodic_2_triangulation_statically_filtered_traits_2.h -include/CGAL/Segment_Delaunay_graph_storage_traits_with_info_2.h -include/CGAL/Is_a_predicate.h -include/CGAL/Barycentric_mapping_parameterizer_3.h -include/CGAL/Image_3.h -include/CGAL/Surface_mesh_default_edges_criteria_3.h -include/CGAL/Apollonius_graph_2/Orientation_2.h -include/CGAL/Apollonius_graph_2/basic.h +include/CGAL/Algebraic_kernel_d/algebraic_curve_kernel_2_tools.h +include/CGAL/Algebraic_kernel_d/bound_between_1.h +include/CGAL/Algebraic_kernel_d/construct_%%QT_BINDIR%%ary.h +include/CGAL/Algebraic_kernel_d/enums.h +include/CGAL/Algebraic_kernel_d/exceptions.h +include/CGAL/Algebraic_kernel_d/flags.h +include/CGAL/Algebraic_kernel_d/macros.h +include/CGAL/Algebraic_kernel_d/refine_zero_against.h +include/CGAL/Algebraic_kernel_d/shear.h +include/CGAL/Algebraic_kernel_d/univariate_polynomial_utils.h +include/CGAL/Algebraic_kernel_d_1.h +include/CGAL/Algebraic_kernel_d_2.h +include/CGAL/Algebraic_kernel_for_circles/function_objects_on_roots_and_polynomials_2_2.h +include/CGAL/Algebraic_kernel_for_circles/internal_functions_comparison_root_for_circles_2_2.h +include/CGAL/Algebraic_kernel_for_circles/internal_functions_on_roots_and_polynomial_1_2_and_2_2.h +include/CGAL/Algebraic_kernel_for_circles/internal_functions_on_roots_and_polynomials_2_2.h +include/CGAL/Algebraic_kernel_for_circles_2_2.h +include/CGAL/Algebraic_kernel_for_spheres/function_objects_on_roots_and_polynomials_2_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_comparison_root_for_spheres_2_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomial_1_3_and_2_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomials_1_3.h +include/CGAL/Algebraic_kernel_for_spheres/internal_functions_on_roots_and_polynomials_2_3.h +include/CGAL/Algebraic_kernel_for_spheres_2_3.h +include/CGAL/Algebraic_kernel_rs_gmpq_d_1.h +include/CGAL/Algebraic_kernel_rs_gmpz_d_1.h +include/CGAL/Algebraic_structure_traits.h +include/CGAL/Alpha_shape_2.h +include/CGAL/Alpha_shape_3.h +include/CGAL/Alpha_shape_cell_base_3.h +include/CGAL/Alpha_shape_euclidean_traits_2.h +include/CGAL/Alpha_shape_euclidean_traits_3.h +include/CGAL/Alpha_shape_face_base_2.h +include/CGAL/Alpha_shape_vertex_base_2.h +include/CGAL/Alpha_shape_vertex_base_3.h +include/CGAL/Apollonius_graph_2.h +include/CGAL/Apollonius_graph_2/Apollonius_graph_2_impl.h +include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h include/CGAL/Apollonius_graph_2/Bounded_side_of_ccw_circle_C2.h +include/CGAL/Apollonius_graph_2/Compare_weight_2.h include/CGAL/Apollonius_graph_2/Compare_x_2.h -include/CGAL/Apollonius_graph_2/Incircle8_C2.h -include/CGAL/Apollonius_graph_2/Traits_wrapper_2.h -include/CGAL/Apollonius_graph_2/Constructions_rtH2.h -include/CGAL/Apollonius_graph_2/comparator_profiler.h -include/CGAL/Apollonius_graph_2/Oriented_side_of_bisector_C2.h -include/CGAL/Apollonius_graph_2/predicate_profiler.h -include/CGAL/Apollonius_graph_2/compare_quadratic.h -include/CGAL/Apollonius_graph_2/Is_hidden_C2.h include/CGAL/Apollonius_graph_2/Compare_y_2.h -include/CGAL/Apollonius_graph_2/Constructions_ftC2.h include/CGAL/Apollonius_graph_2/Constructions_C2.h -include/CGAL/Apollonius_graph_2/Finite_edge_test_C2.h -include/CGAL/Apollonius_graph_2/Predicates_C2.h -include/CGAL/Apollonius_graph_2/check_filter.h -include/CGAL/Apollonius_graph_2/Predicate_constructions_C2.h -include/CGAL/Apollonius_graph_2/Orientation8_C2.h +include/CGAL/Apollonius_graph_2/Constructions_ftC2.h +include/CGAL/Apollonius_graph_2/Constructions_rtH2.h include/CGAL/Apollonius_graph_2/Finite_edge_test8_C2.h +include/CGAL/Apollonius_graph_2/Finite_edge_test_C2.h +include/CGAL/Apollonius_graph_2/Incircle8_C2.h +include/CGAL/Apollonius_graph_2/Incircle_C2.h include/CGAL/Apollonius_graph_2/Infinite_edge_test_C2.h include/CGAL/Apollonius_graph_2/Is_degenerate_edge_C2.h -include/CGAL/Apollonius_graph_2/Compare_weight_2.h -include/CGAL/Apollonius_graph_2/Apollonius_graph_hierarchy_2_impl.h +include/CGAL/Apollonius_graph_2/Is_hidden_C2.h include/CGAL/Apollonius_graph_2/Kernel_wrapper_2.h -include/CGAL/Apollonius_graph_2/Apollonius_graph_2_impl.h -include/CGAL/Apollonius_graph_2/uncertain/Apollonius_graph_uncertain_filtered_traits_2.h -include/CGAL/Apollonius_graph_2/uncertain/uncertain_functions_on_signs.h -include/CGAL/Apollonius_graph_2/uncertain/Uncertain_vertex_conflict_2.h +include/CGAL/Apollonius_graph_2/Orientation8_C2.h +include/CGAL/Apollonius_graph_2/Orientation_2.h +include/CGAL/Apollonius_graph_2/Oriented_side_of_bisector_C2.h +include/CGAL/Apollonius_graph_2/Predicate_constructions_C2.h +include/CGAL/Apollonius_graph_2/Predicates_C2.h +include/CGAL/Apollonius_graph_2/Traits_wrapper_2.h +include/CGAL/Apollonius_graph_2/basic.h +include/CGAL/Apollonius_graph_2/check_filter.h +include/CGAL/Apollonius_graph_2/comparator_profiler.h +include/CGAL/Apollonius_graph_2/compare_quadratic.h +include/CGAL/Apollonius_graph_2/predicate_profiler.h +include/CGAL/Apollonius_graph_2/uncertain/Apollonius_graph_uncertain_filtered_traits_2.h include/CGAL/Apollonius_graph_2/uncertain/Uncertain_is_hidden_C2.h include/CGAL/Apollonius_graph_2/uncertain/Uncertain_oriented_side_of_bisector_C2.h -include/CGAL/Apollonius_graph_2/Incircle_C2.h -include/CGAL/Min_sphere_of_points_d_traits_d.h -include/CGAL/leda_rational.h -include/CGAL/Combinatorial_map_iterators_base.h -include/CGAL/HalfedgeDS_vertex_max_base_with_id.h -include/CGAL/Periodic_3_triangulation_ds_cell_base_3.h -include/CGAL/CORE_algebraic_number_traits.h -include/CGAL/Mesh_3/Slivers_exuder_cell_attributes_traits.h -include/CGAL/Mesh_3/Sizing_grid.h -include/CGAL/Mesh_3/Detect_polylines_in_polyhedra_fwd.h -include/CGAL/Mesh_3/parameters_defaults.h -include/CGAL/Mesh_3/Triangulation_helpers.h -include/CGAL/Mesh_3/Refine_cells_3.h -include/CGAL/Mesh_3/Mesher_3.h -include/CGAL/Mesh_3/radius_ratio.h -include/CGAL/Mesh_3/global_parameters.h -include/CGAL/Mesh_3/Facet_on_same_surface_criterion.h -include/CGAL/Mesh_3/Detect_features_in_polyhedra.h -include/CGAL/Mesh_3/Null_exuder_visitor.h -include/CGAL/Mesh_3/Slivers_exuder.h -include/CGAL/Mesh_3/Robust_intersection_kernel.h -include/CGAL/Mesh_3/Dump_c3t3.h -include/CGAL/Mesh_3/Detect_polylines_in_polyhedra.h -include/CGAL/Mesh_3/Null_global_optimizer_visitor.h -include/CGAL/Mesh_3/Implicit_surface_mesher_visitor.h -include/CGAL/Mesh_3/Facet_criteria_visitor_with_balls.h -include/CGAL/Mesh_3/Creator_weighted_point_3.h -include/CGAL/Mesh_3/Robust_weighted_circumcenter_filtered_traits_3.h -include/CGAL/Mesh_3/Implicit_to_labeled_function_wrapper.h -include/CGAL/Mesh_3/Mesh_sizing_field.h -include/CGAL/Mesh_3/Protect_edges_sizing_field.h -include/CGAL/Mesh_3/polyhedral_to_labeled_function_wrapper.h -include/CGAL/Mesh_3/Refine_tets_visitor.h -include/CGAL/Mesh_3/Labeled_mesh_domain_3.h -include/CGAL/Mesh_3/Cell_criteria_visitor_with_balls.h -include/CGAL/Mesh_3/Poisson_refine_cells_3.h -include/CGAL/Mesh_3/Detect_features_in_polyhedra_fwd.h -include/CGAL/Mesh_3/squared_distance_Point_3_Triangle_3.h -include/CGAL/Mesh_3/Mesh_complex_3_in_triangulation_3_base.h -include/CGAL/Mesh_3/vertex_perturbation.h -include/CGAL/Mesh_3/utilities.h -include/CGAL/Mesh_3/config.h -include/CGAL/Mesh_3/mesh_standard_cell_criteria.h -include/CGAL/Mesh_3/Mesh_global_optimizer.h -include/CGAL/Mesh_3/Uniform_sizing_field.h -include/CGAL/Mesh_3/Odt_move.h -include/CGAL/Mesh_3/Image_to_labeled_function_wrapper.h -include/CGAL/Mesh_3/Profile_counter.h -include/CGAL/Mesh_3/Has_features.h -include/CGAL/Mesh_3/dihedral_angle_3.h -include/CGAL/Mesh_3/Polyline_with_context.h -include/CGAL/Mesh_3/Refine_facets_3.h -include/CGAL/Mesh_3/Sliver_perturber.h -include/CGAL/Mesh_3/Robust_intersection_traits_3.h -include/CGAL/Mesh_3/Triangle_accessor_primitive.h -include/CGAL/Mesh_3/Null_perturber_visitor.h -include/CGAL/Mesh_3/sliver_criteria.h -include/CGAL/Mesh_3/min_dihedral_angle.h -include/CGAL/Mesh_3/C3T3_helpers.h -include/CGAL/Mesh_3/Mesh_surface_cell_base_3.h -include/CGAL/Mesh_3/Lloyd_move.h -include/CGAL/Mesh_3/mesh_standard_criteria.h -include/CGAL/Mesh_3/Triangulation_sizing_field.h -include/CGAL/Mesh_3/io_signature.h -include/CGAL/Mesh_3/mesh_standard_facet_criteria.h -include/CGAL/Sweep_line_2/Arr_basic_insertion_traits_2.h -include/CGAL/Sweep_line_2/Arr_construction_subcurve.h -include/CGAL/Sweep_line_2/Basic_sweep_line_2_impl.h -include/CGAL/Sweep_line_2/Sweep_line_event.h -include/CGAL/Sweep_line_2/Arr_construction_sl_visitor.h -include/CGAL/Sweep_line_2/Sweep_line_curve_pair.h -include/CGAL/Sweep_line_2/Sweep_line_functors.h -include/CGAL/Sweep_line_2/Arr_overlay_sl_visitor.h -include/CGAL/Sweep_line_2/Arr_basic_insertion_sl_visitor.h -include/CGAL/Sweep_line_2/Arr_vert_decomp_sl_visitor.h -include/CGAL/Sweep_line_2/Sweep_line_2_impl.h -include/CGAL/Sweep_line_2/Arr_default_overlay_traits_base.h -include/CGAL/Sweep_line_2/Arr_insertion_sl_visitor.h -include/CGAL/Sweep_line_2/Arr_batched_pl_sl_visitor.h -include/CGAL/Sweep_line_2/Sweep_line_subcurve.h -include/CGAL/Sweep_line_2/Sweep_line_2_debug.h -include/CGAL/Sweep_line_2/Sweep_line_2_utils.h -include/CGAL/Sweep_line_2/Sweep_line_2_visitors.h -include/CGAL/Sweep_line_2/Arr_overlay_traits_2.h -include/CGAL/Sweep_line_2/Arr_overlay_subcurve.h -include/CGAL/Sweep_line_2/Arr_insertion_traits_2.h -include/CGAL/Sweep_line_2/Arr_construction_event.h -include/CGAL/Min_circle_2.h -include/CGAL/array.h -include/CGAL/Polygon_traits_2.h -include/CGAL/Interval_skip_list.h -include/CGAL/Ray_2_Segment_2_intersection.h -include/CGAL/QP_solution.h -include/CGAL/Euclidean_distance.h -include/CGAL/Arr_linear_traits_2.h -include/CGAL/Delaunay_triangulation_adaptation_traits_2.h -include/CGAL/Exact_predicates_exact_constructions_kernel_with_sqrt.h -include/CGAL/partition_2.h -include/CGAL/Handle_with_policy.h -include/CGAL/mpz_class.h +include/CGAL/Apollonius_graph_2/uncertain/Uncertain_vertex_conflict_2.h +include/CGAL/Apollonius_graph_2/uncertain/uncertain_functions_on_signs.h +include/CGAL/Apollonius_graph_adaptation_policies_2.h +include/CGAL/Apollonius_graph_adaptation_traits_2.h +include/CGAL/Apollonius_graph_data_structure_2.h +include/CGAL/Apollonius_graph_filtered_traits_2.h +include/CGAL/Apollonius_graph_hierarchy_2.h +include/CGAL/Apollonius_graph_hierarchy_vertex_base_2.h +include/CGAL/Apollonius_graph_traits_2.h +include/CGAL/Apollonius_graph_vertex_base_2.h +include/CGAL/Apollonius_site_2.h +include/CGAL/Approximate_min_ellipsoid_d.h +include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_configure.h +include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_debug.h +include/CGAL/Approximate_min_ellipsoid_d/Approximate_min_ellipsoid_d_impl.h +include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation.h +include/CGAL/Approximate_min_ellipsoid_d/Khachiyan_approximation_impl.h +include/CGAL/Approximate_min_ellipsoid_d_traits_2.h +include/CGAL/Approximate_min_ellipsoid_d_traits_3.h +include/CGAL/Approximate_min_ellipsoid_d_traits_d.h +include/CGAL/Arithmetic_kernel.h +include/CGAL/Arithmetic_kernel/Arithmetic_kernel_base.h +include/CGAL/Arr_Bezier_curve_traits_2.h +include/CGAL/Arr_accessor.h include/CGAL/Arr_algebraic_segment_traits_2.h -include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_transformation.h -include/CGAL/Arr_spherical_gaussian_map_3/Arr_spherical_gaussian_map_3.h +include/CGAL/Arr_batched_point_location.h +include/CGAL/Arr_bounded_planar_topology_traits_2.h +include/CGAL/Arr_circle_segment_traits_2.h +include/CGAL/Arr_circular_arc_traits_2.h +include/CGAL/Arr_circular_line_arc_traits_2.h +include/CGAL/Arr_conic_traits_2.h +include/CGAL/Arr_consolidated_curve_data_traits_2.h +include/CGAL/Arr_counting_traits_2.h +include/CGAL/Arr_curve_data_traits_2.h +include/CGAL/Arr_dcel_base.h +include/CGAL/Arr_default_dcel.h +include/CGAL/Arr_default_overlay_traits.h +include/CGAL/Arr_enums.h +include/CGAL/Arr_extended_dcel.h +include/CGAL/Arr_face_index_map.h +include/CGAL/Arr_face_map.h +include/CGAL/Arr_geodesic_arc_on_sphere_partition_traits_2.h +include/CGAL/Arr_geodesic_arc_on_sphere_traits_2.h +include/CGAL/Arr_geometry_traits/Arr_plane_3.h +include/CGAL/Arr_geometry_traits/Bezier_bounding_rational_traits.h +include/CGAL/Arr_geometry_traits/Bezier_cache.h +include/CGAL/Arr_geometry_traits/Bezier_curve_2.h +include/CGAL/Arr_geometry_traits/Bezier_point_2.h +include/CGAL/Arr_geometry_traits/Bezier_x_monotone_2.h +include/CGAL/Arr_geometry_traits/Circle_segment_2.h +include/CGAL/Arr_geometry_traits/Conic_arc_2.h +include/CGAL/Arr_geometry_traits/Conic_intersections_2.h +include/CGAL/Arr_geometry_traits/Conic_point_2.h +include/CGAL/Arr_geometry_traits/Conic_x_monotone_arc_2.h +include/CGAL/Arr_geometry_traits/Consolidated_curve_data_aux.h +include/CGAL/Arr_geometry_traits/Curve_data_aux.h +include/CGAL/Arr_geometry_traits/Hyperbolic_arc_2.h +include/CGAL/Arr_geometry_traits/Polyline_2.h +include/CGAL/Arr_geometry_traits/Rational_arc_2.h +include/CGAL/Arr_geometry_traits/Segment_assertions.h +include/CGAL/Arr_geometry_traits/de_Casteljau_2.h +include/CGAL/Arr_landmarks_point_location.h +include/CGAL/Arr_line_arc_traits_2.h +include/CGAL/Arr_linear_traits_2.h +include/CGAL/Arr_naive_point_location.h +include/CGAL/Arr_non_caching_segment_basic_traits_2.h +include/CGAL/Arr_non_caching_segment_traits_2.h +include/CGAL/Arr_observer.h +include/CGAL/Arr_overlay.h +include/CGAL/Arr_overlay_2.h +include/CGAL/Arr_point_location/Arr_batched_point_location_traits_2.h +include/CGAL/Arr_point_location/Arr_landmarks_pl_impl.h +include/CGAL/Arr_point_location/Arr_lm_generator_base.h +include/CGAL/Arr_point_location/Arr_lm_grid_generator.h +include/CGAL/Arr_point_location/Arr_lm_halton_generator.h +include/CGAL/Arr_point_location/Arr_lm_middle_edges_generator.h +include/CGAL/Arr_point_location/Arr_lm_nearest_neighbor.h +include/CGAL/Arr_point_location/Arr_lm_random_generator.h +include/CGAL/Arr_point_location/Arr_lm_specified_points_generator.h +include/CGAL/Arr_point_location/Arr_lm_vertices_generator.h +include/CGAL/Arr_point_location/Arr_naive_point_location_impl.h +include/CGAL/Arr_point_location/Arr_simple_point_location_impl.h +include/CGAL/Arr_point_location/Arr_trapezoid_ric_pl_impl.h +include/CGAL/Arr_point_location/Arr_triangulation_pl_functions.h +include/CGAL/Arr_point_location/Arr_triangulation_pl_impl.h +include/CGAL/Arr_point_location/Arr_walk_along_line_pl_impl.h +include/CGAL/Arr_point_location/Td_X_trapezoid.h +include/CGAL/Arr_point_location/Td_active_edge.h +include/CGAL/Arr_point_location/Td_active_fictitious_vertex.h +include/CGAL/Arr_point_location/Td_active_trapezoid.h +include/CGAL/Arr_point_location/Td_active_vertex.h +include/CGAL/Arr_point_location/Td_dag.h +include/CGAL/Arr_point_location/Td_dag_node.h +include/CGAL/Arr_point_location/Td_inactive_edge.h +include/CGAL/Arr_point_location/Td_inactive_fictitious_vertex.h +include/CGAL/Arr_point_location/Td_inactive_trapezoid.h +include/CGAL/Arr_point_location/Td_inactive_vertex.h +include/CGAL/Arr_point_location/Td_ninetuple.h +include/CGAL/Arr_point_location/Td_predicates.h +include/CGAL/Arr_point_location/Td_traits.h +include/CGAL/Arr_point_location/Td_traits_functions.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_impl.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_iostream.h +include/CGAL/Arr_point_location/Trapezoidal_decomposition_2_misc.h +include/CGAL/Arr_point_location_result.h +include/CGAL/Arr_polyline_traits_2.h +include/CGAL/Arr_rat_arc/Algebraic_point_2.h +include/CGAL/Arr_rat_arc/Base_rational_arc_ds_1.h +include/CGAL/Arr_rat_arc/Cache.h +include/CGAL/Arr_rat_arc/Rational_arc_d_1.h +include/CGAL/Arr_rat_arc/Rational_function.h +include/CGAL/Arr_rat_arc/Rational_function_canonicalized_pair.h +include/CGAL/Arr_rat_arc/Rational_function_ordered_pair.h +include/CGAL/Arr_rat_arc/Rational_function_pair.h +include/CGAL/Arr_rat_arc/Singleton.h +include/CGAL/Arr_rational_function_traits_2.h +include/CGAL/Arr_segment_traits_2.h +include/CGAL/Arr_simple_point_location.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_on_sphere_transformation.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm.h include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_arr_dcel.h include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_initializer_visitor.h -include/CGAL/Arr_spherical_gaussian_map_3/Arr_on_sphere_transformation.h -include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_polyhedron_3.h -include/CGAL/Arr_spherical_gaussian_map_3/Arr_transform_on_sphere.h include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_overlay.h -include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_polyhedron_3.h include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_traits.h -include/CGAL/Robust_circumcenter_filtered_traits_3.h -include/CGAL/Mesh_criteria_3.h -include/CGAL/Vector_3.h -include/CGAL/Fourtuple.h -include/CGAL/known_bit_size_integers.h -include/CGAL/Delaunay_mesher_no_edge_refinement_2.h -include/CGAL/Min_ellipse_2/Min_ellipse_2_adapterC2.h -include/CGAL/Min_ellipse_2/Optimisation_ellipse_2.h -include/CGAL/Min_ellipse_2/Min_ellipse_2_adapterH2.h -include/CGAL/Min_ellipse_2/Min_ellipse_2_impl.h -include/CGAL/Min_ellipse_2/Optimisation_ellipse_2_impl.h -include/CGAL/ch_eddy.h -include/CGAL/is_iterator.h -include/CGAL/Stream_lines_2.h -include/CGAL/property_map.h -include/CGAL/Param_mesh_patch_iterators.h -include/CGAL/Root_of_traits_specializations.h -include/CGAL/Timer.h -include/CGAL/Straight_skeleton_face_base_2.h -include/CGAL/Constrained_triangulation_face_base_2.h -include/CGAL/intersection_3_1.h -include/CGAL/Segment_Delaunay_graph_adaptation_policies_2.h -include/CGAL/QP_solver/debug.h -include/CGAL/QP_solver/basic.h -include/CGAL/QP_solver/QP_functions_impl.h -include/CGAL/QP_solver/QP_pricing_strategy.h -include/CGAL/QP_solver/QP_full_exact_pricing.h -include/CGAL/QP_solver/functors.h -include/CGAL/QP_solver/QP_basis_inverse.h -include/CGAL/QP_solver/Unbounded_direction.h -include/CGAL/QP_solver/QP_full_filtered_pricing.h -include/CGAL/QP_solver/QP_solver_impl.h -include/CGAL/QP_solver/QP__filtered_base.h -include/CGAL/QP_solver/QP_solution_impl.h -include/CGAL/QP_solver/QP_partial_filtered_pricing.h -include/CGAL/QP_solver/QP_solver_bounds_impl.h -include/CGAL/QP_solver/Initialization.h -include/CGAL/QP_solver/QP_partial_exact_pricing.h -include/CGAL/QP_solver/QP_solver.h -include/CGAL/QP_solver/QP__filtered_base_impl.h -include/CGAL/QP_solver/QP_solver_nonstandardform_impl.h -include/CGAL/QP_solver/QP_basis_inverse_impl.h -include/CGAL/QP_solver/assertions.h -include/CGAL/QP_solver/QP_exact_bland_pricing.h -include/CGAL/QP_solver/QP__partial_base.h -include/CGAL/nearest_neighbor_delaunay_2.h -include/CGAL/envelope_3.h -include/CGAL/Cartesian_d.h -include/CGAL/AABB_halfedge_graph_segment_primitive.h -include/CGAL/Subdivision_mask_3.h -include/CGAL/leda_bigfloat.h -include/CGAL/Convex_hull_projective_xy_traits_2.h -include/CGAL/Line_arc_2.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_polyhedral_sgm_transformation.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_spherical_gaussian_map_3.h +include/CGAL/Arr_spherical_gaussian_map_3/Arr_transform_on_sphere.h +include/CGAL/Arr_spherical_topology_traits_2.h +include/CGAL/Arr_tags.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_batched_pl_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_construction_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_insertion_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_overlay_helper.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_topology_traits_2_impl.h +include/CGAL/Arr_topology_traits/Arr_bounded_planar_vert_decomp_helper.h +include/CGAL/Arr_topology_traits/Arr_inc_insertion_zone_visitor.h +include/CGAL/Arr_topology_traits/Arr_planar_topology_traits_base_2.h +include/CGAL/Arr_topology_traits/Arr_spherical_batched_pl_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_construction_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_insertion_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_overlay_helper.h +include/CGAL/Arr_topology_traits/Arr_spherical_topology_traits_2_impl.h +include/CGAL/Arr_topology_traits/Arr_spherical_vert_decomp_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_batched_pl_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_construction_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_insertion_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_overlay_helper.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_topology_traits_2_impl.h +include/CGAL/Arr_topology_traits/Arr_unb_planar_vert_decomp_helper.h +include/CGAL/Arr_tracing_traits_2.h +include/CGAL/Arr_trapezoid_ric_point_location.h +include/CGAL/Arr_triangulation_point_location.h +include/CGAL/Arr_unb_planar_topology_traits_2.h +include/CGAL/Arr_vertex_index_map.h +include/CGAL/Arr_vertex_map.h +include/CGAL/Arr_vertical_decomposition_2.h +include/CGAL/Arr_walk_along_line_point_location.h +include/CGAL/Arrangement_2.h +include/CGAL/Arrangement_2/Arr_compute_zone_visitor.h +include/CGAL/Arrangement_2/Arr_default_planar_topology.h +include/CGAL/Arrangement_2/Arr_do_intersect_zone_visitor.h +include/CGAL/Arrangement_2/Arr_on_surface_with_history_2_impl.h +include/CGAL/Arrangement_2/Arr_traits_adaptor_2.h +include/CGAL/Arrangement_2/Arr_traits_adaptor_2_dispatching.h +include/CGAL/Arrangement_2/Arr_with_history_accessor.h +include/CGAL/Arrangement_2/Arrangement_2_iterators.h +include/CGAL/Arrangement_2/Arrangement_on_surface_2_global.h +include/CGAL/Arrangement_2/Arrangement_on_surface_2_impl.h +include/CGAL/Arrangement_2/Arrangement_zone_2_impl.h +include/CGAL/Arrangement_2/Open_hash.h +include/CGAL/Arrangement_2/arrangement_type_traits.h +include/CGAL/Arrangement_on_surface_2.h +include/CGAL/Arrangement_on_surface_with_history_2.h +include/CGAL/Arrangement_with_history_2.h +include/CGAL/Arrangement_zone_2.h +include/CGAL/Barycentric_mapping_parameterizer_3.h +include/CGAL/Basic_sweep_line_2.h +include/CGAL/Bbox_2.h +include/CGAL/Bbox_2_Line_2_intersection.h +include/CGAL/Bbox_2_Ray_2_intersection.h +include/CGAL/Bbox_2_intersection.h +include/CGAL/Bbox_3.h +include/CGAL/Bigfloat_interval_traits.h include/CGAL/Boolean_set_operations_2.h -include/CGAL/Gmpzf.h -include/CGAL/Segment_Delaunay_graph_vertex_base_2.h -include/CGAL/Hilbert_policy_tags.h -include/CGAL/linear_least_squares_fitting_3.h -include/CGAL/Delaunay_mesh_criteria_2.h +include/CGAL/Boolean_set_operations_2/Bso_internal_functions.h +include/CGAL/Boolean_set_operations_2/Ccb_curve_iterator.h +include/CGAL/Boolean_set_operations_2/Curve_with_halfedge.h +include/CGAL/Boolean_set_operations_2/Gps_agg_meta_traits.h +include/CGAL/Boolean_set_operations_2/Gps_agg_op.h +include/CGAL/Boolean_set_operations_2/Gps_agg_op_sweep.h +include/CGAL/Boolean_set_operations_2/Gps_agg_op_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_base_functor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_base_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_intersection_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_join_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_scanner.h +include/CGAL/Boolean_set_operations_2/Gps_bfs_xor_visitor.h +include/CGAL/Boolean_set_operations_2/Gps_default_dcel.h +include/CGAL/Boolean_set_operations_2/Gps_default_traits.h +include/CGAL/Boolean_set_operations_2/Gps_difference_functor.h +include/CGAL/Boolean_set_operations_2/Gps_do_intersect_functor.h +include/CGAL/Boolean_set_operations_2/Gps_insertion_meta_traits.h +include/CGAL/Boolean_set_operations_2/Gps_intersection_functor.h +include/CGAL/Boolean_set_operations_2/Gps_join_functor.h +include/CGAL/Boolean_set_operations_2/Gps_merge.h +include/CGAL/Boolean_set_operations_2/Gps_on_surface_base_2.h +include/CGAL/Boolean_set_operations_2/Gps_on_surface_base_2_impl.h +include/CGAL/Boolean_set_operations_2/Gps_polygon_simplifier.h +include/CGAL/Boolean_set_operations_2/Gps_polygon_validation.h +include/CGAL/Boolean_set_operations_2/Gps_simplifier_traits.h +include/CGAL/Boolean_set_operations_2/Gps_sym_diff_functor.h +include/CGAL/Boolean_set_operations_2/Gps_traits_adaptor.h +include/CGAL/Boolean_set_operations_2/Gps_traits_decorator.h +include/CGAL/Boolean_set_operations_2/Point_with_vertex.h +include/CGAL/Boolean_set_operations_2/Polygon_2_curve_iterator.h +include/CGAL/Bounded_kernel.h +include/CGAL/Box_intersection_d/Box_d.h +include/CGAL/Box_intersection_d/Box_traits_d.h +include/CGAL/Box_intersection_d/Box_with_handle_d.h +include/CGAL/Box_intersection_d/box_limits.h +include/CGAL/Box_intersection_d/segment_tree.h +include/CGAL/CGAL_Ipelet_base.h +include/CGAL/CGAL_Ipelet_base_v6.h +include/CGAL/CGAL_Ipelet_base_v7.h +include/CGAL/CORE/BigFloat.h +include/CGAL/CORE/BigFloatRep.h +include/CGAL/CORE/BigInt.h +include/CGAL/CORE/BigRat.h +include/CGAL/CORE/CORE.h +include/CGAL/CORE/Config.h +include/CGAL/CORE/CoreAux.h +include/CGAL/CORE/CoreDefs.h +include/CGAL/CORE/Expr.h +include/CGAL/CORE/ExprRep.h +include/CGAL/CORE/Filter.h +include/CGAL/CORE/Gmp.h +include/CGAL/CORE/Impl.h +include/CGAL/CORE/MemoryPool.h +include/CGAL/CORE/Promote.h +include/CGAL/CORE/Real.h +include/CGAL/CORE/RealRep.h +include/CGAL/CORE/RefCount.h +include/CGAL/CORE/Timer.h +include/CGAL/CORE/extLong.h +include/CGAL/CORE/geom2d/circle2d.h +include/CGAL/CORE/geom2d/line2d.h +include/CGAL/CORE/geom2d/point2d.h +include/CGAL/CORE/geom2d/segment2d.h +include/CGAL/CORE/geom3d/line3d.h +include/CGAL/CORE/geom3d/plane3d.h +include/CGAL/CORE/geom3d/point3d.h +include/CGAL/CORE/geom3d/polygon3d.h +include/CGAL/CORE/geom3d/segment3d.h +include/CGAL/CORE/geom3d/triangle3d.h +include/CGAL/CORE/geombase.h +include/CGAL/CORE/geometry2d.h +include/CGAL/CORE/geometry3d.h +include/CGAL/CORE/linearAlgebra.h +include/CGAL/CORE/poly/Curves.h +include/CGAL/CORE/poly/Curves.tcc +include/CGAL/CORE/poly/Poly.h +include/CGAL/CORE/poly/Poly.tcc +include/CGAL/CORE/poly/Sturm.h include/CGAL/CORE_BigFloat.h -include/CGAL/Iso_rectangle_2_Point_2_intersection.h -include/CGAL/Intersection_traits_2.h -include/CGAL/Small_side_angle_bisector_decomposition_2.h -include/CGAL/Triangulation_data_structure_using_list_2.h -include/CGAL/Segment_Delaunay_graph_filtered_traits_2.h -include/CGAL/Arr_polyline_traits_2.h -include/CGAL/Minkowski_sum_2/Offset_conv_2.h -include/CGAL/Minkowski_sum_2/Union_of_cycles_2.h -include/CGAL/Minkowski_sum_2/Approx_offset_base_2.h -include/CGAL/Minkowski_sum_2/Offset_decomp_2.h -include/CGAL/Minkowski_sum_2/Exact_offset_base_2.h -include/CGAL/Minkowski_sum_2/Polygon_convex_decomposition.h -include/CGAL/Minkowski_sum_2/Decomposition_strategy_adapter.h -include/CGAL/Minkowski_sum_2/Union_of_curve_cycles_2.h -include/CGAL/Minkowski_sum_2/Labels.h -include/CGAL/Minkowski_sum_2/Minkowski_sum_decomp_2.h -include/CGAL/Minkowski_sum_2/Arr_labeled_traits_2.h -include/CGAL/Minkowski_sum_2/Union_of_segment_cycles_2.h -include/CGAL/Minkowski_sum_2/Minkowski_sum_conv_2.h -include/CGAL/Number_type_checker.h -include/CGAL/Segment_2_Segment_2_intersection.h -include/CGAL/Simple_spherical_kernel_3.h -include/CGAL/Double_map.h -include/CGAL/Interval_traits.h -include/CGAL/Largest_empty_iso_rectangle_2.h -include/CGAL/Arr_spherical_topology_traits_2.h -include/CGAL/Mesh_cell_criteria_3.h +include/CGAL/CORE_BigInt.h +include/CGAL/CORE_BigRat.h +include/CGAL/CORE_Expr.h +include/CGAL/CORE_algebraic_number_traits.h include/CGAL/CORE_arithmetic_kernel.h -include/CGAL/Search_traits_3.h -include/CGAL/Handle_hash_function.h -include/CGAL/Min_circle_2_traits_2.h -include/CGAL/General_polygon_with_holes_2.h -include/CGAL/AABB_primitive.h -include/CGAL/Root_for_spheres_2_3.h -include/CGAL/random_convex_set_2.h -include/CGAL/Compute_anchor_3.h -include/CGAL/Optimisation_d_traits_3.h -include/CGAL/sorted_matrix_search.h -include/CGAL/graph_traits_Dual_Arrangement_2.h -include/CGAL/random_selection.h -include/CGAL/linear_least_squares_fitting_segments_2.h -include/CGAL/Delaunay_triangulation_3.h -include/CGAL/Surface_mesher/Surface_mesher_edges_level.h -include/CGAL/Surface_mesher/Combining_oracle.h -include/CGAL/Surface_mesher/Surface_mesher.h -include/CGAL/Surface_mesher/Surface_mesher_visitor.h -include/CGAL/Surface_mesher/Profile_timer.h -include/CGAL/Surface_mesher/Standard_criteria.h -include/CGAL/Surface_mesher/Implicit_surface_oracle_3.h -include/CGAL/Surface_mesher/Vertices_on_the_same_psc_element_criterion.h -include/CGAL/Surface_mesher/Surface_mesher_regular_edges.h -include/CGAL/Surface_mesher/Surface_mesher_edges_level_visitor.h -include/CGAL/Surface_mesher/Surface_mesher_manifold.h -include/CGAL/Surface_mesher/Vertices_on_the_same_surface_criterion.h -include/CGAL/Surface_mesher/Types_generators.h -include/CGAL/Surface_mesher/Profile_counter.h -include/CGAL/Surface_mesher/Sphere_oracle_3.h -include/CGAL/Surface_mesher/Intersection_data_structure_3.h -include/CGAL/Surface_mesher/Verbose_flag.h -include/CGAL/Surface_mesher/Point_surface_indices_oracle_visitor.h -include/CGAL/Surface_mesher/Null_oracle_visitor.h -include/CGAL/Surface_mesher/Has_edges.h -include/CGAL/Surface_mesher/Polyhedral_oracle.h -include/CGAL/Surface_mesher/Poisson_implicit_surface_oracle_3.h -include/CGAL/PolyhedralSurf_neighbors.h -include/CGAL/Regular_complex_d.h -include/CGAL/sweep_observer.h -include/CGAL/monotone_matrix_search.h -include/CGAL/PCA_util.h -include/CGAL/Intersections_2/Triangle_2_Triangle_2_intersection_impl.h -include/CGAL/CGAL_Ipelet_base.h -include/CGAL/Envelope_diagram_1.h -include/CGAL/Segment_Delaunay_graph_2/Infinite_edge_interior_conflict_C2.h -include/CGAL/Segment_Delaunay_graph_2/basic.h -include/CGAL/Segment_Delaunay_graph_2/Arrangement_enum.h -include/CGAL/Segment_Delaunay_graph_2/Segment_Delaunay_graph_hierarchy_2_impl.h -include/CGAL/Segment_Delaunay_graph_2/Sqrt_extension_2.h -include/CGAL/Segment_Delaunay_graph_2/Finite_edge_interior_conflict_C2.h -include/CGAL/Segment_Delaunay_graph_2/Compare_x_2.h -include/CGAL/Segment_Delaunay_graph_2/in_place_edge_list.h -include/CGAL/Segment_Delaunay_graph_2/Segment_Delaunay_graph_2_impl.h -include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_ring_C2.h -include/CGAL/Segment_Delaunay_graph_2/Traits_wrapper_2.h -include/CGAL/Segment_Delaunay_graph_2/Oriented_side_of_bisector_C2.h -include/CGAL/Segment_Delaunay_graph_2/Basic_predicates_C2.h -include/CGAL/Segment_Delaunay_graph_2/Orientation_C2.h -include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_sqrt_field_new_C2.h -include/CGAL/Segment_Delaunay_graph_2/Cartesian_converter.h -include/CGAL/Segment_Delaunay_graph_2/Compare_y_2.h -include/CGAL/Segment_Delaunay_graph_2/Constructions_C2.h -include/CGAL/Segment_Delaunay_graph_2/Arrangement_type_C2.h -include/CGAL/Segment_Delaunay_graph_2/Are_parallel_C2.h -include/CGAL/Segment_Delaunay_graph_2/Oriented_side_C2.h -include/CGAL/Segment_Delaunay_graph_2/Predicates_C2.h -include/CGAL/Segment_Delaunay_graph_2/Vertex_conflict_C2.h -include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_C2.h -include/CGAL/Segment_Delaunay_graph_2/Filtered_traits_concept_check_tags.h -include/CGAL/Segment_Delaunay_graph_2/Is_degenerate_edge_C2.h -include/CGAL/Segment_Delaunay_graph_2/Triangulation_face_base_with_edges_2.h -include/CGAL/Segment_Delaunay_graph_2/Traits_base_2.h -include/CGAL/Segment_Delaunay_graph_2/Arrangement_type_non_intersecting_C2.h -include/CGAL/Segment_Delaunay_graph_2/Are_same_points_C2.h -include/CGAL/Segment_Delaunay_graph_2/Construct_storage_site_2.h -include/CGAL/Segment_Delaunay_graph_2/Construct_storage_site_with_info_2.h -include/CGAL/Segment_Delaunay_graph_2/Kernel_wrapper_2.h -include/CGAL/Segment_Delaunay_graph_2/Voronoi_vertex_sqrt_field_C2.h -include/CGAL/Segment_Delaunay_graph_2/edge_list.h -include/CGAL/Segment_Delaunay_graph_2/Are_same_segments_C2.h -include/CGAL/Segment_Delaunay_graph_2/Filtered_traits_base_2.h -include/CGAL/Weighted_Minkowski_distance.h -include/CGAL/Nef_3/Pluecker_line_3.h -include/CGAL/Nef_3/vertex_cycle_to_nef_3.h -include/CGAL/Nef_3/binop_intersection_tests.h -include/CGAL/Nef_3/quotient_coordinates_to_homogeneous_point.h -include/CGAL/Nef_3/bounded_side_3.h -include/CGAL/Nef_3/SNC_decorator_traits.h -include/CGAL/Nef_3/Binary_operation.h -include/CGAL/Nef_3/SNC_intersection.h -include/CGAL/Nef_3/Edge_edge_overlay.h -include/CGAL/Nef_3/SHalfloop.h -include/CGAL/Nef_3/SNC_constructor.h -include/CGAL/Nef_3/SNC_structure.h -include/CGAL/Nef_3/polyhedron_3_to_nef_3.h -include/CGAL/Nef_3/SNC_indexed_items.h -include/CGAL/Nef_3/Infimaximal_box.h -include/CGAL/Nef_3/Halfedge.h -include/CGAL/Nef_3/SFace.h -include/CGAL/Nef_3/SM_visualizor.h -include/CGAL/Nef_3/Default_items.h -include/CGAL/Nef_3/K3_tree.h -include/CGAL/Nef_3/SHalfedge.h -include/CGAL/Nef_3/SNC_ray_shooter.h -include/CGAL/Nef_3/SNC_items.h -include/CGAL/Nef_3/Halffacet.h -include/CGAL/Nef_3/Mark_bounded_volumes.h -include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_xz_3.h -include/CGAL/Nef_3/SNC_external_structure.h -include/CGAL/Nef_3/Combine_with_halfspace.h -include/CGAL/Nef_3/SNC_simplify.h -include/CGAL/Nef_3/SNC_list.h -include/CGAL/Nef_3/OGL_helper.h -include/CGAL/Nef_3/ID_support_handler.h -include/CGAL/Nef_3/shell_to_nef_3.h -include/CGAL/Nef_3/Vertex.h -include/CGAL/Nef_3/SNC_point_locator.h -include/CGAL/Nef_3/Volume.h -include/CGAL/Nef_3/Bounding_box_3.h -include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_xy_3.h -include/CGAL/Nef_3/Exact_triangulation_euclidean_traits_yz_3.h -include/CGAL/Nef_3/Nef_box.h -include/CGAL/Nef_3/SNC_decorator.h -include/CGAL/Nef_3/SNC_const_decorator.h -include/CGAL/Nef_3/SNC_SM_overlayer.h -include/CGAL/Nef_3/SNC_SM_explorer.h -include/CGAL/Nef_3/SNC_iteration.h -include/CGAL/Nef_3/SNC_sphere_map.h -include/CGAL/Nef_3/SNC_k3_tree_traits.h -include/CGAL/Nef_3/SNC_SM_visualizor.h -include/CGAL/Nef_3/SNC_FM_decorator.h -include/CGAL/Nef_3/SNC_io_parser.h -include/CGAL/Polynomials_for_line_3.h -include/CGAL/Modular_traits.h -include/CGAL/Sqrt_extension/Coercion_traits.h -include/CGAL/Sqrt_extension/Eigen_NumTraits.h -include/CGAL/Sqrt_extension/Modular_traits.h -include/CGAL/Sqrt_extension/Scalar_factor_traits.h -include/CGAL/Sqrt_extension/io.h -include/CGAL/Sqrt_extension/Algebraic_extension_traits.h -include/CGAL/Sqrt_extension/Chinese_remainder_traits.h -include/CGAL/Sqrt_extension/Get_arithmetic_kernel.h -include/CGAL/Sqrt_extension/Sqrt_extension_type.h -include/CGAL/Sqrt_extension/Wang_traits.h -include/CGAL/Sqrt_extension/Algebraic_structure_traits.h -include/CGAL/Sqrt_extension/Fraction_traits.h -include/CGAL/Sqrt_extension/convert_to_bfi.h -include/CGAL/Sqrt_extension/Real_embeddable_traits.h -include/CGAL/ch_melkman.h -include/CGAL/Bigfloat_interval_traits.h -include/CGAL/Segment_2_Iso_rectangle_2_intersection.h -include/CGAL/Segment_tree_d.h -include/CGAL/ipower.h -include/CGAL/Multiscale_sort.h -include/CGAL/long_long.h +include/CGAL/CORE_coercion_traits.h +include/CGAL/Cache.h +include/CGAL/Cartesian.h +include/CGAL/Cartesian/Aff_transformation_2.h +include/CGAL/Cartesian/Aff_transformation_3.h +include/CGAL/Cartesian/Aff_transformation_rep_2.h +include/CGAL/Cartesian/Aff_transformation_rep_3.h +include/CGAL/Cartesian/Cartesian_base.h +include/CGAL/Cartesian/Circle_2.h +include/CGAL/Cartesian/Circle_3.h +include/CGAL/Cartesian/Data_accessor_2.h +include/CGAL/Cartesian/Direction_2.h +include/CGAL/Cartesian/Direction_3.h +include/CGAL/Cartesian/Iso_cuboid_3.h +include/CGAL/Cartesian/Iso_rectangle_2.h +include/CGAL/Cartesian/Line_2.h +include/CGAL/Cartesian/Line_3.h +include/CGAL/Cartesian/MatrixC33.h +include/CGAL/Cartesian/Plane_3.h +include/CGAL/Cartesian/Point_2.h +include/CGAL/Cartesian/Point_3.h +include/CGAL/Cartesian/Ray_2.h +include/CGAL/Cartesian/Ray_3.h +include/CGAL/Cartesian/Rotation_rep_2.h +include/CGAL/Cartesian/Scaling_rep_2.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 11:28:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D6A8F48; Sun, 5 Oct 2014 11:28:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18F96AC4; Sun, 5 Oct 2014 11:28:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95BSLRw034182; Sun, 5 Oct 2014 11:28:21 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95BSL3A034179; Sun, 5 Oct 2014 11:28:21 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410051128.s95BSL3A034179@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 11:28:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370057 - in head: cad/openscad databases/pgrouting databases/sfcgal X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 11:28:22 -0000 Author: wen Date: Sun Oct 5 11:28:20 2014 New Revision: 370057 URL: https://svnweb.freebsd.org/changeset/ports/370057 QAT: https://qat.redports.org/buildarchive/r370057/ Log: - Bump PORTREVISION to chase the update of math/cgal Modified: head/cad/openscad/Makefile head/databases/pgrouting/Makefile head/databases/sfcgal/Makefile Modified: head/cad/openscad/Makefile ============================================================================== --- head/cad/openscad/Makefile Sun Oct 5 11:12:08 2014 (r370056) +++ head/cad/openscad/Makefile Sun Oct 5 11:28:20 2014 (r370057) @@ -3,7 +3,7 @@ PORTNAME= openscad PORTVERSION= 2014.03 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= cad MASTER_SITES= http://files.openscad.org/ DISTNAME= openscad-${PORTVERSION}.src Modified: head/databases/pgrouting/Makefile ============================================================================== --- head/databases/pgrouting/Makefile Sun Oct 5 11:12:08 2014 (r370056) +++ head/databases/pgrouting/Makefile Sun Oct 5 11:28:20 2014 (r370057) @@ -3,7 +3,7 @@ PORTNAME= pgrouting PORTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases geography MASTER_SITES= https://github.com/pgRouting/${PORTNAME}/archive/ DISTFILES= v${PORTVERSION}${EXTRACT_SUFX} Modified: head/databases/sfcgal/Makefile ============================================================================== --- head/databases/sfcgal/Makefile Sun Oct 5 11:12:08 2014 (r370056) +++ head/databases/sfcgal/Makefile Sun Oct 5 11:28:20 2014 (r370057) @@ -3,7 +3,7 @@ PORTNAME= sfcgal PORTVERSION= 1.0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases math graphics MASTER_SITES= http://github.com/Oslandia/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 11:49:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 44A8A2A5; Sun, 5 Oct 2014 11:49:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 315CCC8E; Sun, 5 Oct 2014 11:49:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95Bn5I4043615; Sun, 5 Oct 2014 11:49:05 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95Bn4lZ043611; Sun, 5 Oct 2014 11:49:04 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410051149.s95Bn4lZ043611@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 11:49:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370058 - head/www/mediawiki122 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 11:49:05 -0000 Author: wen Date: Sun Oct 5 11:49:04 2014 New Revision: 370058 URL: https://svnweb.freebsd.org/changeset/ports/370058 QAT: https://qat.redports.org/buildarchive/r370058/ Log: - Update to 1.22.12 Modified: head/www/mediawiki122/Makefile head/www/mediawiki122/distinfo Modified: head/www/mediawiki122/Makefile ============================================================================== --- head/www/mediawiki122/Makefile Sun Oct 5 11:28:20 2014 (r370057) +++ head/www/mediawiki122/Makefile Sun Oct 5 11:49:04 2014 (r370058) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.22.11 +PORTVERSION= 1.22.12 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 122 Modified: head/www/mediawiki122/distinfo ============================================================================== --- head/www/mediawiki122/distinfo Sun Oct 5 11:28:20 2014 (r370057) +++ head/www/mediawiki122/distinfo Sun Oct 5 11:49:04 2014 (r370058) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.22.11.tar.gz) = 0c32ef1ee31d4841c90926e699837f85cb2be9d7b45fffcabdb2e3b2a7c642a1 -SIZE (mediawiki-1.22.11.tar.gz) = 19885844 +SHA256 (mediawiki-1.22.12.tar.gz) = 0f698d8e1b4a3e9d60d44d2bbde75ecbf9e4265b6d067d32d6bc28246ee42ec3 +SIZE (mediawiki-1.22.12.tar.gz) = 19888757 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 12:00:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70DE1668; Sun, 5 Oct 2014 12:00:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DAC8D9C; Sun, 5 Oct 2014 12:00:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95C0FWG048607; Sun, 5 Oct 2014 12:00:15 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95C0EeM048605; Sun, 5 Oct 2014 12:00:14 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410051200.s95C0EeM048605@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 12:00:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370059 - head/www/mediawiki119 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 12:00:15 -0000 Author: wen Date: Sun Oct 5 12:00:14 2014 New Revision: 370059 URL: https://svnweb.freebsd.org/changeset/ports/370059 QAT: https://qat.redports.org/buildarchive/r370059/ Log: - Update to 1.19.20 Modified: head/www/mediawiki119/Makefile head/www/mediawiki119/distinfo Modified: head/www/mediawiki119/Makefile ============================================================================== --- head/www/mediawiki119/Makefile Sun Oct 5 11:49:04 2014 (r370058) +++ head/www/mediawiki119/Makefile Sun Oct 5 12:00:14 2014 (r370059) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediawiki -PORTVERSION= 1.19.19 +PORTVERSION= 1.19.20 CATEGORIES= www MASTER_SITES= http://releases.wikimedia.org/mediawiki/${PORTVERSION:R}/ PKGNAMESUFFIX= 119 Modified: head/www/mediawiki119/distinfo ============================================================================== --- head/www/mediawiki119/distinfo Sun Oct 5 11:49:04 2014 (r370058) +++ head/www/mediawiki119/distinfo Sun Oct 5 12:00:14 2014 (r370059) @@ -1,2 +1,2 @@ -SHA256 (mediawiki-1.19.19.tar.gz) = 3922d8a7265bf262213c0c119be5a6757a8254f758640b22ae5809582d7e4d22 -SIZE (mediawiki-1.19.19.tar.gz) = 17933583 +SHA256 (mediawiki-1.19.20.tar.gz) = e9f9383fd41278a4f2e2483a6617b98014755e88430ec88c03beed5a9bce95df +SIZE (mediawiki-1.19.20.tar.gz) = 17936696 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 12:16:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 609F1844; Sun, 5 Oct 2014 12:16:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3FC28F39; Sun, 5 Oct 2014 12:16:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95CGBAV057519; Sun, 5 Oct 2014 12:16:11 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95CGAoC057512; Sun, 5 Oct 2014 12:16:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051216.s95CGAoC057512@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 12:16:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370060 - in head/math/dynare: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 12:16:11 -0000 Author: antoine Date: Sun Oct 5 12:16:10 2014 New Revision: 370060 URL: https://svnweb.freebsd.org/changeset/ports/370060 QAT: https://qat.redports.org/buildarchive/r370060/ Log: - Do not package info/dir - Allow staging as a regular user Added: head/math/dynare/files/patch-Makefile.in (contents, props changed) Modified: head/math/dynare/Makefile head/math/dynare/pkg-plist Modified: head/math/dynare/Makefile ============================================================================== --- head/math/dynare/Makefile Sun Oct 5 12:00:14 2014 (r370059) +++ head/math/dynare/Makefile Sun Oct 5 12:16:10 2014 (r370060) @@ -3,7 +3,7 @@ PORTNAME= dynare PORTVERSION= 4.4.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= http://www.dynare.org/release/source/ Added: head/math/dynare/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/dynare/files/patch-Makefile.in Sun Oct 5 12:16:10 2014 (r370060) @@ -0,0 +1,14 @@ +--- Makefile.in.orig 2014-07-31 12:30:46 UTC ++++ Makefile.in +@@ -827,9 +827,9 @@ + install-exec-local: + $(MKDIR_P) $(DESTDIR)$(pkglibdir)/contrib/ms-sbvar/TZcode + cp -r examples $(DESTDIR)$(pkglibdir) +- cp -r matlab $(DESTDIR)$(pkglibdir) + rm -f $(DESTDIR)$(pkglibdir)/matlab/dynare_m +- cp preprocessor/dynare_m $(DESTDIR)$(pkglibdir)/matlab ++ cp -r matlab $(DESTDIR)$(pkglibdir) ++ $(INSTALL_PROGRAM) preprocessor/dynare_m $(DESTDIR)$(pkglibdir)/matlab + cp -r contrib/ms-sbvar/TZcode/MatlabFiles $(DESTDIR)$(pkglibdir)/contrib/ms-sbvar/TZcode + + uninstall-local: Modified: head/math/dynare/pkg-plist ============================================================================== --- head/math/dynare/pkg-plist Sun Oct 5 12:00:14 2014 (r370059) +++ head/math/dynare/pkg-plist Sun Oct 5 12:16:10 2014 (r370060) @@ -1,5 +1,4 @@ bin/dynare++ -info/dir lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0asfun.m lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0asgrad.m lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles/a0freefun.m @@ -1099,61 +1098,3 @@ lib/dynare/mex/octave/ordschur.oct lib/dynare/mex/octave/qmc_sequence.mex lib/dynare/mex/octave/qzcomplex.oct lib/dynare/mex/octave/sparse_hessian_times_B_kronecker_C.mex -@dirrmtry lib/dynare/contrib/ms-sbvar/TZcode/MatlabFiles -@dirrmtry lib/dynare/contrib/ms-sbvar/TZcode -@dirrmtry lib/dynare/contrib/ms-sbvar -@dirrmtry lib/dynare/contrib -@dirrmtry lib/dynare/examples -@dirrmtry lib/dynare/matlab/@dates -@dirrmtry lib/dynare/matlab/@dseries/private -@dirrmtry lib/dynare/matlab/@dseries -@dirrmtry lib/dynare/matlab/@dynTimeIndex -@dirrmtry lib/dynare/matlab/AIM -@dirrmtry lib/dynare/matlab/distributions -@dirrmtry lib/dynare/matlab/ep -@dirrmtry lib/dynare/matlab/gensylv -@dirrmtry lib/dynare/matlab/gsa -@dirrmtry lib/dynare/matlab/kalman/likelihood -@dirrmtry lib/dynare/matlab/kalman -@dirrmtry lib/dynare/matlab/kronecker -@dirrmtry lib/dynare/matlab/missing/bsxfun -@dirrmtry lib/dynare/matlab/missing/ilu -@dirrmtry lib/dynare/matlab/missing/issquare -@dirrmtry lib/dynare/matlab/missing/nanmean -@dirrmtry lib/dynare/matlab/missing/ordeig -@dirrmtry lib/dynare/matlab/missing/rows_columns -@dirrmtry lib/dynare/matlab/missing/stats -@dirrmtry lib/dynare/matlab/missing/strjoin -@dirrmtry lib/dynare/matlab/missing/vec -@dirrmtry lib/dynare/matlab/missing -@dirrmtry lib/dynare/matlab/ms-sbvar/identification -@dirrmtry lib/dynare/matlab/ms-sbvar -@dirrmtry lib/dynare/matlab/parallel -@dirrmtry lib/dynare/matlab/partial_information -@dirrmtry lib/dynare/matlab/particle/local_state_space_iteration -@dirrmtry lib/dynare/matlab/particle -@dirrmtry lib/dynare/matlab/qz -@dirrmtry lib/dynare/matlab/reports/@elements -@dirrmtry lib/dynare/matlab/reports/@graph -@dirrmtry lib/dynare/matlab/reports/@objArray -@dirrmtry lib/dynare/matlab/reports/@page -@dirrmtry lib/dynare/matlab/reports/@pages -@dirrmtry lib/dynare/matlab/reports/@report -@dirrmtry lib/dynare/matlab/reports/@report_series -@dirrmtry lib/dynare/matlab/reports/@report_table -@dirrmtry lib/dynare/matlab/reports/@section -@dirrmtry lib/dynare/matlab/reports/@sections -@dirrmtry lib/dynare/matlab/reports/@seriesElements -@dirrmtry lib/dynare/matlab/reports/@vspace -@dirrmtry lib/dynare/matlab/reports -@dirrmtry lib/dynare/matlab/utilities/dataset -@dirrmtry lib/dynare/matlab/utilities/dates -@dirrmtry lib/dynare/matlab/utilities/doc -@dirrmtry lib/dynare/matlab/utilities/dseries -@dirrmtry lib/dynare/matlab/utilities/general -@dirrmtry lib/dynare/matlab/utilities/tests -@dirrmtry lib/dynare/matlab/utilities -@dirrmtry lib/dynare/matlab -@dirrmtry lib/dynare/mex/octave -@dirrmtry lib/dynare/mex -@dirrmtry lib/dynare From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:00:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBB73D7E; Sun, 5 Oct 2014 13:00:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6BEE32C; Sun, 5 Oct 2014 13:00:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95D0cKU077624; Sun, 5 Oct 2014 13:00:38 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95D0caa077622; Sun, 5 Oct 2014 13:00:38 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410051300.s95D0caa077622@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 5 Oct 2014 13:00:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370061 - head/misc/mdp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:00:39 -0000 Author: riggs Date: Sun Oct 5 13:00:37 2014 New Revision: 370061 URL: https://svnweb.freebsd.org/changeset/ports/370061 QAT: https://qat.redports.org/buildarchive/r370061/ Log: - Update to upstream version 0.91.3 PR: 194141 Submitted by: neel@neelc.org (maintainer) Modified: head/misc/mdp/Makefile head/misc/mdp/distinfo (contents, props changed) Modified: head/misc/mdp/Makefile ============================================================================== --- head/misc/mdp/Makefile Sun Oct 5 12:16:10 2014 (r370060) +++ head/misc/mdp/Makefile Sun Oct 5 13:00:37 2014 (r370061) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mdp -PORTVERSION= 0.91.2 +PORTVERSION= 0.91.3 CATEGORIES= misc MAINTAINER= neel@neelc.org @@ -12,7 +12,7 @@ LICENSE= GPLv3 USE_GITHUB= yes GH_ACCOUNT= visit1985 GH_PROJECT= mdp -GH_COMMIT= 27d774d +GH_COMMIT= c7c8c0f USES= gmake WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} Modified: head/misc/mdp/distinfo ============================================================================== --- head/misc/mdp/distinfo Sun Oct 5 12:16:10 2014 (r370060) +++ head/misc/mdp/distinfo Sun Oct 5 13:00:37 2014 (r370061) @@ -1,2 +1,2 @@ -SHA256 (mdp-0.91.2.tar.gz) = 866c1640aa19ef39def3893129af27387cfc195ac406501bf88b37eca9b2f3c6 -SIZE (mdp-0.91.2.tar.gz) = 25600 +SHA256 (mdp-0.91.3.tar.gz) = 237b8b78808a3327119db224bfb55581c9fdf0cd5cfed15593d4b03b44342643 +SIZE (mdp-0.91.3.tar.gz) = 26958 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:22:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DC08F8B; Sun, 5 Oct 2014 13:22:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30BE57A3; Sun, 5 Oct 2014 13:22:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DM7aU089610; Sun, 5 Oct 2014 13:22:07 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DM670089608; Sun, 5 Oct 2014 13:22:06 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051322.s95DM670089608@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 13:22:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370062 - in head/comms/aldo: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:22:07 -0000 Author: tijl Date: Sun Oct 5 13:22:06 2014 New Revision: 370062 URL: https://svnweb.freebsd.org/changeset/ports/370062 QAT: https://qat.redports.org/buildarchive/r370062/ Log: - Remove USE_AUTOTOOLS - Replace CONFIGURE_ARGS with CPPFLAGS/LIBS - Use default do-install Added: head/comms/aldo/files/patch-configure (contents, props changed) Modified: head/comms/aldo/Makefile Modified: head/comms/aldo/Makefile ============================================================================== --- head/comms/aldo/Makefile Sun Oct 5 13:00:37 2014 (r370061) +++ head/comms/aldo/Makefile Sun Oct 5 13:22:06 2014 (r370062) @@ -14,24 +14,12 @@ COMMENT= Morse code training program LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf automake -CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \ - --libdir="${LOCALBASE}/lib" +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib USES= gmake libtool tar:bzip2 USE_GCC= any PLIST_FILES= bin/aldo \ man/man1/aldo.1.gz -AUTOTOOLSFILES= aclocal.m4 - -post-patch: - @${REINPLACE_CMD} -e 's|1.10|%%AUTOMAKE_APIVER%%|g' \ - -e 's|2.61|%%AUTOCONF_VERSION%%|g' \ - ${WRKSRC}/aclocal.m4 - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/aldo ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/aldo.1 ${STAGEDIR}${MANPREFIX}/man/man1 - .include Added: head/comms/aldo/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/aldo/files/patch-configure Sun Oct 5 13:22:06 2014 (r370062) @@ -0,0 +1,12 @@ +--- configure.orig 2007-11-05 09:22:11 UTC ++++ configure +@@ -2220,9 +2220,6 @@ am__tar='${AMTAR} chof - "$$tardir"'; am + + + +-CPPFLAGS="-I${includedir}" +-LDFLAGS="-L${libdir}" +-LIBS="-L${libdir} ${LIBS}" + + # Checks for programs. + ac_ext=cpp From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:23:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 66AF4103; Sun, 5 Oct 2014 13:23:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 487CE7AF; Sun, 5 Oct 2014 13:23:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DNAEG089883; Sun, 5 Oct 2014 13:23:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DN9sH089876; Sun, 5 Oct 2014 13:23:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051323.s95DN9sH089876@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 13:23:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370063 - in head/www: . py-gevent-websocket X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:23:10 -0000 Author: antoine Date: Sun Oct 5 13:23:08 2014 New Revision: 370063 URL: https://svnweb.freebsd.org/changeset/ports/370063 QAT: https://qat.redports.org/buildarchive/r370063/ Log: New port: www/py-gevent-websocket gevent-websocket is a WebSocket library for the gevent networking library. Features include: Integration on both socket level or using an abstract interface. RPC and PubSub framework using WAMP (WebSocket Application Messaging Protocol). Easily extendible using a simple WebSocket protocol plugin API WWW: https://bitbucket.org/Jeffrey/gevent-websocket Added: head/www/py-gevent-websocket/ head/www/py-gevent-websocket/Makefile (contents, props changed) head/www/py-gevent-websocket/distinfo (contents, props changed) head/www/py-gevent-websocket/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Oct 5 13:22:06 2014 (r370062) +++ head/www/Makefile Sun Oct 5 13:23:08 2014 (r370063) @@ -1536,6 +1536,7 @@ SUBDIR += py-formencode SUBDIR += py-frozen-flask SUBDIR += py-funkload + SUBDIR += py-gevent-websocket SUBDIR += py-google-api-python-client SUBDIR += py-graphite-web SUBDIR += py-grequests Added: head/www/py-gevent-websocket/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-gevent-websocket/Makefile Sun Oct 5 13:23:08 2014 (r370063) @@ -0,0 +1,21 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= gevent-websocket +PORTVERSION= 0.9.3 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= WebSocket library for the gevent networking library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gevent>=0:${PORTSDIR}/devel/py-gevent + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-gevent-websocket/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-gevent-websocket/distinfo Sun Oct 5 13:23:08 2014 (r370063) @@ -0,0 +1,2 @@ +SHA256 (gevent-websocket-0.9.3.tar.gz) = 6475220340f9f8895a0f51bd2b9df3511bc7765dc055f49e997584bdaee3381f +SIZE (gevent-websocket-0.9.3.tar.gz) = 16463 Added: head/www/py-gevent-websocket/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-gevent-websocket/pkg-descr Sun Oct 5 13:23:08 2014 (r370063) @@ -0,0 +1,7 @@ +gevent-websocket is a WebSocket library for the gevent networking library. +Features include: +Integration on both socket level or using an abstract interface. +RPC and PubSub framework using WAMP (WebSocket Application Messaging Protocol). +Easily extendible using a simple WebSocket protocol plugin API + +WWW: https://bitbucket.org/Jeffrey/gevent-websocket From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:24:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C72481EA; Sun, 5 Oct 2014 13:24:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B45B07B7; Sun, 5 Oct 2014 13:24:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DOweY090195; Sun, 5 Oct 2014 13:24:58 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DOwoX090194; Sun, 5 Oct 2014 13:24:58 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051324.s95DOwoX090194@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 13:24:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370064 - head/dns/dnswall X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:24:58 -0000 Author: tijl Date: Sun Oct 5 13:24:58 2014 New Revision: 370064 URL: https://svnweb.freebsd.org/changeset/ports/370064 QAT: https://qat.redports.org/buildarchive/r370064/ Log: - Move PROJECTHOST up (portlint) - Convert to USES=autoreconf - Remove DOCS option patching. Not needed with staging. Modified: head/dns/dnswall/Makefile Modified: head/dns/dnswall/Makefile ============================================================================== --- head/dns/dnswall/Makefile Sun Oct 5 13:23:08 2014 (r370063) +++ head/dns/dnswall/Makefile Sun Oct 5 13:24:58 2014 (r370064) @@ -6,39 +6,18 @@ PORTVERSION= 0.1.4 PORTREVISION= 1 CATEGORIES= dns security MASTER_SITES= GOOGLE_CODE CRITICAL +PROJECTHOST= google-dnswall MAINTAINER= ehaupt@FreeBSD.org COMMENT= Daemon that filters out private IP addresses in DNS responses -USES= dos2unix -PROJECTHOST= google-dnswall -USE_AUTOTOOLS= automake autoconf:env - +GNU_CONFIGURE= yes +USES= autoreconf dos2unix WRKSRC= ${WRKDIR}/${PORTNAME} -AUTOFILES= depcomp install-sh missing - PORTDOCS= README PLIST_FILES= bin/dnswall -AUTOTOOLSFILES= aclocal.m4 - OPTIONS_DEFINE= DOCS -.include - -post-patch: - @${REINPLACE_CMD} -e 's|1.10|%%AUTOMAKE_APIVER%%|g' \ - -e 's|2.61|%%AUTOCONF_VERSION%%|g' \ - ${WRKSRC}/aclocal.m4 -.if empty(PORT_OPTIONS:MDOCS) - @${REINPLACE_CMD} -e '/^dist_doc_DATA/d' ${WRKSRC}/Makefile.am -.endif - -pre-configure: -.for f in ${AUTOFILES} - @${RM} ${WRKSRC}/${f} - @${LN} -s ${AUTOMAKE_DIR}/${f} ${WRKSRC}/${f} -.endfor - .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:29:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03B2F2FB; Sun, 5 Oct 2014 13:29:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E42007D4; Sun, 5 Oct 2014 13:29:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DTGxJ090867; Sun, 5 Oct 2014 13:29:16 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DTFEO090859; Sun, 5 Oct 2014 13:29:15 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410051329.s95DTFEO090859@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 13:29:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370065 - in head/devel/py-mwlib: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:29:17 -0000 Author: wen Date: Sun Oct 5 13:29:15 2014 New Revision: 370065 URL: https://svnweb.freebsd.org/changeset/ports/370065 QAT: https://qat.redports.org/buildarchive/r370065/ Log: - Fix dependencies [1] - Add rc scripts [1] - Reset maintainer to ports@ PR: 193784 [1] Submitted by: swills@ [1] Added: head/devel/py-mwlib/files/ head/devel/py-mwlib/files/mwqserve.in (contents, props changed) head/devel/py-mwlib/files/nserve.in (contents, props changed) head/devel/py-mwlib/files/nslave.in (contents, props changed) head/devel/py-mwlib/files/postman.in (contents, props changed) Modified: head/devel/py-mwlib/Makefile Modified: head/devel/py-mwlib/Makefile ============================================================================== --- head/devel/py-mwlib/Makefile Sun Oct 5 13:24:58 2014 (r370064) +++ head/devel/py-mwlib/Makefile Sun Oct 5 13:29:15 2014 (r370065) @@ -3,35 +3,40 @@ PORTNAME= mwlib PORTVERSION= 0.15.14 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= wen@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Python's MediaWiki Parser and Utility Library LICENSE= BSD3CLAUSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}parsing>0:${PORTSDIR}/devel/py-parsing \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}apipkg>=1.2:${PORTSDIR}/devel/py-apipkg \ + ${PYTHON_PKGNAMEPREFIX}bottle>=0.10:${PORTSDIR}/www/py-bottle \ + ${PYTHON_PKGNAMEPREFIX}flup>=1.0:${PORTSDIR}/www/py-flup \ ${PYTHON_PKGNAMEPREFIX}gevent>=0:${PORTSDIR}/devel/py-gevent \ + ${PYTHON_PKGNAMEPREFIX}lockfile>=0.8:${PORTSDIR}/devel/py-lockfile \ + ${PYTHON_PKGNAMEPREFIX}lxml>=0:${PORTSDIR}/devel/py-lxml \ ${PYTHON_PKGNAMEPREFIX}odfpy>=0.9:${PORTSDIR}/devel/py-odfpy \ ${PYTHON_PKGNAMEPREFIX}webob>=0.9.6.1:${PORTSDIR}/www/py-webob \ ${PYTHON_PKGNAMEPREFIX}lockfile>=0.8:${PORTSDIR}/devel/py-lockfile \ ${PYTHON_PKGNAMEPREFIX}timelib>=0.2:${PORTSDIR}/devel/py-timelib \ ${PYTHON_PKGNAMEPREFIX}pdf>=1.12:${PORTSDIR}/print/py-pdf \ - ${PYTHON_PKGNAMEPREFIX}simplejson>2.0.8:${PORTSDIR}/devel/py-simplejson \ - ${PYTHON_PKGNAMEPREFIX}flup>=1.0:${PORTSDIR}/www/py-flup \ ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}pylib>=1.4.0:${PORTSDIR}/devel/py-pylib \ - ${PYTHON_PKGNAMEPREFIX}lxml>=0:${PORTSDIR}/devel/py-lxml \ - ${PYTHON_PKGNAMEPREFIX}apipkg>=0:${PORTSDIR}/devel/py-apipkg \ ${PYTHON_PKGNAMEPREFIX}qserve>=0:${PORTSDIR}/devel/py-qserve \ ${PYTHON_PKGNAMEPREFIX}roman>=0:${PORTSDIR}/math/py-roman \ - ${PYTHON_PKGNAMEPREFIX}sqlite3dbm>=0:${PORTSDIR}/databases/py-sqlite3dbm + ${PYTHON_PKGNAMEPREFIX}simplejson>2.0.8:${PORTSDIR}/devel/py-simplejson \ + ${PYTHON_PKGNAMEPREFIX}sqlite3dbm>=0:${PORTSDIR}/databases/py-sqlite3dbm \ + ${PYTHON_PKGNAMEPREFIX}timelib>=0.2:${PORTSDIR}/devel/py-timelib \ + ${PYTHON_PKGNAMEPREFIX}webob>=0.9.6.1:${PORTSDIR}/www/py-webob USES= python:2 zip -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist distutils +USE_RC_SUBR= mwqserve nserve nslave postman +SUB_LIST= PYTHON_CMD=${PYTHON_CMD} post-patch: ${REINPLACE_CMD} \ Added: head/devel/py-mwlib/files/mwqserve.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mwlib/files/mwqserve.in Sun Oct 5 13:29:15 2014 (r370065) @@ -0,0 +1,38 @@ +#! /bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: mwqserve +# REQUIRE: DAEMON +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable mwqserve: +# +#mwqserve_enable="YES" + +. /etc/rc.subr + +name="mwqserve" +rcvar="mwqserve_enable" + +load_rc_config $name + +: ${mwqserve_user:=www} +: ${mwqserve_group:=www} +: ${mwqserve_enable:=NO} + +pidfile="/var/run/${name}.pid" +command="/usr/sbin/daemon" +command_args="-c -f -p ${pidfile} %%PREFIX%%/bin/mw-qserve ${mwqserve_args}" +command_interpreter="%%PYTHON_CMD%%" +procname="%%PREFIX%%/bin/mw-qserve" + +start_precmd=mwqserve_pre_start + +mwqserve_pre_start() { + /usr/bin/install -o ${mwqserve_user} -g ${mwqserve_group} -m 644 /dev/null ${pidfile} +} + +run_rc_command "$1" Added: head/devel/py-mwlib/files/nserve.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mwlib/files/nserve.in Sun Oct 5 13:29:15 2014 (r370065) @@ -0,0 +1,38 @@ +#! /bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: nserve +# REQUIRE: DAEMON +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable nserve: +# +#nserve_enable="YES" + +. /etc/rc.subr + +name="nserve" +rcvar="nserve_enable" + +load_rc_config $name + +: ${nserve_user:=www} +: ${nserve_group:=www} +: ${nserve_enable:=NO} + +pidfile="/var/run/${name}.pid" +command="/usr/sbin/daemon" +command_args="-c -f -p ${pidfile} %%PREFIX%%/bin/nserve ${nserve_args}" +command_interpreter="%%PYTHON_CMD%%" +procname="%%PREFIX%%/bin/nserve" + +start_precmd=nserve_pre_start + +nserve_pre_start() { + /usr/bin/install -o ${nserve_user} -g ${nserve_group} -m 644 /dev/null ${pidfile} +} + +run_rc_command "$1" Added: head/devel/py-mwlib/files/nslave.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mwlib/files/nslave.in Sun Oct 5 13:29:15 2014 (r370065) @@ -0,0 +1,38 @@ +#! /bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: nslave +# REQUIRE: DAEMON +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable nslave: +# +#nslave_enable="YES" + +. /etc/rc.subr + +name="nslave" +rcvar="nslave_enable" + +load_rc_config $name + +: ${nslave_user:=www} +: ${nslave_group:=www} +: ${nslave_enable:=NO} + +pidfile="/var/run/${name}.pid" +command="/usr/sbin/daemon" +command_args="-c -f -p ${pidfile} %%PREFIX%%/bin/nslave ${nslave_args}" +command_interpreter="%%PYTHON_CMD%%" +procname="%%PREFIX%%/bin/nslave" + +start_precmd=nslave_pre_start + +nslave_pre_start() { + /usr/bin/install -o ${nslave_user} -g ${nslave_group} -m 644 /dev/null ${pidfile} +} + +run_rc_command "$1" Added: head/devel/py-mwlib/files/postman.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-mwlib/files/postman.in Sun Oct 5 13:29:15 2014 (r370065) @@ -0,0 +1,38 @@ +#! /bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: postman +# REQUIRE: DAEMON +# KEYWORD: shutdown + +# +# Add the following lines to /etc/rc.conf to enable postman: +# +#postman_enable="YES" + +. /etc/rc.subr + +name="postman" +rcvar="postman_enable" + +load_rc_config $name + +: ${postman_user:=www} +: ${postman_group:=www} +: ${postman_enable:=NO} + +pidfile="/var/run/${name}.pid" +command="/usr/sbin/daemon" +command_args="-c -f -p ${pidfile} %%PREFIX%%/bin/postman ${postman_args}" +command_interpreter="%%PYTHON_CMD%%" +procname="%%PREFIX%%/bin/postman" + +start_precmd=postman_pre_start + +postman_pre_start() { + /usr/bin/install -o ${postman_user} -g ${postman_group} -m 644 /dev/null ${pidfile} +} + +run_rc_command "$1" From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:29:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DFB683DF; Sun, 5 Oct 2014 13:29:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C99E37DA; Sun, 5 Oct 2014 13:29:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DTlMV091480; Sun, 5 Oct 2014 13:29:47 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DTfIc091429; Sun, 5 Oct 2014 13:29:41 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410051329.s95DTfIc091429@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 5 Oct 2014 13:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370066 - in head/lang: . slib slib-guile slib-guile/files slib-guile2 slib-guile2/files slib/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:29:48 -0000 Author: madpilot Date: Sun Oct 5 13:29:40 2014 New Revision: 370066 URL: https://svnweb.freebsd.org/changeset/ports/370066 QAT: https://qat.redports.org/buildarchive/r370066/ Log: - Update slib and slib-guile to 3b4 - Fix build for lang/slib with new texinfo [1] - Convert slib-guile @exec/@unexec directives to post install/deinstall scripts - Add new port slib-guile2 based on slib-guile - Remove dirrms MFH: 2014Q4 Added: head/lang/slib-guile/files/ head/lang/slib-guile/files/pkg-deinstall.in (contents, props changed) head/lang/slib-guile/files/pkg-install.in (contents, props changed) head/lang/slib-guile2/ - copied from r370008, head/lang/slib-guile/ head/lang/slib-guile2/files/ head/lang/slib-guile2/files/pkg-deinstall.in (contents, props changed) head/lang/slib-guile2/files/pkg-install.in (contents, props changed) head/lang/slib/files/ head/lang/slib/files/patch-color.txi (contents, props changed) head/lang/slib/files/patch-colornam.txi (contents, props changed) head/lang/slib/files/patch-dbutil.txi (contents, props changed) head/lang/slib/files/patch-determ.txi (contents, props changed) head/lang/slib/files/patch-dirs.txi (contents, props changed) head/lang/slib/files/patch-glob.txi (contents, props changed) head/lang/slib/files/patch-grapheps.txi (contents, props changed) head/lang/slib/files/patch-phil-spc.txi (contents, props changed) head/lang/slib/files/patch-pnm.txi (contents, props changed) head/lang/slib/files/patch-random.txi (contents, props changed) head/lang/slib/files/patch-schmooz.texi (contents, props changed) head/lang/slib/files/patch-slib.texi (contents, props changed) head/lang/slib/files/patch-solid.txi (contents, props changed) head/lang/slib/files/patch-xml-parse.txi (contents, props changed) Deleted: head/lang/slib-guile/pkg-plist head/lang/slib-guile2/pkg-plist Modified: head/lang/Makefile head/lang/slib-guile/Makefile head/lang/slib-guile2/Makefile head/lang/slib/Makefile head/lang/slib/distinfo head/lang/slib/pkg-plist Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Sun Oct 5 13:29:15 2014 (r370065) +++ head/lang/Makefile Sun Oct 5 13:29:40 2014 (r370066) @@ -289,6 +289,7 @@ SUBDIR += sketchy SUBDIR += slib SUBDIR += slib-guile + SUBDIR += slib-guile2 SUBDIR += slisp SUBDIR += smalltalk SUBDIR += smlnj Modified: head/lang/slib-guile/Makefile ============================================================================== --- head/lang/slib-guile/Makefile Sun Oct 5 13:29:15 2014 (r370065) +++ head/lang/slib-guile/Makefile Sun Oct 5 13:29:40 2014 (r370066) @@ -3,8 +3,7 @@ # $MCom: ports/lang/slib-guile/Makefile,v 1.3 2006/10/13 02:32:48 marcus Exp $ PORTNAME= slib -PORTVERSION= 3b3 # Keep this in sync with lang/slib -PORTREVISION= 1 +PORTVERSION= 3b4 # Keep this in sync with lang/slib CATEGORIES= lang scheme MASTER_SITES= # empty PKGNAMESUFFIX= -guile @@ -17,6 +16,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/slib/r guile:${PORTSDIR}/lang/guile RUN_DEPENDS:= ${BUILD_DEPENDS} +SUB_FILES+= pkg-install pkg-deinstall NO_BUILD= yes NO_INSTALL= yes Added: head/lang/slib-guile/files/pkg-deinstall.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib-guile/files/pkg-deinstall.in Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$2" in +"POST-DEINSTALL") + rm -f %%LOCALBASE%%/share/guile/1.8/slib + rm -f %%LOCALBASE%%/share/guile/1.8/slibcat + ;; +esac Added: head/lang/slib-guile/files/pkg-install.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib-guile/files/pkg-install.in Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$2" in +"POST-INSTALL") + ln -shf %%LOCALBASE%%/share/slib %%LOCALBASE%%/share/guile/1.8/slib + env GUILE_IMPLEMENTATION_PATH=%%LOCALBASE%%/share/guile/1.8 %%LOCALBASE%%/bin/guile -q -l %%LOCALBASE%%/share/slib/guile.init -c "(use-modules (ice-9 slib))(require 'new-catalog)" + ;; +esac Modified: head/lang/slib-guile2/Makefile ============================================================================== --- head/lang/slib-guile/Makefile Sat Oct 4 22:38:23 2014 (r370008) +++ head/lang/slib-guile2/Makefile Sun Oct 5 13:29:40 2014 (r370066) @@ -3,20 +3,20 @@ # $MCom: ports/lang/slib-guile/Makefile,v 1.3 2006/10/13 02:32:48 marcus Exp $ PORTNAME= slib -PORTVERSION= 3b3 # Keep this in sync with lang/slib -PORTREVISION= 1 +PORTVERSION= 3b4 # Keep this in sync with lang/slib CATEGORIES= lang scheme MASTER_SITES= # empty -PKGNAMESUFFIX= -guile +PKGNAMESUFFIX= -guile2 DISTFILES= # empty MAINTAINER= ports@FreeBSD.org COMMENT= SLIB installation for Guile BUILD_DEPENDS= ${LOCALBASE}/share/slib/require.scm:${PORTSDIR}/lang/slib \ - guile:${PORTSDIR}/lang/guile + guile:${PORTSDIR}/lang/guile2 RUN_DEPENDS:= ${BUILD_DEPENDS} +SUB_FILES+= pkg-install pkg-deinstall NO_BUILD= yes NO_INSTALL= yes Added: head/lang/slib-guile2/files/pkg-deinstall.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib-guile2/files/pkg-deinstall.in Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$2" in +"POST-DEINSTALL") + rm -f %%LOCALBASE%%/share/guile/2.0/slib + rm -f %%LOCALBASE%%/share/guile/2.0/slibcat + ;; +esac Added: head/lang/slib-guile2/files/pkg-install.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib-guile2/files/pkg-install.in Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$2" in +"POST-INSTALL") + ln -shf %%LOCALBASE%%/share/slib %%LOCALBASE%%/share/guile/2.0/slib + env GUILE_IMPLEMENTATION_PATH=%%LOCALBASE%%/share/guile/2.0 %%LOCALBASE%%/bin/guile -q -l %%LOCALBASE%%/share/slib/guile-2.init -c "(use-modules (ice-9 slib))(require 'new-catalog)" + ;; +esac Modified: head/lang/slib/Makefile ============================================================================== --- head/lang/slib/Makefile Sun Oct 5 13:29:15 2014 (r370065) +++ head/lang/slib/Makefile Sun Oct 5 13:29:40 2014 (r370066) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= slib -PORTVERSION= 3b3 +PORTVERSION= 3b4 CATEGORIES= lang scheme MASTER_SITES= http://groups.csail.mit.edu/mac/ftpdir/scm/ \ http://groups.csail.mit.edu/mac/ftpdir/scm/OLD/ @@ -19,6 +19,7 @@ OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's|/usr/lib/slib|${PREFIX}/share/slib|' ${WRKSRC}/guile.init + @${TOUCH} ${WRKSRC}/*.txi do-install: @${MKDIR} ${STAGEDIR}${DATADIR} Modified: head/lang/slib/distinfo ============================================================================== --- head/lang/slib/distinfo Sun Oct 5 13:29:15 2014 (r370065) +++ head/lang/slib/distinfo Sun Oct 5 13:29:40 2014 (r370066) @@ -1,2 +1,2 @@ -SHA256 (slib-3b3.tar.gz) = 19219ae235c91b31256d6c9a489355f701cee7aa5947a1a01ee5b5c5ee8b3f04 -SIZE (slib-3b3.tar.gz) = 967740 +SHA256 (slib-3b4.tar.gz) = 9f7c50cb07ba996917aa1b15eca6392d0215ccbdfdf84f68486a23adc7f1d7a6 +SIZE (slib-3b4.tar.gz) = 974395 Added: head/lang/slib/files/patch-color.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-color.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,84 @@ +--- color.txi.orig 2013-05-12 04:47:55 UTC ++++ color.txi +@@ -107,8 +107,9 @@ + @defun color:l*a*b* L* a* b* white-point + + Returns the L*a*b* color composed of @var{L*}, @var{a*}, @var{b*} with @var{white-point}. ++@end defun + +-@defunx color:l*a*b* L* a* b* ++@defun color:l*a*b* L* a* b* + Returns the L*a*b* color composed of @var{L*}, @var{a*}, @var{b*}. If the coordinates + do not encode a valid L*a*b* color, then an error is signaled. + @end defun +@@ -117,8 +118,9 @@ + @defun color->l*a*b* color white-point + + Returns the list of 3 numbers encoding @var{color} in L*a*b* with @var{white-point}. ++@end defun + +-@defunx color->l*a*b* color ++@defun color->l*a*b* color + Returns the list of 3 numbers encoding @var{color} in L*a*b*. + @end defun + +@@ -138,8 +140,9 @@ + @defun color:l*u*v* L* u* v* white-point + + Returns the L*u*v* color composed of @var{L*}, @var{u*}, @var{v*} with @var{white-point}. ++@end defun + +-@defunx color:l*u*v* L* u* v* ++@defun color:l*u*v* L* u* v* + Returns the L*u*v* color composed of @var{L*}, @var{u*}, @var{v*}. If the coordinates + do not encode a valid L*u*v* color, then an error is signaled. + @end defun +@@ -148,8 +151,9 @@ + @defun color->l*u*v* color white-point + + Returns the list of 3 numbers encoding @var{color} in L*u*v* with @var{white-point}. ++@end defun + +-@defunx color->l*u*v* color ++@defun color->l*u*v* color + Returns the list of 3 numbers encoding @var{color} in L*u*v*. + @end defun + +@@ -206,8 +210,9 @@ + @defun color:l*c*h L* C* h white-point + + Returns the L*C*h color composed of @var{L*}, @var{C*}, @var{h} with @var{white-point}. ++@end defun + +-@defunx color:l*c*h L* C* h ++@defun color:l*c*h L* C* h + Returns the L*C*h color composed of @var{L*}, @var{C*}, @var{h}. If the coordinates + do not encode a valid L*C*h color, then an error is signaled. + @end defun +@@ -216,8 +221,9 @@ + @defun color->l*c*h color white-point + + Returns the list of 3 numbers encoding @var{color} in L*C*h with @var{white-point}. ++@end defun + +-@defunx color->l*c*h color ++@defun color->l*c*h color + Returns the list of 3 numbers encoding @var{color} in L*C*h. + @end defun + +@@ -326,11 +332,13 @@ + @defun color:e-srgb 10 r g b + + Returns the e-sRGB10 color composed of integers @var{r}, @var{g}, @var{b}. ++@end defun + +-@defunx color:e-srgb 12 r g b ++@defun color:e-srgb 12 r g b + Returns the e-sRGB12 color composed of integers @var{r}, @var{g}, @var{b}. ++@end defun + +-@defunx color:e-srgb 16 r g b ++@defun color:e-srgb 16 r g b + Returns the e-sRGB16 color composed of integers @var{r}, @var{g}, @var{b}. + If the coordinates do not encode a valid e-sRGB color, then an error + is signaled. Added: head/lang/slib/files/patch-colornam.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-colornam.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,14 @@ +--- colornam.txi.orig 2013-05-12 04:47:55 UTC ++++ colornam.txi +@@ -56,9 +56,10 @@ + @var{name} a table therein. The database will be opened as + @var{base-table-type}. @code{color-dictionary} returns the read-only table @var{name} in database + @var{name} if it exists; #f otherwise. ++@end defun + + +-@defunx color-dictionary name rdb ++@defun color-dictionary name rdb + + @var{rdb} must be an open relational database or a string naming a relational + database file; and the symbol @var{name} a table therein. @code{color-dictionary} returns the Added: head/lang/slib/files/patch-dbutil.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-dbutil.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,14 @@ +--- dbutil.txi.orig 2013-05-12 04:47:55 UTC ++++ dbutil.txi +@@ -85,9 +85,10 @@ + + Returns an open relational database associated with @var{rdb}. The + database will be opened with base-table type @var{base-table-type}). ++@end defun + + +-@defunx open-database rdb ++@defun open-database rdb + Returns an open relational database associated with @var{rdb}. + @code{open-database} will attempt to deduce the correct base-table-type. + @end defun Added: head/lang/slib/files/patch-determ.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-determ.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,18 @@ +--- determ.txi.orig 2013-05-12 04:47:55 UTC ++++ determ.txi +@@ -53,11 +53,13 @@ + @defun matrix:product m1 m2 + + Returns the product of matrices @var{m1} and @var{m2}. ++@end defun + +-@defunx matrix:product m1 z ++@defun matrix:product m1 z + Returns matrix @var{m1} times scalar @var{z}. ++@end defun + +-@defunx matrix:product z m1 ++@defun matrix:product z m1 + Returns matrix @var{m1} times scalar @var{z}. + @end defun + Added: head/lang/slib/files/patch-dirs.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-dirs.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,21 @@ +--- dirs.txi.orig 2013-05-12 04:47:55 UTC ++++ dirs.txi +@@ -26,14 +26,15 @@ + each file in @var{directory}. The dynamic order in which @var{proc} is + applied to the filenames is unspecified. The value returned by + @samp{directory-for-each} is unspecified. ++@end defun + + +-@defunx directory-for-each proc directory pred ++@defun directory-for-each proc directory pred + Applies @var{proc} only to those filenames for which the procedure + @var{pred} returns a non-false value. ++@end defun + +- +-@defunx directory-for-each proc directory match ++@defun directory-for-each proc directory match + Applies @var{proc} only to those filenames for which + @code{(filename:match?? @var{match})} would return a non-false value + (@pxref{Filenames, , , slib, SLIB}). Added: head/lang/slib/files/patch-glob.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-glob.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,24 @@ +--- glob.txi.orig 2013-05-12 04:47:55 UTC ++++ glob.txi +@@ -83,18 +83,16 @@ + @end example + + +-@defun call-with-tmpnam proc k +- +- +-@defunx call-with-tmpnam proc ++@defun call-with-tmpnam proc + Calls @var{proc} with @var{k} arguments, strings returned by successive calls to + @code{tmpnam}. + If @var{proc} returns, then any files named by the arguments to @var{proc} are + deleted automatically and the value(s) yielded by the @var{proc} is(are) + returned. @var{k} may be ommited, in which case it defaults to @code{1}. ++@end defun + + +-@defunx call-with-tmpnam proc suffix1 @dots{} ++@defun call-with-tmpnam proc suffix1 @dots{} + Calls @var{proc} with strings returned by successive calls to @code{tmpnam}, + each with the corresponding @var{suffix} string appended. + If @var{proc} returns, then any files named by the arguments to @var{proc} are Added: head/lang/slib/files/patch-grapheps.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-grapheps.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,38 @@ +--- grapheps.txi.orig 2013-05-12 04:47:55 UTC ++++ grapheps.txi +@@ -251,11 +251,13 @@ + @defun set-linedash j k + + Lines are drawn @var{j}-on @var{k}-off. ++@end defun + +-@defunx set-linedash j ++@defun set-linedash j + Lines are drawn @var{j}-on @var{j}-off. ++@end defun + +-@defunx set-linedash ++@defun set-linedash + Turns off dashing. + @end defun + +@@ -432,15 +434,17 @@ + encapsulated PostScript graph of the function of one argument @var{func} + over the range @var{x1} to @var{x2}. If the optional integer argument @var{npts} is + supplied, it specifies the number of points to evaluate @var{func} at. ++@end defun + + +-@defunx plot x1 x2 npts func1 func2 @dots{} ++@defun plot x1 x2 npts func1 func2 @dots{} + Creates and displays an encapsulated PostScript graph of the + one-argument functions @var{func1}, @var{func2}, ... over the range + @var{x1} to @var{x2} at @var{npts} points. ++@end defun + + +-@defunx plot coords x-label y-label ++@defun plot coords x-label y-label + @var{coords} is a list or vector of coordinates, lists of x and y + coordinates. @var{x-label} and @var{y-label} are strings with which + to label the x and y axes. Added: head/lang/slib/files/patch-phil-spc.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-phil-spc.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,25 @@ +--- phil-spc.txi.orig 2013-05-12 04:47:55 UTC ++++ phil-spc.txi +@@ -39,9 +39,10 @@ + Returns a list of @var{rank} integer coordinates corresponding to exact + non-negative integer @var{scalar}. The lists returned by @code{integer->hilbert-coordinates} for @var{scalar} arguments + 0 and 1 will differ in the first element. ++@end defun + + +-@defunx integer->hilbert-coordinates scalar rank k ++@defun integer->hilbert-coordinates scalar rank k + + @var{scalar} must be a nonnegative integer of no more than + @code{@var{rank}*@var{k}} bits. +@@ -80,8 +81,9 @@ + @defun integer->gray-code k + Converts @var{k} to a Gray code of the same @code{integer-length} as + @var{k}. ++@end defun + +-@defunx gray-code->integer k ++@defun gray-code->integer k + Converts the Gray code @var{k} to an integer of the same + @code{integer-length} as @var{k}. + Added: head/lang/slib/files/patch-pnm.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-pnm.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,14 @@ +--- pnm.txi.orig 2013-05-12 04:47:55 UTC ++++ pnm.txi +@@ -48,9 +48,10 @@ + @cindex portable bitmap graphics + @var{array}. @var{array} must be the correct size and type for + @var{path}. @var{array} is returned. ++@end defun + + +-@defunx pnm:image-file->array path ++@defun pnm:image-file->array path + + @code{pnm:image-file->array} creates and returns an array with the + @dfn{portable bitmap graphics} file named by @var{path} read into it. Added: head/lang/slib/files/patch-random.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-random.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,14 @@ +--- random.txi.orig 2013-05-12 04:47:55 UTC ++++ random.txi +@@ -32,9 +32,10 @@ + @defun copy-random-state state + + Returns a new copy of argument @var{state}. ++@end defun + + +-@defunx copy-random-state ++@defun copy-random-state + Returns a new copy of @code{*random-state*}. + @end defun + Added: head/lang/slib/files/patch-schmooz.texi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-schmooz.texi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,13 @@ +--- schmooz.texi.orig 2001-10-15 04:34:18 UTC ++++ schmooz.texi +@@ -17,8 +17,9 @@ + top-level comments containing schmooz commands from @var{filename}.scm + and writes the converted Texinfo source to a file named + @var{filename}.txi. ++@end deffn + +-@deffnx Procedure schmooz filename@r{.texi} @dots{} ++@deffn Procedure schmooz filename@r{.texi} @dots{} + @deffnx Procedure schmooz filename@r{.tex} @dots{} + @deffnx Procedure schmooz filename@r{.txi} @dots{} + @var{Filename} should be a string naming an existing file containing Added: head/lang/slib/files/patch-slib.texi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-slib.texi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,484 @@ +--- slib.texi.orig 2012-10-23 21:17:29 UTC ++++ slib.texi +@@ -812,11 +812,13 @@ + Displays the information of @code{(slib:report-version)} followed by + almost all the information neccessary for submitting a problem report. + An unspecified value is returned. ++@end defun + +-@defunx slib:report #t ++@defun slib:report #t + provides a more verbose listing. ++@end defun + +-@defunx slib:report filename ++@defun slib:report filename + Writes the verbose report to file @file{filename}. + + @example +@@ -940,8 +942,9 @@ + current position of the character in @var{port} which will next be + read or written. If the implementation does not support + file-position, then @code{#f} is returned. ++@end defun + +-@defunx file-position port k ++@defun file-position port k + @var{port} must be open to a file. @code{file-position} sets the + current position in @var{port} which will next be read or written. If + successful, @code{#t} is returned; otherwise @code{file-position} +@@ -3400,7 +3403,7 @@ + A character that specifies the conversion to be applied. + @end itemize + +-@subsubsection Exact Conversions ++Exact Conversions + + @table @asis + @item @samp{b}, @samp{B} +@@ -3426,7 +3429,7 @@ + digits @samp{0123456789ABCDEF}. + @end table + +-@subsubsection Inexact Conversions ++Inexact Conversions + + @table @asis + @item @samp{f} +@@ -3451,7 +3454,7 @@ + + @end table + +-@subsubsection Other Conversions ++Other Conversions + @table @asis + @item @samp{c} + Print a single character. The @samp{-} flag is the only one which can +@@ -4592,11 +4595,13 @@ + + @defun tzset + Returns the default time-zone. ++@end defun + +-@defunx tzset tz ++@defun tzset tz + Sets (and returns) the default time-zone to @var{tz}. ++@end defun + +-@defunx tzset TZ-string ++@defun tzset TZ-string + Sets (and returns) the default time-zone to that specified by + @var{TZ-string}. + +@@ -4670,11 +4675,13 @@ + + @defun gmtime caltime + Converts the calendar time @var{caltime} to UTC and returns it. ++@end defun + +-@defunx localtime caltime tz ++@defun localtime caltime tz + Returns @var{caltime} converted to UTC relative to timezone @var{tz}. ++@end defun + +-@defunx localtime caltime ++@defun localtime caltime + converts the calendar time @var{caltime} to a vector of integers + expressed relative to the user's time zone. @code{localtime} sets the + variable @var{*timezone*} with the difference between Coordinated +@@ -4686,12 +4693,14 @@ + @defun gmktime univtime + Converts a vector of integers in GMT Coordinated Universal Time (UTC) + format to a calendar time. ++@end defun + +-@defunx mktime univtime ++@defun mktime univtime + Converts a vector of integers in local Coordinated Universal Time (UTC) + format to a calendar time. ++@end defun + +-@defunx mktime univtime tz ++@defun mktime univtime tz + Converts a vector of integers in Coordinated Universal Time (UTC) format + (relative to time-zone @var{tz}) + to calendar time. +@@ -5096,8 +5105,9 @@ + corresponding to each bit of the non-negative integer @var{k}. #t is + coded for each 1; #f for 0. The @var{len} argument defaults to + @code{(integer-length @var{k})}. ++@end defun + +-@defunx list->integer list ++@defun list->integer list + @code{list->integer} returns an integer formed from the booleans in the + list @var{list}, which must be a list of booleans. A 1 bit is coded for + each #t; a 0 bit for #f. +@@ -5519,8 +5529,9 @@ + (cksum (in-vicinity (library-vicinity) "ratize.scm")) + @result{} 157103930 + @end example ++@end defun + +-@defunx cksum port ++@defun cksum port + Computes the checksum of the bytes read from @var{port} until the + end-of-file. + +@@ -5539,8 +5550,9 @@ + @defun crc16 file + + Computes the USB data-packet (16-bit) CRC of @var{file}. ++@end defun + +-@defunx crc16 port ++@defun crc16 port + Computes the USB data-packet (16-bit) CRC of the bytes read from + @var{port} until the end-of-file. + +@@ -5552,8 +5564,9 @@ + @defun crc5 file + + Computes the USB token (5-bit) CRC of @var{file}. ++@end defun + +-@defunx crc5 port ++@defun crc5 port + Computes the USB token (5-bit) CRC of the bytes read from + @var{port} until the end-of-file. + +@@ -5747,8 +5760,9 @@ + + @defun color? obj + Returns #t if @var{obj} is a color. ++@end defun + +-@defunx color? obj typ ++@defun color? obj typ + Returns #t if @var{obj} is a color of color-space @var{typ}. The symbol + @var{typ} must be one of: + +@@ -5961,14 +5975,16 @@ + Loads the Spectral Tristimulus Values + @cite{CIE 1964 Supplementary Standard Colorimetric Observer}, + defining @var{cie:x-bar}, @var{cie:y-bar}, and @var{cie:z-bar}. ++@end deftp + +-@deftpx {Feature} cie1931 ++@deftp {Feature} cie1931 + @ftindex cie1931 + Loads the Spectral Tristimulus Values + @cite{CIE 1931 Supplementary Standard Colorimetric Observer}, + defining @var{cie:x-bar}, @var{cie:y-bar}, and @var{cie:z-bar}. ++@end deftp + +-@deftpx {Feature} ciexyz ++@deftp {Feature} ciexyz + @ftindex ciexyz + Requires Spectral Tristimulus Values, defaulting to cie1931, + defining @var{cie:x-bar}, @var{cie:y-bar}, and @var{cie:z-bar}. +@@ -6037,8 +6053,9 @@ + computes the CIEXYZ(1931) values for the spectrum returned by @var{proc} + when called with arguments from 380e-9 to 780e-9, the wavelength in + meters. ++@end defun + +-@defunx spectrum->XYZ spectrum x1 x2 ++@defun spectrum->XYZ spectrum x1 x2 + @var{x1} and @var{x2} must be positive real numbers specifying the + wavelengths (in meters) corresponding to the zeroth and last elements of + vector or list @var{spectrum}. @code{spectrum->XYZ} returns the +@@ -6160,8 +6177,9 @@ + scales each chromaticity so it sums to 1 or less; and divides the + @var{Y} values by the maximum @var{Y} in the dataset, so all lie between + 0 and 1. ++@end defun + +-@defunx xyY:normalize-colors colors n ++@defun xyY:normalize-colors colors n + If @var{n} is positive real, then @code{xyY:normalize-colors} divides + the @var{Y} values by @var{n} times the maximum @var{Y} in the dataset. + +@@ -6206,8 +6224,9 @@ + + @defun L*a*b*:DE* lab1 lab2 + Returns the Euclidean distance between @var{lab1} and @var{lab2}. ++@end defun + +-@defunx CIE:DE* color1 color2 white-point ++@defun CIE:DE* color1 color2 white-point + @defunx CIE:DE* color1 color2 + Returns the Euclidean distance in L*a*b* space between @var{color1} and + @var{color2}. +@@ -6725,8 +6744,9 @@ + @var{sub-op2}, respectively. The argument @var{reduction} is a + procedure accepting 2 arguments which will be lists whose @code{car}s + are @var{sub-op1} and @var{sub-op2}. ++@end defun + +-@defunx cring:define-rule op sub-op1 'identity reduction ++@defun cring:define-rule op sub-op1 'identity reduction + Defines a rule for the case when the operation represented by symbol + @var{op} is applied to a list whose @code{car} is @var{sub-op1}, and + some other argument. @var{Reduction} will be called with the list whose +@@ -7211,8 +7231,9 @@ + returns the key-list identifying the lowest record higher than + @var{key1} @var{key2} @dots{} which is stored in the relational-table; + or false if no higher record is present. ++@end defop + +-@defopx {Operation} {relational-table} isam-next column-name ++@defop {Operation} {relational-table} isam-next column-name + The symbol @var{column-name} names a key field. In the list returned + by @code{isam-next}, that field, or a field to its left, will be + changed. This allows one to skip over less significant key fields. +@@ -7223,8 +7244,9 @@ + returns the key-list identifying the highest record less than + @var{key1} @var{key2} @dots{} which is stored in the relational-table; + or false if no lower record is present. ++@end defop + +-@defopx {Operation} {relational-table} isam-prev column-name ++@defop {Operation} {relational-table} isam-prev column-name + The symbol @var{column-name} names a key field. In the list returned + by @code{isam-next}, that field, or a field to its left, will be + changed. This allows one to skip over less significant key fields. +@@ -7264,8 +7286,9 @@ + names, or type names respectively for this table. These 4 methods are + different from the others in that the list is returned, rather than a + procedure to obtain the list. ++@end defop + +-@defopx {Operation} {relational-table} primary-limit ++@defop {Operation} {relational-table} primary-limit + Returns the number of primary keys fields in the relations in this + table. + @end defop +@@ -7398,16 +7421,19 @@ + supplied, @code{open-command-database} will attempt to deduce the correct + base-table-type. If the database can not be opened or if it lacks the + @code{*commands*} table, @code{#f} is returned. ++@end defun + +-@defunx open-command-database! filename ++@defun open-command-database! filename + @defunx open-command-database! filename base-table-type + Returns @emph{mutable} open enhanced relational database @dots{} ++@end defun + +-@defunx open-command-database database ++@defun open-command-database database + Returns @var{database} if it is an immutable relational database; #f + otherwise. ++@end defun + +-@defunx open-command-database! database ++@defun open-command-database! database + Returns @var{database} if it is a mutable relational database; #f + otherwise. + @end defun +@@ -7928,32 +7954,31 @@ + + Prints the names of all the tables in @var{database} and sets browse's + default to @var{database}. +- +-@deffnx {Procedure} browse ++@end deffn ++@deffn {Procedure} browse + + Prints the names of all the tables in the default database. +- +-@deffnx {Procedure} browse table-name ++@end deffn ++@deffn {Procedure} browse table-name + + For each record of the table named by the symbol @var{table-name}, + prints a line composed of all the field values. +- +-@deffnx {Procedure} browse pathname ++@end deffn ++@deffn {Procedure} browse pathname + + Opens the database named by the string @var{pathname}, prints the names + of all its tables, and sets browse's default to the database. +- +-@deffnx {Procedure} browse database table-name ++@end deffn ++@deffn {Procedure} browse database table-name + + Sets browse's default to @var{database} and prints the records of the + table named by the symbol @var{table-name}. +- +-@deffnx {Procedure} browse pathname table-name ++@end deffn ++@deffn {Procedure} browse pathname table-name + + Opens the database named by the string @var{pathname} and sets browse's + default to it; @code{browse} prints the records of the table named by + the symbol @var{table-name}. +- + @end deffn + + +@@ -8576,8 +8601,9 @@ + describing the columns of a new base table in this database, otherwise + returns @code{#f}. For the fields and layout of descriptor tables, + @xref{Catalog Representation}. ++@end defop + +-@defopx {Operation} {relational-database} create-table table-name table-desc-name ++@defop {Operation} {relational-database} create-table table-name table-desc-name + Returns a methods procedure for a new (open) relational table with + columns as described by @var{table-desc-name}, otherwise returns + @code{#f}. +@@ -9900,14 +9926,16 @@ + @defun list-of?? predicate + Returns a predicate which returns true if its argument is a list every + element of which satisfies @var{predicate}. ++@end defun + +-@defunx list-of?? predicate low-bound high-bound ++@defun list-of?? predicate low-bound high-bound + @var{low-bound} and @var{high-bound} are non-negative integers. + @code{list-of??} returns a predicate which returns true if its argument + is a list of length between @var{low-bound} and @var{high-bound} + (inclusive); every element of which satisfies @var{predicate}. ++@end defun + +-@defunx list-of?? predicate bound ++@defun list-of?? predicate bound + @var{bound} is an integer. If @var{bound} is negative, @code{list-of??} + returns a predicate which returns true if its argument is a list of + length greater than @code{(- @var{bound})}; every element of which +@@ -10684,16 +10712,19 @@ + @deffn {Procedure} find-string-from-port? str in-port max-no-chars + Looks for a string @var{str} within the first @var{max-no-chars} chars + of the input port @var{in-port}. ++@end deffn + +-@deffnx {Procedure} find-string-from-port? str in-port ++@deffn {Procedure} find-string-from-port? str in-port + When called with two arguments, the search span is limited by the end of + the input stream. ++@end deffn + +-@deffnx {Procedure} find-string-from-port? str in-port char ++@deffn {Procedure} find-string-from-port? str in-port char + Searches up to the first occurrence of character @var{char} in + @var{str}. ++@end deffn + +-@deffnx {Procedure} find-string-from-port? str in-port proc ++@deffn {Procedure} find-string-from-port? str in-port proc + Searches up to the first occurrence of the procedure @var{proc} + returning non-false when called with a character (from @var{in-port}) + argument. +@@ -11635,12 +11666,14 @@ + @deffn {Procedure} trace-all file @dots{} + Traces (@pxref{Trace}) all procedures @code{define}d at top-level in + @file{file} @dots{}. ++@end deffn + +-@deffnx {Procedure} track-all file @dots{} ++@deffn {Procedure} track-all file @dots{} + Tracks (@pxref{Trace}) all procedures @code{define}d at top-level in + @file{file} @dots{}. ++@end deffn + +-@deffnx {Procedure} stack-all file @dots{} ++@deffn {Procedure} stack-all file @dots{} + Stacks (@pxref{Trace}) all procedures @code{define}d at top-level in + @file{file} @dots{}. + @end deffn +@@ -11676,8 +11709,9 @@ + @defun continue + Pops the topmost continuation off of the continuation stack and returns + an unspecified value to it. ++@end defun + +-@defunx continue arg1 @dots{} ++@defun continue arg1 @dots{} + Pops the topmost continuation off of the continuation stack and returns + @var{arg1} @dots{} to it. + @end defun +@@ -11685,7 +11719,9 @@ + @defmac break proc1 @dots{} + Redefines the top-level named procedures given as arguments so that + @code{breakpoint} is called before calling @var{proc1} @dots{}. +-@defmacx break ++@end defmac ++ ++@defmac break + With no arguments, makes sure that all the currently broken identifiers + are broken (even if those identifiers have been redefined) and returns a + list of the broken identifiers. +@@ -11693,7 +11729,9 @@ + + @defmac unbreak proc1 @dots{} + Turns breakpoints off for its arguments. +-@defmacx unbreak ++@end defmac ++ ++@defmac unbreak + With no arguments, unbreaks all currently broken identifiers and returns + a list of these formerly broken identifiers. + @end defmac +@@ -11768,7 +11806,9 @@ + + @defmac trace proc1 @dots{} + Traces the top-level named procedures given as arguments. +-@defmacx trace ++@end defmac ++ ++@defmac trace + With no arguments, makes sure that all the currently traced identifiers + are traced (even if those identifiers have been redefined) and returns a + list of the traced identifiers. +@@ -11776,7 +11816,8 @@ + + @defmac track proc1 @dots{} + Traces the top-level named procedures given as arguments. +-@defmacx track ++@end defmac ++@defmac track + With no arguments, makes sure that all the currently tracked identifiers + are tracked (even if those identifiers have been redefined) and returns + a list of the tracked identifiers. +@@ -11784,7 +11825,8 @@ + + @defmac stack proc1 @dots{} + Traces the top-level named procedures given as arguments. +-@defmacx stack ++@end defmac ++@defmac stack + With no arguments, makes sure that all the currently stacked identifiers + are stacked (even if those identifiers have been redefined) and returns + a list of the stacked identifiers. +@@ -11792,21 +11834,24 @@ + + @defmac untrace proc1 @dots{} + Turns tracing, tracking, and off for its arguments. +-@defmacx untrace ++@end defmac ++@defmac untrace + With no arguments, untraces all currently traced identifiers and returns + a list of these formerly traced identifiers. + @end defmac + + @defmac untrack proc1 @dots{} + Turns tracing, tracking, and off for its arguments. +-@defmacx untrack ++@end defmac ++@defmac untrack + With no arguments, untracks all currently tracked identifiers and returns + a list of these formerly tracked identifiers. + @end defmac + + @defmac unstack proc1 @dots{} + Turns tracing, stacking, and off for its arguments. +-@defmacx unstack ++@end defmac ++@defmac unstack + With no arguments, unstacks all currently stacked identifiers and returns + a list of these formerly stacked identifiers. + @end defmac Added: head/lang/slib/files/patch-solid.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-solid.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,14 @@ +--- solid.txi.orig 2013-05-12 04:47:55 UTC ++++ solid.txi +@@ -544,9 +544,10 @@ + + @var{center} must be a list or vector of three numbers. Returns an upward + pointing metallic arrow centered at @var{center}. ++@end defun + + +-@defunx solid:arrow ++@defun solid:arrow + Returns an upward pointing metallic arrow centered at the origin. + @end defun + Added: head/lang/slib/files/patch-xml-parse.txi ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/slib/files/patch-xml-parse.txi Sun Oct 5 13:29:40 2014 (r370066) @@ -0,0 +1,14 @@ +--- xml-parse.txi.orig 2013-05-12 04:47:55 UTC ++++ xml-parse.txi +@@ -108,9 +108,10 @@ + @var{inc-charset}. The reading stops at the first character which is not a member + of the set. This character is left on the stream. All the read + characters are returned in a string. ++@end defun + + +-@defunx ssax:next-token-of pred port ++@defun ssax:next-token-of pred port + + Reads characters from the @var{port} for which @var{pred} (a procedure of + one argument) returns non-#f. The reading stops at the first Modified: head/lang/slib/pkg-plist ============================================================================== --- head/lang/slib/pkg-plist Sun Oct 5 13:29:15 2014 (r370065) +++ head/lang/slib/pkg-plist Sun Oct 5 13:29:40 2014 (r370066) @@ -48,6 +48,7 @@ %%DATADIR%%/elk.init %%DATADIR%%/eval.scm %%DATADIR%%/factor.scm +%%DATADIR%%/fluid-let.scm %%DATADIR%%/fluidlet.scm %%DATADIR%%/format.scm %%DATADIR%%/formatst.scm @@ -58,6 +59,7 @@ %%DATADIR%%/glob.scm %%DATADIR%%/grapheps.ps %%DATADIR%%/grapheps.scm +%%DATADIR%%/guile-2.init %%DATADIR%%/guile.init %%DATADIR%%/hash.scm %%DATADIR%%/hashtab.scm @@ -179,7 +181,7 @@ %%DATADIR%%/vet.scm %%DATADIR%%/vscm.init %%DATADIR%%/withfile.scm -%%DATADIR%%/wttest.scm +%%DATADIR%%/wttree-test.scm %%DATADIR%%/wttree.scm %%DATADIR%%/xml-parse.scm %%DATADIR%%/yasyn.scm @@ -187,5 +189,3 @@ %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/FAQ %%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:32:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D961B523; Sun, 5 Oct 2014 13:32:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C55C3889; Sun, 5 Oct 2014 13:32:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DWcjF095378; Sun, 5 Oct 2014 13:32:38 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DWc0F095371; Sun, 5 Oct 2014 13:32:38 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410051332.s95DWc0F095371@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 5 Oct 2014 13:32:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370067 - in head: . finance/gnucash finance/gnucash/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:32:39 -0000 Author: madpilot Date: Sun Oct 5 13:32:37 2014 New Revision: 370067 URL: https://svnweb.freebsd.org/changeset/ports/370067 QAT: https://qat.redports.org/buildarchive/r370067/ Log: - Fix gnucash configure script to accept guile 1.8 - Add options to gnucash port to choose which guile version to use - Remove superceded UPDATING entry Approved by: kwm (gnome, implicit) Added: head/finance/gnucash/files/patch-configure (contents, props changed) Modified: head/UPDATING head/finance/gnucash/Makefile Modified: head/UPDATING ============================================================================== --- head/UPDATING Sun Oct 5 13:29:40 2014 (r370066) +++ head/UPDATING Sun Oct 5 13:32:37 2014 (r370067) @@ -50,18 +50,6 @@ you update your ports collection, before Please check your configuration. -20140930: - AFFECTS: users of finance/gnucash - AUTHOR: madpilot@FreeBSD.org - - The new version of gnucsh requires guile 2.0. If the update fails - because the old guile 1.8 library is still present you will need - to manally remove gnucash, guile and, if installed, boehm-gc: - - # pkg delete gnucash guile boehm-gc - - and then install gnucash again the usual way. - 20140929: AFFECTS: users of comms/usbmuxd AUTHOR: avilla@FreeBSD.org Modified: head/finance/gnucash/Makefile ============================================================================== --- head/finance/gnucash/Makefile Sun Oct 5 13:29:40 2014 (r370066) +++ head/finance/gnucash/Makefile Sun Oct 5 13:32:37 2014 (r370067) @@ -3,6 +3,7 @@ PORTNAME= gnucash PORTVERSION= 2.6.4 +PORTREVISION= 1 CATEGORIES= finance gnome MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28stable%29/${PORTVERSION} @@ -12,22 +13,25 @@ COMMENT= Quicken-like money and finance LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual -BUILD_DEPENDS= guile:${PORTSDIR}/lang/guile2 LIB_DEPENDS= libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring \ libwebkitgtk-1.0.so:${PORTSDIR}/www/webkit-gtk2 \ libgoffice-0.8.so:${PORTSDIR}/devel/goffice -RUN_DEPENDS= guile:${PORTSDIR}/lang/guile2 \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ +RUN_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-Date-Manip>=0:${PORTSDIR}/devel/p5-Date-Manip \ p5-Finance-Quote>=0:${PORTSDIR}/finance/p5-Finance-Quote OPTIONS_DEFINE= AQBANKING OFX DATABASE LOCALE_TAX PYTHON GTKMM DOCS +OPTIONS_SINGLE= GV +OPTIONS_SINGLE_GV= GUILE1 GUILE2 +OPTIONS_DEFAULT= GUILE1 AQBANKING_DESC= AqBanking support (HBCI/OpenHBCI) OFX_DESC= OFX support DATABASE_DESC= Enable SQL database backends LOCALE_TAX_DESC= Enable localized tax categories GTKMM_DESC= Enable GTKMM based UI +GUILE1_DESC= Use lang/guile +GUILE2_DESC= Use lang/guile2 OPTIONS_SUB= yes AQBANKING_CONFIGURE_ENABLE=aqbanking @@ -47,6 +51,12 @@ PYTHON_USE= PYTHON=yes GTKMM_USE= GNOME=gtkmm24 GTKMM_CONFIGURE_ON= --enable-gtkmm GTKMM_CONFIGURE_OFF= --disable-gtkmm +GUILE1_LIB_DEPENDS= libguile.so:${PORTSDIR}/lang/guile +GUILE1_BUILD_DEPENDS= ${LOCALBASE}/share/guile/1.8/slibcat:${PORTSDIR}/lang/slib-guile +GUILE1_RUN_DEPENDS= ${LOCALBASE}/share/guile/1.8/slibcat:${PORTSDIR}/lang/slib-guile +GUILE2_LIB_DEPENDS= libguile-2.0.so:${PORTSDIR}/lang/guile2 +GUILE2_BUILD_DEPENDS= ${LOCALBASE}/share/guile/2.0/slibcat:${PORTSDIR}/lang/slib-guile2 +GUILE2_RUN_DEPENDS= ${LOCALBASE}/share/guile/2.0/slibcat:${PORTSDIR}/lang/slib-guile2 USE_XORG= x11 USES= desktop-file-utils gettext gmake libtool perl5 pkgconfig shebangfix tar:bzip2 Added: head/finance/gnucash/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/gnucash/files/patch-configure Sun Oct 5 13:32:37 2014 (r370067) @@ -0,0 +1,10 @@ +--- configure.orig 2014-09-28 02:56:29.000000000 +0200 ++++ configure 2014-10-05 01:43:56.028480737 +0200 +@@ -20513,6 +20513,7 @@ + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 + $as_echo "yes" >&6; } + succeeded=yes ++ GUILE_EFFECTIVE_VERSION=1.8 + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking GUILE_CFLAGS" >&5 + $as_echo_n "checking GUILE_CFLAGS... " >&6; } From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:45:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 010A278C; Sun, 5 Oct 2014 13:45:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2052966; Sun, 5 Oct 2014 13:45:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DjwbL000540; Sun, 5 Oct 2014 13:45:58 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95Djw3F000539; Sun, 5 Oct 2014 13:45:58 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051345.s95Djw3F000539@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 13:45:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370068 - in head/graphics/cal3d: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:45:59 -0000 Author: tijl Date: Sun Oct 5 13:45:58 2014 New Revision: 370068 URL: https://svnweb.freebsd.org/changeset/ports/370068 QAT: https://qat.redports.org/buildarchive/r370068/ Log: Remove patches and patch Makefile.in instead of Makefile.am to avoid USE_AUTOTOOLS Deleted: head/graphics/cal3d/files/ Modified: head/graphics/cal3d/Makefile Modified: head/graphics/cal3d/Makefile ============================================================================== --- head/graphics/cal3d/Makefile Sun Oct 5 13:32:37 2014 (r370067) +++ head/graphics/cal3d/Makefile Sun Oct 5 13:45:58 2014 (r370068) @@ -13,27 +13,15 @@ COMMENT= Skeletal based 3D character ani CONFLICTS= cal3d-devel-[0-9]* -USES= pkgconfig libtool GNU_CONFIGURE= yes -USE_AUTOTOOLS= automake autoheader -AUTOMAKE_ARGS= --add-missing +USES= libtool pathfix pkgconfig USE_LDCONFIG= yes -AUTOTOOLSFILES= aclocal.m4 -# AUTOMAKE_ARGS= --add-missing post-patch: - @${REINPLACE_CMD} \ - -e 's|^\(pkgconfigdir\ =\).*|\1 $$(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.am @${REINPLACE_CMD} -e 's|||' \ ${WRKSRC}/src/cal3d/buffersource.h \ ${WRKSRC}/src/cal3d/loader.h \ ${WRKSRC}/src/cal3d/streamsource.h - @${REINPLACE_CMD} -e '/^all_libraries/d' ${WRKSRC}/src/cal3d/Makefile.am - @${REINPLACE_CMD} -e 's| tests||' ${WRKSRC}/Makefile.am - -post-configure: - @${FIND} ${WRKSRC} -name Makefile -print | \ - ${XARGS} ${REINPLACE_CMD} -e 's|MKDIR_P|mkdir_p|g' + @${REINPLACE_CMD} '/^SUBDIRS =/s/tests//' ${WRKSRC}/Makefile.in .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:46:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 31B3286A; Sun, 5 Oct 2014 13:46:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04FCB967; Sun, 5 Oct 2014 13:46:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95DkBVx000706; Sun, 5 Oct 2014 13:46:11 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DkB4r000699; Sun, 5 Oct 2014 13:46:11 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410051346.s95DkB4r000699@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 5 Oct 2014 13:46:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370069 - head/deskutils/gnotime X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:46:12 -0000 Author: madpilot Date: Sun Oct 5 13:46:11 2014 New Revision: 370069 URL: https://svnweb.freebsd.org/changeset/ports/370069 QAT: https://qat.redports.org/buildarchive/r370069/ Log: - Add options to choose which guile version to use - While here remove dirrms Modified: head/deskutils/gnotime/Makefile head/deskutils/gnotime/pkg-plist Modified: head/deskutils/gnotime/Makefile ============================================================================== --- head/deskutils/gnotime/Makefile Sun Oct 5 13:45:58 2014 (r370068) +++ head/deskutils/gnotime/Makefile Sun Oct 5 13:46:11 2014 (r370069) @@ -13,8 +13,7 @@ COMMENT= Time tracker for gnome2 LICENSE= GPLv2 # (or later) LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= libguile.so:${PORTSDIR}/lang/guile \ - libqof.so:${PORTSDIR}/databases/qof +LIB_DEPENDS= libqof.so:${PORTSDIR}/databases/qof USES= gettext gmake libtool pathfix pkgconfig USE_XORG= xscrnsaver @@ -32,6 +31,17 @@ LIBS+= -L${LOCALBASE}/lib GCONF_SCHEMAS= gnotime.schemas +OPTIONS_SINGLE= GV +OPTIONS_SINGLE_GV= GUILE1 GUILE2 +OPTIONS_DEFAULT= GUILE1 + +GUILE1_DESC= Use lang/guile +GUILE2_DESC= Use lang/guile2 + +GUILE1_LIB_DEPENDS= libguile.so:${PORTSDIR}/lang/guile +GUILE2_LIB_DEPENDS= libguile-2.0.so:${PORTSDIR}/lang/guile2 +GUILE2_LDFLAGS= -lm + post-patch: @${REINPLACE_CMD} -e \ '/^install-data-am/s|install-data-local||' \ Modified: head/deskutils/gnotime/pkg-plist ============================================================================== --- head/deskutils/gnotime/pkg-plist Sun Oct 5 13:45:58 2014 (r370068) +++ head/deskutils/gnotime/pkg-plist Sun Oct 5 13:46:11 2014 (r370069) @@ -102,11 +102,3 @@ share/locale/wa/LC_MESSAGES/gnotime-2.0. share/locale/zh_CN/LC_MESSAGES/gnotime-2.0.mo share/locale/zh_TW/LC_MESSAGES/gnotime-2.0.mo share/omf/gnotime/gnotime-C.omf -@dirrm share/omf/gnotime -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%%/ghtml/C -@dirrm %%DATADIR%%/ghtml -@dirrm %%DATADIR%% -@dirrm share/gnome/help/gnotime/C/figures -@dirrm share/gnome/help/gnotime/C -@dirrm share/gnome/help/gnotime From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 13:57:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CAC65A17; Sun, 5 Oct 2014 13:57:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DF44A63; Sun, 5 Oct 2014 13:57:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95Dvpwo005615; Sun, 5 Oct 2014 13:57:51 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95DvoLm005611; Sun, 5 Oct 2014 13:57:50 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051357.s95DvoLm005611@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 13:57:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370070 - head/devel/libsmdev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 13:57:51 -0000 Author: antoine Date: Sun Oct 5 13:57:50 2014 New Revision: 370070 URL: https://svnweb.freebsd.org/changeset/ports/370070 QAT: https://qat.redports.org/buildarchive/r370070/ Log: Update to alpha-20141004 Modified: head/devel/libsmdev/Makefile head/devel/libsmdev/distinfo head/devel/libsmdev/pkg-descr head/devel/libsmdev/pkg-plist Modified: head/devel/libsmdev/Makefile ============================================================================== --- head/devel/libsmdev/Makefile Sun Oct 5 13:46:11 2014 (r370069) +++ head/devel/libsmdev/Makefile Sun Oct 5 13:57:50 2014 (r370070) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libsmdev -DISTVERSION= alpha-20140803 +DISTVERSION= alpha-20141004 CATEGORIES= devel MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSNEJFQ1FqanFYVUU/ \ LOCAL/antoine Modified: head/devel/libsmdev/distinfo ============================================================================== --- head/devel/libsmdev/distinfo Sun Oct 5 13:46:11 2014 (r370069) +++ head/devel/libsmdev/distinfo Sun Oct 5 13:57:50 2014 (r370070) @@ -1,2 +1,2 @@ -SHA256 (libsmdev-alpha-20140803.tar.gz) = 88f237074c05d7abdc5737880ac3d0b230c59ae7ab9f060bfc13f682a2b2c9ba -SIZE (libsmdev-alpha-20140803.tar.gz) = 1120730 +SHA256 (libsmdev-alpha-20141004.tar.gz) = b235d04b2bfb76daac449222f65ef6b175af2576d7cf56e812d0713194ea7dbb +SIZE (libsmdev-alpha-20141004.tar.gz) = 1120820 Modified: head/devel/libsmdev/pkg-descr ============================================================================== --- head/devel/libsmdev/pkg-descr Sun Oct 5 13:46:11 2014 (r370069) +++ head/devel/libsmdev/pkg-descr Sun Oct 5 13:57:50 2014 (r370070) @@ -1,3 +1,3 @@ Library to access to storage media devices. -WWW: http://code.google.com/p/libsmdev/ +WWW: https://github.com/libyal/libsmdev Modified: head/devel/libsmdev/pkg-plist ============================================================================== --- head/devel/libsmdev/pkg-plist Sun Oct 5 13:46:11 2014 (r370069) +++ head/devel/libsmdev/pkg-plist Sun Oct 5 13:57:50 2014 (r370070) @@ -15,4 +15,3 @@ lib/libsmdev.so.1.0.0 libdata/pkgconfig/libsmdev.pc man/man1/smdevinfo.1.gz man/man3/libsmdev.3.gz -@dirrm include/libsmdev From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5A14B1A; Sun, 5 Oct 2014 14:00:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C2CD5A79; Sun, 5 Oct 2014 14:00:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0Gh9006201; Sun, 5 Oct 2014 14:00:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0Grw006195; Sun, 5 Oct 2014 14:00:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0Grw006195@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370071 - in head/games/defendguin: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:17 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:15 2014 New Revision: 370071 URL: https://svnweb.freebsd.org/changeset/ports/370071 QAT: https://qat.redports.org/buildarchive/r370071/ Log: - Drop @dirrm* from plist - Add LICENSE_FILE - Simplify WRKSRC handling Modified: head/games/defendguin/Makefile head/games/defendguin/files/patch-defendguin.c head/games/defendguin/pkg-plist Modified: head/games/defendguin/Makefile ============================================================================== --- head/games/defendguin/Makefile Sun Oct 5 13:57:50 2014 (r370070) +++ head/games/defendguin/Makefile Sun Oct 5 14:00:15 2014 (r370071) @@ -16,8 +16,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= Your mission is to defend little penguinoids LICENSE= GPLv2 - -WRKSRC= ${WRKDIR}/${DISTNAME}/src +LICENSE_FILE= ${WRKSRC}/docs/COPYING.txt USE_SDL= mixer sdl @@ -28,22 +27,22 @@ DESKTOP_ENTRIES="Defendguin" "" "${PORTN "${PORTNAME}" "Game;ArcadeGame;" "" do-build: - cd ${WRKSRC} && ${CC} ${CFLAGS} -DDATA_PREFIX=\"${DATADIR}/\" \ + cd ${WRKSRC}/src && ${CC} ${CFLAGS} -DDATA_PREFIX=\"${DATADIR}/\" \ `${SDL_CONFIG} --cflags` defendguin.c -o defendguin \ `${SDL_CONFIG} --libs` -lSDL_mixer -lm do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ .for d in images music sounds - @(cd ${WRKSRC}/../data && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}) + @(cd ${WRKSRC}/data && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR}) .endfor ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.6 ${STAGEDIR}${MAN6PREFIX}/man/man6/ + ${INSTALL_MAN} ${WRKSRC}/src/${PORTNAME}.6 ${STAGEDIR}${MAN6PREFIX}/man/man6/ ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/../docs/|} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${STAGEDIR}${DOCSDIR} .include Modified: head/games/defendguin/files/patch-defendguin.c ============================================================================== --- head/games/defendguin/files/patch-defendguin.c Sun Oct 5 13:57:50 2014 (r370070) +++ head/games/defendguin/files/patch-defendguin.c Sun Oct 5 14:00:15 2014 (r370071) @@ -1,5 +1,5 @@ ---- defendguin.c.orig 2009-11-05 22:20:59.000000000 +0100 -+++ defendguin.c 2012-09-10 22:01:37.000000000 +0200 +--- src/defendguin.c.orig 2009-11-05 22:20:59.000000000 +0100 ++++ src/defendguin.c 2012-09-10 22:01:37.000000000 +0200 @@ -4322,6 +4322,7 @@ "%s\n\n", SDL_GetError()); exit(1); Modified: head/games/defendguin/pkg-plist ============================================================================== --- head/games/defendguin/pkg-plist Sun Oct 5 13:57:50 2014 (r370070) +++ head/games/defendguin/pkg-plist Sun Oct 5 14:00:15 2014 (r370071) @@ -169,27 +169,3 @@ man/man6/defendguin.6.gz %%DATADIR%%/sounds/title/impatience.wav %%DATADIR%%/sounds/title/select.wav share/pixmaps/defendguin.png -@dirrm %%DATADIR%%/sounds/title -@dirrm %%DATADIR%%/sounds/ship -@dirrm %%DATADIR%%/sounds/peng -@dirrm %%DATADIR%%/sounds/gameover -@dirrm %%DATADIR%%/sounds/evilbill -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/music -@dirrm %%DATADIR%%/images/ufo -@dirrm %%DATADIR%%/images/tux -@dirrm %%DATADIR%%/images/title -@dirrm %%DATADIR%%/images/swarmer -@dirrm %%DATADIR%%/images/status -@dirrm %%DATADIR%%/images/ship -@dirrm %%DATADIR%%/images/points -@dirrm %%DATADIR%%/images/pod -@dirrm %%DATADIR%%/images/mutant -@dirrm %%DATADIR%%/images/loader -@dirrm %%DATADIR%%/images/land -@dirrm %%DATADIR%%/images/evilbill -@dirrm %%DATADIR%%/images/bullet -@dirrm %%DATADIR%%/images/bomber -@dirrm %%DATADIR%%/images/baiter -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57E9FBFA; Sun, 5 Oct 2014 14:00:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BA8BA7C; Sun, 5 Oct 2014 14:00:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0Mix006325; Sun, 5 Oct 2014 14:00:22 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0L68006323; Sun, 5 Oct 2014 14:00:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0L68006323@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370072 - head/games/palomino X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:22 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:21 2014 New Revision: 370072 URL: https://svnweb.freebsd.org/changeset/ports/370072 QAT: https://qat.redports.org/buildarchive/r370072/ Log: - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/palomino/Makefile head/games/palomino/pkg-plist Modified: head/games/palomino/Makefile ============================================================================== --- head/games/palomino/Makefile Sun Oct 5 14:00:15 2014 (r370071) +++ head/games/palomino/Makefile Sun Oct 5 14:00:21 2014 (r370072) @@ -16,6 +16,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= Action flight simulation computer program using OSG LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE_GNU_GPL_2.txt LIB_DEPENDS= libosg.so:${PORTSDIR}/graphics/osg Modified: head/games/palomino/pkg-plist ============================================================================== --- head/games/palomino/pkg-plist Sun Oct 5 14:00:15 2014 (r370071) +++ head/games/palomino/pkg-plist Sun Oct 5 14:00:21 2014 (r370072) @@ -440,32 +440,3 @@ bin/palomino %%DATADIR%%/scripts/views.lua %%DATADIR%%/scripts/weapons.lua share/pixmaps/palomino.png -@dirrm %%DATADIR%%/scripts -@dirrm %%DATADIR%%/data/textures -@dirrm %%DATADIR%%/data/terrain -@dirrm %%DATADIR%%/data/sounds -@dirrm %%DATADIR%%/data/shaders/reference -@dirrm %%DATADIR%%/data/shaders -@dirrm %%DATADIR%%/data/replays -@dirrm %%DATADIR%%/data/models/su37 -@dirrm %%DATADIR%%/data/models/sr71 -@dirrm %%DATADIR%%/data/models/spitfire -@dirrm %%DATADIR%%/data/models/spaceShuttle -@dirrm %%DATADIR%%/data/models/sikorsky76 -@dirrm %%DATADIR%%/data/models/scenery -@dirrm %%DATADIR%%/data/models/p51 -@dirrm %%DATADIR%%/data/models/nimitz -@dirrm %%DATADIR%%/data/models/misc -@dirrm %%DATADIR%%/data/models/mirage2000 -@dirrm %%DATADIR%%/data/models/kc135 -@dirrm %%DATADIR%%/data/models/f86 -@dirrm %%DATADIR%%/data/models/f18 -@dirrm %%DATADIR%%/data/models/f16 -@dirrm %%DATADIR%%/data/models/f15 -@dirrm %%DATADIR%%/data/models/f14 -@dirrm %%DATADIR%%/data/models/corsair -@dirrm %%DATADIR%%/data/models/a4 -@dirrm %%DATADIR%%/data/models -@dirrm %%DATADIR%%/data/fonts -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38B41CD8; Sun, 5 Oct 2014 14:00:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25B3DA7F; Sun, 5 Oct 2014 14:00:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0Rfn008287; Sun, 5 Oct 2014 14:00:27 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0Qk8008285; Sun, 5 Oct 2014 14:00:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0Qk8008285@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370073 - head/games/pycadia X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:27 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:26 2014 New Revision: 370073 URL: https://svnweb.freebsd.org/changeset/ports/370073 QAT: https://qat.redports.org/buildarchive/r370073/ Log: - Clarify LICENSE - Add LICENSE_FILE - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/pycadia/Makefile head/games/pycadia/pkg-plist Modified: head/games/pycadia/Makefile ============================================================================== --- head/games/pycadia/Makefile Sun Oct 5 14:00:21 2014 (r370072) +++ head/games/pycadia/Makefile Sun Oct 5 14:00:26 2014 (r370073) @@ -12,14 +12,15 @@ DIST_SUBDIR= python MAINTAINER= games@FreeBSD.org COMMENT= Home to vector gaming, Python style -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/doc/COPYING RUN_DEPENDS= ${PYGAME} WRKSRC= ${WRKDIR}/${PORTNAME} +USES= python:2 USE_GNOME= pygtk2 libgnomeui -USE_PYTHON= 2 PORTDOCS= CHANGELOG README gravity.txt OPTIONS_DEFINE= DOCS Modified: head/games/pycadia/pkg-plist ============================================================================== --- head/games/pycadia/pkg-plist Sun Oct 5 14:00:21 2014 (r370072) +++ head/games/pycadia/pkg-plist Sun Oct 5 14:00:26 2014 (r370073) @@ -95,7 +95,3 @@ share/pixmaps/pycadia.png %%DATADIR%%/vektoroids.py %%DATADIR%%/vektoroids.pyc %%DATADIR%%/vektoroids.pyo -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/glade -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F2317DB6; Sun, 5 Oct 2014 14:00:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF38BB06; Sun, 5 Oct 2014 14:00:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0V1f008401; Sun, 5 Oct 2014 14:00:31 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0VbY008400; Sun, 5 Oct 2014 14:00:31 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0VbY008400@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370074 - head/games/py-poker-eval X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:32 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:31 2014 New Revision: 370074 URL: https://svnweb.freebsd.org/changeset/ports/370074 QAT: https://qat.redports.org/buildarchive/r370074/ Log: - Clarify LICENSE - Add LICENSE_FILE - Convert to USES=python Modified: head/games/py-poker-eval/Makefile Modified: head/games/py-poker-eval/Makefile ============================================================================== --- head/games/py-poker-eval/Makefile Sun Oct 5 14:00:26 2014 (r370073) +++ head/games/py-poker-eval/Makefile Sun Oct 5 14:00:31 2014 (r370074) @@ -14,10 +14,10 @@ COMMENT= Python adaptor for the poker-ev LIB_DEPENDS= libpoker-eval.so:${PORTSDIR}/games/poker-eval -LICENSE= GPLv3 +LICENSE= GPLv3 # or later +LICENSE_FILE= ${WRKSRC}/COPYING -USES= libtool pkgconfig -USE_PYTHON= 2 +USES= libtool pkgconfig python:2 USE_AUTOTOOLS= aclocal autoconf automake ACLOCAL_ARGS= -I config AUTOMAKE_ARGS= --add-missing From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5601E95; Sun, 5 Oct 2014 14:00:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2A92B0A; Sun, 5 Oct 2014 14:00:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0a41008533; Sun, 5 Oct 2014 14:00:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0aFq008531; Sun, 5 Oct 2014 14:00:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0aFq008531@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370075 - head/games/twitch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:37 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:35 2014 New Revision: 370075 URL: https://svnweb.freebsd.org/changeset/ports/370075 QAT: https://qat.redports.org/buildarchive/r370075/ Log: - Clarify LICENSE - Add LICENSE_FILE - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/twitch/Makefile head/games/twitch/pkg-plist Modified: head/games/twitch/Makefile ============================================================================== --- head/games/twitch/Makefile Sun Oct 5 14:00:31 2014 (r370074) +++ head/games/twitch/Makefile Sun Oct 5 14:00:35 2014 (r370075) @@ -14,11 +14,12 @@ EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Overhead 2-d shooter, reminiscent of games like Robotron -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYGAME} -USE_PYTHON= yes +USES= python PORTDOCS= AUTHORS BUGS README OPTIONS_DEFINE= DOCS Modified: head/games/twitch/pkg-plist ============================================================================== --- head/games/twitch/pkg-plist Sun Oct 5 14:00:31 2014 (r370074) +++ head/games/twitch/pkg-plist Sun Oct 5 14:00:35 2014 (r370075) @@ -85,7 +85,3 @@ share/pixmaps/twitch.png %%DATADIR%%/twitch.py %%DATADIR%%/twitch.pyc %%DATADIR%%/twitch.pyo -@dirrm %%DATADIR%%/sound -@dirrm %%DATADIR%%/levels -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39870F79; Sun, 5 Oct 2014 14:00:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0ED6AB0F; Sun, 5 Oct 2014 14:00:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0fXL009705; Sun, 5 Oct 2014 14:00:41 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0fil009703; Sun, 5 Oct 2014 14:00:41 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0fil009703@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370076 - head/games/blobwars X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:42 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:40 2014 New Revision: 370076 URL: https://svnweb.freebsd.org/changeset/ports/370076 QAT: https://qat.redports.org/buildarchive/r370076/ Log: - Drop @dirrm* from plist - Clarify LICENSE - Fix whitespace - Strip binary Modified: head/games/blobwars/Makefile head/games/blobwars/pkg-plist Modified: head/games/blobwars/Makefile ============================================================================== --- head/games/blobwars/Makefile Sun Oct 5 14:00:35 2014 (r370075) +++ head/games/blobwars/Makefile Sun Oct 5 14:00:40 2014 (r370076) @@ -10,7 +10,7 @@ MASTER_SITES= SF/${PORTNAME}/ MAINTAINER= games@FreeBSD.org COMMENT= Mission and Objective based 2D Platform Game -LICENSE= GPLv2 CCbyNCSA3 +LICENSE= GPLv2 CCbyNCSA3 # GPLv2 or later LICENSE_COMB= dual LICENSE_NAME_CCbyNCSA3=Attribution-NonCommercial-ShareAlike 3.0 Unported LICENSE_FILE= ${WRKSRC}/doc/license @@ -35,15 +35,15 @@ NLS_USES= gettext post-patch: @${REINPLACE_CMD} \ - -e 's|mkdir -p $$(DESTDIR)$$(DOCDIR)|| ; \ - s|cp -p $$(DOCS) $$(DESTDIR)$$(DOCDIR)|| ; \ - s|USEPAK ?= 0|USEPAK ?= 1| ; \ - s|/usr|${LOCALBASE}| ; \ - s|$$(PREFIX)/games/|$$(PREFIX)/bin/| ; \ - s|/share/games/blobwars/|/share/blobwars/| ; \ - s| -Werror||' \ - -e '/LIBS =/s/-lz/-lz -lintl/' \ - ${WRKSRC}/makefile + -e 's|mkdir -p $$(DESTDIR)$$(DOCDIR)|| ; \ + s|cp -p $$(DOCS) $$(DESTDIR)$$(DOCDIR)|| ; \ + s|USEPAK ?= 0|USEPAK ?= 1| ; \ + s|/usr|${LOCALBASE}| ; \ + s|$$(PREFIX)/games/|$$(PREFIX)/bin/| ; \ + s|/share/games/blobwars/|/share/blobwars/| ; \ + s| -Werror||' \ + -e '/LIBS =/s/-lz/-lz -lintl/' \ + ${WRKSRC}/makefile .if ! ${PORT_OPTIONS:MNLS} @${REINPLACE_CMD} -i '' -e '/LOCALE_MO =/d' \ @@ -53,6 +53,7 @@ post-patch: post-install: ${LN} -sf ${PREFIX}/share/icons/hicolor/64x64/apps/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR} Modified: head/games/blobwars/pkg-plist ============================================================================== --- head/games/blobwars/pkg-plist Sun Oct 5 14:00:35 2014 (r370075) +++ head/games/blobwars/pkg-plist Sun Oct 5 14:00:40 2014 (r370076) @@ -13,4 +13,3 @@ share/icons/hicolor/64x64/apps/blobwars. %%NLS%%share/locale/pl/LC_MESSAGES/blobwars.mo %%NLS%%share/locale/sv/LC_MESSAGES/blobwars.mo share/pixmaps/blobwars.png -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47D6DE2; Sun, 5 Oct 2014 14:00:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 35681B13; Sun, 5 Oct 2014 14:00:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0lca009836; Sun, 5 Oct 2014 14:00:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0kxC009834; Sun, 5 Oct 2014 14:00:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0kxC009834@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370077 - head/games/nuclearchess X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:47 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:46 2014 New Revision: 370077 URL: https://svnweb.freebsd.org/changeset/ports/370077 QAT: https://qat.redports.org/buildarchive/r370077/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/nuclearchess/Makefile head/games/nuclearchess/pkg-plist Modified: head/games/nuclearchess/Makefile ============================================================================== --- head/games/nuclearchess/Makefile Sun Oct 5 14:00:40 2014 (r370076) +++ head/games/nuclearchess/Makefile Sun Oct 5 14:00:46 2014 (r370077) @@ -15,7 +15,8 @@ EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Chess variant designed to be short and fun for all players -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USE_SDL= sdl image INSTALLS_ICONS= yes Modified: head/games/nuclearchess/pkg-plist ============================================================================== --- head/games/nuclearchess/pkg-plist Sun Oct 5 14:00:40 2014 (r370076) +++ head/games/nuclearchess/pkg-plist Sun Oct 5 14:00:46 2014 (r370077) @@ -34,5 +34,3 @@ bin/nuclearchess %%DATADIR%%/gfx/white.png %%DATADIR%%/gfx/wood.png share/pixmaps/nuclearchess.png -@dirrm %%DATADIR%%/gfx -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 359451C1; Sun, 5 Oct 2014 14:00:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22D6EB15; Sun, 5 Oct 2014 14:00:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0qHg009969; Sun, 5 Oct 2014 14:00:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0pcw009967; Sun, 5 Oct 2014 14:00:51 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0pcw009967@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370078 - head/games/4stattack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:52 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:51 2014 New Revision: 370078 URL: https://svnweb.freebsd.org/changeset/ports/370078 QAT: https://qat.redports.org/buildarchive/r370078/ Log: - Drop @dirrm* from plist Modified: head/games/4stattack/Makefile head/games/4stattack/pkg-plist Modified: head/games/4stattack/Makefile ============================================================================== --- head/games/4stattack/Makefile Sun Oct 5 14:00:46 2014 (r370077) +++ head/games/4stattack/Makefile Sun Oct 5 14:00:51 2014 (r370078) @@ -15,7 +15,7 @@ LICENSE= GPLv2 RUN_DEPENDS= ${PYGAME} -USE_PYTHON= yes +USES= python PORTDOCS= changelog.txt credits.txt OPTIONS_DEFINE= DOCS Modified: head/games/4stattack/pkg-plist ============================================================================== --- head/games/4stattack/pkg-plist Sun Oct 5 14:00:46 2014 (r370077) +++ head/games/4stattack/pkg-plist Sun Oct 5 14:00:51 2014 (r370078) @@ -246,12 +246,3 @@ share/icons/hicolor/32x32/apps/4stattack share/icons/hicolor/48x48/apps/4stattack.png share/icons/hicolor/64x64/apps/4stattack.png share/pixmaps/4stattack.png -@dirrm %%DATADIR%%/players -@dirrm %%DATADIR%%/gui/dialogs -@dirrm %%DATADIR%%/gui -@dirrm %%DATADIR%%/data/themes/clean/1024x768 -@dirrm %%DATADIR%%/data/themes/clean -@dirrm %%DATADIR%%/data/themes -@dirrm %%DATADIR%%/data/music -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:00:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AEE02A1; Sun, 5 Oct 2014 14:00:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18227B18; Sun, 5 Oct 2014 14:00:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E0usH010098; Sun, 5 Oct 2014 14:00:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E0u4c010096; Sun, 5 Oct 2014 14:00:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051400.s95E0u4c010096@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370079 - head/games/kajaani-kombat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:00:57 -0000 Author: amdmi3 Date: Sun Oct 5 14:00:56 2014 New Revision: 370079 URL: https://svnweb.freebsd.org/changeset/ports/370079 QAT: https://qat.redports.org/buildarchive/r370079/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/kajaani-kombat/Makefile head/games/kajaani-kombat/pkg-plist Modified: head/games/kajaani-kombat/Makefile ============================================================================== --- head/games/kajaani-kombat/Makefile Sun Oct 5 14:00:51 2014 (r370078) +++ head/games/kajaani-kombat/Makefile Sun Oct 5 14:00:56 2014 (r370079) @@ -10,7 +10,8 @@ MASTER_SITES= http://kombat.kajaani.net/ MAINTAINER= games@FreeBSD.org COMMENT= Funny multiplayer game... and much more -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 Modified: head/games/kajaani-kombat/pkg-plist ============================================================================== --- head/games/kajaani-kombat/pkg-plist Sun Oct 5 14:00:51 2014 (r370078) +++ head/games/kajaani-kombat/pkg-plist Sun Oct 5 14:00:56 2014 (r370079) @@ -166,4 +166,3 @@ man/man6/kajaani-kombat.6.gz %%DATADIR%%/sound_gui_select.ogg %%DATADIR%%/three_sec_warning.ogg share/pixmaps/kajaani-kombat.png -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:01:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8518381; Sun, 5 Oct 2014 14:01:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5A1BB1B; Sun, 5 Oct 2014 14:01:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E11dh010683; Sun, 5 Oct 2014 14:01:01 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E11ki010682; Sun, 5 Oct 2014 14:01:01 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410051401.s95E11ki010682@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Oct 2014 14:01:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370080 - head/games/schiff X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:01:02 -0000 Author: amdmi3 Date: Sun Oct 5 14:01:01 2014 New Revision: 370080 URL: https://svnweb.freebsd.org/changeset/ports/370080 QAT: https://qat.redports.org/buildarchive/r370080/ Log: - Fix LICENSE - Convert to USES=python - Drop PLIST_DIRS Modified: head/games/schiff/Makefile Modified: head/games/schiff/Makefile ============================================================================== --- head/games/schiff/Makefile Sun Oct 5 14:00:56 2014 (r370079) +++ head/games/schiff/Makefile Sun Oct 5 14:01:01 2014 (r370080) @@ -10,16 +10,16 @@ MASTER_SITES= SF/pygamebook/${PORTNAME:S DISTFILES= ${PORTNAME}${DISTVERSION}.py \ ${PORTNAME}.png:icons DIST_SUBDIR= python -EXTRACT_ONLY= +EXTRACT_ONLY= # empty MAINTAINER= games@FreeBSD.org COMMENT= Steer your ship(s) with the keyboard -LICENSE= GPLv3 +LICENSE= GPLv2 # or later RUN_DEPENDS= ${PYGAME} -USE_PYTHON= 2 +USES= python:2,run NO_BUILD= yes SUB_FILES= ${PORTNAME} @@ -27,7 +27,6 @@ SUB_FILES= ${PORTNAME} PLIST_FILES= bin/${PORTNAME} \ share/pixmaps/${PORTNAME}.png \ %%DATADIR%%/${PORTNAME}.py -PLIST_DIRS= %%DATADIR%% DESKTOP_ENTRIES="Schiff" "" ${PORTNAME} \ "${PORTNAME}" "Game;LogicGame;" "" From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:02:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 901F7482; Sun, 5 Oct 2014 14:02:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6302AB3B; Sun, 5 Oct 2014 14:02:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95E2sQ2011036; Sun, 5 Oct 2014 14:02:54 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95E2rxI011033; Sun, 5 Oct 2014 14:02:53 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410051402.s95E2rxI011033@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 5 Oct 2014 14:02:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370081 - head/graphics/converseen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:02:54 -0000 Author: madpilot Date: Sun Oct 5 14:02:53 2014 New Revision: 370081 URL: https://svnweb.freebsd.org/changeset/ports/370081 QAT: https://qat.redports.org/buildarchive/r370081/ Log: - Update to 0.8.4 - Remove dirrms PR: 194100 Submitted by: fernando.apesteguia@gmail.com (maintainer) Modified: head/graphics/converseen/Makefile head/graphics/converseen/distinfo head/graphics/converseen/pkg-plist Modified: head/graphics/converseen/Makefile ============================================================================== --- head/graphics/converseen/Makefile Sun Oct 5 14:01:01 2014 (r370080) +++ head/graphics/converseen/Makefile Sun Oct 5 14:02:53 2014 (r370081) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= converseen -PORTVERSION= 0.8.3 +PORTVERSION= 0.8.4 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Converseen/Converseen%200.8/ @@ -10,7 +10,6 @@ MAINTAINER= fernando.apesteguia@gmail.co COMMENT= Easy to use graphics conversion utility LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libMagick++-6.Q*.so:${PORTSDIR}/graphics/ImageMagick @@ -19,6 +18,8 @@ USE_QT4= corelib gui linguist_build moc_ rcc_build uic_build post-patch: + @${REINPLACE_CMD} -e '/^ appdata.path =/s|/usr/share|$$$${SHARE_DIR}|' \ + ${WRKSRC}/converseen.pro @${REINPLACE_CMD} -e '/^install(FILES converseen.appdata.xml/s|/usr|$${CMAKE_INSTALL_PREFIX}|' \ ${WRKSRC}/CMakeLists.txt Modified: head/graphics/converseen/distinfo ============================================================================== --- head/graphics/converseen/distinfo Sun Oct 5 14:01:01 2014 (r370080) +++ head/graphics/converseen/distinfo Sun Oct 5 14:02:53 2014 (r370081) @@ -1,2 +1,2 @@ -SHA256 (converseen-0.8.3.tar.bz2) = 760292a1d9e9307e9dee2dae3d918be264d79f98dccb348cf775379e2676f786 -SIZE (converseen-0.8.3.tar.bz2) = 243424 +SHA256 (converseen-0.8.4.tar.bz2) = c8158998c787731d17559006c048713ae3185783f0bd493aba97c590ddd25b17 +SIZE (converseen-0.8.4.tar.bz2) = 243384 Modified: head/graphics/converseen/pkg-plist ============================================================================== --- head/graphics/converseen/pkg-plist Sun Oct 5 14:01:01 2014 (r370080) +++ head/graphics/converseen/pkg-plist Sun Oct 5 14:02:53 2014 (r370081) @@ -14,9 +14,3 @@ share/applications/converseen.desktop %%DATADIR%%/loc/converseen_tr_TR.qm share/kde4/services/ServiceMenus/converseen_import.desktop share/pixmaps/converseen.png -@dirrmtry share/kde4/services/ServiceMenus -@dirrmtry share/kde4/services -@dirrmtry share/kde4 -@dirrmtry share/appdata -@dirrm %%DATADIR%%/loc -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:10:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80E256FE; Sun, 5 Oct 2014 14:10:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53DAFBBB; Sun, 5 Oct 2014 14:10:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EACbN012295; Sun, 5 Oct 2014 14:10:12 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EABew012290; Sun, 5 Oct 2014 14:10:11 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410051410.s95EABew012290@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 5 Oct 2014 14:10:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370082 - head/devel/librest X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:10:12 -0000 Author: madpilot Date: Sun Oct 5 14:10:10 2014 New Revision: 370082 URL: https://svnweb.freebsd.org/changeset/ports/370082 QAT: https://qat.redports.org/buildarchive/r370082/ Log: - Update to 0.7.92 - Update WWW line - Remove dirrms PR: 193996 Submitted by: cmt@burggraben.net (maintainer) Modified: head/devel/librest/Makefile head/devel/librest/distinfo head/devel/librest/pkg-descr head/devel/librest/pkg-plist Modified: head/devel/librest/Makefile ============================================================================== --- head/devel/librest/Makefile Sun Oct 5 14:02:53 2014 (r370081) +++ head/devel/librest/Makefile Sun Oct 5 14:10:10 2014 (r370082) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= rest -PORTVERSION= 0.7.91 -PORTREVISION= 2 +PORTVERSION= 0.7.92 CATEGORIES= devel www MASTER_SITES= GNOME Modified: head/devel/librest/distinfo ============================================================================== --- head/devel/librest/distinfo Sun Oct 5 14:02:53 2014 (r370081) +++ head/devel/librest/distinfo Sun Oct 5 14:10:10 2014 (r370082) @@ -1,2 +1,2 @@ -SHA256 (rest-0.7.91.tar.xz) = 838814d935143f2dc99eb79f1ac69c615e7b547339f6cd226dd0ed4d7c16b67a -SIZE (rest-0.7.91.tar.xz) = 321120 +SHA256 (rest-0.7.92.tar.xz) = 07548c8785a3e743daf54a82b952ff5f32af94fee68997df4c83b00d52f9c0ec +SIZE (rest-0.7.92.tar.xz) = 321580 Modified: head/devel/librest/pkg-descr ============================================================================== --- head/devel/librest/pkg-descr Sun Oct 5 14:02:53 2014 (r370081) +++ head/devel/librest/pkg-descr Sun Oct 5 14:10:10 2014 (r370082) @@ -5,4 +5,4 @@ It comprises of two parts: the first aim by providing a wrapper around libsoup, the second aids with XML parsing by wrapping libxml2. -WWW: https://live.gnome.org/Librest +WWW: https://wiki.gnome.org/Projects/Librest Modified: head/devel/librest/pkg-plist ============================================================================== --- head/devel/librest/pkg-plist Sun Oct 5 14:02:53 2014 (r370081) +++ head/devel/librest/pkg-plist Sun Oct 5 14:10:10 2014 (r370082) @@ -58,11 +58,3 @@ share/gtk-doc/html/rest-0.7/rest-RestPar share/gtk-doc/html/rest-0.7/right.png share/gtk-doc/html/rest-0.7/style.css share/gtk-doc/html/rest-0.7/up.png -@dirrm share/gtk-doc/html/rest-0.7 -@dirrmtry share/gtk-doc/html -@dirrmtry share/gtk-doc -@dirrmtry share/gir-1.0 -@dirrmtry lib/girepository-1.0 -@dirrm include/rest-0.7/rest-extras -@dirrm include/rest-0.7/rest -@dirrm include/rest-0.7 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:10:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01CAC7E5; Sun, 5 Oct 2014 14:10:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C92A8BBD; Sun, 5 Oct 2014 14:10:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EAJVa012472; Sun, 5 Oct 2014 14:10:19 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EAIVv012467; Sun, 5 Oct 2014 14:10:18 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051410.s95EAIVv012467@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 14:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370083 - in head/devel: . py-codegen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:10:20 -0000 Author: antoine Date: Sun Oct 5 14:10:18 2014 New Revision: 370083 URL: https://svnweb.freebsd.org/changeset/ports/370083 QAT: https://qat.redports.org/buildarchive/r370083/ Log: New port: devel/py-codegen Extension to ast that allows ast to python code generation. WWW: https://github.com/andreif/codegen Added: head/devel/py-codegen/ head/devel/py-codegen/Makefile (contents, props changed) head/devel/py-codegen/distinfo (contents, props changed) head/devel/py-codegen/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 5 14:10:10 2014 (r370082) +++ head/devel/Makefile Sun Oct 5 14:10:18 2014 (r370083) @@ -3635,6 +3635,7 @@ SUBDIR += py-clint SUBDIR += py-clonedigger SUBDIR += py-cmdln + SUBDIR += py-codegen SUBDIR += py-cog SUBDIR += py-coil SUBDIR += py-collective.monkeypatcher Added: head/devel/py-codegen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-codegen/Makefile Sun Oct 5 14:10:18 2014 (r370083) @@ -0,0 +1,18 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= codegen +PORTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Extension to ast that allows ast to python code generation + +LICENSE= BSD3CLAUSE + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/devel/py-codegen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-codegen/distinfo Sun Oct 5 14:10:18 2014 (r370083) @@ -0,0 +1,2 @@ +SHA256 (codegen-1.0.tar.gz) = d14caccc4175903d79bc5ed2890d140163281b1cdff79f3657e963369e79a6ee +SIZE (codegen-1.0.tar.gz) = 4380 Added: head/devel/py-codegen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-codegen/pkg-descr Sun Oct 5 14:10:18 2014 (r370083) @@ -0,0 +1,3 @@ +Extension to ast that allows ast to python code generation. + +WWW: https://github.com/andreif/codegen From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:12:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 905068E0; Sun, 5 Oct 2014 14:12:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 729F9C60; Sun, 5 Oct 2014 14:12:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95ECltS016274; Sun, 5 Oct 2014 14:12:47 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95ECklR016266; Sun, 5 Oct 2014 14:12:46 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410051412.s95ECklR016266@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 5 Oct 2014 14:12:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370084 - in head/graphics/shotwell: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:12:47 -0000 Author: madpilot Date: Sun Oct 5 14:12:45 2014 New Revision: 370084 URL: https://svnweb.freebsd.org/changeset/ports/370084 QAT: https://qat.redports.org/buildarchive/r370084/ Log: - Update to 0.20.0 - Remove dirrms PR: 194001 Submitted by: cmt@burggraben.net (maintainer) Modified: head/graphics/shotwell/Makefile head/graphics/shotwell/distinfo head/graphics/shotwell/files/patch-Makefile head/graphics/shotwell/files/patch-src-camera-CameraTable.vala head/graphics/shotwell/pkg-plist Modified: head/graphics/shotwell/Makefile ============================================================================== --- head/graphics/shotwell/Makefile Sun Oct 5 14:10:18 2014 (r370083) +++ head/graphics/shotwell/Makefile Sun Oct 5 14:12:45 2014 (r370084) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= shotwell -PORTVERSION= 0.18.1 -PORTREVISION= 1 +PORTVERSION= 0.20.0 CATEGORIES= graphics gnome MASTER_SITES= GNOME/sources/shotwell/${PORTVERSION:R} Modified: head/graphics/shotwell/distinfo ============================================================================== --- head/graphics/shotwell/distinfo Sun Oct 5 14:10:18 2014 (r370083) +++ head/graphics/shotwell/distinfo Sun Oct 5 14:12:45 2014 (r370084) @@ -1,2 +1,2 @@ -SHA256 (shotwell-0.18.1.tar.xz) = af1e1a682a7d293b04970b81f2c25c267f5dd9b2cd7b1ebc84eb0bb45c123317 -SIZE (shotwell-0.18.1.tar.xz) = 1727276 +SHA256 (shotwell-0.20.0.tar.xz) = d698ee59e2b582b4553ff343aa92a5bbc3e56146e5cbd3f2af321be4bca56f70 +SIZE (shotwell-0.20.0.tar.xz) = 1809492 Modified: head/graphics/shotwell/files/patch-Makefile ============================================================================== --- head/graphics/shotwell/files/patch-Makefile Sun Oct 5 14:10:18 2014 (r370083) +++ head/graphics/shotwell/files/patch-Makefile Sun Oct 5 14:12:45 2014 (r370084) @@ -1,6 +1,6 @@ ---- Makefile.orig 2013-11-09 18:33:15.000000000 +0100 -+++ Makefile 2013-11-09 18:46:05.000000000 +0100 -@@ -315,7 +315,6 @@ +--- Makefile.orig 2014-09-28 18:41:10.000000000 +0200 ++++ Makefile 2014-09-28 18:43:30.000000000 +0200 +@@ -261,7 +261,6 @@ gstreamer-base-1.0 \ gstreamer-pbutils-1.0 \ gtk+-3.0 \ @@ -8,7 +8,7 @@ libexif \ libgphoto2 \ json-glib-1.0 \ -@@ -347,7 +346,6 @@ +@@ -293,7 +292,6 @@ gstreamer-plugins-base-1.0 >= 1.0.0 \ gstreamer-pbutils-1.0 >= 1.0.0 \ gtk+-3.0 >= 3.6.0 \ @@ -16,17 +16,7 @@ libexif >= 0.6.16 \ libgphoto2 >= 2.4.2 \ libraw >= 0.13.2 \ -@@ -461,6 +459,9 @@ - # Required for gudev-1.0 - CFLAGS += -DG_UDEV_API_IS_SUBJECT_TO_CHANGE - -+# do not forget about libintl -+LDFLAGS += -lintl -+ - all: pkgcheck valacheck desktop - - ifdef ENABLE_BUILD_FOR_GLADE -@@ -591,8 +592,8 @@ +@@ -543,8 +541,8 @@ glib-compile-schemas $(DESTDIR)$(PREFIX)/share/glib-2.0/schemas endif ifndef DISABLE_GSETTINGS_CONVERT_INSTALL Modified: head/graphics/shotwell/files/patch-src-camera-CameraTable.vala ============================================================================== --- head/graphics/shotwell/files/patch-src-camera-CameraTable.vala Sun Oct 5 14:10:18 2014 (r370083) +++ head/graphics/shotwell/files/patch-src-camera-CameraTable.vala Sun Oct 5 14:12:45 2014 (r370084) @@ -1,5 +1,5 @@ ---- src/camera/CameraTable.vala.orig 2013-11-09 18:20:35.000000000 +0100 -+++ src/camera/CameraTable.vala 2013-11-09 18:24:57.000000000 +0100 +--- src/camera/CameraTable.vala.orig 2014-09-28 18:49:39.000000000 +0200 ++++ src/camera/CameraTable.vala 2014-09-28 19:10:01.000000000 +0200 @@ -26,7 +26,6 @@ private static CameraTable instance = null; Modified: head/graphics/shotwell/pkg-plist ============================================================================== --- head/graphics/shotwell/pkg-plist Sun Oct 5 14:10:18 2014 (r370083) +++ head/graphics/shotwell/pkg-plist Sun Oct 5 14:12:45 2014 (r370084) @@ -5,11 +5,17 @@ lib/shotwell/plugins/builtin/facebook_pu lib/shotwell/plugins/builtin/flickr.png lib/shotwell/plugins/builtin/flickr_pin_entry_pane.glade lib/shotwell/plugins/builtin/flickr_publishing_options_pane.glade +lib/shotwell/plugins/builtin/gallery3.png +lib/shotwell/plugins/builtin/gallery3_authentication_pane.glade +lib/shotwell/plugins/builtin/gallery3_publishing_options_pane.glade lib/shotwell/plugins/builtin/picasa.png lib/shotwell/plugins/builtin/picasa_publishing_options_pane.glade lib/shotwell/plugins/builtin/piwigo.png lib/shotwell/plugins/builtin/piwigo_authentication_pane.glade lib/shotwell/plugins/builtin/piwigo_publishing_options_pane.glade +lib/shotwell/plugins/builtin/rajce.png +lib/shotwell/plugins/builtin/rajce_authentication_pane.glade +lib/shotwell/plugins/builtin/rajce_publishing_options_pane.glade lib/shotwell/plugins/builtin/shotwell-data-imports.so lib/shotwell/plugins/builtin/shotwell-publishing-extras.so lib/shotwell/plugins/builtin/shotwell-publishing.so @@ -147,6 +153,44 @@ share/gnome/help/shotwell/es/share-uploa share/gnome/help/shotwell/es/view-displaying.page share/gnome/help/shotwell/es/view-information.page share/gnome/help/shotwell/es/view-sidebar.page +share/gnome/help/shotwell/hu/edit-adjustments.page +share/gnome/help/shotwell/hu/edit-crop.page +share/gnome/help/shotwell/hu/edit-enhance.page +share/gnome/help/shotwell/hu/edit-external.page +share/gnome/help/shotwell/hu/edit-nondestructive.page +share/gnome/help/shotwell/hu/edit-redeye.page +share/gnome/help/shotwell/hu/edit-rotate.page +share/gnome/help/shotwell/hu/edit-straighten.page +share/gnome/help/shotwell/hu/edit-time-date.page +share/gnome/help/shotwell/hu/edit-undo.page +share/gnome/help/shotwell/hu/formats.page +share/gnome/help/shotwell/hu/import-camera.page +share/gnome/help/shotwell/hu/import-f-spot.page +share/gnome/help/shotwell/hu/import-file.page +share/gnome/help/shotwell/hu/import-memorycard.page +share/gnome/help/shotwell/hu/index.page +share/gnome/help/shotwell/hu/organize-event.page +share/gnome/help/shotwell/hu/organize-flag.page +share/gnome/help/shotwell/hu/organize-rating.page +share/gnome/help/shotwell/hu/organize-remove.page +share/gnome/help/shotwell/hu/organize-search.page +share/gnome/help/shotwell/hu/organize-tag.page +share/gnome/help/shotwell/hu/organize-title.page +share/gnome/help/shotwell/hu/other-files.page +share/gnome/help/shotwell/hu/other-missing.page +share/gnome/help/shotwell/hu/other-multiple.page +share/gnome/help/shotwell/hu/other-plugins.page +share/gnome/help/shotwell/hu/raw.page +share/gnome/help/shotwell/hu/running.page +share/gnome/help/shotwell/hu/share-background.page +share/gnome/help/shotwell/hu/share-export.page +share/gnome/help/shotwell/hu/share-print.page +share/gnome/help/shotwell/hu/share-send.page +share/gnome/help/shotwell/hu/share-slideshow.page +share/gnome/help/shotwell/hu/share-upload.page +share/gnome/help/shotwell/hu/view-displaying.page +share/gnome/help/shotwell/hu/view-information.page +share/gnome/help/shotwell/hu/view-sidebar.page share/icons/hicolor/16x16/apps/shotwell.svg share/icons/hicolor/24x24/apps/shotwell.svg share/icons/hicolor/scalable/apps/shotwell.svg @@ -169,6 +213,7 @@ share/locale/et/LC_MESSAGES/shotwell.mo share/locale/eu/LC_MESSAGES/shotwell.mo share/locale/fi/LC_MESSAGES/shotwell.mo share/locale/fr/LC_MESSAGES/shotwell.mo +share/locale/gd/LC_MESSAGES/shotwell.mo share/locale/gl/LC_MESSAGES/shotwell.mo share/locale/gu/LC_MESSAGES/shotwell.mo share/locale/he/LC_MESSAGES/shotwell.mo @@ -202,6 +247,7 @@ share/locale/ru/LC_MESSAGES/shotwell.mo share/locale/sk/LC_MESSAGES/shotwell.mo share/locale/sl/LC_MESSAGES/shotwell.mo share/locale/sr/LC_MESSAGES/shotwell.mo +share/locale/sr@latin/LC_MESSAGES/shotwell.mo share/locale/sv/LC_MESSAGES/shotwell.mo share/locale/ta/LC_MESSAGES/shotwell.mo share/locale/te/LC_MESSAGES/shotwell.mo @@ -283,18 +329,3 @@ share/locale/zh_TW/LC_MESSAGES/shotwell. %%DATADIR%%/ui/tags.ui %%DATADIR%%/ui/top.ui %%DATADIR%%/ui/trash.ui -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm share/gnome/help/shotwell/C/figures -@dirrm share/gnome/help/shotwell/C -@dirrm share/gnome/help/shotwell/es -@dirrm share/gnome/help/shotwell/el -@dirrm share/gnome/help/shotwell -@dirrmtry share/appdata -@dirrm libexec/shotwell -@dirrm lib/shotwell/plugins/builtin -@dirrm lib/shotwell/plugins -@dirrm lib/shotwell -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:14:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A94629E3; Sun, 5 Oct 2014 14:14:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 969A3C75; Sun, 5 Oct 2014 14:14:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EEjg7016612; Sun, 5 Oct 2014 14:14:45 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EEjYq016611; Sun, 5 Oct 2014 14:14:45 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051414.s95EEjYq016611@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 14:14:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370085 - head/net/ntp-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:14:45 -0000 Author: tijl Date: Sun Oct 5 14:14:44 2014 New Revision: 370085 URL: https://svnweb.freebsd.org/changeset/ports/370085 QAT: https://qat.redports.org/buildarchive/r370085/ Log: Remove USE_AUTOTOOLS Modified: head/net/ntp-devel/Makefile Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Sun Oct 5 14:12:45 2014 (r370084) +++ head/net/ntp-devel/Makefile Sun Oct 5 14:14:44 2014 (r370085) @@ -13,8 +13,6 @@ MAINTAINER= cy@FreeBSD.org COMMENT= The Network Time Protocol Distribution GNU_CONFIGURE= yes -USE_AUTOTOOLS= automake -AUTOMAKE_ARGS= --add-missing OPTIONS_SUB= yes USES= pathfix shebangfix libtool LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2 @@ -54,17 +52,11 @@ BROKEN= Fails to compile when MX4200 is DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}4 -AUTOTOOLSFILES= aclocal.m4 - # XXX Temporary hack. Remember to remove this next commit. post-extract: @/usr/bin/touch ${WRKSRC}/scripts/build/checkHtmlFileDates @${CHMOD} +x ${WRKSRC}/scripts/build/checkHtmlFileDates -post-patch: - @${REINPLACE_CMD} -e 's|1.11.1|%%AUTOMAKE_APIVER%%|g' \ - ${WRKSRC}/aclocal.m4 - post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${EXAMPLESDIR} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:31:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52926BD0; Sun, 5 Oct 2014 14:31:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 40376E08; Sun, 5 Oct 2014 14:31:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EVUFw025441; Sun, 5 Oct 2014 14:31:30 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EVU7o025440; Sun, 5 Oct 2014 14:31:30 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051431.s95EVU7o025440@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 14:31:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370086 - head/multimedia/libquicktime X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:31:30 -0000 Author: tijl Date: Sun Oct 5 14:31:29 2014 New Revision: 370086 URL: https://svnweb.freebsd.org/changeset/ports/370086 QAT: https://qat.redports.org/buildarchive/r370086/ Log: - Remove USE_AUTOTOOLS - Remove PTHREAD_CFLAGS/PTHREAD_LIBS - Remove -fPIC - Clean up post-patch and pre-configure Modified: head/multimedia/libquicktime/Makefile Modified: head/multimedia/libquicktime/Makefile ============================================================================== --- head/multimedia/libquicktime/Makefile Sun Oct 5 14:14:44 2014 (r370085) +++ head/multimedia/libquicktime/Makefile Sun Oct 5 14:31:29 2014 (r370086) @@ -19,12 +19,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_LDCONFIG= yes USES= gettext gmake libtool pathfix pkgconfig -USE_AUTOTOOLS= autoconf +GNU_CONFIGURE= yes +CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib -lintl -CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lintl - -CFLAGS+= -fPIC .if !defined(_BUILDING_LIBQUICKTIME_PLUGINS) USE_XORG= xaw xv CONFIGURE_ARGS= --with-x --enable-gpl --without-doxygen --without-lame @@ -128,19 +126,8 @@ CONFIGURE_ARGS+= --without-schroedinger .endif -AUTOTOOLSFILES= aclocal.m4 - post-patch: - @${REINPLACE_CMD} -e 's|2.64|%%AUTOCONF_VERSION%%|g' ${WRKSRC}/aclocal.m4 - @${REINPLACE_CMD} -e 's|stdint.h|inttypes.h|' \ - ${WRKSRC}/plugins/audiocodec/* \ - ${WRKSRC}/plugins/videocodec/* - @${REINPLACE_CMD} -E -e 's|objformat=aout|objformat=elf|g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|-DG.*_DISABLE_DEPRECATED||g' \ - ${WRKSRC}/configure* - -pre-configure: - @${CHMOD} +x ${WRKSRC}/configure + @${REINPLACE_CMD} 's/-DGTK_DISABLE_DEPRECATED//' ${WRKSRC}/configure .if ${PORT_OPTIONS:MDOCS} && !defined(_BUILDING_LIBQUICKTIME_PLUGINS) post-install: From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:32:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0B340CAF; Sun, 5 Oct 2014 14:32:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECB8CE0C; Sun, 5 Oct 2014 14:32:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EWMQv025642; Sun, 5 Oct 2014 14:32:22 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EWMe2025641; Sun, 5 Oct 2014 14:32:22 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051432.s95EWMe2025641@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 14:32:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370087 - head/net/openvswitch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:32:23 -0000 Author: tijl Date: Sun Oct 5 14:32:22 2014 New Revision: 370087 URL: https://svnweb.freebsd.org/changeset/ports/370087 QAT: https://qat.redports.org/buildarchive/r370087/ Log: Convert to USES=autoreconf and USES=python Modified: head/net/openvswitch/Makefile Modified: head/net/openvswitch/Makefile ============================================================================== --- head/net/openvswitch/Makefile Sun Oct 5 14:31:29 2014 (r370086) +++ head/net/openvswitch/Makefile Sun Oct 5 14:32:22 2014 (r370087) @@ -15,10 +15,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= PERL=${PREFIX}/bin/perl \ SSL_CFLAGS="-I${OPENSSLINC}" \ SSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" -USES= gmake pkgconfig -USE_AUTOTOOLS= autoconf automake +USES= autoreconf gmake pkgconfig python USE_OPENSSL= yes -USE_PYTHON= yes USE_RC_SUBR= ovs-vswitchd ovsdb-server OPTIONS_DEFINE= THREADED @@ -30,12 +28,7 @@ THREADED_DESC= Experimental high-perform CONFIGURE_ARGS+=--enable-threaded=yes .endif -AUTOTOOLSFILES= aclocal.m4 - post-patch: - @${REINPLACE_CMD} -e 's|1.11.3|%%AUTOMAKE_APIVER%%|g' \ - -e 's|2.68|%%AUTOCONF_VERSION%%|g' \ - ${WRKSRC}/aclocal.m4 .if ${PORT_OPTIONS:MTHREADED} @# We can't use EXTRA_PATCHES, since we need to apply this one @# after files/patch-bsd-netdef.diff, not before. From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:34:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE2BBEA0; Sun, 5 Oct 2014 14:34:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB260E1F; Sun, 5 Oct 2014 14:34:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EYuIb026034; Sun, 5 Oct 2014 14:34:56 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EYuLM026033; Sun, 5 Oct 2014 14:34:56 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051434.s95EYuLM026033@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 14:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370088 - head/databases X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:34:56 -0000 Author: antoine Date: Sun Oct 5 14:34:56 2014 New Revision: 370088 URL: https://svnweb.freebsd.org/changeset/ports/370088 QAT: https://qat.redports.org/buildarchive/r370088/ Log: Hook postgresql93-plv8js to the build Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sun Oct 5 14:32:22 2014 (r370087) +++ head/databases/Makefile Sun Oct 5 14:34:56 2014 (r370088) @@ -680,6 +680,7 @@ SUBDIR += postgresql93-plperl SUBDIR += postgresql93-plpython SUBDIR += postgresql93-pltcl + SUBDIR += postgresql93-plv8js SUBDIR += postgresql93-server SUBDIR += postgresql94-client SUBDIR += postgresql94-contrib From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:37:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCC65F97; Sun, 5 Oct 2014 14:37:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9DD4E2E; Sun, 5 Oct 2014 14:37:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EbPUE026446; Sun, 5 Oct 2014 14:37:25 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EbPVX026445; Sun, 5 Oct 2014 14:37:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051437.s95EbPVX026445@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 14:37:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370089 - head/databases/postgresql93-plv8js X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:37:25 -0000 Author: antoine Date: Sun Oct 5 14:37:24 2014 New Revision: 370089 URL: https://svnweb.freebsd.org/changeset/ports/370089 QAT: https://qat.redports.org/buildarchive/r370089/ Log: Remove trailing / Modified: head/databases/postgresql93-plv8js/Makefile Modified: head/databases/postgresql93-plv8js/Makefile ============================================================================== --- head/databases/postgresql93-plv8js/Makefile Sun Oct 5 14:34:56 2014 (r370088) +++ head/databases/postgresql93-plv8js/Makefile Sun Oct 5 14:37:24 2014 (r370089) @@ -2,6 +2,6 @@ WANT_PGSQL_VER= 9.3 -MASTERDIR= ${.CURDIR}/../postgresql-plv8js/ +MASTERDIR= ${.CURDIR}/../postgresql-plv8js .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:39:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC2A110E; Sun, 5 Oct 2014 14:39:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99767E38; Sun, 5 Oct 2014 14:39:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EdQrN026773; Sun, 5 Oct 2014 14:39:26 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EdQSC026772; Sun, 5 Oct 2014 14:39:26 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051439.s95EdQSC026772@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 14:39:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370090 - head/www/suphp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:39:26 -0000 Author: tijl Date: Sun Oct 5 14:39:25 2014 New Revision: 370090 URL: https://svnweb.freebsd.org/changeset/ports/370090 QAT: https://qat.redports.org/buildarchive/r370090/ Log: Convert to USES=autoreconf Modified: head/www/suphp/Makefile Modified: head/www/suphp/Makefile ============================================================================== --- head/www/suphp/Makefile Sun Oct 5 14:37:24 2014 (r370089) +++ head/www/suphp/Makefile Sun Oct 5 14:39:25 2014 (r370090) @@ -13,9 +13,7 @@ MAINTAINER= bdrewery@FreeBSD.org COMMENT= Securely execute PHP scripts under Apache GNU_CONFIGURE= yes -USES= libtool -USE_AUTOTOOLS= aclocal:env automake autoconf:env -AUTOMAKE_ARGS+= --add-missing +USES= autoreconf libtool SUB_FILES= pkg-message USE_APACHE= 22 @@ -45,13 +43,6 @@ OPTIONS_DEFINE= DOCS CONFIGURE_ARGS+= --with-apr=${LOCALBASE} -AUTOTOOLSFILES= aclocal.m4 - -post-patch: - @${REINPLACE_CMD} -e 's|2.68|%%AUTOCONF_VERSION%%|g' \ - -e 's|1.11.3|%%AUTOMAKE_VERSION%%|g' \ - ${WRKSRC}/aclocal.m4 - post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR}/apache From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:43:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C7E9D3BF; Sun, 5 Oct 2014 14:43:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9CC12EDF; Sun, 5 Oct 2014 14:43:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95EhG3m030756; Sun, 5 Oct 2014 14:43:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95EhFVU030750; Sun, 5 Oct 2014 14:43:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410051443.s95EhFVU030750@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 5 Oct 2014 14:43:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370091 - in head/www: . py-flask-sockets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:43:16 -0000 Author: antoine Date: Sun Oct 5 14:43:15 2014 New Revision: 370091 URL: https://svnweb.freebsd.org/changeset/ports/370091 QAT: https://qat.redports.org/buildarchive/r370091/ Log: New port: www/py-flask-sockets Elegant WebSockets for your Flask apps. WWW: https://github.com/kennethreitz/flask-sockets Added: head/www/py-flask-sockets/ head/www/py-flask-sockets/Makefile (contents, props changed) head/www/py-flask-sockets/distinfo (contents, props changed) head/www/py-flask-sockets/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Oct 5 14:39:25 2014 (r370090) +++ head/www/Makefile Sun Oct 5 14:43:15 2014 (r370091) @@ -1529,6 +1529,7 @@ SUBDIR += py-flask-admin SUBDIR += py-flask-cache SUBDIR += py-flask-flatpages + SUBDIR += py-flask-sockets SUBDIR += py-flask-uploads SUBDIR += py-flexget SUBDIR += py-flup Added: head/www/py-flask-sockets/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-sockets/Makefile Sun Oct 5 14:43:15 2014 (r370091) @@ -0,0 +1,22 @@ +# Created by: antoine@FreeBSD.org +# $FreeBSD$ + +PORTNAME= Flask-Sockets +PORTVERSION= 0.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Elegant WebSockets for your Flask apps + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0:${PORTSDIR}/www/py-flask \ + ${PYTHON_PKGNAMEPREFIX}gevent>=0:${PORTSDIR}/devel/py-gevent \ + ${PYTHON_PKGNAMEPREFIX}gevent-websocket>=0:${PORTSDIR}/www/py-gevent-websocket + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/www/py-flask-sockets/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-sockets/distinfo Sun Oct 5 14:43:15 2014 (r370091) @@ -0,0 +1,2 @@ +SHA256 (Flask-Sockets-0.1.tar.gz) = 7991074577623a0e1e3ecdfcbf0d59a7b426b224db8b522f3917969c6c37a97b +SIZE (Flask-Sockets-0.1.tar.gz) = 2471 Added: head/www/py-flask-sockets/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-flask-sockets/pkg-descr Sun Oct 5 14:43:15 2014 (r370091) @@ -0,0 +1,3 @@ +Elegant WebSockets for your Flask apps. + +WWW: https://github.com/kennethreitz/flask-sockets From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 14:50:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75B4C55D; Sun, 5 Oct 2014 14:50:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 62853F18; Sun, 5 Oct 2014 14:50:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95Eod3A031950; Sun, 5 Oct 2014 14:50:39 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95Eoco3031942; Sun, 5 Oct 2014 14:50:38 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410051450.s95Eoco3031942@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sun, 5 Oct 2014 14:50:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370092 - in head/devel: . vasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 14:50:39 -0000 Author: wen Date: Sun Oct 5 14:50:37 2014 New Revision: 370092 URL: https://svnweb.freebsd.org/changeset/ports/370092 QAT: https://qat.redports.org/buildarchive/r370092/ Log: vasm is a portable and retargetable assembler to create linkable objects in various formats or absolute code. Multiple CPU-, syntax and output-modules can be selected. Currently the following CPUs are officially supported by vasm: M680x0 family (including M6888x, M68851 and CPU32) ColdFire family (all models of V2, V3, V4, V4e) 80x86 family (IA32 8/16/32 bit, using MIT-syntax) PowerPC family (POWER, 40x, 6xx, 7xx, 7xxx, 860, e300) ARM (architecture ARMv1 to ARMv4, including THUMB mode) Jaguar RISC (GPU and DSP instruction sets) Z80 family (Z80, 8080, GBZ80, 64180, RCM2/3/4k) C16x/ST10 6502 family 6800 family (6800, 68HC11) These syntax flavours are supported: Standard MIT (GNU-as style) syntax Motorola/Freescale 68k syntax (Devpac compatible) Old 8-bit style syntax WWW: http://sun.hasenbraten.de/vasm/ PR: 194152 Submitted by: uffe@uffe.org Added: head/devel/vasm/ head/devel/vasm/Makefile (contents, props changed) head/devel/vasm/distinfo (contents, props changed) head/devel/vasm/pkg-descr (contents, props changed) head/devel/vasm/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 5 14:43:15 2014 (r370091) +++ head/devel/Makefile Sun Oct 5 14:50:37 2014 (r370092) @@ -4744,6 +4744,7 @@ SUBDIR += valgrind SUBDIR += valgrind-devel SUBDIR += varconf + SUBDIR += vasm SUBDIR += vera++ SUBDIR += viewvc SUBDIR += violet Added: head/devel/vasm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/vasm/Makefile Sun Oct 5 14:50:37 2014 (r370092) @@ -0,0 +1,49 @@ +# Created by: Uffe Jakobsen +# $FreeBSD$ + +PORTNAME= vasm +PORTVERSION= 1.7a +CATEGORIES= devel +MASTER_SITES= http://sun.hasenbraten.de/vasm/release/ +DISTNAME= ${PORTNAME} + +MAINTAINER= uffe@uffe.org +COMMENT= Portable 6502 6800 arm c16x jagrisc m68k ppc vidcore x86 z80 assembler + +LEGAL_TEXT= This archive may be redistributed without modifications and used for non-commercial purposes. + +USES= gmake pathfix + +CPU_LIST= 6502 6800 arm c16x jagrisc m68k ppc test vidcore x86 z80 +SYNTAX_LIST= std mot oldstyle test +OUTPUT_LIST= aout bin elf hunk test tos vobj + +do-build: +.for CPU in ${CPU_LIST} +.for SYNTAX in ${SYNTAX_LIST} + ${GMAKE} -C ${WRKSRC} CC=${CC} CPU=${CPU} SYNTAX=${SYNTAX} >/dev/null 2>&1 +.endfor +.endfor + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/vobjdump ${STAGEDIR}${PREFIX}/bin +.for CPU in ${CPU_LIST} +.for SYNTAX in ${SYNTAX_LIST} + ${INSTALL_PROGRAM} ${WRKSRC}/vasm${CPU}_${SYNTAX} ${STAGEDIR}${PREFIX}/bin +.endfor +.endfor + ${MKDIR} ${STAGEDIR}${DOCSDIR} +.for CPU in ${CPU_LIST} +.for SYNTAX in ${SYNTAX_LIST} + -test -f ${WRKSRC}/doc/cpu_${CPU}.texi && ${INSTALL_MAN} ${WRKSRC}/doc/cpu_${CPU}.texi ${STAGEDIR}${DOCSDIR} + -test -f ${WRKSRC}/doc/syntax_${SYNTAX}.texi && ${INSTALL_MAN} ${WRKSRC}/doc/syntax_${SYNTAX}.texi ${STAGEDIR}${DOCSDIR} +.for OUTPUT in ${OUTPUT_LIST} + -test -f ${WRKSRC}/doc/output_${OUTPUT}.texi && ${INSTALL_MAN} ${WRKSRC}/doc/output_${OUTPUT}.texi ${STAGEDIR}${DOCSDIR} +.endfor +.endfor +.endfor + ${INSTALL_MAN} ${WRKSRC}/doc/vasm.texi ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/doc/vasm_main.texi ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/doc/interface.texi ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/vasm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/vasm/distinfo Sun Oct 5 14:50:37 2014 (r370092) @@ -0,0 +1,2 @@ +SHA256 (vasm.tar.gz) = d97cc9e3eb1f175e1187ef0773d8f3a267bdf97939ef0b97a719a98b8de7b6be +SIZE (vasm.tar.gz) = 337992 Added: head/devel/vasm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/vasm/pkg-descr Sun Oct 5 14:50:37 2014 (r370092) @@ -0,0 +1,24 @@ +vasm is a portable and retargetable assembler to create linkable +objects in various formats or absolute code. +Multiple CPU-, syntax and output-modules can be selected. + +Currently the following CPUs are officially supported by vasm: + + M680x0 family (including M6888x, M68851 and CPU32) + ColdFire family (all models of V2, V3, V4, V4e) + 80x86 family (IA32 8/16/32 bit, using MIT-syntax) + PowerPC family (POWER, 40x, 6xx, 7xx, 7xxx, 860, e300) + ARM (architecture ARMv1 to ARMv4, including THUMB mode) + Jaguar RISC (GPU and DSP instruction sets) + Z80 family (Z80, 8080, GBZ80, 64180, RCM2/3/4k) + C16x/ST10 + 6502 family + 6800 family (6800, 68HC11) + +These syntax flavours are supported: + + Standard MIT (GNU-as style) syntax + Motorola/Freescale 68k syntax (Devpac compatible) + Old 8-bit style syntax + +WWW: http://sun.hasenbraten.de/vasm/ Added: head/devel/vasm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/vasm/pkg-plist Sun Oct 5 14:50:37 2014 (r370092) @@ -0,0 +1,67 @@ +bin/vasm6502_mot +bin/vasm6502_oldstyle +bin/vasm6502_std +bin/vasm6502_test +bin/vasm6800_mot +bin/vasm6800_oldstyle +bin/vasm6800_std +bin/vasm6800_test +bin/vasmarm_mot +bin/vasmarm_oldstyle +bin/vasmarm_std +bin/vasmarm_test +bin/vasmc16x_mot +bin/vasmc16x_oldstyle +bin/vasmc16x_std +bin/vasmc16x_test +bin/vasmjagrisc_mot +bin/vasmjagrisc_oldstyle +bin/vasmjagrisc_std +bin/vasmjagrisc_test +bin/vasmm68k_mot +bin/vasmm68k_oldstyle +bin/vasmm68k_std +bin/vasmm68k_test +bin/vasmppc_mot +bin/vasmppc_oldstyle +bin/vasmppc_std +bin/vasmppc_test +bin/vasmtest_mot +bin/vasmtest_oldstyle +bin/vasmtest_std +bin/vasmtest_test +bin/vasmvidcore_mot +bin/vasmvidcore_oldstyle +bin/vasmvidcore_std +bin/vasmvidcore_test +bin/vasmx86_mot +bin/vasmx86_oldstyle +bin/vasmx86_std +bin/vasmx86_test +bin/vasmz80_mot +bin/vasmz80_oldstyle +bin/vasmz80_std +bin/vasmz80_test +bin/vobjdump +%%PORTDOCS%%%%DOCSDIR%%/cpu_6502.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_6800.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_arm.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_c16x.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_jagrisc.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_m68k.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_ppc.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_x86.texi +%%PORTDOCS%%%%DOCSDIR%%/cpu_z80.texi +%%PORTDOCS%%%%DOCSDIR%%/interface.texi +%%PORTDOCS%%%%DOCSDIR%%/output_aout.texi +%%PORTDOCS%%%%DOCSDIR%%/output_bin.texi +%%PORTDOCS%%%%DOCSDIR%%/output_elf.texi +%%PORTDOCS%%%%DOCSDIR%%/output_hunk.texi +%%PORTDOCS%%%%DOCSDIR%%/output_test.texi +%%PORTDOCS%%%%DOCSDIR%%/output_tos.texi +%%PORTDOCS%%%%DOCSDIR%%/output_vobj.texi +%%PORTDOCS%%%%DOCSDIR%%/syntax_mot.texi +%%PORTDOCS%%%%DOCSDIR%%/syntax_oldstyle.texi +%%PORTDOCS%%%%DOCSDIR%%/syntax_std.texi +%%PORTDOCS%%%%DOCSDIR%%/vasm.texi +%%PORTDOCS%%%%DOCSDIR%%/vasm_main.texi From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 15:33:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4877FD8B; Sun, 5 Oct 2014 15:33:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 352795DF; Sun, 5 Oct 2014 15:33:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95FXq9I054282; Sun, 5 Oct 2014 15:33:52 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95FXpKW054280; Sun, 5 Oct 2014 15:33:51 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051533.s95FXpKW054280@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 15:33:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370093 - in head/net-mgmt/collectd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 15:33:52 -0000 Author: tijl Date: Sun Oct 5 15:33:51 2014 New Revision: 370093 URL: https://svnweb.freebsd.org/changeset/ports/370093 QAT: https://qat.redports.org/buildarchive/r370093/ Log: - Convert to USES=autoreconf - Remove WANT_GNOME - Patch configure.in and Makefile.am to move config and m4 directories out of the libltdl directory. This prevents rerunning autotools+configure during make build. Modified: head/net-mgmt/collectd/Makefile head/net-mgmt/collectd/files/patch-configure.in Modified: head/net-mgmt/collectd/Makefile ============================================================================== --- head/net-mgmt/collectd/Makefile Sun Oct 5 14:50:37 2014 (r370092) +++ head/net-mgmt/collectd/Makefile Sun Oct 5 15:33:51 2014 (r370093) @@ -14,10 +14,8 @@ LICENSE= GPLv2 LIB_DEPENDS= libltdl.so:${PORTSDIR}/devel/libltdl -USES= gmake libtool GNU_CONFIGURE= yes -USE_AUTOTOOLS= autoconf autoheader automake -WANT_GNOME= yes +USES= autoreconf gmake libtool OPTIONS_DEFINE= CGI BIND DEBUG GCRYPT LIBVIRT OPTIONS_GROUP= INPUT OUTPUT @@ -433,17 +431,15 @@ CONFIGURE_ARGS+=--disable-xmms PLIST_SUB+= XMMS="@comment " .endif -AUTOTOOLSFILES= aclocal.m4 - post-patch: - @${REINPLACE_CMD} -e 's|1.11.1|%%AUTOMAKE_APIVER%%|g' \ - -e 's|2.65|%%AUTOCONF_VERSION%%|g' \ - ${WRKSRC}/aclocal.m4 + @${RM} -r ${WRKSRC}/libltdl @${REINPLACE_CMD} \ -e 's;@prefix@/var/;/var/;' \ -e 's;/var/lib/;/var/db/;' \ ${WRKSRC}/src/collectd.conf.in - @${REINPLACE_CMD} -e '/\$$[(]mkinstalldirs)/d' ${WRKSRC}/Makefile.in \ + @${REINPLACE_CMD} \ + -e '/^ACLOCAL_AMFLAGS =/s;libltdl/m4;m4;' \ + -e '/\$$[(]mkinstalldirs)/d' \ ${WRKSRC}/Makefile.am @${REINPLACE_CMD} \ -e 's;/etc/collection\.conf;${WWWDIR}/collection.conf;' \ Modified: head/net-mgmt/collectd/files/patch-configure.in ============================================================================== --- head/net-mgmt/collectd/files/patch-configure.in Sun Oct 5 14:50:37 2014 (r370092) +++ head/net-mgmt/collectd/files/patch-configure.in Sun Oct 5 15:33:51 2014 (r370093) @@ -1,6 +1,31 @@ ---- configure.in.orig 2012-11-11 11:43:05.000000000 +0100 -+++ configure.in 2012-12-30 23:49:30.000000000 +0100 -@@ -67,6 +67,9 @@ +--- configure.in.orig 2013-04-08 06:26:17 UTC ++++ configure.in +@@ -2,13 +2,13 @@ + AC_INIT(collectd, m4_esyscmd(./version-gen.sh)) + AC_CONFIG_SRCDIR(src/collectd.c) + AC_CONFIG_HEADERS(src/config.h) +-AC_CONFIG_AUX_DIR([libltdl/config]) ++AC_CONFIG_AUX_DIR([config]) + + m4_ifdef([LT_PACKAGE_VERSION], + # libtool >= 2.2 + [ + LT_CONFIG_LTDL_DIR([libltdl]) +- LT_INIT([dlopen]) ++ LT_INIT([dlopen disable-static]) + LTDL_INIT([convenience]) + AC_DEFINE(LIBTOOL_VERSION, 2, [Define to used libtool version.]) + ] +@@ -42,8 +42,6 @@ + AM_PROG_CC_C_O + AM_CONDITIONAL(COMPILER_IS_GCC, test "x$GCC" = "xyes") + +-AC_DISABLE_STATIC +-AC_PROG_LIBTOOL + AC_PROG_LEX + AC_PROG_YACC + PKG_PROG_PKG_CONFIG +@@ -67,6 +65,9 @@ *openbsd*) ac_system="OpenBSD" ;; @@ -10,7 +35,7 @@ *aix*) AC_DEFINE([KERNEL_AIX], 1, [True if program is to be compiled for a AIX kernel]) ac_system="AIX" -@@ -98,7 +101,7 @@ +@@ -98,7 +99,7 @@ fi # Where to install .pc files. @@ -19,7 +44,7 @@ AC_SUBST(pkgconfigdir) # Check for standards compliance mode -@@ -1200,6 +1203,8 @@ +@@ -1200,6 +1201,8 @@ then AC_DEFINE(HAVE_LIBKSTAT, 1, [Define to 1 if you have the 'kstat' library (-lkstat)]) @@ -28,7 +53,7 @@ fi AM_CONDITIONAL(BUILD_WITH_LIBKSTAT, test "x$with_kstat" = "xyes") AM_CONDITIONAL(BUILD_WITH_LIBDEVINFO, test "x$with_devinfo" = "xyes") -@@ -1562,9 +1567,6 @@ +@@ -1562,9 +1565,6 @@ [with_libgcrypt="yes"], [with_libgcrypt="no (symbol gcry_md_hash_buffer not found)"]) @@ -38,7 +63,7 @@ fi CPPFLAGS="$SAVE_CPPFLAGS" -@@ -3059,7 +3061,7 @@ +@@ -3056,7 +3056,7 @@ if test "x$with_python" = "xyes" then AC_MSG_CHECKING([for Python LIBS]) @@ -47,7 +72,7 @@ python_config_status=$? if test "$python_config_status" -ne 0 || test "x$python_library_flags" = "x" -@@ -3074,7 +3076,7 @@ +@@ -3071,7 +3071,7 @@ if test "x$with_python" = "xyes" then LDFLAGS="-L$python_library_path $LDFLAGS" @@ -56,7 +81,7 @@ AC_CHECK_FUNC(PyObject_CallFunction, [with_python="yes"], -@@ -4171,6 +4173,12 @@ +@@ -4168,6 +4168,12 @@ plugin_zfs_arc="yes" fi From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 16:04:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9338B5B6; Sun, 5 Oct 2014 16:04:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E4AE93E; Sun, 5 Oct 2014 16:04:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95G4HmQ068178; Sun, 5 Oct 2014 16:04:17 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95G4G1F068173; Sun, 5 Oct 2014 16:04:16 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410051604.s95G4G1F068173@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sun, 5 Oct 2014 16:04:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370094 - in head/audio/boodler: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 16:04:17 -0000 Author: jhale Date: Sun Oct 5 16:04:16 2014 New Revision: 370094 URL: https://svnweb.freebsd.org/changeset/ports/370094 QAT: https://qat.redports.org/buildarchive/r370094/ Log: - Convert to USES=python - Convert KNOBS to proper OPTIONS - Add LICENSE - Drop gmake dependency - Use DATADIR instead of BHOME variable - Simplify and separate configure and build stages - Rework do-install target a bit - Add .pyo files - Use SUB_FILES instead of patch - Update plist - Update WWW - Bump PORTREVISION TODO: Could use an update, version 2.0.4 available Added: head/audio/boodler/files/boodler-wrapper.in (contents, props changed) Deleted: head/audio/boodler/files/patch-wrapper_boodler Modified: head/audio/boodler/Makefile head/audio/boodler/pkg-descr head/audio/boodler/pkg-plist Modified: head/audio/boodler/Makefile ============================================================================== --- head/audio/boodler/Makefile Sun Oct 5 15:33:51 2014 (r370093) +++ head/audio/boodler/Makefile Sun Oct 5 16:04:16 2014 (r370094) @@ -3,7 +3,7 @@ PORTNAME= boodler PORTVERSION= 1.5.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://www.eblong.com/zarf/boodler/ DISTFILES= boodler-153.tar.gz boodler-snd-021902.tar.gz @@ -11,57 +11,60 @@ DISTFILES= boodler-153.tar.gz boodler-sn MAINTAINER= ports@FreeBSD.org COMMENT= Programmable soundscape tool +LICENSE= LGPL20 # Main program only, sounds have various copyrights + RESTRICTED= Not for commercial use RESTRICTED_FILES= boodler-snd-021902.tar.gz -OPTIONS_DEFINE= DOCS +USES= python:2 shebangfix -USES= gmake -USE_PYTHON= 2 -DRIVER?= oss +HAS_CONFIGURE= yes +CONFIGURE_SCRIPT= configure.py +CONFIGURE_ARGS= --include ${LOCALBASE}/include --lib ${LOCALBASE}/lib WRKSRC= ${WRKDIR}/${PORTNAME} -BHOME= ${PREFIX}/share/boodler -pre-everything:: - @${ECHO} "" - @${ECHO} "The following build options are available for Boodler:" - @${ECHO} "" - @${ECHO} " DRIVER=OSS Configure to use /dev/dsp." - @${ECHO} " DRIVER=ESD Configure to use EsounD." - @${ECHO} " DRIVER=FILE Configure to write raw PCM data to a file." - @${ECHO} "" - @${ECHO} "Boodler can only be configured to use one of these" - @${ECHO} "interfaces. The default is to use OSS." - @${ECHO} "" +SHEBANG_FILES= ${CONFIGURE_SCRIPT} +SUB_FILES= boodler-wrapper +SUB_LIST= PYTHON_CMD=${PYTHON_CMD} -.if ${DRIVER:tl} == "esd" -LIB_DEPENDS+= libesd.so:${PORTSDIR}/audio/esound -.endif +OPTIONS_DEFINE= DOCS +OPTIONS_SINGLE= AUDIO +OPTIONS_SINGLE_AUDIO= ESOUND FILE OSS +OPTIONS_DEFAULT= OSS + +AUDIO_DESC= Audio backend + +ESOUND_LIB_DEPENDS= libesd.so:${PORTSDIR}/audio/esound +ESOUND_CONFIGURE_ON= --driver esd + +FILE_DESC= Write raw PCM data to a file +FILE_CONFIGURE_ON= --driver file + +OSS_CONFIGURE_ON= --driver oss .include .if ${ARCH} == "amd64" || ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -PIC= --PIC +CONFIGURE_ARGS+= --PIC .endif post-patch: - ${REINPLACE_CMD} -e "s|python|${PYTHON_CMD}|" ${WRKSRC}/Makefile - ${REINPLACE_CMD} -e "s|^booroot=.*|booroot=${PREFIX}/share/boodler|" ${WRKSRC}/wrapper/boodler - @${RMDIR} ${WRKDIR}/boodler-snd/string - -do-build: - (cd ${WRKSRC} && ${PYTHON_CMD} configure.py --driver ${DRIVER:tl} ${PIC} --include ${PREFIX}/include --lib ${PREFIX}/lib && make) - @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/effects ${WRKSRC}/boodle/ + ${REINPLACE_CMD} -e "s|python|${PYTHON_CMD}|" \ + -e "s|make |${MAKE_CMD} |g" ${WRKSRC}/Makefile + ${RMDIR} ${WRKDIR}/boodler-snd/string + +post-build: + ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/effects ${WRKSRC}/boodle + ${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/effects ${WRKSRC}/boodle do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/wrapper/boodler ${STAGEDIR}${PREFIX}/bin/ - @${MKDIR} ${STAGEDIR}${BHOME} - @${INSTALL_SCRIPT} ${WRKSRC}/boodler.py ${STAGEDIR}${BHOME} - @${MKDIR} ${STAGEDIR}${BHOME}/boodle/ ${STAGEDIR}${BHOME}/effects/ ${STAGEDIR}${BHOME}/boodler-snd/ - @${CHMOD} -R u+w,a+r,og-w ${WRKDIR}/boodler-snd - @${FIND} ${WRKDIR}/boodler-snd -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - @cd ${WRKDIR} && ${CP} -pPR boodler/boodle boodler/effects boodler-snd ${STAGEDIR}${BHOME} + (cd ${WRKDIR} && ${COPYTREE_SHARE} boodler-snd ${STAGEDIR}${DATADIR}) + (cd ${WRKSRC} && ${COPYTREE_SHARE} "boodle effects" ${STAGEDIR}${DATADIR}) + ${INSTALL_SCRIPT} ${WRKDIR}/boodler-wrapper ${STAGEDIR}${PREFIX}/bin/boodler + ${INSTALL_SCRIPT} ${WRKSRC}/boodler.py ${STAGEDIR}${DATADIR} + ${RM} ${STAGEDIR}${DATADIR}/boodle/cboodle.so + ${INSTALL_PROGRAM} ${WRKSRC}/boodle/cboodle.so ${STAGEDIR}${DATADIR}/boodle/cboodle.so @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR} .include Added: head/audio/boodler/files/boodler-wrapper.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/boodler/files/boodler-wrapper.in Sun Oct 5 16:04:16 2014 (r370094) @@ -0,0 +1,8 @@ +#!/bin/sh + +booroot=%%DATADIR%% + +export BOODLER_SOUND_PATH=${booroot}/boodler-snd/ +export BOODLER_EFFECTS_PATH=${booroot}/effects/ + +%%PYTHON_CMD%% ${booroot}/boodler.py "$@" Modified: head/audio/boodler/pkg-descr ============================================================================== --- head/audio/boodler/pkg-descr Sun Oct 5 15:33:51 2014 (r370093) +++ head/audio/boodler/pkg-descr Sun Oct 5 16:04:16 2014 (r370094) @@ -2,4 +2,4 @@ Boodler is a tool for creating soundscap varying streams of sound. Boodler is designed to run in the background on a computer, maintaining whatever sound environment you desire. -WWW: http://www.eblong.com/zarf/boodler/ +WWW: http://boodler.org/ Modified: head/audio/boodler/pkg-plist ============================================================================== --- head/audio/boodler/pkg-plist Sun Oct 5 15:33:51 2014 (r370093) +++ head/audio/boodler/pkg-plist Sun Oct 5 16:04:16 2014 (r370094) @@ -1,358 +1,370 @@ bin/boodler -share/boodler/boodler.py -share/boodler/boodle/__init__.py -share/boodler/boodle/__init__.pyc -share/boodler/boodle/agent.py -share/boodler/boodle/agent.pyc -share/boodler/boodle/cboodle.so -share/boodler/boodle/generator.py -share/boodler/boodle/generator.pyc -share/boodler/boodle/listen.py -share/boodler/boodle/listen.pyc -share/boodler/boodle/music.py -share/boodler/boodle/music.pyc -share/boodler/boodle/sample.py -share/boodler/boodle/sample.pyc -share/boodler/boodle/stereo.py -share/boodler/boodle/stereo.pyc -@dirrm share/boodler/boodle -share/boodler/effects/crows.py -share/boodler/effects/play.py -share/boodler/effects/blop.py -share/boodler/effects/frogs.py -share/boodler/effects/wind.py -share/boodler/effects/cavepool.py -share/boodler/effects/manager.py -share/boodler/effects/README -share/boodler/effects/stoner.py -share/boodler/effects/timespeak.py -share/boodler/effects/cricket.py -share/boodler/effects/gregor.py -share/boodler/effects/listen.py -share/boodler/effects/drumbeat.py -share/boodler/effects/hardhat.py -share/boodler/effects/journey.py -share/boodler/effects/fire.py -share/boodler/effects/endless.py -share/boodler/effects/clock.py -share/boodler/effects/pwrain.py -share/boodler/effects/owstorm.py -share/boodler/effects/heartbeat.py -share/boodler/effects/snazz.py -share/boodler/effects/office.py -share/boodler/effects/play.pyc -share/boodler/effects/crows.pyc -share/boodler/effects/fire.pyc -share/boodler/effects/cavepool.pyc -share/boodler/effects/pwrain.pyc -share/boodler/effects/manager.pyc -share/boodler/effects/stoner.pyc -share/boodler/effects/clock.pyc -share/boodler/effects/heartbeat.pyc -share/boodler/effects/hardhat.pyc -share/boodler/effects/office.pyc -share/boodler/effects/timespeak.pyc -share/boodler/effects/gregor.pyc -share/boodler/effects/drumbeat.pyc -share/boodler/effects/listen.pyc -share/boodler/effects/snazz.pyc -share/boodler/effects/endless.pyc -share/boodler/effects/owstorm.pyc -share/boodler/effects/wind.pyc -share/boodler/effects/journey.pyc -share/boodler/effects/frogs.pyc -share/boodler/effects/cricket.pyc -share/boodler/effects/blop.pyc -@dirrm share/boodler/effects -share/boodler/boodler-snd/percussion/hihat-wide.wav -share/boodler/boodler-snd/percussion/hihat-thin.wav -share/boodler/boodler-snd/percussion/kickdrum-sharp.wav -share/boodler/boodler-snd/percussion/kickdrum-low.wav -share/boodler/boodler-snd/percussion/kickdrum-hissy.wav -share/boodler/boodler-snd/percussion/kickdrum-whap.wav -share/boodler/boodler-snd/percussion/snare-thinlong.wav -share/boodler/boodler-snd/percussion/snare-wide.wav -share/boodler/boodler-snd/percussion/rattle-harsh.aiff -share/boodler/boodler-snd/percussion/README -share/boodler/boodler-snd/percussion/chinese-gong.aiff -share/boodler/boodler-snd/percussion/drum-echoey.aiff -share/boodler/boodler-snd/percussion/wood-tap-hollow.aiff -share/boodler/boodler-snd/percussion/bell-high-pure.aiff -share/boodler/boodler-snd/percussion/bell-high-shake.aiff -share/boodler/boodler-snd/percussion/bell-dinner.aiff -@dirrm share/boodler/boodler-snd/percussion -share/boodler/boodler-snd/insect/README -share/boodler/boodler-snd/insect/bee-swarm.aiff -share/boodler/boodler-snd/insect/seashore_meadow_katydid.aiff -share/boodler/boodler-snd/insect/fastcalling_tree_cricket.aiff -share/boodler/boodler-snd/insect/everglades_conehead.aiff -share/boodler/boodler-snd/insect/house_cricket.aiff -share/boodler/boodler-snd/insect/pine_tree_cricket.aiff -share/boodler/boodler-snd/insect/syncopated_scaly_cricket.aiff -share/boodler/boodler-snd/insect/melodious_ground_cricket.aiff -share/boodler/boodler-snd/insect/texas_meadow_katydid.aiff -share/boodler/boodler-snd/insect/sand_field_cricket.aiff -share/boodler/boodler-snd/insect/jamaican_field_cricket.aiff -share/boodler/boodler-snd/insect/vocal_field_cricket.aiff -share/boodler/boodler-snd/insect/robust_shieldback.aiff -share/boodler/boodler-snd/insect/tinking_trig.aiff -share/boodler/boodler-snd/insect/tinkling_ground_cricket.aiff -share/boodler/boodler-snd/insect/southern_ground_cricket.aiff -share/boodler/boodler-snd/insect/japanese_burrowing_cricket.aiff -share/boodler/boodler-snd/insect/slightly_musical_conehead.aiff -share/boodler/boodler-snd/insect/tropical_house_cricket.aiff -share/boodler/boodler-snd/insect/complex_trilling_trig.aiff -@dirrm share/boodler/boodler-snd/insect -share/boodler/boodler-snd/environ/water-bubbling.aiff -share/boodler/boodler-snd/environ/heartbeat.aiff -share/boodler/boodler-snd/environ/rain-thin.aiff -share/boodler/boodler-snd/environ/wind-gust.aiff -share/boodler/boodler-snd/environ/wind-hard.aiff -share/boodler/boodler-snd/environ/wind-steady.aiff -share/boodler/boodler-snd/environ/droplet-plink.aiff -share/boodler/boodler-snd/environ/droplet-bloink.aiff -share/boodler/boodler-snd/environ/README -share/boodler/boodler-snd/environ/rain-med.aiff -share/boodler/boodler-snd/environ/thunder-low.aiff -share/boodler/boodler-snd/environ/thunder-tense.aiff -share/boodler/boodler-snd/environ/heartbeat-low.aiff -share/boodler/boodler-snd/environ/rain-splashy.aiff -share/boodler/boodler-snd/environ/thunder-low-2.aiff -share/boodler/boodler-snd/environ/thunder-low-1.aiff -share/boodler/boodler-snd/environ/rain-on-leaves.aiff -share/boodler/boodler-snd/environ/water-rapids.aiff -share/boodler/boodler-snd/environ/water-trickle.aiff -share/boodler/boodler-snd/environ/fire-small.aiff -share/boodler/boodler-snd/environ/water-pouring.aiff -share/boodler/boodler-snd/environ/water-rushing.aiff -share/boodler/boodler-snd/environ/wind-far.aiff -share/boodler/boodler-snd/environ/waves-rough.aiff -share/boodler/boodler-snd/environ/waves-lapping.aiff -share/boodler/boodler-snd/environ/waves-floopy.aiff -share/boodler/boodler-snd/environ/waves-light.aiff -share/boodler/boodler-snd/environ/rain-splatter.aiff -share/boodler/boodler-snd/environ/rain-heavy.aiff -share/boodler/boodler-snd/environ/rain-splashy-low.aiff -share/boodler/boodler-snd/environ/droplet-plink-reverb.aiff -share/boodler/boodler-snd/environ/droplet-plink-reverb-2.aiff -share/boodler/boodler-snd/environ/droplet-plink-reverb-3.aiff -share/boodler/boodler-snd/environ/wind-gust-1.aiff -share/boodler/boodler-snd/environ/wind-gust-2.aiff -share/boodler/boodler-snd/environ/wind-gust-3.aiff -share/boodler/boodler-snd/environ/wind-heavy.aiff -@dirrm share/boodler/boodler-snd/environ -share/boodler/boodler-snd/voice/phoneme/b.aiff -share/boodler/boodler-snd/voice/phoneme/d.aiff -share/boodler/boodler-snd/voice/phoneme/f.aiff -share/boodler/boodler-snd/voice/phoneme/g.aiff -share/boodler/boodler-snd/voice/phoneme/j.aiff -share/boodler/boodler-snd/voice/phoneme/k.aiff -share/boodler/boodler-snd/voice/phoneme/l.aiff -share/boodler/boodler-snd/voice/phoneme/m.aiff -share/boodler/boodler-snd/voice/phoneme/n.aiff -share/boodler/boodler-snd/voice/phoneme/p.aiff -share/boodler/boodler-snd/voice/phoneme/r.aiff -share/boodler/boodler-snd/voice/phoneme/s.aiff -share/boodler/boodler-snd/voice/phoneme/t.aiff -share/boodler/boodler-snd/voice/phoneme/v.aiff -share/boodler/boodler-snd/voice/phoneme/w.aiff -share/boodler/boodler-snd/voice/phoneme/y.aiff -share/boodler/boodler-snd/voice/phoneme/z.aiff -share/boodler/boodler-snd/voice/phoneme/aa.aiff -share/boodler/boodler-snd/voice/phoneme/ae.aiff -share/boodler/boodler-snd/voice/phoneme/ah.aiff -share/boodler/boodler-snd/voice/phoneme/ao.aiff -share/boodler/boodler-snd/voice/phoneme/aw.aiff -share/boodler/boodler-snd/voice/phoneme/ax.aiff -share/boodler/boodler-snd/voice/phoneme/ay.aiff -share/boodler/boodler-snd/voice/phoneme/ch.aiff -share/boodler/boodler-snd/voice/phoneme/dh.aiff -share/boodler/boodler-snd/voice/phoneme/eh.aiff -share/boodler/boodler-snd/voice/phoneme/er.aiff -share/boodler/boodler-snd/voice/phoneme/ey.aiff -share/boodler/boodler-snd/voice/phoneme/hh.aiff -share/boodler/boodler-snd/voice/phoneme/ih.aiff -share/boodler/boodler-snd/voice/phoneme/iy.aiff -share/boodler/boodler-snd/voice/phoneme/ng.aiff -share/boodler/boodler-snd/voice/phoneme/ow.aiff -share/boodler/boodler-snd/voice/phoneme/oy.aiff -share/boodler/boodler-snd/voice/phoneme/sh.aiff -share/boodler/boodler-snd/voice/phoneme/th.aiff -share/boodler/boodler-snd/voice/phoneme/uh.aiff -share/boodler/boodler-snd/voice/phoneme/uw.aiff -share/boodler/boodler-snd/voice/phoneme/wh.aiff -share/boodler/boodler-snd/voice/phoneme/yu.aiff -share/boodler/boodler-snd/voice/phoneme/zh.aiff -share/boodler/boodler-snd/voice/phoneme/README -@dirrm share/boodler/boodler-snd/voice/phoneme -share/boodler/boodler-snd/voice/z-baa-proc.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/oh.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/1.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/2.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/3.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/4.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/5.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/6.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/7.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/8.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/9.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/10.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/11.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/12.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/13.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/14.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/15.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/16.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/17.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/18.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/19.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/20.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/30.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/40.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/50.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/second.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/seconds.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/and.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/oclock.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/README -share/boodler/boodler-snd/voice/timespeak/zarf/exactly.aiff -share/boodler/boodler-snd/voice/timespeak/zarf/the_time_is.aiff -@dirrm share/boodler/boodler-snd/voice/timespeak/zarf -share/boodler/boodler-snd/voice/timespeak/male-harsh/10.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/11.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/12.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/13.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/14.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/15.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/16.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/17.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/18.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/19.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/1.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/20.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/2.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/30.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/3.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/40.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/4.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/50.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/5.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/6.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/7.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/8.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/9.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/and.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/exactly.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/oclock.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/oh.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/second.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/README -share/boodler/boodler-snd/voice/timespeak/male-harsh/seconds.aiff -share/boodler/boodler-snd/voice/timespeak/male-harsh/the_time_is.aiff -@dirrm share/boodler/boodler-snd/voice/timespeak/male-harsh -@dirrm share/boodler/boodler-snd/voice/timespeak -share/boodler/boodler-snd/voice/hooray.aiff -share/boodler/boodler-snd/voice/README -@dirrm share/boodler/boodler-snd/voice -share/boodler/boodler-snd/pure/sine.aiff -share/boodler/boodler-snd/pure/square.aiff -share/boodler/boodler-snd/pure/triangle.aiff -share/boodler/boodler-snd/pure/silence.aiff -share/boodler/boodler-snd/pure/stereotest.aiff -share/boodler/boodler-snd/pure/README -share/boodler/boodler-snd/pure/null.aiff -@dirrm share/boodler/boodler-snd/pure -share/boodler/boodler-snd/bird/crow1.aiff -share/boodler/boodler-snd/bird/crow2.aiff -share/boodler/boodler-snd/bird/crow3.aiff -share/boodler/boodler-snd/bird/crow4.aiff -share/boodler/boodler-snd/bird/rooster.aiff -share/boodler/boodler-snd/bird/README -@dirrm share/boodler/boodler-snd/bird -share/boodler/boodler-snd/mech/clock-tick.aiff -share/boodler/boodler-snd/mech/clock-chime.aiff -share/boodler/boodler-snd/mech/clock-bong.aiff -share/boodler/boodler-snd/mech/telephone-busy.aiff -share/boodler/boodler-snd/mech/telephone-hang-up.aiff -share/boodler/boodler-snd/mech/telephone-pick-up.aiff -share/boodler/boodler-snd/mech/clock-clang.aiff -share/boodler/boodler-snd/mech/README -share/boodler/boodler-snd/mech/alarm-bell.aiff -share/boodler/boodler-snd/mech/cork-pop.aiff -share/boodler/boodler-snd/mech/piledriver.aiff -share/boodler/boodler-snd/mech/motor-clunk-start.aiff -share/boodler/boodler-snd/mech/motor-clunk-run.aiff -share/boodler/boodler-snd/mech/motor-whine-start.aiff -share/boodler/boodler-snd/mech/motor-whine-run.aiff -share/boodler/boodler-snd/mech/ziplash-high.aiff -share/boodler/boodler-snd/mech/ziplash-low.aiff -share/boodler/boodler-snd/mech/electrical-arc.aiff -share/boodler/boodler-snd/mech/clock-cuckoo.aiff -share/boodler/boodler-snd/mech/field-whistle.aiff -share/boodler/boodler-snd/mech/telephone-ring-old.aiff -share/boodler/boodler-snd/mech/keyboard-1.aiff -share/boodler/boodler-snd/mech/keyboard-2.aiff -share/boodler/boodler-snd/mech/keyboard-3.aiff -share/boodler/boodler-snd/mech/keyboard-4.aiff -share/boodler/boodler-snd/mech/keyboard-5.aiff -share/boodler/boodler-snd/mech/typewriter-elec-3.aiff -share/boodler/boodler-snd/mech/typewriter-elec-4.aiff -share/boodler/boodler-snd/mech/typewriter-elec-5.aiff -share/boodler/boodler-snd/mech/leather-squeak.aiff -share/boodler/boodler-snd/mech/typewriter-elec-1.aiff -share/boodler/boodler-snd/mech/typewriter-elec-2.aiff -share/boodler/boodler-snd/mech/door-slam.aiff -share/boodler/boodler-snd/mech/metal-clack.aiff -share/boodler/boodler-snd/mech/metal-clash.aiff -share/boodler/boodler-snd/mech/paper-shuffle.aiff -share/boodler/boodler-snd/mech/glass-breaking.aiff -share/boodler/boodler-snd/mech/glass-breaking-reverb.aiff -share/boodler/boodler-snd/mech/glass-breaking-short-reverb.aiff -@dirrm share/boodler/boodler-snd/mech -share/boodler/boodler-snd/README -share/boodler/boodler-snd/transport/railroad-bell.aiff -share/boodler/boodler-snd/transport/buoy-low.aiff -share/boodler/boodler-snd/transport/buoy-high.aiff -share/boodler/boodler-snd/transport/buoy-sharp.aiff -share/boodler/boodler-snd/transport/airhorn-1.aiff -share/boodler/boodler-snd/transport/airhorn-2.aiff -share/boodler/boodler-snd/transport/boathorn-long.aiff -share/boodler/boodler-snd/transport/README -share/boodler/boodler-snd/transport/car-pass-1.aiff -share/boodler/boodler-snd/transport/car-pass-2.aiff -share/boodler/boodler-snd/transport/railcar.aiff -share/boodler/boodler-snd/transport/railcar-low.aiff -share/boodler/boodler-snd/transport/railroad-bell-soft.aiff -share/boodler/boodler-snd/transport/railcar-fast.aiff -share/boodler/boodler-snd/transport/siren-far.aiff -share/boodler/boodler-snd/transport/airhorn-high.aiff -share/boodler/boodler-snd/transport/carhorn-nasal.aiff -share/boodler/boodler-snd/transport/carhorn-reedy.aiff -share/boodler/boodler-snd/transport/carhorn-thick.aiff -share/boodler/boodler-snd/transport/footsteps-leaves-1.aiff -share/boodler/boodler-snd/transport/footsteps-leaves-2.aiff -share/boodler/boodler-snd/transport/footsteps-gravel-1.aiff -share/boodler/boodler-snd/transport/footsteps-gravel-2.aiff -share/boodler/boodler-snd/transport/footstep-echo-1.aiff -share/boodler/boodler-snd/transport/footstep-echo-2.aiff -share/boodler/boodler-snd/transport/footstep-echo-3.aiff -share/boodler/boodler-snd/transport/footstep-echo-4.aiff -@dirrm share/boodler/boodler-snd/transport -share/boodler/boodler-snd/electro/zaptrill-fade.aiff -share/boodler/boodler-snd/electro/zaptrill-down.aiff -share/boodler/boodler-snd/electro/zaptrill-up.aiff -share/boodler/boodler-snd/electro/tweedle-tune.aiff -share/boodler/boodler-snd/electro/README -share/boodler/boodler-snd/electro/zipfoom.aiff -@dirrm share/boodler/boodler-snd/electro -share/boodler/boodler-snd/animal/frog-cheep.aiff -share/boodler/boodler-snd/animal/README -share/boodler/boodler-snd/animal/frog-bullfrog1.aiff -share/boodler/boodler-snd/animal/frog-bullfrog2.aiff -share/boodler/boodler-snd/animal/frog-bullfrog3.aiff -@dirrm share/boodler/boodler-snd/animal -@dirrm share/boodler/boodler-snd -@dirrm share/boodler +%%DATADIR%%/boodle/__init__.py +%%DATADIR%%/boodle/__init__.pyc +%%DATADIR%%/boodle/__init__.pyo +%%DATADIR%%/boodle/agent.py +%%DATADIR%%/boodle/agent.pyc +%%DATADIR%%/boodle/agent.pyo +%%DATADIR%%/boodle/cboodle.so +%%DATADIR%%/boodle/generator.py +%%DATADIR%%/boodle/generator.pyc +%%DATADIR%%/boodle/generator.pyo +%%DATADIR%%/boodle/listen.py +%%DATADIR%%/boodle/listen.pyc +%%DATADIR%%/boodle/listen.pyo +%%DATADIR%%/boodle/music.py +%%DATADIR%%/boodle/music.pyc +%%DATADIR%%/boodle/music.pyo +%%DATADIR%%/boodle/sample.py +%%DATADIR%%/boodle/sample.pyc +%%DATADIR%%/boodle/sample.pyo +%%DATADIR%%/boodle/stereo.py +%%DATADIR%%/boodle/stereo.pyc +%%DATADIR%%/boodle/stereo.pyo +%%DATADIR%%/boodler-snd/README +%%DATADIR%%/boodler-snd/animal/README +%%DATADIR%%/boodler-snd/animal/frog-bullfrog1.aiff +%%DATADIR%%/boodler-snd/animal/frog-bullfrog2.aiff +%%DATADIR%%/boodler-snd/animal/frog-bullfrog3.aiff +%%DATADIR%%/boodler-snd/animal/frog-cheep.aiff +%%DATADIR%%/boodler-snd/bird/README +%%DATADIR%%/boodler-snd/bird/crow1.aiff +%%DATADIR%%/boodler-snd/bird/crow2.aiff +%%DATADIR%%/boodler-snd/bird/crow3.aiff +%%DATADIR%%/boodler-snd/bird/crow4.aiff +%%DATADIR%%/boodler-snd/bird/rooster.aiff +%%DATADIR%%/boodler-snd/electro/README +%%DATADIR%%/boodler-snd/electro/tweedle-tune.aiff +%%DATADIR%%/boodler-snd/electro/zaptrill-down.aiff +%%DATADIR%%/boodler-snd/electro/zaptrill-fade.aiff +%%DATADIR%%/boodler-snd/electro/zaptrill-up.aiff +%%DATADIR%%/boodler-snd/electro/zipfoom.aiff +%%DATADIR%%/boodler-snd/environ/README +%%DATADIR%%/boodler-snd/environ/droplet-bloink.aiff +%%DATADIR%%/boodler-snd/environ/droplet-plink-reverb-2.aiff +%%DATADIR%%/boodler-snd/environ/droplet-plink-reverb-3.aiff +%%DATADIR%%/boodler-snd/environ/droplet-plink-reverb.aiff +%%DATADIR%%/boodler-snd/environ/droplet-plink.aiff +%%DATADIR%%/boodler-snd/environ/fire-small.aiff +%%DATADIR%%/boodler-snd/environ/heartbeat-low.aiff +%%DATADIR%%/boodler-snd/environ/heartbeat.aiff +%%DATADIR%%/boodler-snd/environ/rain-heavy.aiff +%%DATADIR%%/boodler-snd/environ/rain-med.aiff +%%DATADIR%%/boodler-snd/environ/rain-on-leaves.aiff +%%DATADIR%%/boodler-snd/environ/rain-splashy-low.aiff +%%DATADIR%%/boodler-snd/environ/rain-splashy.aiff +%%DATADIR%%/boodler-snd/environ/rain-splatter.aiff +%%DATADIR%%/boodler-snd/environ/rain-thin.aiff +%%DATADIR%%/boodler-snd/environ/thunder-low-1.aiff +%%DATADIR%%/boodler-snd/environ/thunder-low-2.aiff +%%DATADIR%%/boodler-snd/environ/thunder-low.aiff +%%DATADIR%%/boodler-snd/environ/thunder-tense.aiff +%%DATADIR%%/boodler-snd/environ/water-bubbling.aiff +%%DATADIR%%/boodler-snd/environ/water-pouring.aiff +%%DATADIR%%/boodler-snd/environ/water-rapids.aiff +%%DATADIR%%/boodler-snd/environ/water-rushing.aiff +%%DATADIR%%/boodler-snd/environ/water-trickle.aiff +%%DATADIR%%/boodler-snd/environ/waves-floopy.aiff +%%DATADIR%%/boodler-snd/environ/waves-lapping.aiff +%%DATADIR%%/boodler-snd/environ/waves-light.aiff +%%DATADIR%%/boodler-snd/environ/waves-rough.aiff +%%DATADIR%%/boodler-snd/environ/wind-far.aiff +%%DATADIR%%/boodler-snd/environ/wind-gust-1.aiff +%%DATADIR%%/boodler-snd/environ/wind-gust-2.aiff +%%DATADIR%%/boodler-snd/environ/wind-gust-3.aiff +%%DATADIR%%/boodler-snd/environ/wind-gust.aiff +%%DATADIR%%/boodler-snd/environ/wind-hard.aiff +%%DATADIR%%/boodler-snd/environ/wind-heavy.aiff +%%DATADIR%%/boodler-snd/environ/wind-steady.aiff +%%DATADIR%%/boodler-snd/insect/README +%%DATADIR%%/boodler-snd/insect/bee-swarm.aiff +%%DATADIR%%/boodler-snd/insect/complex_trilling_trig.aiff +%%DATADIR%%/boodler-snd/insect/everglades_conehead.aiff +%%DATADIR%%/boodler-snd/insect/fastcalling_tree_cricket.aiff +%%DATADIR%%/boodler-snd/insect/house_cricket.aiff +%%DATADIR%%/boodler-snd/insect/jamaican_field_cricket.aiff +%%DATADIR%%/boodler-snd/insect/japanese_burrowing_cricket.aiff +%%DATADIR%%/boodler-snd/insect/melodious_ground_cricket.aiff +%%DATADIR%%/boodler-snd/insect/pine_tree_cricket.aiff +%%DATADIR%%/boodler-snd/insect/robust_shieldback.aiff +%%DATADIR%%/boodler-snd/insect/sand_field_cricket.aiff +%%DATADIR%%/boodler-snd/insect/seashore_meadow_katydid.aiff +%%DATADIR%%/boodler-snd/insect/slightly_musical_conehead.aiff +%%DATADIR%%/boodler-snd/insect/southern_ground_cricket.aiff +%%DATADIR%%/boodler-snd/insect/syncopated_scaly_cricket.aiff +%%DATADIR%%/boodler-snd/insect/texas_meadow_katydid.aiff +%%DATADIR%%/boodler-snd/insect/tinking_trig.aiff +%%DATADIR%%/boodler-snd/insect/tinkling_ground_cricket.aiff +%%DATADIR%%/boodler-snd/insect/tropical_house_cricket.aiff +%%DATADIR%%/boodler-snd/insect/vocal_field_cricket.aiff +%%DATADIR%%/boodler-snd/mech/README +%%DATADIR%%/boodler-snd/mech/alarm-bell.aiff +%%DATADIR%%/boodler-snd/mech/clock-bong.aiff +%%DATADIR%%/boodler-snd/mech/clock-chime.aiff +%%DATADIR%%/boodler-snd/mech/clock-clang.aiff +%%DATADIR%%/boodler-snd/mech/clock-cuckoo.aiff +%%DATADIR%%/boodler-snd/mech/clock-tick.aiff +%%DATADIR%%/boodler-snd/mech/cork-pop.aiff +%%DATADIR%%/boodler-snd/mech/door-slam.aiff +%%DATADIR%%/boodler-snd/mech/electrical-arc.aiff +%%DATADIR%%/boodler-snd/mech/field-whistle.aiff +%%DATADIR%%/boodler-snd/mech/glass-breaking-reverb.aiff +%%DATADIR%%/boodler-snd/mech/glass-breaking-short-reverb.aiff +%%DATADIR%%/boodler-snd/mech/glass-breaking.aiff +%%DATADIR%%/boodler-snd/mech/keyboard-1.aiff +%%DATADIR%%/boodler-snd/mech/keyboard-2.aiff +%%DATADIR%%/boodler-snd/mech/keyboard-3.aiff +%%DATADIR%%/boodler-snd/mech/keyboard-4.aiff +%%DATADIR%%/boodler-snd/mech/keyboard-5.aiff +%%DATADIR%%/boodler-snd/mech/leather-squeak.aiff +%%DATADIR%%/boodler-snd/mech/metal-clack.aiff +%%DATADIR%%/boodler-snd/mech/metal-clash.aiff +%%DATADIR%%/boodler-snd/mech/motor-clunk-run.aiff +%%DATADIR%%/boodler-snd/mech/motor-clunk-start.aiff +%%DATADIR%%/boodler-snd/mech/motor-whine-run.aiff +%%DATADIR%%/boodler-snd/mech/motor-whine-start.aiff +%%DATADIR%%/boodler-snd/mech/paper-shuffle.aiff +%%DATADIR%%/boodler-snd/mech/piledriver.aiff +%%DATADIR%%/boodler-snd/mech/telephone-busy.aiff +%%DATADIR%%/boodler-snd/mech/telephone-hang-up.aiff +%%DATADIR%%/boodler-snd/mech/telephone-pick-up.aiff +%%DATADIR%%/boodler-snd/mech/telephone-ring-old.aiff +%%DATADIR%%/boodler-snd/mech/typewriter-elec-1.aiff +%%DATADIR%%/boodler-snd/mech/typewriter-elec-2.aiff +%%DATADIR%%/boodler-snd/mech/typewriter-elec-3.aiff +%%DATADIR%%/boodler-snd/mech/typewriter-elec-4.aiff +%%DATADIR%%/boodler-snd/mech/typewriter-elec-5.aiff +%%DATADIR%%/boodler-snd/mech/ziplash-high.aiff +%%DATADIR%%/boodler-snd/mech/ziplash-low.aiff +%%DATADIR%%/boodler-snd/percussion/README +%%DATADIR%%/boodler-snd/percussion/bell-dinner.aiff +%%DATADIR%%/boodler-snd/percussion/bell-high-pure.aiff +%%DATADIR%%/boodler-snd/percussion/bell-high-shake.aiff +%%DATADIR%%/boodler-snd/percussion/chinese-gong.aiff +%%DATADIR%%/boodler-snd/percussion/drum-echoey.aiff +%%DATADIR%%/boodler-snd/percussion/hihat-thin.wav +%%DATADIR%%/boodler-snd/percussion/hihat-wide.wav +%%DATADIR%%/boodler-snd/percussion/kickdrum-hissy.wav +%%DATADIR%%/boodler-snd/percussion/kickdrum-low.wav +%%DATADIR%%/boodler-snd/percussion/kickdrum-sharp.wav +%%DATADIR%%/boodler-snd/percussion/kickdrum-whap.wav +%%DATADIR%%/boodler-snd/percussion/rattle-harsh.aiff +%%DATADIR%%/boodler-snd/percussion/snare-thinlong.wav +%%DATADIR%%/boodler-snd/percussion/snare-wide.wav +%%DATADIR%%/boodler-snd/percussion/wood-tap-hollow.aiff +%%DATADIR%%/boodler-snd/pure/README +%%DATADIR%%/boodler-snd/pure/null.aiff +%%DATADIR%%/boodler-snd/pure/silence.aiff +%%DATADIR%%/boodler-snd/pure/sine.aiff +%%DATADIR%%/boodler-snd/pure/square.aiff +%%DATADIR%%/boodler-snd/pure/stereotest.aiff +%%DATADIR%%/boodler-snd/pure/triangle.aiff +%%DATADIR%%/boodler-snd/transport/README +%%DATADIR%%/boodler-snd/transport/airhorn-1.aiff +%%DATADIR%%/boodler-snd/transport/airhorn-2.aiff +%%DATADIR%%/boodler-snd/transport/airhorn-high.aiff +%%DATADIR%%/boodler-snd/transport/boathorn-long.aiff +%%DATADIR%%/boodler-snd/transport/buoy-high.aiff +%%DATADIR%%/boodler-snd/transport/buoy-low.aiff +%%DATADIR%%/boodler-snd/transport/buoy-sharp.aiff +%%DATADIR%%/boodler-snd/transport/car-pass-1.aiff +%%DATADIR%%/boodler-snd/transport/car-pass-2.aiff +%%DATADIR%%/boodler-snd/transport/carhorn-nasal.aiff +%%DATADIR%%/boodler-snd/transport/carhorn-reedy.aiff +%%DATADIR%%/boodler-snd/transport/carhorn-thick.aiff +%%DATADIR%%/boodler-snd/transport/footstep-echo-1.aiff +%%DATADIR%%/boodler-snd/transport/footstep-echo-2.aiff +%%DATADIR%%/boodler-snd/transport/footstep-echo-3.aiff +%%DATADIR%%/boodler-snd/transport/footstep-echo-4.aiff +%%DATADIR%%/boodler-snd/transport/footsteps-gravel-1.aiff +%%DATADIR%%/boodler-snd/transport/footsteps-gravel-2.aiff +%%DATADIR%%/boodler-snd/transport/footsteps-leaves-1.aiff +%%DATADIR%%/boodler-snd/transport/footsteps-leaves-2.aiff +%%DATADIR%%/boodler-snd/transport/railcar-fast.aiff +%%DATADIR%%/boodler-snd/transport/railcar-low.aiff +%%DATADIR%%/boodler-snd/transport/railcar.aiff +%%DATADIR%%/boodler-snd/transport/railroad-bell-soft.aiff +%%DATADIR%%/boodler-snd/transport/railroad-bell.aiff +%%DATADIR%%/boodler-snd/transport/siren-far.aiff +%%DATADIR%%/boodler-snd/voice/README +%%DATADIR%%/boodler-snd/voice/hooray.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/README +%%DATADIR%%/boodler-snd/voice/phoneme/aa.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ae.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ah.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ao.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/aw.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ax.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ay.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/b.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ch.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/d.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/dh.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/eh.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/er.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ey.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/f.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/g.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/hh.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ih.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/iy.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/j.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/k.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/l.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/m.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/n.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ng.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/ow.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/oy.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/p.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/r.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/s.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/sh.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/t.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/th.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/uh.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/uw.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/v.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/w.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/wh.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/y.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/yu.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/z.aiff +%%DATADIR%%/boodler-snd/voice/phoneme/zh.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/1.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/10.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/11.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/12.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/13.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/14.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/15.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/16.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/17.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/18.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/19.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/2.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/20.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/3.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/30.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/4.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/40.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/5.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/50.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/6.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/7.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/8.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/9.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/README +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/and.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/exactly.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/oclock.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/oh.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/second.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/seconds.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/male-harsh/the_time_is.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/1.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/10.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/11.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/12.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/13.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/14.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/15.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/16.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/17.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/18.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/19.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/2.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/20.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/3.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/30.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/4.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/40.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/5.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/50.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/6.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/7.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/8.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/9.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/README +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/and.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/exactly.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/oclock.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/oh.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/second.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/seconds.aiff +%%DATADIR%%/boodler-snd/voice/timespeak/zarf/the_time_is.aiff +%%DATADIR%%/boodler-snd/voice/z-baa-proc.aiff +%%DATADIR%%/boodler.py +%%DATADIR%%/effects/README +%%DATADIR%%/effects/blop.py +%%DATADIR%%/effects/blop.pyc +%%DATADIR%%/effects/blop.pyo +%%DATADIR%%/effects/cavepool.py +%%DATADIR%%/effects/cavepool.pyc +%%DATADIR%%/effects/cavepool.pyo +%%DATADIR%%/effects/clock.py +%%DATADIR%%/effects/clock.pyc +%%DATADIR%%/effects/clock.pyo +%%DATADIR%%/effects/cricket.py +%%DATADIR%%/effects/cricket.pyc +%%DATADIR%%/effects/cricket.pyo +%%DATADIR%%/effects/crows.py +%%DATADIR%%/effects/crows.pyc +%%DATADIR%%/effects/crows.pyo +%%DATADIR%%/effects/drumbeat.py +%%DATADIR%%/effects/drumbeat.pyc +%%DATADIR%%/effects/drumbeat.pyo +%%DATADIR%%/effects/endless.py +%%DATADIR%%/effects/endless.pyc +%%DATADIR%%/effects/endless.pyo +%%DATADIR%%/effects/fire.py +%%DATADIR%%/effects/fire.pyc +%%DATADIR%%/effects/fire.pyo +%%DATADIR%%/effects/frogs.py +%%DATADIR%%/effects/frogs.pyc +%%DATADIR%%/effects/frogs.pyo +%%DATADIR%%/effects/gregor.py +%%DATADIR%%/effects/gregor.pyc +%%DATADIR%%/effects/gregor.pyo +%%DATADIR%%/effects/hardhat.py +%%DATADIR%%/effects/hardhat.pyc +%%DATADIR%%/effects/hardhat.pyo +%%DATADIR%%/effects/heartbeat.py +%%DATADIR%%/effects/heartbeat.pyc +%%DATADIR%%/effects/heartbeat.pyo +%%DATADIR%%/effects/journey.py +%%DATADIR%%/effects/journey.pyc +%%DATADIR%%/effects/journey.pyo +%%DATADIR%%/effects/listen.py +%%DATADIR%%/effects/listen.pyc +%%DATADIR%%/effects/listen.pyo +%%DATADIR%%/effects/manager.py +%%DATADIR%%/effects/manager.pyc +%%DATADIR%%/effects/manager.pyo +%%DATADIR%%/effects/office.py +%%DATADIR%%/effects/office.pyc +%%DATADIR%%/effects/office.pyo +%%DATADIR%%/effects/owstorm.py +%%DATADIR%%/effects/owstorm.pyc +%%DATADIR%%/effects/owstorm.pyo +%%DATADIR%%/effects/play.py +%%DATADIR%%/effects/play.pyc +%%DATADIR%%/effects/play.pyo +%%DATADIR%%/effects/pwrain.py +%%DATADIR%%/effects/pwrain.pyc +%%DATADIR%%/effects/pwrain.pyo +%%DATADIR%%/effects/snazz.py +%%DATADIR%%/effects/snazz.pyc +%%DATADIR%%/effects/snazz.pyo +%%DATADIR%%/effects/stoner.py +%%DATADIR%%/effects/stoner.pyc +%%DATADIR%%/effects/stoner.pyo +%%DATADIR%%/effects/timespeak.py +%%DATADIR%%/effects/timespeak.pyc +%%DATADIR%%/effects/timespeak.pyo +%%DATADIR%%/effects/wind.py +%%DATADIR%%/effects/wind.pyc +%%DATADIR%%/effects/wind.pyo %%PORTDOCS%%%%DOCSDIR%%/catalog.html %%PORTDOCS%%%%DOCSDIR%%/design-basics.html %%PORTDOCS%%%%DOCSDIR%%/design-channel.html @@ -367,4 +379,3 @@ share/boodler/boodler-snd/animal/frog-bu %%PORTDOCS%%%%DOCSDIR%%/name.html %%PORTDOCS%%%%DOCSDIR%%/use.html %%PORTDOCS%%%%DOCSDIR%%/version.html -%%PORTDOCS%%@dirrm share/doc/boodler From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 16:12:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B9E9A708; Sun, 5 Oct 2014 16:12:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C611A08; Sun, 5 Oct 2014 16:12:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95GC5d7072734; Sun, 5 Oct 2014 16:12:05 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95GC4H5072731; Sun, 5 Oct 2014 16:12:04 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410051612.s95GC4H5072731@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 5 Oct 2014 16:12:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370095 - in head/net/smbldap-tools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 16:12:05 -0000 Author: riggs Date: Sun Oct 5 16:12:04 2014 New Revision: 370095 URL: https://svnweb.freebsd.org/changeset/ports/370095 QAT: https://qat.redports.org/buildarchive/r370095/ Log: - Fix build failure with pod2man 2.5+ - Bump PORTREVISION While on it: - Add NO_ARCH (port does not install arch dependent files) - Clean up pkg-plis PR: 193208 Submitted by: spil.oss@gmail.com (PR), dewayne@heuristicsystems.com.au (patch) MFH: 2014Q4 Added: head/net/smbldap-tools/files/smbldap-config.pl (contents, props changed) Modified: head/net/smbldap-tools/Makefile head/net/smbldap-tools/pkg-plist Modified: head/net/smbldap-tools/Makefile ============================================================================== --- head/net/smbldap-tools/Makefile Sun Oct 5 16:04:16 2014 (r370094) +++ head/net/smbldap-tools/Makefile Sun Oct 5 16:12:04 2014 (r370095) @@ -3,6 +3,7 @@ PORTNAME= smbldap-tools PORTVERSION= 0.9.10 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://download.gna.org/smbldap-tools/sources/${PORTVERSION}/ @@ -24,6 +25,8 @@ USES= gmake perl5 GNU_CONFIGURE= yes ALL_TARGET= build +NO_ARCH= yes + PORTDOCS= * OPTIONS_DEFINE= MIGRATION_SCRIPTS PDF_DOC DOCS Added: head/net/smbldap-tools/files/smbldap-config.pl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/smbldap-tools/files/smbldap-config.pl Sun Oct 5 16:12:04 2014 (r370095) @@ -0,0 +1,7 @@ + +############################################################ + +=head1 NAME + +=cut + Modified: head/net/smbldap-tools/pkg-plist ============================================================================== --- head/net/smbldap-tools/pkg-plist Sun Oct 5 16:04:16 2014 (r370094) +++ head/net/smbldap-tools/pkg-plist Sun Oct 5 16:12:04 2014 (r370095) @@ -19,4 +19,3 @@ sbin/smbldap-usershow @sample %%ETCDIR%%/smbldap.conf.sample @sample %%ETCDIR%%/smbldap_bind.conf.sample %%SITE_PERL%%/smbldap_tools.pm -@dirrmtry %%ETCDIR%% From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 17:11:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41E5D2A7; Sun, 5 Oct 2014 17:11:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13FEBEC9; Sun, 5 Oct 2014 17:11:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95HB5w0098145; Sun, 5 Oct 2014 17:11:05 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95HB5gt098141; Sun, 5 Oct 2014 17:11:05 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201410051711.s95HB5gt098141@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Sun, 5 Oct 2014 17:11:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370096 - in head/net-im: . py-nbxmpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 17:11:06 -0000 Author: rm Date: Sun Oct 5 17:11:04 2014 New Revision: 370096 URL: https://svnweb.freebsd.org/changeset/ports/370096 QAT: https://qat.redports.org/buildarchive/r370096/ Log: The goal of this python library is to provide a way for python applications to use Jabber/XMPP networks in a non-blocking way. This library is initialy a fork of xmpppy one, but using non-blocking sockets. WWW: https://python-nbxmpp.gajim.org/ Added: head/net-im/py-nbxmpp/ head/net-im/py-nbxmpp/Makefile (contents, props changed) head/net-im/py-nbxmpp/distinfo (contents, props changed) head/net-im/py-nbxmpp/pkg-descr (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Sun Oct 5 16:12:04 2014 (r370095) +++ head/net-im/Makefile Sun Oct 5 17:11:04 2014 (r370096) @@ -118,6 +118,7 @@ SUBDIR += py-jabber SUBDIR += py-jabberbot SUBDIR += py-libturpial + SUBDIR += py-nbxmpp SUBDIR += py-punjab SUBDIR += py-pyxmpp SUBDIR += py-skype4py Added: head/net-im/py-nbxmpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-nbxmpp/Makefile Sun Oct 5 17:11:04 2014 (r370096) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= nbxmpp +PORTVERSION= 0.5.1 +CATEGORIES= net-im devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= rm@FreeBSD.org +COMMENT= Non blocking Jabber/XMPP module + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openssl>0:${PORTSDIR}/security/py-openssl \ + ${PYTHON_PKGNAMEPREFIX}zope.interface>0:${PORTSDIR}/devel/py-zope.interface + +USES= python twisted:run +USE_PYTHON= autoplist distutils + +.include Added: head/net-im/py-nbxmpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-nbxmpp/distinfo Sun Oct 5 17:11:04 2014 (r370096) @@ -0,0 +1,2 @@ +SHA256 (nbxmpp-0.5.1.tar.gz) = fa312db1e912434b60545e6ccd64edb54d00f8afcc04e84d9ffa16e8cbf17ba5 +SIZE (nbxmpp-0.5.1.tar.gz) = 1514900 Added: head/net-im/py-nbxmpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/py-nbxmpp/pkg-descr Sun Oct 5 17:11:04 2014 (r370096) @@ -0,0 +1,5 @@ +The goal of this python library is to provide a way for python applications +to use Jabber/XMPP networks in a non-blocking way. This library is initialy a +fork of xmpppy one, but using non-blocking sockets. + +WWW: https://python-nbxmpp.gajim.org/ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 17:35:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7030F950; Sun, 5 Oct 2014 17:35:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5C279230; Sun, 5 Oct 2014 17:35:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95HZ9T5010479; Sun, 5 Oct 2014 17:35:09 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95HZ95q010478; Sun, 5 Oct 2014 17:35:09 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051735.s95HZ95q010478@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 17:35:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370097 - head/net/ntop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 17:35:09 -0000 Author: tijl Date: Sun Oct 5 17:35:08 2014 New Revision: 370097 URL: https://svnweb.freebsd.org/changeset/ports/370097 QAT: https://qat.redports.org/buildarchive/r370097/ Log: - Replace USE_AUTOTOOLS with USES=autoreconf:build - Remove PTHREAD_LIBS - Don't use SCRIPTS_ENV in post-configure, it is meant for scripts in SCRIPTDIR Modified: head/net/ntop/Makefile Modified: head/net/ntop/Makefile ============================================================================== --- head/net/ntop/Makefile Sun Oct 5 17:11:04 2014 (r370096) +++ head/net/ntop/Makefile Sun Oct 5 17:35:08 2014 (r370097) @@ -22,8 +22,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} \ DBDIR?= /var/db -USES= gmake libtool python -USE_AUTOTOOLS= automake autoconf libtoolize +USES= autoreconf:build gmake libtool python USE_GNOME= libxml2 USE_OPENSSL= yes GNU_CONFIGURE= yes @@ -36,9 +35,8 @@ CONFIGURE_ARGS= --localstatedir=${DBDIR} --with-zlib-root=/usr INSTALL_TARGET= install-strip -CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib -LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CPPFLAGS+= -I${LOCALBASE}/include +LIBS+= -L${LOCALBASE}/lib PKGDEINSTALL= ${WRKDIR}/pkg-deinstall SUB_FILES= pkg-deinstall SUB_LIST= DBDIR=${DBDIR} @@ -91,7 +89,7 @@ CONFIGURE_ARGS+= STRIP=${LOCALBASE}/bin/ .endif pre-configure: - @cd ${WRKSRC} && ${SETENV} ${SCRIPTS_ENV} ${SH} autogen.sh --noconfig + @(cd ${WRKSRC} && ./autogen.sh --noconfig) pre-install: @cd ${WRKSRC} && ${MAKE_CMD} dnetter From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 17:39:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A48AEBB7; Sun, 5 Oct 2014 17:39:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75E6B257; Sun, 5 Oct 2014 17:39:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95Hd921011135; Sun, 5 Oct 2014 17:39:09 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95Hd9fo011133; Sun, 5 Oct 2014 17:39:09 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410051739.s95Hd9fo011133@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 5 Oct 2014 17:39:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370098 - in head/net/smbldap-tools: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 17:39:09 -0000 Author: riggs Date: Sun Oct 5 17:39:08 2014 New Revision: 370098 URL: https://svnweb.freebsd.org/changeset/ports/370098 QAT: https://qat.redports.org/buildarchive/r370098/ Log: - Fix previous commit (r370095), patch is now properly integrated PR: 193208 Submitted by: spil.oss@gmail.com (PR), dewayne@heuristicsystems.com.au (patch) MFH: 2014Q4 Deleted: head/net/smbldap-tools/files/smbldap-config.pl Modified: head/net/smbldap-tools/Makefile head/net/smbldap-tools/files/patch-smbldap-config.pl Modified: head/net/smbldap-tools/Makefile ============================================================================== --- head/net/smbldap-tools/Makefile Sun Oct 5 17:35:08 2014 (r370097) +++ head/net/smbldap-tools/Makefile Sun Oct 5 17:39:08 2014 (r370098) @@ -3,7 +3,7 @@ PORTNAME= smbldap-tools PORTVERSION= 0.9.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://download.gna.org/smbldap-tools/sources/${PORTVERSION}/ Modified: head/net/smbldap-tools/files/patch-smbldap-config.pl ============================================================================== --- head/net/smbldap-tools/files/patch-smbldap-config.pl Sun Oct 5 17:35:08 2014 (r370097) +++ head/net/smbldap-tools/files/patch-smbldap-config.pl Sun Oct 5 17:39:08 2014 (r370098) @@ -1,5 +1,5 @@ ---- smbldap-config.pl.orig 2011-10-13 11:26:12.939953317 +0200 -+++ smbldap-config.pl 2011-10-13 11:27:09.173960781 +0200 +--- smbldap-config.pl.orig 2012-03-05 09:59:44.000000000 +0100 ++++ smbldap-config.pl 2014-10-05 19:32:18.349166265 +0200 @@ -48,7 +48,7 @@ print "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n"; @@ -42,3 +42,14 @@ # comment out the following line to get rid of the default banner # no_banner=\"1\" +@@ -557,3 +557,10 @@ + $mode=0600; + chmod $mode,"$smbldap_bind_conf","$smbldap_bind_conf.old"; + ++ ++############################################################ ++ ++=head1 NAME ++ ++=cut ++ From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 18:01:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64E56F4A; Sun, 5 Oct 2014 18:01:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4D73C6D6; Sun, 5 Oct 2014 18:01:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95I1X5Z023182; Sun, 5 Oct 2014 18:01:33 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95I1K6c023081; Sun, 5 Oct 2014 18:01:20 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051801.s95I1K6c023081@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 18:01:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370099 - in head: Mk/Uses archivers/tardy audio/libnoise devel/bglibs devel/cdialog devel/fhist devel/libdsp devel/libexplain devel/libltdl devel/libmaa devel/libtool devel/libtool/fil... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 18:01:33 -0000 Author: tijl Date: Sun Oct 5 18:01:19 2014 New Revision: 370099 URL: https://svnweb.freebsd.org/changeset/ports/370099 QAT: https://qat.redports.org/buildarchive/r370099/ Log: - Update devel/libtool and devel/libltdl to version 2.4.2.418 - Patch libtool so it uses the same library version specification as on Darwin, Linux and other systems. Given the version current:revision:age a library will be given the extension .so.major.age.revision with major equal to current-age. Before libtool would use .so.current on FreeBSD. - Patch libtoolize to remove two cases of umask 0 that caused libltdl files to be copied world writable (--ltdl option) - Let USES=libtool patch this new version correctly - Adjust all ports with USES=libtool:build and bump PORTREVISION on their dependent ports if a library version changed PR: 194068 Exp-run by: antoine Approved by: portmgr (antoine) Added: head/devel/libtool/Makefile.common (contents, props changed) head/devel/libtool/files/patch-build-aux_ltmain.sh (contents, props changed) head/devel/libtool/files/patch-configure (contents, props changed) head/devel/libtool/files/patch-libtoolize.in (contents, props changed) head/devel/libtool/files/patch-m4_libtool.m4 (contents, props changed) Deleted: head/devel/libtool/files/patch-libltdl-Makefile.in head/devel/libtool/files/patch-libltdl_config_ltmain.sh Modified: head/Mk/Uses/libtool.mk head/archivers/tardy/Makefile head/audio/libnoise/Makefile head/audio/libnoise/pkg-plist head/devel/bglibs/Makefile head/devel/bglibs/pkg-plist head/devel/cdialog/Makefile head/devel/cdialog/pkg-plist head/devel/fhist/Makefile head/devel/libdsp/Makefile head/devel/libdsp/pkg-plist head/devel/libexplain/Makefile head/devel/libexplain/pkg-plist head/devel/libltdl/Makefile head/devel/libltdl/pkg-plist head/devel/libmaa/Makefile head/devel/libtool/Makefile head/devel/libtool/distinfo head/devel/libtool/pkg-plist head/devel/srecord/Makefile head/devel/srecord/pkg-plist head/devel/xparam/Makefile head/devel/xparam/pkg-plist head/dns/dnsutl/Makefile head/ftp/twoftpd/Makefile head/graphics/gexiv2/Makefile head/graphics/gexiv2/pkg-plist head/lang/gforth/Makefile head/lang/gforth/pkg-plist head/lang/oo2c/Makefile head/lang/oo2c/pkg-plist head/mail/mailfront/Makefile head/mail/qmail-autoresponder/Makefile head/mail/qmail-qfilter/Makefile head/math/libtommath/Makefile head/security/cvm/Makefile head/security/cvm/pkg-plist head/security/libtomcrypt/Makefile head/security/libtomcrypt/pkg-plist head/sysutils/ucspi-proxy/Makefile head/sysutils/vii/Makefile head/x11-toolkits/xmhtml/Makefile head/x11-toolkits/xmhtml/pkg-plist Modified: head/Mk/Uses/libtool.mk ============================================================================== --- head/Mk/Uses/libtool.mk Sun Oct 5 17:39:08 2014 (r370098) +++ head/Mk/Uses/libtool.mk Sun Oct 5 18:01:19 2014 (r370099) @@ -40,7 +40,9 @@ patch-libtool: @${FIND} ${WRKDIR} -type f -name ltmain.sh | \ ${XARGS} ${REINPLACE_CMD} \ -e '/if.*linkmode.*prog.*mode.*!= relink/s/if.*;/if :;/'\ + -e '/if.*prog.*linkmode.*relink !=.*mode/s/if.*;/if :;/'\ -e '/if.*linkmode.*prog.*mode.* = relink/s/||.*;/;/' \ + -e '/if.*prog.*linkmode.*relink = .*mode/s/||.*;/;/' \ -e 's/|-p|-pg|/|-B*|-p|-pg|/' .if ! ${libtool_ARGS:Moldver} Modified: head/archivers/tardy/Makefile ============================================================================== --- head/archivers/tardy/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/archivers/tardy/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -4,7 +4,7 @@ PORTNAME= tardy PORTVERSION= 1.28 DISTVERSIONSUFFIX= .D001.orig -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= SF/tardy/${PORTVERSION}/ DISTNAME= ${PORTNAME}_${PORTVERSION}${DISTVERSIONSUFFIX} Modified: head/audio/libnoise/Makefile ============================================================================== --- head/audio/libnoise/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/audio/libnoise/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= libnoise DISTVERSION= 1.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20sources/${PORTVERSION} DISTNAME= ${PORTNAME}src-${DISTVERSION} Modified: head/audio/libnoise/pkg-plist ============================================================================== --- head/audio/libnoise/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/audio/libnoise/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -45,6 +45,7 @@ include/noise/vectortable.h lib/libnoise.a lib/libnoise.so lib/libnoise.so.0 +lib/libnoise.so.0.0.0 @dirrm include/noise/model @dirrm include/noise/module @dirrm include/noise Modified: head/devel/bglibs/Makefile ============================================================================== --- head/devel/bglibs/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/bglibs/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= bglibs PORTVERSION= 1.106 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= http://untroubled.org/${PORTNAME}/archive/ \ Modified: head/devel/bglibs/pkg-plist ============================================================================== --- head/devel/bglibs/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/bglibs/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -100,11 +100,13 @@ lib/bglibs/libbg-path.a lib/bglibs/libbg-str.a lib/bglibs/libbg-sysdeps.a lib/bglibs/libbg-sysdeps.so -lib/bglibs/libbg-sysdeps.so.2 +lib/bglibs/libbg-sysdeps.so.1 +lib/bglibs/libbg-sysdeps.so.1.1.1 lib/bglibs/libbg-unix.a lib/bglibs/libbg.a lib/bglibs/libbg.so -lib/bglibs/libbg.so.2 +lib/bglibs/libbg.so.1 +lib/bglibs/libbg.so.1.1.1 lib/bglibs/libinstaller.a lib/bglibs/libinstcheck.a lib/bglibs/libinstshow.a Modified: head/devel/cdialog/Makefile ============================================================================== --- head/devel/cdialog/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/cdialog/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -2,6 +2,7 @@ PORTNAME= cdialog PORTVERSION= 1.2.20140219 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= devel MASTER_SITES= ftp://invisible-island.net/${PORTNAME:S|^c||}/ Modified: head/devel/cdialog/pkg-plist ============================================================================== --- head/devel/cdialog/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/cdialog/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -7,6 +7,7 @@ include/cdialog/dlg_keys.h lib/libcdialog.a lib/libcdialog.so lib/libcdialog.so.11 +lib/libcdialog.so.11.1.0 man/man1/cdialog.1.gz man/man3/cdialog.3.gz %%PORTEXAMPLES%%%%EXAMPLESDIR%%/README Modified: head/devel/fhist/Makefile ============================================================================== --- head/devel/fhist/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/fhist/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -4,7 +4,7 @@ PORTNAME= fhist PORTVERSION= 1.21 DISTVERSIONSUFFIX= .D001 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} Modified: head/devel/libdsp/Makefile ============================================================================== --- head/devel/libdsp/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libdsp/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= libdsp PORTVERSION= 5.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel audio MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable-src/${PORTVERSION} \ http://mirror.mcx2.org/ Modified: head/devel/libdsp/pkg-plist ============================================================================== --- head/devel/libdsp/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libdsp/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -27,5 +27,6 @@ include/dsp/dspop.h include/dsp/dsptypes.h lib/libdsp.a lib/libdsp.so -lib/libdsp.so.10 +lib/libdsp.so.2 +lib/libdsp.so.2.8.1 @dirrm include/dsp Modified: head/devel/libexplain/Makefile ============================================================================== --- head/devel/libexplain/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libexplain/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= libexplain PORTVERSION= 1.3.${PATCHLEVEL} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTVERSION:R} DISTNAME= ${PORTNAME}-${PORTVERSION:R} Modified: head/devel/libexplain/pkg-plist ============================================================================== --- head/devel/libexplain/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libexplain/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -240,7 +240,8 @@ include/libexplain/write.h include/libexplain/writev.h lib/libexplain.a lib/libexplain.so -lib/libexplain.so.55 +lib/libexplain.so.51 +lib/libexplain.so.51.4.0 libdata/pkgconfig/libexplain.pc man/man1/explain.1.gz man/man1/explain_lca2010.1.gz Modified: head/devel/libltdl/Makefile ============================================================================== --- head/devel/libltdl/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libltdl/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -2,21 +2,20 @@ # $FreeBSD$ PORTNAME= libltdl -MASTERDIR= ${.CURDIR}/../../devel/libtool +PORTREVISION= 0 COMMENT= System independent dlopen wrapper +.include "${.CURDIR}/../libtool/Makefile.common" + LICENSE= LGPL21 -USE_LDCONFIG= yes -USES= libtool:keepla -CONFIGURE_ARGS= --enable-ltdl-install +LICENSE_FILE= ${WRKSRC}/COPYING.LIB -CONFIGURE_WRKSRC=${WRKSRC}/libltdl -BUILD_WRKSRC= ${CONFIGURE_WRKSRC} -INSTALL_WRKSRC= ${CONFIGURE_WRKSRC} -DESCR= ${.CURDIR}/pkg-descr -PLIST= ${.CURDIR}/pkg-plist -INFO= # empty +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-ltdl-install INSTALL_TARGET= install-strip +USES+= libtool:keepla # .la file used in ltdl.m4 +USE_LDCONFIG= yes +WRKSRC_SUBDIR= libltdl -.include "${MASTERDIR}/Makefile" +.include Modified: head/devel/libltdl/pkg-plist ============================================================================== --- head/devel/libltdl/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libltdl/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -6,5 +6,4 @@ lib/libltdl.a lib/libltdl.la lib/libltdl.so lib/libltdl.so.7 -lib/libltdl.so.7.3.0 -@dirrm include/libltdl +lib/libltdl.so.7.3.1 Modified: head/devel/libmaa/Makefile ============================================================================== --- head/devel/libmaa/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libmaa/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= libmaa PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= devel MASTER_SITES= SF/dict/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -27,7 +27,8 @@ DOCS= README doc/libmaa.600dpi.ps PLIST_FILES= include/maa.h \ lib/libmaa.a \ lib/libmaa.so \ - lib/libmaa.so.3 + lib/libmaa.so.3 \ + lib/libmaa.so.3.0.0 PORTDOCS= ${DOCS:T} post-install: Modified: head/devel/libtool/Makefile ============================================================================== --- head/devel/libtool/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libtool/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -1,36 +1,30 @@ # Created by: Motoyuki Kasahara # $FreeBSD$ -PORTNAME?= libtool -PORTVERSION= 2.4.2 -PORTREVISION= 3 -CATEGORIES= devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= libtool -DISTNAME= libtool-${PORTVERSION} +PORTNAME= libtool +PORTREVISION= 0 -MAINTAINER= autotools@FreeBSD.org -COMMENT?= Generic shared library support script +COMMENT= Generic shared library support script -LICENSE?= GPLv2 +.include "${.CURDIR}/../libtool/Makefile.common" -CONFLICTS= libtool-fixed-[0-9]* +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 -USES+= makeinfo GNU_CONFIGURE= yes -CONFIGURE_ARGS?= --disable-ltdl-install -CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" -INFO?= libtool +CONFIGURE_ARGS= --disable-ltdl-install +MAKE_ARGS= MAKEINFOFLAGS=--no-split +USES+= makeinfo -post-extract: - @${RM} -f ${WRKSRC}/doc/*.info* +INFO= libtool post-patch: - @${REINPLACE_CMD} -e 's|sed gsed|sed|g' \ - -e 's|CC=cc|CC=${CC}|g' \ - ${WRKSRC}/configure ${WRKSRC}/libltdl/configure - -post-configure: - @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -f + @${RM} -f ${WRKSRC}/doc/*.info* +.for f in build-aux/ltmain.sh configure libtoolize.in m4/libtool.m4 + @${TOUCH} -mr ${WRKSRC}/${f}.orig ${WRKSRC}/${f} +.endfor .include Added: head/devel/libtool/Makefile.common ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libtool/Makefile.common Sun Oct 5 18:01:19 2014 (r370099) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +PORTVERSION= 2.4.2.418 +PORTREVISION?= 0 # Leave this zero. Set in Makefile instead. +CATEGORIES= devel +MASTER_SITES= GNU_ALPHA/libtool +DISTNAME= libtool-${PORTVERSION} + +MAINTAINER= autotools@FreeBSD.org + +DISTINFO_FILE= ${.CURDIR}/../libtool/distinfo +USES= tar:xz Modified: head/devel/libtool/distinfo ============================================================================== --- head/devel/libtool/distinfo Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libtool/distinfo Sun Oct 5 18:01:19 2014 (r370099) @@ -1,2 +1,2 @@ -SHA256 (libtool-2.4.2.tar.gz) = b38de44862a987293cd3d8dfae1c409d514b6c4e794ebc93648febf9afc38918 -SIZE (libtool-2.4.2.tar.gz) = 2632347 +SHA256 (libtool-2.4.2.418.tar.xz) = 6465c7e6ebb7c9083aa610d510498aadf7be0c6dc5f2f4e57008686879d27d8c +SIZE (libtool-2.4.2.418.tar.xz) = 941808 Added: head/devel/libtool/files/patch-build-aux_ltmain.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libtool/files/patch-build-aux_ltmain.sh Sun Oct 5 18:01:19 2014 (r370099) @@ -0,0 +1,30 @@ +--- build-aux/ltmain.sh.orig 2013-10-26 22:53:58 UTC ++++ build-aux/ltmain.sh +@@ -8598,13 +8598,13 @@ func_mode_link () + # + case $version_type in + # correct linux to gnu/linux during the next big refactor +- darwin|linux|osf|windows|none) ++ darwin|freebsd-elf|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age=$number_minor + revision=$number_revision + ;; +- freebsd-aout|freebsd-elf|qnx|sunos) ++ freebsd-aout|qnx|sunos) + current=$number_major + revision=$number_minor + age=0 +@@ -8690,8 +8690,9 @@ func_mode_link () + ;; + + freebsd-elf) +- major=.$current +- versuffix=.$current ++ func_arith $current - $age ++ major=.$func_arith_result ++ versuffix=$major.$age.$revision + ;; + + irix | nonstopux) Added: head/devel/libtool/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libtool/files/patch-configure Sun Oct 5 18:01:19 2014 (r370099) @@ -0,0 +1,42 @@ +--- configure.orig 2013-10-26 22:53:35 UTC ++++ configure +@@ -11582,7 +11582,8 @@ freebsd* | dragonfly*) + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) +- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' ++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ++ soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; +@@ -16739,7 +16740,8 @@ freebsd* | dragonfly*) + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) +- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' ++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ++ soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; +@@ -19695,7 +19697,8 @@ freebsd* | dragonfly*) + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) +- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' ++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ++ soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; +@@ -22786,7 +22789,8 @@ freebsd* | dragonfly*) + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) +- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' ++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ++ soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; Added: head/devel/libtool/files/patch-libtoolize.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libtool/files/patch-libtoolize.in Sun Oct 5 18:01:19 2014 (r370099) @@ -0,0 +1,34 @@ +--- libtoolize.in.orig 2013-08-23 05:06:01 UTC ++++ libtoolize.in +@@ -393,7 +393,7 @@ func_copy () + # Filters always take priority. + if test -n "$my_filter"; then + if $opt_dry_run || { +- ( umask 0 ++ ( + $SED -e "$my_filter" "$my_srcfile" > "$my_destfile" + ) >/dev/null 2>&1 + } +@@ -423,7 +423,7 @@ func_copy () + $opt_verbose && my_copy_msg="$my_copycmd $my_srcfile $my_destdir" + + if $opt_dry_run || { +- ( umask 0 ++ ( + $my_copycmd "$my_srcfile" "$my_destfile" + ) >/dev/null 2>&1 + } +@@ -1894,9 +1894,10 @@ func_require_seen_libtool () + # Lists of all files libtoolize has ever installed. These are removed + # before installing the latest files when --force was passed to help + # ensure a clean upgrade. +- # Do not remove config.guess nor config.sub, we don't install them +- # without --install, and the project may not be using Automake. +- all_pkgaux_files="compile install-sh depcomp missing ltmain.sh snippet/_Noreturn.h snippet/arg-nonnull.h snippet/c++defs.h snippet/warn-on-use.h" ++ # Do not remove config.guess, config.sub or install-sh, we don't ++ # install them without --install, and the project may not be using ++ # Automake. ++ all_pkgaux_files="compile depcomp missing ltmain.sh snippet/_Noreturn.h snippet/arg-nonnull.h snippet/c++defs.h snippet/warn-on-use.h" + all_pkgmacro_files="argz.m4 libtool.m4 ltdl.m4 ltoptions.m4 ltsugar.m4 ltversion.in ltversion.m4 lt~obsolete.m4" + all_pkgltdl_files="COPYING.LIB Makefile Makefile.in Makefile.inc Makefile.am README acinclude.m4 aclocal.m4 argz_.h argz.c config.h.in config-h.in configure configure.ac configure.in libltdl/lt__alloc.h libltdl/lt__dirent.h libltdl/lt__glibc.h libltdl/lt__private.h libltdl/lt__strl.h libltdl/lt_dlloader.h libltdl/lt_error.h libltdl/lt_system.h libltdl/slist.h loaders/dld_link.c loaders/dlopen.c loaders/dyld.c loaders/load_add_on.c loaders/loadlibrary.c loaders/preopen.c loaders/shl_load.c lt__alloc.c lt__dirent.c lt__strl.c lt_dlloader.c lt_error.c ltdl.c ltdl.h ltdl.mk slist.c" + Added: head/devel/libtool/files/patch-m4_libtool.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libtool/files/patch-m4_libtool.m4 Sun Oct 5 18:01:19 2014 (r370099) @@ -0,0 +1,12 @@ +--- m4/libtool.m4.orig 2013-10-25 23:37:46 UTC ++++ m4/libtool.m4 +@@ -2547,7 +2547,8 @@ freebsd* | dragonfly*) + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) +- library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' ++ library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ++ soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; Modified: head/devel/libtool/pkg-plist ============================================================================== --- head/devel/libtool/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/libtool/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -9,50 +9,45 @@ share/aclocal/ltoptions.m4 share/aclocal/ltsugar.m4 share/aclocal/ltversion.m4 share/aclocal/lt~obsolete.m4 -share/libtool/config/compile -share/libtool/config/config.guess -share/libtool/config/config.sub -share/libtool/config/depcomp -share/libtool/config/install-sh -share/libtool/config/ltmain.sh -share/libtool/config/missing -share/libtool/libltdl/COPYING.LIB -share/libtool/libltdl/Makefile.am -share/libtool/libltdl/Makefile.in -share/libtool/libltdl/Makefile.inc -share/libtool/libltdl/README -share/libtool/libltdl/aclocal.m4 -share/libtool/libltdl/argz.c -share/libtool/libltdl/argz_.h -share/libtool/libltdl/config-h.in -share/libtool/libltdl/configure -share/libtool/libltdl/configure.ac -share/libtool/libltdl/libltdl/lt__alloc.h -share/libtool/libltdl/libltdl/lt__dirent.h -share/libtool/libltdl/libltdl/lt__glibc.h -share/libtool/libltdl/libltdl/lt__private.h -share/libtool/libltdl/libltdl/lt__strl.h -share/libtool/libltdl/libltdl/lt_dlloader.h -share/libtool/libltdl/libltdl/lt_error.h -share/libtool/libltdl/libltdl/lt_system.h -share/libtool/libltdl/libltdl/slist.h -share/libtool/libltdl/loaders/dld_link.c -share/libtool/libltdl/loaders/dlopen.c -share/libtool/libltdl/loaders/dyld.c -share/libtool/libltdl/loaders/load_add_on.c -share/libtool/libltdl/loaders/loadlibrary.c -share/libtool/libltdl/loaders/preopen.c -share/libtool/libltdl/loaders/shl_load.c -share/libtool/libltdl/lt__alloc.c -share/libtool/libltdl/lt__dirent.c -share/libtool/libltdl/lt__strl.c -share/libtool/libltdl/lt_dlloader.c -share/libtool/libltdl/lt_error.c -share/libtool/libltdl/ltdl.c -share/libtool/libltdl/ltdl.h -share/libtool/libltdl/slist.c -@dirrm share/libtool/libltdl/loaders -@dirrm share/libtool/libltdl/libltdl -@dirrm share/libtool/libltdl -@dirrm share/libtool/config -@dirrm share/libtool +%%DATADIR%%/COPYING.LIB +%%DATADIR%%/Makefile.am +%%DATADIR%%/Makefile.in +%%DATADIR%%/README +%%DATADIR%%/aclocal.m4 +%%DATADIR%%/argz.c +%%DATADIR%%/argz_.h +%%DATADIR%%/build-aux/compile +%%DATADIR%%/build-aux/config.guess +%%DATADIR%%/build-aux/config.sub +%%DATADIR%%/build-aux/depcomp +%%DATADIR%%/build-aux/install-sh +%%DATADIR%%/build-aux/ltmain.sh +%%DATADIR%%/build-aux/missing +%%DATADIR%%/config-h.in +%%DATADIR%%/configure +%%DATADIR%%/configure.ac +%%DATADIR%%/libltdl/lt__alloc.h +%%DATADIR%%/libltdl/lt__dirent.h +%%DATADIR%%/libltdl/lt__glibc.h +%%DATADIR%%/libltdl/lt__private.h +%%DATADIR%%/libltdl/lt__strl.h +%%DATADIR%%/libltdl/lt_dlloader.h +%%DATADIR%%/libltdl/lt_error.h +%%DATADIR%%/libltdl/lt_system.h +%%DATADIR%%/libltdl/slist.h +%%DATADIR%%/loaders/dld_link.c +%%DATADIR%%/loaders/dlopen.c +%%DATADIR%%/loaders/dyld.c +%%DATADIR%%/loaders/load_add_on.c +%%DATADIR%%/loaders/loadlibrary.c +%%DATADIR%%/loaders/preopen.c +%%DATADIR%%/loaders/shl_load.c +%%DATADIR%%/lt__alloc.c +%%DATADIR%%/lt__dirent.c +%%DATADIR%%/lt__strl.c +%%DATADIR%%/lt_dlloader.c +%%DATADIR%%/lt_error.c +%%DATADIR%%/ltdl.c +%%DATADIR%%/ltdl.h +%%DATADIR%%/ltdl.mk +%%DATADIR%%/slist.c Modified: head/devel/srecord/Makefile ============================================================================== --- head/devel/srecord/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/srecord/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= srecord PORTVERSION= 1.64 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= SF Modified: head/devel/srecord/pkg-plist ============================================================================== --- head/devel/srecord/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/srecord/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -143,6 +143,7 @@ include/srecord/string.h lib/libsrecord.a lib/libsrecord.so lib/libsrecord.so.0 +lib/libsrecord.so.0.0.0 libdata/pkgconfig/srecord.pc man/man1/srec_cat.1.gz man/man1/srec_cmp.1.gz Modified: head/devel/xparam/Makefile ============================================================================== --- head/devel/xparam/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/xparam/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= xparam PORTVERSION= 1.22 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= SF Modified: head/devel/xparam/pkg-plist ============================================================================== --- head/devel/xparam/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/devel/xparam/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -84,4 +84,4 @@ include/xparam_extend.h lib/libxparam.a lib/libxparam.so lib/libxparam.so.1 -@dirrm include/xparam +lib/libxparam.so.1.0.0 Modified: head/dns/dnsutl/Makefile ============================================================================== --- head/dns/dnsutl/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/dns/dnsutl/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,6 +3,7 @@ PORTNAME= dnsutl PORTVERSION= 1.12 +PORTREVISION= 1 CATEGORIES= dns MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} Modified: head/ftp/twoftpd/Makefile ============================================================================== --- head/ftp/twoftpd/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/ftp/twoftpd/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,6 +3,7 @@ PORTNAME= twoftpd PORTVERSION= 1.42 +PORTREVISION= 1 CATEGORIES= ftp MASTER_SITES= http://untroubled.org/${PORTNAME}/ Modified: head/graphics/gexiv2/Makefile ============================================================================== --- head/graphics/gexiv2/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/graphics/gexiv2/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= gexiv2 PORTVERSION= 0.6.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= http://yorba.org/download/${PORTNAME}/${PORTVERSION:R}/ DISTNAME= lib${PORTNAME}_${PORTVERSION} Modified: head/graphics/gexiv2/pkg-plist ============================================================================== --- head/graphics/gexiv2/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/graphics/gexiv2/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -5,11 +5,9 @@ include/gexiv2/gexiv2-managed-stream.h include/gexiv2/gexiv2-preview-properties.h include/gexiv2/gexiv2-preview-image.h include/gexiv2/gexiv2-startup.h -lib/libgexiv2.so.2 -lib/libgexiv2.so lib/libgexiv2.a +lib/libgexiv2.so +lib/libgexiv2.so.2 +lib/libgexiv2.so.2.0.0 libdata/pkgconfig/gexiv2.pc share/vala/vapi/gexiv2.vapi -@dirrmtry include/gexiv2 -@dirrmtry share/vala/vapi -@dirrmtry share/vala Modified: head/lang/gforth/Makefile ============================================================================== --- head/lang/gforth/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/lang/gforth/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= gforth PORTVERSION= 0.7.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= http://www.complang.tuwien.ac.at/forth/gforth/ \ GNU Modified: head/lang/gforth/pkg-plist ============================================================================== --- head/lang/gforth/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/lang/gforth/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -12,18 +12,22 @@ include/gforth/%%PORTVERSION%%/config.h include/gforth/%%PORTVERSION%%/libcc.h lib/gforth/%%PORTVERSION%%/gforth-ditc lib/gforth/%%PORTVERSION%%/gforth.fi -lib/gforth/%%PORTVERSION%%/libcc-named/cstr.so.0 -lib/gforth/%%PORTVERSION%%/libcc-named/cstr.so lib/gforth/%%PORTVERSION%%/libcc-named/cstr.a -lib/gforth/%%PORTVERSION%%/libcc-named/socket.so.0 -lib/gforth/%%PORTVERSION%%/libcc-named/socket.so +lib/gforth/%%PORTVERSION%%/libcc-named/cstr.so +lib/gforth/%%PORTVERSION%%/libcc-named/cstr.so.0 +lib/gforth/%%PORTVERSION%%/libcc-named/cstr.so.0.0.0 lib/gforth/%%PORTVERSION%%/libcc-named/socket.a -lib/gforth/%%PORTVERSION%%/libcc-named/libffi.so.0 -lib/gforth/%%PORTVERSION%%/libcc-named/libffi.so +lib/gforth/%%PORTVERSION%%/libcc-named/socket.so +lib/gforth/%%PORTVERSION%%/libcc-named/socket.so.0 +lib/gforth/%%PORTVERSION%%/libcc-named/socket.so.0.0.0 lib/gforth/%%PORTVERSION%%/libcc-named/libffi.a -lib/gforth/%%PORTVERSION%%/libcc-named/fflib.so.0 -lib/gforth/%%PORTVERSION%%/libcc-named/fflib.so +lib/gforth/%%PORTVERSION%%/libcc-named/libffi.so +lib/gforth/%%PORTVERSION%%/libcc-named/libffi.so.0 +lib/gforth/%%PORTVERSION%%/libcc-named/libffi.so.0.0.0 lib/gforth/%%PORTVERSION%%/libcc-named/fflib.a +lib/gforth/%%PORTVERSION%%/libcc-named/fflib.so +lib/gforth/%%PORTVERSION%%/libcc-named/fflib.so.0 +lib/gforth/%%PORTVERSION%%/libcc-named/fflib.so.0.0.0 man/man1/gforth.1.gz %%DATADIR%%/%%PORTVERSION%%/TAGS %%DATADIR%%/%%PORTVERSION%%/add.fs Modified: head/lang/oo2c/Makefile ============================================================================== --- head/lang/oo2c/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/lang/oo2c/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= oo2c PORTVERSION= 2.1.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= SF/ooc/ooc2/${PORTVERSION} DISTNAME= ${PORTNAME}_${BITS}-${PORTVERSION} Modified: head/lang/oo2c/pkg-plist ============================================================================== --- head/lang/oo2c/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/lang/oo2c/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -10,6 +10,7 @@ man/man1/oowhereis.1.gz lib/liboo2c.a lib/liboo2c.so lib/liboo2c.so.3 +lib/liboo2c.so.3.0.0 lib/oo2c/emacs/o2-default.el lib/oo2c/emacs/o2-indent.el lib/oo2c/emacs/o2-insert.el Modified: head/mail/mailfront/Makefile ============================================================================== --- head/mail/mailfront/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/mail/mailfront/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,6 +3,7 @@ PORTNAME= mailfront PORTVERSION= 2.01 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://untroubled.org/${PORTNAME}/ \ http://untroubled.org/${PORTNAME}/archive/ Modified: head/mail/qmail-autoresponder/Makefile ============================================================================== --- head/mail/qmail-autoresponder/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/mail/qmail-autoresponder/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= qmail-autoresponder PORTVERSION= 0.97 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://untroubled.org/${PORTNAME}/ Modified: head/mail/qmail-qfilter/Makefile ============================================================================== --- head/mail/qmail-qfilter/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/mail/qmail-qfilter/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= qmail-qfilter PORTVERSION= 2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= http://untroubled.org/${PORTNAME}/ Modified: head/math/libtommath/Makefile ============================================================================== --- head/math/libtommath/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/math/libtommath/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -2,7 +2,7 @@ PORTNAME= libtommath PORTVERSION= 0.42.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= http://libtom.org/files/ DISTNAME= ltm-${PORTVERSION} @@ -31,7 +31,7 @@ post-patch: .if ${PORT_OPTIONS:MSHARED} USES+= libtool:build USE_LDCONFIG= yes -PLIST_FILES+= lib/libtommath.so.0 lib/libtommath.so +PLIST_FILES+= lib/libtommath.so lib/libtommath.so.0 lib/libtommath.so.0.0.41 MAKEFILE= makefile.shared .else MAKEFILE= makefile Modified: head/security/cvm/Makefile ============================================================================== --- head/security/cvm/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/security/cvm/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= cvm PORTVERSION= 0.96 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://untroubled.org/${PORTNAME}/ \ http://untroubled.org/${PORTNAME}/archive/ Modified: head/security/cvm/pkg-plist ============================================================================== --- head/security/cvm/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/security/cvm/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -26,31 +26,40 @@ lib/libcvm-client.a lib/libcvm-client.so lib/libcvm-command.a lib/libcvm-command.so -lib/libcvm-command.so.2 +lib/libcvm-command.so.1 +lib/libcvm-command.so.1.1.0 lib/libcvm-local.a lib/libcvm-local.so -lib/libcvm-local.so.2 +lib/libcvm-local.so.1 +lib/libcvm-local.so.1.1.0 lib/libcvm-module.a lib/libcvm-module.so -lib/libcvm-module.so.2 +lib/libcvm-module.so.1 +lib/libcvm-module.so.1.1.0 lib/libcvm-qmail.a lib/libcvm-qmail.so -lib/libcvm-qmail.so.2 +lib/libcvm-qmail.so.1 +lib/libcvm-qmail.so.1.1.0 lib/libcvm-sasl.a lib/libcvm-sasl.so -lib/libcvm-sasl.so.2 +lib/libcvm-sasl.so.1 +lib/libcvm-sasl.so.1.1.0 lib/libcvm-sql.a lib/libcvm-sql.so -lib/libcvm-sql.so.2 +lib/libcvm-sql.so.1 +lib/libcvm-sql.so.1.1.0 lib/libcvm-udp.a lib/libcvm-udp.so -lib/libcvm-udp.so.2 +lib/libcvm-udp.so.1 +lib/libcvm-udp.so.1.1.0 lib/libcvm-v1client.a lib/libcvm-v1client.so -lib/libcvm-v1client.so.2 +lib/libcvm-v1client.so.1 +lib/libcvm-v1client.so.1.1.0 lib/libcvm-v2client.a lib/libcvm-v2client.so -lib/libcvm-v2client.so.2 +lib/libcvm-v2client.so.1 +lib/libcvm-v2client.so.1.1.0 %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/TODO @@ -77,5 +86,3 @@ lib/libcvm-v2client.so.2 %%PORTDOCS%%%%DOCSDIR%%/sql.html %%PORTDOCS%%%%DOCSDIR%%/v1client.html %%PORTDOCS%%%%DOCSDIR%%/v2client.html -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/cvm Modified: head/security/libtomcrypt/Makefile ============================================================================== --- head/security/libtomcrypt/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/security/libtomcrypt/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= libtomcrypt PORTVERSION= 1.17 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security MASTER_SITES= http://libtom.org/files/ DISTNAME= crypt-${PORTVERSION} Modified: head/security/libtomcrypt/pkg-plist ============================================================================== --- head/security/libtomcrypt/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/security/libtomcrypt/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -15,9 +15,11 @@ include/tomcrypt_test.h lib/libtomcrypt.a lib/libtomcrypt.so lib/libtomcrypt.so.0 +lib/libtomcrypt.so.0.0.117 lib/libtomcrypt_prof.a lib/libtomcrypt_prof.so lib/libtomcrypt_prof.so.0 +lib/libtomcrypt_prof.so.0.0.117 %%PORTDOCS%%%%DOCSDIR%%/pdf/crypt.pdf %%PORTDOCS%%@dirrm %%DOCSDIR%%/pdf %%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/sysutils/ucspi-proxy/Makefile ============================================================================== --- head/sysutils/ucspi-proxy/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/sysutils/ucspi-proxy/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= ucspi-proxy PORTVERSION= 0.98 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= http://untroubled.org/ucspi-proxy/ Modified: head/sysutils/vii/Makefile ============================================================================== --- head/sysutils/vii/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/sysutils/vii/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,7 +3,7 @@ PORTNAME= vii PORTVERSION= 4.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MASTER_SITES= http://vii.sourceforge.net/ \ CRITICAL Modified: head/x11-toolkits/xmhtml/Makefile ============================================================================== --- head/x11-toolkits/xmhtml/Makefile Sun Oct 5 17:39:08 2014 (r370098) +++ head/x11-toolkits/xmhtml/Makefile Sun Oct 5 18:01:19 2014 (r370099) @@ -3,6 +3,7 @@ PORTNAME= XmHTML PORTVERSION= 1.1.9 +PORTREVISION= 1 CATEGORIES= x11-toolkits www MASTER_SITES= SF/${PORTNAME:tl} Modified: head/x11-toolkits/xmhtml/pkg-plist ============================================================================== --- head/x11-toolkits/xmhtml/pkg-plist Sun Oct 5 17:39:08 2014 (r370098) +++ head/x11-toolkits/xmhtml/pkg-plist Sun Oct 5 18:01:19 2014 (r370099) @@ -14,6 +14,7 @@ include/XmHTML/toolkit.h lib/libXmHTML.a lib/libXmHTML.so lib/libXmHTML.so.1 +lib/libXmHTML.so.1.0.2 %%PORTDOCS%%%%DOCSDIR%%/GPL.html %%PORTDOCS%%%%DOCSDIR%%/LGPL.html %%PORTDOCS%%%%DOCSDIR%%/XmHTML.html From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 18:25:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3BEFE602; Sun, 5 Oct 2014 18:25:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24471925; Sun, 5 Oct 2014 18:25:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95IP6E1035474; Sun, 5 Oct 2014 18:25:06 GMT (envelope-from alonso@FreeBSD.org) Received: (from alonso@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95IP1mB035430; Sun, 5 Oct 2014 18:25:01 GMT (envelope-from alonso@FreeBSD.org) Message-Id: <201410051825.s95IP1mB035430@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: alonso set sender to alonso@FreeBSD.org using -f From: Alonso Schaich Date: Sun, 5 Oct 2014 18:25:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370100 - in head: deskutils/superkaramba devel/py-krosspython devel/py-pykde4 devel/py-pykdeuic4 devel/py-qt4 devel/py-qt4-qscintilla2 devel/py-sip editors/kate-plugin-pate games/kajon... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 18:25:06 -0000 Author: alonso Date: Sun Oct 5 18:25:00 2014 New Revision: 370100 URL: https://svnweb.freebsd.org/changeset/ports/370100 QAT: https://qat.redports.org/buildarchive/r370100/ Log: Replace USE_PYTHON* by USES=python. This commit consists of area51's r10314 and r10356 patchsets. Approved by: rakuco (mentor) Modified: head/deskutils/superkaramba/Makefile head/devel/py-krosspython/Makefile head/devel/py-pykde4/Makefile head/devel/py-pykdeuic4/Makefile head/devel/py-qt4-qscintilla2/Makefile head/devel/py-qt4/Makefile head/devel/py-qt4/bsd.pyqt.mk head/devel/py-sip/Makefile head/editors/kate-plugin-pate/Makefile head/games/kajongg/Makefile head/lang/qt5-qml/Makefile head/math/cantor/Makefile head/misc/py-qt4-demo/Makefile head/misc/py-qt4-doc/Makefile head/net-im/telepathy-logger-qt4/Makefile head/net-im/telepathy-logger/Makefile head/sysutils/qzeitgeist/Makefile head/www/webkit-qt5/Makefile head/x11/plasma-scriptengine-python/Makefile Modified: head/deskutils/superkaramba/Makefile ============================================================================== --- head/deskutils/superkaramba/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/deskutils/superkaramba/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -10,9 +10,8 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Widget framework for KDE -USE_PYTHON= 2 USE_KDE4= kdehier kdelibs kdeprefix automoc4 qimageblitz -USES= cmake:outsource tar:xz +USES= cmake:outsource python:2 tar:xz USE_QT4= qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes Modified: head/devel/py-krosspython/Makefile ============================================================================== --- head/devel/py-krosspython/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-krosspython/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -13,9 +13,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Kross Python scripting library USE_KDE4= kdehier kdelibs kdeprefix automoc4 -USE_PYTHON= 2 USE_QT4= corelib gui qmake_build moc_build uic_build rcc_build -USES= cmake:outsource tar:xz +USES= cmake:outsource python:2 tar:xz CMAKE_ARGS+= -DBUILD_falcon:BOOL=FALSE \ -DBUILD_ruby:BOOL=FALSE \ -DBUILD_java:BOOL=FALSE Modified: head/devel/py-pykde4/Makefile ============================================================================== --- head/devel/py-pykde4/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-pykde4/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -28,10 +28,9 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} \ USE_KDE4= kdehier kdelibs kdeprefix okular pimlibs \ akonadi automoc4 soprano -USE_PYTHON= 2 USE_QT4= corelib dbus designer_build gui network xml \ qmake_build moc_build uic_build rcc_build -USES= cmake:outsource tar:xz +USES= cmake:outsource python:2 tar:xz CMAKE_ARGS+= -DWITH_PolkitQt:BOOL=FALSE SUB_FILES= kdebindings4.pth Modified: head/devel/py-pykdeuic4/Makefile ============================================================================== --- head/devel/py-pykdeuic4/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-pykdeuic4/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -13,10 +13,9 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Enhanced version of pyuic4 USE_KDE4= kdelibs automoc4 pykde4 -USE_PYTHON= 2 USE_QT4= moc_build qmake_build rcc_build uic_build DISTINFO_FILE= ${PORTSDIR}/devel/py-pykde4/distinfo -USES= cmake:outsource tar:xz +USES= cmake:outsource python:2 tar:xz WRKSRC= ${WRKDIR}/${DISTNAME}/tools/${PORTNAME} Modified: head/devel/py-qt4-qscintilla2/Makefile ============================================================================== --- head/devel/py-qt4-qscintilla2/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-qt4-qscintilla2/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -22,7 +22,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} DESTDIRNAME= INSTALL_ROOT DISTINFO_FILE= ${QSCI2_DISTINFO_FILE} HAS_CONFIGURE= yes -USE_PYTHON= yes +USES= python USE_QT4= gui moc_build qmake_build QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. Modified: head/devel/py-qt4/Makefile ============================================================================== --- head/devel/py-qt4/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-qt4/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -13,7 +13,7 @@ EXTRACT_ONLY= # empty MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt 4 toolkit (meta port) -USE_PYTHON= yes +USES= python NO_BUILD= yes NO_INSTALL= yes Modified: head/devel/py-qt4/bsd.pyqt.mk ============================================================================== --- head/devel/py-qt4/bsd.pyqt.mk Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-qt4/bsd.pyqt.mk Sun Oct 5 18:25:00 2014 (r370100) @@ -93,7 +93,7 @@ DISTNAME= ${PYQT4_DISTNAME} DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} HAS_CONFIGURE= yes -USE_PYTHON= yes +USES= python QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. Modified: head/devel/py-sip/Makefile ============================================================================== --- head/devel/py-sip/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/devel/py-sip/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -12,8 +12,7 @@ DISTNAME= ${SIP_DISTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Python to C and C++ bindings generator -USE_PYTHON= yes -PYTHON_PY3K_PLIST_HACK= yes +USE= python:py3kplist DATADIR= ${PREFIX}/share/py-${PORTNAME} DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} Modified: head/editors/kate-plugin-pate/Makefile ============================================================================== --- head/editors/kate-plugin-pate/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/editors/kate-plugin-pate/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -11,12 +11,11 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Support for Python plugins in Kate -USES= cmake:outsource tar:xz +USES= cmake:outsource python tar:xz USE_KDE4= kdelibs kdeprefix kdehier automoc4 kate \ pykde4_build pykde4_run USE_QT4= gui webkit \ moc_build qmake_build rcc_build uic_build -USE_PYTHON= yes DISTINFO_FILE= ${PORTSDIR}/editors/kate/distinfo Modified: head/games/kajongg/Makefile ============================================================================== --- head/games/kajongg/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/games/kajongg/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -10,10 +10,9 @@ DIST_SUBDIR= KDE/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource tar:xz twisted:run +USES= cmake:outsource python tar:xz twisted:run USE_KDE4= kdehier kdelibs kdeprefix pykde4 automoc4 USE_QT4= moc_build qmake_build rcc_build uic_build -USE_PYTHON= yes USE_SQLITE= 3 CMAKE_ARGS= -DINSTALL_KAJONGG:BOOL=TRUE Modified: head/lang/qt5-qml/Makefile ============================================================================== --- head/lang/qt5-qml/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/lang/qt5-qml/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -11,8 +11,7 @@ COMMENT= Qt QML and JavaScript language USE_QT5= core network buildtools_build QT_DIST= declarative -USES= qmake -USE_PYTHON_BUILD= yes +USES= python:build qmake USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} WRKSRC_SUBDIR= src/${PORTNAME} Modified: head/math/cantor/Makefile ============================================================================== --- head/math/cantor/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/math/cantor/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -15,10 +15,9 @@ LIB_DEPENDS= libspectre.so:${PORTSDIR}/p libanalitza.so:${PORTSDIR}/math/analitza USE_KDE4= kdehier kdelibs kdeprefix automoc4 -USES= cmake:outsource pkgconfig tar:xz +USES= cmake:outsource pkgconfig python:2 tar:xz USE_QT4= corelib qtestlib_build xml xmlpatterns \ moc_build qmake_build rcc_build uic_build -USE_PYTHON= 2 USE_LDCONFIG= yes OPTIONS_DEFINE= MAXIMA OCTAVE R SAGE SCILAB Modified: head/misc/py-qt4-demo/Makefile ============================================================================== --- head/misc/py-qt4-demo/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/misc/py-qt4-demo/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -13,7 +13,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Python bindings for the Qt4 toolkit, Qt demo and examples DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} -USE_PYTHON= yes + +USES= python EXAMPLESDIR= ${PREFIX}/share/examples/py-qt4 Modified: head/misc/py-qt4-doc/Makefile ============================================================================== --- head/misc/py-qt4-doc/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/misc/py-qt4-doc/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -14,7 +14,8 @@ COMMENT= Python bindings for the Qt4 too DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} NO_BUILD= yes -USE_PYTHON= yes + +USES= python DOCSDIR= ${PREFIX}/share/doc/py-qt4 Modified: head/net-im/telepathy-logger-qt4/Makefile ============================================================================== --- head/net-im/telepathy-logger-qt4/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/net-im/telepathy-logger-qt4/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -22,9 +22,8 @@ LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/de USE_GNOME= glib20 libxml2 USE_GSTREAMER= qt4 USE_KDE4= # empty -USE_PYTHON_BUILD= yes USE_QT4= corelib dbus moc_build qmake_build rcc_build uic_build -USES= bison:build cmake pkgconfig tar:bzip2 +USES= bison:build cmake pkgconfig python:build tar:bzip2 CMAKE_ARGS= -DUSE_COMMON_CMAKE_PACKAGE_CONFIG_DIR:BOOL=True USE_LDCONFIG= yes Modified: head/net-im/telepathy-logger/Makefile ============================================================================== --- head/net-im/telepathy-logger/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/net-im/telepathy-logger/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -16,13 +16,12 @@ LIB_DEPENDS= libdbus-glib-1.so:${PORTSDI LICENSE= LGPL21 -USES= pkgconfig gmake libtool pathfix tar:bzip2 +USES= pkgconfig gmake libtool pathfix python:build tar:bzip2 GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GNOME= glib20 intltool gnomedocutils libxml2 \ libxslt:build introspection:build USE_SQLITE= yes -USE_PYTHON_BUILD= yes GLIB_SCHEMAS= org.freedesktop.Telepathy.Logger.gschema.xml post-patch: Modified: head/sysutils/qzeitgeist/Makefile ============================================================================== --- head/sysutils/qzeitgeist/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/sysutils/qzeitgeist/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -22,10 +22,9 @@ BUILD_DEPENDS= rapper:${PORTSDIR}/textpr ${PYTHON_SITELIBDIR}/rdflib/__init__.py:${PORTSDIR}/textproc/py-rdflib USE_KDE4= automoc4 -USE_PYTHON_BUILD= yes USE_QT4= dbus declarative qtestlib \ moc_build qmake_build rcc_build uic_build -USES= tar:bzip2 cmake +USES= cmake python:build tar:bzip2 USE_LDCONFIG= yes # To be kept in sync with sysutils/zeitgeist. Modified: head/www/webkit-qt5/Makefile ============================================================================== --- head/www/webkit-qt5/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/www/webkit-qt5/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -19,7 +19,6 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/flex:${P USE_GL= gl USE_GNOME= libxml2 libxslt USE_PERL5= build -USE_PYTHON_BUILD= yes USE_QT5= core gui network opengl printsupport qml quick sql \ testlib widgets buildtools_build QT_DIST= ${PORTNAME} @@ -27,7 +26,7 @@ USE_RUBY= yes RUBY_NO_RUN_DEPENDS= yes USE_SQLITE= 3 USE_XORG= x11 xcomposite xrender -USES= bison:build gmake perl5 pkgconfig qmake:outsource +USES= bison:build gmake perl5 pkgconfig python:build qmake:outsource # Keep make(1) from descending into obj/ subdirectories during tests. CONFIGURE_ENV= MAKEOBJDIR=. # Use flex(1) from ports. Modified: head/x11/plasma-scriptengine-python/Makefile ============================================================================== --- head/x11/plasma-scriptengine-python/Makefile Sun Oct 5 18:01:19 2014 (r370099) +++ head/x11/plasma-scriptengine-python/Makefile Sun Oct 5 18:25:00 2014 (r370100) @@ -13,9 +13,8 @@ COMMENT= Plasma scriptengine for Python USE_KDE4= kdehier kdelibs kdeprefix pykde4 automoc4 USE_QT4= qmake_build moc_build uic_build rcc_build -USE_PYTHON= 2 DISTINFO_FILE= ${PORTSDIR}/x11/kde4-workspace/distinfo -USES= cmake:outsource tar:xz +USES= cmake:outsource python:2 tar:xz CMAKE_SOURCE_PATH= ${WRKSRC}/plasma/generic/scriptengines/python From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 18:25:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 497436E9; Sun, 5 Oct 2014 18:25:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1AC5992C; Sun, 5 Oct 2014 18:25:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95IPQVb035636; Sun, 5 Oct 2014 18:25:26 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95IPQns035635; Sun, 5 Oct 2014 18:25:26 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051825.s95IPQns035635@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 18:25:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370101 - head/net/openldap24-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 18:25:27 -0000 Author: tijl Date: Sun Oct 5 18:25:26 2014 New Revision: 370101 URL: https://svnweb.freebsd.org/changeset/ports/370101 QAT: https://qat.redports.org/buildarchive/r370101/ Log: Allow installing contrib modules in a different prefix than /usr/local PR: 194160 Submitted by: jhujhiti@adjectivism.org Modified: head/net/openldap24-server/Makefile Modified: head/net/openldap24-server/Makefile ============================================================================== --- head/net/openldap24-server/Makefile Sun Oct 5 18:25:00 2014 (r370100) +++ head/net/openldap24-server/Makefile Sun Oct 5 18:25:26 2014 (r370101) @@ -514,12 +514,14 @@ test: build post-build: @${DO_NADA} .if ${PORT_OPTIONS:MSMBPWD} - @(cd ${BUILD_WRKSRC}/contrib/slapd-modules/smbk5pwd && ${SETENV} ${MAKE_ENV} \ - ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} DEFS="-DDO_SAMBA" all) + @(cd ${BUILD_WRKSRC}/contrib/slapd-modules/smbk5pwd && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} \ + ${MAKE_ARGS} DEFS="-DDO_SAMBA" prefix="${PREFIX}" all) .endif .if ${PORT_OPTIONS:MSHA2} - @(cd ${BUILD_WRKSRC}/contrib/slapd-modules/passwd/sha2 && ${SETENV} ${MAKE_ENV} \ - ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} all) + @(cd ${BUILD_WRKSRC}/contrib/slapd-modules/passwd/sha2 && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} \ + ${MAKE_ARGS} prefix="${PREFIX}" all) .endif .endif @@ -542,13 +544,15 @@ post-install: .else @${MKDIR} ${STAGEDIR}${LDAP_RUN_DIR} .if ${PORT_OPTIONS:MSMBPWD} - @(cd ${WRKSRC}/contrib/slapd-modules/smbk5pwd && ${SETENV} ${MAKE_ENV} \ - ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install) + @(cd ${WRKSRC}/contrib/slapd-modules/smbk5pwd && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} \ + ${MAKE_ARGS} prefix="${PREFIX}" install) ${RM} ${STAGEDIR}${PREFIX}/libexec/openldap/smbk5pwd.a .endif .if ${PORT_OPTIONS:MSHA2} - @(cd ${WRKSRC}/contrib/slapd-modules/passwd/sha2 && ${SETENV} ${MAKE_ENV} \ - ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} install) + @(cd ${WRKSRC}/contrib/slapd-modules/passwd/sha2 && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} \ + ${MAKE_ARGS} prefix="${PREFIX}" install) ${RM} ${STAGEDIR}${PREFIX}/libexec/openldap/pw-sha2.a .endif .if ${PORT_OPTIONS:MDYNAMIC_BACKENDS} || ${PORT_OPTIONS:MSMBPWD} || ${PORT_OPTIONS:MSHA2} From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 18:35:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC91FA9C; Sun, 5 Oct 2014 18:35:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BD5A9A1B; Sun, 5 Oct 2014 18:35:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95IZXbH040427; Sun, 5 Oct 2014 18:35:33 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95IZXRC040426; Sun, 5 Oct 2014 18:35:33 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410051835.s95IZXRC040426@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 5 Oct 2014 18:35:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370102 - head/mail/rainloop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 18:35:34 -0000 Author: marino Date: Sun Oct 5 18:35:33 2014 New Revision: 370102 URL: https://svnweb.freebsd.org/changeset/ports/370102 QAT: https://qat.redports.org/buildarchive/r370102/ Log: mail/rainloop: Rework to avoid unnecessary overriding do-extracts target There's no reason to roll-your-own extraction target, the stock target works fine. Remove and and adjust do-install accordingly; there's not change the pkg-plist. While here, remove RVER derivative of PORTVERSION. This looked wrong to me -- I doubt the RVER will end in ".164" after the PORTVERSION is incremented. If anything, the PORTVERSION would be derivative of RVER, but for now I just have two seprately defined variables. Also, unmask installation commands. Modified: head/mail/rainloop/Makefile Modified: head/mail/rainloop/Makefile ============================================================================== --- head/mail/rainloop/Makefile Sun Oct 5 18:25:26 2014 (r370101) +++ head/mail/rainloop/Makefile Sun Oct 5 18:35:33 2014 (r370102) @@ -10,20 +10,17 @@ COMMENT= Modern and interactive webmail USES= zip NO_BUILD= yes -WRKSRC= ${WRKDIR}/${PORTNAME} +NO_WRKSUBDIR= yes WANT_PHP_WEB= yes USE_PHP= curl iconv json xml dom openssl pcre spl zlib -RVER= ${PORTVERSION}.164 +RVER= 1.6.9.164 PLIST_SUB= VER="${RVER}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" # @TODO: PDO also for different backends -do-extract: - @${RM} -rf ${WRKDIR} - @${MKDIR} ${WRKSRC} - @${EXTRACT_CMD} -d ${WRKSRC} ${DISTDIR}/${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} > /dev/null - do-install: - @${MKDIR} -m 0755 ${STAGEDIR}${WWWDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + @${MKDIR} ${STAGEDIR}${WWWDIR}/data + ${INSTALL_DATA} ${WRKSRC}/data/* ${STAGEDIR}${WWWDIR}/data + ${INSTALL_DATA} ${WRKSRC}/index.php ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} rainloop ${STAGEDIR}${WWWDIR}) .include From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 18:45:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DDACE77; Sun, 5 Oct 2014 18:45:42 +0000 (UTC) Received: from mail-yh0-x233.google.com (mail-yh0-x233.google.com [IPv6:2607:f8b0:4002:c01::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A5E50AFA; Sun, 5 Oct 2014 18:45:41 +0000 (UTC) Received: by mail-yh0-f51.google.com with SMTP id 29so1490147yhl.24 for ; Sun, 05 Oct 2014 11:45:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=bu4SmuY1lDGiJ8mitjve/y6I6RAdbnAWFieZ6XoYW38=; b=YHZzcooqTZcMHl9hcQKbxs2A7YuY9QCBnBkwgVvYrLty2csNVKtYGJ1KHdZwNrf2jB JxUo2qxNi7x/sk0IXdBtqeDpw9Mn+0EM4pl98Xg1w88v2GTNbYW76D2XCHeH41pkTeVI l1PWRpGh/7GstdKpSD1aqaa/un1RUZUbbeaC4FiWA4MqQ9i/Rx1jF/kEAMyKcRvqafdH VPD3NpHTp2rWxYyN4RbE+pxI/U2vo4LGbr2y9R9qxJt5Ho/mIB5DDxxgJd62Cu2kEXJM Fej9icNyvWdBzul5P/gqXYJc8YO6yzd7rLLuiqaVNZ4bs83mt8bxymGZVzUVxOJ4vYeb 0bhA== MIME-Version: 1.0 X-Received: by 10.236.138.227 with SMTP id a63mr4827586yhj.149.1412534740572; Sun, 05 Oct 2014 11:45:40 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.207.73 with HTTP; Sun, 5 Oct 2014 11:45:40 -0700 (PDT) In-Reply-To: <201410051825.s95IP1mB035430@svn.freebsd.org> References: <201410051825.s95IP1mB035430@svn.freebsd.org> Date: Sun, 5 Oct 2014 20:45:40 +0200 X-Google-Sender-Auth: Qm5LwBhQ9QdRCVG8AWfc9vZYQNw Message-ID: Subject: Re: svn commit: r370100 - in head: deskutils/superkaramba devel/py-krosspython devel/py-pykde4 devel/py-pykdeuic4 devel/py-qt4 devel/py-qt4-qscintilla2 devel/py-sip editors/kate-plugin-pate games/kajon... From: Antoine Brodin To: Alonso Schaich Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 18:45:42 -0000 On Sun, Oct 5, 2014 at 8:25 PM, Alonso Schaich wrote: > Author: alonso > Date: Sun Oct 5 18:25:00 2014 > New Revision: 370100 > URL: https://svnweb.freebsd.org/changeset/ports/370100 > QAT: https://qat.redports.org/buildarchive/r370100/ > > Log: > Replace USE_PYTHON* by USES=python. > > This commit consists of area51's r10314 and r10356 patchsets. > > Approved by: rakuco (mentor) > > Modified: > head/deskutils/superkaramba/Makefile > head/devel/py-krosspython/Makefile > head/devel/py-pykde4/Makefile > head/devel/py-pykdeuic4/Makefile > head/devel/py-qt4-qscintilla2/Makefile > head/devel/py-qt4/Makefile > head/devel/py-qt4/bsd.pyqt.mk > head/devel/py-sip/Makefile > head/editors/kate-plugin-pate/Makefile > head/games/kajongg/Makefile > head/lang/qt5-qml/Makefile > head/math/cantor/Makefile > head/misc/py-qt4-demo/Makefile > head/misc/py-qt4-doc/Makefile > head/net-im/telepathy-logger-qt4/Makefile > head/net-im/telepathy-logger/Makefile > head/sysutils/qzeitgeist/Makefile > head/www/webkit-qt5/Makefile > head/x11/plasma-scriptengine-python/Makefile > Modified: head/devel/py-qt4/bsd.pyqt.mk > ============================================================================== > --- head/devel/py-qt4/bsd.pyqt.mk Sun Oct 5 18:01:19 2014 (r370099) > +++ head/devel/py-qt4/bsd.pyqt.mk Sun Oct 5 18:25:00 2014 (r370100) > @@ -93,7 +93,7 @@ DISTNAME= ${PYQT4_DISTNAME} > > DISTINFO_FILE= ${PYQT4_DISTINFO_FILE} > HAS_CONFIGURE= yes > -USE_PYTHON= yes > +USES= python > > QT_NONSTANDARD= yes # Do not add unknown arguments to CONFIGURE_ARGS. This should be += (slave ports) > Modified: head/devel/py-sip/Makefile > ============================================================================== > --- head/devel/py-sip/Makefile Sun Oct 5 18:01:19 2014 (r370099) > +++ head/devel/py-sip/Makefile Sun Oct 5 18:25:00 2014 (r370100) > @@ -12,8 +12,7 @@ DISTNAME= ${SIP_DISTNAME} > MAINTAINER= kde@FreeBSD.org > COMMENT= Python to C and C++ bindings generator > > -USE_PYTHON= yes > -PYTHON_PY3K_PLIST_HACK= yes > +USE= python:py3kplist > > DATADIR= ${PREFIX}/share/py-${PORTNAME} > DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} This syntax doesn't exist. Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 18:59:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E2C0232; Sun, 5 Oct 2014 18:59:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F3057BF0; Sun, 5 Oct 2014 18:59:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95IxW6Y050271; Sun, 5 Oct 2014 18:59:32 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95IxW0u050267; Sun, 5 Oct 2014 18:59:32 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051859.s95IxW0u050267@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 18:59:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370103 - in head/palm/pilot-link: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 18:59:33 -0000 Author: tijl Date: Sun Oct 5 18:59:31 2014 New Revision: 370103 URL: https://svnweb.freebsd.org/changeset/ports/370103 QAT: https://qat.redports.org/buildarchive/r370103/ Log: - Add USES=libtool and INSTALL_TARGET=install-strip - Remove pthread patching Deleted: head/palm/pilot-link/files/patch-ltmain.sh Modified: head/palm/pilot-link/Makefile head/palm/pilot-link/pkg-plist Modified: head/palm/pilot-link/Makefile ============================================================================== --- head/palm/pilot-link/Makefile Sun Oct 5 18:35:33 2014 (r370102) +++ head/palm/pilot-link/Makefile Sun Oct 5 18:59:31 2014 (r370103) @@ -3,22 +3,24 @@ PORTNAME= pilot-link PORTVERSION= 0.12.5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= palm comms MASTER_SITES= http://downloads.pilot-link.org/ \ http://miwibox.org/distfiles/ MAINTAINER= samm@os2.kiev.ua -COMMENT= Suite of tools used to connect and sync your Palm handled +COMMENT= Suite of tools to connect and sync your Palm handheld LICENSE= GPLv2 BUILD_DEPENDS= xsltproc:${PORTSDIR}/textproc/libxslt -USES= pathfix pkgconfig iconv tar:bzip2 GNU_CONFIGURE= yes CFLAGS+= -I${WRKSRC}/popt -I${LOCALBASE}/include CONFIGURE_ARGS+=${ICONV_CONFIGURE_BASE} --with-included-popt --enable-conduits --enable-xsltproc +INSTALL_TARGET= install-strip +USES= iconv libtool pathfix pkgconfig tar:bzip2 USE_LDCONFIG= yes OPTIONS_DEFINE= PNG THREADS USB @@ -28,8 +30,6 @@ USB_DESC= Compile with USB via libusb su .if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+= --enable-threads -CFLAGS+= ${PTHREAD_LIBS} -CONFIGURE_ENV+= PTHREAD_LIBS="${PTHREAD_LIBS}" PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" .endif .if ${PORT_OPTIONS:MUSB} @@ -38,8 +38,6 @@ LDFLAGS+= -L${PREFIX}/lib -lusb .if ! ${PORT_OPTIONS:MTHREADS} IGNORE= cannot be built: USB support requires THREADS turned on. Please reconfigure using 'make config' -.else -LDFLAGS+= ${PTHREAD_LIBS} .endif .endif @@ -57,8 +55,5 @@ post-patch: ${WRKSRC}/src/pilot-read-palmpix.c \ ${WRKSRC}/src/pilot-read-screenshot.c \ ${WRKSRC}/src/pilot-read-veo.c -.if ${PORT_OPTIONS:MTHREADS} - @${REINPLACE_CMD} -e 's|Libs: |Libs: ${PTHREAD_LIBS} |' ${WRKSRC}/pilot-link.pc.in ${WRKSRC}/pilot-link-pp.pc.in -.endif .include Modified: head/palm/pilot-link/pkg-plist ============================================================================== --- head/palm/pilot-link/pkg-plist Sun Oct 5 18:35:33 2014 (r370102) +++ head/palm/pilot-link/pkg-plist Sun Oct 5 18:59:31 2014 (r370103) @@ -80,9 +80,11 @@ include/pi-location.h lib/libpisock.a lib/libpisock.so lib/libpisock.so.9 +lib/libpisock.so.9.0.2 lib/libpisync.a lib/libpisync.so lib/libpisync.so.1 +lib/libpisync.so.1.0.3 libdata/pkgconfig/pilot-link.pc share/aclocal/pilot-link.m4 %%DATADIR%%/pix/b1.gif From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 19:00:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A626732D; Sun, 5 Oct 2014 19:00:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9128AC83; Sun, 5 Oct 2014 19:00:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95J0O3f051143; Sun, 5 Oct 2014 19:00:24 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95J0OBG051140; Sun, 5 Oct 2014 19:00:24 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051900.s95J0OBG051140@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 19:00:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370104 - in head/net/radiusclient: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 19:00:24 -0000 Author: tijl Date: Sun Oct 5 19:00:23 2014 New Revision: 370104 URL: https://svnweb.freebsd.org/changeset/ports/370104 QAT: https://qat.redports.org/buildarchive/r370104/ Log: Add USES=libtool and INSTALL_TARGET=install-strip Deleted: head/net/radiusclient/files/patch-ltmain.sh Modified: head/net/radiusclient/Makefile head/net/radiusclient/pkg-plist Modified: head/net/radiusclient/Makefile ============================================================================== --- head/net/radiusclient/Makefile Sun Oct 5 18:59:31 2014 (r370103) +++ head/net/radiusclient/Makefile Sun Oct 5 19:00:23 2014 (r370104) @@ -3,7 +3,7 @@ PORTNAME= radiusclient PORTVERSION= 0.5.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://download.berlios.de/radiusclient-ng/ \ http://download2.berlios.de/radiusclient-ng/ @@ -12,8 +12,9 @@ DISTNAME= ${PORTNAME}-ng-${PORTVERSION} MAINTAINER= sobomax@FreeBSD.org COMMENT= Client library and basic utilities for RADIUS AAA -USES= gmake GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USES= gmake libtool USE_LDCONFIG= yes ETCDIR= ${PREFIX}/etc/${PORTNAME}-ng Modified: head/net/radiusclient/pkg-plist ============================================================================== --- head/net/radiusclient/pkg-plist Sun Oct 5 18:59:31 2014 (r370103) +++ head/net/radiusclient/pkg-plist Sun Oct 5 19:00:23 2014 (r370104) @@ -11,6 +11,7 @@ include/radiusclient-ng.h lib/libradiusclient-ng.a lib/libradiusclient-ng.so lib/libradiusclient-ng.so.2 +lib/libradiusclient-ng.so.2.0.0 sbin/login.radius sbin/radacct sbin/radexample From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 19:03:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E6CD519; Sun, 5 Oct 2014 19:03:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 196CCC97; Sun, 5 Oct 2014 19:03:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95J3CWj054502; Sun, 5 Oct 2014 19:03:12 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95J3C8a054500; Sun, 5 Oct 2014 19:03:12 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410051903.s95J3C8a054500@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 5 Oct 2014 19:03:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370105 - in head/misc/chmlib: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 19:03:13 -0000 Author: tijl Date: Sun Oct 5 19:03:12 2014 New Revision: 370105 URL: https://svnweb.freebsd.org/changeset/ports/370105 QAT: https://qat.redports.org/buildarchive/r370105/ Log: - Add USES=libtool and INSTALL_TARGET=install-strip - Remove pthread patching Deleted: head/misc/chmlib/files/patch-ltmain.sh Modified: head/misc/chmlib/Makefile head/misc/chmlib/pkg-plist Modified: head/misc/chmlib/Makefile ============================================================================== --- head/misc/chmlib/Makefile Sun Oct 5 19:00:23 2014 (r370104) +++ head/misc/chmlib/Makefile Sun Oct 5 19:03:12 2014 (r370105) @@ -3,18 +3,17 @@ PORTNAME= chmlib PORTVERSION= 0.40 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://www.jedrea.com/chmlib/ MAINTAINER= fluffy@FreeBSD.org COMMENT= Library for dealing with Microsoft ITSS/CHM format files -USES= gmake tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-io64 --disable-pread --exec-prefix=${PREFIX} --disable-static --enable-examples +INSTALL_TARGET= install-strip +USES= gmake libtool tar:bzip2 USE_LDCONFIG= yes -post-patch: - @${REINPLACE_CMD} -e "s,-lpthread,${PTHREAD_LIBS}," ${WRKSRC}/configure - .include Modified: head/misc/chmlib/pkg-plist ============================================================================== --- head/misc/chmlib/pkg-plist Sun Oct 5 19:00:23 2014 (r370104) +++ head/misc/chmlib/pkg-plist Sun Oct 5 19:03:12 2014 (r370105) @@ -7,3 +7,4 @@ include/chm_lib.h include/lzx.h lib/libchm.so lib/libchm.so.0 +lib/libchm.so.0.0.0 From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 19:25:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97820989 for ; Sun, 5 Oct 2014 19:25:11 +0000 (UTC) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59905E61 for ; Sun, 5 Oct 2014 19:25:11 +0000 (UTC) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by gateway2.nyi.internal (Postfix) with ESMTP id A5D06207D2 for ; Sun, 5 Oct 2014 15:25:04 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Sun, 05 Oct 2014 15:25:04 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.fm; h= x-sasl-enc:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-type; s=mesmtp; bh=4rsJvysikRdO slrwRrXJFVLdPdw=; b=ai2rc66KTDF3OUEcIxMdIU0EeVib8qfBgnlVVvOACUcJ mbXJ2X5uHrnMQo/F/OsUz2C04Vfc7CbqFZo3BVl+v6x7Jiy4W7Wo//aKhTdAmlKy j1j0pGOQQRvL/DJxZ6Xc75V9zFOufgI2JTUDRXNcak3xT33wSwOansy2ApK/9Ao= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=x-sasl-enc:date:from:to:cc:subject :message-id:in-reply-to:references:mime-version:content-type; s= smtpout; bh=4rsJvysikRdOslrwRrXJFVLdPdw=; b=bJFg8z20HCkv8e6zzXZL 3JqvzPwXxAKfFPiiYGCsfKTzmPbPcoeXljlf42LC08H+BWR7o/SL8CMHZKLlOfck ivaKOYv0bt7ODUkAKIH31meDaug9N7YJNRMpozzZ6IOIvNirXuND1Oamy8kHNtcD YdIBXfFQm6KFPCsZGJ4CG8Y= X-Sasl-enc: w3oV9mAFmnlIRdDCwqWZVhq9v7TG87LWJh+wprjxi3qI 1412537104 Received: from inet-0a000001.divine.net (unknown [109.192.195.47]) by mail.messagingengine.com (Postfix) with ESMTPA id B7734680189; Sun, 5 Oct 2014 15:25:03 -0400 (EDT) Date: Sun, 5 Oct 2014 21:24:48 +0200 From: Schaich Alonso To: Antoine Brodin Subject: Re: svn commit: r370100 - in head: deskutils/superkaramba devel/py-krosspython devel/py-pykde4 devel/py-pykdeuic4 devel/py-qt4 devel/py-qt4-qscintilla2 devel/py-sip editors/kate-plugin-pate games/kajon... Message-Id: <20141005212448.de9ea1aec606d8421ad421f1@fastmail.fm> In-Reply-To: References: <201410051825.s95IP1mB035430@svn.freebsd.org> X-Mailer: Sylpheed 3.4.2 (GTK+ 2.24.22; amd64-portbld-freebsd10.1) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA512"; boundary="Signature=_Sun__5_Oct_2014_21_24_48_+0200_ri/CPmUHzn488XMT" Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , Alonso Schaich , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 19:25:11 -0000 --Signature=_Sun__5_Oct_2014_21_24_48_+0200_ri/CPmUHzn488XMT Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, 5 Oct 2014 20:45:40 +0200 Antoine Brodin wrote: > On Sun, Oct 5, 2014 at 8:25 PM, Alonso Schaich wrote: > > Author: alonso > > Date: Sun Oct 5 18:25:00 2014 > > New Revision: 370100 > > URL: https://svnweb.freebsd.org/changeset/ports/370100 > > QAT: https://qat.redports.org/buildarchive/r370100/ > > > > Log: > > Replace USE_PYTHON* by USES=3Dpython. > > > > This commit consists of area51's r10314 and r10356 patchsets. > > > > Approved by: rakuco (mentor) > > > > Modified: > > head/deskutils/superkaramba/Makefile > > head/devel/py-krosspython/Makefile > > head/devel/py-pykde4/Makefile > > head/devel/py-pykdeuic4/Makefile > > head/devel/py-qt4-qscintilla2/Makefile > > head/devel/py-qt4/Makefile > > head/devel/py-qt4/bsd.pyqt.mk > > head/devel/py-sip/Makefile > > head/editors/kate-plugin-pate/Makefile > > head/games/kajongg/Makefile > > head/lang/qt5-qml/Makefile > > head/math/cantor/Makefile > > head/misc/py-qt4-demo/Makefile > > head/misc/py-qt4-doc/Makefile > > head/net-im/telepathy-logger-qt4/Makefile > > head/net-im/telepathy-logger/Makefile > > head/sysutils/qzeitgeist/Makefile > > head/www/webkit-qt5/Makefile > > head/x11/plasma-scriptengine-python/Makefile >=20 >=20 > > Modified: head/devel/py-qt4/bsd.pyqt.mk > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/devel/py-qt4/bsd.pyqt.mk Sun Oct 5 18:01:19 2014 = (r370099) > > +++ head/devel/py-qt4/bsd.pyqt.mk Sun Oct 5 18:25:00 2014 = (r370100) > > @@ -93,7 +93,7 @@ DISTNAME=3D ${PYQT4_DISTNAME} > > > > DISTINFO_FILE=3D ${PYQT4_DISTINFO_FILE} > > HAS_CONFIGURE=3D yes > > -USE_PYTHON=3D yes > > +USES=3D python > > > > QT_NONSTANDARD=3D yes # Do not add unknown arguments to CONFIG= URE_ARGS. >=20 > This should be +=3D (slave ports) Ah, I see. >=20 > > Modified: head/devel/py-sip/Makefile > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D > > --- head/devel/py-sip/Makefile Sun Oct 5 18:01:19 2014 (r37009= 9) > > +++ head/devel/py-sip/Makefile Sun Oct 5 18:25:00 2014 (r37010= 0) > > @@ -12,8 +12,7 @@ DISTNAME=3D ${SIP_DISTNAME} > > MAINTAINER=3D kde@FreeBSD.org > > COMMENT=3D Python to C and C++ bindings generator > > > > -USE_PYTHON=3D yes > > -PYTHON_PY3K_PLIST_HACK=3D yes > > +USE=3D python:py3kplist > > > > DATADIR=3D ${PREFIX}/share/py-${PORTNAME} > > DOCSDIR=3D ${PREFIX}/share/doc/py-${PORTNAME} >=20 > This syntax doesn't exist. >=20 > Cheers, >=20 > Antoine The correct would be # USE_PYTHON=3Dpy3kplist # USES=3Dpython I assume. Alonso --Signature=_Sun__5_Oct_2014_21_24_48_+0200_ri/CPmUHzn488XMT Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF7BAEBCgBmBQJUMZsJXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGRUQ1N0JDOERFQjk5NEQ5QjUyQzBBMzVG RjhGNkI2RDBBQUNGQzY3AAoJEP+Pa20KrPxngGMH+PH2e8GceamO25e9QT04tcjP 4WhpEEqApnTpYdiok4FnkD4uxmMM9uxcrH/r+AWxVV7Mp0/mpVlYsBZodiB7P48i mBGfA3o+jKaTPDSMU+a1b9iBQP4pxAe0NSOHe3IZRdzHhMS4JYJrqhtXvIHacfbg UOsyW7tPrqkXC+NvbwA+Mxyvr3QmRdODQ1WtXG75eI47NROOmQSEHIqHP6rANtki JaFw2w8fig7482seogyrry3R0vi34bznYM/NzezuriIfalEL3RDsd/XhDSUieAdz bMEEpvwU7WaZRv9SMUUcU7W2TpbOPzlu61az2gQ9djgK2tlpZHt8DzYpY72xBw== =4vuv -----END PGP SIGNATURE----- --Signature=_Sun__5_Oct_2014_21_24_48_+0200_ri/CPmUHzn488XMT-- From owner-svn-ports-head@FreeBSD.ORG Sun Oct 5 19:26:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF133A76; Sun, 5 Oct 2014 19:26:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 993A4E6E; Sun, 5 Oct 2014 19:26:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95JQExe064326; Sun, 5 Oct 2014 19:26:14 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95JQDFG064321; Sun, 5 Oct 2014 19:26:13 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410051926.s95JQDFG064321@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 5 Oct 2014 19:26:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370106 - head/math/taucs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2014 19:26:14 -0000 Author: marino Date: Sun Oct 5 19:26:13 2014 New Revision: 370106 URL: https://svnweb.freebsd.org/changeset/ports/370106 QAT: https://qat.redports.org/buildarchive/r370106/ Log: math/taucs: Removing unnecessary do-extracts target; use NO_WRKSUBDIR With NO_WRKSUBDIR set, there's no need for a roll-your-own extraction target, so remove it from this port. While here: - use instead of
 +  includes
    - Wrap the compound commands in parentheses and use "&&" conjunctions
      instead of ";" for better multijob support
    - Remove several command masks (@) that were suppressing log output
    - Remove duplicate (and broken) softlink creation in lib target
    - Fix second (also broken) softlink creation in do-install target
    - Revbump for last
    - Fix WWW whitespace
    - Remove redundant @dirrm

Modified:
  head/math/taucs/Makefile
  head/math/taucs/pkg-descr
  head/math/taucs/pkg-plist

Modified: head/math/taucs/Makefile
==============================================================================
--- head/math/taucs/Makefile	Sun Oct  5 19:03:12 2014	(r370105)
+++ head/math/taucs/Makefile	Sun Oct  5 19:26:13 2014	(r370106)
@@ -3,7 +3,7 @@
 
 PORTNAME=	taucs
 PORTVERSION=	2.2
-PORTREVISION=	12
+PORTREVISION=	13
 CATEGORIES=	math
 MASTER_SITES=	http://www.tau.ac.il/~stoledo/taucs/${PORTVERSION}/ \
 		LOCAL/bf
@@ -17,12 +17,11 @@ LIB_DEPENDS=	libmetis.so:${PORTSDIR}/mat
 HAS_CONFIGURE=	yes
 USES=		fortran tar:tgz
 USE_LDCONFIG=	yes
-
-WRKSRC=		${WRKDIR}/${PORTNAME}
+NO_WRKSUBDIR=	yes
 
 OPTIONS_DEFINE=	DOCS
 
-.include 
+.include 
 
 LDFLAGS+=	-L${LOCALBASE}/lib
 LIBMETIS?=	-lmetis
@@ -54,11 +53,6 @@ PICFLAG?=	-fPIC
 PICFLAG?=	-fpic
 .endif
 
-do-extract:
-	@${MKDIR} ${WRKSRC}; cd ${WRKSRC}; ${EXTRACT_CMD} \
-	${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \
-	${EXTRACT_AFTER_ARGS}
-
 post-patch:
 	@${REINPLACE_CMD} -e 's/succedd/succeed/' \
 		${WRKSRC}/progs/taucs_blas_underscore_test.c
@@ -66,47 +60,51 @@ post-patch:
 		${WRKSRC}/progs/test_linsolve.c
 
 do-configure:
-	@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${SH} ./configure
+	(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${SH} ./configure)
 
 post-configure:
 	@${CP} -r ${WRKSRC} ${WRKSRC}_SHARED
 
 archives: configure
 	@${PRINTF} "\n\n%s\n\n\n" "Building libtaucs archives:"
-	@cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} \
-	${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} lib/FreeBSD/libtaucs.a
-	@cd ${WRKSRC}_SHARED ; ${SETENV} ${MAKE_ENV} \
-	PICFLAG="${PICFLAG}" \
-	${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} lib/FreeBSD/libtaucs.a
+	(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \
+		${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} lib/FreeBSD/libtaucs.a)
+	(cd ${WRKSRC}_SHARED && ${SETENV} ${MAKE_ENV} PICFLAG="${PICFLAG}" \
+		${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} lib/FreeBSD/libtaucs.a)
 
 lib: archives
 	@${PRINTF} "\n\n%s\n\n\n" "Building shared library:"
-	cd ${WRKSRC}_SHARED/lib/FreeBSD ; ${FC} ${FFLAGS} ${PICFLAG} ${LDFLAGS} \
-	-shared -o libtaucs.so.1 -Wl,-x -Wl,-soname,libtaucs.so.1 -Wl,--whole-archive \
-	libtaucs.a -Wl,--no-whole-archive
-	@${LN} -sf libtaucs.so.1 ${WRKSRC}_SHARED/lib/FreeBSD/libtaucs.so
+	(cd ${WRKSRC}_SHARED/lib/FreeBSD && \
+		${FC} ${FFLAGS} ${PICFLAG} ${LDFLAGS} -shared \
+		-o libtaucs.so.1 -Wl,-x -Wl,-soname,libtaucs.so.1 \
+		-Wl,--whole-archive libtaucs.a -Wl,--no-whole-archive)
+	${STRIP_CMD} ${WRKSRC}_SHARED/lib/FreeBSD/libtaucs.so.1
 
 bins: lib
 	@${PRINTF} "\n\n%s\n\n\n" "Building (dynamically-linked) executables:"
 #for the second pass through WRKSRC_SHARED, use a nonexistent MAKEOBJDIR to
 #prevent make from entering the obj subdirectories and breaking the build (see,
 #for example, the description of .OBJDIR in make(1)):
-	@cd ${WRKSRC}_SHARED ; ${SETENV} ${MAKE_ENV} \
-	MAKEOBJDIR="${NONEXISTENT}" \
-	${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} ${BINS:S|^|bin/FreeBSD/|}
+	(cd ${WRKSRC}_SHARED && \
+		${SETENV} ${MAKE_ENV} MAKEOBJDIR="${NONEXISTENT}" \
+		${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} ${BINS:S|^|bin/FreeBSD/|})
 
 do-build: bins
 
 do-install:
-	@${INSTALL_DATA} ${WRKSRC}/lib/FreeBSD/libtaucs.a ${STAGEDIR}${PREFIX}/lib
-	@${INSTALL_DATA} ${WRKSRC}_SHARED/lib/FreeBSD/libtaucs.so.1 ${STAGEDIR}${PREFIX}/lib
-	@${LN} -sf libtaucs.so.1 ${STAGEDIR}${PREFIX}/lib/libtaucs.so
-	@${INSTALL_DATA} ${WRKSRC}/build/FreeBSD/*.h ${STAGEDIR}${PREFIX}/include
-	@${INSTALL_DATA} ${WRKSRC}/src/*.h ${STAGEDIR}${PREFIX}/include
-	@cd ${WRKSRC}_SHARED/bin/FreeBSD; ${INSTALL_PROGRAM} ${BINS} ${STAGEDIR}${PREFIX}/bin
+	${INSTALL_DATA} ${WRKSRC}/lib/FreeBSD/libtaucs.a \
+		${STAGEDIR}${PREFIX}/lib
+	${INSTALL_DATA} ${WRKSRC}_SHARED/lib/FreeBSD/libtaucs.so.1 \
+		${STAGEDIR}${PREFIX}/lib
+	(cd ${STAGEDIR}${PREFIX}/lib && ${LN} -s libtaucs.so.1 libtaucs.so)
+	${INSTALL_DATA} ${WRKSRC}/build/FreeBSD/*.h \
+		${STAGEDIR}${PREFIX}/include
+	${INSTALL_DATA} ${WRKSRC}/src/*.h ${STAGEDIR}${PREFIX}/include
+	(cd ${WRKSRC}_SHARED/bin/FreeBSD && \
+		${INSTALL_PROGRAM} ${BINS} ${STAGEDIR}${PREFIX}/bin)
 .if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-	@${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${STAGEDIR}${DOCSDIR}
 .endif
 
 check test: build
@@ -129,4 +127,4 @@ check test: build
 regression-test: check
 .endif
 
-.include 
+.include 

Modified: head/math/taucs/pkg-descr
==============================================================================
--- head/math/taucs/pkg-descr	Sun Oct  5 19:03:12 2014	(r370105)
+++ head/math/taucs/pkg-descr	Sun Oct  5 19:26:13 2014	(r370106)
@@ -19,4 +19,4 @@ The current version of the library inclu
 Copyright (c) 2001 by Sivan Toledo, Tel-Aviv University, 
 stoledo@tau.ac.il. All Rights Reserved.
 
-WWW:  http://www.tau.ac.il/~stoledo/taucs/
+WWW: http://www.tau.ac.il/~stoledo/taucs/

Modified: head/math/taucs/pkg-plist
==============================================================================
--- head/math/taucs/pkg-plist	Sun Oct  5 19:03:12 2014	(r370105)
+++ head/math/taucs/pkg-plist	Sun Oct  5 19:26:13 2014	(r370106)
@@ -10,4 +10,3 @@ include/taucs_config_tests.h
 include/taucs_private.h
 %%PORTDOCS%%%%DOCSDIR%%/taucs.pdf
 %%PORTDOCS%%%%DOCSDIR%%/cilk-mf.pdf
-%%PORTDOCS%%@dirrm %%DOCSDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 19:29:37 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 45E2FB8E;
 Sun,  5 Oct 2014 19:29:37 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2FB7AE88;
 Sun,  5 Oct 2014 19:29:37 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95JTbjn064941;
 Sun, 5 Oct 2014 19:29:37 GMT (envelope-from hrs@FreeBSD.org)
Received: (from hrs@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95JTats064939;
 Sun, 5 Oct 2014 19:29:36 GMT (envelope-from hrs@FreeBSD.org)
Message-Id: <201410051929.s95JTats064939@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: hrs set sender to hrs@FreeBSD.org
 using -f
From: Hiroki Sato 
Date: Sun, 5 Oct 2014 19:29:36 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370107 - in head/japanese: FreeWnn-lib FreeWnn-lib/files
 FreeWnn-server FreeWnn-server/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 19:29:37 -0000

Author: hrs
Date: Sun Oct  5 19:29:36 2014
New Revision: 370107
URL: https://svnweb.freebsd.org/changeset/ports/370107
QAT: https://qat.redports.org/buildarchive/r370107/

Log:
  Remove redundant patches mistakenly added back in r367909.
  
  Pointed out by:	tijl

Deleted:
  head/japanese/FreeWnn-lib/files/patch-aclocal.m4
  head/japanese/FreeWnn-lib/files/patch-config.h.in
  head/japanese/FreeWnn-lib/files/patch-configure
  head/japanese/FreeWnn-lib/files/patch-ltmain.sh
  head/japanese/FreeWnn-server/files/patch-aclocal.m4
  head/japanese/FreeWnn-server/files/patch-config.h.in
  head/japanese/FreeWnn-server/files/patch-configure
  head/japanese/FreeWnn-server/files/patch-ltmain.sh
Modified:
  head/japanese/FreeWnn-lib/Makefile
  head/japanese/FreeWnn-server/Makefile

Modified: head/japanese/FreeWnn-lib/Makefile
==============================================================================
--- head/japanese/FreeWnn-lib/Makefile	Sun Oct  5 19:26:13 2014	(r370106)
+++ head/japanese/FreeWnn-lib/Makefile	Sun Oct  5 19:29:36 2014	(r370107)
@@ -3,7 +3,7 @@
 
 PORTNAME=	FreeWnn
 PORTVERSION=	1.1.1.a021
-PORTREVISION=	12
+PORTREVISION=	13
 CATEGORIES?=	japanese
 MASTER_SITES=	ftp://ftp.freewnn.org/pub/%SUBDIR%/ \
 		${MASTER_SITE_SOURCEFORGE_JP}

Modified: head/japanese/FreeWnn-server/Makefile
==============================================================================
--- head/japanese/FreeWnn-server/Makefile	Sun Oct  5 19:26:13 2014	(r370106)
+++ head/japanese/FreeWnn-server/Makefile	Sun Oct  5 19:29:36 2014	(r370107)
@@ -3,7 +3,7 @@
 
 PORTNAME=	FreeWnn
 PORTVERSION=	1.1.1.a021
-PORTREVISION=	12
+PORTREVISION=	13
 CATEGORIES?=	japanese
 MASTER_SITES=	ftp://ftp.freewnn.org/pub/%SUBDIR%/ \
 		${MASTER_SITE_SOURCEFORGE_JP}

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 19:57:42 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BD89A683;
 Sun,  5 Oct 2014 19:57:42 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A813F1C4;
 Sun,  5 Oct 2014 19:57:42 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95JvgK1078907;
 Sun, 5 Oct 2014 19:57:42 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95JvgAE078905;
 Sun, 5 Oct 2014 19:57:42 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410051957.s95JvgAE078905@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 19:57:42 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370108 - in head/graphics/lib3ds: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 19:57:42 -0000

Author: tijl
Date: Sun Oct  5 19:57:41 2014
New Revision: 370108
URL: https://svnweb.freebsd.org/changeset/ports/370108
QAT: https://qat.redports.org/buildarchive/r370108/

Log:
  Add USES=libtool and INSTALL_TARGET=install-strip

Deleted:
  head/graphics/lib3ds/files/
Modified:
  head/graphics/lib3ds/Makefile
  head/graphics/lib3ds/pkg-plist

Modified: head/graphics/lib3ds/Makefile
==============================================================================
--- head/graphics/lib3ds/Makefile	Sun Oct  5 19:29:36 2014	(r370107)
+++ head/graphics/lib3ds/Makefile	Sun Oct  5 19:57:41 2014	(r370108)
@@ -3,7 +3,7 @@
 
 PORTNAME=	lib3ds
 PORTVERSION=	1.3.0
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	graphics
 MASTER_SITES=	GOOGLE_CODE
 
@@ -12,12 +12,13 @@ COMMENT=	Library for handling 3DS (3D St
 
 LICENSE=	LGPL21 # (or later)
 
-USES=		zip
-USE_GL=		glut
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+USES=		libtool zip
+USE_GL=		glut
 USE_LDCONFIG=	yes
 
 CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
+LIBS+=		-L${LOCALBASE}/lib
 
 .include 

Modified: head/graphics/lib3ds/pkg-plist
==============================================================================
--- head/graphics/lib3ds/pkg-plist	Sun Oct  5 19:29:36 2014	(r370107)
+++ head/graphics/lib3ds/pkg-plist	Sun Oct  5 19:57:41 2014	(r370108)
@@ -19,11 +19,10 @@ include/lib3ds/tracks.h
 include/lib3ds/types.h
 include/lib3ds/vector.h
 include/lib3ds/viewport.h
-lib/lib3ds-1.so
 lib/lib3ds-1.so.3
+lib/lib3ds-1.so.3.0.0
 lib/lib3ds.a
 lib/lib3ds.so
 man/man1/3dsdump.1.gz
 man/man1/lib3ds-config.1.gz
 share/aclocal/lib3ds.m4
-@dirrm include/lib3ds

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 19:59:19 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 38CDD77F;
 Sun,  5 Oct 2014 19:59:19 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2391B1D0;
 Sun,  5 Oct 2014 19:59:19 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95JxJdx079237;
 Sun, 5 Oct 2014 19:59:19 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95JxJBs079235;
 Sun, 5 Oct 2014 19:59:19 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410051959.s95JxJBs079235@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 19:59:19 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370109 - in head/ftp/lftp: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 19:59:19 -0000

Author: tijl
Date: Sun Oct  5 19:59:18 2014
New Revision: 370109
URL: https://svnweb.freebsd.org/changeset/ports/370109
QAT: https://qat.redports.org/buildarchive/r370109/

Log:
  Convert to USES=charsetfix and USES=libtool

Deleted:
  head/ftp/lftp/files/patch-build-aux-ltmain.sh
  head/ftp/lftp/files/patch-lib-Makefile.in
Modified:
  head/ftp/lftp/Makefile

Modified: head/ftp/lftp/Makefile
==============================================================================
--- head/ftp/lftp/Makefile	Sun Oct  5 19:57:41 2014	(r370108)
+++ head/ftp/lftp/Makefile	Sun Oct  5 19:59:18 2014	(r370109)
@@ -20,7 +20,7 @@ LICENSE=	GPLv3
 
 LIB_DEPENDS=	libexpat.so:${PORTSDIR}/textproc/expat2
 
-USES=		iconv readline shebangfix
+USES=		charsetfix iconv libtool readline shebangfix
 
 CPPFLAGS+=	-I${LOCALBASE}/include
 LIBS+=		-L${LOCALBASE}/lib

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:12:25 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 569979A8;
 Sun,  5 Oct 2014 20:12:25 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 3608D382;
 Sun,  5 Oct 2014 20:12:25 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KCP80088105;
 Sun, 5 Oct 2014 20:12:25 GMT (envelope-from antoine@FreeBSD.org)
Received: (from antoine@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KCOts088099;
 Sun, 5 Oct 2014 20:12:24 GMT (envelope-from antoine@FreeBSD.org)
Message-Id: <201410052012.s95KCOts088099@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: antoine set sender to
 antoine@FreeBSD.org using -f
From: Antoine Brodin 
Date: Sun, 5 Oct 2014 20:12:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370110 - in head/security: . py-rekall
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:12:25 -0000

Author: antoine
Date: Sun Oct  5 20:12:23 2014
New Revision: 370110
URL: https://svnweb.freebsd.org/changeset/ports/370110
QAT: https://qat.redports.org/buildarchive/r370110/

Log:
  New port: security/py-rekall
  
  The Rekall Framework is a completely open collection of tools, implemented in
  Python under the GNU General Public License, for the extraction of digital
  artifacts from volatile memory (RAM) samples. The extraction techniques are
  performed completely independent of the system being investigated but offer
  visibility into the runtime state of the system. The framework is intended to
  introduce people to the techniques and complexities associated with extracting
  digital artifacts from volatile memory samples and provide a platform for
  further work into this exciting area of research.
  
  WWW: http://www.rekall-forensic.com/

Added:
  head/security/py-rekall/
  head/security/py-rekall/Makefile   (contents, props changed)
  head/security/py-rekall/distinfo   (contents, props changed)
  head/security/py-rekall/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun Oct  5 19:59:18 2014	(r370109)
+++ head/security/Makefile	Sun Oct  5 20:12:23 2014	(r370110)
@@ -795,6 +795,7 @@
     SUBDIR += py-pyptlib
     SUBDIR += py-pysha3
     SUBDIR += py-python-registry
+    SUBDIR += py-rekall
     SUBDIR += py-rsa
     SUBDIR += py-service_identity
     SUBDIR += py-slowaes

Added: head/security/py-rekall/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-rekall/Makefile	Sun Oct  5 20:12:23 2014	(r370110)
@@ -0,0 +1,46 @@
+# Created by: antoine@FreeBSD.org
+# $FreeBSD$
+
+PORTNAME=	rekall
+DISTVERSION=	1.1.0.beta
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	antoine@FreeBSD.org
+COMMENT=	Memory forensics analysis framework
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	cabextract:${PORTSDIR}/archivers/cabextract \
+		${PYTHON_PKGNAMEPREFIX}acora>=1.8:${PORTSDIR}/textproc/py-acora \
+		${PYTHON_PKGNAMEPREFIX}codegen>=1.0:${PORTSDIR}/devel/py-codegen \
+		${PYTHON_PKGNAMEPREFIX}distorm>=0:${PORTSDIR}/devel/py-distorm \
+		${PYTHON_PKGNAMEPREFIX}Flask>=0.10.1:${PORTSDIR}/www/py-flask \
+		${PYTHON_PKGNAMEPREFIX}Flask-Sockets>=0:${PORTSDIR}/www/py-flask-sockets \
+		${PYTHON_PKGNAMEPREFIX}gevent>=1.0.1:${PORTSDIR}/devel/py-gevent \
+		${PYTHON_PKGNAMEPREFIX}gevent-websocket>=0.9.3:${PORTSDIR}/www/py-gevent-websocket \
+		${PYTHON_PKGNAMEPREFIX}ipython>=2.0.0:${PORTSDIR}/devel/ipython \
+		${PYTHON_PKGNAMEPREFIX}pycrypto>=2.3.1:${PORTSDIR}/security/py-pycrypto \
+		${PYTHON_PKGNAMEPREFIX}pyelftools>=0.21:${PORTSDIR}/devel/py-pyelftools \
+		${PYTHON_PKGNAMEPREFIX}pytz>=2012:${PORTSDIR}/devel/py-pytz \
+		${PYTHON_PKGNAMEPREFIX}yaml>=2.10:${PORTSDIR}/devel/py-yaml \
+		${PYTHON_PKGNAMEPREFIX}yara>=0:${PORTSDIR}/security/py-yara
+
+USES=		python:2
+USE_PYTHON=	distutils autoplist
+
+PORTDOCS=	CREDITS.txt LEGAL.txt README.md
+
+OPTIONS_DEFINE=	DOCS
+
+post-patch:
+	@${CHMOD} -R a+rX ${WRKSRC}
+	@${REINPLACE_CMD} '/argparse/d' ${WRKSRC}/setup.py
+
+post-install:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
+
+.include 

Added: head/security/py-rekall/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-rekall/distinfo	Sun Oct  5 20:12:23 2014	(r370110)
@@ -0,0 +1,2 @@
+SHA256 (rekall-1.1.0.beta.tar.gz) = 2815ec19aefe7c3ef48a49b5a054f0c8d9242cc9855e525a2ea872ff3da2f4d6
+SIZE (rekall-1.1.0.beta.tar.gz) = 3510576

Added: head/security/py-rekall/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-rekall/pkg-descr	Sun Oct  5 20:12:23 2014	(r370110)
@@ -0,0 +1,10 @@
+The Rekall Framework is a completely open collection of tools, implemented in
+Python under the GNU General Public License, for the extraction of digital
+artifacts from volatile memory (RAM) samples. The extraction techniques are
+performed completely independent of the system being investigated but offer
+visibility into the runtime state of the system. The framework is intended to
+introduce people to the techniques and complexities associated with extracting
+digital artifacts from volatile memory samples and provide a platform for
+further work into this exciting area of research.
+
+WWW: http://www.rekall-forensic.com/

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:18:01 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 18BDDB52;
 Sun,  5 Oct 2014 20:18:01 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id EC8C33DA;
 Sun,  5 Oct 2014 20:18:00 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KI0Ll088984;
 Sun, 5 Oct 2014 20:18:00 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KI0V0088963;
 Sun, 5 Oct 2014 20:18:00 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052018.s95KI0V0088963@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 20:17:59 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370111 - in head/graphics: graphviz gts gts/files pygts
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:18:01 -0000

Author: tijl
Date: Sun Oct  5 20:17:59 2014
New Revision: 370111
URL: https://svnweb.freebsd.org/changeset/ports/370111
QAT: https://qat.redports.org/buildarchive/r370111/

Log:
  graphics/gts:
  - Convert to USES=libtool and bump dependent ports
  - Convert to USES=pathfix
  - Add INSTALL_TARGET=install-strip

Deleted:
  head/graphics/gts/files/patch-gts.pc.in
  head/graphics/gts/files/patch-ltmain.sh
Modified:
  head/graphics/graphviz/Makefile
  head/graphics/gts/Makefile
  head/graphics/gts/pkg-plist
  head/graphics/pygts/Makefile

Modified: head/graphics/graphviz/Makefile
==============================================================================
--- head/graphics/graphviz/Makefile	Sun Oct  5 20:12:23 2014	(r370110)
+++ head/graphics/graphviz/Makefile	Sun Oct  5 20:17:59 2014	(r370111)
@@ -3,7 +3,7 @@
 
 PORTNAME=	graphviz
 PORTVERSION=	2.38.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics tk
 MASTER_SITES=	http://www.graphviz.org/pub/graphviz/ARCHIVE/
 

Modified: head/graphics/gts/Makefile
==============================================================================
--- head/graphics/gts/Makefile	Sun Oct  5 20:12:23 2014	(r370110)
+++ head/graphics/gts/Makefile	Sun Oct  5 20:17:59 2014	(r370111)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gts
 PORTVERSION=	0.7.6
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics
 MASTER_SITES=	SF
 
@@ -14,9 +14,10 @@ LICENSE=	LGPL20
 
 CONFLICTS=	pcb-[0-9]*
 
-USES=		pkgconfig
-USE_GNOME=	glib20
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+USES=		libtool pathfix pkgconfig
+USE_GNOME=	glib20
 USE_LDCONFIG=	yes
 
 OPTIONS_DEFINE=	NETPBM
@@ -26,18 +27,14 @@ NETPBM_DESC=		Build with libnetpbm suppo
 NETPBM_LIB_DEPENDS=	libnetpbm.so:${PORTSDIR}/graphics/netpbm
 
 CPPFLAGS+=	-I${LOCALBASE}/include
-LDFLAGS+=	-L${LOCALBASE}/lib
+LIBS+=		-L${LOCALBASE}/lib
 
 .include 
 
-post-extract:
+post-patch:
 .if ! ${PORT_OPTIONS:MNETPBM}
 	@${REINPLACE_CMD} -e 's|netpbm="true"|netpbm="false"|' \
 		${WRKSRC}/configure
 .endif
 
-post-patch:
-	@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} -e \
-		's|-release \$$(LT_RELEASE)||g ; s|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|'
-
 .include 

Modified: head/graphics/gts/pkg-plist
==============================================================================
--- head/graphics/gts/pkg-plist	Sun Oct  5 20:12:23 2014	(r370110)
+++ head/graphics/gts/pkg-plist	Sun Oct  5 20:17:59 2014	(r370111)
@@ -11,8 +11,9 @@ bin/stl2gts
 bin/transform
 include/gts.h
 include/gtsconfig.h
+lib/libgts-0.7.so.5
+lib/libgts-0.7.so.5.0.1
 lib/libgts.a
 lib/libgts.so
-lib/libgts.so.5
 libdata/pkgconfig/gts.pc
 share/aclocal/gts.m4

Modified: head/graphics/pygts/Makefile
==============================================================================
--- head/graphics/pygts/Makefile	Sun Oct  5 20:12:23 2014	(r370110)
+++ head/graphics/pygts/Makefile	Sun Oct  5 20:17:59 2014	(r370111)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pygts
 PORTVERSION=	0.3.1
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	graphics python
 MASTER_SITES=	SF
 

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:23:21 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BE36FD19;
 Sun,  5 Oct 2014 20:23:21 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A88B8679;
 Sun,  5 Oct 2014 20:23:21 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KNLZ9093233;
 Sun, 5 Oct 2014 20:23:21 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KNL1l093231;
 Sun, 5 Oct 2014 20:23:21 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052023.s95KNL1l093231@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 20:23:21 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370112 - in head/devel/pcsc-lite: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:23:21 -0000

Author: tijl
Date: Sun Oct  5 20:23:20 2014
New Revision: 370112
URL: https://svnweb.freebsd.org/changeset/ports/370112
QAT: https://qat.redports.org/buildarchive/r370112/

Log:
  - Add USES=libtool and INSTALL_TARGET=install-strip
  - Remove WITHOUT_USB
  - Remove FreeBSD < 8 support
  - Remove .keep_me files

Deleted:
  head/devel/pcsc-lite/files/patch-ltmain.sh
Modified:
  head/devel/pcsc-lite/Makefile
  head/devel/pcsc-lite/pkg-plist

Modified: head/devel/pcsc-lite/Makefile
==============================================================================
--- head/devel/pcsc-lite/Makefile	Sun Oct  5 20:17:59 2014	(r370111)
+++ head/devel/pcsc-lite/Makefile	Sun Oct  5 20:23:20 2014	(r370112)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pcsc-lite
 PORTVERSION=	1.8.11
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	2
 CATEGORIES=	devel security
 MASTER_SITES=	https://alioth.debian.org/frs/download.php/file/3991/
@@ -15,33 +15,28 @@ LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 GNU_CONFIGURE=	yes
-USES=		gmake perl5 pathfix pkgconfig shebangfix tar:bzip2
+INSTALL_TARGET=	install-strip
+USES=		gmake libtool pathfix perl5 pkgconfig shebangfix tar:bzip2
 USE_PERL5=	build
 USE_RC_SUBR=	pcscd
 SHEBANG_FILES=	${WRKSRC}/src/spy/pcsc-spy
 
 USE_LDCONFIG=	yes
-CONFIGURE_ARGS=	--enable-usbdropdir=${PREFIX}/lib/pcsc/drivers/
+CONFIGURE_ARGS=	--enable-usbdropdir=${PREFIX}/lib/pcsc/drivers/ \
+		LIBUSB_CFLAGS=" " LIBUSB_LIBS="-lusb"
 
 PKGMESSAGE=	${WRKDIR}/pkg-message
 
 OPTIONS_DEFINE=	DOCS EXAMPLES
 
-.include 
+.include 
 
-.if ${OSVERSION} < 1000000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
 FETCH_DEPENDS=	wget:${PORTSDIR}/ftp/wget
 DISABLE_SIZE=	yes
 FETCH_CMD=	${LOCALBASE}/bin/wget -c -nc --no-check-certificate
 .endif
 
-.if !defined(WITHOUT_USB) && ${OSVERSION} >= 800069
-CONFIGURE_ENV+=	LIBUSB_LIBS="-lusb"
-CONFIGURE_ARGS+=--enable-libusb=/usr
-.else
-BROKEN=		FreeBSD 7.x does not ship with a supported libusb
-.endif
-
 post-patch:
 	${REINPLACE_CMD} -e "s,^datadir,#datadir,; s,^data_DATA,#data_DATA," \
 		${WRKSRC}/doc/Makefile.in
@@ -53,14 +48,6 @@ post-patch:
 	${REINPLACE_CMD} -e '/^install-data-am: / s|install-docDATA||' ${WRKSRC}/doc/Makefile.in
 .endif
 
-pre-everything::
-.if !defined(WITHOUT_USB) && ${OSVERSION} >= 800069
-	@${ECHO_MSG}
-	@${ECHO_MSG} "pcsc-lite has the following option(s):"
-	@${ECHO_MSG} "  WITHOUT_USB=yes            Disable USB support"
-	@${ECHO_MSG}
-.endif
-
 post-install:
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 	${INSTALL_DATA} ${WRKSRC}/doc/example/Makefile.am ${STAGEDIR}${EXAMPLESDIR}
@@ -68,10 +55,7 @@ post-install:
 	${INSTALL_DATA} ${WRKSRC}/doc/example/pcsc_demo.c ${STAGEDIR}${EXAMPLESDIR}
 	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/pcsc/drivers
 	@${MKDIR} ${STAGEDIR}${PREFIX}/lib/pcsc/services
-	${TOUCH} ${STAGEDIR}${PREFIX}/lib/pcsc/drivers/.keep_me
-	${TOUCH} ${STAGEDIR}${PREFIX}/lib/pcsc/services/.keep_me
 	@${SED} 's,%%PREFIX%%,${PREFIX},g' < ${FILESDIR}/pkg-message.in > \
 		${WRKDIR}/pkg-message
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpcsclite.so.1 ${STAGEDIR}${PREFIX}/lib/libpcscspy.so.0
 
-.include 
+.include 

Modified: head/devel/pcsc-lite/pkg-plist
==============================================================================
--- head/devel/pcsc-lite/pkg-plist	Sun Oct  5 20:17:59 2014	(r370111)
+++ head/devel/pcsc-lite/pkg-plist	Sun Oct  5 20:23:20 2014	(r370112)
@@ -7,10 +7,10 @@ include/PCSC/winscard.h
 include/PCSC/wintypes.h
 lib/libpcsclite.so
 lib/libpcsclite.so.1
+lib/libpcsclite.so.1.0.0
 lib/libpcscspy.so
 lib/libpcscspy.so.0
-lib/pcsc/drivers/.keep_me
-lib/pcsc/services/.keep_me
+lib/libpcscspy.so.0.0.0
 libdata/pkgconfig/libpcsclite.pc
 sbin/pcscd
 %%PORTDOCS%%%%DOCSDIR%%/README.DAEMON
@@ -18,12 +18,8 @@ sbin/pcscd
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.am
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.in
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pcsc_demo.c
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
 man/man1/pcsc-spy.1.gz
 man/man5/reader.conf.5.gz
 man/man8/pcscd.8.gz
-@dirrm lib/pcsc/services
-@dirrm lib/pcsc/drivers
-@dirrm lib/pcsc
-@dirrm include/PCSC
+@dir lib/pcsc/services
+@dir lib/pcsc/drivers

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:29:49 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id C47157E;
 Sun,  5 Oct 2014 20:29:49 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id AF9666B7;
 Sun,  5 Oct 2014 20:29:49 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KTnuQ094080;
 Sun, 5 Oct 2014 20:29:49 GMT (envelope-from antoine@FreeBSD.org)
Received: (from antoine@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KTnn9094079;
 Sun, 5 Oct 2014 20:29:49 GMT (envelope-from antoine@FreeBSD.org)
Message-Id: <201410052029.s95KTnn9094079@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: antoine set sender to
 antoine@FreeBSD.org using -f
From: Antoine Brodin 
Date: Sun, 5 Oct 2014 20:29:49 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370113 - head/audio/boodler
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:29:49 -0000

Author: antoine
Date: Sun Oct  5 20:29:48 2014
New Revision: 370113
URL: https://svnweb.freebsd.org/changeset/ports/370113
QAT: https://qat.redports.org/buildarchive/r370113/

Log:
  Unbreak

Modified:
  head/audio/boodler/Makefile

Modified: head/audio/boodler/Makefile
==============================================================================
--- head/audio/boodler/Makefile	Sun Oct  5 20:23:20 2014	(r370112)
+++ head/audio/boodler/Makefile	Sun Oct  5 20:29:48 2014	(r370113)
@@ -24,6 +24,7 @@ CONFIGURE_ARGS=	--include ${LOCALBASE}/i
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
 SHEBANG_FILES=	${CONFIGURE_SCRIPT}
+python_CMD=	${PYTHON_CMD}
 SUB_FILES=	boodler-wrapper
 SUB_LIST=	PYTHON_CMD=${PYTHON_CMD}
 

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:32:23 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 5C80E2F8;
 Sun,  5 Oct 2014 20:32:23 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 47A977B8;
 Sun,  5 Oct 2014 20:32:23 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KWN2I098012;
 Sun, 5 Oct 2014 20:32:23 GMT (envelope-from alonso@FreeBSD.org)
Received: (from alonso@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KWMgG098010;
 Sun, 5 Oct 2014 20:32:22 GMT (envelope-from alonso@FreeBSD.org)
Message-Id: <201410052032.s95KWMgG098010@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: alonso set sender to
 alonso@FreeBSD.org using -f
From: Alonso Schaich 
Date: Sun, 5 Oct 2014 20:32:22 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370114 - in head/devel: py-qt4 py-sip
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:32:23 -0000

Author: alonso
Date: Sun Oct  5 20:32:22 2014
New Revision: 370114
URL: https://svnweb.freebsd.org/changeset/ports/370114
QAT: https://qat.redports.org/buildarchive/r370114/

Log:
  Fix USES issues.
  
  (Hopefuly) fix issues introduced in r370100. This commit consists of area51
  revisions 10357, 10359 and 10360.
  
  Approved by:	rakuco (mentor)

Modified:
  head/devel/py-qt4/bsd.pyqt.mk
  head/devel/py-sip/Makefile

Modified: head/devel/py-qt4/bsd.pyqt.mk
==============================================================================
--- head/devel/py-qt4/bsd.pyqt.mk	Sun Oct  5 20:29:48 2014	(r370113)
+++ head/devel/py-qt4/bsd.pyqt.mk	Sun Oct  5 20:32:22 2014	(r370114)
@@ -93,7 +93,7 @@ DISTNAME=	${PYQT4_DISTNAME}
 
 DISTINFO_FILE=	${PYQT4_DISTINFO_FILE}
 HAS_CONFIGURE=	yes
-USES=		python
+USES+=		python
 
 QT_NONSTANDARD=	yes  # Do not add unknown arguments to CONFIGURE_ARGS.
 

Modified: head/devel/py-sip/Makefile
==============================================================================
--- head/devel/py-sip/Makefile	Sun Oct  5 20:29:48 2014	(r370113)
+++ head/devel/py-sip/Makefile	Sun Oct  5 20:32:22 2014	(r370114)
@@ -12,7 +12,8 @@ DISTNAME=	${SIP_DISTNAME}
 MAINTAINER=	kde@FreeBSD.org
 COMMENT=	Python to C and C++ bindings generator
 
-USE=		python:py3kplist
+USES=		python
+USE_PYTHON=	py3kplist
 
 DATADIR=	${PREFIX}/share/py-${PORTNAME}
 DOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:35:47 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 901433F4;
 Sun,  5 Oct 2014 20:35:47 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 79BA67CC;
 Sun,  5 Oct 2014 20:35:47 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KZlhg098631;
 Sun, 5 Oct 2014 20:35:47 GMT (envelope-from rm@FreeBSD.org)
Received: (from rm@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KZkvj098626;
 Sun, 5 Oct 2014 20:35:46 GMT (envelope-from rm@FreeBSD.org)
Message-Id: <201410052035.s95KZkvj098626@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org
 using -f
From: Ruslan Makhmatkhanov 
Date: Sun, 5 Oct 2014 20:35:46 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370115 - in head/net-im/gajim: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:35:47 -0000

Author: rm
Date: Sun Oct  5 20:35:45 2014
New Revision: 370115
URL: https://svnweb.freebsd.org/changeset/ports/370115
QAT: https://qat.redports.org/buildarchive/r370115/

Log:
  net-im/gajim: update to 0.16
  
  - update to 0.16
  - add LICENSE_FILE
  - add dependency on net-im/py-nbxmpp
  - remove local patch for host/nslookup issue - the proper solution was
    implemented upstream
  - remove dirrms from pkg-plist
  
  Changelog:
  https://bugs.launchpad.net/ubuntu/+source/gajim/+bug/1377589
  
  - cherrypicking changes from ports/188651 [1]:
    - sort knobs
    - add missing GUPNP option description
    - explicitly define intltool dependency
    - beautify commandline in pre-build target
    - add pkg-message with crypto plugins information
  
  PR:		188651
  Submitted by:   nemysis [1]

Added:
  head/net-im/gajim/files/pkg-message.in   (contents, props changed)
Deleted:
  head/net-im/gajim/files/extra-patch-src-common_resolver.py
Modified:
  head/net-im/gajim/Makefile
  head/net-im/gajim/distinfo
  head/net-im/gajim/files/patch-src-Makefile.in
  head/net-im/gajim/pkg-plist

Modified: head/net-im/gajim/Makefile
==============================================================================
--- head/net-im/gajim/Makefile	Sun Oct  5 20:32:22 2014	(r370114)
+++ head/net-im/gajim/Makefile	Sun Oct  5 20:35:45 2014	(r370115)
@@ -2,36 +2,38 @@
 # $FreeBSD$
 
 PORTNAME=	gajim
-PORTVERSION=	0.15.4
-PORTREVISION=	1
+PORTVERSION=	0.16
 CATEGORIES=	net-im
-MASTER_SITES=	http://gajim.org/downloads/0.15/
+MASTER_SITES=	http://gajim.org/downloads/0.16/
 
 MAINTAINER=	rm@FreeBSD.org
 COMMENT=	Jabber client based on a plugin system
 
 LICENSE=	GPLv3
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}openssl>=0:${PORTSDIR}/security/py-openssl \
 		${PYTHON_PKGNAMEPREFIX}sqlite3>=0:${PORTSDIR}/databases/py-sqlite3 \
-		${PYTHON_PKGNAMEPREFIX}asn1>=0:${PORTSDIR}/devel/py-asn1
+		${PYTHON_PKGNAMEPREFIX}asn1>=0:${PORTSDIR}/devel/py-asn1 \
+		${PYTHON_PKGNAMEPREFIX}nbxmpp>0:${PORTSDIR}/net-im/py-nbxmpp
 
-GNU_CONFIGURE=	yes
-INSTALLS_ICONS=	yes
-USES=		dos2unix gmake pathfix tar:bzip2
-DOS2UNIX_FILES=	src/plugins/plugins_i18n.py
-USE_GNOME=	pygtk2
-USE_PYTHON=	2
+USES=		dos2unix gmake pathfix python:2 tar:bzip2
+USE_GNOME=	intltool pygtk2
 USE_XORG=	x11 xext xscrnsaver
 
+DOS2UNIX_FILES=	src/plugins/plugins_i18n.py
+GNU_CONFIGURE=	yes
 CONFIGURE_ENV+=	PYTHON=${PYTHON_CMD}
+INSTALLS_ICONS=	yes
 LDFLAGS+=	-L${LOCALBASE}/lib
 CFLAGS+=	-I${LOCALBASE}/include
 
 OPTIONS_DEFINE=	AVAHI CRYPTO DBUS DOCS GUPNP KEYRING NLS SPELL
 OPTIONS_DEFAULT=DBUS NLS SPELL
 OPTIONS_SUB=	yes
+
 CRYPTO_DESC=	End to end encryption support
+GUPNP_DESC=	UPnP IGD protocol support
 KEYRING_DESC=	Gnome Keyring support
 SPELL_DESC=	Spell checking support
 
@@ -44,19 +46,14 @@ NLS_USES=		gettext
 SPELL_LIB_DEPENDS=	libgtkspell.so:${PORTSDIR}/textproc/gtkspell
 
 PORTDOCS=	AUTHORS ChangeLog README.html
-
-.include 
-
-.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
-EXTRA_PATCHES+=	${FILESDIR}/extra-patch-src-common_resolver.py
-.endif
+SUB_FILES=	pkg-message
 
 post-install:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 
 pre-build:
-	${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
-	${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC}/src
+	${PYTHON_CMD} -m compileall ${WRKSRC}/src
+	${PYTHON_CMD} -O -m compileall ${WRKSRC}/src
 
 .include 

Modified: head/net-im/gajim/distinfo
==============================================================================
--- head/net-im/gajim/distinfo	Sun Oct  5 20:32:22 2014	(r370114)
+++ head/net-im/gajim/distinfo	Sun Oct  5 20:35:45 2014	(r370115)
@@ -1,2 +1,2 @@
-SHA256 (gajim-0.15.4.tar.bz2) = 27acfecf40e2da55e8f7ec5d653acaf0914376f2d42766af27963c008bee4dc0
-SIZE (gajim-0.15.4.tar.bz2) = 4473874
+SHA256 (gajim-0.16.tar.bz2) = 7abd8dfb22522d3a2f0345da2a86b99fb9917bfd97310124df8601fab82ca193
+SIZE (gajim-0.16.tar.bz2) = 4575445

Modified: head/net-im/gajim/files/patch-src-Makefile.in
==============================================================================
--- head/net-im/gajim/files/patch-src-Makefile.in	Sun Oct  5 20:32:22 2014	(r370114)
+++ head/net-im/gajim/files/patch-src-Makefile.in	Sun Oct  5 20:35:45 2014	(r370115)
@@ -1,6 +1,6 @@
---- src/Makefile.in.orig	2012-03-18 15:26:17.000000000 +0400
-+++ src/Makefile.in	2012-03-20 22:43:53.000000000 +0400
-@@ -243,13 +243,29 @@
+--- src/Makefile.in.orig	2014-10-04 21:38:15 UTC
++++ src/Makefile.in
+@@ -314,12 +314,26 @@
  gajimsrcdir = $(gajim_srcdir)
  nobase_dist_gajimsrc_PYTHON = \
  	$(srcdir)/*.py \
@@ -12,9 +12,6 @@
  	$(srcdir)/common/protocol/*.py \
 +	$(srcdir)/common/protocol/*.pyc \
 +	$(srcdir)/common/protocol/*.pyo \
- 	$(srcdir)/common/xmpp/*.py \
-+	$(srcdir)/common/xmpp/*.pyc \
-+	$(srcdir)/common/xmpp/*.pyo \
  	$(srcdir)/common/zeroconf/*.py \
 +	$(srcdir)/common/zeroconf/*.pyc \
 +	$(srcdir)/common/zeroconf/*.pyo \
@@ -31,14 +28,16 @@
  
  MAINTAINERCLEANFILES = Makefile.in
  all: all-am
-@@ -306,10 +322,6 @@
+@@ -379,11 +393,7 @@
  	      $(MKDIR_P) "$(DESTDIR)$(gajimsrcdir)/$$dir"; }; \
  	    echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(gajimsrcdir)/$$dir'"; \
  	    $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(gajimsrcdir)/$$dir" || exit $$?; }; \
--	  if test -n "$$dlist"; then \
--	    $(am__py_compile) --destdir "$(DESTDIR)" \
--	                      --basedir "$(gajimsrcdir)" $$dlist; \
--	  else :; fi \
- 	done
+-	done; \
+-	if test -n "$$dlist"; then \
+-	  $(am__py_compile) --destdir "$(DESTDIR)" \
+-	                    --basedir "$(gajimsrcdir)" $$dlist; \
+-	else :; fi; }
++	done; }
  
  uninstall-nobase_dist_gajimsrcPYTHON:
+ 	@$(NORMAL_UNINSTALL)

Added: head/net-im/gajim/files/pkg-message.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-im/gajim/files/pkg-message.in	Sun Oct  5 20:35:45 2014	(r370115)
@@ -0,0 +1,42 @@
+Gajim has been installed.
+
+
+Gajim supports plugins:
+
+    Edit / Plugins
+
+    Plugins are installed in:
+
+        ~/.local/share/gajim/plugins
+
+    And configuration for plugins is located in:
+
+        ~/.config/gajim/pluginsconfig
+
+
+To use encryption you may use either of the following:
+
+
+E2EE (End to End message Encryption)
+
+    https://www.dlitz.net/software/pycrypto/
+
+    https://en.wikipedia.org/wiki/End-to-end_encryption
+
+    Enable option CRYPTO in make config
+
+    Note that CRYPTO should not be enabled if you intend to use
+    below explained OTR
+
+
+OTR (Off-the-Record Messaging)  * Recommended
+
+    https://otr.cypherpunks.ca/
+
+    https://en.wikipedia.org/wiki/Off-the-Record_Messaging
+
+    If you wish to use OTR, install it from Plugins:
+
+        Edit / Plugins / Off-The-Record Encryption
+
+        To use OTR, you need to generate a key from OTR plugin configuration

Modified: head/net-im/gajim/pkg-plist
==============================================================================
--- head/net-im/gajim/pkg-plist	Sun Oct  5 20:32:22 2014	(r370114)
+++ head/net-im/gajim/pkg-plist	Sun Oct  5 20:35:45 2014	(r370115)
@@ -1,6 +1,9 @@
 bin/gajim
 bin/gajim-history-manager
 bin/gajim-remote
+man/man1/gajim-history-manager.1.gz
+man/man1/gajim-remote.1.gz
+man/man1/gajim.1.gz
 share/applications/gajim.desktop
 %%DATADIR%%/data/activities/default/doing_chores/buying_groceries.png
 %%DATADIR%%/data/activities/default/doing_chores/category.png
@@ -399,7 +402,7 @@ share/applications/gajim.desktop
 %%DATADIR%%/data/iconsets/goojim/16x16/invisible.png
 %%DATADIR%%/data/iconsets/goojim/16x16/muc_active.png
 %%DATADIR%%/data/iconsets/goojim/16x16/muc_inactive.png
-%%DATADIR%%/data/iconsets/goojim/16x16/not_in_the_roster.png
+%%DATADIR%%/data/iconsets/goojim/16x16/not_in_roster.png
 %%DATADIR%%/data/iconsets/goojim/16x16/offline.png
 %%DATADIR%%/data/iconsets/goojim/16x16/online.png
 %%DATADIR%%/data/iconsets/goojim/16x16/opened.png
@@ -415,7 +418,7 @@ share/applications/gajim.desktop
 %%DATADIR%%/data/iconsets/goojim/32x32/invisible.png
 %%DATADIR%%/data/iconsets/goojim/32x32/muc_active.png
 %%DATADIR%%/data/iconsets/goojim/32x32/muc_inactive.png
-%%DATADIR%%/data/iconsets/goojim/32x32/not_in_the_roster.png
+%%DATADIR%%/data/iconsets/goojim/32x32/not_in_roster.png
 %%DATADIR%%/data/iconsets/goojim/32x32/offline.png
 %%DATADIR%%/data/iconsets/goojim/32x32/online.png
 %%DATADIR%%/data/iconsets/goojim/32x32/opened.png
@@ -810,9 +813,10 @@ share/applications/gajim.desktop
 %%DATADIR%%/data/moods/default/unknown.png
 %%DATADIR%%/data/moods/default/weak.png
 %%DATADIR%%/data/moods/default/worried.png
-%%DATADIR%%/data/other/cacerts.pem
+%%DATADIR%%/data/other/dh4096.pem
 %%DATADIR%%/data/other/servers.xml
 %%DATADIR%%/data/pixmaps/gajim.ico
+%%DATADIR%%/data/sounds/attention.wav
 %%DATADIR%%/data/sounds/bounce.wav
 %%DATADIR%%/data/sounds/connected.wav
 %%DATADIR%%/data/sounds/disconnected.wav
@@ -821,29 +825,25 @@ share/applications/gajim.desktop
 %%DATADIR%%/data/sounds/message1.wav
 %%DATADIR%%/data/sounds/message2.wav
 %%DATADIR%%/data/sounds/sent.wav
-%%DATADIR%%/icons/hicolor/128x128/apps/gajim-about.png
+%%DATADIR%%/icons/hicolor/128x128/apps/gajim.png
+%%DATADIR%%/icons/hicolor/16x16/actions/document-send.png
 %%DATADIR%%/icons/hicolor/16x16/actions/gajim-cam_active.png
 %%DATADIR%%/icons/hicolor/16x16/actions/gajim-cam_inactive.png
-%%DATADIR%%/icons/hicolor/16x16/actions/gajim-earth.png
 %%DATADIR%%/icons/hicolor/16x16/actions/gajim-kbd_input.png
 %%DATADIR%%/icons/hicolor/16x16/actions/gajim-mic_active.png
 %%DATADIR%%/icons/hicolor/16x16/actions/gajim-mic_inactive.png
-%%DATADIR%%/icons/hicolor/16x16/actions/gajim-muc_separator.png
-%%DATADIR%%/icons/hicolor/16x16/actions/gajim-receipt_missing.png
-%%DATADIR%%/icons/hicolor/16x16/actions/gajim-security_high.png
-%%DATADIR%%/icons/hicolor/16x16/actions/gajim-security_low.png
-%%DATADIR%%/icons/hicolor/16x16/actions/gajim-upload.png
+%%DATADIR%%/icons/hicolor/16x16/status/applications-internet.png
 %%DATADIR%%/icons/hicolor/16x16/status/audio-mic-volume-high.png
 %%DATADIR%%/icons/hicolor/16x16/status/audio-mic-volume-low.png
 %%DATADIR%%/icons/hicolor/16x16/status/audio-mic-volume-medium.png
 %%DATADIR%%/icons/hicolor/16x16/status/audio-mic-volume-muted.png
-%%DATADIR%%/icons/hicolor/32x32/actions/gajim-security_high.png
-%%DATADIR%%/icons/hicolor/32x32/actions/gajim-security_low.png
+%%DATADIR%%/icons/hicolor/16x16/status/gajim-plugins.png
+%%DATADIR%%/icons/hicolor/16x16/status/security-high.png
+%%DATADIR%%/icons/hicolor/16x16/status/security-low.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-aim.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-bytestreams.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-conference.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-disc.png
-%%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-error.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-facebook.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-gadu-gadu.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-http-ws.png
@@ -859,21 +859,24 @@ share/applications/gajim.desktop
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-sip.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-sms.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-tv.png
+%%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-twitter.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-weather.png
 %%DATADIR%%/icons/hicolor/32x32/categories/gajim-agent-yahoo.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-chat_msg_recv.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-connection_lost.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-ft_done.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-ft_error.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-ft_request.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-ft_stopped.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-gc_invitation.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-new_email_recv.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-priv_msg_recv.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-single_msg_recv.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-subscription_request.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-unsubscribed.png
-%%DATADIR%%/icons/hicolor/48x48/actions/gajim-warning.png
+%%DATADIR%%/icons/hicolor/32x32/mimetypes/application-certificate.png
+%%DATADIR%%/icons/hicolor/32x32/status/security-high.png
+%%DATADIR%%/icons/hicolor/32x32/status/security-low.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-chat_msg_recv.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-connection_lost.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-ft_done.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-ft_error.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-ft_request.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-ft_stopped.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-gc_invitation.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-new_email_recv.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-priv_msg_recv.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-single_msg_recv.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-subscription_request.png
+%%DATADIR%%/icons/hicolor/48x48/status/gajim-unsubscribed.png
 %%DATADIR%%/icons/hicolor/64x64/apps/gajim.png
 %%DATADIR%%/icons/hicolor/scalable/apps/gajim.svg
 %%DATADIR%%/plugins/plugin_installer/__init__.py
@@ -995,6 +998,9 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/common/exceptions.py
 %%DATADIR%%/src/common/exceptions.pyc
 %%DATADIR%%/src/common/exceptions.pyo
+%%DATADIR%%/src/common/file_props.py
+%%DATADIR%%/src/common/file_props.pyc
+%%DATADIR%%/src/common/file_props.pyo
 %%DATADIR%%/src/common/fuzzyclock.py
 %%DATADIR%%/src/common/fuzzyclock.pyc
 %%DATADIR%%/src/common/fuzzyclock.pyo
@@ -1025,6 +1031,12 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/common/jingle_content.py
 %%DATADIR%%/src/common/jingle_content.pyc
 %%DATADIR%%/src/common/jingle_content.pyo
+%%DATADIR%%/src/common/jingle_ft.py
+%%DATADIR%%/src/common/jingle_ft.pyc
+%%DATADIR%%/src/common/jingle_ft.pyo
+%%DATADIR%%/src/common/jingle_ftstates.py
+%%DATADIR%%/src/common/jingle_ftstates.pyc
+%%DATADIR%%/src/common/jingle_ftstates.pyo
 %%DATADIR%%/src/common/jingle_rtp.py
 %%DATADIR%%/src/common/jingle_rtp.pyc
 %%DATADIR%%/src/common/jingle_rtp.pyo
@@ -1034,12 +1046,12 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/common/jingle_transport.py
 %%DATADIR%%/src/common/jingle_transport.pyc
 %%DATADIR%%/src/common/jingle_transport.pyo
+%%DATADIR%%/src/common/jingle_xtls.py
+%%DATADIR%%/src/common/jingle_xtls.pyc
+%%DATADIR%%/src/common/jingle_xtls.pyo
 %%DATADIR%%/src/common/kwalletbinding.py
 %%DATADIR%%/src/common/kwalletbinding.pyc
 %%DATADIR%%/src/common/kwalletbinding.pyo
-%%DATADIR%%/src/common/latex.py
-%%DATADIR%%/src/common/latex.pyc
-%%DATADIR%%/src/common/latex.pyo
 %%DATADIR%%/src/common/location_listener.py
 %%DATADIR%%/src/common/location_listener.pyc
 %%DATADIR%%/src/common/location_listener.pyo
@@ -1097,57 +1109,6 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/common/stanza_session.py
 %%DATADIR%%/src/common/stanza_session.pyc
 %%DATADIR%%/src/common/stanza_session.pyo
-%%DATADIR%%/src/common/xmpp/__init__.py
-%%DATADIR%%/src/common/xmpp/__init__.pyc
-%%DATADIR%%/src/common/xmpp/__init__.pyo
-%%DATADIR%%/src/common/xmpp/auth_nb.py
-%%DATADIR%%/src/common/xmpp/auth_nb.pyc
-%%DATADIR%%/src/common/xmpp/auth_nb.pyo
-%%DATADIR%%/src/common/xmpp/bosh.py
-%%DATADIR%%/src/common/xmpp/bosh.pyc
-%%DATADIR%%/src/common/xmpp/bosh.pyo
-%%DATADIR%%/src/common/xmpp/c14n.py
-%%DATADIR%%/src/common/xmpp/c14n.pyc
-%%DATADIR%%/src/common/xmpp/c14n.pyo
-%%DATADIR%%/src/common/xmpp/client_nb.py
-%%DATADIR%%/src/common/xmpp/client_nb.pyc
-%%DATADIR%%/src/common/xmpp/client_nb.pyo
-%%DATADIR%%/src/common/xmpp/dispatcher_nb.py
-%%DATADIR%%/src/common/xmpp/dispatcher_nb.pyc
-%%DATADIR%%/src/common/xmpp/dispatcher_nb.pyo
-%%DATADIR%%/src/common/xmpp/features_nb.py
-%%DATADIR%%/src/common/xmpp/features_nb.pyc
-%%DATADIR%%/src/common/xmpp/features_nb.pyo
-%%DATADIR%%/src/common/xmpp/idlequeue.py
-%%DATADIR%%/src/common/xmpp/idlequeue.pyc
-%%DATADIR%%/src/common/xmpp/idlequeue.pyo
-%%DATADIR%%/src/common/xmpp/plugin.py
-%%DATADIR%%/src/common/xmpp/plugin.pyc
-%%DATADIR%%/src/common/xmpp/plugin.pyo
-%%DATADIR%%/src/common/xmpp/protocol.py
-%%DATADIR%%/src/common/xmpp/protocol.pyc
-%%DATADIR%%/src/common/xmpp/protocol.pyo
-%%DATADIR%%/src/common/xmpp/proxy_connectors.py
-%%DATADIR%%/src/common/xmpp/proxy_connectors.pyc
-%%DATADIR%%/src/common/xmpp/proxy_connectors.pyo
-%%DATADIR%%/src/common/xmpp/roster_nb.py
-%%DATADIR%%/src/common/xmpp/roster_nb.pyc
-%%DATADIR%%/src/common/xmpp/roster_nb.pyo
-%%DATADIR%%/src/common/xmpp/simplexml.py
-%%DATADIR%%/src/common/xmpp/simplexml.pyc
-%%DATADIR%%/src/common/xmpp/simplexml.pyo
-%%DATADIR%%/src/common/xmpp/smacks.py
-%%DATADIR%%/src/common/xmpp/smacks.pyc
-%%DATADIR%%/src/common/xmpp/smacks.pyo
-%%DATADIR%%/src/common/xmpp/stringprepare.py
-%%DATADIR%%/src/common/xmpp/stringprepare.pyc
-%%DATADIR%%/src/common/xmpp/stringprepare.pyo
-%%DATADIR%%/src/common/xmpp/tls_nb.py
-%%DATADIR%%/src/common/xmpp/tls_nb.pyc
-%%DATADIR%%/src/common/xmpp/tls_nb.pyo
-%%DATADIR%%/src/common/xmpp/transports_nb.py
-%%DATADIR%%/src/common/xmpp/transports_nb.pyc
-%%DATADIR%%/src/common/xmpp/transports_nb.pyo
 %%DATADIR%%/src/common/zeroconf/__init__.py
 %%DATADIR%%/src/common/zeroconf/__init__.pyc
 %%DATADIR%%/src/common/zeroconf/__init__.pyo
@@ -1232,6 +1193,9 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/htmltextview.py
 %%DATADIR%%/src/htmltextview.pyc
 %%DATADIR%%/src/htmltextview.pyo
+%%DATADIR%%/src/logind_listener.py
+%%DATADIR%%/src/logind_listener.pyc
+%%DATADIR%%/src/logind_listener.pyo
 %%DATADIR%%/src/message_control.py
 %%DATADIR%%/src/message_control.pyc
 %%DATADIR%%/src/message_control.pyo
@@ -1274,9 +1238,6 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/profile_window.py
 %%DATADIR%%/src/profile_window.pyc
 %%DATADIR%%/src/profile_window.pyo
-%%DATADIR%%/src/pycallgraph.py
-%%DATADIR%%/src/pycallgraph.pyc
-%%DATADIR%%/src/pycallgraph.pyo
 %%DATADIR%%/src/remote_control.py
 %%DATADIR%%/src/remote_control.pyc
 %%DATADIR%%/src/remote_control.pyo
@@ -1304,11 +1265,9 @@ share/applications/gajim.desktop
 %%DATADIR%%/src/vcard.py
 %%DATADIR%%/src/vcard.pyc
 %%DATADIR%%/src/vcard.pyo
+share/icons/hicolor/128x128/apps/gajim.png
 share/icons/hicolor/64x64/apps/gajim.png
 share/icons/hicolor/scalable/apps/gajim.svg
-man/man1/gajim.1.gz
-man/man1/gajim-remote.1.gz
-man/man1/gajim-history-manager.1.gz
 %%NLS%%share/locale/be/LC_MESSAGES/gajim.mo
 %%NLS%%share/locale/be@latin/LC_MESSAGES/gajim.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/gajim.mo
@@ -1345,131 +1304,3 @@ man/man1/gajim-history-manager.1.gz
 %%NLS%%share/locale/uk/LC_MESSAGES/gajim.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/gajim.mo
 %%NLS%%share/locale/zh_TW/LC_MESSAGES/gajim.mo
-%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES
-%%NLS%%@dirrmtry share/locale/kk
-%%NLS%%@dirrmtry share/locale/be@latin/LC_MESSAGES
-%%NLS%%@dirrmtry share/locale/be@latin
-@dirrm %%DATADIR%%/src/plugins
-@dirrm %%DATADIR%%/src/common/zeroconf
-@dirrm %%DATADIR%%/src/common/xmpp
-@dirrm %%DATADIR%%/src/common/protocol
-@dirrm %%DATADIR%%/src/common
-@dirrm %%DATADIR%%/src/command_system/implementation
-@dirrm %%DATADIR%%/src/command_system
-@dirrm %%DATADIR%%/src
-@dirrm %%DATADIR%%/plugins/plugin_installer
-@dirrm %%DATADIR%%/plugins
-@dirrm %%DATADIR%%/icons/hicolor/scalable/apps
-@dirrm %%DATADIR%%/icons/hicolor/scalable
-@dirrm %%DATADIR%%/icons/hicolor/64x64/apps
-@dirrm %%DATADIR%%/icons/hicolor/64x64
-@dirrm %%DATADIR%%/icons/hicolor/48x48/actions
-@dirrm %%DATADIR%%/icons/hicolor/48x48
-@dirrm %%DATADIR%%/icons/hicolor/32x32/categories
-@dirrm %%DATADIR%%/icons/hicolor/32x32/actions
-@dirrm %%DATADIR%%/icons/hicolor/32x32
-@dirrm %%DATADIR%%/icons/hicolor/16x16/status
-@dirrm %%DATADIR%%/icons/hicolor/16x16/actions
-@dirrm %%DATADIR%%/icons/hicolor/16x16
-@dirrm %%DATADIR%%/icons/hicolor/128x128/apps
-@dirrm %%DATADIR%%/icons/hicolor/128x128
-@dirrm %%DATADIR%%/icons/hicolor
-@dirrm %%DATADIR%%/icons
-@dirrm %%DATADIR%%/data/sounds
-@dirrm %%DATADIR%%/data/pixmaps
-@dirrm %%DATADIR%%/data/other
-@dirrm %%DATADIR%%/data/moods/default
-@dirrm %%DATADIR%%/data/moods
-@dirrm %%DATADIR%%/data/iconsets/wroop/48x48
-@dirrm %%DATADIR%%/data/iconsets/wroop/32x32
-@dirrm %%DATADIR%%/data/iconsets/wroop/16x16
-@dirrm %%DATADIR%%/data/iconsets/wroop
-@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/yahoo/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/yahoo
-@dirrm %%DATADIR%%/data/iconsets/transports/weather/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/weather/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/weather
-@dirrm %%DATADIR%%/data/iconsets/transports/tlen/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/tlen/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/tlen/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/tlen
-@dirrm %%DATADIR%%/data/iconsets/transports/sms/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/sms/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/sms
-@dirrm %%DATADIR%%/data/iconsets/transports/msn/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/msn/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/msn/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/msn
-@dirrm %%DATADIR%%/data/iconsets/transports/mrim/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/mrim/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/mrim/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/mrim
-@dirrm %%DATADIR%%/data/iconsets/transports/irc/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/irc/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/irc
-@dirrm %%DATADIR%%/data/iconsets/transports/icq/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/icq/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/icq/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/icq
-@dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/gadu-gadu
-@dirrm %%DATADIR%%/data/iconsets/transports/facebook/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/facebook/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/facebook/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/facebook
-@dirrm %%DATADIR%%/data/iconsets/transports/aim/48x48
-@dirrm %%DATADIR%%/data/iconsets/transports/aim/32x32
-@dirrm %%DATADIR%%/data/iconsets/transports/aim/16x16
-@dirrm %%DATADIR%%/data/iconsets/transports/aim
-@dirrm %%DATADIR%%/data/iconsets/transports
-@dirrm %%DATADIR%%/data/iconsets/sun/48x48
-@dirrm %%DATADIR%%/data/iconsets/sun/32x32
-@dirrm %%DATADIR%%/data/iconsets/sun/16x16
-@dirrm %%DATADIR%%/data/iconsets/sun
-@dirrm %%DATADIR%%/data/iconsets/jabberbulb/48x48
-@dirrm %%DATADIR%%/data/iconsets/jabberbulb/32x32
-@dirrm %%DATADIR%%/data/iconsets/jabberbulb/16x16
-@dirrm %%DATADIR%%/data/iconsets/jabberbulb
-@dirrm %%DATADIR%%/data/iconsets/gota/48x48
-@dirrm %%DATADIR%%/data/iconsets/gota/32x32
-@dirrm %%DATADIR%%/data/iconsets/gota/16x16
-@dirrm %%DATADIR%%/data/iconsets/gota
-@dirrm %%DATADIR%%/data/iconsets/goojim/48x48
-@dirrm %%DATADIR%%/data/iconsets/goojim/32x32
-@dirrm %%DATADIR%%/data/iconsets/goojim/16x16
-@dirrm %%DATADIR%%/data/iconsets/goojim
-@dirrm %%DATADIR%%/data/iconsets/gnome/48x48
-@dirrm %%DATADIR%%/data/iconsets/gnome/32x32
-@dirrm %%DATADIR%%/data/iconsets/gnome/16x16
-@dirrm %%DATADIR%%/data/iconsets/gnome
-@dirrm %%DATADIR%%/data/iconsets/dcraven/48x48
-@dirrm %%DATADIR%%/data/iconsets/dcraven/32x32
-@dirrm %%DATADIR%%/data/iconsets/dcraven/16x16
-@dirrm %%DATADIR%%/data/iconsets/dcraven
-@dirrm %%DATADIR%%/data/iconsets
-@dirrm %%DATADIR%%/data/gui
-@dirrm %%DATADIR%%/data/emoticons/tango
-@dirrm %%DATADIR%%/data/emoticons/static-big
-@dirrm %%DATADIR%%/data/emoticons/static
-@dirrm %%DATADIR%%/data/emoticons/animated
-@dirrm %%DATADIR%%/data/emoticons
-@dirrm %%DATADIR%%/data/activities/default/working
-@dirrm %%DATADIR%%/data/activities/default/unknown
-@dirrm %%DATADIR%%/data/activities/default/traveling
-@dirrm %%DATADIR%%/data/activities/default/talking
-@dirrm %%DATADIR%%/data/activities/default/relaxing
-@dirrm %%DATADIR%%/data/activities/default/inactive
-@dirrm %%DATADIR%%/data/activities/default/having_appointment
-@dirrm %%DATADIR%%/data/activities/default/grooming
-@dirrm %%DATADIR%%/data/activities/default/exercising
-@dirrm %%DATADIR%%/data/activities/default/eating
-@dirrm %%DATADIR%%/data/activities/default/drinking
-@dirrm %%DATADIR%%/data/activities/default/doing_chores
-@dirrm %%DATADIR%%/data/activities/default
-@dirrm %%DATADIR%%/data/activities
-@dirrm %%DATADIR%%/data
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:48:59 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 02FFB8F9;
 Sun,  5 Oct 2014 20:48:59 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id D7372915;
 Sun,  5 Oct 2014 20:48:58 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KmwkA003924;
 Sun, 5 Oct 2014 20:48:58 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KmvMQ003920;
 Sun, 5 Oct 2014 20:48:57 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410052048.s95KmvMQ003920@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Sun, 5 Oct 2014 20:48:57 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370116 - in head/devel: .
 rubygem-actionpack-action_caching
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:48:59 -0000

Author: swills
Date: Sun Oct  5 20:48:57 2014
New Revision: 370116
URL: https://svnweb.freebsd.org/changeset/ports/370116
QAT: https://qat.redports.org/buildarchive/r370116/

Log:
  devel/rubygem-actionpack-action_caching: create port
  
  Action caching for Action Pack (removed from core in Rails 4.0)
  
  WWW: https://github.com/rails/actionpack-action_caching

Added:
  head/devel/rubygem-actionpack-action_caching/
  head/devel/rubygem-actionpack-action_caching/Makefile   (contents, props changed)
  head/devel/rubygem-actionpack-action_caching/distinfo   (contents, props changed)
  head/devel/rubygem-actionpack-action_caching/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  5 20:35:45 2014	(r370115)
+++ head/devel/Makefile	Sun Oct  5 20:48:57 2014	(r370116)
@@ -4222,6 +4222,7 @@
     SUBDIR += ruby-tzfile
     SUBDIR += ruby-wirble
     SUBDIR += rubygem-abstract
+    SUBDIR += rubygem-actionpack-action_caching
     SUBDIR += rubygem-actionview
     SUBDIR += rubygem-active_scaffold
     SUBDIR += rubygem-activemessaging

Added: head/devel/rubygem-actionpack-action_caching/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-actionpack-action_caching/Makefile	Sun Oct  5 20:48:57 2014	(r370116)
@@ -0,0 +1,18 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	actionpack-action_caching
+PORTVERSION=	1.1.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Action caching for Action Pack (removed from core in Rails 4.0)
+
+RUN_DEPENDS=	rubygem-actionpack4>=4.0:${PORTSDIR}/www/rubygem-actionpack4
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/devel/rubygem-actionpack-action_caching/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-actionpack-action_caching/distinfo	Sun Oct  5 20:48:57 2014	(r370116)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/actionpack-action_caching-1.1.1.gem) = e7715ff3534d124e58fd40ebf6c05708d830fe2c71c2f2643ca060025b00b224
+SIZE (rubygem/actionpack-action_caching-1.1.1.gem) = 13312

Added: head/devel/rubygem-actionpack-action_caching/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-actionpack-action_caching/pkg-descr	Sun Oct  5 20:48:57 2014	(r370116)
@@ -0,0 +1,3 @@
+Action caching for Action Pack (removed from core in Rails 4.0)
+
+WWW: https://github.com/rails/actionpack-action_caching

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:53:19 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id F05CBB81;
 Sun,  5 Oct 2014 20:53:18 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id DBC609E2;
 Sun,  5 Oct 2014 20:53:18 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KrIwe007974;
 Sun, 5 Oct 2014 20:53:18 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KrIlT007969;
 Sun, 5 Oct 2014 20:53:18 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052053.s95KrIlT007969@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 20:53:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370117 - in head/devel/libruin: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:53:19 -0000

Author: tijl
Date: Sun Oct  5 20:53:17 2014
New Revision: 370117
URL: https://svnweb.freebsd.org/changeset/ports/370117
QAT: https://qat.redports.org/buildarchive/r370117/

Log:
  Add USES=libtool and INSTALL_TARGET=install-strip

Deleted:
  head/devel/libruin/files/
Modified:
  head/devel/libruin/Makefile
  head/devel/libruin/pkg-plist

Modified: head/devel/libruin/Makefile
==============================================================================
--- head/devel/libruin/Makefile	Sun Oct  5 20:48:57 2014	(r370116)
+++ head/devel/libruin/Makefile	Sun Oct  5 20:53:17 2014	(r370117)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libruin
 PORTVERSION=	0.1.4
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel scheme
 MASTER_SITES=	${MASTER_SITE_SAVANNAH}
 MASTER_SITE_SUBDIR=	${PORTNAME}
@@ -15,6 +15,8 @@ BUILD_DEPENDS=	${LOCALBASE}/share/guile/
 RUN_DEPENDS=	${LOCALBASE}/share/guile/site/config/load.scm:${PORTSDIR}/devel/guile-lib
 
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+USES=		libtool
 USE_LDCONFIG=	yes
 
 INFO=	libruin

Modified: head/devel/libruin/pkg-plist
==============================================================================
--- head/devel/libruin/pkg-plist	Sun Oct  5 20:48:57 2014	(r370116)
+++ head/devel/libruin/pkg-plist	Sun Oct  5 20:53:17 2014	(r370117)
@@ -2,6 +2,7 @@ include/libruin.h
 lib/libruin.a
 lib/libruin.so
 lib/libruin.so.0
+lib/libruin.so.0.0.0
 lib/libruin/css/xhtml.css
 lib/libruin/css/xul.css
 lib/libruin/scheme/scss/lexer.scm
@@ -10,10 +11,4 @@ lib/libruin/scheme/scss/scss.scm
 lib/libruin/scheme/sdom/core.scm
 lib/libruin/scheme/sdom/events.scm
 man/man3/ruin.3.gz
-@dirrm lib/libruin/css
-@dirrm lib/libruin/scheme/sdom
-@dirrm lib/libruin/scheme/scss
-@dirrm lib/libruin/scheme
-@dirrm lib/libruin
 %%DATADIR%%/ChangeLog
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:55:04 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 706D9C9A;
 Sun,  5 Oct 2014 20:55:04 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 509779F3;
 Sun,  5 Oct 2014 20:55:04 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95Kt4oc008390;
 Sun, 5 Oct 2014 20:55:04 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95Kt3PW008386;
 Sun, 5 Oct 2014 20:55:03 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410052055.s95Kt3PW008386@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Sun, 5 Oct 2014 20:55:03 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370118 - in head/mail: .
 rubygem-email_reply_parser-discourse
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:55:04 -0000

Author: swills
Date: Sun Oct  5 20:55:02 2014
New Revision: 370118
URL: https://svnweb.freebsd.org/changeset/ports/370118
QAT: https://qat.redports.org/buildarchive/r370118/

Log:
  mail/rubygem-email_reply_parser-discourse: create port
  
  EmailReplyParser is a small library to parse plain text email content to return
  only the reply.
  
  WWW: http://github.com/github/email_reply_parser

Added:
  head/mail/rubygem-email_reply_parser-discourse/
  head/mail/rubygem-email_reply_parser-discourse/Makefile   (contents, props changed)
  head/mail/rubygem-email_reply_parser-discourse/distinfo   (contents, props changed)
  head/mail/rubygem-email_reply_parser-discourse/pkg-descr   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Sun Oct  5 20:53:17 2014	(r370117)
+++ head/mail/Makefile	Sun Oct  5 20:55:02 2014	(r370118)
@@ -570,6 +570,7 @@
     SUBDIR += ruby-rmail
     SUBDIR += rubygem-actionmailer
     SUBDIR += rubygem-actionmailer4
+    SUBDIR += rubygem-email_reply_parser-discourse
     SUBDIR += rubygem-exception_notification
     SUBDIR += rubygem-larch
     SUBDIR += rubygem-mail

Added: head/mail/rubygem-email_reply_parser-discourse/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/rubygem-email_reply_parser-discourse/Makefile	Sun Oct  5 20:55:02 2014	(r370118)
@@ -0,0 +1,16 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	email_reply_parser-discourse
+PORTVERSION=	0.6
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Email Reply Parser
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/mail/rubygem-email_reply_parser-discourse/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/rubygem-email_reply_parser-discourse/distinfo	Sun Oct  5 20:55:02 2014	(r370118)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/email_reply_parser-discourse-0.6.gem) = 461d081169e30f7968b3685ff6a84c4f7fd85390c9c6102f1e0b74162881fa26
+SIZE (rubygem/email_reply_parser-discourse-0.6.gem) = 22528

Added: head/mail/rubygem-email_reply_parser-discourse/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/rubygem-email_reply_parser-discourse/pkg-descr	Sun Oct  5 20:55:02 2014	(r370118)
@@ -0,0 +1,4 @@
+EmailReplyParser is a small library to parse plain text email content to return
+only the reply.
+
+WWW: http://github.com/github/email_reply_parser

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 20:56:36 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 1E16BD83;
 Sun,  5 Oct 2014 20:56:36 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E3F3BA02;
 Sun,  5 Oct 2014 20:56:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95KuZmB008716;
 Sun, 5 Oct 2014 20:56:35 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95KuZjD008713;
 Sun, 5 Oct 2014 20:56:35 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052056.s95KuZjD008713@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 20:56:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370119 - in head: devel/libuninum devel/libuninum/files
 textproc/msort
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 20:56:36 -0000

Author: tijl
Date: Sun Oct  5 20:56:34 2014
New Revision: 370119
URL: https://svnweb.freebsd.org/changeset/ports/370119
QAT: https://qat.redports.org/buildarchive/r370119/

Log:
  devel/libuninum:
  - Add USES=libtool and bump dependent ports
  - Replace MAKE_ENV with CPPFLAGS
  - Add INSTALL_TARGET=install-strip

Deleted:
  head/devel/libuninum/files/
Modified:
  head/devel/libuninum/Makefile
  head/devel/libuninum/pkg-plist
  head/textproc/msort/Makefile

Modified: head/devel/libuninum/Makefile
==============================================================================
--- head/devel/libuninum/Makefile	Sun Oct  5 20:55:02 2014	(r370118)
+++ head/devel/libuninum/Makefile	Sun Oct  5 20:56:34 2014	(r370119)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libuninum
 PORTVERSION=	2.7
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	devel
 MASTER_SITES=	http://billposer.org/Software/Downloads/
 
@@ -13,8 +13,10 @@ COMMENT=	Library for converting Unicode 
 LIB_DEPENDS=	libgmp.so:${PORTSDIR}/math/gmp
 
 GNU_CONFIGURE=	yes
-MAKE_ENV+=	INCLUDES="-I${LOCALBASE}/include"
-LDFLAGS+=	-L${LOCALBASE}/lib
+CPPFLAGS+=	-I${LOCALBASE}/include
+LIBS+=		-L${LOCALBASE}/lib
+INSTALL_TARGET=	install-strip
+USES=		libtool
 USE_LDCONFIG=	yes
 
 post-patch:

Modified: head/devel/libuninum/pkg-plist
==============================================================================
--- head/devel/libuninum/pkg-plist	Sun Oct  5 20:55:02 2014	(r370118)
+++ head/devel/libuninum/pkg-plist	Sun Oct  5 20:56:34 2014	(r370119)
@@ -3,8 +3,9 @@ bin/numconv
 include/uninum/uninum.h
 include/uninum/nsdefs.h
 include/uninum/unicode.h
-lib/libuninum.so.7
-lib/libuninum.so
 lib/libuninum.a
+lib/libuninum.so
+lib/libuninum.so.5
+lib/libuninum.so.5.2.1
 man/man1/numconv.1.gz
 @dirrmtry include/uninum

Modified: head/textproc/msort/Makefile
==============================================================================
--- head/textproc/msort/Makefile	Sun Oct  5 20:55:02 2014	(r370118)
+++ head/textproc/msort/Makefile	Sun Oct  5 20:56:34 2014	(r370119)
@@ -3,7 +3,7 @@
 
 PORTNAME=	msort
 PORTVERSION=	8.53
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	textproc
 MASTER_SITES=	http://billposer.org/Software/Downloads/
 

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:01:02 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id EBF792E0;
 Sun,  5 Oct 2014 21:01:02 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id D73F6B61;
 Sun,  5 Oct 2014 21:01:02 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95L12Wo011811;
 Sun, 5 Oct 2014 21:01:02 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95L12VG011810;
 Sun, 5 Oct 2014 21:01:02 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410052101.s95L12VG011810@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Sun, 5 Oct 2014 21:01:02 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370120 - head/mail/rubygem-email_reply_parser-discourse
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:01:03 -0000

Author: swills
Date: Sun Oct  5 21:01:02 2014
New Revision: 370120
URL: https://svnweb.freebsd.org/changeset/ports/370120
QAT: https://qat.redports.org/buildarchive/r370120/

Log:
  mail/rubygem-email_reply_parser-discourse: correcte category

Modified:
  head/mail/rubygem-email_reply_parser-discourse/Makefile

Modified: head/mail/rubygem-email_reply_parser-discourse/Makefile
==============================================================================
--- head/mail/rubygem-email_reply_parser-discourse/Makefile	Sun Oct  5 20:56:34 2014	(r370119)
+++ head/mail/rubygem-email_reply_parser-discourse/Makefile	Sun Oct  5 21:01:02 2014	(r370120)
@@ -3,7 +3,7 @@
 
 PORTNAME=	email_reply_parser-discourse
 PORTVERSION=	0.6
-CATEGORIES=	devel rubygems
+CATEGORIES=	mail rubygems
 MASTER_SITES=	RG
 
 MAINTAINER=	ruby@FreeBSD.org

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:03:23 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 77B1341A;
 Sun,  5 Oct 2014 21:03:23 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 63655B7B;
 Sun,  5 Oct 2014 21:03:23 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95L3NOv013264;
 Sun, 5 Oct 2014 21:03:23 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95L3NPf013263;
 Sun, 5 Oct 2014 21:03:23 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052103.s95L3NPf013263@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 21:03:23 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370121 - in head/devel/libole2: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:03:23 -0000

Author: tijl
Date: Sun Oct  5 21:03:22 2014
New Revision: 370121
URL: https://svnweb.freebsd.org/changeset/ports/370121
QAT: https://qat.redports.org/buildarchive/r370121/

Log:
  Remove old patches and add INSTALL_TARGET=install-strip

Deleted:
  head/devel/libole2/files/patch-libole2Conf.sh.in
  head/devel/libole2/files/patch-ltmain.sh
Modified:
  head/devel/libole2/Makefile

Modified: head/devel/libole2/Makefile
==============================================================================
--- head/devel/libole2/Makefile	Sun Oct  5 21:01:02 2014	(r370120)
+++ head/devel/libole2/Makefile	Sun Oct  5 21:03:22 2014	(r370121)
@@ -3,16 +3,17 @@
 
 PORTNAME=	libole2
 PORTVERSION=	0.2.4
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	devel gnome
 MASTER_SITES=	GNOME
 
 MAINTAINER=	gnome@FreeBSD.org
 COMMENT=	Support library for OLE functions (MS-Excel) for gnumeric
 
+GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
 USES=		gmake libtool
 USE_GNOME=	glib12
-GNU_CONFIGURE=	yes
 USE_LDCONFIG=	yes
 
 .include 

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:05:36 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 0222D504;
 Sun,  5 Oct 2014 21:05:36 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E2079B87;
 Sun,  5 Oct 2014 21:05:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95L5Zdd013678;
 Sun, 5 Oct 2014 21:05:35 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95L5ZqV013676;
 Sun, 5 Oct 2014 21:05:35 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052105.s95L5ZqV013676@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 21:05:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370122 - in head/devel/pth: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:05:36 -0000

Author: tijl
Date: Sun Oct  5 21:05:34 2014
New Revision: 370122
URL: https://svnweb.freebsd.org/changeset/ports/370122
QAT: https://qat.redports.org/buildarchive/r370122/

Log:
  Convert to USES=libtool

Deleted:
  head/devel/pth/files/patch-ltmain.sh
Modified:
  head/devel/pth/Makefile
  head/devel/pth/pkg-plist

Modified: head/devel/pth/Makefile
==============================================================================
--- head/devel/pth/Makefile	Sun Oct  5 21:03:22 2014	(r370121)
+++ head/devel/pth/Makefile	Sun Oct  5 21:05:34 2014	(r370122)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pth
 PORTVERSION=	2.0.7
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_GNU}
 MASTER_SITE_SUBDIR=	pth
@@ -13,12 +14,13 @@ COMMENT=	GNU Portable Threads
 
 MAKE_JOBS_UNSAFE=	yes
 
-USE_LDCONFIG=	${PREFIX}/lib/pth
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-optimize \
 		--enable-batch \
 		--includedir="${PREFIX}/include/pth" \
 		--libdir="${PREFIX}/lib/pth"
+USES=		libtool
+USE_LDCONFIG=	${PREFIX}/lib/pth
 
 
 OPTIONS_DEFINE=	OPTIMIZED_CFLAGS

Modified: head/devel/pth/pkg-plist
==============================================================================
--- head/devel/pth/pkg-plist	Sun Oct  5 21:03:22 2014	(r370121)
+++ head/devel/pth/pkg-plist	Sun Oct  5 21:05:34 2014	(r370122)
@@ -5,13 +5,13 @@ include/pth/pth.h
 lib/pth/libpth.a
 lib/pth/libpth.so
 lib/pth/libpth.so.20
+lib/pth/libpth.so.20.0.27
 %%PTHREAD%%lib/pth/libpthread.a
 %%PTHREAD%%lib/pth/libpthread.so
 %%PTHREAD%%lib/pth/libpthread.so.20
+%%PTHREAD%%lib/pth/libpthread.so.20.0.27
 share/aclocal/pth.m4
 man/man1/pth-config.1.gz
 %%PTHREAD%%man/man1/pthread-config.1.gz
 man/man3/pth.3.gz
 %%PTHREAD%%man/man3/pthread.3.gz
-@dirrm include/pth
-@dirrm lib/pth

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:07:50 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 053585F7;
 Sun,  5 Oct 2014 21:07:50 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id CBC3BB9B;
 Sun,  5 Oct 2014 21:07:49 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95L7n1I014084;
 Sun, 5 Oct 2014 21:07:49 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95L7mwp014080;
 Sun, 5 Oct 2014 21:07:48 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410052107.s95L7mwp014080@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Sun, 5 Oct 2014 21:07:48 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370123 - in head/devel: . rubygem-fast_stack
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:07:50 -0000

Author: swills
Date: Sun Oct  5 21:07:48 2014
New Revision: 370123
URL: https://svnweb.freebsd.org/changeset/ports/370123
QAT: https://qat.redports.org/buildarchive/r370123/

Log:
  devel/rubygem-fast_stack: create port
  
  Fast method for collecting stack traces
  
  WWW: https://github.com/SamSaffron/fast_stack

Added:
  head/devel/rubygem-fast_stack/
  head/devel/rubygem-fast_stack/Makefile   (contents, props changed)
  head/devel/rubygem-fast_stack/distinfo   (contents, props changed)
  head/devel/rubygem-fast_stack/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  5 21:05:34 2014	(r370122)
+++ head/devel/Makefile	Sun Oct  5 21:07:48 2014	(r370123)
@@ -4320,6 +4320,7 @@
     SUBDIR += rubygem-facets
     SUBDIR += rubygem-fast-stemmer
     SUBDIR += rubygem-fast_gettext
+    SUBDIR += rubygem-fast_stack
     SUBDIR += rubygem-fastercsv
     SUBDIR += rubygem-fastri
     SUBDIR += rubygem-fastthread

Added: head/devel/rubygem-fast_stack/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fast_stack/Makefile	Sun Oct  5 21:07:48 2014	(r370123)
@@ -0,0 +1,19 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	fast_stack
+PORTVERSION=	0.1.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Fast method for collecting stack traces
+
+RUN_DEPENDS=	rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake \
+		rubygem-rake-compiler>=0:${PORTSDIR}/devel/rubygem-rake-compiler
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/devel/rubygem-fast_stack/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fast_stack/distinfo	Sun Oct  5 21:07:48 2014	(r370123)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/fast_stack-0.1.0.gem) = e798b51f238975c1b5e3ea4cb7b1430786b6e2866317882b37f80b89c4765701
+SIZE (rubygem/fast_stack-0.1.0.gem) = 6656

Added: head/devel/rubygem-fast_stack/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fast_stack/pkg-descr	Sun Oct  5 21:07:48 2014	(r370123)
@@ -0,0 +1,3 @@
+Fast method for collecting stack traces
+
+WWW: https://github.com/SamSaffron/fast_stack

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:10:48 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 4C923727;
 Sun,  5 Oct 2014 21:10:48 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 389ACBB8;
 Sun,  5 Oct 2014 21:10:48 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LAmOo017683;
 Sun, 5 Oct 2014 21:10:48 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LAlZA017681;
 Sun, 5 Oct 2014 21:10:47 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052110.s95LAlZA017681@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 21:10:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370124 - in head/databases/dbh: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:10:48 -0000

Author: tijl
Date: Sun Oct  5 21:10:47 2014
New Revision: 370124
URL: https://svnweb.freebsd.org/changeset/ports/370124
QAT: https://qat.redports.org/buildarchive/r370124/

Log:
  Remove USES=pathfix and add USES=libtool and INSTALL_TARGET=install-strip

Deleted:
  head/databases/dbh/files/
Modified:
  head/databases/dbh/Makefile
  head/databases/dbh/pkg-plist

Modified: head/databases/dbh/Makefile
==============================================================================
--- head/databases/dbh/Makefile	Sun Oct  5 21:07:48 2014	(r370123)
+++ head/databases/dbh/Makefile	Sun Oct  5 21:10:47 2014	(r370124)
@@ -3,6 +3,7 @@
 
 PORTNAME=	dbh
 PORTVERSION=	5.0.15
+PORTREVISION=	1
 CATEGORIES=	databases
 MASTER_SITES=	SF
 DISTNAME=	libdbh2-${PORTVERSION}
@@ -14,8 +15,9 @@ LICENSE=	GPLv3
 
 CONFLICTS=	dbh-[0-4]*
 
-USES=		pathfix pkgconfig
 GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+USES=		libtool pkgconfig
 USE_LDCONFIG=	yes
 
 OPTIONS_DEFINE=	GTKDOC
@@ -43,7 +45,4 @@ post-patch:
 	@${REINPLACE_CMD} -e 's|^\(SUBDIRS = src man\).*|\1|' ${WRKSRC}/Makefile.in
 .endif
 
-post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdbh.so.2
-
 .include 

Modified: head/databases/dbh/pkg-plist
==============================================================================
--- head/databases/dbh/pkg-plist	Sun Oct  5 21:07:48 2014	(r370123)
+++ head/databases/dbh/pkg-plist	Sun Oct  5 21:10:47 2014	(r370124)
@@ -2,6 +2,7 @@ include/dbh/dbh.h
 lib/libdbh.a
 lib/libdbh.so
 lib/libdbh.so.2
+lib/libdbh.so.2.0.1
 libdata/pkgconfig/dbh2.pc
 man/man3/dbh.3.gz
 man/man3/dbh.h.3.gz

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:12:12 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id B4F8F829;
 Sun,  5 Oct 2014 21:12:12 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 870BDC50;
 Sun,  5 Oct 2014 21:12:12 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LCCBG018514;
 Sun, 5 Oct 2014 21:12:12 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LCBbm018507;
 Sun, 5 Oct 2014 21:12:11 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410052112.s95LCBbm018507@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Sun, 5 Oct 2014 21:12:11 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370125 - in head/devel: . rubygem-fast_xor
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:12:12 -0000

Author: swills
Date: Sun Oct  5 21:12:10 2014
New Revision: 370125
URL: https://svnweb.freebsd.org/changeset/ports/370125
QAT: https://qat.redports.org/buildarchive/r370125/

Log:
  devel/rubygem-fast_xor: create port
  
  Provides a C-optimized method for in-place XORing of two (or three) strings
  
  WWW: http://github.com/CodeMonkeySteve/fast_xor

Added:
  head/devel/rubygem-fast_xor/
  head/devel/rubygem-fast_xor/Makefile   (contents, props changed)
  head/devel/rubygem-fast_xor/distinfo   (contents, props changed)
  head/devel/rubygem-fast_xor/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  5 21:10:47 2014	(r370124)
+++ head/devel/Makefile	Sun Oct  5 21:12:10 2014	(r370125)
@@ -4321,6 +4321,7 @@
     SUBDIR += rubygem-fast-stemmer
     SUBDIR += rubygem-fast_gettext
     SUBDIR += rubygem-fast_stack
+    SUBDIR += rubygem-fast_xor
     SUBDIR += rubygem-fastercsv
     SUBDIR += rubygem-fastri
     SUBDIR += rubygem-fastthread

Added: head/devel/rubygem-fast_xor/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fast_xor/Makefile	Sun Oct  5 21:12:10 2014	(r370125)
@@ -0,0 +1,19 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	fast_xor
+PORTVERSION=	1.1.3
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Fast String XOR operator
+
+RUN_DEPENDS=	rubygem-rake>=0:${PORTSDIR}/devel/rubygem-rake \
+		rubygem-rake-compiler>=0:${PORTSDIR}/devel/rubygem-rake-compiler
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/devel/rubygem-fast_xor/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fast_xor/distinfo	Sun Oct  5 21:12:10 2014	(r370125)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/fast_xor-1.1.3.gem) = 915ecac71f4f22b57f7323133f4da732dcbea0ef36b7f6321a5724b9f71a37d8
+SIZE (rubygem/fast_xor-1.1.3.gem) = 7168

Added: head/devel/rubygem-fast_xor/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-fast_xor/pkg-descr	Sun Oct  5 21:12:10 2014	(r370125)
@@ -0,0 +1,3 @@
+Provides a C-optimized method for in-place XORing of two (or three) strings
+
+WWW: http://github.com/CodeMonkeySteve/fast_xor

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:17:06 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 16F659D2;
 Sun,  5 Oct 2014 21:17:06 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 015B2C81;
 Sun,  5 Oct 2014 21:17:06 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LH5XN019288;
 Sun, 5 Oct 2014 21:17:05 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LH5bT019287;
 Sun, 5 Oct 2014 21:17:05 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052117.s95LH5bT019287@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 21:17:05 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370126 - in head: devel/cppunit/files
 devel/subversion17/files devel/vstr/files net-p2p/libtorrent/files
 net/librsync/files www/neon29/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:17:06 -0000

Author: tijl
Date: Sun Oct  5 21:17:05 2014
New Revision: 370126
URL: https://svnweb.freebsd.org/changeset/ports/370126
QAT: https://qat.redports.org/buildarchive/r370126/

Log:
  Remove old libtool patches

Deleted:
  head/devel/cppunit/files/patch-config__ltmain.sh
  head/devel/subversion17/files/patch-build--ltmain.sh
  head/devel/vstr/files/patch-ltmain.sh
  head/net-p2p/libtorrent/files/patch-ltmain.sh
  head/net/librsync/files/
  head/www/neon29/files/patch-ltmain.sh

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:19:51 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 00DC6AC8;
 Sun,  5 Oct 2014 21:19:50 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id C7726C92;
 Sun,  5 Oct 2014 21:19:50 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LJo27019745;
 Sun, 5 Oct 2014 21:19:50 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LJnVu019741;
 Sun, 5 Oct 2014 21:19:49 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410052119.s95LJnVu019741@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Sun, 5 Oct 2014 21:19:49 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370127 - in head/graphics: . rubygem-flamegraph
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:19:51 -0000

Author: swills
Date: Sun Oct  5 21:19:49 2014
New Revision: 370127
URL: https://svnweb.freebsd.org/changeset/ports/370127
QAT: https://qat.redports.org/buildarchive/r370127/

Log:
  graphics/rubygem-flamegraph: create port
  
  Flamegraph support for arbitrary ruby apps
  
  WWW: https://github.com/SamSaffron/flamegraph

Added:
  head/graphics/rubygem-flamegraph/
  head/graphics/rubygem-flamegraph/Makefile   (contents, props changed)
  head/graphics/rubygem-flamegraph/distinfo   (contents, props changed)
  head/graphics/rubygem-flamegraph/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sun Oct  5 21:17:05 2014	(r370126)
+++ head/graphics/Makefile	Sun Oct  5 21:19:49 2014	(r370127)
@@ -920,6 +920,7 @@
     SUBDIR += rubygem-exifr
     SUBDIR += rubygem-ezprint
     SUBDIR += rubygem-fastimage
+    SUBDIR += rubygem-flamegraph
     SUBDIR += rubygem-gd2
     SUBDIR += rubygem-gdk_pixbuf2
     SUBDIR += rubygem-geokit

Added: head/graphics/rubygem-flamegraph/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-flamegraph/Makefile	Sun Oct  5 21:19:49 2014	(r370127)
@@ -0,0 +1,18 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	flamegraph
+PORTVERSION=	0.0.5
+CATEGORIES=	graphics rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Flamegraph support for arbitrary ruby apps
+
+RUN_DEPENDS=	rubygem-fast_stack>=0:${PORTSDIR}/devel/rubygem-fast_stack
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/graphics/rubygem-flamegraph/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-flamegraph/distinfo	Sun Oct  5 21:19:49 2014	(r370127)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/flamegraph-0.0.5.gem) = 35797468e37d129ad94be75c2a63488e7cdbf29fdc7a3cbd84f6b530a4497bee
+SIZE (rubygem/flamegraph-0.0.5.gem) = 95232

Added: head/graphics/rubygem-flamegraph/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/rubygem-flamegraph/pkg-descr	Sun Oct  5 21:19:49 2014	(r370127)
@@ -0,0 +1,3 @@
+Flamegraph support for arbitrary ruby apps
+
+WWW: https://github.com/SamSaffron/flamegraph

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:25:20 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id E09B5C1F;
 Sun,  5 Oct 2014 21:25:20 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id B2E2DD40;
 Sun,  5 Oct 2014 21:25:20 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LPK3h023934;
 Sun, 5 Oct 2014 21:25:20 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LPKgc023933;
 Sun, 5 Oct 2014 21:25:20 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052125.s95LPKgc023933@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 21:25:20 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370128 - head/textproc/gdome2/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:25:21 -0000

Author: tijl
Date: Sun Oct  5 21:25:20 2014
New Revision: 370128
URL: https://svnweb.freebsd.org/changeset/ports/370128
QAT: https://qat.redports.org/buildarchive/r370128/

Log:
  Remove old libtool patch

Deleted:
  head/textproc/gdome2/files/patch-ltmain.sh

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:30:30 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 4912CE92;
 Sun,  5 Oct 2014 21:30:30 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 32C78D65;
 Sun,  5 Oct 2014 21:30:30 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LUUKi025519;
 Sun, 5 Oct 2014 21:30:30 GMT (envelope-from tijl@FreeBSD.org)
Received: (from tijl@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LUQoa025506;
 Sun, 5 Oct 2014 21:30:26 GMT (envelope-from tijl@FreeBSD.org)
Message-Id: <201410052130.s95LUQoa025506@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org
 using -f
From: Tijl Coosemans 
Date: Sun, 5 Oct 2014 21:30:26 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370129 - in head: converters/pdf2djvu
 graphics/ImageMagick graphics/apvlv graphics/atril graphics/djview4
 graphics/djvulibre graphics/djvulibre/files graphics/evince graphics/okular
 gr...
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:30:30 -0000

Author: tijl
Date: Sun Oct  5 21:30:26 2014
New Revision: 370129
URL: https://svnweb.freebsd.org/changeset/ports/370129
QAT: https://qat.redports.org/buildarchive/r370129/

Log:
  graphics/djvulibre:
  - Add USES=libtool and bump dependent ports
  - Remove threading related patches

Deleted:
  head/graphics/djvulibre/files/patch-config_ltmain.sh
  head/graphics/djvulibre/files/patch-xmltools_Makefile.in
Modified:
  head/converters/pdf2djvu/Makefile
  head/graphics/ImageMagick/Makefile
  head/graphics/apvlv/Makefile
  head/graphics/atril/Makefile
  head/graphics/djview4/Makefile
  head/graphics/djvulibre/Makefile
  head/graphics/djvulibre/files/patch-tools_Makefile.in
  head/graphics/djvulibre/pkg-plist
  head/graphics/evince/Makefile
  head/graphics/okular/Makefile
  head/graphics/zathura-djvu/Makefile
  head/print/qpdfview/Makefile
  head/x11/leechcraft/Makefile

Modified: head/converters/pdf2djvu/Makefile
==============================================================================
--- head/converters/pdf2djvu/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/converters/pdf2djvu/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,7 +3,7 @@
 
 PORTNAME=	pdf2djvu
 PORTVERSION=	0.7.17
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	converters
 MASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
 DISTNAME=	${PORTNAME}_${PORTVERSION}${EXTRACT_SUFFIX}

Modified: head/graphics/ImageMagick/Makefile
==============================================================================
--- head/graphics/ImageMagick/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/ImageMagick/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -2,6 +2,7 @@
 
 PORTNAME=	ImageMagick
 DISTVERSION=	6.8.9-8
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	graphics perl5
 MASTER_SITES=	http://www.imagemagick.org/download/ \

Modified: head/graphics/apvlv/Makefile
==============================================================================
--- head/graphics/apvlv/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/apvlv/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,7 +3,7 @@
 
 PORTNAME=	apvlv
 PORTVERSION=	0.1.4
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics
 MASTER_SITES=	http://cloud.github.com/downloads/naihe2010/apvlv/
 DISTNAME=	${PORTNAME}-${PORTVERSION}-Source

Modified: head/graphics/atril/Makefile
==============================================================================
--- head/graphics/atril/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/atril/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,6 +3,7 @@
 
 PORTNAME=	atril
 PORTVERSION=	1.8.0
+PORTREVISION=	1
 CATEGORIES=	graphics print mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate

Modified: head/graphics/djview4/Makefile
==============================================================================
--- head/graphics/djview4/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/djview4/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,7 +3,7 @@
 
 PORTNAME=	djview
 PORTVERSION=	4.9
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics
 MASTER_SITES=	SF/djvu/DjView/${PORTVERSION}
 

Modified: head/graphics/djvulibre/Makefile
==============================================================================
--- head/graphics/djvulibre/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/djvulibre/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,7 +3,7 @@
 
 PORTNAME=	djvulibre
 PORTVERSION=	3.5.25.3
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics www
 MASTER_SITES=	SF/djvu/DjVuLibre/${PORTVERSION:R}
 
@@ -15,16 +15,13 @@ LICENSE=	GPLv2
 LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
 		libtiff.so:${PORTSDIR}/graphics/tiff
 
-USES=		pathfix iconv
 GNU_CONFIGURE=	yes
-LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
 CONFIGURE_ENV=	JPEG_CFLAGS="-I${LOCALBASE}/include" \
 		JPEG_LIBS="-L${LOCALBASE}/lib -ljpeg" \
 		TIFF_CFLAGS="-I${LOCALBASE}/include" \
-		TIFF_LIBS="-L${LOCALBASE}/lib -ltiff" \
-		PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
-		PTHREAD_LIBS="${PTHREAD_LIBS}"
-CONFIGURE_ARGS=	--enable-threads=pthread --enable-shared
+		TIFF_LIBS="-L${LOCALBASE}/lib -ltiff"
+LDFLAGS+=	-L${LOCALBASE}/lib ${ICONV_LIB}
+USES=		iconv libtool pathfix
 USE_LDCONFIG=	yes
 CONFLICTS=	djvulibre-nox11-3*
 WRKSRC=		${WRKDIR}/${DISTNAME:R}

Modified: head/graphics/djvulibre/files/patch-tools_Makefile.in
==============================================================================
--- head/graphics/djvulibre/files/patch-tools_Makefile.in	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/djvulibre/files/patch-tools_Makefile.in	Sun Oct  5 21:30:26 2014	(r370129)
@@ -1,14 +1,5 @@
 --- tools/Makefile.in.orig	2009-07-07 17:04:26.000000000 +0200
 +++ tools/Makefile.in	2009-07-07 17:11:00.000000000 +0200
-@@ -53,7 +53,7 @@
- 
- INCS = -I${top_builddir} -I${top_srcdir} -I${top_srcdir}/libdjvu -I${srcdir}
- FLAGS = ${DEFS} ${INCS} ${OPTS} ${JPEG_CFLAGS} ${TIFF_CFLAGS} ${THREAD_CFLAGS}
--LIBS= @LDFLAGS@ @LIBS@
-+LIBS= @LDFLAGS@ @LIBS@ @THREAD_LIBS@
- MORELIBS= @LDFLAGS@ ${TIFF_LIBS} @LIBS@
- CFLAGS = ${FLAGS} @CPPFLAGS@ @CFLAGS@ 
- CXXFLAGS = ${FLAGS} ${CXXRPOFLAGS} @CPPFLAGS@ @CXXFLAGS@ 
 @@ -83,7 +83,7 @@
  install-scripts: FORCE
  	${INSTALL} -d ${DESTDIR}${bindir}
@@ -18,21 +9,3 @@
  	  || exit ; done
  
  install-man: FORCE
-@@ -127,7 +127,7 @@
- 
- cjb2: cjb2.o ${JB2OBJS}
- 	${LIBTOOL} --mode=link \
--	  ${CXX} -o $@ ${CXXFLAGS} cjb2.o ${JB2OBJS} ${LIBDJVU} ${MORELIBS}
-+	  ${CXX} -o $@ ${CXXFLAGS} cjb2.o ${JB2OBJS} ${LIBDJVU} ${MORELIBS} ${THREAD_LIBS}
- 
- cpaldjvu: cpaldjvu.o ${JB2OBJS}
- 	${LIBTOOL} --mode=link \
-@@ -139,7 +139,7 @@
- 
- ddjvu: ddjvu.o tiff2pdf.o
- 	${LIBTOOL} --mode=link \
--	  ${CXX} -o $@ ${CXXFLAGS} ddjvu.o tiff2pdf.o ${LIBDJVU} ${MORELIBS}
-+	  ${CXX} -o $@ ${CXXFLAGS} ddjvu.o tiff2pdf.o ${LIBDJVU} ${MORELIBS} ${THREAD_LIBS}
- 
- djvm: djvm.o
- 	${LIBTOOL} --mode=link \

Modified: head/graphics/djvulibre/pkg-plist
==============================================================================
--- head/graphics/djvulibre/pkg-plist	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/djvulibre/pkg-plist	Sun Oct  5 21:30:26 2014	(r370129)
@@ -20,7 +20,8 @@ bin/djvuxmlparser
 include/libdjvu/ddjvuapi.h
 include/libdjvu/miniexp.h
 lib/libdjvulibre.so
-lib/libdjvulibre.so.25
+lib/libdjvulibre.so.21
+lib/libdjvulibre.so.21.4.0
 libdata/pkgconfig/ddjvuapi.pc
 %%ANY2DJVU%%man/man1/any2djvu.1.gz
 man/man1/bzz.1.gz
@@ -70,14 +71,3 @@ share/djvu/osi/zh/messages.xml
 share/djvu/pubtext/DjVuMessages.dtd
 share/djvu/pubtext/DjVuOCR.dtd
 share/djvu/pubtext/DjVuXML-s.dtd
-@dirrm share/djvu/pubtext
-@dirrm share/djvu/osi/zh
-@dirrm share/djvu/osi/ja
-@dirrm share/djvu/osi/fr
-@dirrm share/djvu/osi/en
-@dirrm share/djvu/osi/desktop
-@dirrm share/djvu/osi/de
-@dirrm share/djvu/osi/cs
-@dirrm share/djvu/osi
-@dirrmtry share/djvu
-@dirrm include/libdjvu

Modified: head/graphics/evince/Makefile
==============================================================================
--- head/graphics/evince/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/evince/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -4,7 +4,7 @@
 
 PORTNAME=	evince
 PORTVERSION=	2.32.0
-PORTREVISION=	15
+PORTREVISION=	16
 CATEGORIES=	graphics print gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome2

Modified: head/graphics/okular/Makefile
==============================================================================
--- head/graphics/okular/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/okular/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -2,7 +2,7 @@
 
 PORTNAME=	okular
 PORTVERSION=	${KDE4_VERSION}
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	graphics kde
 MASTER_SITES=	KDE/${KDE4_BRANCH}/${PORTVERSION}/src
 DIST_SUBDIR=	KDE/${PORTVERSION}

Modified: head/graphics/zathura-djvu/Makefile
==============================================================================
--- head/graphics/zathura-djvu/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/graphics/zathura-djvu/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,6 +3,7 @@
 
 PORTNAME=	zathura-djvu
 PORTVERSION=	0.2.3
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	http://pwmt.org/projects/zathura/plugins/download/
 

Modified: head/print/qpdfview/Makefile
==============================================================================
--- head/print/qpdfview/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/print/qpdfview/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,7 +3,7 @@
 
 PORTNAME=	qpdfview
 PORTVERSION=	0.4.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	print
 MASTER_SITES=	https://launchpadlibrarian.net/140746246/
 

Modified: head/x11/leechcraft/Makefile
==============================================================================
--- head/x11/leechcraft/Makefile	Sun Oct  5 21:25:20 2014	(r370128)
+++ head/x11/leechcraft/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
@@ -3,7 +3,7 @@
 
 PORTNAME=	leechcraft
 PORTVERSION=	0.6.70
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	x11
 MASTER_SITES=	http://dist.leechcraft.org/LeechCraft/0.6.70/
 DISTNAME=	${PORTNAME}-${PORTVERSION}

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:36:03 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id C7C1217F;
 Sun,  5 Oct 2014 21:36:03 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 9A889E1F;
 Sun,  5 Oct 2014 21:36:03 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95La38k029340;
 Sun, 5 Oct 2014 21:36:03 GMT (envelope-from antoine@FreeBSD.org)
Received: (from antoine@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95La2Ds029334;
 Sun, 5 Oct 2014 21:36:02 GMT (envelope-from antoine@FreeBSD.org)
Message-Id: <201410052136.s95La2Ds029334@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: antoine set sender to
 antoine@FreeBSD.org using -f
From: Antoine Brodin 
Date: Sun, 5 Oct 2014 21:36:02 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370130 - in head/palm/pilot-link: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:36:03 -0000

Author: antoine
Date: Sun Oct  5 21:36:02 2014
New Revision: 370130
URL: https://svnweb.freebsd.org/changeset/ports/370130
QAT: https://qat.redports.org/buildarchive/r370130/

Log:
  Allow building on head

Added:
  head/palm/pilot-link/files/patch-popt__popthelp.c   (contents, props changed)
Modified:
  head/palm/pilot-link/Makefile
  head/palm/pilot-link/pkg-plist

Modified: head/palm/pilot-link/Makefile
==============================================================================
--- head/palm/pilot-link/Makefile	Sun Oct  5 21:30:26 2014	(r370129)
+++ head/palm/pilot-link/Makefile	Sun Oct  5 21:36:02 2014	(r370130)
@@ -20,7 +20,7 @@ GNU_CONFIGURE=	yes
 CFLAGS+=	-I${WRKSRC}/popt -I${LOCALBASE}/include
 CONFIGURE_ARGS+=${ICONV_CONFIGURE_BASE}  --with-included-popt --enable-conduits --enable-xsltproc
 INSTALL_TARGET=	install-strip
-USES=		iconv libtool pathfix pkgconfig tar:bzip2
+USES=		iconv libtool pathfix pkgconfig readline tar:bzip2
 USE_LDCONFIG=	yes
 
 OPTIONS_DEFINE=	PNG THREADS USB
@@ -49,6 +49,7 @@ CONFIGURE_ARGS+=	--disable-png
 .endif
 
 post-patch:
+	@${REINPLACE_CMD} '/enable_werror="yes"/d' ${WRKSRC}/configure
 	@${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \
 		-e 's|png_error_ptr_NULL|NULL|g' \
 		${WRKSRC}/src/pilot-read-notepad.c \

Added: head/palm/pilot-link/files/patch-popt__popthelp.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/palm/pilot-link/files/patch-popt__popthelp.c	Sun Oct  5 21:36:02 2014	(r370130)
@@ -0,0 +1,11 @@
+--- popt/popthelp.c.orig	2004-08-25 15:06:39 UTC
++++ popt/popthelp.c
+@@ -683,7 +683,7 @@
+     s[0] = '\0';
+     /*@-branchstate@*/		/* FIX: W2DO? */
+     if (str == NULL) {
+-	memset(s, 0, sizeof(s));
++	memset(s, 0, 300);
+ 	str = s;
+     }
+     /*@=branchstate@*/

Modified: head/palm/pilot-link/pkg-plist
==============================================================================
--- head/palm/pilot-link/pkg-plist	Sun Oct  5 21:30:26 2014	(r370129)
+++ head/palm/pilot-link/pkg-plist	Sun Oct  5 21:36:02 2014	(r370130)
@@ -137,7 +137,3 @@ man/man1/pilot-read-screenshot.1.gz
 man/man1/pilot-read-todos.1.gz
 man/man1/pilot-read-veo.1.gz
 man/man7/pilot-link.7.gz
-@dirrm %%DATADIR%%/udev
-@dirrm %%DATADIR%%/prc
-@dirrm %%DATADIR%%/pix
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:40:31 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 3A585627;
 Sun,  5 Oct 2014 21:40:31 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 25DBFE6C;
 Sun,  5 Oct 2014 21:40:31 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LeVFq030118;
 Sun, 5 Oct 2014 21:40:31 GMT (envelope-from robak@FreeBSD.org)
Received: (from robak@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LeUa9030114;
 Sun, 5 Oct 2014 21:40:30 GMT (envelope-from robak@FreeBSD.org)
Message-Id: <201410052140.s95LeUa9030114@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: robak set sender to
 robak@FreeBSD.org using -f
From: Bartek Rutkowski 
Date: Sun, 5 Oct 2014 21:40:30 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370131 - in head/net-mgmt: . nagios-check_dhcp.pl
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:40:31 -0000

Author: robak
Date: Sun Oct  5 21:40:29 2014
New Revision: 370131
URL: https://svnweb.freebsd.org/changeset/ports/370131
QAT: https://qat.redports.org/buildarchive/r370131/

Log:
  net-mgmt/nagios-check_dhcp.pl: NEW PORT - Nagios DHCP check plugin
  
  This plugin tests the availability of a given DHCP server using unicast
  delivery.
  
  PR:		187623
  Submitted by:	Lawrence Chen 
  Approved by:	mentors (implicit)

Added:
  head/net-mgmt/nagios-check_dhcp.pl/
  head/net-mgmt/nagios-check_dhcp.pl/Makefile   (contents, props changed)
  head/net-mgmt/nagios-check_dhcp.pl/distinfo   (contents, props changed)
  head/net-mgmt/nagios-check_dhcp.pl/pkg-descr   (contents, props changed)
Modified:
  head/net-mgmt/Makefile

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Sun Oct  5 21:36:02 2014	(r370130)
+++ head/net-mgmt/Makefile	Sun Oct  5 21:40:29 2014	(r370131)
@@ -108,6 +108,7 @@
     SUBDIR += nagios-check_bacula5
     SUBDIR += nagios-check_clamav
     SUBDIR += nagios-check_cpu_usage
+    SUBDIR += nagios-check_dhcp.pl
     SUBDIR += nagios-check_email_delivery
     SUBDIR += nagios-check_hdd_health
     SUBDIR += nagios-check_hp_bladechassis

Added: head/net-mgmt/nagios-check_dhcp.pl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/nagios-check_dhcp.pl/Makefile	Sun Oct  5 21:40:29 2014	(r370131)
@@ -0,0 +1,37 @@
+# Created by: Lawrence Chen 
+# $FreeBSD$
+
+PORTNAME=	check_dhcp.pl
+PORTVERSION=	0.1
+CATEGORIES=	net-mgmt
+MASTER_SITES=	http://exchange.nagios.org/components/com_mtree/attachment.php?link_id=1526&cf_id=24&dummy=/
+PKGNAMEPREFIX=	nagios-
+DISTNAME=	${PORTNAME}
+EXTRACT_SUFX=
+
+MAINTAINER=	beastie@tardisi.com
+COMMENT=	Check the availability of a DHCP server using unicast delivery
+
+RUN_DEPENDS=	${LOCALBASE}/libexec/nagios/utils.pm:${PORTSDIR}/net-mgmt/nagios-plugins \
+		p5-IO-Interface>=0:${PORTSDIR}/net/p5-IO-Interface \
+		p5-Net-DHCP-Watch>=0:${PORTSDIR}/net/p5-Net-DHCP-Watch
+
+USES=		perl5
+USE_PERL5=	run
+
+PLIST_FILES=	libexec/nagios/check_dhcp.pl
+NO_BUILD=	yes
+NO_WRKSUBDIR=	yes
+
+post-patch:
+	@${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," ${WRKSRC}/${PORTNAME}
+
+do-extract:
+	@${MKDIR} ${WRKDIR}
+	@${CP} ${DISTDIR}/${PORTNAME}	${WRKDIR}/
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios
+	${INSTALL_SCRIPT} ${WRKSRC}/check_dhcp.pl ${STAGEDIR}${PREFIX}/libexec/nagios/check_dhcp.pl
+
+.include 

Added: head/net-mgmt/nagios-check_dhcp.pl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/nagios-check_dhcp.pl/distinfo	Sun Oct  5 21:40:29 2014	(r370131)
@@ -0,0 +1,2 @@
+SHA256 (check_dhcp.pl) = 7aa6f26ae11f66e7b7a0100649a42fbd7179279a1bc2ff0305d633be59bcc87b
+SIZE (check_dhcp.pl) = 4171

Added: head/net-mgmt/nagios-check_dhcp.pl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/nagios-check_dhcp.pl/pkg-descr	Sun Oct  5 21:40:29 2014	(r370131)
@@ -0,0 +1,4 @@
+This plugin tests the availability of a given DHCP server using unicast
+delivery.
+
+WWW: http://exchange.nagios.org/

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 21:59:41 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 9E918B1F;
 Sun,  5 Oct 2014 21:59:41 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 8AD4FFFA;
 Sun,  5 Oct 2014 21:59:41 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95LxfOt038001;
 Sun, 5 Oct 2014 21:59:41 GMT (envelope-from antoine@FreeBSD.org)
Received: (from antoine@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95LxfSY037999;
 Sun, 5 Oct 2014 21:59:41 GMT (envelope-from antoine@FreeBSD.org)
Message-Id: <201410052159.s95LxfSY037999@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: antoine set sender to
 antoine@FreeBSD.org using -f
From: Antoine Brodin 
Date: Sun, 5 Oct 2014 21:59:41 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370132 - in head: . www www/moodle25
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 21:59:41 -0000

Author: antoine
Date: Sun Oct  5 21:59:40 2014
New Revision: 370132
URL: https://svnweb.freebsd.org/changeset/ports/370132
QAT: https://qat.redports.org/buildarchive/r370132/

Log:
  Remove expired port
  2014-10-05 www/moodle25: Upstream support ended

Deleted:
  head/www/moodle25/
Modified:
  head/MOVED
  head/www/Makefile

Modified: head/MOVED
==============================================================================
--- head/MOVED	Sun Oct  5 21:40:29 2014	(r370131)
+++ head/MOVED	Sun Oct  5 21:59:40 2014	(r370132)
@@ -7157,3 +7157,4 @@ deskutils/gnome-main-menu||2014-10-03|Re
 editors/mlview||2014-10-03|Removed, because x11-toolkits/eel was removed
 textproc/gnome-translate||2014-10-03|Removed, because x11-toolkits/eel was removed
 x11/avant-window-navigator-gnome||2014-10-03|Removed doesn't build with update gnome-desktop
+www/moodle25||2014-10-05|Has expired: Upstream support ended

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Oct  5 21:40:29 2014	(r370131)
+++ head/www/Makefile	Sun Oct  5 21:59:40 2014	(r370132)
@@ -514,7 +514,6 @@
     SUBDIR += monast
     SUBDIR += mongoose
     SUBDIR += mongrel2
-    SUBDIR += moodle25
     SUBDIR += moodle26
     SUBDIR += moodle27
     SUBDIR += mozplugger

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 23:03:55 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id CAA966BC;
 Sun,  5 Oct 2014 23:03:55 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 9E6C48FD;
 Sun,  5 Oct 2014 23:03:55 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95N3tTP070576;
 Sun, 5 Oct 2014 23:03:55 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95N3tBs070574;
 Sun, 5 Oct 2014 23:03:55 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201410052303.s95N3tBs070574@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Sun, 5 Oct 2014 23:03:55 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370133 - head/databases/py-mysql-connector-python
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 23:03:55 -0000

Author: marino
Date: Sun Oct  5 23:03:54 2014
New Revision: 370133
URL: https://svnweb.freebsd.org/changeset/ports/370133
QAT: https://qat.redports.org/buildarchive/r370133/

Log:
  databases/py-mysql-connector-python: Upgrade version 1.2.2 => 1.2.3
  
  Assign maintainership to submitter.
  
  PR:		194044
  Submitted by:	Muhammad Rahman

Modified:
  head/databases/py-mysql-connector-python/Makefile
  head/databases/py-mysql-connector-python/distinfo

Modified: head/databases/py-mysql-connector-python/Makefile
==============================================================================
--- head/databases/py-mysql-connector-python/Makefile	Sun Oct  5 21:59:40 2014	(r370132)
+++ head/databases/py-mysql-connector-python/Makefile	Sun Oct  5 23:03:54 2014	(r370133)
@@ -1,20 +1,19 @@
 # $FreeBSD$
 
 PORTNAME=		mysql-connector-python
-PORTVERSION=		1.2.2
+PORTVERSION=		1.2.3
 CATEGORIES=		databases python
 MASTER_SITES=		${MASTER_SITE_MYSQL}
 MASTER_SITE_SUBDIR=	Connector-Python
 PKGNAMEPREFIX=		${PYTHON_PKGNAMEPREFIX}
 
-MAINTAINER=		ports@FreeBSD.org
+MAINTAINER=		5u623l20@gmail.com
 COMMENT=		MySQL driver written in Python
 
 LICENSE=		GPLv2
-LICENSE_FILE=		${WRKSRC}/COPYING
 
-USE_PYTHON=		yes
-USE_PYDISTUTILS=	yes
-PYDISTUTILS_AUTOPLIST=	yes
+PORTSCOUT=		limit:^1\.
+USES=			python
+USE_PYTHON=		distutils autoplist
 
 .include 

Modified: head/databases/py-mysql-connector-python/distinfo
==============================================================================
--- head/databases/py-mysql-connector-python/distinfo	Sun Oct  5 21:59:40 2014	(r370132)
+++ head/databases/py-mysql-connector-python/distinfo	Sun Oct  5 23:03:54 2014	(r370133)
@@ -1,2 +1,2 @@
-SHA256 (mysql-connector-python-1.2.2.tar.gz) = f2500d4b99a991a2ee060c3df40387a86f41e60f12b76032f066a723ed2d18a6
-SIZE (mysql-connector-python-1.2.2.tar.gz) = 281753
+SHA256 (mysql-connector-python-1.2.3.tar.gz) = 03b4ba1c2d4ede2817137b487b3d2e1e38e6ed9423fe91bf13db2fe739a33350
+SIZE (mysql-connector-python-1.2.3.tar.gz) = 285849

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 23:25:48 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 2ADBD8D1;
 Sun,  5 Oct 2014 23:25:48 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 17C89A91;
 Sun,  5 Oct 2014 23:25:48 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95NPloR080280;
 Sun, 5 Oct 2014 23:25:47 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95NPlpU080274;
 Sun, 5 Oct 2014 23:25:47 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201410052325.s95NPlpU080274@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Sun, 5 Oct 2014 23:25:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370134 - in head/net-mgmt/collectd: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 23:25:48 -0000

Author: marino
Date: Sun Oct  5 23:25:46 2014
New Revision: 370134
URL: https://svnweb.freebsd.org/changeset/ports/370134
QAT: https://qat.redports.org/buildarchive/r370134/

Log:
  net-mgmt/collectd: Fix network IF plugin to avoid log spam
  
  While here, remove redundant @dirrm and strip installed libraries.
  
  PR:		191388
  Reported by:	Fredrik Lennmark
  Fix by:		maintainer (Krzysztof Stryjek)

Added:
  head/net-mgmt/collectd/files/patch-src__interface.c   (contents, props changed)
Modified:
  head/net-mgmt/collectd/Makefile
  head/net-mgmt/collectd/pkg-plist

Modified: head/net-mgmt/collectd/Makefile
==============================================================================
--- head/net-mgmt/collectd/Makefile	Sun Oct  5 23:03:54 2014	(r370133)
+++ head/net-mgmt/collectd/Makefile	Sun Oct  5 23:25:46 2014	(r370134)
@@ -3,7 +3,7 @@
 
 PORTNAME=	collectd
 PORTVERSION=	4.10.9
-PORTREVISION=	14
+PORTREVISION=	15
 CATEGORIES=	net-mgmt
 MASTER_SITES=	http://collectd.org/files/
 
@@ -16,6 +16,7 @@ LIB_DEPENDS=	libltdl.so:${PORTSDIR}/deve
 
 GNU_CONFIGURE=	yes
 USES=		autoreconf gmake libtool
+INSTALL_TARGET=	install-strip
 
 OPTIONS_DEFINE=		CGI BIND DEBUG GCRYPT LIBVIRT
 OPTIONS_GROUP=		INPUT OUTPUT

Added: head/net-mgmt/collectd/files/patch-src__interface.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/collectd/files/patch-src__interface.c	Sun Oct  5 23:25:46 2014	(r370134)
@@ -0,0 +1,36 @@
+--- src/interface.c.orig	2014-01-05 00:36:58.000000000 +0400
++++ src/interface.c	2014-01-05 00:45:10.000000000 +0400
+@@ -212,20 +212,19 @@ static int interface_read (void)
+ 		return (-1);
+ 
+ 	for (if_ptr = if_list; if_ptr != NULL; if_ptr = if_ptr->ifa_next)
+-	{
+-		if ((if_data = (struct IFA_DATA *) if_ptr->ifa_data) == NULL)
+-			continue;
+-
+-		if_submit (if_ptr->ifa_name, "if_octets",
+-				if_data->IFA_RX_BYTES,
+-				if_data->IFA_TX_BYTES);
+-		if_submit (if_ptr->ifa_name, "if_packets",
+-				if_data->IFA_RX_PACKT,
+-				if_data->IFA_TX_PACKT);
+-		if_submit (if_ptr->ifa_name, "if_errors",
+-				if_data->IFA_RX_ERROR,
+-				if_data->IFA_TX_ERROR);
+-	}
++        if (if_ptr->ifa_addr != NULL && if_ptr->ifa_addr->sa_family == AF_LINK) {
++            if_data = (struct IFA_DATA *) if_ptr->ifa_data;
++            
++            if_submit (if_ptr->ifa_name, "if_octets",
++                       if_data->IFA_RX_BYTES,
++                       if_data->IFA_TX_BYTES);
++            if_submit (if_ptr->ifa_name, "if_packets",
++                       if_data->IFA_RX_PACKT,
++                       if_data->IFA_TX_PACKT);
++            if_submit (if_ptr->ifa_name, "if_errors",
++                       if_data->IFA_RX_ERROR,
++                       if_data->IFA_TX_ERROR);
++        }
+ 
+ 	freeifaddrs (if_list);
+ /* #endif HAVE_GETIFADDRS */

Modified: head/net-mgmt/collectd/pkg-plist
==============================================================================
--- head/net-mgmt/collectd/pkg-plist	Sun Oct  5 23:03:54 2014	(r370133)
+++ head/net-mgmt/collectd/pkg-plist	Sun Oct  5 23:25:46 2014	(r370134)
@@ -4,7 +4,6 @@ sbin/collectdmon
 @sample etc/collectd.conf.sample
 %%CGI%%%%WWWDIR%%/collection.cgi
 %%CGI%%@sample %%WWWDIR%%/collection.conf.sample
-%%CGI%%@dirrmtry %%WWWDIR%%
 bin/collectd-nagios
 lib/libcollectdclient.so
 lib/libcollectdclient.so.0
@@ -76,6 +75,3 @@ man/man5/collectd.conf.5.gz
 man/man5/types.db.5.gz
 %%DATADIR%%/postgresql_default.conf
 %%DATADIR%%/types.db
-@dirrm lib/collectd
-@dirrm include/collectd
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Sun Oct  5 23:37:47 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id CF932BEA;
 Sun,  5 Oct 2014 23:37:47 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id B1978B81;
 Sun,  5 Oct 2014 23:37:47 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s95NblB8085452;
 Sun, 5 Oct 2014 23:37:47 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s95Nbk3Z085449;
 Sun, 5 Oct 2014 23:37:46 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201410052337.s95Nbk3Z085449@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Sun, 5 Oct 2014 23:37:46 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370135 - in head/www/fcgiwrap: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Sun, 05 Oct 2014 23:37:47 -0000

Author: marino
Date: Sun Oct  5 23:37:46 2014
New Revision: 370135
URL: https://svnweb.freebsd.org/changeset/ports/370135
QAT: https://qat.redports.org/buildarchive/r370135/

Log:
  www/fcgiwrap: Improve binary strip handling, add new feature
  
  PR:		192907
  Final version:	maintainer (fonz)

Added:
  head/www/fcgiwrap/files/patch-fcgiwrap.8   (contents, props changed)
Modified:
  head/www/fcgiwrap/Makefile
  head/www/fcgiwrap/files/patch-fcgiwrap.c

Modified: head/www/fcgiwrap/Makefile
==============================================================================
--- head/www/fcgiwrap/Makefile	Sun Oct  5 23:25:46 2014	(r370134)
+++ head/www/fcgiwrap/Makefile	Sun Oct  5 23:37:46 2014	(r370135)
@@ -2,7 +2,7 @@
 
 PORTNAME=	fcgiwrap
 PORTVERSION=	1.1.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	www
 MASTER_SITES=	GH \
 		http://www.skysmurf.nl/comp/FreeBSD/distfiles/
@@ -31,9 +31,7 @@ GNU_CONFIGURE=	yes
 PLIST_FILES=	sbin/fcgiwrap man/man8/fcgiwrap.8.gz
 
 post-patch:
-	@${REINPLACE_CMD} 's/@prefix@@mandir@/@mandir@/' ${WRKSRC}/Makefile.in
-
-post-stage:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/fcgiwrap
+	@${REINPLACE_CMD} -e 's/@prefix@@mandir@/@mandir@/'\
+	-e 's|-m 755 fcgiwrap|-s -m 755 fcgiwrap|' ${WRKSRC}/Makefile.in
 
 .include 

Added: head/www/fcgiwrap/files/patch-fcgiwrap.8
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/fcgiwrap/files/patch-fcgiwrap.8	Sun Oct  5 23:37:46 2014	(r370135)
@@ -0,0 +1,21 @@
+--- fcgiwrap.8.orig	2014-09-22 12:44:32.000000000 +0200
++++ fcgiwrap.8	2014-09-22 12:51:14.000000000 +0200
+@@ -42,6 +42,9 @@
+ tests this option may be used. Valid socket_urls include \fIunix:/path/to/unix/socket\fP,
+ \fItcp:dot.ted.qu.ad:port\fP and \fItcp6:[ipv6_addr]:port\fP.
+ .TP
++.B \-p \fIpath\fP
++Restrict execution to the given path. Repeated options will be merged.
++.TP
+ .B \-h
+ Show a help message and exit.
+ 
+@@ -113,3 +116,8 @@
+ This manual page was written by Jordi Mallach 
+ (with contributions by Grzegorz Nosek)
+ for the Debian project (and may be used by others).
++.PP
++The 
++.B \-p
++option was contributed by  as an addition to the FreeBSD
++port.

Modified: head/www/fcgiwrap/files/patch-fcgiwrap.c
==============================================================================
--- head/www/fcgiwrap/files/patch-fcgiwrap.c	Sun Oct  5 23:25:46 2014	(r370134)
+++ head/www/fcgiwrap/files/patch-fcgiwrap.c	Sun Oct  5 23:37:46 2014	(r370135)
@@ -1,5 +1,5 @@
---- ./fcgiwrap.c.orig	2010-06-03 16:18:21.000000000 +0200
-+++ ./fcgiwrap.c	2010-06-15 14:54:38.232029168 +0200
+--- fcgiwrap.c.orig	2014-09-22 12:36:32.000000000 +0200
++++ fcgiwrap.c	2014-09-22 12:41:59.000000000 +0200
 @@ -43,6 +43,7 @@
  #include 
  
@@ -7,4 +7,76 @@
 +#include 
  #include 
  #include 
+ #include 
+@@ -58,6 +59,8 @@
  
+ extern char **environ;
+ static char * const * inherited_environ;
++static const char **allowed_programs;
++static size_t allowed_programs_count;
+ 
+ static const char * blacklisted_env_vars[] = {
+ 	"AUTH_TYPE",
+@@ -485,6 +488,19 @@
+ 	}
+ }
+ 
++static bool is_allowed_program(const char *program) {
++	size_t i;
++	if (!allowed_programs_count)
++		return true;
++
++	for (i = 0; i < allowed_programs_count; i++) {
++		if (!strcmp(allowed_programs[i], program))
++			return true;
++	}
++
++	return false;
++}
++
+ static void cgi_error(const char *message, const char *reason, const char *filename)
+ {
+ 	printf("Status: %s\r\nContent-Type: text/plain\r\n\r\n%s\r\n",
+@@ -541,6 +557,9 @@
+ 			if (!filename)
+ 				cgi_error("403 Forbidden", "Cannot get script name, are DOCUMENT_ROOT and SCRIPT_NAME (or SCRIPT_FILENAME) set and is the script executable?", NULL);
+ 
++			if (!is_allowed_program(filename))
++				cgi_error("403 Forbidden", "The given script is not allowed to execute", filename);
++
+ 			last_slash = strrchr(filename, '/');
+ 			if (!last_slash)
+ 				cgi_error("403 Forbidden", "Script name must be a fully qualified path", filename);
+@@ -760,7 +779,7 @@
+ 	char *socket_url = NULL;
+ 	int c;
+ 
+-	while ((c = getopt(argc, argv, "c:hfs:")) != -1) {
++	while ((c = getopt(argc, argv, "c:hfs:p:")) != -1) {
+ 		switch (c) {
+ 			case 'f':
+ 				stderr_to_fastcgi++;
+@@ -773,6 +792,7 @@
+ 					"  -c \t\tNumber of processes to prefork\n"
+ 					"  -s \tSocket to bind to (say -s help for help)\n"
+ 					"  -h\t\t\tShow this help message and exit\n"
++					"  -p \t\tRestrict execution to this script. (repeated options will be merged)\n"
+ 					"\nReport bugs to Grzegorz Nosek <"PACKAGE_BUGREPORT">.\n"
+ 					PACKAGE_NAME" home page: \n",
+ 					argv[0]
+@@ -784,8 +804,14 @@
+ 			case 's':
+ 				socket_url = strdup(optarg);
+ 				break;
++			case 'p':
++				allowed_programs = realloc(allowed_programs, (allowed_programs_count + 1) * sizeof (char *));
++				if (!allowed_programs)
++					abort();
++				allowed_programs[allowed_programs_count++] = strdup(optarg);
++				break;
+ 			case '?':
+-				if (optopt == 'c' || optopt == 's')
++				if (optopt == 'c' || optopt == 's' || optopt == 'p')
+ 					fprintf(stderr, "Option -%c requires an argument.\n", optopt);
+ 				else if (isprint(optopt))
+ 					fprintf(stderr, "Unknown option `-%c'.\n", optopt);

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 01:47:31 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 15B9FCA3;
 Mon,  6 Oct 2014 01:47:31 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id DD19F924;
 Mon,  6 Oct 2014 01:47:30 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s961lUCZ047156;
 Mon, 6 Oct 2014 01:47:30 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s961lT7G047149;
 Mon, 6 Oct 2014 01:47:29 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060147.s961lT7G047149@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 01:47:29 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370136 - in head/devel: . rubygem-guess_html_encoding
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 01:47:31 -0000

Author: swills
Date: Mon Oct  6 01:47:29 2014
New Revision: 370136
URL: https://svnweb.freebsd.org/changeset/ports/370136
QAT: https://qat.redports.org/buildarchive/r370136/

Log:
  devel/rubygem-guess_html_encoding: create port
  
  Attempts to guess and then force encoding of HTML documents
  
  WWW: http://github.com/cantino/guess_html_encoding

Added:
  head/devel/rubygem-guess_html_encoding/
  head/devel/rubygem-guess_html_encoding/Makefile   (contents, props changed)
  head/devel/rubygem-guess_html_encoding/distinfo   (contents, props changed)
  head/devel/rubygem-guess_html_encoding/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sun Oct  5 23:37:46 2014	(r370135)
+++ head/devel/Makefile	Mon Oct  6 01:47:29 2014	(r370136)
@@ -4363,6 +4363,7 @@
     SUBDIR += rubygem-grape-entity
     SUBDIR += rubygem-grape-swagger
     SUBDIR += rubygem-grit
+    SUBDIR += rubygem-guess_html_encoding
     SUBDIR += rubygem-gyoku
     SUBDIR += rubygem-hashery
     SUBDIR += rubygem-hashie

Added: head/devel/rubygem-guess_html_encoding/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-guess_html_encoding/Makefile	Mon Oct  6 01:47:29 2014	(r370136)
@@ -0,0 +1,16 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	guess_html_encoding
+PORTVERSION=	0.0.9
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Attempts to guess and then force encoding of HTML documents
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/devel/rubygem-guess_html_encoding/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-guess_html_encoding/distinfo	Mon Oct  6 01:47:29 2014	(r370136)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/guess_html_encoding-0.0.9.gem) = 65d7bb589751d8294c822db3e057a23cdc202a579be8e2b8c3b0c6ec7f32c737
+SIZE (rubygem/guess_html_encoding-0.0.9.gem) = 25088

Added: head/devel/rubygem-guess_html_encoding/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-guess_html_encoding/pkg-descr	Mon Oct  6 01:47:29 2014	(r370136)
@@ -0,0 +1,3 @@
+Attempts to guess and then force encoding of HTML documents
+
+WWW: http://github.com/cantino/guess_html_encoding

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 02:41:59 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id ECAA5494;
 Mon,  6 Oct 2014 02:41:58 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id D7991D84;
 Mon,  6 Oct 2014 02:41:58 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s962fwcg075036;
 Mon, 6 Oct 2014 02:41:58 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s962fvHw075031;
 Mon, 6 Oct 2014 02:41:57 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060241.s962fvHw075031@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 02:41:57 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370137 - in head/databases: . rubygem-hiredis
 rubygem-hiredis/files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 02:41:59 -0000

Author: swills
Date: Mon Oct  6 02:41:57 2014
New Revision: 370137
URL: https://svnweb.freebsd.org/changeset/ports/370137
QAT: https://qat.redports.org/buildarchive/r370137/

Log:
  databases/rubygem-hiredis: create port
  
  Ruby wrapper for hiredis (protocol serialization/deserialization and blocking
  I/O)
  
  WWW: http://github.com/redis/hiredis-rb

Added:
  head/databases/rubygem-hiredis/
  head/databases/rubygem-hiredis/Makefile   (contents, props changed)
  head/databases/rubygem-hiredis/distinfo   (contents, props changed)
  head/databases/rubygem-hiredis/files/
  head/databases/rubygem-hiredis/files/patch-vendor__hiredis__Makefile   (contents, props changed)
  head/databases/rubygem-hiredis/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon Oct  6 01:47:29 2014	(r370136)
+++ head/databases/Makefile	Mon Oct  6 02:41:57 2014	(r370137)
@@ -862,6 +862,7 @@
     SUBDIR += rubygem-do_postgres
     SUBDIR += rubygem-do_sqlite3
     SUBDIR += rubygem-familia
+    SUBDIR += rubygem-hiredis
     SUBDIR += rubygem-jdbc-mysql
     SUBDIR += rubygem-leo_manager_client
     SUBDIR += rubygem-memcache

Added: head/databases/rubygem-hiredis/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-hiredis/Makefile	Mon Oct  6 02:41:57 2014	(r370137)
@@ -0,0 +1,20 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	hiredis
+PORTVERSION=	0.5.2
+CATEGORIES=	databases rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Ruby wrapper for hiredis
+
+RUN_DEPENDS=	redis>=0:${PORTSDIR}/databases/redis
+
+USES=		gmake
+USE_RUBY=	yes
+USE_RAKE=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/databases/rubygem-hiredis/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-hiredis/distinfo	Mon Oct  6 02:41:57 2014	(r370137)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/hiredis-0.5.2.gem) = 41e5fedb4f68a6402c128d10753b374daa40273253622c6bf9baf4cc6784ca94
+SIZE (rubygem/hiredis-0.5.2.gem) = 47104

Added: head/databases/rubygem-hiredis/files/patch-vendor__hiredis__Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-hiredis/files/patch-vendor__hiredis__Makefile	Mon Oct  6 02:41:57 2014	(r370137)
@@ -0,0 +1,13 @@
+--- vendor/hiredis/Makefile.orig	2014-10-06 02:34:35 UTC
++++ vendor/hiredis/Makefile
+@@ -15,8 +15,8 @@
+ OPTIMIZATION?=-O3
+ WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings
+ DEBUG?= -g -ggdb
+-REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG) $(ARCH)
+-REAL_LDFLAGS=$(LDFLAGS) $(ARCH)
++REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG)
++REAL_LDFLAGS=$(LDFLAGS)
+ 
+ DYLIBSUFFIX=so
+ STLIBSUFFIX=a

Added: head/databases/rubygem-hiredis/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-hiredis/pkg-descr	Mon Oct  6 02:41:57 2014	(r370137)
@@ -0,0 +1,4 @@
+Ruby wrapper for hiredis (protocol serialization/deserialization and blocking
+I/O)
+
+WWW: http://github.com/redis/hiredis-rb

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 02:48:47 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id CF35B5B2;
 Mon,  6 Oct 2014 02:48:47 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A0955DB3;
 Mon,  6 Oct 2014 02:48:47 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s962mlNI076048;
 Mon, 6 Oct 2014 02:48:47 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s962mkLw076044;
 Mon, 6 Oct 2014 02:48:46 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060248.s962mkLw076044@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 02:48:46 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370138 - in head/devel: . rubygem-logster
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 02:48:47 -0000

Author: swills
Date: Mon Oct  6 02:48:46 2014
New Revision: 370138
URL: https://svnweb.freebsd.org/changeset/ports/370138
QAT: https://qat.redports.org/buildarchive/r370138/

Log:
  devel/rubygem-logster: create port
  
  UI for viewing logs in Rack
  
  WWW: https://github.com/discourse/logster

Added:
  head/devel/rubygem-logster/
  head/devel/rubygem-logster/Makefile   (contents, props changed)
  head/devel/rubygem-logster/distinfo   (contents, props changed)
  head/devel/rubygem-logster/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Oct  6 02:41:57 2014	(r370137)
+++ head/devel/Makefile	Mon Oct  6 02:48:46 2014	(r370138)
@@ -4402,6 +4402,7 @@
     SUBDIR += rubygem-locale
     SUBDIR += rubygem-lockfile
     SUBDIR += rubygem-logging
+    SUBDIR += rubygem-logster
     SUBDIR += rubygem-loquacious
     SUBDIR += rubygem-lumberjack
     SUBDIR += rubygem-main

Added: head/devel/rubygem-logster/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-logster/Makefile	Mon Oct  6 02:48:46 2014	(r370138)
@@ -0,0 +1,16 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	logster
+PORTVERSION=	0.1.6
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	UI for viewing logs in Rack
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/devel/rubygem-logster/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-logster/distinfo	Mon Oct  6 02:48:46 2014	(r370138)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/logster-0.1.6.gem) = 9e08b68891c5c56b4aa5d7d5c31f2baabc5910dbd22e55b61407337dc03f0488
+SIZE (rubygem/logster-0.1.6.gem) = 461312

Added: head/devel/rubygem-logster/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-logster/pkg-descr	Mon Oct  6 02:48:46 2014	(r370138)
@@ -0,0 +1,3 @@
+UI for viewing logs in Rack
+
+WWW: https://github.com/discourse/logster

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 03:16:43 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BA5A58E8;
 Mon,  6 Oct 2014 03:16:43 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 8B00F131;
 Mon,  6 Oct 2014 03:16:43 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s963Ghvv090992;
 Mon, 6 Oct 2014 03:16:43 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s963GglE090988;
 Mon, 6 Oct 2014 03:16:42 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060316.s963GglE090988@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 03:16:42 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370139 - in head/devel: . rubygem-lru_redux
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 03:16:43 -0000

Author: swills
Date: Mon Oct  6 03:16:41 2014
New Revision: 370139
URL: https://svnweb.freebsd.org/changeset/ports/370139
QAT: https://qat.redports.org/buildarchive/r370139/

Log:
  devel/rubygem-lru_redux: create port
  
  An efficient implementation of an lru cache
  
  WWW: https://github.com/SamSaffron/lru_redux

Added:
  head/devel/rubygem-lru_redux/
  head/devel/rubygem-lru_redux/Makefile   (contents, props changed)
  head/devel/rubygem-lru_redux/distinfo   (contents, props changed)
  head/devel/rubygem-lru_redux/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Oct  6 02:48:46 2014	(r370138)
+++ head/devel/Makefile	Mon Oct  6 03:16:41 2014	(r370139)
@@ -4404,6 +4404,7 @@
     SUBDIR += rubygem-logging
     SUBDIR += rubygem-logster
     SUBDIR += rubygem-loquacious
+    SUBDIR += rubygem-lru_redux
     SUBDIR += rubygem-lumberjack
     SUBDIR += rubygem-main
     SUBDIR += rubygem-map

Added: head/devel/rubygem-lru_redux/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-lru_redux/Makefile	Mon Oct  6 03:16:41 2014	(r370139)
@@ -0,0 +1,16 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	lru_redux
+PORTVERSION=	0.8.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Efficient implementation of an lru cache
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/devel/rubygem-lru_redux/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-lru_redux/distinfo	Mon Oct  6 03:16:41 2014	(r370139)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/lru_redux-0.8.1.gem) = 1121f77f9b0fcd87cd613e2a129d2bb67123d3514530574765430740767683ee
+SIZE (rubygem/lru_redux-0.8.1.gem) = 9728

Added: head/devel/rubygem-lru_redux/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-lru_redux/pkg-descr	Mon Oct  6 03:16:41 2014	(r370139)
@@ -0,0 +1,3 @@
+An efficient implementation of an lru cache
+
+WWW: https://github.com/SamSaffron/lru_redux

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 03:29:03 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 0D018A5D;
 Mon,  6 Oct 2014 03:29:03 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id EC8B4216;
 Mon,  6 Oct 2014 03:29:02 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s963T2BH096001;
 Mon, 6 Oct 2014 03:29:02 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s963T1DL095993;
 Mon, 6 Oct 2014 03:29:01 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060329.s963T1DL095993@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 03:29:01 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370140 - in head/devel: . rubygem-mustache
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 03:29:03 -0000

Author: swills
Date: Mon Oct  6 03:29:01 2014
New Revision: 370140
URL: https://svnweb.freebsd.org/changeset/ports/370140
QAT: https://qat.redports.org/buildarchive/r370140/

Log:
  devel/rubygem-mustache: create port
  
  Inspired by ctemplate, Mustache is a framework-agnostic way to render
  logic-free views.
  
  As ctemplates says, "It emphasizes separating logic from presentation:
  it is impossible to embed application logic in this template
  language.
  
  Think of Mustache as a replacement for your views. Instead of views
  consisting of ERB or HAML with random helpers and arbitrary logic,
  your views are broken into two parts: a Ruby class and an HTML
  template.
  
  WWW: http://github.com/defunkt/mustache

Added:
  head/devel/rubygem-mustache/
  head/devel/rubygem-mustache/Makefile   (contents, props changed)
  head/devel/rubygem-mustache/distinfo   (contents, props changed)
  head/devel/rubygem-mustache/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Mon Oct  6 03:16:41 2014	(r370139)
+++ head/devel/Makefile	Mon Oct  6 03:29:01 2014	(r370140)
@@ -4434,6 +4434,7 @@
     SUBDIR += rubygem-multi_json
     SUBDIR += rubygem-multi_test
     SUBDIR += rubygem-murmurhash3
+    SUBDIR += rubygem-mustache
     SUBDIR += rubygem-mutter
     SUBDIR += rubygem-naught
     SUBDIR += rubygem-needle

Added: head/devel/rubygem-mustache/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-mustache/Makefile	Mon Oct  6 03:29:01 2014	(r370140)
@@ -0,0 +1,18 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	mustache
+PORTVERSION=	0.99.6
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Mustache is a framework-agnostic way to render logic-free views
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+PLIST_FILES=	bin/mustache
+
+.include 

Added: head/devel/rubygem-mustache/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-mustache/distinfo	Mon Oct  6 03:29:01 2014	(r370140)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/mustache-0.99.6.gem) = de8f9bac8f506fecbde15d1e6db24f3da7d8948df5e58a933623880d0afe0917
+SIZE (rubygem/mustache-0.99.6.gem) = 44544

Added: head/devel/rubygem-mustache/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-mustache/pkg-descr	Mon Oct  6 03:29:01 2014	(r370140)
@@ -0,0 +1,13 @@
+Inspired by ctemplate, Mustache is a framework-agnostic way to render
+logic-free views.
+
+As ctemplates says, "It emphasizes separating logic from presentation:
+it is impossible to embed application logic in this template
+language.
+
+Think of Mustache as a replacement for your views. Instead of views
+consisting of ERB or HAML with random helpers and arbitrary logic,
+your views are broken into two parts: a Ruby class and an HTML
+template.
+
+WWW: http://github.com/defunkt/mustache

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 03:35:39 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 00620B75;
 Mon,  6 Oct 2014 03:35:38 +0000 (UTC)
Received: from mail-oi0-x234.google.com (mail-oi0-x234.google.com
 [IPv6:2607:f8b0:4003:c06::234])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 98BB52EE;
 Mon,  6 Oct 2014 03:35:38 +0000 (UTC)
Received: by mail-oi0-f52.google.com with SMTP id a3so3021160oib.39
 for ; Sun, 05 Oct 2014 20:35:37 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:sender:in-reply-to:references:date:message-id:subject
 :from:to:cc:content-type;
 bh=NdmnmfjmQtCfv/EzAEufWluYYKYiPmHUCUxGJTYivr4=;
 b=SlnjdkJmK7qypiJs/HjbKPWYLnRq9xej5yzKrjD5DGF//5qu0p6F0jYhFrJrhRotx2
 pHeBM82xPrZY0sT85Qx40O7Re8csd8s+Pydc5UmBuwUoMgWWttd9oaMWrJZ7n+PR1v5b
 1+Lo5HOTdtF81ytkLXS+LOa5e93RenX1mCx9KO0jsUQYSbiW1BjXgDgDS4fepi5ja7yd
 x5umwYpxO3jVwZzQTuC6OiKVCs0L7OKDfVK5ZprkY84jAAMlliP1COlFmbYx3F/+VLKk
 i6q1XT0jreyf62ObN5HKGPHynDPXnCk0VAe0UZ7kZK9SV6IIeXBmHCxVlbhbce/AMQQ8
 Bh8Q==
MIME-Version: 1.0
X-Received: by 10.60.121.33 with SMTP id lh1mr6497110oeb.59.1412566537835;
 Sun, 05 Oct 2014 20:35:37 -0700 (PDT)
Sender: andrej.zverev@gmail.com
Received: by 10.182.73.233 with HTTP; Sun, 5 Oct 2014 20:35:37 -0700 (PDT)
In-Reply-To: <201410052140.s95LeUa9030114@svn.freebsd.org>
References: <201410052140.s95LeUa9030114@svn.freebsd.org>
Date: Mon, 6 Oct 2014 07:35:37 +0400
X-Google-Sender-Auth: dfZICkeJC4j5sEyc61J3SdrOodE
Message-ID: 
Subject: Re: svn commit: r370131 - in head/net-mgmt: . nagios-check_dhcp.pl
From: Andrej Zverev 
To: Bartek Rutkowski 
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1
Cc: "svn-ports-head@freebsd.org" ,
 "svn-ports-all@freebsd.org" ,
 "ports-committers@freebsd.org" 
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 03:35:39 -0000

Hi,

Only few questions :-)

1. {LOCALBASE}/libexec/nagios/utils.pm:${PORTSDIR}/net-mgmt/nagios-plugins
<- why don't use pkgname instead?
2. @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," ${WRKSRC}/${PORTNAME} <-
you can use USES=shebangfix

P.S.  Approved by:  mentors (implicit) <- not sure about this  they both
did it, or only one of them and why don't write who they are?


On Mon, Oct 6, 2014 at 1:40 AM, Bartek Rutkowski  wrote:

> Author: robak
> Date: Sun Oct  5 21:40:29 2014
> New Revision: 370131
> URL: https://svnweb.freebsd.org/changeset/ports/370131
> QAT: https://qat.redports.org/buildarchive/r370131/
>
> Log:
>   net-mgmt/nagios-check_dhcp.pl: NEW PORT - Nagios DHCP check plugin
>
>   This plugin tests the availability of a given DHCP server using unicast
>   delivery.
>
>   PR:           187623
>   Submitted by: Lawrence Chen 
>   Approved by:  mentors (implicit)
>
> Added:
>   head/net-mgmt/nagios-check_dhcp.pl/
>   head/net-mgmt/nagios-check_dhcp.pl/Makefile   (contents, props changed)
>   head/net-mgmt/nagios-check_dhcp.pl/distinfo   (contents, props changed)
>   head/net-mgmt/nagios-check_dhcp.pl/pkg-descr   (contents, props changed)
> Modified:
>   head/net-mgmt/Makefile
>
> Modified: head/net-mgmt/Makefile
>
> ==============================================================================
> --- head/net-mgmt/Makefile      Sun Oct  5 21:36:02 2014        (r370130)
> +++ head/net-mgmt/Makefile      Sun Oct  5 21:40:29 2014        (r370131)
> @@ -108,6 +108,7 @@
>      SUBDIR += nagios-check_bacula5
>      SUBDIR += nagios-check_clamav
>      SUBDIR += nagios-check_cpu_usage
> +    SUBDIR += nagios-check_dhcp.pl
>      SUBDIR += nagios-check_email_delivery
>      SUBDIR += nagios-check_hdd_health
>      SUBDIR += nagios-check_hp_bladechassis
>
> Added: head/net-mgmt/nagios-check_dhcp.pl/Makefile
>
> ==============================================================================
> --- /dev/null   00:00:00 1970   (empty, because file is newly added)
> +++ head/net-mgmt/nagios-check_dhcp.pl/Makefile Sun Oct  5 21:40:29 2014
>       (r370131)
> @@ -0,0 +1,37 @@
> +# Created by: Lawrence Chen 
> +# $FreeBSD$
> +
> +PORTNAME=      check_dhcp.pl
> +PORTVERSION=   0.1
> +CATEGORIES=    net-mgmt
> +MASTER_SITES=
> http://exchange.nagios.org/components/com_mtree/attachment.php?link_id=1526&cf_id=24&dummy=/
> +PKGNAMEPREFIX= nagios-
> +DISTNAME=      ${PORTNAME}
> +EXTRACT_SUFX=
> +
> +MAINTAINER=    beastie@tardisi.com
> +COMMENT=       Check the availability of a DHCP server using unicast
> delivery
> +
> +RUN_DEPENDS=   ${LOCALBASE}/libexec/nagios/utils.pm:${PORTSDIR}/net-mgmt/nagios-plugins
> \
> +               p5-IO-Interface>=0:${PORTSDIR}/net/p5-IO-Interface \
> +               p5-Net-DHCP-Watch>=0:${PORTSDIR}/net/p5-Net-DHCP-Watch
> +
> +USES=          perl5
> +USE_PERL5=     run
> +
> +PLIST_FILES=   libexec/nagios/check_dhcp.pl
> +NO_BUILD=      yes
> +NO_WRKSUBDIR=  yes
> +
> +post-patch:
> +       @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL},"
> ${WRKSRC}/${PORTNAME}
> +
> +do-extract:
> +       @${MKDIR} ${WRKDIR}
> +       @${CP} ${DISTDIR}/${PORTNAME}   ${WRKDIR}/
> +
> +do-install:
> +       ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/nagios
> +       ${INSTALL_SCRIPT} ${WRKSRC}/check_dhcp.pl
> ${STAGEDIR}${PREFIX}/libexec/nagios/check_dhcp.pl
> +
> +.include 
>
> Added: head/net-mgmt/nagios-check_dhcp.pl/distinfo
>
> ==============================================================================
> --- /dev/null   00:00:00 1970   (empty, because file is newly added)
> +++ head/net-mgmt/nagios-check_dhcp.pl/distinfo Sun Oct  5 21:40:29 2014
>       (r370131)
> @@ -0,0 +1,2 @@
> +SHA256 (check_dhcp.pl) =
> 7aa6f26ae11f66e7b7a0100649a42fbd7179279a1bc2ff0305d633be59bcc87b
> +SIZE (check_dhcp.pl) = 4171
>
> Added: head/net-mgmt/nagios-check_dhcp.pl/pkg-descr
>
> ==============================================================================
> --- /dev/null   00:00:00 1970   (empty, because file is newly added)
> +++ head/net-mgmt/nagios-check_dhcp.pl/pkg-descr        Sun Oct  5
> 21:40:29 2014        (r370131)
> @@ -0,0 +1,4 @@
> +This plugin tests the availability of a given DHCP server using unicast
> +delivery.
> +
> +WWW: http://exchange.nagios.org/
>
>

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 03:47:17 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id B0773E56;
 Mon,  6 Oct 2014 03:47:17 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 906C53EF;
 Mon,  6 Oct 2014 03:47:17 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s963lHYo005296;
 Mon, 6 Oct 2014 03:47:17 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s963lGKO005292;
 Mon, 6 Oct 2014 03:47:16 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060347.s963lGKO005292@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 03:47:16 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370141 - in head/net: . rubygem-omniauth-github-discourse
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 03:47:17 -0000

Author: swills
Date: Mon Oct  6 03:47:16 2014
New Revision: 370141
URL: https://svnweb.freebsd.org/changeset/ports/370141
QAT: https://qat.redports.org/buildarchive/r370141/

Log:
  net/rubygem-omniauth-github-discourse: create port
  
  Fork of Official OmniAuth strategy for GitHub.
  
  WWW: https://github.com/intridea/omniauth-github

Added:
  head/net/rubygem-omniauth-github-discourse/
  head/net/rubygem-omniauth-github-discourse/Makefile   (contents, props changed)
  head/net/rubygem-omniauth-github-discourse/distinfo   (contents, props changed)
  head/net/rubygem-omniauth-github-discourse/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Mon Oct  6 03:29:01 2014	(r370140)
+++ head/net/Makefile	Mon Oct  6 03:47:16 2014	(r370141)
@@ -1008,6 +1008,7 @@
     SUBDIR += rubygem-oauth2
     SUBDIR += rubygem-octokit
     SUBDIR += rubygem-omniauth-github
+    SUBDIR += rubygem-omniauth-github-discourse
     SUBDIR += rubygem-omniauth-google-oauth2
     SUBDIR += rubygem-omniauth-oauth
     SUBDIR += rubygem-omniauth-oauth2

Added: head/net/rubygem-omniauth-github-discourse/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-omniauth-github-discourse/Makefile	Mon Oct  6 03:47:16 2014	(r370141)
@@ -0,0 +1,19 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	omniauth-github-discourse
+PORTVERSION=	1.1.2
+CATEGORIES=	net rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Fork of Official OmniAuth strategy for GitHub
+
+RUN_DEPENDS=	rubygem-omniauth>=1.0:${PORTSDIR}/security/rubygem-omniauth \
+		rubygem-omniauth-oauth2>=1.1:${PORTSDIR}/net/rubygem-omniauth-oauth2
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/net/rubygem-omniauth-github-discourse/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-omniauth-github-discourse/distinfo	Mon Oct  6 03:47:16 2014	(r370141)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/omniauth-github-discourse-1.1.2.gem) = b3cfc42d8fb91c29ba56999f2c88202a324e10465af9ad21342a4933056dffbe
+SIZE (rubygem/omniauth-github-discourse-1.1.2.gem) = 8192

Added: head/net/rubygem-omniauth-github-discourse/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-omniauth-github-discourse/pkg-descr	Mon Oct  6 03:47:16 2014	(r370141)
@@ -0,0 +1,3 @@
+Fork of Official OmniAuth strategy for GitHub.
+
+WWW: https://github.com/intridea/omniauth-github

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 04:03:06 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id C896F160;
 Mon,  6 Oct 2014 04:03:06 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 994DB78E;
 Mon,  6 Oct 2014 04:03:06 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96436Z2014257;
 Mon, 6 Oct 2014 04:03:06 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96435wk014252;
 Mon, 6 Oct 2014 04:03:05 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060403.s96435wk014252@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 04:03:05 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370142 - in head/net: . rubygem-omniauth-openid
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 04:03:06 -0000

Author: swills
Date: Mon Oct  6 04:03:05 2014
New Revision: 370142
URL: https://svnweb.freebsd.org/changeset/ports/370142
QAT: https://qat.redports.org/buildarchive/r370142/

Log:
  net/rubygem-omniauth-openid: create port
  
  OpenID strategy for OmniAuth.
  
  WWW: https://github.com/intridea/omniauth-openid

Added:
  head/net/rubygem-omniauth-openid/
  head/net/rubygem-omniauth-openid/Makefile   (contents, props changed)
  head/net/rubygem-omniauth-openid/distinfo   (contents, props changed)
  head/net/rubygem-omniauth-openid/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Mon Oct  6 03:47:16 2014	(r370141)
+++ head/net/Makefile	Mon Oct  6 04:03:05 2014	(r370142)
@@ -1012,6 +1012,7 @@
     SUBDIR += rubygem-omniauth-google-oauth2
     SUBDIR += rubygem-omniauth-oauth
     SUBDIR += rubygem-omniauth-oauth2
+    SUBDIR += rubygem-omniauth-openid
     SUBDIR += rubygem-omniauth-twitter
     SUBDIR += rubygem-open-uri-cached
     SUBDIR += rubygem-openid

Added: head/net/rubygem-omniauth-openid/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-omniauth-openid/Makefile	Mon Oct  6 04:03:05 2014	(r370142)
@@ -0,0 +1,19 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	omniauth-openid
+PORTVERSION=	1.0.1
+CATEGORIES=	net rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	OpenID strategy for OmniAuth
+
+RUN_DEPENDS=	rubygem-omniauth>=1.0:${PORTSDIR}/security/rubygem-omniauth \
+		rubygem-rack-openid>=1.3.1:${PORTSDIR}/www/rubygem-rack-openid
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/net/rubygem-omniauth-openid/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-omniauth-openid/distinfo	Mon Oct  6 04:03:05 2014	(r370142)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/omniauth-openid-1.0.1.gem) = 823bce35528072340b4a8a30ebd78e20d1a68178e222b88fe1dd977a88a457e2
+SIZE (rubygem/omniauth-openid-1.0.1.gem) = 10240

Added: head/net/rubygem-omniauth-openid/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/rubygem-omniauth-openid/pkg-descr	Mon Oct  6 04:03:05 2014	(r370142)
@@ -0,0 +1,3 @@
+OpenID strategy for OmniAuth.
+
+WWW: https://github.com/intridea/omniauth-openid

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 04:38:32 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 0C16866E;
 Mon,  6 Oct 2014 04:38:32 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id DFDD9A2F;
 Mon,  6 Oct 2014 04:38:31 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s964cVW2028808;
 Mon, 6 Oct 2014 04:38:31 GMT (envelope-from swills@FreeBSD.org)
Received: (from swills@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s964cUb3028804;
 Mon, 6 Oct 2014 04:38:30 GMT (envelope-from swills@FreeBSD.org)
Message-Id: <201410060438.s964cUb3028804@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: swills set sender to
 swills@FreeBSD.org using -f
From: Steve Wills 
Date: Mon, 6 Oct 2014 04:38:30 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370143 - in head/databases: . rubygem-openid-redis-store
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 04:38:32 -0000

Author: swills
Date: Mon Oct  6 04:38:30 2014
New Revision: 370143
URL: https://svnweb.freebsd.org/changeset/ports/370143
QAT: https://qat.redports.org/buildarchive/r370143/

Log:
  databases/rubygem-openid-redis-store: create port
  
  Implementation of the ruby-openid Store interface that stores information in
  Redis
  
  WWW: https://github.com/dekart/openid-redis-store

Added:
  head/databases/rubygem-openid-redis-store/
  head/databases/rubygem-openid-redis-store/Makefile   (contents, props changed)
  head/databases/rubygem-openid-redis-store/distinfo   (contents, props changed)
  head/databases/rubygem-openid-redis-store/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon Oct  6 04:03:05 2014	(r370142)
+++ head/databases/Makefile	Mon Oct  6 04:38:30 2014	(r370143)
@@ -869,6 +869,7 @@
     SUBDIR += rubygem-memcache-client
     SUBDIR += rubygem-mysql
     SUBDIR += rubygem-mysql2
+    SUBDIR += rubygem-openid-redis-store
     SUBDIR += rubygem-pg
     SUBDIR += rubygem-rbase
     SUBDIR += rubygem-redis

Added: head/databases/rubygem-openid-redis-store/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-openid-redis-store/Makefile	Mon Oct  6 04:38:30 2014	(r370143)
@@ -0,0 +1,19 @@
+# Created by: Steve Wills 
+# $FreeBSD$
+
+PORTNAME=	openid-redis-store
+PORTVERSION=	0.0.2
+CATEGORIES=	databases rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	Redis store for OpenID
+
+RUN_DEPENDS=	rubygem-openid>=0:${PORTSDIR}/net/rubygem-openid \
+		rubygem-redis>=0:${PORTSDIR}/databases/rubygem-redis
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=yes
+
+.include 

Added: head/databases/rubygem-openid-redis-store/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-openid-redis-store/distinfo	Mon Oct  6 04:38:30 2014	(r370143)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/openid-redis-store-0.0.2.gem) = 11229c0cfe6cd5dd7519d01f98af9d17ff4d313c8844adf0f20de92843cbc695
+SIZE (rubygem/openid-redis-store-0.0.2.gem) = 5120

Added: head/databases/rubygem-openid-redis-store/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/rubygem-openid-redis-store/pkg-descr	Mon Oct  6 04:38:30 2014	(r370143)
@@ -0,0 +1,4 @@
+Implementation of the ruby-openid Store interface that stores information in
+Redis
+
+WWW: https://github.com/dekart/openid-redis-store

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 06:07:46 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id B769133F;
 Mon,  6 Oct 2014 06:07:46 +0000 (UTC)
Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148])
 (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 8AA29235;
 Mon,  6 Oct 2014 06:07:45 +0000 (UTC)
Received: from [192.168.0.22] (unknown [130.255.19.191])
 (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))
 (No client certificate requested)
 by shepard.synsport.net (Postfix) with ESMTP id 9D35A438BD;
 Mon,  6 Oct 2014 01:07:21 -0500 (CDT)
Message-ID: <54323187.7040603@marino.st>
Date: Mon, 06 Oct 2014 08:07:03 +0200
From: John Marino 
Reply-To: marino@freebsd.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64;
 rv:24.0) Gecko/20100101 Thunderbird/24.5.0
MIME-Version: 1.0
To: Andrej Zverev , Bartek Rutkowski 
Subject: Re: svn commit: r370131 - in head/net-mgmt: . nagios-check_dhcp.pl
References: <201410052140.s95LeUa9030114@svn.freebsd.org>
 
In-Reply-To: 
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Cc: "svn-ports-head@freebsd.org" ,
 "svn-ports-all@freebsd.org" ,
 "ports-committers@freebsd.org" 
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 06:07:46 -0000

On 10/6/2014 05:35, Andrej Zverev wrote:
> 2. @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," ${WRKSRC}/${PORTNAME}
> <- you can use USES=shebangfix

Be careful with this one -- I made a similar comment and then found out
the script started with "#! /usr/bin/perl" where the space prevented
shebangfix from working.  This could be a similar situation.

> P.S.  Approved by:  mentors (implicit) <- not sure about this  they both
> did it, or only one of them and why don't write who they are?

Robak has implicit approval from both mentors for most commits.  He's
been given guidelines on when he should seek explicit approval.  I'd
says "mentors" (plural) is appropriate.

As for why not written, dunno.  Obviously it can be looked up.  I think
the key message is that explicit approval was not obtained, not
repeating who the mentors are which each commit (which doesn't change).
 As one of his mentors, I didn't have a problem with the message.

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 06:16:36 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BA07A5B5;
 Mon,  6 Oct 2014 06:16:36 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A67C2327;
 Mon,  6 Oct 2014 06:16:36 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s966Ga3i075601;
 Mon, 6 Oct 2014 06:16:36 GMT (envelope-from marino@FreeBSD.org)
Received: (from marino@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s966GaK7075599;
 Mon, 6 Oct 2014 06:16:36 GMT (envelope-from marino@FreeBSD.org)
Message-Id: <201410060616.s966GaK7075599@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: marino set sender to
 marino@FreeBSD.org using -f
From: John Marino 
Date: Mon, 6 Oct 2014 06:16:36 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370144 - head/www/davical
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 06:16:36 -0000

Author: marino
Date: Mon Oct  6 06:16:36 2014
New Revision: 370144
URL: https://svnweb.freebsd.org/changeset/ports/370144
QAT: https://qat.redports.org/buildarchive/r370144/

Log:
  www/davical: Reset maintainer, but DOCS option still broken
  
  Per request by the maintainer, Maurice, maintainship is being reset.
  It should be noted that this port is dumping vital non-docs files in
  DOCDIRS which doesn't get install when the DOCS option is off.  The
  dba, scripts, and config subdirectories should be put somewhere else.
  
  PR:		187112
  Reported by:	cjr (cruwe.de)

Modified:
  head/www/davical/Makefile

Modified: head/www/davical/Makefile
==============================================================================
--- head/www/davical/Makefile	Mon Oct  6 04:38:30 2014	(r370143)
+++ head/www/davical/Makefile	Mon Oct  6 06:16:36 2014	(r370144)
@@ -5,7 +5,7 @@ PORTNAME=	davical
 PORTVERSION=	1.1.2
 CATEGORIES?=	www
 
-MAINTAINER=	maurice@castro.aus.net
+MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Simple CalDAV server using a postgres backend
 
 LICENSE=	GPLv2 LGPL21

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 06:34:44 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id E3C85EF7;
 Mon,  6 Oct 2014 06:34:44 +0000 (UTC)
Received: from mail-oi0-x229.google.com (mail-oi0-x229.google.com
 [IPv6:2607:f8b0:4003:c06::229])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 7D10E77E;
 Mon,  6 Oct 2014 06:34:44 +0000 (UTC)
Received: by mail-oi0-f41.google.com with SMTP id u20so3183690oif.14
 for ; Sun, 05 Oct 2014 23:34:43 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:sender:in-reply-to:references:date:message-id:subject
 :from:to:cc:content-type;
 bh=2n960n7LsgZAnP5sI1VilLFyfL+5kJDJY35/SxLgiXk=;
 b=bSY4he1LSAKII8tZaoqZoEOdcRntKSqwVXCoP0SA7ArZOmWKk7eXYqihF9ZvTR05He
 GaobmglqbwCkFmN7kKDS1v1pUlXNnXHV2qzO2vCIZ3/Pt4TyugjR1BfZ6WHd5JlxnpmO
 DH/DAUluihiEM07OUDhiPmrk6uglBFO9dYW1FAQW2f8PJ9++O0TBIfbnmaIkOK5UQp0e
 aSuCeuwmLiBkj4lm3/FrOxM7tYUI4Sg0SFcF+OuXuLVe05BJDc4mX1YjRWNEkGbNGg3x
 eXv4bMAYuuwBoZSfjo+h1fKH3O+ycUA8Kha264iZAt7XaPBkU7DQ769UiQGTPk2y5mql
 LLHg==
MIME-Version: 1.0
X-Received: by 10.182.33.66 with SMTP id p2mr23721199obi.51.1412577283835;
 Sun, 05 Oct 2014 23:34:43 -0700 (PDT)
Sender: andrej.zverev@gmail.com
Received: by 10.182.73.233 with HTTP; Sun, 5 Oct 2014 23:34:43 -0700 (PDT)
In-Reply-To: <54323187.7040603@marino.st>
References: <201410052140.s95LeUa9030114@svn.freebsd.org>
 
 <54323187.7040603@marino.st>
Date: Mon, 6 Oct 2014 10:34:43 +0400
X-Google-Sender-Auth: azl58jd18vXls7FIYOP5aYWthks
Message-ID: 
Subject: Re: svn commit: r370131 - in head/net-mgmt: . nagios-check_dhcp.pl
From: Andrej Zverev 
To: John Marino 
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1
Cc: "svn-ports-head@freebsd.org" ,
 "svn-ports-all@freebsd.org" ,
 Bartek Rutkowski ,
 "ports-committers@freebsd.org" 
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 06:34:45 -0000

Hello John,

I don't see why shebangfix can't handle space.
_SHEBANG_REINPLACE_ARGS+=       -e
"1s|^\#![[:space:]]*${${lang}_OLD_CMD}|\#!${${lang}_CMD}|"
Even if it can't you can make some handwork to obey framework instead of
making one more way of doing this :-)
About approval, well I first wanted to write my email to Robak and his
mentrors, but after looking previous commits in my mailbox can't find any
sign of them. Sure I know where to look. In this case I was too lazy to
search, my fault.

But anyway, what about LOCALBASE and shebangfix? I think they can be fixed.
If you prefer I can provide patch. Please don't get my email as something
bad, If something can be done better so why not.

On Mon, Oct 6, 2014 at 10:07 AM, John Marino 
wrote:

> On 10/6/2014 05:35, Andrej Zverev wrote:
> > 2. @${REINPLACE_CMD} -e "s,/usr/bin/perl,${PERL}," ${WRKSRC}/${PORTNAME}
> > <- you can use USES=shebangfix
>
> Be careful with this one -- I made a similar comment and then found out
> the script started with "#! /usr/bin/perl" where the space prevented
> shebangfix from working.  This could be a similar situation.
>
> > P.S.  Approved by:  mentors (implicit) <- not sure about this  they both
> > did it, or only one of them and why don't write who they are?
>
> Robak has implicit approval from both mentors for most commits.  He's
> been given guidelines on when he should seek explicit approval.  I'd
> says "mentors" (plural) is appropriate.
>
> As for why not written, dunno.  Obviously it can be looked up.  I think
> the key message is that explicit approval was not obtained, not
> repeating who the mentors are which each commit (which doesn't change).
>  As one of his mentors, I didn't have a problem with the message.
>

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 06:50:59 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id A01701BA;
 Mon,  6 Oct 2014 06:50:59 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 72FF590E;
 Mon,  6 Oct 2014 06:50:59 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s966ox3h093212;
 Mon, 6 Oct 2014 06:50:59 GMT (envelope-from rm@FreeBSD.org)
Received: (from rm@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s966owt9093207;
 Mon, 6 Oct 2014 06:50:58 GMT (envelope-from rm@FreeBSD.org)
Message-Id: <201410060650.s966owt9093207@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org
 using -f
From: Ruslan Makhmatkhanov 
Date: Mon, 6 Oct 2014 06:50:58 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370145 - head/net-p2p/deluge
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 06:50:59 -0000

Author: rm
Date: Mon Oct  6 06:50:58 2014
New Revision: 370145
URL: https://svnweb.freebsd.org/changeset/ports/370145
QAT: https://qat.redports.org/buildarchive/r370145/

Log:
  net-p2p/deluge: update to 1.3.9
  
  - update to 1.3.9 (bugfix release)
  
  Changelogs:
  http://dev.deluge-torrent.org/wiki/ChangeLog#Deluge1.3.84October2014
  http://dev.deluge-torrent.org/wiki/ChangeLog#Deluge1.3.94October2014

Modified:
  head/net-p2p/deluge/Makefile
  head/net-p2p/deluge/distinfo
  head/net-p2p/deluge/pkg-plist

Modified: head/net-p2p/deluge/Makefile
==============================================================================
--- head/net-p2p/deluge/Makefile	Mon Oct  6 06:16:36 2014	(r370144)
+++ head/net-p2p/deluge/Makefile	Mon Oct  6 06:50:58 2014	(r370145)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	deluge
-PORTVERSION=	1.3.7
+PORTVERSION=	1.3.9
 PORTEPOCH=	1
 CATEGORIES=	net-p2p python
 MASTER_SITES=	http://download.deluge-torrent.org/source/

Modified: head/net-p2p/deluge/distinfo
==============================================================================
--- head/net-p2p/deluge/distinfo	Mon Oct  6 06:16:36 2014	(r370144)
+++ head/net-p2p/deluge/distinfo	Mon Oct  6 06:50:58 2014	(r370145)
@@ -1,2 +1,2 @@
-SHA256 (deluge-1.3.7.tar.lzma) = 5078f098ab0266f738045a8ac6dec1462a17e71287ebe6f941b434ec2082566a
-SIZE (deluge-1.3.7.tar.lzma) = 1425604
+SHA256 (deluge-1.3.9.tar.lzma) = 23c35d7fc84f6ba90083d42e4f588a7c8875941158ab53f97395315d43f002df
+SIZE (deluge-1.3.9.tar.lzma) = 1440644

Modified: head/net-p2p/deluge/pkg-plist
==============================================================================
--- head/net-p2p/deluge/pkg-plist	Mon Oct  6 06:16:36 2014	(r370144)
+++ head/net-p2p/deluge/pkg-plist	Mon Oct  6 06:50:58 2014	(r370145)
@@ -48,6 +48,7 @@
 %%PYTHON_SITELIBDIR%%/deluge/i18n/mk/LC_MESSAGES/deluge.mo
 %%PYTHON_SITELIBDIR%%/deluge/i18n/ml/LC_MESSAGES/deluge.mo
 %%PYTHON_SITELIBDIR%%/deluge/i18n/ms/LC_MESSAGES/deluge.mo
+%%PYTHON_SITELIBDIR%%/deluge/i18n/nap/LC_MESSAGES/deluge.mo
 %%PYTHON_SITELIBDIR%%/deluge/i18n/nb/LC_MESSAGES/deluge.mo
 %%PYTHON_SITELIBDIR%%/deluge/i18n/nds/LC_MESSAGES/deluge.mo
 %%PYTHON_SITELIBDIR%%/deluge/i18n/nl/LC_MESSAGES/deluge.mo

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 07:00:54 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 1660A394;
 Mon,  6 Oct 2014 07:00:54 +0000 (UTC)
Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148])
 (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id DD00695C;
 Mon,  6 Oct 2014 07:00:53 +0000 (UTC)
Received: from [192.168.0.22] (unknown [130.255.19.191])
 (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))
 (No client certificate requested)
 by shepard.synsport.net (Postfix) with ESMTP id ED1C4438BD;
 Mon,  6 Oct 2014 02:00:34 -0500 (CDT)
Message-ID: <54323E01.4080109@marino.st>
Date: Mon, 06 Oct 2014 09:00:17 +0200
From: John Marino 
Reply-To: marino@freebsd.org
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64;
 rv:24.0) Gecko/20100101 Thunderbird/24.5.0
MIME-Version: 1.0
To: Andrej Zverev , John Marino 
Subject: Re: svn commit: r370131 - in head/net-mgmt: . nagios-check_dhcp.pl
References: <201410052140.s95LeUa9030114@svn.freebsd.org>		<54323187.7040603@marino.st>
 
In-Reply-To: 
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Cc: "svn-ports-head@freebsd.org" ,
 "svn-ports-all@freebsd.org" ,
 Bartek Rutkowski ,
 "ports-committers@freebsd.org" 
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 07:00:54 -0000

On 10/6/2014 08:34, Andrej Zverev wrote:
> Hello John,
> 
> I don't see why shebangfix can't handle space.
> _SHEBANG_REINPLACE_ARGS+=       -e
> "1s|^\#![[:space:]]*${${lang}_OLD_CMD}|\#!${${lang}_CMD}|"

Actually I only took the other person's word that it didn't work when he
responded to "why didn't you use shebangfix?".  I don't know if he was
mistaken or maybe shebangfix has been improved in the meantime.

> Even if it can't you can make some handwork to obey framework instead of
> making one more way of doing this :-)

i essentially agree with you.

> But anyway, what about LOCALBASE and shebangfix? I think they can be
> fixed. If you prefer I can provide patch. Please don't get my email as
> something bad, If something can be done better so why not.

I didn't take it as bad.
I didn't respond to LOCALBASE because I thought it was valid and I left
that to robak to answer.  Probably both LOCALBASE and SHEBANGFIX should
be tweaked IMO.

John


From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 08:26:55 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 2A9A27B7;
 Mon,  6 Oct 2014 08:26:55 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 158C536B;
 Mon,  6 Oct 2014 08:26:55 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s968QtPS036805;
 Mon, 6 Oct 2014 08:26:55 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s968Qr8R036794;
 Mon, 6 Oct 2014 08:26:53 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410060826.s968Qr8R036794@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 08:26:53 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370146 - in head/net-mgmt/netxms: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 08:26:55 -0000

Author: bapt
Date: Mon Oct  6 08:26:53 2014
New Revision: 370146
URL: https://svnweb.freebsd.org/changeset/ports/370146
QAT: https://qat.redports.org/buildarchive/r370146/

Log:
  Update to 1.2.16 [1]
  switch to libc API instead of nosing in kernel memory via kvm(3) [2]
  
  PR:		194096
  Submitted by:	glebius [1] maintainer [2]
  Approved by:	maintainer

Added:
  head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-freebsd.cpp   (contents, props changed)
  head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-net.cpp   (contents, props changed)
  head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-net.h   (contents, props changed)
Deleted:
  head/net-mgmt/netxms/files/pkg-install.in
Modified:
  head/net-mgmt/netxms/Makefile
  head/net-mgmt/netxms/distinfo
  head/net-mgmt/netxms/pkg-plist

Modified: head/net-mgmt/netxms/Makefile
==============================================================================
--- head/net-mgmt/netxms/Makefile	Mon Oct  6 06:50:58 2014	(r370145)
+++ head/net-mgmt/netxms/Makefile	Mon Oct  6 08:26:53 2014	(r370146)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	netxms
-PORTVERSION=	1.2.14
-PORTREVISION=	1
+PORTVERSION=	1.2.16
 CATEGORIES=	net-mgmt
 MASTER_SITES=	http://www.netxms.org/download/ \
 		http://www.netxms.org/download/archive/
@@ -41,88 +40,38 @@ GROUPS=		netxms
 
 .include 
 
-.if ${PORT_OPTIONS:MSERVER} || ${PORT_OPTIONS:MAGENT} || ${PORT_OPTIONS:MCLIENT}
-PLIST_SUB+=	NXCPTEST=""
-LIB_DEPENDS+=	libexpat.so:${PORTSDIR}/textproc/expat2
-.else
-PLIST_SUB+=	NXCPTEST="@comment "
-.endif
-
 .if ${PORT_OPTIONS:MSERVER} || ${PORT_OPTIONS:MCLIENT}
 PLIST_SUB+=	NXMAP=""
 .else
 PLIST_SUB+=	NXMAP="@comment "
 .endif
 
-.if ! ${PORT_OPTIONS:MSERVER}
-PLIST_SUB+=	SERVER="@comment "
+.if ${PORT_OPTIONS:MSERVER} || ${PORT_OPTIONS:MAGENT}
+PLIST_SUB+=	NXCP=""
 .else
-CONFIGURE_ARGS+=	--with-server
-PLIST_SUB+=	SERVER=""
+PLIST_SUB+=	NXCP="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MSERVER}
 USE_RC_SUBR+=	netxmsd
-.if ${PORT_OPTIONS:MAGENT}
-PLIST_SUB+=	AGENT="@comment "
-.else
+.if !${PORT_OPTIONS:MAGENT}
 USE_RC_SUBR+=	nxagentd
 .endif
 .endif
 
-.if ${PORT_OPTIONS:MCLIENT}
-CONFIGURE_ARGS+=	--with-client
-PLIST_SUB+=	CLIENT=""
-.else
-PLIST_SUB+=	CLIENT="@comment "
-.endif
-
 .if ${PORT_OPTIONS:MAGENT}
 USE_RC_SUBR+=	nxagentd
-CONFIGURE_ARGS+=	--with-agent
-PLIST_SUB+=	AGENT=""
-.else
-PLIST_SUB+=	AGENT="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MMYSQL}
-CONFIGURE_ARGS+=	--with-mysql
-PLIST_SUB+=	MYSQL=""
-USE_MYSQL=	yes
-.else
-PLIST_SUB+=	MYSQL="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MPGSQL}
-CONFIGURE_ARGS+=	--with-pgsql
-PLIST_SUB+=	PGSQL=""
-USE_PGSQL=	yes
-.else
-PLIST_SUB+=	PGSQL="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MSQLITE}
-CONFIGURE_ARGS+=	--with-sqlite
-PLIST_SUB+=	SQLITE=""
-USE_SQLITE=	yes
-.else
-PLIST_SUB+=	SQLITE="@comment "
-.endif
-
-.if ${PORT_OPTIONS:MODBC}
-CONFIGURE_ARGS+=	--with-odbc
-PLIST_SUB+=	ODBC=""
-LIB_DEPENDS+=	libodbc.so:${PORTSDIR}/databases/unixODBC
-.else
-PLIST_SUB+=	ODBC="@comment "
 .endif
 
 post-install:
 .if ${PORT_OPTIONS:MSERVER}
-.if !exists(${STAGEDIR}${PREFIX}/etc/netxmsd.conf-dist)
-	${CP} ${WRKSRC}/contrib/netxmsd.conf-dist ${STAGEDIR}${PREFIX}/etc/
+.if !exists(${STAGEDIR}${PREFIX}/etc/netxmsd.conf.sample)
+	${CP} ${WRKSRC}/contrib/netxmsd.conf-dist ${STAGEDIR}${PREFIX}/etc/netxmsd.conf.sample
 .endif
 .endif
 .if ${PORT_OPTIONS:MSERVER} || ${PORT_OPTIONS:MAGENT}
-.if !exists(${STAGEDIR}${PREFIX}/etc/nxagentd.conf-dist)
-	${CP} ${WRKSRC}/contrib/nxagentd.conf-dist ${STAGEDIR}${PREFIX}/etc/
+.if !exists(${STAGEDIR}${PREFIX}/etc/nxagentd.conf.sample)
+	${CP} ${WRKSRC}/contrib/nxagentd.conf-dist ${STAGEDIR}${PREFIX}/etc/nxagentd.conf.sample
 .endif
 .endif
 

Modified: head/net-mgmt/netxms/distinfo
==============================================================================
--- head/net-mgmt/netxms/distinfo	Mon Oct  6 06:50:58 2014	(r370145)
+++ head/net-mgmt/netxms/distinfo	Mon Oct  6 08:26:53 2014	(r370146)
@@ -1,2 +1,2 @@
-SHA256 (netxms-1.2.14.tar.gz) = 85839604a2efb4125cf4098800e99554aaf0338ea2a7f9eba16c0557bcb56310
-SIZE (netxms-1.2.14.tar.gz) = 10184985
+SHA256 (netxms-1.2.16.tar.gz) = 708e7adf47db2cfee2f88e7439575ed947c291d6c44b7a34f81cad0a17ffb940
+SIZE (netxms-1.2.16.tar.gz) = 10275424

Added: head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-freebsd.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-freebsd.cpp	Mon Oct  6 08:26:53 2014	(r370146)
@@ -0,0 +1,23 @@
+--- src/agent/subagents/freebsd/freebsd.cpp.orig	2014-10-02 16:57:50.000000000 +0400
++++ src/agent/subagents/freebsd/freebsd.cpp	2014-10-02 16:58:48.000000000 +0400
+@@ -48,14 +48,14 @@
+ 	{ _T("FileSystem.UsedPerc(*)"),       H_DiskInfo,        (const TCHAR *)DISK_USED_PERC,    DCI_DT_FLOAT,	DCIDESC_FS_USEDPERC },
+ 
+ 	{ _T("Net.Interface.AdminStatus(*)"), H_NetIfAdmStatus,  NULL,				DCI_DT_INT,	DCIDESC_NET_INTERFACE_ADMINSTATUS },
+-	{ _T("Net.Interface.BytesIn(*)"),     H_NetIfInfoFromKVM, (const TCHAR *)IF_INFO_BYTES_IN,    DCI_DT_UINT64, DCIDESC_NET_INTERFACE_BYTESIN },
+-	{ _T("Net.Interface.BytesOut(*)"),    H_NetIfInfoFromKVM, (const TCHAR *)IF_INFO_BYTES_OUT,   DCI_DT_UINT64, DCIDESC_NET_INTERFACE_BYTESOUT },
+-	{ _T("Net.Interface.InErrors(*)"),    H_NetIfInfoFromKVM, (const TCHAR *)IF_INFO_IN_ERRORS,   DCI_DT_UINT64, DCIDESC_NET_INTERFACE_INERRORS },
++	{ _T("Net.Interface.BytesIn(*)"),     H_NetIfInfo, (const TCHAR *)IF_INFO_BYTES_IN,    DCI_DT_UINT64, DCIDESC_NET_INTERFACE_BYTESIN },
++	{ _T("Net.Interface.BytesOut(*)"),    H_NetIfInfo, (const TCHAR *)IF_INFO_BYTES_OUT,   DCI_DT_UINT64, DCIDESC_NET_INTERFACE_BYTESOUT },
++	{ _T("Net.Interface.InErrors(*)"),    H_NetIfInfo, (const TCHAR *)IF_INFO_IN_ERRORS,   DCI_DT_UINT64, DCIDESC_NET_INTERFACE_INERRORS },
+ 	{ _T("Net.Interface.Link(*)"),        H_NetIfLink,       NULL,				DCI_DT_DEPRECATED,	DCIDESC_DEPRECATED },
+ 	{ _T("Net.Interface.OperStatus(*)"),  H_NetIfLink,       NULL,				DCI_DT_INT,	DCIDESC_NET_INTERFACE_OPERSTATUS },
+-	{ _T("Net.Interface.OutErrors(*)"),   H_NetIfInfoFromKVM, (const TCHAR *)IF_INFO_OUT_ERRORS,  DCI_DT_UINT64, DCIDESC_NET_INTERFACE_OUTERRORS },
+-	{ _T("Net.Interface.PacketsIn(*)"),   H_NetIfInfoFromKVM, (const TCHAR *)IF_INFO_PACKETS_IN,  DCI_DT_UINT64, DCIDESC_NET_INTERFACE_PACKETSIN },
+-	{ _T("Net.Interface.PacketsOut(*)"),  H_NetIfInfoFromKVM, (const TCHAR *)IF_INFO_PACKETS_OUT, DCI_DT_UINT64, DCIDESC_NET_INTERFACE_PACKETSOUT },
++	{ _T("Net.Interface.OutErrors(*)"),   H_NetIfInfo, (const TCHAR *)IF_INFO_OUT_ERRORS,  DCI_DT_UINT64, DCIDESC_NET_INTERFACE_OUTERRORS },
++	{ _T("Net.Interface.PacketsIn(*)"),   H_NetIfInfo, (const TCHAR *)IF_INFO_PACKETS_IN,  DCI_DT_UINT64, DCIDESC_NET_INTERFACE_PACKETSIN },
++	{ _T("Net.Interface.PacketsOut(*)"),  H_NetIfInfo, (const TCHAR *)IF_INFO_PACKETS_OUT, DCI_DT_UINT64, DCIDESC_NET_INTERFACE_PACKETSOUT },
+ 	{ _T("Net.IP.Forwarding"),            H_NetIpForwarding, (const TCHAR *)4,			DCI_DT_INT,	DCIDESC_NET_IP_FORWARDING },
+ 	{ _T("Net.IP6.Forwarding"),           H_NetIpForwarding, (const TCHAR *)6,			DCI_DT_INT,	DCIDESC_NET_IP6_FORWARDING },
+ 

Added: head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-net.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-net.cpp	Mon Oct  6 08:26:53 2014	(r370146)
@@ -0,0 +1,181 @@
+--- src/agent/subagents/freebsd/net.cpp.orig	2014-10-02 16:54:48.000000000 +0400
++++ src/agent/subagents/freebsd/net.cpp	2014-10-02 17:19:53.000000000 +0400
+@@ -32,7 +32,6 @@
+ #include 
+ #include 
+ #include 
+-#include 
+ #include 
+ #include 
+ #include 
+@@ -40,8 +39,7 @@
+ #include 
+ #include 
+ #include 
+-#include 
+-#include 
++#include 
+ 
+ #include "net.h"
+ 
+@@ -60,14 +58,6 @@
+ 	int index;
+ } IFLIST;
+ 
+-struct nlist nl[] = {
+-#define N_IFNET 0
+-	{ (char *)"_ifnet" },
+-	{ NULL },
+-};
+-
+-kvm_t *kvmd = NULL;
+-
+ LONG H_NetIpForwarding(const TCHAR *pszParam, const TCHAR *pArg, TCHAR *pValue)
+ {
+ 	int nVer = CAST_FROM_POINTER(pArg, int);
+@@ -568,94 +558,66 @@
+ 	return nRet;
+ }
+ 
+-LONG H_NetIfInfoFromKVM(const TCHAR *pszParam, const TCHAR *pArg, TCHAR *pValue)
++LONG H_NetIfInfo(const TCHAR *pszParam, const TCHAR *pArg, TCHAR *pValue)
+ {
+-	int nRet = SYSINFO_RC_SUCCESS;
+ 	char szArg[512];
+-	u_long ifnetaddr;
+-	struct ifnet ifnet;
+-	struct ifnethead ifnethead;
+-#if __FreeBSD__ < 5
+-	char szTName[IFNAMSIZ];
+-#endif
+-	char szName[IFNAMSIZ];
++	struct ifaddrs *ifap, *ifa;
++	u_int index;
+ 
+ 	AgentGetParameterArgA(pszParam, 1, szArg, sizeof(szArg));
+ 
+-	if (szArg[0] != 0)
++	if (szArg[0] == 0)
++		return SYSINFO_RC_SUCCESS;
++
++	if (szArg[0] >= '0' && szArg[0] <= '9')
++		index = atoi(szArg);
++	else
++		index = 0;
++
++	if (getifaddrs(&ifap) != 0)
+ 	{
+-		if (szArg[0] >= '0' && szArg[0] <= '9')
+-		{
+-			// index
+-			if (if_indextoname(atoi(szArg), szArg) != szArg)
+-			{
+-				// not found
+-				nRet = SYSINFO_RC_ERROR;
+-			}
+-		}
++		return SYSINFO_RC_ERROR;
++	}
+ 
+-		if (nRet == SYSINFO_RC_SUCCESS)
+-		{
+-			nRet = SYSINFO_RC_ERROR;
++	for (ifa = ifap; ifa; ifa = ifa->ifa_next) {
++		if (ifa->ifa_addr->sa_family != AF_LINK)
++			continue;
++		if (index) {
++			if (index != if_nametoindex(ifa->ifa_name))
++				continue;
++		} else if (strcmp(ifa->ifa_name, szArg) != 0)
++			continue;
+ 
+-			if (kvmd == NULL) {
+-				kvmd = kvm_openfiles(NULL, NULL, NULL, O_RDONLY, NULL);
+-				if (kvmd == NULL)
+-					return SYSINFO_RC_ERROR;
+-				if (kvm_nlist(kvmd, nl) < 0)
+-					return SYSINFO_RC_ERROR;
+-				if (nl[0].n_type == 0)
+-					return SYSINFO_RC_ERROR;
+-			}
+-			ifnetaddr = nl[N_IFNET].n_value;
+-			if (kvm_read(kvmd, ifnetaddr, &ifnethead, sizeof(ifnethead)) != sizeof(ifnethead))
+-				return SYSINFO_RC_ERROR;
+-			ifnetaddr = (u_long)TAILQ_FIRST(&ifnethead);
+-			while (ifnetaddr) {
+-				if (kvm_read(kvmd, ifnetaddr, &ifnet, sizeof(ifnet)) != sizeof(ifnet))
+-					return SYSINFO_RC_ERROR;
+-				ifnetaddr = (u_long)TAILQ_NEXT(&ifnet, if_link);
+-#if __FreeBSD__ >= 5
+-				strlcpy(szName, ifnet.if_xname, sizeof(szName));
+-#else
+-				if (kvm_read(kvmd, ifnet.if_name, szTName, sizeof(szTName)) != sizeof(szTName))
+-					return SYSINFO_RC_ERROR;
+-				szTName[sizeof(szTName) - 1] = '\0';
+-				snprintf(szName, sizeof(szName), "%s%d", szTName, ifnet.if_unit);
+-#endif
+-				if (strcmp(szName, szArg) == 0) {
+-					nRet = SYSINFO_RC_SUCCESS;
+-					switch((long)pArg)
+-					{
+-						case IF_INFO_BYTES_IN:
+-							ret_uint(pValue, ifnet.if_ibytes);
+-							break;
+-						case IF_INFO_BYTES_OUT:
+-							ret_uint(pValue, ifnet.if_obytes);
+-							break;
+-						case IF_INFO_IN_ERRORS:
+-							ret_uint(pValue, ifnet.if_ierrors);
+-							break;
+-						case IF_INFO_OUT_ERRORS:
+-							ret_uint(pValue, ifnet.if_oerrors);
+-							break;
+-						case IF_INFO_PACKETS_IN:
+-							ret_uint(pValue, ifnet.if_ipackets);
+-							break;
+-						case IF_INFO_PACKETS_OUT:
+-							ret_uint(pValue, ifnet.if_opackets);
+-							break;
+-						default:
+-							nRet = SYSINFO_RC_UNSUPPORTED;
+-							break;
+-					}
+-					break;
+-				}
+-				else
+-					continue;
+-			}
++#define	IFA_STAT(s)	(((struct if_data *)ifa->ifa_data)->ifi_ ## s)
++
++		switch((long)pArg)
++		{
++			case IF_INFO_BYTES_IN:
++				ret_uint(pValue, IFA_STAT(ibytes));
++				break;
++			case IF_INFO_BYTES_OUT:
++				ret_uint(pValue, IFA_STAT(obytes));
++				break;
++			case IF_INFO_IN_ERRORS:
++				ret_uint(pValue, IFA_STAT(ierrors));
++				break;
++			case IF_INFO_OUT_ERRORS:
++				ret_uint(pValue, IFA_STAT(oerrors));
++				break;
++			case IF_INFO_PACKETS_IN:
++				ret_uint(pValue, IFA_STAT(ipackets));
++				break;
++			case IF_INFO_PACKETS_OUT:
++				ret_uint(pValue, IFA_STAT(opackets));
++				break;
++			default:
++				freeifaddrs(ifap);
++				return SYSINFO_RC_UNSUPPORTED;
+ 		}
++		freeifaddrs(ifap);
++		return SYSINFO_RC_SUCCESS;
+ 	}
+ 
+-	return nRet;
++	freeifaddrs(ifap);
++	return SYSINFO_RC_ERROR;
+ }

Added: head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-net.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/netxms/files/patch-src-agent-subagents-freebsd-net.h	Mon Oct  6 08:26:53 2014	(r370146)
@@ -0,0 +1,10 @@
+--- src/agent/subagents/freebsd/net.h.orig	2014-10-02 16:59:04.000000000 +0400
++++ src/agent/subagents/freebsd/net.h	2014-10-02 16:59:10.000000000 +0400
+@@ -39,6 +39,6 @@
+ LONG H_NetArpCache(const TCHAR *, const TCHAR *, StringList *);
+ LONG H_NetIfList(const TCHAR *, const TCHAR *, StringList *);
+ LONG H_NetRoutingTable(const TCHAR *, const TCHAR *, StringList *);
+-LONG H_NetIfInfoFromKVM(const TCHAR *, const TCHAR *, TCHAR *);
++LONG H_NetIfInfo(const TCHAR *, const TCHAR *, TCHAR *);
+ 
+ #endif // __NET_H__

Modified: head/net-mgmt/netxms/pkg-plist
==============================================================================
--- head/net-mgmt/netxms/pkg-plist	Mon Oct  6 06:50:58 2014	(r370145)
+++ head/net-mgmt/netxms/pkg-plist	Mon Oct  6 08:26:53 2014	(r370146)
@@ -1,18 +1,14 @@
 %%SERVER%%bin/nxap
-%%SERVER%%bin/nxappget
-%%SERVER%%bin/nxapush
-%%SERVER%%bin/nxencpasswd
-%%AGENT%%bin/nxappget
-%%AGENT%%bin/nxapush
+%%NXCP%%bin/nxappget
+%%NXCP%%bin/nxapush
 %%SERVER%%bin/nxaction
 %%SERVER%%bin/nxadm
 %%SERVER%%bin/netxmsd
-%%AGENT%%bin/nxagentd
-%%SERVER%%bin/nxagentd
+%%NXCP%%bin/nxagentd
 %%CLIENT%%bin/nxalarm
 %%CLIENT%%bin/nxdevcfg
 %%SERVER%%bin/nxdbmgr
-%%AGENT%%bin/nxencpasswd
+%%NXCP%%bin/nxencpasswd
 %%CLIENT%%bin/nxevent
 %%SERVER%%bin/nxget
 %%SERVER%%bin/nxmibc
@@ -23,67 +19,51 @@
 %%SERVER%%bin/nxsnmpset
 %%SERVER%%bin/nxsnmpwalk
 %%SERVER%%bin/nxupload
-%%SERVER%%etc/netxmsd.conf-dist
-%%SERVER%%etc/nxagentd.conf-dist
-%%AGENT%%etc/nxagentd.conf-dist
+%%SERVER%%@sample etc/netxmsd.conf.sample
+%%NXCP%%@sample etc/nxagentd.conf.sample
 lib/libnetxms.so
 lib/libnetxms.so.1
 lib/libnetxms.so.1.0.0
 %%CLIENT%%lib/libnxtre.so
 %%CLIENT%%lib/libnxtre.so.5
-%%AGENT%%lib/libnxsqlite.so
-%%AGENT%%lib/libnxsqlite.so.1
+%%NXCP%%lib/libnxsqlite.so
+%%NXCP%%lib/libnxsqlite.so.1
 %%AGENT%%lib/libnxsqlite.so.1.0.0
-%%AGENT%%lib/libnxdb.so
-%%AGENT%%lib/libnxdb.so.1
+%%NXCP%%lib/libnxdb.so
+%%NXCP%%lib/libnxdb.so.1
 %%AGENT%%lib/libnxdb.so.1.0.0
 %%AGENT%%lib/libnxtre.so.5.0.0
 %%AGENT%%lib/netxms/devemu.nsm
-%%AGENT%%lib/libappagent.so
-%%AGENT%%lib/libappagent.so.1
+%%NXCP%%lib/libappagent.so
+%%NXCP%%lib/libappagent.so.1
 %%AGENT%%lib/libappagent.so.1.0.0
 %%SERVER%%lib/libavaya-ers.so
 %%SERVER%%lib/libcisco.so
-%%AGENT%%lib/libnsm_dbquery.so
-%%SERVER%%lib/libnsm_ecs.so
-%%SERVER%%lib/libnsm_freebsd.so
-%%SERVER%%lib/libnsm_logwatch.so
-%%SERVER%%lib/libnsm_ping.so
-%%AGENT%%lib/libnsm_portcheck.so
+%%NXCP%%lib/libnsm_dbquery.so
+%%SERVER%%lib/libnsm_filemgr.so
+%%NXCP%%lib/libnsm_portcheck.so
 %%AGENT%%lib/libnsm_devemu.so
 %%AGENT%%lib/libnxjansson.so
 %%AGENT%%lib/libnxjansson.so.4
 %%AGENT%%lib/libnxjansson.so.4.6.0
-%%SERVER%%lib/libnsm_sms.so
-%%SERVER%%lib/libnsm_ups.so
-%%SERVER%%lib/libnxdb.so
-%%SERVER%%lib/libnxdb.so.1
-%%AGENT%%lib/libnxsd.so
-%%AGENT%%lib/libnxsd.so.1
+%%NXCP%%lib/libnxsd.so
+%%NXCP%%lib/libnxsd.so.1
 %%AGENT%%lib/libnxsd.so.1.0.0
-%%SERVER%%lib/libappagent.so
-%%SERVER%%lib/libappagent.so.1
-%%SERVER%%lib/libnsm_dbquery.so
-%%SERVER%%lib/libnsm_portcheck.so
-%%SERVER%%lib/libnxsd.so
-%%SERVER%%lib/libnxsd.so.1
 %%SERVER%%lib/libnxsms_dummy.so
 %%SERVER%%lib/libnxsms_dummy.so.1
 %%SERVER%%lib/libnxsms_dummy.so.1.0.0
 %%SERVER%%lib/libnxsms_portech.so
 %%SERVER%%lib/libnxsms_portech.so.1
 %%SERVER%%lib/libnxsms_portech.so.1.0.0
-%%SERVER%%lib/libnxsqlite.so
-%%SERVER%%lib/libnxsqlite.so.1
 %%SERVER%%lib/libstrophe.so
 %%SERVER%%lib/libstrophe.so.1
 %%SERVER%%lib/libstrophe.so.1.0.0
-%%AGENT%%lib/libnsm_ecs.so
-%%AGENT%%lib/libnsm_freebsd.so
-%%AGENT%%lib/libnsm_logwatch.so
-%%AGENT%%lib/libnsm_ping.so
-%%AGENT%%lib/libnsm_sms.so
-%%AGENT%%lib/libnsm_ups.so
+%%NXCP%%lib/libnsm_ecs.so
+%%NXCP%%lib/libnsm_freebsd.so
+%%NXCP%%lib/libnsm_logwatch.so
+%%NXCP%%lib/libnsm_ping.so
+%%NXCP%%lib/libnsm_sms.so
+%%NXCP%%lib/libnsm_ups.so
 %%CLIENT%%lib/libnxcl.so
 %%CLIENT%%lib/libnxcl.so.1
 %%CLIENT%%lib/libnxcl.so.1.0.0
@@ -94,10 +74,8 @@ lib/libnetxms.so.1.0.0
 %%ODBC%%lib/libnxddr_odbc.so
 %%PGSQL%%lib/libnxddr_pgsql.so
 %%SQLITE%%lib/libnxddr_sqlite.so
-%%SERVER%%lib/libnxlp.so
-%%SERVER%%lib/libnxlp.so.1
-%%AGENT%%lib/libnxlp.so
-%%AGENT%%lib/libnxlp.so.1
+%%NXCP%%lib/libnxlp.so
+%%NXCP%%lib/libnxlp.so.1
 %%AGENT%%lib/libnxlp.so.1.0.0
 %%NXMAP%%lib/libnxmap.so
 %%NXMAP%%lib/libnxmap.so.1
@@ -117,22 +95,15 @@ lib/libnetxms.so.1.0.0
 %%SERVER%%lib/libnxsrv.so
 %%SERVER%%lib/libnxsrv.so.1
 %%SERVER%%lib/libnxsrv.so.1.0.0
-%%AGENT%%lib/netxms/dbquery.nsm
-%%AGENT%%lib/netxms/ecs.nsm
-%%AGENT%%lib/netxms/freebsd.nsm
-%%AGENT%%lib/netxms/logwatch.nsm
-%%AGENT%%lib/netxms/ping.nsm
-%%AGENT%%lib/netxms/portcheck.nsm
-%%AGENT%%lib/netxms/sms.nsm
-%%AGENT%%lib/netxms/ups.nsm
-%%SERVER%%lib/netxms/dbquery.nsm
-%%SERVER%%lib/netxms/ecs.nsm
-%%SERVER%%lib/netxms/freebsd.nsm
-%%SERVER%%lib/netxms/logwatch.nsm
-%%SERVER%%lib/netxms/ping.nsm
-%%SERVER%%lib/netxms/portcheck.nsm
-%%SERVER%%lib/netxms/sms.nsm
-%%SERVER%%lib/netxms/ups.nsm
+%%NXCP%%lib/netxms/dbquery.nsm
+%%NXCP%%lib/netxms/ecs.nsm
+%%NXCP%%lib/netxms/freebsd.nsm
+%%NXCP%%lib/netxms/logwatch.nsm
+%%NXCP%%lib/netxms/ping.nsm
+%%NXCP%%lib/netxms/portcheck.nsm
+%%NXCP%%lib/netxms/sms.nsm
+%%NXCP%%lib/netxms/ups.nsm
+%%SERVER%%lib/netxms/filemgr.nsm
 %%SERVER%%lib/netxms/ndd/airespace.ndd
 %%SERVER%%lib/netxms/ndd/at.ndd
 %%SERVER%%lib/netxms/ndd/baystack.ndd
@@ -154,6 +125,8 @@ lib/libnetxms.so.1.0.0
 %%PGSQL%%lib/netxms/dbdrv/pgsql.ddr
 %%SQLITE%%lib/netxms/dbdrv/sqlite.ddr
 %%ODBC%%lib/netxms/dbdrv/odbc.ddr
+@owner netxms
+@group netxms
 %%SERVER%%%%DATADIR%%/backgrounds/.keep
 %%SERVER%%%%DATADIR%%/images/092e4b35-4e7c-42df-b9b7-d5805bfac64e
 %%SERVER%%%%DATADIR%%/images/1ddb76a3-a05f-4a42-acda-22021768feaf
@@ -395,6 +368,7 @@ lib/libnetxms.so.1.0.0
 %%SERVER%%%%DATADIR%%/mibs/NETSCREEN-VR-MIB.txt
 %%SERVER%%%%DATADIR%%/mibs/NETSCREEN-VSYS-MIB.txt
 %%SERVER%%%%DATADIR%%/mibs/NETSWITCH-MIB.txt
+%%SERVER%%%%DATADIR%%/mibs/NETUP-MIB.txt
 %%SERVER%%%%DATADIR%%/mibs/NetWare-Server-MIB.txt
 %%SERVER%%%%DATADIR%%/mibs/NETWORK-APPLIANCE-MIB.txt
 %%SERVER%%%%DATADIR%%/mibs/NETWORK-SERVICES-MIB.txt
@@ -581,12 +555,13 @@ lib/libnetxms.so.1.0.0
 %%SERVER%%%%DATADIR%%/sql/dbschema_oracle.sql
 %%SERVER%%%%DATADIR%%/sql/dbschema_pgsql.sql
 %%SERVER%%%%DATADIR%%/sql/dbschema_sqlite.sql
-%%AGENT%%@dirrm lib/netxms
-%%SERVER%%@dirrm lib/netxms/ndd
-%%SERVER%%@dirrm lib/netxms/dbdrv
-%%SERVER%%@dirrm lib/netxms
 %%SERVER%%@dirrmtry %%DATADIR%%/sql
 %%SERVER%%@dirrmtry %%DATADIR%%/mibs
 %%SERVER%%@dirrmtry %%DATADIR%%/images
 %%SERVER%%@dirrmtry %%DATADIR%%/backgrounds
 %%SERVER%%@dirrmtry %%DATADIR%%
+@owner root
+@group wheel
+%%SERVER%%@dirrm lib/netxms/ndd
+%%SERVER%%@dirrm lib/netxms/dbdrv
+%%NXCP%%@dirrm lib/netxms

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 08:31:09 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 44291A1D;
 Mon,  6 Oct 2014 08:31:09 +0000 (UTC)
Received: from mail-wg0-x22c.google.com (mail-wg0-x22c.google.com
 [IPv6:2a00:1450:400c:c00::22c])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 877A73C8;
 Mon,  6 Oct 2014 08:31:08 +0000 (UTC)
Received: by mail-wg0-f44.google.com with SMTP id y10so5818693wgg.3
 for ; Mon, 06 Oct 2014 01:31:06 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=sender:date:from:to:subject:message-id:references:mime-version
 :content-type:content-disposition:in-reply-to:user-agent;
 bh=h7IOz9Btfvenmy5NUx6rp+To7BLVy6Z5RFeK/Lr32x0=;
 b=IfYmSrZmy5I+bjdJmbkAhgYKyaB7MB9bdbnPl4lFCKpsCNHIhkPwikNJ8jnj6BZB1G
 Es2LpVeWAkdWU4kHUDh5KIRQGJatbX303f0/lD0O9GTjnEbjE66lh5FPMhF8X35LqDer
 E0UHD9ImHIwUv9j14xdZn0w6K4BnrUxH/RJMfUsVS6bik+Xcwc03S7iwSVGSPnuJCVnc
 Z5KD8YkvBM64+ZTCn0PSQl6/HAtVpWeyFDzKTH35zUJr64bBw5klzGvb+R6eIA9oONvh
 cooa3DZb8m2vMJkZobyEpzvWY4rho997BJHaJlTWbrdZ0Fx8CcAGrb/bY41eh7Zj48QO
 2QAQ==
X-Received: by 10.194.47.134 with SMTP id d6mr27845707wjn.76.1412584266505;
 Mon, 06 Oct 2014 01:31:06 -0700 (PDT)
Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1])
 by mx.google.com with ESMTPSA id l5sm7551183wif.3.2014.10.06.01.31.05
 for 
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 06 Oct 2014 01:31:05 -0700 (PDT)
Sender: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 10:31:03 +0200
From: Baptiste Daroussin 
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: Re: svn commit: r370146 - in head/net-mgmt/netxms: . files
Message-ID: <20141006083103.GB9025@ivaldir.etoilebsd.net>
References: <201410060826.s968Qr8R036794@svn.freebsd.org>
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
 protocol="application/pgp-signature"; boundary="qlTNgmc+xy1dBmNv"
Content-Disposition: inline
In-Reply-To: <201410060826.s968Qr8R036794@svn.freebsd.org>
User-Agent: Mutt/1.5.23 (2014-03-12)
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 08:31:09 -0000


--qlTNgmc+xy1dBmNv
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Mon, Oct 06, 2014 at 08:26:53AM +0000, Baptiste Daroussin wrote:
> Author: bapt
> Date: Mon Oct  6 08:26:53 2014
> New Revision: 370146
> URL: https://svnweb.freebsd.org/changeset/ports/370146
> QAT: https://qat.redports.org/buildarchive/r370146/
>=20
> Log:
>   Update to 1.2.16 [1]
>   switch to libc API instead of nosing in kernel memory via kvm(3) [2]
>  =20
>   PR:		194096
>   Submitted by:	glebius [1] maintainer [2]

The other way around, glebius submitted the switch libc API and maintainer =
did
the update :)

regards,
Bapt

--qlTNgmc+xy1dBmNv
Content-Type: application/pgp-signature

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iEYEARECAAYFAlQyU0cACgkQ8kTtMUmk6ExCjwCfQT8dJ7+4JUs0h4OT83JmaZgA
iLoAnR8vN5ybcYw9AD1QAOtig8soFr+W
=IzHV
-----END PGP SIGNATURE-----

--qlTNgmc+xy1dBmNv--

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 09:12:34 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BE9DE1F5;
 Mon,  6 Oct 2014 09:12:34 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id ABFC5A94;
 Mon,  6 Oct 2014 09:12:34 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s969CYak059652;
 Mon, 6 Oct 2014 09:12:34 GMT (envelope-from ehaupt@FreeBSD.org)
Received: (from ehaupt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s969CYM2059650;
 Mon, 6 Oct 2014 09:12:34 GMT (envelope-from ehaupt@FreeBSD.org)
Message-Id: <201410060912.s969CYM2059650@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: ehaupt set sender to
 ehaupt@FreeBSD.org using -f
From: Emanuel Haupt 
Date: Mon, 6 Oct 2014 09:12:34 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370147 - head/shells/bash
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 09:12:34 -0000

Author: ehaupt
Date: Mon Oct  6 09:12:33 2014
New Revision: 370147
URL: https://svnweb.freebsd.org/changeset/ports/370147
QAT: https://qat.redports.org/buildarchive/r370147/

Log:
  Update to 4.3.30

Modified:
  head/shells/bash/Makefile
  head/shells/bash/distinfo

Modified: head/shells/bash/Makefile
==============================================================================
--- head/shells/bash/Makefile	Mon Oct  6 08:26:53 2014	(r370146)
+++ head/shells/bash/Makefile	Mon Oct  6 09:12:33 2014	(r370147)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=		bash
-PATCHLEVEL=		29
+PATCHLEVEL=		30
 PORTVERSION=		4.3.${PATCHLEVEL:S/^0//g}
 PORTREVISION?=		0
 CATEGORIES=		shells

Modified: head/shells/bash/distinfo
==============================================================================
--- head/shells/bash/distinfo	Mon Oct  6 08:26:53 2014	(r370146)
+++ head/shells/bash/distinfo	Mon Oct  6 09:12:33 2014	(r370147)
@@ -58,3 +58,5 @@ SHA256 (bash/bash43-028) = e8b0dbed4724f
 SIZE (bash/bash43-028) = 69606
 SHA256 (bash/bash43-029) = 4cc4a397fe6bc63ecb97d030a4e44258ef2d4e076d0e90c77782968cc43d6292
 SIZE (bash/bash43-029) = 1824
+SHA256 (bash/bash43-030) = 85434f8a2f379d0c49a3ff6d9ffa12c8b157188dd739e556d638217d2a58385b
+SIZE (bash/bash43-030) = 63206

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 09:17:41 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 37C9D45F;
 Mon,  6 Oct 2014 09:17:41 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 0B40FABF;
 Mon,  6 Oct 2014 09:17:41 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s969He8m060493;
 Mon, 6 Oct 2014 09:17:40 GMT (envelope-from robak@FreeBSD.org)
Received: (from robak@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s969He5K060488;
 Mon, 6 Oct 2014 09:17:40 GMT (envelope-from robak@FreeBSD.org)
Message-Id: <201410060917.s969He5K060488@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: robak set sender to
 robak@FreeBSD.org using -f
From: Bartek Rutkowski 
Date: Mon, 6 Oct 2014 09:17:40 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370148 - head/security/py-pylibacl
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 09:17:41 -0000

Author: robak
Date: Mon Oct  6 09:17:39 2014
New Revision: 370148
URL: https://svnweb.freebsd.org/changeset/ports/370148
QAT: https://qat.redports.org/buildarchive/r370148/

Log:
  security/py-pylibacl: update 0.5.0 -> 0.5.2 and fixes
  
  - Change the MASTER_SITES to CHEESESHOP
  - Convert to USES=python
  - Change the pkg-descr url
  - Pet portlint
  - Maintainer's timeout
  
  PR:		193054
  Submitted by:	Bartek Rutkowski 
  Approved by:	mentors (implicit)

Modified:
  head/security/py-pylibacl/Makefile
  head/security/py-pylibacl/distinfo
  head/security/py-pylibacl/pkg-descr

Modified: head/security/py-pylibacl/Makefile
==============================================================================
--- head/security/py-pylibacl/Makefile	Mon Oct  6 09:12:33 2014	(r370147)
+++ head/security/py-pylibacl/Makefile	Mon Oct  6 09:17:39 2014	(r370148)
@@ -2,10 +2,9 @@
 # $FreeBSD$
 
 PORTNAME=	pylibacl
-PORTVERSION=	0.5.0
-PORTREVISION=	4
+PORTVERSION=	0.5.2
 CATEGORIES=	security python
-MASTER_SITES=	SF
+MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
 MAINTAINER=	joris.dedieu@gmail.com
@@ -16,13 +15,10 @@ LICENSE_COMB=	dual
 
 OPTIONS_DEFINE=	DOCS
 
-# Python3 ready
-USE_PYTHON=	yes
-USE_PYDISTUTILS=	yes
-PYDISTUTILS_AUTOPLIST=	yes
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
 
-DOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}
-PORTDOCS=	COPYING IMPLEMENTATION NEWS PLATFORMS README
+PORTDOCS=	COPYING NEWS README
 
 post-install:
 	${MKDIR} ${STAGEDIR}${DOCSDIR}/

Modified: head/security/py-pylibacl/distinfo
==============================================================================
--- head/security/py-pylibacl/distinfo	Mon Oct  6 09:12:33 2014	(r370147)
+++ head/security/py-pylibacl/distinfo	Mon Oct  6 09:17:39 2014	(r370148)
@@ -1,2 +1,2 @@
-SHA256 (pylibacl-0.5.0.tar.gz) = 8706291e815547e2e89426508d00fd31d437bdb8e5eb9407777f414b0606e2d6
-SIZE (pylibacl-0.5.0.tar.gz) = 23886
+SHA256 (pylibacl-0.5.2.tar.gz) = efc71d91587def528576a65283f90dbb69cf02901dc9fd592cc1b5094cd5c0c2
+SIZE (pylibacl-0.5.2.tar.gz) = 31728

Modified: head/security/py-pylibacl/pkg-descr
==============================================================================
--- head/security/py-pylibacl/pkg-descr	Mon Oct  6 09:12:33 2014	(r370147)
+++ head/security/py-pylibacl/pkg-descr	Mon Oct  6 09:17:39 2014	(r370148)
@@ -1,3 +1,3 @@
 py-pylibacl -- Manipulate the POSIX.1e Access Control Lists with python
 
-WWW:	http://pylibacl.sourceforge.net/
+WWW: http://pylibacl.k1024.org/

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 09:33:42 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 73BE3702;
 Mon,  6 Oct 2014 09:33:42 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 610B1C99;
 Mon,  6 Oct 2014 09:33:42 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s969XgUW069374;
 Mon, 6 Oct 2014 09:33:42 GMT (envelope-from lme@FreeBSD.org)
Received: (from lme@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s969Xg9X069373;
 Mon, 6 Oct 2014 09:33:42 GMT (envelope-from lme@FreeBSD.org)
Message-Id: <201410060933.s969Xg9X069373@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: lme set sender to lme@FreeBSD.org
 using -f
From: Lars Engels 
Date: Mon, 6 Oct 2014 09:33:42 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370149 - head/print/foxitreader
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 09:33:42 -0000

Author: lme
Date: Mon Oct  6 09:33:41 2014
New Revision: 370149
URL: https://svnweb.freebsd.org/changeset/ports/370149
QAT: https://qat.redports.org/buildarchive/r370149/

Log:
  - Add a dependecy on net/linux-c6-avahi-libs which allows FoxitReader to start
  - Bump PORTREVISION
  
  Approved by:	portmgr (bapt, implicit)

Modified:
  head/print/foxitreader/Makefile

Modified: head/print/foxitreader/Makefile
==============================================================================
--- head/print/foxitreader/Makefile	Mon Oct  6 09:17:39 2014	(r370148)
+++ head/print/foxitreader/Makefile	Mon Oct  6 09:33:41 2014	(r370149)
@@ -3,7 +3,7 @@
 
 PORTNAME=	foxitreader
 PORTVERSION=	1.1.0
-#PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	print
 MASTER_SITES=	http://cdn04.foxitsoftware.com/pub/foxit/%SUBDIR%/:reader,manual
 MASTER_SITE_SUBDIR=	reader/desktop/linux/1.x/${PORTVERSION:R}/enu/:reader \
@@ -25,7 +25,7 @@ OPTIONS_SUB=	yes
 
 USES=	gettext tar:bzip2
 USE_LINUX=	yes
-USE_LINUX_APPS=	cups-libs gtk2
+USE_LINUX_APPS=	avahi-libs cups-libs gtk2
 
 WRKSRC=	${WRKDIR}/${PORTVERSION:R}-release
 

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 09:48:40 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 70957D04;
 Mon,  6 Oct 2014 09:48:40 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 52849DF6;
 Mon,  6 Oct 2014 09:48:40 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s969mei4074822;
 Mon, 6 Oct 2014 09:48:40 GMT (envelope-from lme@FreeBSD.org)
Received: (from lme@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s969mdZW074817;
 Mon, 6 Oct 2014 09:48:39 GMT (envelope-from lme@FreeBSD.org)
Message-Id: <201410060948.s969mdZW074817@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: lme set sender to lme@FreeBSD.org
 using -f
From: Lars Engels 
Date: Mon, 6 Oct 2014 09:48:39 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370150 - in head: Mk emulators/linux-c6 net
 net/linux-c6-avahi-libs
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 09:48:40 -0000

Author: lme
Date: Mon Oct  6 09:48:38 2014
New Revision: 370150
URL: https://svnweb.freebsd.org/changeset/ports/370150
QAT: https://qat.redports.org/buildarchive/r370150/

Log:
  Add net/linux-c6-avahi-libs and add it as a dependency of emulators/linux-c6.
  
  Differential Revision:	D902
  Approved by:		portmgr (bapt)

Added:
  head/net/linux-c6-avahi-libs/
  head/net/linux-c6-avahi-libs/Makefile   (contents, props changed)
  head/net/linux-c6-avahi-libs/distinfo.i686   (contents, props changed)
Modified:
  head/Mk/bsd.linux-apps.mk
  head/emulators/linux-c6/Makefile
  head/net/Makefile

Modified: head/Mk/bsd.linux-apps.mk
==============================================================================
--- head/Mk/bsd.linux-apps.mk	Mon Oct  6 09:33:41 2014	(r370149)
+++ head/Mk/bsd.linux-apps.mk	Mon Oct  6 09:48:38 2014	(r370150)
@@ -59,7 +59,7 @@ WEB_AUTH=			nvu
 
 # Non-version specific components
 _LINUX_APPS_ALL=	allegro alsalib alsa-plugins-oss alsa-plugins-pulseaudio \
-					arts aspell atk cairo cups-libs curl dri devtools esound expat \
+					arts aspell atk avahi-libs cairo cups-libs curl dri devtools esound expat \
 					flac fontconfig freealut gdkpixbuf gnutls gtk2 hicontheme imlib jpeg libaudiofile \
 					libasyncns libg2c libgcrypt libglade2 libglu libgpg-error libmng libogg \
 					libpciaccess libsigcpp20 libsndfile libtasn1 libtheora libvorbis libxml2 mikmod \
@@ -121,6 +121,10 @@ atk_c6_FILE=		${LINUXBASE}/usr/lib/libat
 atk_DETECT=			${atk${LINUX_DIST_SUFFIX:S/-/_/}_FILE}
 atk_PORT=			${PORTSDIR}/accessibility/linux${LINUX_DIST_SUFFIX}-atk
 
+avahi-libs_c6_FILE=	${LINUXBASE}/usr/lib/libavahi-client.so.3.2.5
+avahi-libs_DETECT=	${avahi-libs${LINUX_DIST_SUFFIX:S/-/_/}_FILE}
+avahi-libs_PORT=	${PORTSDIR}/net/linux${LINUX_DIST_SUFFIX}-avahi-libs
+
 blt_f10_FILE=		${LINUXBASE}/usr/lib/libBLT24.so # FIXME: deprecated, merged into tcl/tk85
 blt_DETECT=		${blt${LINUX_DIST_SUFFIX:S/-/_/}_FILE}
 blt_PORT=		${PORTSDIR}/x11-toolkits/linux${LINUX_DIST_SUFFIX}-blt

Modified: head/emulators/linux-c6/Makefile
==============================================================================
--- head/emulators/linux-c6/Makefile	Mon Oct  6 09:33:41 2014	(r370149)
+++ head/emulators/linux-c6/Makefile	Mon Oct  6 09:48:38 2014	(r370150)
@@ -76,6 +76,7 @@ RUN_DEPENDS+=	linux-c6-libasyncns>0:${PO
 		linux-c6-curl>0:${PORTSDIR}/ftp/linux-c6-curl \
 		linux-c6-tcp_wrappers-libs>0:${PORTSDIR}/net/linux-c6-tcp_wrappers-libs \
 		linux-c6-openldap>0:${PORTSDIR}/net/linux-c6-openldap \
+		linux-c6-avahi-libs>0:${PORTSDIR}/net/linux-c6-avahi-libs \
 		linux-c6-expat>0:${PORTSDIR}/textproc/linux-c6-expat \
 		linux-c6-aspell>0:${PORTSDIR}/textproc/linux-c6-aspell \
 		linux-c6-libxml2>0:${PORTSDIR}/textproc/linux-c6-libxml2 \

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Mon Oct  6 09:33:41 2014	(r370149)
+++ head/net/Makefile	Mon Oct  6 09:48:38 2014	(r370150)
@@ -326,6 +326,7 @@
     SUBDIR += linc-reference
     SUBDIR += linknx
     SUBDIR += linphone
+    SUBDIR += linux-c6-avahi-libs
     SUBDIR += linux-c6-openldap
     SUBDIR += linux-c6-tcp_wrappers-libs
     SUBDIR += linux-f10-nss_ldap

Added: head/net/linux-c6-avahi-libs/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/linux-c6-avahi-libs/Makefile	Mon Oct  6 09:48:38 2014	(r370150)
@@ -0,0 +1,22 @@
+# Created by: lme
+# $FreeBSD$
+
+PORTNAME=	avahi-libs
+PORTVERSION=	0.6.25
+CATEGORIES=	net linux
+
+MAINTAINER=	emulation@FreeBSD.org
+COMMENT=	Libraries for Avahi (Linux CentOS ${LINUX_DIST_VER})
+
+USE_LINUX=	c6
+USE_LINUX_RPM=	yes
+
+RPMVERSION=	12.el6
+USE_LDCONFIG=	yes
+SRC_DISTFILES=	${PORTNAME:S/-libs//}-${PORTVERSION}-${RPMVERSION}${SRC_SUFX}
+DESCR=		${.CURDIR}/../avahi/pkg-descr
+
+PLIST_FILES=	usr/lib/libavahi-client.so.3 usr/lib/libavahi-client.so.3.2.5 \
+		usr/lib/libavahi-common.so.3 usr/lib/libavahi-common.so.3.5.1
+
+.include 

Added: head/net/linux-c6-avahi-libs/distinfo.i686
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/linux-c6-avahi-libs/distinfo.i686	Mon Oct  6 09:48:38 2014	(r370150)
@@ -0,0 +1,4 @@
+SHA256 (rpm/i686/centos/6.5/avahi-libs-0.6.25-12.el6.i686.rpm) = 337a51ed1a94c8341355468dccb78641585cfc7470551b327a72b1f3c231aad4
+SIZE (rpm/i686/centos/6.5/avahi-libs-0.6.25-12.el6.i686.rpm) = 55556
+SHA256 (rpm/i686/centos/6.5/avahi-0.6.25-12.el6.src.rpm) = 130130d03ec230cf0e47e0286a34d883f0cb0f131acde51f7adbae5d7375d9a2
+SIZE (rpm/i686/centos/6.5/avahi-0.6.25-12.el6.src.rpm) = 1129923

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 10:21:02 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 8578D72B;
 Mon,  6 Oct 2014 10:21:02 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 7333A1DA;
 Mon,  6 Oct 2014 10:21:02 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96AL2nW092100;
 Mon, 6 Oct 2014 10:21:02 GMT (envelope-from garga@FreeBSD.org)
Received: (from garga@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96AL2Ik092095;
 Mon, 6 Oct 2014 10:21:02 GMT (envelope-from garga@FreeBSD.org)
Message-Id: <201410061021.s96AL2Ik092095@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: garga set sender to
 garga@FreeBSD.org using -f
From: Renato Botelho 
Date: Mon, 6 Oct 2014 10:21:02 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370151 - head/security/clamav
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 10:21:02 -0000

Author: garga
Date: Mon Oct  6 10:21:01 2014
New Revision: 370151
URL: https://svnweb.freebsd.org/changeset/ports/370151
QAT: https://qat.redports.org/buildarchive/r370151/

Log:
  Use new @dir for directories out of PREFIX

Modified:
  head/security/clamav/Makefile
  head/security/clamav/pkg-plist

Modified: head/security/clamav/Makefile
==============================================================================
--- head/security/clamav/Makefile	Mon Oct  6 09:48:38 2014	(r370150)
+++ head/security/clamav/Makefile	Mon Oct  6 10:21:01 2014	(r370151)
@@ -3,7 +3,7 @@
 
 PORTNAME=	clamav
 PORTVERSION=	0.98.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	security
 MASTER_SITES=	SF
 
@@ -59,9 +59,9 @@ PORTDOCS=	*
 DBDIR=		/var/db/clamav
 LOGDIR=		/var/log/clamav
 RUNDIR=		/var/run/clamav
-PLIST_SUB+=	DBDIR=${DBDIR:S/^\///} \
-		LOGDIR=${LOGDIR:S/^\///} \
-		RUNDIR=${RUNDIR:S/^\///} \
+PLIST_SUB+=	DBDIR=${DBDIR} \
+		LOGDIR=${LOGDIR} \
+		RUNDIR=${RUNDIR} \
 		CLAMAVUSER=${CLAMAVUSER} \
 		CLAMAVGROUP=${CLAMAVGROUP}
 PY_NO_THREAD=	${WRKDIR}/.python-has-no-threads

Modified: head/security/clamav/pkg-plist
==============================================================================
--- head/security/clamav/pkg-plist	Mon Oct  6 09:48:38 2014	(r370150)
+++ head/security/clamav/pkg-plist	Mon Oct  6 10:21:01 2014	(r370151)
@@ -37,12 +37,6 @@ man/man8/clamd.8.gz
 @sample etc/clamd.conf.sample
 @sample etc/freshclam.conf.sample
 %%MILTER%%@sample etc/clamav-milter.conf.sample
-@cwd /
-@owner %%CLAMAVUSER%%
-@group %%CLAMAVGROUP%%
-@dirrmtry %%DBDIR%%
-@dirrmtry %%LOGDIR%%
-@dirrmtry %%RUNDIR%%
-@group
-@owner
-@cwd %%RESETPREFIX%%
+@dir(%%CLAMAVUSER%%,%%CLAMAVGROUP%%,0755) %%DBDIR%%
+@dir(%%CLAMAVUSER%%,%%CLAMAVGROUP%%,0755) %%LOGDIR%%
+@dir(%%CLAMAVUSER%%,%%CLAMAVGROUP%%,0755) %%RUNDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 10:25:36 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id D9FAC88D;
 Mon,  6 Oct 2014 10:25:35 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id BBE712C7;
 Mon,  6 Oct 2014 10:25:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96APZHW093430;
 Mon, 6 Oct 2014 10:25:35 GMT (envelope-from garga@FreeBSD.org)
Received: (from garga@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96APYAq093423;
 Mon, 6 Oct 2014 10:25:34 GMT (envelope-from garga@FreeBSD.org)
Message-Id: <201410061025.s96APYAq093423@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: garga set sender to
 garga@FreeBSD.org using -f
From: Renato Botelho 
Date: Mon, 6 Oct 2014 10:25:34 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370152 - in head/www/sarg: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 10:25:36 -0000

Author: garga
Date: Mon Oct  6 10:25:34 2014
New Revision: 370152
URL: https://svnweb.freebsd.org/changeset/ports/370152
QAT: https://qat.redports.org/buildarchive/r370152/

Log:
  - Update to 2.3.9 [1]
  - Use @sample [1]
  - Remove @dirrm and @dirrmtry
  
  PR:		193914 [1]
  Submitted by:	takefu@airport.fm [1]

Modified:
  head/www/sarg/Makefile
  head/www/sarg/distinfo
  head/www/sarg/files/patch-Makefile.in
  head/www/sarg/pkg-plist

Modified: head/www/sarg/Makefile
==============================================================================
--- head/www/sarg/Makefile	Mon Oct  6 10:21:01 2014	(r370151)
+++ head/www/sarg/Makefile	Mon Oct  6 10:25:34 2014	(r370152)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	sarg
-PORTVERSION=	2.3.6
-PORTREVISION=	3
+PORTVERSION=	2.3.9
 CATEGORIES=	www
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
@@ -43,15 +42,8 @@ ICONV_USES=		iconv
 ICONV_CONFIGURE_WITH=	iconv
 ICONV_LDFLAGS=		${ICONV_LIB}
 
-post-extract:
-	@${FIND} ${WRKSRC} -type d -exec ${CHMOD} 0755 {} \;
-	@${CHMOD} 0755 ${WRKSRC}/configure
-
 post-patch:
 	@${REINPLACE_CMD} -e '/test .*==/ s/==/=/' \
 		${WRKSRC}/configure.in
 
-pre-configure:
-	@(cd ${WRKSRC} && ${AUTORECONF})
-
 .include 

Modified: head/www/sarg/distinfo
==============================================================================
--- head/www/sarg/distinfo	Mon Oct  6 10:21:01 2014	(r370151)
+++ head/www/sarg/distinfo	Mon Oct  6 10:25:34 2014	(r370152)
@@ -1,2 +1,2 @@
-SHA256 (sarg-2.3.6.tar.gz) = 8b8d6ed9da1e5679d9f67508722d837a2b9e0347036084b3fbdb664780fe4c4f
-SIZE (sarg-2.3.6.tar.gz) = 1281924
+SHA256 (sarg-2.3.9.tar.gz) = 7c96b8067f75a1e843af030cf4061efb6b190ea3850fbcc5b7e41af9a02a4117
+SIZE (sarg-2.3.9.tar.gz) = 1288619

Modified: head/www/sarg/files/patch-Makefile.in
==============================================================================
--- head/www/sarg/files/patch-Makefile.in	Mon Oct  6 10:21:01 2014	(r370151)
+++ head/www/sarg/files/patch-Makefile.in	Mon Oct  6 10:25:34 2014	(r370152)
@@ -22,7 +22,7 @@
 -	$(INSTALL_PROGRAM) sarg.1 $(DESTDIR)$(man1dir)/sarg.1
 -	chmod 755 $(DESTDIR)$(man1dir)/sarg.1
 +	$(INSTALL) sarg.1 $(DESTDIR)$(man1dir)/sarg.1
-+	cp sarg.conf $(DESTDIR)$(sysconfdir)/sarg.conf.default
++	cp sarg.conf $(DESTDIR)$(sysconfdir)/sarg.conf.sample
  	@if test ! -f $(DESTDIR)$(sysconfdir)/sarg.conf; then \
  		echo "cp $(DESTDIR)$(sysconfdir)/sarg.conf"; \
  		cp sarg.conf $(DESTDIR)$(sysconfdir)/sarg.conf; \

Modified: head/www/sarg/pkg-plist
==============================================================================
--- head/www/sarg/pkg-plist	Mon Oct  6 10:21:01 2014	(r370151)
+++ head/www/sarg/pkg-plist	Mon Oct  6 10:25:34 2014	(r370152)
@@ -1,7 +1,5 @@
 bin/sarg
-@unexec if cmp -s %D/etc/sarg/sarg.conf %D/etc/sarg/sarg.conf.default; then rm -f %D/etc/sarg/sarg.conf; fi
-etc/sarg/sarg.conf.default
-@exec [ ! -f %B/sarg.conf ] || cp -p %B/%f %B/sarg.conf
+@sample etc/sarg/sarg.conf.sample
 etc/sarg/css.tpl
 etc/sarg/exclude_codes
 etc/sarg/fonts/DejaVuSans.ttf
@@ -66,6 +64,3 @@ etc/sarg/user_limit_block
 %%PHP%%@dirrm etc/sarg/sarg-php/locale/en_EN
 %%PHP%%@dirrm etc/sarg/sarg-php/locale
 %%PHP%%@dirrm etc/sarg/sarg-php
-@dirrm etc/sarg/images
-@dirrm etc/sarg/fonts
-@dirrmtry etc/sarg

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 11:12:27 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 9C4944E8;
 Mon,  6 Oct 2014 11:12:27 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 88F849FC;
 Mon,  6 Oct 2014 11:12:27 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96BCRec016746;
 Mon, 6 Oct 2014 11:12:27 GMT (envelope-from garga@FreeBSD.org)
Received: (from garga@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96BCRvJ016745;
 Mon, 6 Oct 2014 11:12:27 GMT (envelope-from garga@FreeBSD.org)
Message-Id: <201410061112.s96BCRvJ016745@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: garga set sender to
 garga@FreeBSD.org using -f
From: Renato Botelho 
Date: Mon, 6 Oct 2014 11:12:27 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370153 - head/sysutils/ucspi-tcp
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 11:12:27 -0000

Author: garga
Date: Mon Oct  6 11:12:26 2014
New Revision: 370153
URL: https://svnweb.freebsd.org/changeset/ports/370153
QAT: https://qat.redports.org/buildarchive/r370153/

Log:
  - Fix build with option IPV6 disabled
  
  PR:		193827
  Submitted by:	kyuupichan@gmail.com
  MFH:		2014Q4

Modified:
  head/sysutils/ucspi-tcp/Makefile

Modified: head/sysutils/ucspi-tcp/Makefile
==============================================================================
--- head/sysutils/ucspi-tcp/Makefile	Mon Oct  6 10:25:34 2014	(r370152)
+++ head/sysutils/ucspi-tcp/Makefile	Mon Oct  6 11:12:26 2014	(r370153)
@@ -108,6 +108,8 @@ PATCH_SITES+=		${MASTER_SITE_LOCAL:S/$/:
 PATCH_SITE_SUBDIR+=	garga/ucspi-tcp/:rss,ssl,rbl2smtpd
 
 post-patch:
+	@${REINPLACE_CMD} -e 's/^extern int errno;/#include /' \
+		${WRKSRC}/error.h
 .if ${PORT_OPTIONS:MSSL}
 	@${REINPLACE_CMD} -e 's|#INCS=-I/usr/local/include|INCS=-I${OPENSSLBASE}/include|g; \
 			      s|-lcrypto|-L${OPENSSLBASE}/lib |g' \

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 11:15:07 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id DE11D621;
 Mon,  6 Oct 2014 11:15:07 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id B2161A19;
 Mon,  6 Oct 2014 11:15:07 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96BF7UE017241;
 Mon, 6 Oct 2014 11:15:07 GMT (envelope-from gblach@FreeBSD.org)
Received: (from gblach@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96BF73Z017238;
 Mon, 6 Oct 2014 11:15:07 GMT (envelope-from gblach@FreeBSD.org)
Message-Id: <201410061115.s96BF73Z017238@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: gblach set sender to
 gblach@FreeBSD.org using -f
From: Grzegorz Blach 
Date: Mon, 6 Oct 2014 11:15:07 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370154 - head/multimedia/mpv
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 11:15:08 -0000

Author: gblach
Date: Mon Oct  6 11:15:06 2014
New Revision: 370154
URL: https://svnweb.freebsd.org/changeset/ports/370154
QAT: https://qat.redports.org/buildarchive/r370154/

Log:
  Update to 0.6.0

Modified:
  head/multimedia/mpv/Makefile
  head/multimedia/mpv/distinfo
  head/multimedia/mpv/pkg-plist

Modified: head/multimedia/mpv/Makefile
==============================================================================
--- head/multimedia/mpv/Makefile	Mon Oct  6 11:12:26 2014	(r370153)
+++ head/multimedia/mpv/Makefile	Mon Oct  6 11:15:06 2014	(r370154)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mpv
-PORTVERSION=	0.5.4
+PORTVERSION=	0.6.0
 PORTEPOCH=	1
 CATEGORIES=	multimedia audio
 MASTER_SITES=	GH:0 GHC:0 http://ftp.waf.io/pub/release/:1 \
@@ -24,7 +24,7 @@ BUILD_DEPENDS=	rst2man:${PORTSDIR}/textp
 USE_GITHUB=	yes
 GH_ACCOUNT=	mpv-player
 GH_TAGNAME=	v${PORTVERSION}
-GH_COMMIT=	 40cd886
+GH_COMMIT=	03bfc2b
 
 WAF_VERSION=	1.7.16
 

Modified: head/multimedia/mpv/distinfo
==============================================================================
--- head/multimedia/mpv/distinfo	Mon Oct  6 11:12:26 2014	(r370153)
+++ head/multimedia/mpv/distinfo	Mon Oct  6 11:15:06 2014	(r370154)
@@ -1,4 +1,4 @@
-SHA256 (mpv-0.5.4.tar.gz) = 226e423e1dde7bf7d6760189c7b0677e3ffc566f5ecd8e04b9b79049499c885b
-SIZE (mpv-0.5.4.tar.gz) = 2580028
+SHA256 (mpv-0.6.0.tar.gz) = 158ef6066c1270e66bcf865bb250c8c6e1d7a1ace1d30c9a193956b30ee650c4
+SIZE (mpv-0.6.0.tar.gz) = 2598770
 SHA256 (waf-1.7.16) = b64dc26c882572415fd450b745006107965f3fe17b357e3eb43d6676c9635a61
 SIZE (waf-1.7.16) = 91846

Modified: head/multimedia/mpv/pkg-plist
==============================================================================
--- head/multimedia/mpv/pkg-plist	Mon Oct  6 11:12:26 2014	(r370153)
+++ head/multimedia/mpv/pkg-plist	Mon Oct  6 11:15:06 2014	(r370154)
@@ -5,7 +5,7 @@ etc/mpv/mpv.conf.sample
 include/mpv/client.h
 lib/libmpv.so
 lib/libmpv.so.1
-lib/libmpv.so.1.4.0
+lib/libmpv.so.1.5.0
 libdata/pkgconfig/mpv.pc
 man/man1/mpv.1.gz
 share/applications/mpv.desktop

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:10:09 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id B7C19581;
 Mon,  6 Oct 2014 12:10:09 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 89D31FC2;
 Mon,  6 Oct 2014 12:10:09 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96CA9fn041469;
 Mon, 6 Oct 2014 12:10:09 GMT (envelope-from garga@FreeBSD.org)
Received: (from garga@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CA87x041465;
 Mon, 6 Oct 2014 12:10:08 GMT (envelope-from garga@FreeBSD.org)
Message-Id: <201410061210.s96CA87x041465@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: garga set sender to
 garga@FreeBSD.org using -f
From: Renato Botelho 
Date: Mon, 6 Oct 2014 12:10:08 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370155 - head/net/xmlrpc-c
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:10:09 -0000

Author: garga
Date: Mon Oct  6 12:10:08 2014
New Revision: 370155
URL: https://svnweb.freebsd.org/changeset/ports/370155
QAT: https://qat.redports.org/buildarchive/r370155/

Log:
  Update to 1.25.30

Modified:
  head/net/xmlrpc-c/Makefile
  head/net/xmlrpc-c/distinfo
  head/net/xmlrpc-c/pkg-plist

Modified: head/net/xmlrpc-c/Makefile
==============================================================================
--- head/net/xmlrpc-c/Makefile	Mon Oct  6 11:15:06 2014	(r370154)
+++ head/net/xmlrpc-c/Makefile	Mon Oct  6 12:10:08 2014	(r370155)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	xmlrpc-c
-PORTVERSION=	1.25.28
-PORTREVISION=	1
+PORTVERSION=	1.25.30
 CATEGORIES=	net
 MASTER_SITES=	SF/${PORTNAME}/Xmlrpc-c%20Super%20Stable/${PORTVERSION}
 

Modified: head/net/xmlrpc-c/distinfo
==============================================================================
--- head/net/xmlrpc-c/distinfo	Mon Oct  6 11:15:06 2014	(r370154)
+++ head/net/xmlrpc-c/distinfo	Mon Oct  6 12:10:08 2014	(r370155)
@@ -1,2 +1,2 @@
-SHA256 (xmlrpc-c-1.25.28.tgz) = 0786022c6d82ea1af04efade5b86357196f572c458a9649c6c912c469cd93acf
-SIZE (xmlrpc-c-1.25.28.tgz) = 779891
+SHA256 (xmlrpc-c-1.25.30.tgz) = 8ae6ed4ec57d50ed132b1150fc5258346eef3e291501a564f14fa97586902f98
+SIZE (xmlrpc-c-1.25.30.tgz) = 779934

Modified: head/net/xmlrpc-c/pkg-plist
==============================================================================
--- head/net/xmlrpc-c/pkg-plist	Mon Oct  6 11:15:06 2014	(r370154)
+++ head/net/xmlrpc-c/pkg-plist	Mon Oct  6 12:10:08 2014	(r370155)
@@ -5,6 +5,7 @@ include/xmlrpc-c/abyss_unixsock.h
 include/xmlrpc-c/abyss_winsock.h
 include/xmlrpc-c/base.h
 include/xmlrpc-c/base.hpp
+include/xmlrpc-c/base64.hpp
 include/xmlrpc-c/c_util.h
 include/xmlrpc-c/client.h
 include/xmlrpc-c/client.hpp
@@ -104,4 +105,3 @@ lib/libxmlrpc_xmltok.a
 lib/libxmlrpc_xmltok.so
 lib/libxmlrpc_xmltok.so.3
 lib/libxmlrpc_xmltok.so.3.25
-@dirrm include/xmlrpc-c

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:32:42 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 0CDF0C6B;
 Mon,  6 Oct 2014 12:32:42 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E245E303;
 Mon,  6 Oct 2014 12:32:41 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96CWfQt054851;
 Mon, 6 Oct 2014 12:32:41 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CWfMD054845;
 Mon, 6 Oct 2014 12:32:41 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061232.s96CWfMD054845@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 12:32:41 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370156 - head/x11/mate-terminal
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:32:42 -0000

Author: bapt
Date: Mon Oct  6 12:32:40 2014
New Revision: 370156
URL: https://svnweb.freebsd.org/changeset/ports/370156
QAT: https://qat.redports.org/buildarchive/r370156/

Log:
  Update to 1.8.1
  Cleanup pkg-plist
  Remove now useless dependency on gnomehier

Modified:
  head/x11/mate-terminal/Makefile
  head/x11/mate-terminal/distinfo
  head/x11/mate-terminal/pkg-plist

Modified: head/x11/mate-terminal/Makefile
==============================================================================
--- head/x11/mate-terminal/Makefile	Mon Oct  6 12:10:08 2014	(r370155)
+++ head/x11/mate-terminal/Makefile	Mon Oct  6 12:32:40 2014	(r370156)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-terminal
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 CATEGORIES=	x11 mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -16,7 +16,7 @@ PORTSCOUT=	limitw:1,even
 
 USES=		gettext gmake pathfix pkgconfig tar:xz
 USE_XORG=	sm x11
-USE_GNOME=	dconf gnomehier gtk20 intlhack vte
+USE_GNOME=	dconf gtk20 intlhack vte
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-gtk=2.0
 CPPFLAGS+=	-I${LOCALBASE}/include

Modified: head/x11/mate-terminal/distinfo
==============================================================================
--- head/x11/mate-terminal/distinfo	Mon Oct  6 12:10:08 2014	(r370155)
+++ head/x11/mate-terminal/distinfo	Mon Oct  6 12:32:40 2014	(r370156)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-terminal-1.8.0.tar.xz) = 9efe1f9e3ee6ef9bc90e233ebe0a440cdb24761edfb9743dcc8b56f8b7a57c09
-SIZE (mate/mate-terminal-1.8.0.tar.xz) = 1150588
+SHA256 (mate/mate-terminal-1.8.1.tar.xz) = d4ba3fd495feb4f8836ea9ca4c201c78fe9564c8190a2d3c84ca4e514a7aa39d
+SIZE (mate/mate-terminal-1.8.1.tar.xz) = 1160064

Modified: head/x11/mate-terminal/pkg-plist
==============================================================================
--- head/x11/mate-terminal/pkg-plist	Mon Oct  6 12:10:08 2014	(r370155)
+++ head/x11/mate-terminal/pkg-plist	Mon Oct  6 12:32:40 2014	(r370156)
@@ -173,110 +173,3 @@ share/locale/zh_TW/LC_MESSAGES/mate-term
 %%DATADIR%%/skey-challenge.ui
 %%DATADIR%%/terminal.about
 %%DATADIR%%/terminal.xml
-@dirrm %%DATADIR%%
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/ug/LC_MESSAGES
-@dirrmtry share/locale/ug
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/fur/LC_MESSAGES
-@dirrmtry share/locale/fur
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrm share/help/zh_CN/mate-terminal/figures
-@dirrm share/help/zh_CN/mate-terminal
-@dirrmtry share/help/zh_CN
-@dirrm share/help/uk/mate-terminal/figures
-@dirrm share/help/uk/mate-terminal
-@dirrmtry share/help/uk
-@dirrm share/help/sv/mate-terminal/figures
-@dirrm share/help/sv/mate-terminal
-@dirrmtry share/help/sv
-@dirrm share/help/ru/mate-terminal/figures
-@dirrm share/help/ru/mate-terminal
-@dirrmtry share/help/ru
-@dirrm share/help/pt_BR/mate-terminal/figures
-@dirrm share/help/pt_BR/mate-terminal
-@dirrmtry share/help/pt_BR
-@dirrm share/help/oc/mate-terminal/figures
-@dirrm share/help/oc/mate-terminal
-@dirrmtry share/help/oc
-@dirrm share/help/ko/mate-terminal/figures
-@dirrm share/help/ko/mate-terminal
-@dirrmtry share/help/ko
-@dirrm share/help/it/mate-terminal/figures
-@dirrm share/help/it/mate-terminal
-@dirrmtry share/help/it
-@dirrm share/help/fr/mate-terminal/figures
-@dirrm share/help/fr/mate-terminal
-@dirrmtry share/help/fr
-@dirrm share/help/es/mate-terminal/figures
-@dirrm share/help/es/mate-terminal
-@dirrmtry share/help/es
-@dirrm share/help/en_GB/mate-terminal/figures
-@dirrm share/help/en_GB/mate-terminal
-@dirrmtry share/help/en_GB
-@dirrm share/help/el/mate-terminal/figures
-@dirrm share/help/el/mate-terminal
-@dirrmtry share/help/el
-@dirrm share/help/de/mate-terminal/figures
-@dirrm share/help/de/mate-terminal
-@dirrmtry share/help/de
-@dirrm share/help/da/mate-terminal/figures
-@dirrm share/help/da/mate-terminal
-@dirrmtry share/help/da
-@dirrm share/help/cs/mate-terminal/figures
-@dirrm share/help/cs/mate-terminal
-@dirrmtry share/help/cs
-@dirrm share/help/ca/mate-terminal/figures
-@dirrm share/help/ca/mate-terminal
-@dirrmtry share/help/ca
-@dirrm share/help/C/mate-terminal/figures
-@dirrm share/help/C/mate-terminal
-@dirrmtry share/help/C
-@dirrmtry share/help

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:38:24 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id D8771320;
 Mon,  6 Oct 2014 12:38:24 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id BAB1F35B;
 Mon,  6 Oct 2014 12:38:24 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96CcOkW055940;
 Mon, 6 Oct 2014 12:38:24 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CcOSS055932;
 Mon, 6 Oct 2014 12:38:24 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061238.s96CcOSS055932@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 12:38:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370157 - head/x11-fm/caja
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:38:25 -0000

Author: bapt
Date: Mon Oct  6 12:38:23 2014
New Revision: 370157
URL: https://svnweb.freebsd.org/changeset/ports/370157
QAT: https://qat.redports.org/buildarchive/r370157/

Log:
  Update to 1.8.2
  Cleanup plist
  Remove now useless dependency on gnomehier

Modified:
  head/x11-fm/caja/Makefile
  head/x11-fm/caja/distinfo
  head/x11-fm/caja/pkg-plist

Modified: head/x11-fm/caja/Makefile
==============================================================================
--- head/x11-fm/caja/Makefile	Mon Oct  6 12:32:40 2014	(r370156)
+++ head/x11-fm/caja/Makefile	Mon Oct  6 12:38:23 2014	(r370157)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	caja
-PORTVERSION=	1.8.1
+PORTVERSION=	1.8.2
 CATEGORIES=	x11-fm mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -22,7 +22,7 @@ USES=		desktop-file-utils gettext gmake 
 		shared-mime-info tar:xz
 USE_MATE=	desktop icontheme:run
 USE_XORG=	ice x11 xrender
-USE_GNOME=	glib20 gnomehier gtk20 intlhack introspection:build \
+USE_GNOME=	glib20 gtk20 intlhack introspection:build \
 		libxml2 pango
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes

Modified: head/x11-fm/caja/distinfo
==============================================================================
--- head/x11-fm/caja/distinfo	Mon Oct  6 12:32:40 2014	(r370156)
+++ head/x11-fm/caja/distinfo	Mon Oct  6 12:38:23 2014	(r370157)
@@ -1,2 +1,2 @@
-SHA256 (mate/caja-1.8.1.tar.xz) = 6706fc853a6cc6a2f0a012cd08b396f2f72607bc6c50cf6dfd5b38c64d7c6818
-SIZE (mate/caja-1.8.1.tar.xz) = 3647396
+SHA256 (mate/caja-1.8.2.tar.xz) = 99331a7439c346382c3b82c889fee9aaabca8760e9c7dfb60041c1fbcd2c6ac0
+SIZE (mate/caja-1.8.2.tar.xz) = 3596308

Modified: head/x11-fm/caja/pkg-plist
==============================================================================
--- head/x11-fm/caja/pkg-plist	Mon Oct  6 12:32:40 2014	(r370156)
+++ head/x11-fm/caja/pkg-plist	Mon Oct  6 12:38:23 2014	(r370157)
@@ -232,95 +232,4 @@ share/pixmaps/caja/emblems.png
 share/pixmaps/caja/erase.png
 share/pixmaps/caja/knob.png
 share/pixmaps/caja/thumbnail_frame.png
-@dirrmtry share/pixmaps/caja
-@dirrmtry share/mime/application
-@dirrmtry share/locale/zu/LC_MESSAGES
-@dirrmtry share/locale/zu
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/yo/LC_MESSAGES
-@dirrmtry share/locale/yo
-@dirrmtry share/locale/yi/LC_MESSAGES
-@dirrmtry share/locale/yi
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES
-@dirrmtry share/locale/uz@cyrillic
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/ug/LC_MESSAGES
-@dirrmtry share/locale/ug
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/sr@ije/LC_MESSAGES
-@dirrmtry share/locale/sr@ije
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nso/LC_MESSAGES
-@dirrmtry share/locale/nso
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mi/LC_MESSAGES
-@dirrmtry share/locale/mi
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/km/LC_MESSAGES
-@dirrmtry share/locale/km
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/io/LC_MESSAGES
-@dirrmtry share/locale/io
-@dirrmtry share/locale/ig/LC_MESSAGES
-@dirrmtry share/locale/ig
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/ha/LC_MESSAGES
-@dirrmtry share/locale/ha
-@dirrmtry share/locale/gv/LC_MESSAGES
-@dirrmtry share/locale/gv
-@dirrmtry share/locale/fy/LC_MESSAGES
-@dirrmtry share/locale/fy
-@dirrmtry share/locale/fur/LC_MESSAGES
-@dirrmtry share/locale/fur
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/crh/LC_MESSAGES
-@dirrmtry share/locale/crh
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/doc/libcaja-extension
-@dirrmtry %%DATADIR%%/ui
-@dirrmtry %%DATADIR%%/patterns
-@dirrmtry %%DATADIR%%
-@dirrmtry lib/caja/extensions-2.0
-@dirrmtry lib/caja
-@dirrmtry include/caja/libcaja-extension
-@dirrmtry include/caja
+@dir lib/caja/extensions-2.0

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:47:03 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 45657B3C;
 Mon,  6 Oct 2014 12:47:03 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 263C166C;
 Mon,  6 Oct 2014 12:47:03 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Cl3mp061019;
 Mon, 6 Oct 2014 12:47:03 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Cl2I7061015;
 Mon, 6 Oct 2014 12:47:02 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061247.s96Cl2I7061015@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 12:47:02 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370158 - in head/x11-wm/marco: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:47:03 -0000

Author: bapt
Date: Mon Oct  6 12:47:02 2014
New Revision: 370158
URL: https://svnweb.freebsd.org/changeset/ports/370158
QAT: https://qat.redports.org/buildarchive/r370158/

Log:
  Update to 1.8.2
  Cleanup plist
  Remove useless gnomehier dep

Deleted:
  head/x11-wm/marco/files/
Modified:
  head/x11-wm/marco/Makefile
  head/x11-wm/marco/distinfo
  head/x11-wm/marco/pkg-plist

Modified: head/x11-wm/marco/Makefile
==============================================================================
--- head/x11-wm/marco/Makefile	Mon Oct  6 12:38:23 2014	(r370157)
+++ head/x11-wm/marco/Makefile	Mon Oct  6 12:47:02 2014	(r370158)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	marco
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.2
 CATEGORIES=	x11-wm mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -19,7 +19,7 @@ PORTSCOUT=	limitw:1,even
 USES=		gettext gmake libtool pathfix pkgconfig tar:xz
 USE_MATE=	dialogs
 USE_XORG=	x11 xcomposite xcursor xdamage xrandr
-USE_GNOME=	gdkpixbuf2 glib20 gnomehier gtk20 intlhack pango
+USE_GNOME=	gdkpixbuf2 glib20 gtk20 intlhack pango
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-gtk=2.0

Modified: head/x11-wm/marco/distinfo
==============================================================================
--- head/x11-wm/marco/distinfo	Mon Oct  6 12:38:23 2014	(r370157)
+++ head/x11-wm/marco/distinfo	Mon Oct  6 12:47:02 2014	(r370158)
@@ -1,2 +1,2 @@
-SHA256 (mate/marco-1.8.0.tar.xz) = b66f58c87552a20a4533c1ea482d374a35c8921091736e198c2bf1774163a9e6
-SIZE (mate/marco-1.8.0.tar.xz) = 1111780
+SHA256 (mate/marco-1.8.2.tar.xz) = a5ef03dfd4de035ed6c99aca500256c6f4564a090702066303770dbf7c893443
+SIZE (mate/marco-1.8.2.tar.xz) = 1119448

Modified: head/x11-wm/marco/pkg-plist
==============================================================================
--- head/x11-wm/marco/pkg-plist	Mon Oct  6 12:38:23 2014	(r370157)
+++ head/x11-wm/marco/pkg-plist	Mon Oct  6 12:47:02 2014	(r370158)
@@ -176,88 +176,3 @@ share/themes/eOS/metacity-1/trough_right
 share/themes/eOS/metacity-1/unmaximize.png
 share/themes/eOS/metacity-1/unmaximize_unfocused.png
 share/themes/eOS/metacity-1/unmaximize_unfocused_over.png
-@dirrm share/themes/eOS/metacity-1
-@dirrm share/themes/eOS
-@dirrm share/themes/WinMe/metacity-1
-@dirrm share/themes/WinMe
-@dirrm share/themes/Splint/metacity-1
-@dirrm share/themes/Splint-Left/metacity-1
-@dirrm share/themes/Splint-Left
-@dirrm share/themes/Splint
-@dirrm share/themes/Spidey/metacity-1
-@dirrm share/themes/Spidey-Left/metacity-1
-@dirrm share/themes/Spidey-Left
-@dirrm share/themes/Spidey
-@dirrm share/themes/DustBlue/metacity-1
-@dirrm share/themes/DustBlue
-@dirrm share/themes/Dopple/metacity-1
-@dirrm share/themes/Dopple-Left/metacity-1
-@dirrm share/themes/Dopple-Left
-@dirrm share/themes/Dopple
-@dirrm share/themes/ClearlooksRe/metacity-1
-@dirrm share/themes/ClearlooksRe
-@dirrmtry share/themes
-@dirrm share/mate/wm-properties
-@dirrmtry %%DATADIR%%/icons
-@dirrmtry %%DATADIR%%
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/yo/LC_MESSAGES
-@dirrmtry share/locale/yo
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/la/LC_MESSAGES
-@dirrmtry share/locale/la
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/ig/LC_MESSAGES
-@dirrmtry share/locale/ig
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/ha/LC_MESSAGES
-@dirrmtry share/locale/ha
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/crh/LC_MESSAGES
-@dirrmtry share/locale/crh
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/help/C/creating-marco-themes
-@dirrmtry share/help/C
-@dirrmtry share/help
-@dirrm include/marco-1/marco-private
-@dirrm include/marco-1

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:49:47 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 0DE36EB4;
 Mon,  6 Oct 2014 12:49:47 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E6E3A690;
 Mon,  6 Oct 2014 12:49:46 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Cnk6N061618;
 Mon, 6 Oct 2014 12:49:46 GMT (envelope-from olgeni@FreeBSD.org)
Received: (from olgeni@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CnkKA061616;
 Mon, 6 Oct 2014 12:49:46 GMT (envelope-from olgeni@FreeBSD.org)
Message-Id: <201410061249.s96CnkKA061616@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: olgeni set sender to
 olgeni@FreeBSD.org using -f
From: Jimmy Olgeni 
Date: Mon, 6 Oct 2014 12:49:46 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370159 - head/lang/ccl
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:49:47 -0000

Author: olgeni
Date: Mon Oct  6 12:49:45 2014
New Revision: 370159
URL: https://svnweb.freebsd.org/changeset/ports/370159
QAT: https://qat.redports.org/buildarchive/r370159/

Log:
  Upgrade to version 1.10.

Modified:
  head/lang/ccl/Makefile
  head/lang/ccl/distinfo   (contents, props changed)

Modified: head/lang/ccl/Makefile
==============================================================================
--- head/lang/ccl/Makefile	Mon Oct  6 12:47:02 2014	(r370158)
+++ head/lang/ccl/Makefile	Mon Oct  6 12:49:45 2014	(r370159)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	ccl
-PORTVERSION=	1.9
+PORTVERSION=	1.10
 CATEGORIES=	lang lisp
 MASTER_SITES=	ftp://ftp.clozure.com/pub/release/${PORTVERSION}/
 DISTNAME=	${PORTNAME}-${PORTVERSION}-freebsdx86
@@ -64,14 +64,11 @@ do-install:
 post-install:
 	@cd ${STAGEDIR}${PREFIX}; ${FIND} lib/ccl/* -type d -empty \
 		| ${SORT} \
-		| ${SED} -e 's#^#@exec ${MKDIR} %D/#g' \
+		| ${SED} -e 's#^#@dir #g' \
 		> ${CCL_PLIST}
 	@cd ${STAGEDIR}${PREFIX}; ${FIND} lib/ccl/* -type f -o -type l \
 		| ${SORT} \
 		>> ${CCL_PLIST}
-	@cd ${STAGEDIR}${PREFIX}; ${FIND} lib/ccl/* -type d | ${SORT} -r \
-	    	| ${SED} -e 's/^/@dirrm /g' \
-		>> ${CCL_PLIST}
 	@${ECHO_CMD} "r ${TMPPLIST}"		> ${WRKDIR}/ex.script
 	@${ECHO_CMD} "/start"			>> ${WRKDIR}/ex.script
 	@${ECHO_CMD} "r ${CCL_PLIST}"		>> ${WRKDIR}/ex.script

Modified: head/lang/ccl/distinfo
==============================================================================
--- head/lang/ccl/distinfo	Mon Oct  6 12:47:02 2014	(r370158)
+++ head/lang/ccl/distinfo	Mon Oct  6 12:49:45 2014	(r370159)
@@ -1,2 +1,2 @@
-SHA256 (ccl-1.9-freebsdx86.tar.gz) = 9bbdc93fbf619afd4b2c2b0c06ea3f49fceb01cf53667f8263838381b420795d
-SIZE (ccl-1.9-freebsdx86.tar.gz) = 45865207
+SHA256 (ccl-1.10-freebsdx86.tar.gz) = d68095f88c6b8c8bafc1e1f6d106fe315a51d62857e3b60bd828859e8023db82
+SIZE (ccl-1.10-freebsdx86.tar.gz) = 45939859

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:50:29 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id B58DDFA1;
 Mon,  6 Oct 2014 12:50:29 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A1659780;
 Mon,  6 Oct 2014 12:50:29 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96CoTKB062529;
 Mon, 6 Oct 2014 12:50:29 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CoSJq062523;
 Mon, 6 Oct 2014 12:50:28 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061250.s96CoSJq062523@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 12:50:28 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370160 - head/x11/mate-panel
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:50:29 -0000

Author: bapt
Date: Mon Oct  6 12:50:28 2014
New Revision: 370160
URL: https://svnweb.freebsd.org/changeset/ports/370160
QAT: https://qat.redports.org/buildarchive/r370160/

Log:
  Update to 1.8.1
  Cleanup plist

Modified:
  head/x11/mate-panel/Makefile
  head/x11/mate-panel/distinfo
  head/x11/mate-panel/pkg-plist

Modified: head/x11/mate-panel/Makefile
==============================================================================
--- head/x11/mate-panel/Makefile	Mon Oct  6 12:49:45 2014	(r370159)
+++ head/x11/mate-panel/Makefile	Mon Oct  6 12:50:28 2014	(r370160)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-panel
-PORTVERSION=	1.8.0
-PORTREVISION=	1
+PORTVERSION=	1.8.1
 CATEGORIES=	x11 mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -20,7 +19,7 @@ PORTSCOUT=	limitw:1,even
 USES=		gettext gmake libtool pathfix pkgconfig python tar:xz
 USE_MATE=	desktop libmateweather  menus
 USE_XORG=	ice sm x11 xau xrandr
-USE_GNOME=	cairo dconf gdkpixbuf2 glib20 gnomehier gtk20 \
+USE_GNOME=	cairo dconf gdkpixbuf2 glib20 gtk20 \
 		intlhack introspection:build librsvg2 pango libwnck
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes

Modified: head/x11/mate-panel/distinfo
==============================================================================
--- head/x11/mate-panel/distinfo	Mon Oct  6 12:49:45 2014	(r370159)
+++ head/x11/mate-panel/distinfo	Mon Oct  6 12:50:28 2014	(r370160)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-panel-1.8.0.tar.xz) = ac20c42d1b2ae7bf08e4e701e12165e63753f80648c1ea4ff5297f3381481056
-SIZE (mate/mate-panel-1.8.0.tar.xz) = 1930348
+SHA256 (mate/mate-panel-1.8.1.tar.xz) = d53d1546577db3e45ce6b46b4a40b2edc066781cc1e864eef47ad07b0fdb3f19
+SIZE (mate/mate-panel-1.8.1.tar.xz) = 1953156

Modified: head/x11/mate-panel/pkg-plist
==============================================================================
--- head/x11/mate-panel/pkg-plist	Mon Oct  6 12:49:45 2014	(r370159)
+++ head/x11/mate-panel/pkg-plist	Mon Oct  6 12:50:28 2014	(r370160)
@@ -392,217 +392,5 @@ share/locale/zu/LC_MESSAGES/mate-panel.m
 %%DATADIR%%/ui/window-menu-menu.xml
 %%DATADIR%%/ui/workspace-switcher-menu.xml
 %%DATADIR%%/ui/workspace-switcher.ui
-@dirrm %%DATADIR%%/ui
-@dirrm %%DATADIR%%/pixmaps
-@dirrm %%DATADIR%%/layouts
-@dirrm %%DATADIR%%/applets
-@dirrm %%DATADIR%%
-@dirrmtry share/locale/zu/LC_MESSAGES
-@dirrmtry share/locale/zu
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/yo/LC_MESSAGES
-@dirrmtry share/locale/yo
-@dirrmtry share/locale/yi/LC_MESSAGES
-@dirrmtry share/locale/yi
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES
-@dirrmtry share/locale/uz@cyrillic
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/ug/LC_MESSAGES
-@dirrmtry share/locale/ug
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/sr@ije/LC_MESSAGES
-@dirrmtry share/locale/sr@ije
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nso/LC_MESSAGES
-@dirrmtry share/locale/nso
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mi/LC_MESSAGES
-@dirrmtry share/locale/mi
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/la/LC_MESSAGES
-@dirrmtry share/locale/la
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/ig/LC_MESSAGES
-@dirrmtry share/locale/ig
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/ha/LC_MESSAGES
-@dirrmtry share/locale/ha
-@dirrmtry share/locale/gv/LC_MESSAGES
-@dirrmtry share/locale/gv
-@dirrmtry share/locale/fy/LC_MESSAGES
-@dirrmtry share/locale/fy
-@dirrmtry share/locale/fur/LC_MESSAGES
-@dirrmtry share/locale/fur
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/crh/LC_MESSAGES
-@dirrmtry share/locale/crh
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/help/zh_TW/mate-clock/figures
-@dirrmtry share/help/zh_TW/mate-clock
-@dirrmtry share/help/zh_TW
-@dirrmtry share/help/zh_HK/mate-clock/figures
-@dirrmtry share/help/zh_HK/mate-clock
-@dirrmtry share/help/zh_HK
-@dirrmtry share/help/zh_CN/mate-fish/figures
-@dirrmtry share/help/zh_CN/mate-fish
-@dirrmtry share/help/zh_CN/mate-clock/figures
-@dirrmtry share/help/zh_CN/mate-clock
-@dirrmtry share/help/zh_CN
-@dirrmtry share/help/uk/mate-fish/figures
-@dirrmtry share/help/uk/mate-fish
-@dirrmtry share/help/uk/mate-clock/figures
-@dirrmtry share/help/uk/mate-clock
-@dirrmtry share/help/uk
-@dirrmtry share/help/th/mate-fish/figures
-@dirrmtry share/help/th/mate-fish
-@dirrmtry share/help/th/mate-clock/figures
-@dirrmtry share/help/th/mate-clock
-@dirrmtry share/help/th
-@dirrmtry share/help/sv/mate-fish/figures
-@dirrmtry share/help/sv/mate-fish
-@dirrmtry share/help/sv/mate-clock/figures
-@dirrmtry share/help/sv/mate-clock
-@dirrmtry share/help/sv
-@dirrmtry share/help/sr/mate-clock/figures
-@dirrmtry share/help/sr/mate-clock
-@dirrmtry share/help/sr
-@dirrmtry share/help/ru/mate-fish/figures
-@dirrmtry share/help/ru/mate-fish
-@dirrmtry share/help/ru/mate-clock/figures
-@dirrmtry share/help/ru/mate-clock
-@dirrmtry share/help/ru
-@dirrmtry share/help/pt_BR/mate-clock/figures
-@dirrmtry share/help/pt_BR/mate-clock
-@dirrmtry share/help/pt_BR
-@dirrmtry share/help/pt/mate-clock/figures
-@dirrmtry share/help/pt/mate-clock
-@dirrmtry share/help/pt
-@dirrmtry share/help/pa/mate-clock/figures
-@dirrmtry share/help/pa/mate-clock
-@dirrmtry share/help/pa
-@dirrmtry share/help/oc/mate-fish/figures
-@dirrmtry share/help/oc/mate-fish
-@dirrmtry share/help/oc/mate-clock/figures
-@dirrmtry share/help/oc/mate-clock
-@dirrmtry share/help/oc
-@dirrmtry share/help/nl/mate-clock/figures
-@dirrmtry share/help/nl/mate-clock
-@dirrmtry share/help/nl
-@dirrmtry share/help/ko/mate-fish/figures
-@dirrmtry share/help/ko/mate-fish
-@dirrmtry share/help/ko/mate-clock/figures
-@dirrmtry share/help/ko/mate-clock
-@dirrmtry share/help/ko
-@dirrmtry share/help/ja/mate-fish/figures
-@dirrmtry share/help/ja/mate-fish
-@dirrmtry share/help/ja/mate-clock/figures
-@dirrmtry share/help/ja/mate-clock
-@dirrmtry share/help/ja
-@dirrmtry share/help/it/mate-fish/figures
-@dirrmtry share/help/it/mate-fish
-@dirrmtry share/help/it/mate-clock/figures
-@dirrmtry share/help/it/mate-clock
-@dirrmtry share/help/it
-@dirrmtry share/help/fr/mate-fish/figures
-@dirrmtry share/help/fr/mate-fish
-@dirrmtry share/help/fr/mate-clock/figures
-@dirrmtry share/help/fr/mate-clock
-@dirrmtry share/help/fr
-@dirrmtry share/help/fi/mate-fish/figures
-@dirrmtry share/help/fi/mate-fish
-@dirrmtry share/help/fi/mate-clock/figures
-@dirrmtry share/help/fi/mate-clock
-@dirrmtry share/help/fi
-@dirrmtry share/help/eu/mate-fish/figures
-@dirrmtry share/help/eu/mate-fish
-@dirrmtry share/help/eu/mate-clock/figures
-@dirrmtry share/help/eu/mate-clock
-@dirrmtry share/help/eu
-@dirrmtry share/help/es/mate-fish/figures
-@dirrmtry share/help/es/mate-fish
-@dirrmtry share/help/es/mate-clock/figures
-@dirrmtry share/help/es/mate-clock
-@dirrmtry share/help/es
-@dirrmtry share/help/en_GB/mate-fish/figures
-@dirrmtry share/help/en_GB/mate-fish
-@dirrmtry share/help/en_GB/mate-clock/figures
-@dirrmtry share/help/en_GB/mate-clock
-@dirrmtry share/help/en_GB
-@dirrmtry share/help/el/mate-fish/figures
-@dirrmtry share/help/el/mate-fish
-@dirrmtry share/help/el/mate-clock/figures
-@dirrmtry share/help/el/mate-clock
-@dirrmtry share/help/el
-@dirrmtry share/help/de/mate-fish/figures
-@dirrmtry share/help/de/mate-fish
-@dirrmtry share/help/de/mate-clock/figures
-@dirrmtry share/help/de/mate-clock
-@dirrmtry share/help/de
-@dirrmtry share/help/da/mate-clock/figures
-@dirrmtry share/help/da/mate-clock
-@dirrmtry share/help/da
-@dirrmtry share/help/cs/mate-fish/figures
-@dirrmtry share/help/cs/mate-fish
-@dirrmtry share/help/cs/mate-clock/figures
-@dirrmtry share/help/cs/mate-clock
-@dirrmtry share/help/cs
-@dirrmtry share/help/ca/mate-fish/figures
-@dirrmtry share/help/ca/mate-fish
-@dirrmtry share/help/ca/mate-clock/figures
-@dirrmtry share/help/ca/mate-clock
-@dirrmtry share/help/ca
-@dirrmtry share/help/ar/mate-clock/figures
-@dirrmtry share/help/ar/mate-clock
-@dirrmtry share/help/ar
-@dirrmtry share/help/C/mate-fish/figures
-@dirrmtry share/help/C/mate-fish
-@dirrmtry share/help/C/mate-clock/figures
-@dirrmtry share/help/C/mate-clock
-@dirrmtry share/help/C
-@dirrmtry share/help
-@dirrm share/doc/mate-panel-applet
-@dirrmtry lib/mate-panel/modules
-@dirrmtry lib/mate-panel
-@dirrm include/mate-panel-4.0/libmate-panel-applet
-@dirrm include/mate-panel-4.0
+@dir lib/mate-panel/modules
 @exec %D/bin/gio-querymodules %D/lib/mate-panel/modules

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:52:48 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 43E4414D;
 Mon,  6 Oct 2014 12:52:48 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2F5E97A3;
 Mon,  6 Oct 2014 12:52:48 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Cqmqg065665;
 Mon, 6 Oct 2014 12:52:48 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CqlED065660;
 Mon, 6 Oct 2014 12:52:47 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061252.s96CqlED065660@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 12:52:47 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370161 - head/x11/mate-screensaver
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:52:48 -0000

Author: bapt
Date: Mon Oct  6 12:52:46 2014
New Revision: 370161
URL: https://svnweb.freebsd.org/changeset/ports/370161
QAT: https://qat.redports.org/buildarchive/r370161/

Log:
  Update to 1.8.1
  Cleanup plist

Modified:
  head/x11/mate-screensaver/Makefile
  head/x11/mate-screensaver/distinfo
  head/x11/mate-screensaver/pkg-plist

Modified: head/x11/mate-screensaver/Makefile
==============================================================================
--- head/x11/mate-screensaver/Makefile	Mon Oct  6 12:50:28 2014	(r370160)
+++ head/x11/mate-screensaver/Makefile	Mon Oct  6 12:52:46 2014	(r370161)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-screensaver
-PORTVERSION=	1.8.0
-PORTREVISION=	1
+PORTVERSION=	1.8.1
 CATEGORIES=	x11 mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -21,7 +20,7 @@ USES=		gettext gmake pathfix pkgconfig t
 USE_GL=		gl
 USE_MATE=	desktop libmatekbd menus
 USE_XORG=	ice sm x11 xext xtst xxf86misc xxf86vm xscrnsaver
-USE_GNOME=	glib20 gnomehier gtk20 intlhack
+USE_GNOME=	glib20 gtk20 intlhack
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-xscreensaverdir=${XSCREENSAVER_DIR} \
 		--with-xscreensaverhackdir=${LOCALBASE}/bin/xscreensaver-hacks \
@@ -43,21 +42,16 @@ OPTIONS_DEFINE=	PAM XSCREENSAVER
 OPTIONS_DEFAULT=PAM
 PAM_DESC=	Pluggable Authentication Module support
 
-.include 
+XSCREENSAVER_RUN_DEPENDS=	xscreensaver-gnome-hacks>=0:${PORTSDIR}/x11/xscreensaver-gnome-hacks
 
-.if ${PORT_OPTIONS:MXSCREENSAVER}
-RUN_DEPENDS=	xscreensaver-gnome-hacks>=0:${PORTSDIR}/x11/xscreensaver-gnome-hacks
-.endif
+OPTIONS_SUB=	yes
 
-.if ${PORT_OPTIONS:MPAM}
-RUN_DEPENDS+=	pam_helper:${PORTSDIR}/security/pam_helper
-CONFIGURE_ARGS+=--enable-authentication-scheme=helper \
+PAM_RUN_DEPENDS=	pam_helper:${PORTSDIR}/security/pam_helper
+PAM_CONFIGURE_ON=--enable-authentication-scheme=helper \
 		--with-passwd-helper=${LOCALBASE}/bin/pam_helper
-PLIST_SUB+=	PAM=""
-.else
-CONFIGURE_ARGS+=--disable-pam
-PLIST_SUB+=	PAM="@comment "
-.endif
+PAM_CONFIGURE_OFF=--disable-pam
+
+.include 
 
 post-patch:
 .if ${PORT_OPTIONS:MPAM}
@@ -65,20 +59,8 @@ post-patch:
 		${WRKSRC}/src/gs-auth-pam.c
 .endif
 
-#pre-install:
-#	@${CAT} ${.CURDIR}/pkg-plist > ${PLIST}
-#	@cd ${XSCREENSAVER_DIR} && ${FIND} -s * -maxdepth 1 -type f -name "*.xml" | \
-#		${GREP} -Ev ${XSCREENSAVER_EXCLUDE} | \
-#		${SED} -e 's:^:${SCREENSAVER_DIR}/:' | \
-#		${SED} -e 's:[.]xml$$:.desktop:' >> ${PLIST}
-#	@${ECHO_CMD} @dirrm ${SCREENSAVER_DIR} >> ${PLIST}
-
 post-install:
 	${MKDIR} ${STAGEDIR}${PREFIX}/${SCREENSAVER_DIR}
-#	cd ${STAGEDIR}${PREFIX}/${SCREENSAVER_DIR} && \
-#		${FIND} -s ${XSCREENSAVER_DIR} -maxdepth 1 -type f -name "*.xml" | \
-#			${GREP} -Ev ${XSCREENSAVER_EXCLUDE} | \
-#			${XARGS} ${WRKSRC}/data/migrate-xscreensaver-config.sh
 .if ${PORT_OPTIONS:MPAM}
 	${INSTALL_DATA} ${WRKDIR}/mate-screensaver.pam ${STAGEDIR}${PREFIX}/etc/pam.d/mate-screensaver
 .endif

Modified: head/x11/mate-screensaver/distinfo
==============================================================================
--- head/x11/mate-screensaver/distinfo	Mon Oct  6 12:50:28 2014	(r370160)
+++ head/x11/mate-screensaver/distinfo	Mon Oct  6 12:52:46 2014	(r370161)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-screensaver-1.8.0.tar.xz) = 93979d0a6203fa0b59eb5477bdd5b78788a1b1adc861c3d0085339b859ec3106
-SIZE (mate/mate-screensaver-1.8.0.tar.xz) = 4869084
+SHA256 (mate/mate-screensaver-1.8.1.tar.xz) = a3dd1fe9e8d05b7815544fa186c43a35271dd8b512d6b0377038df02c28c9d62
+SIZE (mate/mate-screensaver-1.8.1.tar.xz) = 4874424

Modified: head/x11/mate-screensaver/pkg-plist
==============================================================================
--- head/x11/mate-screensaver/pkg-plist	Mon Oct  6 12:50:28 2014	(r370160)
+++ head/x11/mate-screensaver/pkg-plist	Mon Oct  6 12:52:46 2014	(r370161)
@@ -5,11 +5,7 @@ bin/mate-screensaver-preferences
 etc/xdg/autostart/mate-screensaver.desktop
 etc/xdg/menus/mate-screensavers.menu
 libdata/pkgconfig/mate-screensaver.pc
-@owner root
-@mode 6555
-libexec/mate-screensaver-dialog
-@owner
-@mode
+@(,,6555) libexec/mate-screensaver-dialog
 libexec/mate-screensaver-gl-helper
 libexec/mate-screensaver/floaters
 libexec/mate-screensaver/popsquares
@@ -129,59 +125,3 @@ share/mate-background-properties/cosmos.
 %%DATADIR%%/mate-screensaver-preferences.ui
 share/pixmaps/gnome-logo-white.svg
 share/pixmaps/mate-logo-white.svg
-@dirrm %%DATADIR%%
-@dirrmtry share/mate-background-properties
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/es_AR/LC_MESSAGES
-@dirrmtry share/locale/es_AR
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/crh/LC_MESSAGES
-@dirrmtry share/locale/crh
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/desktop-directories
-@dirrmtry share/backgrounds/cosmos
-@dirrmtry share/backgrounds
-@dirrmtry share/applications/screensavers
-@dirrm libexec/mate-screensaver
-@dirrmtry etc/xdg/menus

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 12:59:29 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 16A5E4B5;
 Mon,  6 Oct 2014 12:59:29 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id EB1E4809;
 Mon,  6 Oct 2014 12:59:28 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96CxSxg066717;
 Mon, 6 Oct 2014 12:59:28 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96CxS6j066713;
 Mon, 6 Oct 2014 12:59:28 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061259.s96CxS6j066713@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 12:59:28 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370162 - head/sysutils/mate-settings-daemon
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 12:59:29 -0000

Author: bapt
Date: Mon Oct  6 12:59:27 2014
New Revision: 370162
URL: https://svnweb.freebsd.org/changeset/ports/370162
QAT: https://qat.redports.org/buildarchive/r370162/

Log:
  Update to 1.8.2
  Cleanup plist

Modified:
  head/sysutils/mate-settings-daemon/Makefile
  head/sysutils/mate-settings-daemon/distinfo
  head/sysutils/mate-settings-daemon/pkg-plist

Modified: head/sysutils/mate-settings-daemon/Makefile
==============================================================================
--- head/sysutils/mate-settings-daemon/Makefile	Mon Oct  6 12:52:46 2014	(r370161)
+++ head/sysutils/mate-settings-daemon/Makefile	Mon Oct  6 12:59:27 2014	(r370162)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-settings-daemon
-PORTVERSION=	1.8.1
+PORTVERSION=	1.8.2
 CATEGORIES=	sysutils mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -24,7 +24,7 @@ PORTSCOUT=	limitw:1,even
 USES=		gettext gmake libtool pathfix pkgconfig tar:xz
 USE_MATE=	desktop libmatekbd
 USE_XORG=	xxf86misc
-USE_GNOME=	dconf gnomehier gtk20 intlhack
+USE_GNOME=	dconf gtk20 intlhack
 USE_LDCONFIG=	yes
 USE_GSTREAMER=	good
 GNU_CONFIGURE=	yes

Modified: head/sysutils/mate-settings-daemon/distinfo
==============================================================================
--- head/sysutils/mate-settings-daemon/distinfo	Mon Oct  6 12:52:46 2014	(r370161)
+++ head/sysutils/mate-settings-daemon/distinfo	Mon Oct  6 12:59:27 2014	(r370162)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-settings-daemon-1.8.1.tar.xz) = 231bc408ea1a3305aeca621a278930ddba032201a1001da2ae239f6324da1106
-SIZE (mate/mate-settings-daemon-1.8.1.tar.xz) = 782508
+SHA256 (mate/mate-settings-daemon-1.8.2.tar.xz) = 2d38c9eff00a7ad239613b5f59e95a08705601a64f3a660b34919a4818da9d87
+SIZE (mate/mate-settings-daemon-1.8.2.tar.xz) = 782780

Modified: head/sysutils/mate-settings-daemon/pkg-plist
==============================================================================
--- head/sysutils/mate-settings-daemon/pkg-plist	Mon Oct  6 12:52:46 2014	(r370161)
+++ head/sysutils/mate-settings-daemon/pkg-plist	Mon Oct  6 12:59:27 2014	(r370162)
@@ -164,84 +164,5 @@ share/locale/zu/LC_MESSAGES/mate-setting
 %%DATADIR%%/xrdb/Tk.ad
 %%DATADIR%%/xrdb/Xaw.ad
 share/polkit-1/actions/org.mate.settingsdaemon.datetimemechanism.policy
-@dirrmtry share/polkit-1/actions
-@dirrmtry share/polkit-1
-@dirrm %%DATADIR%%/xrdb
-@dirrm %%DATADIR%%/icons/hicolor/64x64/devices
-@dirrm %%DATADIR%%/icons/hicolor/64x64
-@dirrm %%DATADIR%%/icons/hicolor
-@dirrm %%DATADIR%%/icons
-@dirrm %%DATADIR%%
-@dirrmtry share/locale/zu/LC_MESSAGES
-@dirrmtry share/locale/zu
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nso/LC_MESSAGES
-@dirrmtry share/locale/nso
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/crh/LC_MESSAGES
-@dirrmtry share/locale/crh
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/icons/mate/scalable/apps
-@dirrmtry share/icons/mate/scalable/actions
-@dirrmtry share/icons/mate/scalable
-@dirrmtry share/icons/mate/32x32/apps
-@dirrmtry share/icons/mate/32x32/actions
-@dirrmtry share/icons/mate/32x32
-@dirrmtry share/icons/mate/24x24/apps
-@dirrmtry share/icons/mate/24x24/actions
-@dirrmtry share/icons/mate/24x24
-@dirrmtry share/icons/mate/22x22/apps
-@dirrmtry share/icons/mate/22x22/actions
-@dirrmtry share/icons/mate/22x22
-@dirrmtry share/icons/mate/16x16/apps
-@dirrmtry share/icons/mate/16x16/actions
-@dirrmtry share/icons/mate/16x16
-@dirrmtry share/icons/mate
-@dirrmtry share/icons
-@dirrm lib/mate-settings-daemon
-@dirrm include/mate-settings-daemon
-@dirrm etc/mate-settings-daemon/xrandr
-@dirrm etc/mate-settings-daemon
-@dirrmtry etc/dbus-1/system.d
-@dirrmtry etc/dbus-1
+@dir etc/mate-settings-daemon/xrandr
+@dir etc/mate-settings-daemon

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:00:51 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id E49885BB;
 Mon,  6 Oct 2014 13:00:51 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id D05C0823;
 Mon,  6 Oct 2014 13:00:51 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96D0pXK069936;
 Mon, 6 Oct 2014 13:00:51 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96D0pCX069932;
 Mon, 6 Oct 2014 13:00:51 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061300.s96D0pCX069932@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:00:51 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370163 - head/x11/mate-applets
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:00:52 -0000

Author: bapt
Date: Mon Oct  6 13:00:50 2014
New Revision: 370163
URL: https://svnweb.freebsd.org/changeset/ports/370163
QAT: https://qat.redports.org/buildarchive/r370163/

Log:
  Update to 1.8.1
  Cleanup plist

Modified:
  head/x11/mate-applets/Makefile
  head/x11/mate-applets/distinfo

Modified: head/x11/mate-applets/Makefile
==============================================================================
--- head/x11/mate-applets/Makefile	Mon Oct  6 12:59:27 2014	(r370162)
+++ head/x11/mate-applets/Makefile	Mon Oct  6 13:00:50 2014	(r370163)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-applets
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 CATEGORIES=	x11 mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -26,7 +26,7 @@ PORTSCOUT=	limitw:1,even
 USES=		gettext gmake libtool pathfix pkgconfig python tar:xz
 USE_MATE=	desktop icontheme libmateweather panel polkit settingsdaemon
 USE_XORG=	x11
-USE_GNOME=	gdkpixbuf2 gnomehier gtksourceview2 introspection:build \
+USE_GNOME=	gdkpixbuf2 gtksourceview2 introspection:build \
 		libxml2 libxslt pygobject pygobject3 libwnck intlhack
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes

Modified: head/x11/mate-applets/distinfo
==============================================================================
--- head/x11/mate-applets/distinfo	Mon Oct  6 12:59:27 2014	(r370162)
+++ head/x11/mate-applets/distinfo	Mon Oct  6 13:00:50 2014	(r370163)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-applets-1.8.0.tar.xz) = e1798784cf2828803e8bae4660a7bcd4c5a44b510217a50c650cfcaacadf71c1
-SIZE (mate/mate-applets-1.8.0.tar.xz) = 6911348
+SHA256 (mate/mate-applets-1.8.1.tar.xz) = 6f1a88453e526a7ee67e14fa4d6b3dc74fb954a1465c7cb3a76f205389a2df83
+SIZE (mate/mate-applets-1.8.1.tar.xz) = 6877876

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:04:53 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 761936EC;
 Mon,  6 Oct 2014 13:04:53 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 608C98D3;
 Mon,  6 Oct 2014 13:04:53 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96D4r6H071160;
 Mon, 6 Oct 2014 13:04:53 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96D4qcJ071157;
 Mon, 6 Oct 2014 13:04:52 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061304.s96D4qcJ071157@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:04:52 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370164 - in head/sysutils/mate-power-manager: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:04:53 -0000

Author: bapt
Date: Mon Oct  6 13:04:52 2014
New Revision: 370164
URL: https://svnweb.freebsd.org/changeset/ports/370164
QAT: https://qat.redports.org/buildarchive/r370164/

Log:
  Update to 1.8.1
  Cleanup plist

Deleted:
  head/sysutils/mate-power-manager/files/patch-src_gpm-prefs-core.c
Modified:
  head/sysutils/mate-power-manager/Makefile
  head/sysutils/mate-power-manager/distinfo
  head/sysutils/mate-power-manager/pkg-plist

Modified: head/sysutils/mate-power-manager/Makefile
==============================================================================
--- head/sysutils/mate-power-manager/Makefile	Mon Oct  6 13:00:50 2014	(r370163)
+++ head/sysutils/mate-power-manager/Makefile	Mon Oct  6 13:04:52 2014	(r370164)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-power-manager
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 CATEGORIES=	sysutils mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -16,16 +16,15 @@ LIB_DEPENDS=	libcanberra-gtk.so:${PORTSD
 		libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \
 		libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique \
 		libupower-glib.so:${PORTSDIR}/sysutils/upower \
-		libexecinfo.so:${PORTSDIR}/devel/libexecinfo \
 		libnotify.so:${PORTSDIR}/devel/libnotify
 RUN_DEPENDS=	pkexec:${PORTSDIR}/sysutils/polkit
 
 PORTSCOUT=	limitw:1,even
 
-USES=		gettext gmake libtool pathfix pkgconfig tar:xz
+USES=		execinfo gettext gmake libtool pathfix pkgconfig tar:xz
 USE_MATE=	panel
 USE_XORG=	x11 xext xproto xrandr xrender
-USE_GNOME=	cairo glib20 gnomehier gtk20 intlhack
+USE_GNOME=	cairo glib20 gtk20 intlhack
 GNU_CONFIGURE=	yes
 INSTALLS_ICONS=	yes
 CONFIGURE_ENV=	LIBS="-lexecinfo"

Modified: head/sysutils/mate-power-manager/distinfo
==============================================================================
--- head/sysutils/mate-power-manager/distinfo	Mon Oct  6 13:00:50 2014	(r370163)
+++ head/sysutils/mate-power-manager/distinfo	Mon Oct  6 13:04:52 2014	(r370164)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-power-manager-1.8.0.tar.xz) = 3d83b7736b0b6256242db3b9efaa18530b4ba6d80b146eafaf511230ae926d9f
-SIZE (mate/mate-power-manager-1.8.0.tar.xz) = 3339588
+SHA256 (mate/mate-power-manager-1.8.1.tar.xz) = 6fa72d4e6a018a44144d06b68c8f67e067e3847ad83b4b8a8aaa0e2a8c9b6147
+SIZE (mate/mate-power-manager-1.8.1.tar.xz) = 3341892

Modified: head/sysutils/mate-power-manager/pkg-plist
==============================================================================
--- head/sysutils/mate-power-manager/pkg-plist	Mon Oct  6 13:00:50 2014	(r370163)
+++ head/sysutils/mate-power-manager/pkg-plist	Mon Oct  6 13:04:52 2014	(r370164)
@@ -1,5 +1,5 @@
-bin/mate-power-bugreport.sh
 bin/mate-power-manager
+bin/mate-power-manager-bugreport
 bin/mate-power-preferences
 bin/mate-power-statistics
 etc/xdg/autostart/mate-power-manager.desktop
@@ -702,115 +702,3 @@ share/mate-panel/applets/org.mate.Inhibi
 %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-100.svg
 %%DATADIR%%/icons/hicolor/scalable/status/gpm-ups-missing.svg
 share/polkit-1/actions/org.mate.power.policy
-@dirrmtry share/polkit-1/actions
-@dirrmtry share/polkit-1
-@dirrm %%DATADIR%%/icons/hicolor/scalable/status
-@dirrm %%DATADIR%%/icons/hicolor/scalable/actions
-@dirrm %%DATADIR%%/icons/hicolor/scalable
-@dirrm %%DATADIR%%/icons/hicolor/48x48/status
-@dirrm %%DATADIR%%/icons/hicolor/48x48/actions
-@dirrm %%DATADIR%%/icons/hicolor/48x48
-@dirrm %%DATADIR%%/icons/hicolor/32x32/status
-@dirrm %%DATADIR%%/icons/hicolor/32x32/actions
-@dirrm %%DATADIR%%/icons/hicolor/32x32
-@dirrm %%DATADIR%%/icons/hicolor/24x24/status
-@dirrm %%DATADIR%%/icons/hicolor/24x24/actions
-@dirrm %%DATADIR%%/icons/hicolor/24x24
-@dirrm %%DATADIR%%/icons/hicolor/22x22/status
-@dirrm %%DATADIR%%/icons/hicolor/22x22/actions
-@dirrm %%DATADIR%%/icons/hicolor/22x22
-@dirrm %%DATADIR%%/icons/hicolor/16x16/status
-@dirrm %%DATADIR%%/icons/hicolor/16x16/actions
-@dirrm %%DATADIR%%/icons/hicolor/16x16
-@dirrm %%DATADIR%%/icons/hicolor
-@dirrm %%DATADIR%%/icons
-@dirrm %%DATADIR%%
-@dirrmtry share/mate-panel/applets
-@dirrmtry share/mate-panel
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/help/zh_CN/mate-power-manager/figures
-@dirrmtry share/help/zh_CN/mate-power-manager
-@dirrmtry share/help/zh_CN
-@dirrmtry share/help/sv/mate-power-manager/figures
-@dirrmtry share/help/sv/mate-power-manager
-@dirrmtry share/help/sv
-@dirrmtry share/help/ru/mate-power-manager/figures
-@dirrmtry share/help/ru/mate-power-manager
-@dirrmtry share/help/ru
-@dirrmtry share/help/pa/mate-power-manager/figures
-@dirrmtry share/help/pa/mate-power-manager
-@dirrmtry share/help/pa
-@dirrmtry share/help/oc/mate-power-manager/figures
-@dirrmtry share/help/oc/mate-power-manager
-@dirrmtry share/help/oc
-@dirrmtry share/help/it/mate-power-manager/figures
-@dirrmtry share/help/it/mate-power-manager
-@dirrmtry share/help/it
-@dirrmtry share/help/hu/mate-power-manager/figures
-@dirrmtry share/help/hu/mate-power-manager
-@dirrmtry share/help/hu
-@dirrmtry share/help/fr/mate-power-manager/figures
-@dirrmtry share/help/fr/mate-power-manager
-@dirrmtry share/help/fr
-@dirrmtry share/help/fi/mate-power-manager/figures
-@dirrmtry share/help/fi/mate-power-manager
-@dirrmtry share/help/fi
-@dirrmtry share/help/eu/mate-power-manager/figures
-@dirrmtry share/help/eu/mate-power-manager
-@dirrmtry share/help/eu
-@dirrmtry share/help/es/mate-power-manager/figures
-@dirrmtry share/help/es/mate-power-manager
-@dirrmtry share/help/es
-@dirrmtry share/help/en_GB/mate-power-manager/figures
-@dirrmtry share/help/en_GB/mate-power-manager
-@dirrmtry share/help/en_GB
-@dirrmtry share/help/el/mate-power-manager/figures
-@dirrmtry share/help/el/mate-power-manager
-@dirrmtry share/help/el
-@dirrmtry share/help/de/mate-power-manager/figures
-@dirrmtry share/help/de/mate-power-manager
-@dirrmtry share/help/de
-@dirrmtry share/help/ca/mate-power-manager/figures
-@dirrmtry share/help/ca/mate-power-manager
-@dirrmtry share/help/ca
-@dirrmtry share/help/C/mate-power-manager/figures
-@dirrmtry share/help/C/mate-power-manager
-@dirrmtry share/help/C
-@dirrmtry share/help

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:07:41 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id C42F2806;
 Mon,  6 Oct 2014 13:07:41 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id AF24A8F8;
 Mon,  6 Oct 2014 13:07:41 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96D7fOe071644;
 Mon, 6 Oct 2014 13:07:41 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96D7fO4071634;
 Mon, 6 Oct 2014 13:07:41 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061307.s96D7fO4071634@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:07:41 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370165 - head/sysutils/mate-control-center
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:07:42 -0000

Author: bapt
Date: Mon Oct  6 13:07:40 2014
New Revision: 370165
URL: https://svnweb.freebsd.org/changeset/ports/370165
QAT: https://qat.redports.org/buildarchive/r370165/

Log:
  Update to 1.8.3
  Cleanup plist

Modified:
  head/sysutils/mate-control-center/Makefile
  head/sysutils/mate-control-center/distinfo
  head/sysutils/mate-control-center/pkg-plist

Modified: head/sysutils/mate-control-center/Makefile
==============================================================================
--- head/sysutils/mate-control-center/Makefile	Mon Oct  6 13:04:52 2014	(r370164)
+++ head/sysutils/mate-control-center/Makefile	Mon Oct  6 13:07:40 2014	(r370165)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-control-center
-PORTVERSION=	1.8.1
+PORTVERSION=	1.8.3
 CATEGORIES=	sysutils mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -24,7 +24,7 @@ USES=		desktop-file-utils gettext gmake 
 		shared-mime-info tar:xz
 USE_MATE=	desktop libmatekbd marco menus settingsdaemon
 USE_XORG=	x11 xcursor xext xxf86misc xft xi xrandr xscrnsaver
-USE_GNOME=	dconf glib20 gnomehier gtk20 intlhack libxml2 librsvg2 \
+USE_GNOME=	dconf glib20 gtk20 intlhack libxml2 librsvg2 \
 		pango
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes

Modified: head/sysutils/mate-control-center/distinfo
==============================================================================
--- head/sysutils/mate-control-center/distinfo	Mon Oct  6 13:04:52 2014	(r370164)
+++ head/sysutils/mate-control-center/distinfo	Mon Oct  6 13:07:40 2014	(r370165)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-control-center-1.8.1.tar.xz) = caf482b5944680b5f3e03334bd5932d2f7befda1855d0abb2aef73fbe9e5e8f0
-SIZE (mate/mate-control-center-1.8.1.tar.xz) = 1306504
+SHA256 (mate/mate-control-center-1.8.3.tar.xz) = 97bfb66ac0283dcdeae5ec0104ff83b8c644768f8e508b7d227e2a1139934e36
+SIZE (mate/mate-control-center-1.8.3.tar.xz) = 1306248

Modified: head/sysutils/mate-control-center/pkg-plist
==============================================================================
--- head/sysutils/mate-control-center/pkg-plist	Mon Oct  6 13:04:52 2014	(r370164)
+++ head/sysutils/mate-control-center/pkg-plist	Mon Oct  6 13:07:40 2014	(r370165)
@@ -573,118 +573,3 @@ share/polkit-1/actions/org.mate.randr.po
 share/thumbnailers/mate-font-viewer.thumbnailer
 share/mime/application/x-mate-theme-package.xml
 share/mime/packages/mate-theme-package.xml
-@dirrmtry share/thumbnailers
-@dirrmtry share/polkit-1/actions
-@dirrmtry share/polkit-1
-@dirrmtry share/mime/application
-@dirrm share/mate/cursor-fonts
-@dirrm %%DATADIR%%/ui
-@dirrm %%DATADIR%%/pixmaps
-@dirrmtry share/locale/zu/LC_MESSAGES
-@dirrmtry share/locale/zu
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES
-@dirrmtry share/locale/uz@cyrillic
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/ug/LC_MESSAGES
-@dirrmtry share/locale/ug
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nso/LC_MESSAGES
-@dirrmtry share/locale/nso
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/crh/LC_MESSAGES
-@dirrmtry share/locale/crh
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/help/zh_CN/mate-control-center
-@dirrmtry share/help/zh_CN
-@dirrmtry share/help/vi/mate-control-center
-@dirrmtry share/help/vi
-@dirrmtry share/help/uk/mate-control-center
-@dirrmtry share/help/uk
-@dirrmtry share/help/th/mate-control-center
-@dirrmtry share/help/th
-@dirrmtry share/help/sv/mate-control-center
-@dirrmtry share/help/sv
-@dirrmtry share/help/ru/mate-control-center
-@dirrmtry share/help/ru
-@dirrmtry share/help/pt_BR/mate-control-center
-@dirrmtry share/help/pt_BR
-@dirrmtry share/help/pt/mate-control-center
-@dirrmtry share/help/pt
-@dirrmtry share/help/pl/mate-control-center
-@dirrmtry share/help/pl
-@dirrmtry share/help/pa/mate-control-center
-@dirrmtry share/help/pa
-@dirrmtry share/help/oc/mate-control-center
-@dirrmtry share/help/oc
-@dirrmtry share/help/ja/mate-control-center
-@dirrmtry share/help/ja
-@dirrmtry share/help/it/mate-control-center
-@dirrmtry share/help/it
-@dirrmtry share/help/id/mate-control-center
-@dirrmtry share/help/id
-@dirrmtry share/help/fr/mate-control-center
-@dirrmtry share/help/fr
-@dirrmtry share/help/es/mate-control-center
-@dirrmtry share/help/es
-@dirrmtry share/help/en_GB/mate-control-center
-@dirrmtry share/help/en_GB
-@dirrmtry share/help/el/mate-control-center
-@dirrmtry share/help/el
-@dirrmtry share/help/de/mate-control-center
-@dirrmtry share/help/de
-@dirrmtry share/help/cs/mate-control-center
-@dirrmtry share/help/cs
-@dirrmtry share/help/ca@valencia/mate-control-center
-@dirrmtry share/help/ca@valencia
-@dirrmtry share/help/ca/mate-control-center
-@dirrmtry share/help/ca
-@dirrmtry share/help/C/mate-control-center
-@dirrmtry share/help/C
-@dirrmtry share/help
-@dirrmtry share/desktop-directories
-@dirrm lib/window-manager-settings
-@dirrm include/mate-window-settings-2.0
-@dirrm include/libslab
-@dirrmtry etc/xdg/menus

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:10:44 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 3F4F9981;
 Mon,  6 Oct 2014 13:10:44 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2A97D91B;
 Mon,  6 Oct 2014 13:10:44 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96DAi3Y072852;
 Mon, 6 Oct 2014 13:10:44 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96DAhuB072849;
 Mon, 6 Oct 2014 13:10:43 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061310.s96DAhuB072849@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:10:43 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370166 - head/graphics/eom
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:10:44 -0000

Author: bapt
Date: Mon Oct  6 13:10:43 2014
New Revision: 370166
URL: https://svnweb.freebsd.org/changeset/ports/370166
QAT: https://qat.redports.org/buildarchive/r370166/

Log:
  Update to 1.8.1
  Cleanup plist

Modified:
  head/graphics/eom/Makefile
  head/graphics/eom/distinfo
  head/graphics/eom/pkg-plist

Modified: head/graphics/eom/Makefile
==============================================================================
--- head/graphics/eom/Makefile	Mon Oct  6 13:07:40 2014	(r370165)
+++ head/graphics/eom/Makefile	Mon Oct  6 13:10:43 2014	(r370166)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	eom
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 CATEGORIES=	graphics mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -19,7 +19,7 @@ USES=		desktop-file-utils gettext gmake 
 		tar:xz
 USE_MATE=	desktop icontheme
 USE_XORG=	x11
-USE_GNOME=	gdkpixbuf2 glib20 gnomehier gtk20 librsvg2 libxml2
+USE_GNOME=	gdkpixbuf2 glib20 gtk20 librsvg2 libxml2
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-gtk-doc \
 		--with-html-dir=${PREFIX}/share/doc \

Modified: head/graphics/eom/distinfo
==============================================================================
--- head/graphics/eom/distinfo	Mon Oct  6 13:07:40 2014	(r370165)
+++ head/graphics/eom/distinfo	Mon Oct  6 13:10:43 2014	(r370166)
@@ -1,2 +1,2 @@
-SHA256 (mate/eom-1.8.0.tar.xz) = ec8450bf2ebef13c2e376b1674f0f7402f87669a71eb9e2e4d1161a2784aaf9e
-SIZE (mate/eom-1.8.0.tar.xz) = 2190980
+SHA256 (mate/eom-1.8.1.tar.xz) = d8c97de2aab548dce910cdfd98a11b671c943e9b195d38b043e482e2323ac6d8
+SIZE (mate/eom-1.8.1.tar.xz) = 2192220

Modified: head/graphics/eom/pkg-plist
==============================================================================
--- head/graphics/eom/pkg-plist	Mon Oct  6 13:07:40 2014	(r370165)
+++ head/graphics/eom/pkg-plist	Mon Oct  6 13:10:43 2014	(r370166)
@@ -342,160 +342,4 @@ share/locale/zh_CN/LC_MESSAGES/eom.mo
 share/locale/zh_HK/LC_MESSAGES/eom.mo
 share/locale/zh_TW/LC_MESSAGES/eom.mo
 share/locale/zu/LC_MESSAGES/eom.mo
-@dirrmtry share/locale/zu/LC_MESSAGES
-@dirrmtry share/locale/zu
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/uz@cyrillic/LC_MESSAGES
-@dirrmtry share/locale/uz@cyrillic
-@dirrmtry share/locale/ug/LC_MESSAGES
-@dirrmtry share/locale/ug
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nso/LC_MESSAGES
-@dirrmtry share/locale/nso
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/ks/LC_MESSAGES
-@dirrmtry share/locale/ks
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/fur/LC_MESSAGES
-@dirrmtry share/locale/fur
-@dirrmtry share/locale/en_US/LC_MESSAGES
-@dirrmtry share/locale/en_US
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/help/zh_TW/eom/figures
-@dirrmtry share/help/zh_TW/eom
-@dirrmtry share/help/zh_TW
-@dirrmtry share/help/zh_CN/eom/figures
-@dirrmtry share/help/zh_CN/eom
-@dirrmtry share/help/zh_CN
-@dirrmtry share/help/uk/eom/figures
-@dirrmtry share/help/uk/eom
-@dirrmtry share/help/uk
-@dirrmtry share/help/th/eom/figures
-@dirrmtry share/help/th/eom
-@dirrmtry share/help/th
-@dirrmtry share/help/sv/eom/figures
-@dirrmtry share/help/sv/eom
-@dirrmtry share/help/sv
-@dirrmtry share/help/ru/eom/figures
-@dirrmtry share/help/ru/eom
-@dirrmtry share/help/ru
-@dirrmtry share/help/pt_BR/eom/figures
-@dirrmtry share/help/pt_BR/eom
-@dirrmtry share/help/pt_BR
-@dirrmtry share/help/pl/eom/figures
-@dirrmtry share/help/pl/eom
-@dirrmtry share/help/pl
-@dirrmtry share/help/pa/eom/figures
-@dirrmtry share/help/pa/eom
-@dirrmtry share/help/pa
-@dirrmtry share/help/oc/eom/figures
-@dirrmtry share/help/oc/eom
-@dirrmtry share/help/oc
-@dirrmtry share/help/ko/eom/figures
-@dirrmtry share/help/ko/eom
-@dirrmtry share/help/ko
-@dirrmtry share/help/ja/eom/figures
-@dirrmtry share/help/ja/eom
-@dirrmtry share/help/ja
-@dirrmtry share/help/it/eom/figures
-@dirrmtry share/help/it/eom
-@dirrmtry share/help/it
-@dirrmtry share/help/fr/eom/figures
-@dirrmtry share/help/fr/eom
-@dirrmtry share/help/fr
-@dirrmtry share/help/fi/eom/figures
-@dirrmtry share/help/fi/eom
-@dirrmtry share/help/fi
-@dirrmtry share/help/eu/eom/figures
-@dirrmtry share/help/eu/eom
-@dirrmtry share/help/eu
-@dirrmtry share/help/es/eom/figures
-@dirrmtry share/help/es/eom
-@dirrmtry share/help/es
-@dirrmtry share/help/en_GB/eom/figures
-@dirrmtry share/help/en_GB/eom
-@dirrmtry share/help/en_GB
-@dirrmtry share/help/el/eom/figures
-@dirrmtry share/help/el/eom
-@dirrmtry share/help/el
-@dirrmtry share/help/de/eom/figures
-@dirrmtry share/help/de/eom
-@dirrmtry share/help/de
-@dirrmtry share/help/da/eom/figures
-@dirrmtry share/help/da/eom
-@dirrmtry share/help/da
-@dirrmtry share/help/cs/eom/figures
-@dirrmtry share/help/cs/eom
-@dirrmtry share/help/cs
-@dirrmtry share/help/ca/eom/figures
-@dirrmtry share/help/ca/eom
-@dirrmtry share/help/ca
-@dirrmtry share/help/ar/eom/figures
-@dirrmtry share/help/ar/eom
-@dirrmtry share/help/ar
-@dirrmtry share/help/C/eom/figures
-@dirrmtry share/help/C/eom
-@dirrmtry share/help/C
-@dirrmtry share/help
-@dirrmtry %%DATADIR%%/pixmaps
-@dirrmtry %%DATADIR%%/icons/hicolor/scalable/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/scalable
-@dirrmtry %%DATADIR%%/icons/hicolor/48x48/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/48x48
-@dirrmtry %%DATADIR%%/icons/hicolor/32x32/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/32x32
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24
-@dirrmtry %%DATADIR%%/icons/hicolor/22x22/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/22x22
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16
-@dirrmtry %%DATADIR%%/icons/hicolor
-@dirrmtry %%DATADIR%%/icons
-@dirrmtry %%DATADIR%%
-%%PORTDOCS%%@dirrmtry %%DOCSDIR%%
-@dirrm lib/eom/plugins
-@dirrm lib/eom
-@dirrm include/eom-2.20/eom
-@dirrm include/eom-2.20
+@dir lib/eom/plugins

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:18:04 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id AB4A4D2B;
 Mon,  6 Oct 2014 13:18:04 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 96251A02;
 Mon,  6 Oct 2014 13:18:04 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96DI4Do077104;
 Mon, 6 Oct 2014 13:18:04 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96DI3PQ077101;
 Mon, 6 Oct 2014 13:18:03 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061318.s96DI3PQ077101@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:18:03 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370167 - in head/graphics/atril: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:18:04 -0000

Author: bapt
Date: Mon Oct  6 13:18:03 2014
New Revision: 370167
URL: https://svnweb.freebsd.org/changeset/ports/370167
QAT: https://qat.redports.org/buildarchive/r370167/

Log:
  Update to 1.8.1
  Cleanup plist

Deleted:
  head/graphics/atril/files/
Modified:
  head/graphics/atril/Makefile
  head/graphics/atril/distinfo
  head/graphics/atril/pkg-plist

Modified: head/graphics/atril/Makefile
==============================================================================
--- head/graphics/atril/Makefile	Mon Oct  6 13:10:43 2014	(r370166)
+++ head/graphics/atril/Makefile	Mon Oct  6 13:18:03 2014	(r370167)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	atril
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 PORTREVISION=	1
 CATEGORIES=	graphics print mate
 MASTER_SITES=	MATE
@@ -26,7 +26,7 @@ USES=		desktop-file-utils gettext gmake 
 		pkgconfig tar:xz
 USE_MATE=	icontheme caja
 USE_XORG=	sm
-USE_GNOME=	cairo gnomehier gtk20 intlhack libxml2
+USE_GNOME=	cairo gtk20 intlhack libxml2
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-gtk=2.0 \

Modified: head/graphics/atril/distinfo
==============================================================================
--- head/graphics/atril/distinfo	Mon Oct  6 13:10:43 2014	(r370166)
+++ head/graphics/atril/distinfo	Mon Oct  6 13:18:03 2014	(r370167)
@@ -1,2 +1,2 @@
-SHA256 (mate/atril-1.8.0.tar.xz) = 99f4f1e100a4eec696feabbb56d653addd8dbe851c9748d2e929e158524c2dad
-SIZE (mate/atril-1.8.0.tar.xz) = 1572068
+SHA256 (mate/atril-1.8.1.tar.xz) = 036b6bdf9f9caa7468c0cfb680360420cf8477007a0a04dc3b5c50b163c0333f
+SIZE (mate/atril-1.8.1.tar.xz) = 1577776

Modified: head/graphics/atril/pkg-plist
==============================================================================
--- head/graphics/atril/pkg-plist	Mon Oct  6 13:10:43 2014	(r370166)
+++ head/graphics/atril/pkg-plist	Mon Oct  6 13:18:03 2014	(r370167)
@@ -400,152 +400,3 @@ share/locale/zh_CN/LC_MESSAGES/atril.mo
 share/locale/zh_HK/LC_MESSAGES/atril.mo
 share/locale/zh_TW/LC_MESSAGES/atril.mo
 share/thumbnailers/atril.thumbnailer
-@dirrmtry share/thumbnailers
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/ks/LC_MESSAGES
-@dirrmtry share/locale/ks
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/help/zh_CN/atril/figures
-@dirrmtry share/help/zh_CN/atril
-@dirrmtry share/help/zh_CN
-@dirrmtry share/help/vi/atril/figures
-@dirrmtry share/help/vi/atril
-@dirrmtry share/help/vi
-@dirrmtry share/help/uk/atril/figures
-@dirrmtry share/help/uk/atril
-@dirrmtry share/help/uk
-@dirrmtry share/help/sv/atril/figures
-@dirrmtry share/help/sv/atril
-@dirrmtry share/help/sv
-@dirrmtry share/help/sr/atril/figures
-@dirrmtry share/help/sr/atril
-@dirrmtry share/help/sr
-@dirrmtry share/help/sl/atril/figures
-@dirrmtry share/help/sl/atril
-@dirrmtry share/help/sl
-@dirrmtry share/help/ru/atril/figures
-@dirrmtry share/help/ru/atril
-@dirrmtry share/help/ru
-@dirrmtry share/help/pt_BR/atril/figures
-@dirrmtry share/help/pt_BR/atril
-@dirrmtry share/help/pt_BR
-@dirrmtry share/help/oc/atril/figures
-@dirrmtry share/help/oc/atril
-@dirrmtry share/help/oc
-@dirrmtry share/help/nl/atril/figures
-@dirrmtry share/help/nl/atril
-@dirrmtry share/help/nl
-@dirrmtry share/help/ja/atril/figures
-@dirrmtry share/help/ja/atril
-@dirrmtry share/help/ja
-@dirrmtry share/help/it/atril/figures
-@dirrmtry share/help/it/atril
-@dirrmtry share/help/it
-@dirrmtry share/help/fr/atril/figures
-@dirrmtry share/help/fr/atril
-@dirrmtry share/help/fr
-@dirrmtry share/help/fi/atril/figures
-@dirrmtry share/help/fi/atril
-@dirrmtry share/help/fi
-@dirrmtry share/help/eu/atril/figures
-@dirrmtry share/help/eu/atril
-@dirrmtry share/help/eu
-@dirrmtry share/help/es/atril/figures
-@dirrmtry share/help/es/atril
-@dirrmtry share/help/es
-@dirrmtry share/help/en_GB/atril/figures
-@dirrmtry share/help/en_GB/atril
-@dirrmtry share/help/en_GB
-@dirrmtry share/help/el/atril/figures
-@dirrmtry share/help/el/atril
-@dirrmtry share/help/el
-@dirrmtry share/help/de/atril/figures
-@dirrmtry share/help/de/atril
-@dirrmtry share/help/de
-@dirrmtry share/help/cs/atril/figures
-@dirrmtry share/help/cs/atril
-@dirrmtry share/help/cs
-@dirrmtry share/help/ca/atril/figures
-@dirrmtry share/help/ca/atril
-@dirrmtry share/help/ca
-@dirrmtry share/help/bg/atril/figures
-@dirrmtry share/help/bg/atril
-@dirrmtry share/help/bg
-@dirrmtry share/help/C/atril/figures
-@dirrmtry share/help/C/atril
-@dirrmtry share/help/C
-@dirrmtry share/help
-@dirrmtry share/gtk-doc/html/libatrilview-1.5.0
-@dirrmtry share/gtk-doc/html/libatrildocument-1.5.0
-@dirrmtry share/gtk-doc/html/atril
-@dirrmtry share/gtk-doc/html
-@dirrmtry share/gtk-doc
-@dirrmtry %%DATADIR%%/icons/hicolor/scalable/mimetypes
-@dirrmtry %%DATADIR%%/icons/hicolor/scalable/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/scalable
-@dirrmtry %%DATADIR%%/icons/hicolor/48x48/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/48x48
-@dirrmtry %%DATADIR%%/icons/hicolor/32x32/mimetypes
-@dirrmtry %%DATADIR%%/icons/hicolor/32x32/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/32x32
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24/mimetypes
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24
-@dirrmtry %%DATADIR%%/icons/hicolor/22x22/mimetypes
-@dirrmtry %%DATADIR%%/icons/hicolor/22x22/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/22x22
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16/mimetypes
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16
-@dirrmtry %%DATADIR%%/icons/hicolor
-@dirrmtry %%DATADIR%%/icons
-@dirrmtry %%DATADIR%%
-@dirrmtry lib/atril/3/backends
-@dirrmtry lib/atril/3
-@dirrmtry lib/atril
-@dirrmtry include/atril/1.5.0/libview
-@dirrmtry include/atril/1.5.0/libdocument
-@dirrmtry include/atril/1.5.0
-@dirrmtry include/atril

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:20:26 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 2F5ED23A;
 Mon,  6 Oct 2014 13:20:26 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 0076DA27;
 Mon,  6 Oct 2014 13:20:26 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96DKP2Y079615;
 Mon, 6 Oct 2014 13:20:25 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96DKPAk079610;
 Mon, 6 Oct 2014 13:20:25 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061320.s96DKPAk079610@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:20:25 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370168 - head/deskutils/mate-utils
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:20:26 -0000

Author: bapt
Date: Mon Oct  6 13:20:24 2014
New Revision: 370168
URL: https://svnweb.freebsd.org/changeset/ports/370168
QAT: https://qat.redports.org/buildarchive/r370168/

Log:
  Update to 1.8.1
  Cleanup plist

Modified:
  head/deskutils/mate-utils/Makefile
  head/deskutils/mate-utils/distinfo
  head/deskutils/mate-utils/pkg-plist

Modified: head/deskutils/mate-utils/Makefile
==============================================================================
--- head/deskutils/mate-utils/Makefile	Mon Oct  6 13:18:03 2014	(r370167)
+++ head/deskutils/mate-utils/Makefile	Mon Oct  6 13:20:24 2014	(r370168)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	mate-utils
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 CATEGORIES=	deskutils mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -19,7 +19,7 @@ PORTSCOUT=	limitw:1,even
 USES=		gettext gmake libtool pathfix pkgconfig tar:xz
 USE_MATE=	panel
 USE_XORG=	x11 xext
-USE_GNOME=	gnomehier gtk20 intlhack
+USE_GNOME=	gtk20 intlhack
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-maintainer-flags=no \

Modified: head/deskutils/mate-utils/distinfo
==============================================================================
--- head/deskutils/mate-utils/distinfo	Mon Oct  6 13:18:03 2014	(r370167)
+++ head/deskutils/mate-utils/distinfo	Mon Oct  6 13:20:24 2014	(r370168)
@@ -1,2 +1,2 @@
-SHA256 (mate/mate-utils-1.8.0.tar.xz) = 490d187d67c4f542cf3b8e63337acc1a9b7090c519adb844600b9d00da0b5cf0
-SIZE (mate/mate-utils-1.8.0.tar.xz) = 2681836
+SHA256 (mate/mate-utils-1.8.1.tar.xz) = 0ad9c40c656214caaa6cbd2107ebb13e3cea0b64b4e31c7105568726313522a5
+SIZE (mate/mate-utils-1.8.1.tar.xz) = 2648184

Modified: head/deskutils/mate-utils/pkg-plist
==============================================================================
--- head/deskutils/mate-utils/pkg-plist	Mon Oct  6 13:18:03 2014	(r370167)
+++ head/deskutils/mate-utils/pkg-plist	Mon Oct  6 13:20:24 2014	(r370168)
@@ -25,6 +25,7 @@ libdata/pkgconfig/mate-dict.pc
 libexec/mate-dictionary-applet
 man/man1/mate-dictionary.1.gz
 man/man1/mate-disk-usage-analyzer.1.gz
+man/man1/mate-panel-screenshot.1.gz
 man/man1/mate-screenshot.1.gz
 man/man1/mate-search-tool.1.gz
 man/man1/mate-system-log.1.gz

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:29:21 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 4FCBBFD1;
 Mon,  6 Oct 2014 13:29:21 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 378EEB52;
 Mon,  6 Oct 2014 13:29:21 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96DTKYh083086;
 Mon, 6 Oct 2014 13:29:20 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96DTK3R083082;
 Mon, 6 Oct 2014 13:29:20 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061329.s96DTK3R083082@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:29:20 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370169 - head/archivers/engrampa
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:29:21 -0000

Author: bapt
Date: Mon Oct  6 13:29:19 2014
New Revision: 370169
URL: https://svnweb.freebsd.org/changeset/ports/370169
QAT: https://qat.redports.org/buildarchive/r370169/

Log:
  Update to 1.8.1
  Cleanup plist

Modified:
  head/archivers/engrampa/Makefile
  head/archivers/engrampa/distinfo
  head/archivers/engrampa/pkg-plist

Modified: head/archivers/engrampa/Makefile
==============================================================================
--- head/archivers/engrampa/Makefile	Mon Oct  6 13:20:24 2014	(r370168)
+++ head/archivers/engrampa/Makefile	Mon Oct  6 13:29:19 2014	(r370169)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	engrampa
-PORTVERSION=	1.8.0
+PORTVERSION=	1.8.1
 CATEGORIES=	archivers mate
 MASTER_SITES=	MATE
 DIST_SUBDIR=	mate
@@ -20,7 +20,7 @@ USES=		desktop-file-utils gettext gmake 
 		tar:xz
 USE_MATE=	caja
 USE_XORG=	sm
-USE_GNOME=	glib20 gnomehier gtk20 intlhack
+USE_GNOME=	glib20 gtk20 intlhack
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--disable-packagekit \

Modified: head/archivers/engrampa/distinfo
==============================================================================
--- head/archivers/engrampa/distinfo	Mon Oct  6 13:20:24 2014	(r370168)
+++ head/archivers/engrampa/distinfo	Mon Oct  6 13:29:19 2014	(r370169)
@@ -1,2 +1,2 @@
-SHA256 (mate/engrampa-1.8.0.tar.xz) = d802acee43e24b8513e661a91dd7943ebdc55270ed0ceee0a8e29f981f0f6230
-SIZE (mate/engrampa-1.8.0.tar.xz) = 1357360
+SHA256 (mate/engrampa-1.8.1.tar.xz) = f8c541de364352005b2f4a100140197a2190269d3dbffe032e284a98478f1be7
+SIZE (mate/engrampa-1.8.1.tar.xz) = 1367088

Modified: head/archivers/engrampa/pkg-plist
==============================================================================
--- head/archivers/engrampa/pkg-plist	Mon Oct  6 13:20:24 2014	(r370168)
+++ head/archivers/engrampa/pkg-plist	Mon Oct  6 13:29:19 2014	(r370169)
@@ -258,130 +258,3 @@ share/locale/xh/LC_MESSAGES/engrampa.mo
 share/locale/zh_CN/LC_MESSAGES/engrampa.mo
 share/locale/zh_HK/LC_MESSAGES/engrampa.mo
 share/locale/zh_TW/LC_MESSAGES/engrampa.mo
-@dirrmtry share/locale/zh_HK/LC_MESSAGES
-@dirrmtry share/locale/zh_HK
-@dirrmtry share/locale/xh/LC_MESSAGES
-@dirrmtry share/locale/xh
-@dirrmtry share/locale/ur_PK/LC_MESSAGES
-@dirrmtry share/locale/ur_PK
-@dirrmtry share/locale/ur/LC_MESSAGES
-@dirrmtry share/locale/ur
-@dirrmtry share/locale/ug/LC_MESSAGES
-@dirrmtry share/locale/ug
-@dirrmtry share/locale/te/LC_MESSAGES
-@dirrmtry share/locale/te
-@dirrmtry share/locale/sr@latin/LC_MESSAGES
-@dirrmtry share/locale/sr@latin
-@dirrmtry share/locale/sr@ije/LC_MESSAGES
-@dirrmtry share/locale/sr@ije
-@dirrmtry share/locale/si/LC_MESSAGES
-@dirrmtry share/locale/si
-@dirrmtry share/locale/rw/LC_MESSAGES
-@dirrmtry share/locale/rw
-@dirrmtry share/locale/ps/LC_MESSAGES
-@dirrmtry share/locale/ps
-@dirrmtry share/locale/oc/LC_MESSAGES
-@dirrmtry share/locale/oc
-@dirrmtry share/locale/nds/LC_MESSAGES
-@dirrmtry share/locale/nds
-@dirrmtry share/locale/mr/LC_MESSAGES
-@dirrmtry share/locale/mr
-@dirrmtry share/locale/mg/LC_MESSAGES
-@dirrmtry share/locale/mg
-@dirrmtry share/locale/mai/LC_MESSAGES
-@dirrmtry share/locale/mai
-@dirrmtry share/locale/ky/LC_MESSAGES
-@dirrmtry share/locale/ky
-@dirrmtry share/locale/ku/LC_MESSAGES
-@dirrmtry share/locale/ku
-@dirrmtry share/locale/kk/LC_MESSAGES
-@dirrmtry share/locale/kk
-@dirrmtry share/locale/hy/LC_MESSAGES
-@dirrmtry share/locale/hy
-@dirrmtry share/locale/fy/LC_MESSAGES
-@dirrmtry share/locale/fy
-@dirrmtry share/locale/fur/LC_MESSAGES
-@dirrmtry share/locale/fur
-@dirrmtry share/locale/en@shaw/LC_MESSAGES
-@dirrmtry share/locale/en@shaw
-@dirrmtry share/locale/dz/LC_MESSAGES
-@dirrmtry share/locale/dz
-@dirrmtry share/locale/cmn/LC_MESSAGES
-@dirrmtry share/locale/cmn
-@dirrmtry share/locale/ca@valencia/LC_MESSAGES
-@dirrmtry share/locale/ca@valencia
-@dirrmtry share/locale/bn_IN/LC_MESSAGES
-@dirrmtry share/locale/bn_IN
-@dirrmtry share/locale/be@latin/LC_MESSAGES
-@dirrmtry share/locale/be@latin
-@dirrmtry share/locale/ast/LC_MESSAGES
-@dirrmtry share/locale/ast
-@dirrmtry share/locale/as/LC_MESSAGES
-@dirrmtry share/locale/as
-@dirrmtry share/help/zh_CN/engrampa/figures
-@dirrmtry share/help/zh_CN/engrampa
-@dirrmtry share/help/zh_CN
-@dirrmtry share/help/vi/engrampa/figures
-@dirrmtry share/help/vi/engrampa
-@dirrmtry share/help/vi
-@dirrmtry share/help/uk/engrampa/figures
-@dirrmtry share/help/uk/engrampa
-@dirrmtry share/help/uk
-@dirrmtry share/help/sv/engrampa/figures
-@dirrmtry share/help/sv/engrampa
-@dirrmtry share/help/sv
-@dirrmtry share/help/ru/engrampa/figures
-@dirrmtry share/help/ru/engrampa
-@dirrmtry share/help/ru
-@dirrmtry share/help/oc/engrampa/figures
-@dirrmtry share/help/oc/engrampa
-@dirrmtry share/help/oc
-@dirrmtry share/help/nl/engrampa/figures
-@dirrmtry share/help/nl/engrampa
-@dirrmtry share/help/nl
-@dirrmtry share/help/ja/engrampa/figures
-@dirrmtry share/help/ja/engrampa
-@dirrmtry share/help/ja
-@dirrmtry share/help/it/engrampa/figures
-@dirrmtry share/help/it/engrampa
-@dirrmtry share/help/it
-@dirrmtry share/help/fr/engrampa/figures
-@dirrmtry share/help/fr/engrampa
-@dirrmtry share/help/fr
-@dirrmtry share/help/fi/engrampa/figures
-@dirrmtry share/help/fi/engrampa
-@dirrmtry share/help/fi
-@dirrmtry share/help/es/engrampa/figures
-@dirrmtry share/help/es/engrampa
-@dirrmtry share/help/es
-@dirrmtry share/help/en_GB/engrampa/figures
-@dirrmtry share/help/en_GB/engrampa
-@dirrmtry share/help/en_GB
-@dirrmtry share/help/el/engrampa/figures
-@dirrmtry share/help/el/engrampa
-@dirrmtry share/help/el
-@dirrmtry share/help/de/engrampa/figures
-@dirrmtry share/help/de/engrampa
-@dirrmtry share/help/de
-@dirrmtry share/help/cs/engrampa/figures
-@dirrmtry share/help/cs/engrampa
-@dirrmtry share/help/cs
-@dirrmtry share/help/ca/engrampa/figures
-@dirrmtry share/help/ca/engrampa
-@dirrmtry share/help/ca
-@dirrmtry share/help/bg/engrampa/figures
-@dirrmtry share/help/bg/engrampa
-@dirrmtry share/help/bg
-@dirrmtry share/help/C/engrampa/figures
-@dirrmtry share/help/C/engrampa
-@dirrmtry share/help/C
-@dirrmtry share/help
-@dirrmtry %%DATADIR%%/ui
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/24x24
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16/actions
-@dirrmtry %%DATADIR%%/icons/hicolor/16x16
-@dirrmtry %%DATADIR%%/icons/hicolor
-@dirrmtry %%DATADIR%%/icons
-@dirrmtry %%DATADIR%%
-@dirrmtry libexec/engrampa

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:42:43 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 71203B7A;
 Mon,  6 Oct 2014 13:42:43 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 5BC49D3E;
 Mon,  6 Oct 2014 13:42:43 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96DghsJ092293;
 Mon, 6 Oct 2014 13:42:43 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96DggFB092291;
 Mon, 6 Oct 2014 13:42:42 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061342.s96DggFB092291@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:42:42 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370170 - head/french/hunspell
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:42:43 -0000

Author: bapt
Date: Mon Oct  6 13:42:42 2014
New Revision: 370170
URL: https://svnweb.freebsd.org/changeset/ports/370170
QAT: https://qat.redports.org/buildarchive/r370170/

Log:
  Update to 5.2

Modified:
  head/french/hunspell/Makefile
  head/french/hunspell/distinfo

Modified: head/french/hunspell/Makefile
==============================================================================
--- head/french/hunspell/Makefile	Mon Oct  6 13:29:19 2014	(r370169)
+++ head/french/hunspell/Makefile	Mon Oct  6 13:42:42 2014	(r370170)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	hunspell
-PORTVERSION=	5.1
+PORTVERSION=	5.2
 CATEGORIES=	french textproc
 MASTER_SITES=	http://www.dicollecte.org/download/fr/ \
 		LOCAL/sunpoet/${PORTNAME}
@@ -19,7 +19,6 @@ NO_WRKSUBDIR=	yes
 
 PLIST_FILES=	%%DATADIR%%/fr_FR.aff \
 		%%DATADIR%%/fr_FR.dic
-PLIST_DIRSTRY=	%%DATADIR%%
 
 FRALIASES=	fr_BE fr_CA fr_CH fr_LU
 .for ALIAS in ${FRALIASES}

Modified: head/french/hunspell/distinfo
==============================================================================
--- head/french/hunspell/distinfo	Mon Oct  6 13:29:19 2014	(r370169)
+++ head/french/hunspell/distinfo	Mon Oct  6 13:42:42 2014	(r370170)
@@ -1,2 +1,2 @@
-SHA256 (hunspell/hunspell-french-dictionaries-v5.1.zip) = 03a59728dfe55d4c49c5697a2c28efbe5a230b12ab5ddb3129f11566e9d66c7a
-SIZE (hunspell/hunspell-french-dictionaries-v5.1.zip) = 1412430
+SHA256 (hunspell/hunspell-french-dictionaries-v5.2.zip) = c5863f7592a8c4defe8b4ed2b3b45f6f10ef265d34ae9881c1f3bbb3b80bdd02
+SIZE (hunspell/hunspell-french-dictionaries-v5.2.zip) = 1423510

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 13:45:12 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 14C75CA1;
 Mon,  6 Oct 2014 13:45:12 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id F3FB4D5D;
 Mon,  6 Oct 2014 13:45:11 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96DjBWU092787;
 Mon, 6 Oct 2014 13:45:11 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96DjB3W092784;
 Mon, 6 Oct 2014 13:45:11 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061345.s96DjB3W092784@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 13:45:11 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370171 - in head/textproc/hyphen: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 13:45:12 -0000

Author: bapt
Date: Mon Oct  6 13:45:10 2014
New Revision: 370171
URL: https://svnweb.freebsd.org/changeset/ports/370171
QAT: https://qat.redports.org/buildarchive/r370171/

Log:
  Update to 2.8.8

Deleted:
  head/textproc/hyphen/files/
Modified:
  head/textproc/hyphen/Makefile
  head/textproc/hyphen/distinfo

Modified: head/textproc/hyphen/Makefile
==============================================================================
--- head/textproc/hyphen/Makefile	Mon Oct  6 13:42:42 2014	(r370170)
+++ head/textproc/hyphen/Makefile	Mon Oct  6 13:45:10 2014	(r370171)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	hyphen
-PORTVERSION=	2.8.7
-PORTREVISION=	1
+PORTVERSION=	2.8.8
 CATEGORIES=	textproc
 MASTER_SITES=	SF/hunspell/Hyphen/${PORTVERSION:R}/
 DIST_SUBDIR=	${PORTNAME}
@@ -29,7 +28,6 @@ PLIST_FILES=	bin/substrings.pl \
 		lib/libhyphen.so.0 \
 		lib/libhyphen.so.0.3.0 \
 		%%DATADIR%%/hyph_en_US.dic
-PLIST_DIRSTRY=	%%DATADIR%%
 
 USALIASES=	en_AG en_AU en_BS en_BW en_BZ en_CA en_DK en_GB en_GH en_HK \
 		en_IE en_IN en_JM en_NA en_NZ en_PH en_SG en_TT en_ZA en_ZW

Modified: head/textproc/hyphen/distinfo
==============================================================================
--- head/textproc/hyphen/distinfo	Mon Oct  6 13:42:42 2014	(r370170)
+++ head/textproc/hyphen/distinfo	Mon Oct  6 13:45:10 2014	(r370171)
@@ -1,2 +1,2 @@
-SHA256 (hyphen/hyphen-2.8.7.tar.gz) = c3e66de07f06125536f1fa03a121fa8a4c1b246a3b28a6ccd3cda24bb296f3a7
-SIZE (hyphen/hyphen-2.8.7.tar.gz) = 638214
+SHA256 (hyphen/hyphen-2.8.8.tar.gz) = 304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705
+SIZE (hyphen/hyphen-2.8.8.tar.gz) = 638369

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:10 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 286921ED;
 Mon,  6 Oct 2014 14:00:10 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id EE04DF35;
 Mon,  6 Oct 2014 14:00:09 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E09jT098346;
 Mon, 6 Oct 2014 14:00:09 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E098f098344;
 Mon, 6 Oct 2014 14:00:09 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E098f098344@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:09 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370172 - head/games/magicmaze
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:10 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:09 2014
New Revision: 370172
URL: https://svnweb.freebsd.org/changeset/ports/370172
QAT: https://qat.redports.org/buildarchive/r370172/

Log:
  - Fix LICENSE
  - Add LICENSE_FILE
  - Simplify docs installation

Modified:
  head/games/magicmaze/Makefile
  head/games/magicmaze/pkg-plist

Modified: head/games/magicmaze/Makefile
==============================================================================
--- head/games/magicmaze/Makefile	Mon Oct  6 13:45:10 2014	(r370171)
+++ head/games/magicmaze/Makefile	Mon Oct  6 14:00:09 2014	(r370172)
@@ -11,7 +11,9 @@ DISTNAME=	${PORTNAME}-${DISTVERSION:S/./
 MAINTAINER=	games@FreeBSD.org
 COMMENT=	Simple and low-tech monster-bashing maze game
 
-LICENSE=	GPLv2
+LICENSE=	GPLv2 RUBY
+LICENSE_COMB=	dual
+LICENSE_FILE_GPLv2=	${WRKSRC}/COPYING_GPL.txt
 
 RUN_DEPENDS=	ruby${RUBY_SUFFIX}-sdl>=0:${PORTSDIR}/devel/ruby-sdl
 
@@ -25,13 +27,6 @@ NO_BUILD=	yes
 
 PORTDOCS=	*
 
-DOCSRCDIR1=	${WRKSRC}
-DOC_FILES1=	README.TXT
-
-DOCSRCDIR2=	${WRKSRC}/doc
-DOCSDIR2=	${DOCSDIR}/doc
-DOC_FILES2=	BUGS.TXT
-
 OPTIONS_DEFINE=	DOCS
 
 SUB_FILES=	${PORTNAME}
@@ -47,9 +42,7 @@ do-install:
 
 	${LN} -sf ${DATADIR}/data/gfx/icon.png \
 		${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
-
-	@${MKDIR} ${STAGEDIR}${DOCSDIR2}
-	${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR}
-	${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2}
+	cd ${WRKSRC} && ${COPYTREE_SHARE} "README.TXT doc/BUGS.TXT" \
+		${STAGEDIR}${DOCSDIR}
 
 .include 

Modified: head/games/magicmaze/pkg-plist
==============================================================================
--- head/games/magicmaze/pkg-plist	Mon Oct  6 13:45:10 2014	(r370171)
+++ head/games/magicmaze/pkg-plist	Mon Oct  6 14:00:09 2014	(r370172)
@@ -51,9 +51,3 @@ bin/magicmaze
 %%DATADIR%%/mm.rb
 %%DATADIR%%/testmm.rb
 share/pixmaps/magicmaze.png
-@dirrm %%DATADIR%%/magicmaze
-@dirrm %%DATADIR%%/data/sound
-@dirrm %%DATADIR%%/data/maps
-@dirrm %%DATADIR%%/data/gfx
-@dirrm %%DATADIR%%/data
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:19 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 9AFCC2B8;
 Mon,  6 Oct 2014 14:00:19 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 75C22F39;
 Mon,  6 Oct 2014 14:00:19 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0JkS098491;
 Mon, 6 Oct 2014 14:00:19 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0Ido098486;
 Mon, 6 Oct 2014 14:00:18 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0Ido098486@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370173 - head/games/kye
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:19 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:18 2014
New Revision: 370173
URL: https://svnweb.freebsd.org/changeset/ports/370173
QAT: https://qat.redports.org/buildarchive/r370173/

Log:
  - Convert to USES=python
  - Drop @dirrm* from plist

Modified:
  head/games/kye/Makefile
  head/games/kye/pkg-plist

Modified: head/games/kye/Makefile
==============================================================================
--- head/games/kye/Makefile	Mon Oct  6 14:00:09 2014	(r370172)
+++ head/games/kye/Makefile	Mon Oct  6 14:00:18 2014	(r370173)
@@ -23,8 +23,8 @@ RESTRICTED=	kye-data_nuke_levels is char
 RESTRICTED_FILES=	 kye-data_nuke_levels.20121101.tar.gz
 
 USE_GNOME=	pygtk2 librsvg2
-USE_PYTHON=	yes
-USE_PYDISTUTILS=	yes
+USES=		python
+USE_PYTHON=	distutils
 
 PORTDOCS=	NEWS README
 OPTIONS_DEFINE=	DOCS

Modified: head/games/kye/pkg-plist
==============================================================================
--- head/games/kye/pkg-plist	Mon Oct  6 14:00:09 2014	(r370172)
+++ head/games/kye/pkg-plist	Mon Oct  6 14:00:18 2014	(r370173)
@@ -188,7 +188,3 @@ bin/Kye-edit
 %%DATADIR%%/wizard.kye
 share/pixmaps/Kye-edit.png
 share/pixmaps/Kye.png
-@dirrm %%DATADIR%%
-@dirrm %%PYTHON_SITELIBDIR%%/kye
-@dirrmtry %%PYTHON_SITELIBDIR%%
-@dirrmtry %%PYTHON_LIBDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:24 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 9079C395;
 Mon,  6 Oct 2014 14:00:24 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 7BF89F3D;
 Mon,  6 Oct 2014 14:00:24 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0OvA098622;
 Mon, 6 Oct 2014 14:00:24 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0Oqh098620;
 Mon, 6 Oct 2014 14:00:24 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0Oqh098620@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370174 - head/games/gtkballs
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:24 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:23 2014
New Revision: 370174
URL: https://svnweb.freebsd.org/changeset/ports/370174
QAT: https://qat.redports.org/buildarchive/r370174/

Log:
  - Clarify LICENSE
  - Add LICENSE_FILE
  - Drop @dirrm* from plist

Modified:
  head/games/gtkballs/Makefile
  head/games/gtkballs/pkg-plist

Modified: head/games/gtkballs/Makefile
==============================================================================
--- head/games/gtkballs/Makefile	Mon Oct  6 14:00:18 2014	(r370173)
+++ head/games/gtkballs/Makefile	Mon Oct  6 14:00:23 2014	(r370174)
@@ -10,7 +10,8 @@ MASTER_SITES=	http://gtkballs.antex.ru/d
 MAINTAINER=	games@FreeBSD.org
 COMMENT=	Lines-like simple logic game for X Window System
 
-LICENSE=	GPLv2
+LICENSE=	GPLv2 # or later
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		gmake pkgconfig
 USE_GNOME=	gtk20

Modified: head/games/gtkballs/pkg-plist
==============================================================================
--- head/games/gtkballs/pkg-plist	Mon Oct  6 14:00:18 2014	(r370173)
+++ head/games/gtkballs/pkg-plist	Mon Oct  6 14:00:23 2014	(r370174)
@@ -533,9 +533,3 @@ man/man6/gtkballs.6x.gz
 %%NLS%%share/locale/pl/LC_MESSAGES/gtkballs.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/gtkballs.mo
 share/pixmaps/gtkballs.png
-@dirrm %%DATADIR%%/themes/mascots
-@dirrm %%DATADIR%%/themes/klines
-@dirrm %%DATADIR%%/themes/Default
-@dirrm %%DATADIR%%/themes/5balls-Big
-@dirrm %%DATADIR%%/themes
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:34 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 6731F49B;
 Mon,  6 Oct 2014 14:00:34 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 52855F4A;
 Mon,  6 Oct 2014 14:00:34 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0YYA098862;
 Mon, 6 Oct 2014 14:00:34 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0XLu098860;
 Mon, 6 Oct 2014 14:00:33 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0XLu098860@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:33 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370176 - head/games/connectagram
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:34 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:33 2014
New Revision: 370176
URL: https://svnweb.freebsd.org/changeset/ports/370176
QAT: https://qat.redports.org/buildarchive/r370176/

Log:
  - Drop @dirrm* from plist
  - Clarify LICENSE
  - Add LICENSE_FILE

Modified:
  head/games/connectagram/Makefile
  head/games/connectagram/pkg-plist

Modified: head/games/connectagram/Makefile
==============================================================================
--- head/games/connectagram/Makefile	Mon Oct  6 14:00:28 2014	(r370175)
+++ head/games/connectagram/Makefile	Mon Oct  6 14:00:33 2014	(r370176)
@@ -10,7 +10,8 @@ EXTRACT_SUFX=	-src.tar.bz2
 MAINTAINER=	games@FreeBSD.org
 COMMENT=	Word unscrambling game
 
-LICENSE=	GPLv3
+LICENSE=	GPLv3 # or later
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		qmake tar:bzip2
 USE_QT4=	moc_build rcc_build gui network iconengines_run \

Modified: head/games/connectagram/pkg-plist
==============================================================================
--- head/games/connectagram/pkg-plist	Mon Oct  6 14:00:28 2014	(r370175)
+++ head/games/connectagram/pkg-plist	Mon Oct  6 14:00:33 2014	(r370176)
@@ -33,11 +33,3 @@ share/icons/hicolor/64x64/apps/connectag
 share/icons/hicolor/scalable/apps/connectagram.svg
 share/pixmaps/connectagram.png
 share/pixmaps/connectagram.xpm
-%%NLS%%@dirrm %%DATADIR%%/translations
-@dirrm %%DATADIR%%/patterns
-@dirrm %%DATADIR%%/data/ru
-@dirrm %%DATADIR%%/data/hu
-@dirrm %%DATADIR%%/data/fr
-@dirrm %%DATADIR%%/data/en
-@dirrm %%DATADIR%%/data
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:29 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 529A53CE;
 Mon,  6 Oct 2014 14:00:29 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 3DDFEF46;
 Mon,  6 Oct 2014 14:00:29 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0TYu098729;
 Mon, 6 Oct 2014 14:00:29 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0T2o098728;
 Mon, 6 Oct 2014 14:00:29 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0T2o098728@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:29 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370175 - head/games/xlife
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:29 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:28 2014
New Revision: 370175
URL: https://svnweb.freebsd.org/changeset/ports/370175
QAT: https://qat.redports.org/buildarchive/r370175/

Log:
  - Drop @dirrm* from plist

Modified:
  head/games/xlife/pkg-plist

Modified: head/games/xlife/pkg-plist
==============================================================================
--- head/games/xlife/pkg-plist	Mon Oct  6 14:00:23 2014	(r370174)
+++ head/games/xlife/pkg-plist	Mon Oct  6 14:00:28 2014	(r370175)
@@ -27,10 +27,3 @@ man/man6/xlife.6.gz
 %%DATADIR%%/patterns/pd/lloyd.l
 %%DATADIR%%/patterns/pd/lloyd2.l
 %%DATADIR%%/patterns/pd/osc-3.l
-@dirrm %%DATADIR%%/patterns/pd
-@dirrm %%DATADIR%%/patterns/life-like
-@dirrm %%DATADIR%%/patterns/langton
-@dirrm %%DATADIR%%/patterns/formats
-@dirrm %%DATADIR%%/patterns/boundedgrid
-@dirrm %%DATADIR%%/patterns
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:44 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 39CC1662;
 Mon,  6 Oct 2014 14:00:44 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 24F39F55;
 Mon,  6 Oct 2014 14:00:44 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0imk099107;
 Mon, 6 Oct 2014 14:00:44 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0hj9099105;
 Mon, 6 Oct 2014 14:00:43 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0hj9099105@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:43 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370178 - head/games/arkanoidsb
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:44 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:43 2014
New Revision: 370178
URL: https://svnweb.freebsd.org/changeset/ports/370178
QAT: https://qat.redports.org/buildarchive/r370178/

Log:
  - Drop @dirrm* from plist
  - Fix whitespace

Modified:
  head/games/arkanoidsb/Makefile
  head/games/arkanoidsb/pkg-plist

Modified: head/games/arkanoidsb/Makefile
==============================================================================
--- head/games/arkanoidsb/Makefile	Mon Oct  6 14:00:38 2014	(r370177)
+++ head/games/arkanoidsb/Makefile	Mon Oct  6 14:00:43 2014	(r370178)
@@ -11,7 +11,7 @@ COMMENT=	Arkanoid and space game
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
-USES=	tar:bzip2
+USES=		tar:bzip2
 NO_WRKSUBDIR=	yes
 NO_BUILD=	yes
 USE_LINUX=	yes

Modified: head/games/arkanoidsb/pkg-plist
==============================================================================
--- head/games/arkanoidsb/pkg-plist	Mon Oct  6 14:00:38 2014	(r370177)
+++ head/games/arkanoidsb/pkg-plist	Mon Oct  6 14:00:43 2014	(r370178)
@@ -5,5 +5,3 @@ bin/arkanoidsb
 %%DATADIR%%/res/module02.ogg
 %%DATADIR%%/res/module03.s3m
 share/pixmaps/arkanoidsb.png
-@dirrm %%DATADIR%%/res
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:39 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 1BDFA57B;
 Mon,  6 Oct 2014 14:00:39 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 078A6F4F;
 Mon,  6 Oct 2014 14:00:39 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0ccO098977;
 Mon, 6 Oct 2014 14:00:38 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0c92098976;
 Mon, 6 Oct 2014 14:00:38 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0c92098976@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:38 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370177 - head/games/lordsawar
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:39 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:38 2014
New Revision: 370177
URL: https://svnweb.freebsd.org/changeset/ports/370177
QAT: https://qat.redports.org/buildarchive/r370177/

Log:
  - Drop @dirrm* from plist

Modified:
  head/games/lordsawar/pkg-plist

Modified: head/games/lordsawar/pkg-plist
==============================================================================
--- head/games/lordsawar/pkg-plist	Mon Oct  6 14:00:33 2014	(r370176)
+++ head/games/lordsawar/pkg-plist	Mon Oct  6 14:00:38 2014	(r370177)
@@ -78,12 +78,3 @@ share/locale/ca/LC_MESSAGES/lordsawar.mo
 share/locale/da/LC_MESSAGES/lordsawar.mo
 share/locale/de/LC_MESSAGES/lordsawar.mo
 share/locale/nl/LC_MESSAGES/lordsawar.mo
-@dirrm share/gnome/help/lordsawar/C/figures
-@dirrm share/gnome/help/lordsawar/C
-@dirrm share/gnome/help/lordsawar
-@dirrmtry share/icons/hicolor/32x32/apps
-@dirrmtry share/icons/hicolor/32x32
-@dirrmtry share/icons/hicolor/64x64/apps
-@dirrmtry share/icons/hicolor/64x64
-@dirrmtry share/icons/hicolor
-@dirrmtry share/icons

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:49 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 59D3E80D;
 Mon,  6 Oct 2014 14:00:49 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2B6F7F57;
 Mon,  6 Oct 2014 14:00:49 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0nZH099242;
 Mon, 6 Oct 2014 14:00:49 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0mrF099240;
 Mon, 6 Oct 2014 14:00:48 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0mrF099240@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:48 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370179 - head/games/iceicepenguin
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:49 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:48 2014
New Revision: 370179
URL: https://svnweb.freebsd.org/changeset/ports/370179
QAT: https://qat.redports.org/buildarchive/r370179/

Log:
  - Convert to USES=python
  - Drop @dirrm* from plist

Modified:
  head/games/iceicepenguin/Makefile
  head/games/iceicepenguin/pkg-plist

Modified: head/games/iceicepenguin/Makefile
==============================================================================
--- head/games/iceicepenguin/Makefile	Mon Oct  6 14:00:43 2014	(r370178)
+++ head/games/iceicepenguin/Makefile	Mon Oct  6 14:00:48 2014	(r370179)
@@ -20,8 +20,7 @@ RUN_DEPENDS=	${PYGAME}
 
 WRKSRC=		${WRKDIR}/"ice ice penguin"
 
-USES=		zip
-USE_PYTHON=	yes
+USES=		python:run zip
 NO_BUILD=	yes
 
 PORTDOCS=	CHANGELOG.txt readme.txt

Modified: head/games/iceicepenguin/pkg-plist
==============================================================================
--- head/games/iceicepenguin/pkg-plist	Mon Oct  6 14:00:43 2014	(r370178)
+++ head/games/iceicepenguin/pkg-plist	Mon Oct  6 14:00:48 2014	(r370179)
@@ -150,30 +150,3 @@ share/icons/hicolor/64x64/apps/iceicepen
 share/icons/hicolor/72x72/apps/iceicepenguin.png
 share/icons/hicolor/96x96/apps/iceicepenguin.png
 share/pixmaps/iceicepenguin.png
-@dirrm %%DATADIR%%/sfx/music
-@dirrm %%DATADIR%%/sfx
-@dirrm %%DATADIR%%/menu/fr
-@dirrm %%DATADIR%%/menu/en
-@dirrm %%DATADIR%%/menu/de
-@dirrm %%DATADIR%%/menu
-@dirrm %%DATADIR%%/lvls
-@dirrm %%DATADIR%%/gfx/1024x600/tux/3
-@dirrm %%DATADIR%%/gfx/1024x600/tux/2
-@dirrm %%DATADIR%%/gfx/1024x600/tux/1
-@dirrm %%DATADIR%%/gfx/1024x600/tux/0
-@dirrm %%DATADIR%%/gfx/1024x600/tux
-@dirrm %%DATADIR%%/gfx/1024x600/specialtux/3
-@dirrm %%DATADIR%%/gfx/1024x600/specialtux/2
-@dirrm %%DATADIR%%/gfx/1024x600/specialtux/1
-@dirrm %%DATADIR%%/gfx/1024x600/specialtux/0
-@dirrm %%DATADIR%%/gfx/1024x600/specialtux
-@dirrm %%DATADIR%%/gfx/1024x600/fields
-@dirrm %%DATADIR%%/gfx/1024x600/bear/3
-@dirrm %%DATADIR%%/gfx/1024x600/bear/2
-@dirrm %%DATADIR%%/gfx/1024x600/bear/1
-@dirrm %%DATADIR%%/gfx/1024x600/bear/0
-@dirrm %%DATADIR%%/gfx/1024x600/bear
-@dirrm %%DATADIR%%/gfx/1024x600
-@dirrm %%DATADIR%%/gfx
-@dirrm %%DATADIR%%/fonts
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:54 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 3F895812;
 Mon,  6 Oct 2014 14:00:54 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2AE2CF58;
 Mon,  6 Oct 2014 14:00:54 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0soO099377;
 Mon, 6 Oct 2014 14:00:54 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0req099375;
 Mon, 6 Oct 2014 14:00:53 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0req099375@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:53 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370180 - head/games/glightoff
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:54 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:53 2014
New Revision: 370180
URL: https://svnweb.freebsd.org/changeset/ports/370180
QAT: https://qat.redports.org/buildarchive/r370180/

Log:
  - Clarify LICENSE
  - Add LICENSE_FILE
  - Drop @dirrm* from plist

Modified:
  head/games/glightoff/Makefile
  head/games/glightoff/pkg-plist

Modified: head/games/glightoff/Makefile
==============================================================================
--- head/games/glightoff/Makefile	Mon Oct  6 14:00:48 2014	(r370179)
+++ head/games/glightoff/Makefile	Mon Oct  6 14:00:53 2014	(r370180)
@@ -12,7 +12,8 @@ COMMENT=	Simple (but not so easy to solv
 
 BUILD_DEPENDS=	p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser
 
-LICENSE=	GPLv2
+LICENSE=	GPLv2 # or later
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 USES=		gmake iconv pkgconfig
 GNU_CONFIGURE=	yes

Modified: head/games/glightoff/pkg-plist
==============================================================================
--- head/games/glightoff/pkg-plist	Mon Oct  6 14:00:48 2014	(r370179)
+++ head/games/glightoff/pkg-plist	Mon Oct  6 14:00:53 2014	(r370180)
@@ -6,4 +6,3 @@ share/applications/glightoff.desktop
 share/pixmaps/glightoff.png
 share/pixmaps/glightoff/bulb_off.svg
 share/pixmaps/glightoff/bulb_on.svg
-@dirrm share/pixmaps/glightoff

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:00:59 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 030C99AD;
 Mon,  6 Oct 2014 14:00:59 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E2AF5F5A;
 Mon,  6 Oct 2014 14:00:58 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96E0wiP099948;
 Mon, 6 Oct 2014 14:00:58 GMT (envelope-from amdmi3@FreeBSD.org)
Received: (from amdmi3@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96E0wPX099947;
 Mon, 6 Oct 2014 14:00:58 GMT (envelope-from amdmi3@FreeBSD.org)
Message-Id: <201410061400.s96E0wPX099947@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to
 amdmi3@FreeBSD.org using -f
From: Dmitry Marakasov 
Date: Mon, 6 Oct 2014 14:00:58 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370181 - head/games/popstar
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:00:59 -0000

Author: amdmi3
Date: Mon Oct  6 14:00:58 2014
New Revision: 370181
URL: https://svnweb.freebsd.org/changeset/ports/370181
QAT: https://qat.redports.org/buildarchive/r370181/

Log:
  - Drop @dirrm* from plist

Modified:
  head/games/popstar/pkg-plist

Modified: head/games/popstar/pkg-plist
==============================================================================
--- head/games/popstar/pkg-plist	Mon Oct  6 14:00:53 2014	(r370180)
+++ head/games/popstar/pkg-plist	Mon Oct  6 14:00:58 2014	(r370181)
@@ -19,7 +19,3 @@ share/pixmaps/popstar.png
 %%DATADIR%%/sounds/move.wav
 %%DATADIR%%/sounds/pop.wav
 %%DATADIR%%/sounds/select.wav
-@dirrm %%DATADIR%%/sounds
-@dirrm %%DATADIR%%/music
-@dirrm %%DATADIR%%/images
-@dirrm %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:13:02 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id A9D0FC7D;
 Mon,  6 Oct 2014 14:13:02 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 953E1F9;
 Mon,  6 Oct 2014 14:13:02 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96ED2LL008431;
 Mon, 6 Oct 2014 14:13:02 GMT (envelope-from jhale@FreeBSD.org)
Received: (from jhale@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96ED2JB008430;
 Mon, 6 Oct 2014 14:13:02 GMT (envelope-from jhale@FreeBSD.org)
Message-Id: <201410061413.s96ED2JB008430@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: jhale set sender to
 jhale@FreeBSD.org using -f
From: "Jason E. Hale" 
Date: Mon, 6 Oct 2014 14:13:02 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370182 - head/audio/mbox
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:13:02 -0000

Author: jhale
Date: Mon Oct  6 14:13:01 2014
New Revision: 370182
URL: https://svnweb.freebsd.org/changeset/ports/370182
QAT: https://qat.redports.org/buildarchive/r370182/

Log:
  - Convert to USES=python
  - Depend on python packages instead of installed file
  - Add LICENSE

Modified:
  head/audio/mbox/Makefile

Modified: head/audio/mbox/Makefile
==============================================================================
--- head/audio/mbox/Makefile	Mon Oct  6 14:00:58 2014	(r370181)
+++ head/audio/mbox/Makefile	Mon Oct  6 14:13:01 2014	(r370182)
@@ -10,17 +10,17 @@ MASTER_SITES=	http://www.mbox.wz.cz/src/
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Program intended to help with organizing your music files
 
-RUN_DEPENDS=	${PYTHON_SITELIBDIR}/ogg/__init__.py:${PORTSDIR}/audio/py-ogg \
-		${PYTHON_SITELIBDIR}/ogg/vorbis.so:${PORTSDIR}/audio/py-vorbis \
+LICENSE=	GPLv2
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}ogg>0:${PORTSDIR}/audio/py-ogg \
+		${PYTHON_PKGNAMEPREFIX}vorbis>0:${PORTSDIR}/audio/py-vorbis \
 		lame:${PORTSDIR}/audio/lame \
 		oggenc:${PORTSDIR}/audio/vorbis-tools \
 		mplayer:${PORTSDIR}/multimedia/mplayer
 
 WRKSRC=		${WRKDIR}/mBox-${PORTVERSION}
-USES=		tar:bzip2
-USE_PYTHON=	2
-USE_PYDISTUTILS=yes
-PYDISTUTILS_AUTOPLIST=	yes
+USES=		python:2 tar:bzip2
+USE_PYTHON=	autoplist distutils
 USE_WX=		3.0+
 WX_COMPS=	python
 

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:30:55 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id A0CA1FE8;
 Mon,  6 Oct 2014 14:30:55 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 8C075304;
 Mon,  6 Oct 2014 14:30:55 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96EUtni015381;
 Mon, 6 Oct 2014 14:30:55 GMT (envelope-from jhale@FreeBSD.org)
Received: (from jhale@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96EUtx8015379;
 Mon, 6 Oct 2014 14:30:55 GMT (envelope-from jhale@FreeBSD.org)
Message-Id: <201410061430.s96EUtx8015379@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: jhale set sender to
 jhale@FreeBSD.org using -f
From: "Jason E. Hale" 
Date: Mon, 6 Oct 2014 14:30:55 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370183 - head/chinese/bg5pdf
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:30:55 -0000

Author: jhale
Date: Mon Oct  6 14:30:54 2014
New Revision: 370183
URL: https://svnweb.freebsd.org/changeset/ports/370183
QAT: https://qat.redports.org/buildarchive/r370183/

Log:
  - Convert to USES=python, limit to 2.x
  - Add LICENSE
  - Clean up plist

Modified:
  head/chinese/bg5pdf/Makefile
  head/chinese/bg5pdf/pkg-plist

Modified: head/chinese/bg5pdf/Makefile
==============================================================================
--- head/chinese/bg5pdf/Makefile	Mon Oct  6 14:13:01 2014	(r370182)
+++ head/chinese/bg5pdf/Makefile	Mon Oct  6 14:30:54 2014	(r370183)
@@ -11,10 +11,13 @@ MASTER_SITES=	ftp://freebsd.sinica.edu.t
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Convert Chinese-Big5 encoded files to PDF, using PDFlib
 
+LICENSE=	GPLv2
+
 LIB_DEPENDS=	libpdf.so:${PORTSDIR}/print/pdflib
 
+USES=		python:2
+
 CFLAGS+=	-fPIC
-USE_PYTHON=	yes
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
 OPTIONS_DEFINE=	EXAMPLES

Modified: head/chinese/bg5pdf/pkg-plist
==============================================================================
--- head/chinese/bg5pdf/pkg-plist	Mon Oct  6 14:13:01 2014	(r370182)
+++ head/chinese/bg5pdf/pkg-plist	Mon Oct  6 14:30:54 2014	(r370183)
@@ -4,4 +4,3 @@ bin/gbpdf
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/genTest.py
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.big5
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/test.big5.pdf
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:36:36 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 99F1C355;
 Mon,  6 Oct 2014 14:36:36 +0000 (UTC)
Received: from mail-qc0-x236.google.com (mail-qc0-x236.google.com
 [IPv6:2607:f8b0:400d:c01::236])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 39E45370;
 Mon,  6 Oct 2014 14:36:36 +0000 (UTC)
Received: by mail-qc0-f182.google.com with SMTP id i17so3934095qcy.41
 for ; Mon, 06 Oct 2014 07:36:35 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:sender:in-reply-to:references:date:message-id:subject
 :from:to:cc:content-type;
 bh=A+545N1GFK10Mp/68GKdF/ZY/mGDLOsGs8ur0Kxx5d4=;
 b=uJGLdrHM2Q6YV+Z6I1vNcAWT0ahd+Yp02MS79fcq4TKEoI8zcvQszyE7cGldcW+n+I
 5X30n3uCBs7QNAS/XvxKRMEWKcRZx56iG/NOUJv/DOrcYcwnNryK3jnQ8hoYbV0qXFj9
 BULb93LgiRST0W7M2RdmZgdftejkpN0dWbRnM4XjOfvK9Brw0sqTTMtKMsJPPwscl1Fd
 lf8giZcZoFHNrlv3Oab1fO1CY+VwdodmOXlPvQWFrAgvhyTOl5Zfn2g/j1lAiLfhgBvi
 iEvE7B2fmFO6FpN/PVaDO2aH02pBt3ohx9tWVn2FhpL3Jcco28prN4bEkENMzme+uN7B
 J1Ug==
MIME-Version: 1.0
X-Received: by 10.140.98.197 with SMTP id o63mr28212174qge.78.1412606195344;
 Mon, 06 Oct 2014 07:36:35 -0700 (PDT)
Sender: sjk4015@gmail.com
Received: by 10.140.89.234 with HTTP; Mon, 6 Oct 2014 07:36:35 -0700 (PDT)
In-Reply-To: <542D34C1.3040405@marino.st>
References: <542D34C1.3040405@marino.st>
Date: Mon, 6 Oct 2014 10:36:35 -0400
X-Google-Sender-Auth: dX1LhVge-lhgZwwjHjQg5wbsTVI
Message-ID: 
Subject: Re: svn commit: r369767 - head/www/p5-HTML-Strip
From: Steven Kreuzer 
To: marino@freebsd.org
Content-Type: text/plain; charset=UTF-8
Cc: svn-ports-head@freebsd.org,
 "ports-committers@freebsd.org" 
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:36:36 -0000

> This doesn't work, it fails to configure because the WRKSRC isn't
> defined correctly.

Sorry about that. I committed the wrong port by accident and ended up
spending the rest of the week dealing with
a family emergency and didn't see these emails until now.

Anyway, this was fixed by mat@

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 14:58:50 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 7AA4621B;
 Mon,  6 Oct 2014 14:58:50 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 6081688C;
 Mon,  6 Oct 2014 14:58:50 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96EwoQp028558;
 Mon, 6 Oct 2014 14:58:50 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96EwnfD028556;
 Mon, 6 Oct 2014 14:58:49 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061458.s96EwnfD028556@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 14:58:49 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370184 - head/devel/byacc
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 14:58:50 -0000

Author: bapt
Date: Mon Oct  6 14:58:49 2014
New Revision: 370184
URL: https://svnweb.freebsd.org/changeset/ports/370184
QAT: https://qat.redports.org/buildarchive/r370184/

Log:
  Update to 20141005

Modified:
  head/devel/byacc/Makefile
  head/devel/byacc/distinfo

Modified: head/devel/byacc/Makefile
==============================================================================
--- head/devel/byacc/Makefile	Mon Oct  6 14:30:54 2014	(r370183)
+++ head/devel/byacc/Makefile	Mon Oct  6 14:58:49 2014	(r370184)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	byacc
-PORTVERSION=	20140715
+PORTVERSION=	20141005
 CATEGORIES=	devel
 MASTER_SITES=	ftp://invisible-island.net/${PORTNAME}/
 

Modified: head/devel/byacc/distinfo
==============================================================================
--- head/devel/byacc/distinfo	Mon Oct  6 14:30:54 2014	(r370183)
+++ head/devel/byacc/distinfo	Mon Oct  6 14:58:49 2014	(r370184)
@@ -1,2 +1,2 @@
-SHA256 (byacc-20140715.tgz) = ecd0d87bf7e62b5536fb096ada96ecd564c6411866bbe6644e30ee7963e97fe5
-SIZE (byacc-20140715.tgz) = 673480
+SHA256 (byacc-20141005.tgz) = e5c81570a9d4dfcf612d36bc00656eff22945447acf517d4685c5c6c7a8a0609
+SIZE (byacc-20141005.tgz) = 708312

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 15:02:41 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 21401463;
 Mon,  6 Oct 2014 15:02:41 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 0D6FB95C;
 Mon,  6 Oct 2014 15:02:41 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96F2elE032671;
 Mon, 6 Oct 2014 15:02:40 GMT (envelope-from jhale@FreeBSD.org)
Received: (from jhale@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96F2e24032670;
 Mon, 6 Oct 2014 15:02:40 GMT (envelope-from jhale@FreeBSD.org)
Message-Id: <201410061502.s96F2e24032670@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: jhale set sender to
 jhale@FreeBSD.org using -f
From: "Jason E. Hale" 
Date: Mon, 6 Oct 2014 15:02:40 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370185 - head/converters/py-iconv
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 15:02:41 -0000

Author: jhale
Date: Mon Oct  6 15:02:40 2014
New Revision: 370185
URL: https://svnweb.freebsd.org/changeset/ports/370185
QAT: https://qat.redports.org/buildarchive/r370185/

Log:
  - Convert to USES=python, limit to 2.x
  - Simplify MASTER_SITES
  - Strip binaries

Modified:
  head/converters/py-iconv/Makefile

Modified: head/converters/py-iconv/Makefile
==============================================================================
--- head/converters/py-iconv/Makefile	Mon Oct  6 14:58:49 2014	(r370184)
+++ head/converters/py-iconv/Makefile	Mon Oct  6 15:02:40 2014	(r370185)
@@ -5,18 +5,15 @@ PORTNAME=	iconv
 PORTVERSION=	1.0
 PORTREVISION=	1
 CATEGORIES=	converters python
-MASTER_SITES=	${MASTER_SITE_LOCAL}
-MASTER_SITE_SUBDIR=	perky
+MASTER_SITES=	LOCAL/perky
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 DIST_SUBDIR=	python
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Iconv wrapper with Unicode codec for Python
 
-USES=		iconv
-USE_PYTHON=	yes
-USE_PYDISTUTILS=	yes
-PYDISTUTILS_AUTOPLIST=	yes
+USES=		iconv python:2
+USE_PYTHON=	autoplist distutils
 
 .if empty(ICONV_LIB)
 SETUPINFO=	,library_dirs=["${LOCALBASE}/lib"],\
@@ -30,4 +27,7 @@ post-patch:
 	${REINPLACE_CMD} 's!^\(.*ext_mod.*\)\()]\)$$!\1${SETUPINFO}\2!g'\
 		${WRKSRC}/setup.py
 
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/iconv.so
+
 .include 

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 15:18:11 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 2D5BDAFC;
 Mon,  6 Oct 2014 15:18:11 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 0E323ACE;
 Mon,  6 Oct 2014 15:18:11 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96FIAwc038786;
 Mon, 6 Oct 2014 15:18:10 GMT (envelope-from jhale@FreeBSD.org)
Received: (from jhale@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96FIAjX038784;
 Mon, 6 Oct 2014 15:18:10 GMT (envelope-from jhale@FreeBSD.org)
Message-Id: <201410061518.s96FIAjX038784@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: jhale set sender to
 jhale@FreeBSD.org using -f
From: "Jason E. Hale" 
Date: Mon, 6 Oct 2014 15:18:10 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370186 - head/databases/grass
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 15:18:11 -0000

Author: jhale
Date: Mon Oct  6 15:18:10 2014
New Revision: 370186
URL: https://svnweb.freebsd.org/changeset/ports/370186
QAT: https://qat.redports.org/buildarchive/r370186/

Log:
  - Convert python and pgsql to USES
  - Clean up plist

Modified:
  head/databases/grass/Makefile
  head/databases/grass/pkg-plist

Modified: head/databases/grass/Makefile
==============================================================================
--- head/databases/grass/Makefile	Mon Oct  6 15:02:40 2014	(r370185)
+++ head/databases/grass/Makefile	Mon Oct  6 15:18:10 2014	(r370186)
@@ -34,7 +34,7 @@ LIB_DEPENDS=	libgdal.so:${PORTSDIR}/grap
 		libfreetype.so:${PORTSDIR}/print/freetype2
 RUN_DEPENDS=	bash:${PORTSDIR}/shells/bash
 
-USES=		fortran gettext gmake iconv perl5 pkgconfig readline \
+USES=		fortran gettext gmake iconv perl5 pkgconfig python:2 readline \
 		shebangfix tk
 SHEBANG_FILES=	scripts/i.spectral/i.spectral \
 		scripts/r.tileset/r.tileset
@@ -43,7 +43,6 @@ PATCH_TK_SCRIPTS=lib/init/init.sh
 USE_XORG=	sm ice x11 xext xi xmu xt
 USE_GL=		glu
 USE_GNOME=	cairo
-USE_PYTHON=	2
 USE_WX=		2.8
 WX_COMPS=	wx:build python:run
 USE_GCC=	yes
@@ -100,7 +99,7 @@ MYSQL_CONFIGURE_ON=	--with-mysql \
 			--with-mysql-libs=${LOCALBASE}/lib/mysql
 ODBC_LIB_DEPENDS=	libodbc.so:${PORTSDIR}/databases/unixODBC
 ODBC_CONFIGURE_ON=	--with-odbc
-PGSQL_USE=		PGSQL=yes
+PGSQL_USES=		pgsql
 PGSQL_CONFIGURE_ON=	--with-postgres
 SQLITE_USE=		SQLITE=yes
 SQLITE_CONFIGURE_ON=	--with-sqlite

Modified: head/databases/grass/pkg-plist
==============================================================================
--- head/databases/grass/pkg-plist	Mon Oct  6 15:02:40 2014	(r370185)
+++ head/databases/grass/pkg-plist	Mon Oct  6 15:18:10 2014	(r370186)
@@ -3457,150 +3457,3 @@ bin/grass64
 %%GRASS_INST_DIR%%/tools/g.html2man
 %%GRASS_INST_DIR%%/tools/mkhtml.sh
 %%GRASS_INST_DIR%%/translators.csv
-@dirrm %%GRASS_INST_DIR%%/tools
-@dirrm %%GRASS_INST_DIR%%/scripts
-@dirrm %%GRASS_INST_DIR%%/man/man1
-@dirrm %%GRASS_INST_DIR%%/man
-@dirrm %%GRASS_INST_DIR%%/locale/zh/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/zh
-@dirrm %%GRASS_INST_DIR%%/locale/vi/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/vi
-@dirrm %%GRASS_INST_DIR%%/locale/tr/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/tr
-@dirrm %%GRASS_INST_DIR%%/locale/th/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/th
-@dirrm %%GRASS_INST_DIR%%/locale/sl/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/sl
-@dirrm %%GRASS_INST_DIR%%/locale/ru/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ru
-@dirrm %%GRASS_INST_DIR%%/locale/ro/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ro
-@dirrm %%GRASS_INST_DIR%%/locale/pt_br/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/pt_br
-@dirrm %%GRASS_INST_DIR%%/locale/pt/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/pt
-@dirrm %%GRASS_INST_DIR%%/locale/pl/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/pl
-@dirrm %%GRASS_INST_DIR%%/locale/nl/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/nl
-@dirrm %%GRASS_INST_DIR%%/locale/mr/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/mr
-@dirrm %%GRASS_INST_DIR%%/locale/ml/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ml
-@dirrm %%GRASS_INST_DIR%%/locale/lv/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/lv
-@dirrm %%GRASS_INST_DIR%%/locale/ko/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ko
-@dirrm %%GRASS_INST_DIR%%/locale/ja/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ja
-@dirrm %%GRASS_INST_DIR%%/locale/it/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/it
-@dirrm %%GRASS_INST_DIR%%/locale/id/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/id
-@dirrm %%GRASS_INST_DIR%%/locale/hi/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/hi
-@dirrm %%GRASS_INST_DIR%%/locale/fr/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/fr
-@dirrm %%GRASS_INST_DIR%%/locale/es/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/es
-@dirrm %%GRASS_INST_DIR%%/locale/el/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/el
-@dirrm %%GRASS_INST_DIR%%/locale/de/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/de
-@dirrm %%GRASS_INST_DIR%%/locale/cs/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/cs
-@dirrm %%GRASS_INST_DIR%%/locale/ar/LC_MESSAGES
-@dirrm %%GRASS_INST_DIR%%/locale/ar
-@dirrm %%GRASS_INST_DIR%%/locale
-@dirrm %%GRASS_INST_DIR%%/lib
-@dirrm %%GRASS_INST_DIR%%/include/grass/vect
-@dirrm %%GRASS_INST_DIR%%/include/grass/rtree
-@dirrm %%GRASS_INST_DIR%%/include/grass/iostream
-@dirrm %%GRASS_INST_DIR%%/include/grass/dgl
-@dirrm %%GRASS_INST_DIR%%/include/grass
-@dirrm %%GRASS_INST_DIR%%/include/Make
-@dirrm %%GRASS_INST_DIR%%/include
-@dirrm %%GRASS_INST_DIR%%/fonts
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/xml
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/wxplot
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/vdigit
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/scripts
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/psmap
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/nviz
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/modules
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/mapdisp
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/location_wizard
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/lmgr
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/icons
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gui_core
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gmodeler
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/gcp
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/dbmgr
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/core
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython/compat
-@dirrm %%GRASS_INST_DIR%%/etc/wxpython
-@dirrm %%GRASS_INST_DIR%%/etc/v.digit
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/geology
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/extra
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/demo
-@dirrm %%GRASS_INST_DIR%%/etc/symbol/basic
-@dirrm %%GRASS_INST_DIR%%/etc/symbol
-@dirrm %%GRASS_INST_DIR%%/etc/r.li.setup
-@dirrm %%GRASS_INST_DIR%%/etc/r.in.wms
-@dirrm %%GRASS_INST_DIR%%/etc/python/grass/script
-@dirrm %%GRASS_INST_DIR%%/etc/python/grass/lib
-@dirrm %%GRASS_INST_DIR%%/etc/python/grass
-@dirrm %%GRASS_INST_DIR%%/etc/python
-@dirrm %%GRASS_INST_DIR%%/etc/paint/patterns
-@dirrm %%GRASS_INST_DIR%%/etc/paint/decorations
-@dirrm %%GRASS_INST_DIR%%/etc/paint
-@dirrm %%GRASS_INST_DIR%%/etc/ogr_csv
-@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/scripts
-@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/msgs
-@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps/flythrough
-@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2/bitmaps
-@dirrm %%GRASS_INST_DIR%%/etc/nviz2.2
-@dirrm %%GRASS_INST_DIR%%/etc/nad
-@dirrm %%GRASS_INST_DIR%%/etc/msgs
-@dirrm %%GRASS_INST_DIR%%/etc/lister
-@dirrm %%GRASS_INST_DIR%%/etc/i.oif
-@dirrm %%GRASS_INST_DIR%%/etc/gui/scripts
-@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/geology
-@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/extra
-@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/demo
-@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols/basic
-@dirrm %%GRASS_INST_DIR%%/etc/gui/images/symbols
-@dirrm %%GRASS_INST_DIR%%/etc/gui/images
-@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/silk
-@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass2
-@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass/vdigit
-@dirrm %%GRASS_INST_DIR%%/etc/gui/icons/grass
-@dirrm %%GRASS_INST_DIR%%/etc/gui/icons
-@dirrm %%GRASS_INST_DIR%%/etc/gui
-@dirrm %%GRASS_INST_DIR%%/etc/gtcltk
-@dirrm %%GRASS_INST_DIR%%/etc/gm
-@dirrm %%GRASS_INST_DIR%%/etc/gem/skeleton
-@dirrm %%GRASS_INST_DIR%%/etc/gem
-@dirrm %%GRASS_INST_DIR%%/etc/form
-@dirrm %%GRASS_INST_DIR%%/etc/dm/script
-@dirrm %%GRASS_INST_DIR%%/etc/dm
-@dirrm %%GRASS_INST_DIR%%/etc/db.test
-@dirrm %%GRASS_INST_DIR%%/etc/d.polar
-@dirrm %%GRASS_INST_DIR%%/etc/colors
-@dirrm %%GRASS_INST_DIR%%/etc
-@dirrm %%GRASS_INST_DIR%%/driver/db
-@dirrm %%GRASS_INST_DIR%%/driver
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg/work
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg/panel
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/nvimg
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/img/nv
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz/img
-@dirrm %%GRASS_INST_DIR%%/docs/html/nviz
-@dirrm %%GRASS_INST_DIR%%/docs/html/icons
-@dirrm %%GRASS_INST_DIR%%/docs/html
-@dirrm %%GRASS_INST_DIR%%/docs
-@dirrm %%GRASS_INST_DIR%%/bwidget/lang
-@dirrm %%GRASS_INST_DIR%%/bwidget/images
-@dirrm %%GRASS_INST_DIR%%/bwidget
-@dirrm %%GRASS_INST_DIR%%/bin
-@dirrm %%GRASS_INST_DIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 15:39:59 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BE8BD2AB;
 Mon,  6 Oct 2014 15:39:59 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id AAA1CD15;
 Mon,  6 Oct 2014 15:39:59 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Fdx5A048837;
 Mon, 6 Oct 2014 15:39:59 GMT (envelope-from jhale@FreeBSD.org)
Received: (from jhale@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96FdxG3048836;
 Mon, 6 Oct 2014 15:39:59 GMT (envelope-from jhale@FreeBSD.org)
Message-Id: <201410061539.s96FdxG3048836@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: jhale set sender to
 jhale@FreeBSD.org using -f
From: "Jason E. Hale" 
Date: Mon, 6 Oct 2014 15:39:59 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370188 - head/math/cantor
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 15:39:59 -0000

Author: jhale
Date: Mon Oct  6 15:39:59 2014
New Revision: 370188
URL: https://svnweb.freebsd.org/changeset/ports/370188
QAT: https://qat.redports.org/buildarchive/r370188/

Log:
  - Convert long-gone USE_FORTRAN to USES=fortran

Modified:
  head/math/cantor/Makefile

Modified: head/math/cantor/Makefile
==============================================================================
--- head/math/cantor/Makefile	Mon Oct  6 15:25:28 2014	(r370187)
+++ head/math/cantor/Makefile	Mon Oct  6 15:39:59 2014	(r370188)
@@ -33,7 +33,7 @@ R_DESC=		Build R backend and install R
 R_BUILD_DEPENDS=	R:${PORTSDIR}/math/R
 R_RUN_DEPENDS=		R:${PORTSDIR}/math/R
 # Required to set CFLAGS for -lgfortran.
-R_USE=		FORTRAN=yes
+R_USES=		fortran
 R_CMAKE_OFF=	-DWITH_R:BOOL=FALSE
 
 SAGE_DESC=	Install Sage

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 15:46:37 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 084AE625;
 Mon,  6 Oct 2014 15:46:37 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E8858E16;
 Mon,  6 Oct 2014 15:46:36 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Fkag8053228;
 Mon, 6 Oct 2014 15:46:36 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96FkaLX053227;
 Mon, 6 Oct 2014 15:46:36 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061546.s96FkaLX053227@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 15:46:36 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370189 - head/multimedia/freevo
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 15:46:37 -0000

Author: wg
Date: Mon Oct  6 15:46:36 2014
New Revision: 370189
URL: https://svnweb.freebsd.org/changeset/ports/370189
QAT: https://qat.redports.org/buildarchive/r370189/

Log:
  multimedia/freevo: switch from py-imaging to py-pillow
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Modified:
  head/multimedia/freevo/Makefile

Modified: head/multimedia/freevo/Makefile
==============================================================================
--- head/multimedia/freevo/Makefile	Mon Oct  6 15:39:59 2014	(r370188)
+++ head/multimedia/freevo/Makefile	Mon Oct  6 15:46:36 2014	(r370189)
@@ -3,7 +3,7 @@
 
 PORTNAME=	freevo
 PORTVERSION=	1.9.0
-PORTREVISION=	11
+PORTREVISION=	12
 CATEGORIES=	multimedia
 MASTER_SITES=	SF/${PORTNAME}/Freevo%20releases/${PORTVERSION}
 
@@ -23,7 +23,7 @@ RUN_DEPENDS=	mplayer:${PORTSDIR}/multime
 		${PYTHON_SITELIBDIR}/kaa/metadata/__init__.py:${PORTSDIR}/multimedia/py-kaa-metadata \
 		${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup32 \
 		${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \
-		${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging \
+		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
 		${PYTHON_SITELIBDIR}/Numeric/Numeric_headers/__init__.py:${PORTSDIR}/math/py-numeric
 
 FREEVO_USER=	freevo
@@ -38,11 +38,9 @@ SUB_LIST+=	PYTHON_VERSION=${PYTHON_DEFAU
 		FREEVO_HOME=${FREEVO_HOME}
 SUB_FILES=	pkg-message pkg-deinstall
 
-USES=		twisted:web
-USE_PYTHON=	yes
-USE_PYDISTUTILS=	yes
+USES=		python twisted:web
+USE_PYTHON=	distutils noegginfo
 PYDISTUTILS_INSTALLNOSINGLE=	yes
-PYDISTUTILS_NOEGGINFO=	yes
 PYDISTUTILS_SETUP=	${PYSETUP}
 
 PLIST_SUB=	PYDISTUTILS_EGGINFO=${PYDISTUTILS_EGGINFO}

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 16:22:33 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 825C5165;
 Mon,  6 Oct 2014 16:22:33 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 6E86D387;
 Mon,  6 Oct 2014 16:22:33 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96GMXH5071647;
 Mon, 6 Oct 2014 16:22:33 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96GMXBA071646;
 Mon, 6 Oct 2014 16:22:33 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061622.s96GMXBA071646@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 16:22:33 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370190 - head/multimedia/openshot
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 16:22:33 -0000

Author: wg
Date: Mon Oct  6 16:22:32 2014
New Revision: 370190
URL: https://svnweb.freebsd.org/changeset/ports/370190
QAT: https://qat.redports.org/buildarchive/r370190/

Log:
  multimedia/openshot: switch from py-imaging to py-pillow
  
  - USES python
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Modified:
  head/multimedia/openshot/Makefile

Modified: head/multimedia/openshot/Makefile
==============================================================================
--- head/multimedia/openshot/Makefile	Mon Oct  6 15:46:36 2014	(r370189)
+++ head/multimedia/openshot/Makefile	Mon Oct  6 16:22:32 2014	(r370190)
@@ -3,7 +3,7 @@
 
 PORTNAME=	openshot
 PORTVERSION=	1.4.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	multimedia
 MASTER_SITES=	http://launchpad.net/openshot/${PORTVERSION:C/\.[0-9]+$//}/${PORTVERSION}/+download/
 
@@ -16,16 +16,15 @@ RUN_DEPENDS=	ffmpeg:${PORTSDIR}/multimed
 		frei0r-plugins>=0:${PORTSDIR}/graphics/frei0r-plugins \
 		${PYTHON_PKGNAMEPREFIX}goocanvas>=0:${PORTSDIR}/graphics/py-goocanvas \
 		${PYTHON_PKGNAMEPREFIX}httplib2>=0:${PORTSDIR}/www/py-httplib2 \
-		${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging \
+		${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow \
 		${PYTHON_PKGNAMEPREFIX}mlt>=0:${PORTSDIR}/multimedia/py-mlt \
 		${PYTHON_PKGNAMEPREFIX}xdg>=0:${PORTSDIR}/devel/py-xdg \
 		scrollkeeper-install:${PORTSDIR}/textproc/rarian \
 		sox:${PORTSDIR}/audio/sox
 
 USE_GNOME=	pygtk2
-USE_PYTHON=	2
-USE_PYDISTUTILS=yes
-USES=		desktop-file-utils gettext shared-mime-info
+USE_PYTHON=	distutils
+USES=		desktop-file-utils gettext python:2 shared-mime-info
 INSTALLS_OMF=	yes
 
 post-patch:

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 16:28:09 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 85DB72F2;
 Mon,  6 Oct 2014 16:28:09 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 71F0C3EB;
 Mon,  6 Oct 2014 16:28:09 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96GS9GJ072405;
 Mon, 6 Oct 2014 16:28:09 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96GS9WJ072404;
 Mon, 6 Oct 2014 16:28:09 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061628.s96GS9WJ072404@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 16:28:09 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370191 - head/multimedia/plexhometheater
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 16:28:09 -0000

Author: wg
Date: Mon Oct  6 16:28:08 2014
New Revision: 370191
URL: https://svnweb.freebsd.org/changeset/ports/370191
QAT: https://qat.redports.org/buildarchive/r370191/

Log:
  multimedia/plexhometheater: switch from py-imaging to py-pillow
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Modified:
  head/multimedia/plexhometheater/Makefile

Modified: head/multimedia/plexhometheater/Makefile
==============================================================================
--- head/multimedia/plexhometheater/Makefile	Mon Oct  6 16:22:32 2014	(r370190)
+++ head/multimedia/plexhometheater/Makefile	Mon Oct  6 16:28:08 2014	(r370191)
@@ -2,7 +2,7 @@
 
 PORTNAME=	plexhometheater
 PORTVERSION=	1.2.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	multimedia
 
 MAINTAINER=	woodsb02@gmail.com
@@ -60,7 +60,7 @@ LIB_DEPENDS=	libass.so:${PORTSDIR}/multi
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \
 		glxinfo:${PORTSDIR}/graphics/mesa-demos \
-		${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \
+		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
 		xdpyinfo:${PORTSDIR}/x11/xdpyinfo
 
 USE_GITHUB=	yes

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 16:53:35 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id B9F34BE4;
 Mon,  6 Oct 2014 16:53:35 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A643C906;
 Mon,  6 Oct 2014 16:53:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96GrZCT085787;
 Mon, 6 Oct 2014 16:53:35 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96GrZ1T085786;
 Mon, 6 Oct 2014 16:53:35 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061653.s96GrZ1T085786@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 16:53:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370192 - head/multimedia/xbmc
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 16:53:35 -0000

Author: wg
Date: Mon Oct  6 16:53:34 2014
New Revision: 370192
URL: https://svnweb.freebsd.org/changeset/ports/370192
QAT: https://qat.redports.org/buildarchive/r370192/

Log:
  multimedia/xbmc: switch from py-imaging to py-pillow
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Modified:
  head/multimedia/xbmc/Makefile

Modified: head/multimedia/xbmc/Makefile
==============================================================================
--- head/multimedia/xbmc/Makefile	Mon Oct  6 16:28:08 2014	(r370191)
+++ head/multimedia/xbmc/Makefile	Mon Oct  6 16:53:34 2014	(r370192)
@@ -2,7 +2,7 @@
 
 PORTNAME=	xbmc
 DISTVERSION=	13.2
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	multimedia
 MASTER_SITES=	http://mirrors.xbmc.org/releases/source/
 
@@ -49,7 +49,7 @@ LIB_DEPENDS=	libass.so:${PORTSDIR}/multi
 		libyajl.so:${PORTSDIR}/devel/yajl
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \
 		glxinfo:${PORTSDIR}/graphics/mesa-demos \
-		${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \
+		${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
 		xdpyinfo:${PORTSDIR}/x11/xdpyinfo
 
 USES=		gmake iconv:wchar_t libtool:build pkgconfig python:2

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 17:02:33 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BC83DF71;
 Mon,  6 Oct 2014 17:02:33 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 8E9D19FC;
 Mon,  6 Oct 2014 17:02:33 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96H2XbS090590;
 Mon, 6 Oct 2014 17:02:33 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96H2Wfx090586;
 Mon, 6 Oct 2014 17:02:32 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061702.s96H2Wfx090586@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 17:02:32 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370193 - in head/net/tucan: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 17:02:33 -0000

Author: wg
Date: Mon Oct  6 17:02:32 2014
New Revision: 370193
URL: https://svnweb.freebsd.org/changeset/ports/370193
QAT: https://qat.redports.org/buildarchive/r370193/

Log:
  net/tucan: switch from py-imaging to py-pillow
  
  - USES python
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Added:
  head/net/tucan/files/patch-core__dependencies.py   (contents, props changed)
  head/net/tucan/files/patch-core__tesseract.py   (contents, props changed)
Modified:
  head/net/tucan/Makefile

Modified: head/net/tucan/Makefile
==============================================================================
--- head/net/tucan/Makefile	Mon Oct  6 16:53:34 2014	(r370192)
+++ head/net/tucan/Makefile	Mon Oct  6 17:02:32 2014	(r370193)
@@ -3,7 +3,7 @@
 
 PORTNAME=	tucan
 PORTVERSION=	0.3.10
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net
 MASTER_SITES=	http://forja.rediris.es/frs/download.php/2051/ \
 		http://build-tucan-doc.googlecode.com/files/
@@ -11,14 +11,13 @@ MASTER_SITES=	http://forja.rediris.es/fr
 MAINTAINER=	gustau.perez@gmail.com
 COMMENT=	Tucan Manager aids file-sharing with 1-click hosters
 
-RUN_DEPENDS=	${LOCALBASE}/bin/pilconvert.py:${PORTSDIR}/graphics/py-imaging \
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
 		${LOCALBASE}/bin/cntraining:${PORTSDIR}/graphics/tesseract
 
 NO_BUILD=	yes
 USE_GNOME=	pygtk2 librsvg2
-USE_PYTHON=	yes
 
-USES=		gettext
+USES=		gettext python
 
 post-patch:
 	${REINPLACE_CMD} -Ee 's|#! /usr/bin/env python|#! ${PYTHON_CMD}|' ${WRKSRC}/tucan.py

Added: head/net/tucan/files/patch-core__dependencies.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/tucan/files/patch-core__dependencies.py	Mon Oct  6 17:02:32 2014	(r370193)
@@ -0,0 +1,11 @@
+--- core/dependencies.py.orig	2014-10-06 16:41:03 UTC
++++ core/dependencies.py
+@@ -55,7 +55,7 @@
+ 		""""""
+ 		self.checked[cons.DEPENDENCY_TESSERACT] = None
+ 		try:
+-			import Image
++			from PIL import Image
+ 		except:
+ 			message = "PIL not found."
+ 			self.checked[cons.DEPENDENCY_TESSERACT] = message

Added: head/net/tucan/files/patch-core__tesseract.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/tucan/files/patch-core__tesseract.py	Mon Oct  6 17:02:32 2014	(r370193)
@@ -0,0 +1,15 @@
+--- core/tesseract.py.orig	2014-10-06 16:41:31 UTC
++++ core/tesseract.py
+@@ -26,9 +26,9 @@
+ import subprocess
+ import tempfile
+ 
+-import ImageFile
+-import Image
+-import TiffImagePlugin
++from PIL import ImageFile
++from PIL import Image
++from PIL import TiffImagePlugin
+ 
+ import cons
+ 

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 17:06:14 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 44D8D291;
 Mon,  6 Oct 2014 17:06:14 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 30D51A4B;
 Mon,  6 Oct 2014 17:06:14 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96H6Ea8091273;
 Mon, 6 Oct 2014 17:06:14 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96H6EHA091272;
 Mon, 6 Oct 2014 17:06:14 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061706.s96H6EHA091272@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 17:06:14 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370194 - head/editors/emacs-nox11
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 17:06:14 -0000

Author: bapt
Date: Mon Oct  6 17:06:13 2014
New Revision: 370194
URL: https://svnweb.freebsd.org/changeset/ports/370194
QAT: https://qat.redports.org/buildarchive/r370194/

Log:
  Propagate the bump of emacs portrevision to notice the plist change

Modified:
  head/editors/emacs-nox11/Makefile

Modified: head/editors/emacs-nox11/Makefile
==============================================================================
--- head/editors/emacs-nox11/Makefile	Mon Oct  6 17:02:32 2014	(r370193)
+++ head/editors/emacs-nox11/Makefile	Mon Oct  6 17:06:13 2014	(r370194)
@@ -3,7 +3,7 @@
 
 PKGNAMESUFFIX=	-nox11
 
-PORTREVISION=	13
+PORTREVISION=	14
 
 OPTIONS_EXCLUDE=GCONF GIF JPEG OTF M17N PNG SVG TIFF SYNC_INPUT GTK2 GTK3 \
 		SCROLLBARS XFT XIM XPM MAGICK GSETTINGS X11 CANNA \

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 17:40:45 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id E8466CE7;
 Mon,  6 Oct 2014 17:40:44 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id C9569E59;
 Mon,  6 Oct 2014 17:40:44 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Heief007030;
 Mon, 6 Oct 2014 17:40:44 GMT (envelope-from antoine@FreeBSD.org)
Received: (from antoine@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96HeiHa007028;
 Mon, 6 Oct 2014 17:40:44 GMT (envelope-from antoine@FreeBSD.org)
Message-Id: <201410061740.s96HeiHa007028@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: antoine set sender to
 antoine@FreeBSD.org using -f
From: Antoine Brodin 
Date: Mon, 6 Oct 2014 17:40:44 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370195 - head/devel/libsigrokdecode
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 17:40:45 -0000

Author: antoine
Date: Mon Oct  6 17:40:43 2014
New Revision: 370195
URL: https://svnweb.freebsd.org/changeset/ports/370195
QAT: https://qat.redports.org/buildarchive/r370195/

Log:
  Unbreak on head and 10.1

Modified:
  head/devel/libsigrokdecode/Makefile
  head/devel/libsigrokdecode/pkg-plist

Modified: head/devel/libsigrokdecode/Makefile
==============================================================================
--- head/devel/libsigrokdecode/Makefile	Mon Oct  6 17:06:13 2014	(r370194)
+++ head/devel/libsigrokdecode/Makefile	Mon Oct  6 17:40:43 2014	(r370195)
@@ -11,17 +11,18 @@ COMMENT=	Framework for hardware logic an
 
 LICENSE=	GPLv3
 
-USE_PYTHON=	3
 GNU_CONFIGURE=	yes
 USE_GNOME=	glib20
-USES=		gmake pathfix libtool pkgconfig
+USES=		gmake libtool pathfix pkgconfig python:3
 MAKE_JOBS_UNSAFE=	yes
 USE_LDCONFIG=	yes
+INSTALL_TARGET=	install-strip
+
+.include 
 
 # Workaround for libusb not knowing LIBUSB_CLASS_APPLICATION
+.if (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100029) || (${OSVERSION} < 1000715)
 CFLAGS+=	-DLIBUSB_CLASS_APPLICATION=0xfe
+.endif
 
-post-install:
-	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsigrokdecode.so
-
-.include 
+.include 

Modified: head/devel/libsigrokdecode/pkg-plist
==============================================================================
--- head/devel/libsigrokdecode/pkg-plist	Mon Oct  6 17:06:13 2014	(r370194)
+++ head/devel/libsigrokdecode/pkg-plist	Mon Oct  6 17:40:43 2014	(r370195)
@@ -82,42 +82,3 @@ libdata/pkgconfig/libsigrokdecode.pc
 %%DATADIR%%/decoders/z80/__init__.py
 %%DATADIR%%/decoders/z80/pd.py
 %%DATADIR%%/decoders/z80/tables.py
-@dirrmtry include/libsigrokdecode
-@dirrmtry %%DATADIR%%/decoders/avr_isp
-@dirrmtry %%DATADIR%%/decoders/can
-@dirrmtry %%DATADIR%%/decoders/dcf77
-@dirrmtry %%DATADIR%%/decoders/ds1307
-@dirrmtry %%DATADIR%%/decoders/edid
-@dirrmtry %%DATADIR%%/decoders/guess_bitrate
-@dirrmtry %%DATADIR%%/decoders/i2c
-@dirrmtry %%DATADIR%%/decoders/i2cdemux
-@dirrmtry %%DATADIR%%/decoders/i2cfilter
-@dirrmtry %%DATADIR%%/decoders/i2s
-@dirrmtry %%DATADIR%%/decoders/ir_nec
-@dirrmtry %%DATADIR%%/decoders/ir_rc5
-@dirrmtry %%DATADIR%%/decoders/jtag
-@dirrmtry %%DATADIR%%/decoders/jtag_stm32
-@dirrmtry %%DATADIR%%/decoders/lm75
-@dirrmtry %%DATADIR%%/decoders/lpc
-@dirrmtry %%DATADIR%%/decoders/maxim_ds28ea00
-@dirrmtry %%DATADIR%%/decoders/midi
-@dirrmtry %%DATADIR%%/decoders/mlx90614
-@dirrmtry %%DATADIR%%/decoders/mx25lxx05d
-@dirrmtry %%DATADIR%%/decoders/mxc6225xu
-@dirrmtry %%DATADIR%%/decoders/nunchuk
-@dirrmtry %%DATADIR%%/decoders/onewire_link
-@dirrmtry %%DATADIR%%/decoders/onewire_network
-@dirrmtry %%DATADIR%%/decoders/pan1321
-@dirrmtry %%DATADIR%%/decoders/parallel
-@dirrmtry %%DATADIR%%/decoders/rgb_led_spi
-@dirrmtry %%DATADIR%%/decoders/rtc8564
-@dirrmtry %%DATADIR%%/decoders/sdcard_spi
-@dirrmtry %%DATADIR%%/decoders/spi
-@dirrmtry %%DATADIR%%/decoders/tlc5620
-@dirrmtry %%DATADIR%%/decoders/uart
-@dirrmtry %%DATADIR%%/decoders/usb_packet
-@dirrmtry %%DATADIR%%/decoders/usb_signalling
-@dirrmtry %%DATADIR%%/decoders/xfp
-@dirrmtry %%DATADIR%%/decoders/z80
-@dirrmtry %%DATADIR%%/decoders
-@dirrmtry %%DATADIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 17:53:26 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 0CAAEF2;
 Mon,  6 Oct 2014 17:53:26 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id ED6DEF8C;
 Mon,  6 Oct 2014 17:53:25 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96HrPOg014785;
 Mon, 6 Oct 2014 17:53:25 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96HrPYx014784;
 Mon, 6 Oct 2014 17:53:25 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061753.s96HrPYx014784@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 17:53:25 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370196 - head/print/scribus
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 17:53:26 -0000

Author: wg
Date: Mon Oct  6 17:53:25 2014
New Revision: 370196
URL: https://svnweb.freebsd.org/changeset/ports/370196
QAT: https://qat.redports.org/buildarchive/r370196/

Log:
  print/scribus: switch from py-imaging to py-pillow
  
  - USES python
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Modified:
  head/print/scribus/Makefile

Modified: head/print/scribus/Makefile
==============================================================================
--- head/print/scribus/Makefile	Mon Oct  6 17:40:43 2014	(r370195)
+++ head/print/scribus/Makefile	Mon Oct  6 17:53:25 2014	(r370196)
@@ -3,7 +3,7 @@
 
 PORTNAME=	scribus
 PORTVERSION=	1.4.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	print editors
 MASTER_SITES=	SF \
 		http://www.scribus.net/downloads/${PORTVERSION}/
@@ -25,13 +25,12 @@ LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/grap
 		libexecinfo.so:${PORTSDIR}/devel/libexecinfo \
 		libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \
-		${PYTHON_SITELIBDIR}/PIL/_imaging.so:${PORTSDIR}/graphics/py-imaging
+		${PYTHON_SITELIBDIR}/PIL/_imaging.so:${PORTSDIR}/graphics/py-pillow
 
 USE_QT4=	gui linguist_build moc_build qmake_build rcc_build uic_build xml network
 USE_GNOME=	libartlgpl2 libxml2
 USE_GHOSTSCRIPT_RUN=	yes
-USE_PYTHON=	yes
-USES=		cmake desktop-file-utils pkgconfig shared-mime-info tar:xz
+USES=		cmake desktop-file-utils pkgconfig python shared-mime-info tar:xz
 USE_LDCONFIG=	yes
 
 CMAKE_ARGS+=	-DWANT_HUNSPELL=YES -Wno-ferror-limit

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 17:53:54 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id AC6D51D8;
 Mon,  6 Oct 2014 17:53:54 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 98BEDF95;
 Mon,  6 Oct 2014 17:53:54 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96HrscP014924;
 Mon, 6 Oct 2014 17:53:54 GMT (envelope-from wg@FreeBSD.org)
Received: (from wg@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96HrskT014923;
 Mon, 6 Oct 2014 17:53:54 GMT (envelope-from wg@FreeBSD.org)
Message-Id: <201410061753.s96HrskT014923@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org
 using -f
From: William Grzybowski 
Date: Mon, 6 Oct 2014 17:53:54 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370197 - head/print/pkpgcounter
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 17:53:54 -0000

Author: wg
Date: Mon Oct  6 17:53:53 2014
New Revision: 370197
URL: https://svnweb.freebsd.org/changeset/ports/370197
QAT: https://qat.redports.org/buildarchive/r370197/

Log:
  print/pkpgcounter: switch from py-imaging to py-pillow
  
  - USES python
  
  With hat:	python
  Approved by:	portmgr (bdrewery, implicit)

Modified:
  head/print/pkpgcounter/Makefile

Modified: head/print/pkpgcounter/Makefile
==============================================================================
--- head/print/pkpgcounter/Makefile	Mon Oct  6 17:53:25 2014	(r370196)
+++ head/print/pkpgcounter/Makefile	Mon Oct  6 17:53:53 2014	(r370197)
@@ -3,21 +3,21 @@
 
 PORTNAME=	pkpgcounter
 PORTVERSION=	3.50
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	print python
 MASTER_SITES=	http://www.pykota.com/software/pkpgcounter/download/tarballs/
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	Count pages and ink coverage percent
 
-BUILD_DEPENDS=	${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USE_PYTHON=	yes
-USE_PYDISTUTILS=	yes
+USES=		python
+USE_PYTHON=	distutils
 PORTDOCS=	README COPYING BUGS CREDITS NEWS
 OPTIONS_DEFINE=	DOCS
 

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:03:12 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 05E0B4BA;
 Mon,  6 Oct 2014 18:03:12 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id E63AF132;
 Mon,  6 Oct 2014 18:03:11 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96I3B70019702;
 Mon, 6 Oct 2014 18:03:11 GMT (envelope-from riggs@FreeBSD.org)
Received: (from riggs@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96I3BK1019700;
 Mon, 6 Oct 2014 18:03:11 GMT (envelope-from riggs@FreeBSD.org)
Message-Id: <201410061803.s96I3BK1019700@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: riggs set sender to
 riggs@FreeBSD.org using -f
From: Thomas Zander 
Date: Mon, 6 Oct 2014 18:03:11 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370198 - head/devel/allegro
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:03:12 -0000

Author: riggs
Date: Mon Oct  6 18:03:10 2014
New Revision: 370198
URL: https://svnweb.freebsd.org/changeset/ports/370198
QAT: https://qat.redports.org/buildarchive/r370198/

Log:
  - Fix build when DOCS option is deselected
  
  While on it:
  - Remove @dirrm entries from pkg-plist
  
  PR:		192491
  Submitted by:	arcade@b1t.name
  Approved by:	maintainer timeout
  MFH:		2014Q4

Modified:
  head/devel/allegro/Makefile
  head/devel/allegro/pkg-plist

Modified: head/devel/allegro/Makefile
==============================================================================
--- head/devel/allegro/Makefile	Mon Oct  6 17:53:53 2014	(r370197)
+++ head/devel/allegro/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
@@ -88,10 +88,6 @@ post-patch:
 	@${REINPLACE_CMD} -e 's|jack_client = jack_client_new(jack_client_name);|jack_client = jack_client_open(jack_client_name, (jack_options_t)0, NULL);|' \
 		${WRKSRC}/src/unix/jack.c
 .endif
-.if ! ${PORT_OPTIONS:MDOCS}
-	@${REINPLACE_CMD} -e 's|add_subdirectory(docs)|#add_subdirectory(docs)|' \
-		${WRKSRC}/CMakeLists.txt
-.endif
 
 post-install:
 	@${INSTALL_MAN} ${WRKSRC}/docs/man/*.3 ${STAGEDIR}${MAN3PREFIX}/man/man3/

Modified: head/devel/allegro/pkg-plist
==============================================================================
--- head/devel/allegro/pkg-plist	Mon Oct  6 17:53:53 2014	(r370197)
+++ head/devel/allegro/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
@@ -1060,11 +1060,3 @@ man/man3/xor_mode.3.gz
 man/man3/xwin_set_window_name.3.gz
 %%DEMOS%%%%EXAMPLES%%share/pixmaps/shooter.png
 %%DEMOS%%%%EXAMPLES%%share/pixmaps/skater.png
-@dirrm lib/allegro/%%SHLIB_VER%%
-@dirrm lib/allegro
-@dirrm include/allegrogl/GLext
-@dirrm include/allegrogl
-@dirrm include/allegro/platform
-@dirrm include/allegro/internal
-@dirrm include/allegro/inline
-@dirrm include/allegro

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:13:19 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 6BBB1864;
 Mon,  6 Oct 2014 18:13:19 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 5769524C;
 Mon,  6 Oct 2014 18:13:19 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96IDJ4r025068;
 Mon, 6 Oct 2014 18:13:19 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96IDG7X025052;
 Mon, 6 Oct 2014 18:13:16 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061813.s96IDG7X025052@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 18:13:16 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370199 - in head/lang: gcc gcc46 gcc47 gcc48 gcc49 gcc5
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:13:19 -0000

Author: bapt
Date: Mon Oct  6 18:13:15 2014
New Revision: 370199
URL: https://svnweb.freebsd.org/changeset/ports/370199
QAT: https://qat.redports.org/buildarchive/r370199/

Log:
  Comment out info/dir files
  indexinfo is taking care of generating it at package installation time
  
  Reported by:	peter

Modified:
  head/lang/gcc/Makefile
  head/lang/gcc/pkg-plist
  head/lang/gcc46/Makefile
  head/lang/gcc46/pkg-plist
  head/lang/gcc47/Makefile
  head/lang/gcc47/pkg-plist
  head/lang/gcc48/Makefile
  head/lang/gcc48/pkg-plist
  head/lang/gcc49/Makefile
  head/lang/gcc49/pkg-plist
  head/lang/gcc5/Makefile
  head/lang/gcc5/pkg-plist

Modified: head/lang/gcc/Makefile
==============================================================================
--- head/lang/gcc/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gcc
 PORTVERSION=	4.8.3
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}
 MASTER_SITE_SUBDIR=	releases/gcc-${DISTVERSION}

Modified: head/lang/gcc/pkg-plist
==============================================================================
--- head/lang/gcc/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
@@ -15,7 +15,7 @@ bin/gcc-nm%%SUFFIX%%
 bin/gcc-ranlib%%SUFFIX%%
 bin/gcov%%SUFFIX%%
 bin/gfortran%%SUFFIX%%
-info/gcc%%SUFFIX%%/dir
+@comment info/gcc%%SUFFIX%%/dir
 man/man1/cpp%%SUFFIX%%.1.gz
 man/man1/g++%%SUFFIX%%.1.gz
 man/man1/gcc%%SUFFIX%%.1.gz

Modified: head/lang/gcc46/Makefile
==============================================================================
--- head/lang/gcc46/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc46/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gcc46
 PORTVERSION=	4.6.4
-PORTREVISION=	3
+PORTREVISION=	4
 PORTEPOCH=	1
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}

Modified: head/lang/gcc46/pkg-plist
==============================================================================
--- head/lang/gcc46/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc46/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
@@ -9,7 +9,7 @@ bin/g++%%SUFFIX%%
 bin/gcc%%SUFFIX%%
 bin/gcov%%SUFFIX%%
 bin/gfortran%%SUFFIX%%
-info/gcc%%SUFFIX%%/dir
+@comment info/gcc%%SUFFIX%%/dir
 man/man1/cpp%%SUFFIX%%.1.gz
 man/man1/g++%%SUFFIX%%.1.gz
 man/man1/gcc%%SUFFIX%%.1.gz

Modified: head/lang/gcc47/Makefile
==============================================================================
--- head/lang/gcc47/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc47/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
@@ -3,7 +3,7 @@
 
 PORTNAME=	gcc47
 PORTVERSION=	4.7.4
-PORTREVISION=	1
+PORTREVISION=	2
 PORTEPOCH=	1
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}

Modified: head/lang/gcc47/pkg-plist
==============================================================================
--- head/lang/gcc47/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc47/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
@@ -15,7 +15,7 @@ bin/gcc-nm%%SUFFIX%%
 bin/gcc-ranlib%%SUFFIX%%
 bin/gcov%%SUFFIX%%
 bin/gfortran%%SUFFIX%%
-info/gcc%%SUFFIX%%/dir
+@comment info/gcc%%SUFFIX%%/dir
 man/man1/cpp%%SUFFIX%%.1.gz
 man/man1/g++%%SUFFIX%%.1.gz
 man/man1/gcc%%SUFFIX%%.1.gz

Modified: head/lang/gcc48/Makefile
==============================================================================
--- head/lang/gcc48/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc48/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
@@ -3,6 +3,7 @@
 
 PORTNAME=	gcc48
 PORTVERSION=	4.8.4.s20140918
+PORTREVISION=	1
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}
 MASTER_SITE_SUBDIR=	snapshots/${DISTVERSION}

Modified: head/lang/gcc48/pkg-plist
==============================================================================
--- head/lang/gcc48/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc48/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
@@ -15,7 +15,7 @@ bin/gcc-nm%%SUFFIX%%
 bin/gcc-ranlib%%SUFFIX%%
 bin/gcov%%SUFFIX%%
 bin/gfortran%%SUFFIX%%
-info/gcc%%SUFFIX%%/dir
+@comment info/gcc%%SUFFIX%%/dir
 man/man1/cpp%%SUFFIX%%.1.gz
 man/man1/g++%%SUFFIX%%.1.gz
 man/man1/gcc%%SUFFIX%%.1.gz

Modified: head/lang/gcc49/Makefile
==============================================================================
--- head/lang/gcc49/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc49/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
@@ -3,6 +3,7 @@
 
 PORTNAME=	gcc49
 PORTVERSION=	4.9.2.s20140924
+PORTREVISION=	1
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}
 MASTER_SITE_SUBDIR=	snapshots/${DISTVERSION}

Modified: head/lang/gcc49/pkg-plist
==============================================================================
--- head/lang/gcc49/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc49/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
@@ -15,7 +15,7 @@ bin/gcc-nm%%SUFFIX%%
 bin/gcc-ranlib%%SUFFIX%%
 bin/gcov%%SUFFIX%%
 bin/gfortran%%SUFFIX%%
-info/gcc%%SUFFIX%%/dir
+@comment info/gcc%%SUFFIX%%/dir
 man/man1/cpp%%SUFFIX%%.1.gz
 man/man1/g++%%SUFFIX%%.1.gz
 man/man1/gcc%%SUFFIX%%.1.gz

Modified: head/lang/gcc5/Makefile
==============================================================================
--- head/lang/gcc5/Makefile	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc5/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
@@ -3,6 +3,7 @@
 
 PORTNAME=	gcc5
 PORTVERSION=	5.0.s20140921
+PORTREVISION=	1
 CATEGORIES=	lang java
 MASTER_SITES=	${MASTER_SITE_GCC}
 MASTER_SITE_SUBDIR=	snapshots/${DISTVERSION}

Modified: head/lang/gcc5/pkg-plist
==============================================================================
--- head/lang/gcc5/pkg-plist	Mon Oct  6 18:03:10 2014	(r370198)
+++ head/lang/gcc5/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
@@ -16,7 +16,7 @@ bin/gcc-ranlib%%SUFFIX%%
 bin/gcov%%SUFFIX%%
 bin/gcov-tool%%SUFFIX%%
 bin/gfortran%%SUFFIX%%
-info/gcc%%SUFFIX%%/dir
+@comment info/gcc%%SUFFIX%%/dir
 man/man1/cpp%%SUFFIX%%.1.gz
 man/man1/g++%%SUFFIX%%.1.gz
 man/man1/gcc%%SUFFIX%%.1.gz

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:17:26 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 8422BD51;
 Mon,  6 Oct 2014 18:17:26 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 70A4F2C5;
 Mon,  6 Oct 2014 18:17:26 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96IHQbJ025996;
 Mon, 6 Oct 2014 18:17:26 GMT (envelope-from pi@FreeBSD.org)
Received: (from pi@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96IHP7U025992;
 Mon, 6 Oct 2014 18:17:25 GMT (envelope-from pi@FreeBSD.org)
Message-Id: <201410061817.s96IHP7U025992@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org
 using -f
From: Kurt Jaeger 
Date: Mon, 6 Oct 2014 18:17:25 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370200 - head/net-mgmt/argus3
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:17:26 -0000

Author: pi
Date: Mon Oct  6 18:17:25 2014
New Revision: 370200
URL: https://svnweb.freebsd.org/changeset/ports/370200
QAT: https://qat.redports.org/buildarchive/r370200/

Log:
  net-mgmt/argus3: 3.0.6.1 -> 3.0.8
  
  Changes since approx. 2012-06-09:
  
  Tue Jul  8 14:51:13 EDT 2014
  Mods for packaging for ubuntu, redhat, etc....
  Added debian and pkg directories, mods to spec file.
  
  Tue Jun 17 10:42:07 EDT 2014
  Update and Fixes for remote argus data filter support
  
  Mon Jun  9 20:18:12 EDT 2014
  Changes for netflow packet parsing to fix netflow in clients.
  
  Mon May 12 15:46:24 EDT 2014
  Fixes for wild metric counts in new flow data.
  Update filter logic to be consistent with client filters.
  Modifications for timeout issues when in non-select polling.
  
  Wed Dec 11 16:50:25 EST 2013
  Fix for source id type assignement from commandline
  Change for compiler timeout values
  
  Mon Nov 25 12:11:47 EST 2013
  Fixes for ARP direction processing
  Back out of duplicate packet tracking logic
  
  Thu Oct 17 15:45:31 EDT 2013
  Mods for duplicate packet reporting
  
  Thu Aug 22 08:39:26 EDT 2013
  Modify configure.ac for pcap_dump_flush for older libpcaps
  
  Mon Jul 22 16:09:35 EDT 2013
  Modify timeouts within "nonselectable" packet processing loop.
  
  Tue Jul  9 22:24:01 EDT 2013
  Use VID for the VLAN identifer for the key.
  
  Tue Jun 18 23:39:12 EDT 2013
  Fix syslog while daemonized
  
  Tue Jun 11 16:42:18 EDT 2013
  Remove nanosleep() to improve performance.
  
  Thu Apr  4 16:38:50 EDT 2013
  Major addtions for SDN tracking.  New Flow model specifications in argus.conf.
  
  Wed Mar  6 16:33:47 EST 2013
  Fixes for solaris port, to avoid scheduling problems with record timeouts
  
  Fri Oct 19 13:14:13 EDT 2012
  Fix documentation in ./include/argus_def.h to get Cause and Vers in right order.
  
  Mon Oct  8 17:17:39 EDT 2012
  Fix for argus TCP state machine issue with very out of order
  SYN, SYN_ACK, RST volleys.
  
  Thu Jun 21 15:33:22 EDT 2012
  Fix for country code aggregation problem, where dst co would be zero'd out.
  
  Mon Jun 11 16:07:53 EDT 2012
  Fix for ArgusOutput deadlock, when congested.
  
  Mon Jun 09 08:21:16 EDT 2012
  Netflow V9 support transitioned and mostly integrated.
  Need more packet data.
  
  PR:		193566
  Submitted by:	Paul Schmehl  (maintainer)

Modified:
  head/net-mgmt/argus3/Makefile
  head/net-mgmt/argus3/distinfo
  head/net-mgmt/argus3/pkg-plist

Modified: head/net-mgmt/argus3/Makefile
==============================================================================
--- head/net-mgmt/argus3/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
+++ head/net-mgmt/argus3/Makefile	Mon Oct  6 18:17:25 2014	(r370200)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	argus
-PORTVERSION=	3.0.6.1
-PORTREVISION=	1
+PORTVERSION=	3.0.8
 CATEGORIES=	net-mgmt security
 MASTER_SITES=	http://qosient.com/argus/src/ \
 		ftp://qosient.com/pub/argus/src/

Modified: head/net-mgmt/argus3/distinfo
==============================================================================
--- head/net-mgmt/argus3/distinfo	Mon Oct  6 18:13:15 2014	(r370199)
+++ head/net-mgmt/argus3/distinfo	Mon Oct  6 18:17:25 2014	(r370200)
@@ -1,2 +1,2 @@
-SHA256 (argus-3.0.6.1.tar.gz) = ed991d8e12394a4f3d49adf007f82bafe615de4fd836f88c86d97fe7469cad12
-SIZE (argus-3.0.6.1.tar.gz) = 847095
+SHA256 (argus-3.0.8.tar.gz) = 335d889d288763487ad3545c09b944d7d6aa2538630d1fd72eea3704a57bf6e3
+SIZE (argus-3.0.8.tar.gz) = 1193140

Modified: head/net-mgmt/argus3/pkg-plist
==============================================================================
--- head/net-mgmt/argus3/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
+++ head/net-mgmt/argus3/pkg-plist	Mon Oct  6 18:17:25 2014	(r370200)
@@ -13,9 +13,9 @@ man/man8/argus.8.gz
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Startup/README
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/System/crontab
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/System/magic
-%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Archive
-%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Config
-%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Deployment
-%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Startup
-%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/System
-%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%
+%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Archive
+%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Config
+%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Deployment
+%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Startup
+%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/System
+%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:22:35 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 6CBBD127;
 Mon,  6 Oct 2014 18:22:35 +0000 (UTC)
Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com
 [IPv6:2a00:1450:400c:c05::234])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 89DD43C8;
 Mon,  6 Oct 2014 18:22:34 +0000 (UTC)
Received: by mail-wi0-f180.google.com with SMTP id em10so5553333wid.1
 for ; Mon, 06 Oct 2014 11:22:32 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=sender:date:from:to:cc:subject:message-id:references:mime-version
 :content-type:content-disposition:in-reply-to:user-agent;
 bh=+ZzlhQmNfA/veMz5tRLbOh+1tnmzKvHaCzpr8dH0wts=;
 b=kX7yYGYxMrG41iAUBfczhAbfq5WI1qA/qUsA1ulUJBXqieagyMQTLkPm0B5O49KQ0l
 WZ4EV6V9qADHsYormcFVgBen+tNOH0KvDpWa09Q7s8sZQKEY6X5m1VcS7NxSx2xXBWFu
 dEQHh0LaMtVE0t3dDufQtHfC86StAzMSd3+dHDXXRncCTZLI6JVtWzZSo+/r/eHo/o+C
 /JghkzDo9Q1A2Hqm1gD9trXYpX/qRFZ1Y58Zq87EzxL6wJRY+2CZTsNW3rlXnt0HEFAr
 V4vLA35EBjEEFgH5EOGSrnG7pQAjvvdxx8ZwiA5uDCA+OoYqCpWxseZQLdjdvuySkEm9
 rvCw==
X-Received: by 10.194.179.73 with SMTP id de9mr32033133wjc.87.1412619752806;
 Mon, 06 Oct 2014 11:22:32 -0700 (PDT)
Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1])
 by mx.google.com with ESMTPSA id lk6sm18086293wjb.26.2014.10.06.11.22.31
 for 
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 06 Oct 2014 11:22:31 -0700 (PDT)
Sender: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 20:22:29 +0200
From: Baptiste Daroussin 
To: Kurt Jaeger 
Subject: Re: svn commit: r370200 - head/net-mgmt/argus3
Message-ID: <20141006182228.GD37670@ivaldir.etoilebsd.net>
References: <201410061817.s96IHP7U025992@svn.freebsd.org>
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
 protocol="application/pgp-signature"; boundary="WBsA/oQW3eTA3LlM"
Content-Disposition: inline
In-Reply-To: <201410061817.s96IHP7U025992@svn.freebsd.org>
User-Agent: Mutt/1.5.23 (2014-03-12)
Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org,
 ports-committers@freebsd.org
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:22:35 -0000


--WBsA/oQW3eTA3LlM
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Mon, Oct 06, 2014 at 06:17:25PM +0000, Kurt Jaeger wrote:
> Author: pi
> Date: Mon Oct  6 18:17:25 2014
> New Revision: 370200
> URL: https://svnweb.freebsd.org/changeset/ports/370200
> QAT: https://qat.redports.org/buildarchive/r370200/
>=20
> Log:
>   net-mgmt/argus3: 3.0.6.1 -> 3.0.8
>  =20
>   Changes since approx. 2012-06-09:
>  =20
>   Tue Jul  8 14:51:13 EDT 2014
>   Mods for packaging for ubuntu, redhat, etc....
>   Added debian and pkg directories, mods to spec file.
>  =20
>   Tue Jun 17 10:42:07 EDT 2014
>   Update and Fixes for remote argus data filter support
>  =20
>   Mon Jun  9 20:18:12 EDT 2014
>   Changes for netflow packet parsing to fix netflow in clients.
>  =20
>   Mon May 12 15:46:24 EDT 2014
>   Fixes for wild metric counts in new flow data.
>   Update filter logic to be consistent with client filters.
>   Modifications for timeout issues when in non-select polling.
>  =20
>   Wed Dec 11 16:50:25 EST 2013
>   Fix for source id type assignement from commandline
>   Change for compiler timeout values
>  =20
>   Mon Nov 25 12:11:47 EST 2013
>   Fixes for ARP direction processing
>   Back out of duplicate packet tracking logic
>  =20
>   Thu Oct 17 15:45:31 EDT 2013
>   Mods for duplicate packet reporting
>  =20
>   Thu Aug 22 08:39:26 EDT 2013
>   Modify configure.ac for pcap_dump_flush for older libpcaps
>  =20
>   Mon Jul 22 16:09:35 EDT 2013
>   Modify timeouts within "nonselectable" packet processing loop.
>  =20
>   Tue Jul  9 22:24:01 EDT 2013
>   Use VID for the VLAN identifer for the key.
>  =20
>   Tue Jun 18 23:39:12 EDT 2013
>   Fix syslog while daemonized
>  =20
>   Tue Jun 11 16:42:18 EDT 2013
>   Remove nanosleep() to improve performance.
>  =20
>   Thu Apr  4 16:38:50 EDT 2013
>   Major addtions for SDN tracking.  New Flow model specifications in argu=
s.conf.
>  =20
>   Wed Mar  6 16:33:47 EST 2013
>   Fixes for solaris port, to avoid scheduling problems with record timeou=
ts
>  =20
>   Fri Oct 19 13:14:13 EDT 2012
>   Fix documentation in ./include/argus_def.h to get Cause and Vers in rig=
ht order.
>  =20
>   Mon Oct  8 17:17:39 EDT 2012
>   Fix for argus TCP state machine issue with very out of order
>   SYN, SYN_ACK, RST volleys.
>  =20
>   Thu Jun 21 15:33:22 EDT 2012
>   Fix for country code aggregation problem, where dst co would be zero'd =
out.
>  =20
>   Mon Jun 11 16:07:53 EDT 2012
>   Fix for ArgusOutput deadlock, when congested.
>  =20
>   Mon Jun 09 08:21:16 EDT 2012
>   Netflow V9 support transitioned and mostly integrated.
>   Need more packet data.
>  =20
>   PR:		193566
>   Submitted by:	Paul Schmehl  (maintainer)
>=20
> Modified:
>   head/net-mgmt/argus3/Makefile
>   head/net-mgmt/argus3/distinfo
>   head/net-mgmt/argus3/pkg-plist
>=20
> Modified: head/net-mgmt/argus3/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/net-mgmt/argus3/Makefile	Mon Oct  6 18:13:15 2014	(r370199)
> +++ head/net-mgmt/argus3/Makefile	Mon Oct  6 18:17:25 2014	(r370200)
> @@ -2,8 +2,7 @@
>  # $FreeBSD$
> =20
>  PORTNAME=3D	argus
> -PORTVERSION=3D	3.0.6.1
> -PORTREVISION=3D	1
> +PORTVERSION=3D	3.0.8
>  CATEGORIES=3D	net-mgmt security
>  MASTER_SITES=3D	http://qosient.com/argus/src/ \
>  		ftp://qosient.com/pub/argus/src/
>=20
> Modified: head/net-mgmt/argus3/distinfo
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/net-mgmt/argus3/distinfo	Mon Oct  6 18:13:15 2014	(r370199)
> +++ head/net-mgmt/argus3/distinfo	Mon Oct  6 18:17:25 2014	(r370200)
> @@ -1,2 +1,2 @@
> -SHA256 (argus-3.0.6.1.tar.gz) =3D ed991d8e12394a4f3d49adf007f82bafe615de=
4fd836f88c86d97fe7469cad12
> -SIZE (argus-3.0.6.1.tar.gz) =3D 847095
> +SHA256 (argus-3.0.8.tar.gz) =3D 335d889d288763487ad3545c09b944d7d6aa2538=
630d1fd72eea3704a57bf6e3
> +SIZE (argus-3.0.8.tar.gz) =3D 1193140
>=20
> Modified: head/net-mgmt/argus3/pkg-plist
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D
> --- head/net-mgmt/argus3/pkg-plist	Mon Oct  6 18:13:15 2014	(r370199)
> +++ head/net-mgmt/argus3/pkg-plist	Mon Oct  6 18:17:25 2014	(r370200)
> @@ -13,9 +13,9 @@ man/man8/argus.8.gz
>  %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Startup/README
>  %%PORTEXAMPLES%%%%EXAMPLESDIR%%/System/crontab
>  %%PORTEXAMPLES%%%%EXAMPLESDIR%%/System/magic
> -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Archive
> -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Config
> -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Deployment
> -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/Startup
> -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/System
> -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%
> +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Archive
> +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Config
> +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Deployment
> +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Startup
> +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/System
> +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%

Why all those @dir ? none are necessary here.

regards,
Bapt
>=20

--WBsA/oQW3eTA3LlM
Content-Type: application/pgp-signature

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iEYEARECAAYFAlQy3eQACgkQ8kTtMUmk6EwJ4wCdH8rmuyXuNFuSwJtskpNbXYpr
tQUAoLto9O4QuMNsDCHEIVaoPAwaOEgM
=I0bl
-----END PGP SIGNATURE-----

--WBsA/oQW3eTA3LlM--

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:23:49 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 4C04821B;
 Mon,  6 Oct 2014 18:23:49 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 1B4E13D8;
 Mon,  6 Oct 2014 18:23:49 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96INm0B030314;
 Mon, 6 Oct 2014 18:23:48 GMT (envelope-from pi@FreeBSD.org)
Received: (from pi@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96INmBv030308;
 Mon, 6 Oct 2014 18:23:48 GMT (envelope-from pi@FreeBSD.org)
Message-Id: <201410061823.s96INmBv030308@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org
 using -f
From: Kurt Jaeger 
Date: Mon, 6 Oct 2014 18:23:48 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370201 - head/net-mgmt/argus3-clients
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:23:49 -0000

Author: pi
Date: Mon Oct  6 18:23:47 2014
New Revision: 370201
URL: https://svnweb.freebsd.org/changeset/ports/370201
QAT: https://qat.redports.org/buildarchive/r370201/

Log:
  net-mgmt/argus3-clients: 3.0.6.2 -> 3.0.8
  
  Lots of changes since 2012.
  
  See
  http://resources.sei.cmu.edu/asset_files/Presentation/2014_017_001_90084.pdf
  for a presentation on the software.
  
  PR:		193567
  Submitted by:	Paul Schmehl  (maintainer)

Modified:
  head/net-mgmt/argus3-clients/Makefile
  head/net-mgmt/argus3-clients/distinfo
  head/net-mgmt/argus3-clients/pkg-plist

Modified: head/net-mgmt/argus3-clients/Makefile
==============================================================================
--- head/net-mgmt/argus3-clients/Makefile	Mon Oct  6 18:17:25 2014	(r370200)
+++ head/net-mgmt/argus3-clients/Makefile	Mon Oct  6 18:23:47 2014	(r370201)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	argus-clients
-PORTVERSION=	3.0.6.2
-PORTREVISION=	2
+PORTVERSION=	3.0.8
 CATEGORIES=	net-mgmt security
 MASTER_SITES=	http://qosient.com/argus/src/ \
 		ftp://qosient.com/pub/argus/src/

Modified: head/net-mgmt/argus3-clients/distinfo
==============================================================================
--- head/net-mgmt/argus3-clients/distinfo	Mon Oct  6 18:17:25 2014	(r370200)
+++ head/net-mgmt/argus3-clients/distinfo	Mon Oct  6 18:23:47 2014	(r370201)
@@ -1,2 +1,2 @@
-SHA256 (argus-clients-3.0.6.2.tar.gz) = f51d7c8d18fa2236f3fe3726deb3c0b8308c0a6ca767c6089811963da95330fc
-SIZE (argus-clients-3.0.6.2.tar.gz) = 2426454
+SHA256 (argus-clients-3.0.8.tar.gz) = aee8585d50959e00070a382f3121edfaa844a0a51dc0b73edf84c0f4eb8912c9
+SIZE (argus-clients-3.0.8.tar.gz) = 2627515

Modified: head/net-mgmt/argus3-clients/pkg-plist
==============================================================================
--- head/net-mgmt/argus3-clients/pkg-plist	Mon Oct  6 18:17:25 2014	(r370200)
+++ head/net-mgmt/argus3-clients/pkg-plist	Mon Oct  6 18:23:47 2014	(r370201)
@@ -50,6 +50,9 @@ man/man1/rapath.1.gz
 man/man1/rapolicy.1.gz
 man/man1/rasort.1.gz
 man/man1/rasplit.1.gz
+%%MYSQL%%man/man1/rasql.1.gz
+%%MYSQL%%man/man1/rasqlinsert.1.gz
+%%MYSQL%%man/man1/rasqltimeindex.1.gz
 man/man1/rastream.1.gz
 man/man1/rastrip.1.gz
 man/man5/racluster.5.gz
@@ -91,9 +94,9 @@ man/man8/radium.8.gz
 %%EXAMPLESDIR%%/Startup/radium.service
 %%EXAMPLESDIR%%/Startup/rasplit
 %%EXAMPLESDIR%%/System/magic
-@dirrm %%EXAMPLESDIR%%/System
-@dirrm %%EXAMPLESDIR%%/Startup
-@dirrm %%EXAMPLESDIR%%/Database
-@dirrm %%EXAMPLESDIR%%/Config
-@dirrm %%EXAMPLESDIR%%
+@dir %%EXAMPLESDIR%%/System
+@dir %%EXAMPLESDIR%%/Startup
+@dir %%EXAMPLESDIR%%/Database
+@dir %%EXAMPLESDIR%%/Config
+@dir %%EXAMPLESDIR%%
 %%PORTDOCS%%@dirrm %%DOCSDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:25:46 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id EF53C356;
 Mon,  6 Oct 2014 18:25:45 +0000 (UTC)
Received: from f10.opsec.eu (f10.opsec.eu [IPv6:2001:14f8:200:4::2])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id A890E3F8;
 Mon,  6 Oct 2014 18:25:45 +0000 (UTC)
Received: from pi by f10.opsec.eu with local (Exim 4.84 (FreeBSD))
 (envelope-from )
 id 1XbCya-0005fQ-Ih; Mon, 06 Oct 2014 20:25:40 +0200
Date: Mon, 6 Oct 2014 20:25:40 +0200
From: Kurt Jaeger 
To: Baptiste Daroussin 
Subject: Re: svn commit: r370200 - head/net-mgmt/argus3
Message-ID: <20141006182540.GC60143@f10.opsec.eu>
References: <201410061817.s96IHP7U025992@svn.freebsd.org>
 <20141006182228.GD37670@ivaldir.etoilebsd.net>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20141006182228.GD37670@ivaldir.etoilebsd.net>
Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org,
 Kurt Jaeger , ports-committers@freebsd.org
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:25:46 -0000

Hi!

> > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Archive
> > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Config
> > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Deployment
> > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Startup
> > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/System
> > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%
> 
> Why all those @dir ? none are necessary here.

Because the poudriere build log said:

pkg-static: Warning: @dirrm is deprecated please use @dir

So I changed it to @dir.

I was wondering as well 8-}

-- 
pi@FreeBSD.org         +49 171 3101372                6 years to go !

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:30:04 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id AB1704C6;
 Mon,  6 Oct 2014 18:30:04 +0000 (UTC)
Received: from mail-wg0-x22d.google.com (mail-wg0-x22d.google.com
 [IPv6:2a00:1450:400c:c00::22d])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id C5C9560C;
 Mon,  6 Oct 2014 18:30:03 +0000 (UTC)
Received: by mail-wg0-f45.google.com with SMTP id m15so7443114wgh.16
 for ; Mon, 06 Oct 2014 11:30:02 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=sender:date:from:to:cc:subject:message-id:references:mime-version
 :content-type:content-disposition:in-reply-to:user-agent;
 bh=TSIk8GssxiBaT0KF76CvFS4ZuMSsLXnM3D37Lv8VfBw=;
 b=ZU0YXCpuU9ejjzNcuRr1RntWSY8o84rfqf6/19WfKk1ahMpV9GCH4FzM3LmY9KcKWH
 Rc2OIu/FfgLmicKXMbuPMA4y3qf+Wmqk/5wZf2TMrVCaa0A6JaYGBxLIXRybcHwk9/Si
 dnsPepQ7/KjwDOl8QchkaFy0zzDm3ThBTb2ZipXt8LsIU47Tibg9MuUVl+RDH2k/0dt3
 BZY/gvXPVeBswFrya98D6dscJsUWJcgBv4+qlRKO4SablVtpG0UhssG3wFkOa8G/jzeB
 +XJwSNpcGhZEtB1VfNMctfGLoqF9a1v8R10dmKoFIB7W/xH5VoroZd0EtSPL9/P7VEBR
 H64g==
X-Received: by 10.180.91.164 with SMTP id cf4mr21300853wib.3.1412620201954;
 Mon, 06 Oct 2014 11:30:01 -0700 (PDT)
Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1])
 by mx.google.com with ESMTPSA id bi7sm12113596wib.17.2014.10.06.11.30.00
 for 
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 06 Oct 2014 11:30:00 -0700 (PDT)
Sender: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 20:29:59 +0200
From: Baptiste Daroussin 
To: Kurt Jaeger 
Subject: Re: svn commit: r370200 - head/net-mgmt/argus3
Message-ID: <20141006182958.GE37670@ivaldir.etoilebsd.net>
References: <201410061817.s96IHP7U025992@svn.freebsd.org>
 <20141006182228.GD37670@ivaldir.etoilebsd.net>
 <20141006182540.GC60143@f10.opsec.eu>
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
 protocol="application/pgp-signature"; boundary="65ImJOski3p8EhYV"
Content-Disposition: inline
In-Reply-To: <20141006182540.GC60143@f10.opsec.eu>
User-Agent: Mutt/1.5.23 (2014-03-12)
Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org,
 ports-committers@freebsd.org
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:30:04 -0000


--65ImJOski3p8EhYV
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Mon, Oct 06, 2014 at 08:25:40PM +0200, Kurt Jaeger wrote:
> Hi!
>=20
> > > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Archive
> > > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Config
> > > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Deployment
> > > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Startup
> > > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/System
> > > +%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%
> >=20
> > Why all those @dir ? none are necessary here.
>=20
> Because the poudriere build log said:
>=20
> pkg-static: Warning: @dirrm is deprecated please use @dir
>=20
> So I changed it to @dir.
>=20
> I was wondering as well 8-}
>=20

See section 7.6.7.9 of the handbook (it is up to date) and/or
CHANGES in the root of the ports checkout, the addition from 20140922.

Best regards,
Bapt

--65ImJOski3p8EhYV
Content-Type: application/pgp-signature

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iEYEARECAAYFAlQy36YACgkQ8kTtMUmk6EzkHACgsLB+j8mbmwPHNgyfQiFG/BUr
N3QAnA5xtS9cu7oyE6gxxRobtqvJQ8lq
=QcSt
-----END PGP SIGNATURE-----

--65ImJOski3p8EhYV--

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:41:31 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 4DA117E0;
 Mon,  6 Oct 2014 18:41:31 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 39BB0808;
 Mon,  6 Oct 2014 18:41:31 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96IfVJk038556;
 Mon, 6 Oct 2014 18:41:31 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96IfUSv038498;
 Mon, 6 Oct 2014 18:41:30 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061841.s96IfUSv038498@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 18:41:30 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370202 - in head/devel/gmake-lite: . files
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:41:31 -0000

Author: bapt
Date: Mon Oct  6 18:41:30 2014
New Revision: 370202
URL: https://svnweb.freebsd.org/changeset/ports/370202
QAT: https://qat.redports.org/buildarchive/r370202/

Log:
  Update to version 4.1

Deleted:
  head/devel/gmake-lite/files/
Modified:
  head/devel/gmake-lite/Makefile
  head/devel/gmake-lite/distinfo

Modified: head/devel/gmake-lite/Makefile
==============================================================================
--- head/devel/gmake-lite/Makefile	Mon Oct  6 18:23:47 2014	(r370201)
+++ head/devel/gmake-lite/Makefile	Mon Oct  6 18:41:30 2014	(r370202)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	make
-PORTVERSION=	3.82
+PORTVERSION=	4.1
 CATEGORIES=	devel ports-mgmt
 MASTER_SITES=	GNU
 PKGNAMEPREFIX=	g

Modified: head/devel/gmake-lite/distinfo
==============================================================================
--- head/devel/gmake-lite/distinfo	Mon Oct  6 18:23:47 2014	(r370201)
+++ head/devel/gmake-lite/distinfo	Mon Oct  6 18:41:30 2014	(r370202)
@@ -1,2 +1,2 @@
-SHA256 (make-3.82.tar.bz2) = e2c1a73f179c40c71e2fe8abf8a8a0688b8499538512984da4a76958d0402966
-SIZE (make-3.82.tar.bz2) = 1242186
+SHA256 (make-4.1.tar.bz2) = 0bc7613389650ee6a24554b52572a272f7356164fd2c4132b0bcf13123e4fca5
+SIZE (make-4.1.tar.bz2) = 1327342

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:46:40 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 2DA3BA54;
 Mon,  6 Oct 2014 18:46:40 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 1A02C85B;
 Mon,  6 Oct 2014 18:46:40 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96IkdgK040173;
 Mon, 6 Oct 2014 18:46:39 GMT (envelope-from pi@FreeBSD.org)
Received: (from pi@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Ikdht040171;
 Mon, 6 Oct 2014 18:46:39 GMT (envelope-from pi@FreeBSD.org)
Message-Id: <201410061846.s96Ikdht040171@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org
 using -f
From: Kurt Jaeger 
Date: Mon, 6 Oct 2014 18:46:39 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370203 - in head/net-mgmt: argus3 argus3-clients
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:46:40 -0000

Author: pi
Date: Mon Oct  6 18:46:39 2014
New Revision: 370203
URL: https://svnweb.freebsd.org/changeset/ports/370203
QAT: https://qat.redports.org/buildarchive/r370203/

Log:
  net-mgmt/argus3(-clients): delete unnecessary @dir entries from pkg-plist
  
  Submitted by:	bapt

Modified:
  head/net-mgmt/argus3-clients/pkg-plist
  head/net-mgmt/argus3/pkg-plist

Modified: head/net-mgmt/argus3-clients/pkg-plist
==============================================================================
--- head/net-mgmt/argus3-clients/pkg-plist	Mon Oct  6 18:41:30 2014	(r370202)
+++ head/net-mgmt/argus3-clients/pkg-plist	Mon Oct  6 18:46:39 2014	(r370203)
@@ -94,9 +94,3 @@ man/man8/radium.8.gz
 %%EXAMPLESDIR%%/Startup/radium.service
 %%EXAMPLESDIR%%/Startup/rasplit
 %%EXAMPLESDIR%%/System/magic
-@dir %%EXAMPLESDIR%%/System
-@dir %%EXAMPLESDIR%%/Startup
-@dir %%EXAMPLESDIR%%/Database
-@dir %%EXAMPLESDIR%%/Config
-@dir %%EXAMPLESDIR%%
-%%PORTDOCS%%@dirrm %%DOCSDIR%%

Modified: head/net-mgmt/argus3/pkg-plist
==============================================================================
--- head/net-mgmt/argus3/pkg-plist	Mon Oct  6 18:41:30 2014	(r370202)
+++ head/net-mgmt/argus3/pkg-plist	Mon Oct  6 18:46:39 2014	(r370203)
@@ -13,9 +13,3 @@ man/man8/argus.8.gz
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Startup/README
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/System/crontab
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/System/magic
-%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Archive
-%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Config
-%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Deployment
-%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/Startup
-%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/System
-%%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:47:38 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id DC255B97;
 Mon,  6 Oct 2014 18:47:38 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id C6DAA86D;
 Mon,  6 Oct 2014 18:47:38 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Ilc10040408;
 Mon, 6 Oct 2014 18:47:38 GMT (envelope-from thierry@FreeBSD.org)
Received: (from thierry@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96IlcvJ040406;
 Mon, 6 Oct 2014 18:47:38 GMT (envelope-from thierry@FreeBSD.org)
Message-Id: <201410061847.s96IlcvJ040406@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: thierry set sender to
 thierry@FreeBSD.org using -f
From: Thierry Thomas 
Date: Mon, 6 Oct 2014 18:47:38 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370204 - head/net/sslh
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:47:39 -0000

Author: thierry
Date: Mon Oct  6 18:47:37 2014
New Revision: 370204
URL: https://svnweb.freebsd.org/changeset/ports/370204
QAT: https://qat.redports.org/buildarchive/r370204/

Log:
  Fixing 'fetch' and unbreak.
  
  Note: the author confirm that the recent changes to the source archive
  was just adding a COPYING file
  .
  
  PR:		ports/194134
  Submitted by:	maintainer

Modified:
  head/net/sslh/Makefile
  head/net/sslh/distinfo

Modified: head/net/sslh/Makefile
==============================================================================
--- head/net/sslh/Makefile	Mon Oct  6 18:46:39 2014	(r370203)
+++ head/net/sslh/Makefile	Mon Oct  6 18:47:37 2014	(r370204)
@@ -3,8 +3,8 @@
 
 PORTNAME=	sslh
 PORTVERSION=	1.16
-PORTREVISION=	1
 DISTVERSIONPREFIX=	v
+PORTREVISION=	2
 CATEGORIES=	net
 MASTER_SITES=	http://www.rutschle.net/tech/
 

Modified: head/net/sslh/distinfo
==============================================================================
--- head/net/sslh/distinfo	Mon Oct  6 18:46:39 2014	(r370203)
+++ head/net/sslh/distinfo	Mon Oct  6 18:47:37 2014	(r370204)
@@ -1,2 +1,2 @@
-SHA256 (sslh-v1.16.tar.gz) = e97b3be9f010bc763a7f11c94e54d8ead33cab3f0c93a52bb9a7f708212e5902
-SIZE (sslh-v1.16.tar.gz) = 36483
+SHA256 (sslh-v1.16.tar.gz) = a610beb878ee5c73aa505e5d526589edcf7060d09e4fedfe82e732f2138f8434
+SIZE (sslh-v1.16.tar.gz) = 43836

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 18:50:21 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 3ABF6D1F;
 Mon,  6 Oct 2014 18:50:21 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 267FE895;
 Mon,  6 Oct 2014 18:50:21 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96IoLxP043303;
 Mon, 6 Oct 2014 18:50:21 GMT (envelope-from antoine@FreeBSD.org)
Received: (from antoine@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96IoKPY043297;
 Mon, 6 Oct 2014 18:50:20 GMT (envelope-from antoine@FreeBSD.org)
Message-Id: <201410061850.s96IoKPY043297@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: antoine set sender to
 antoine@FreeBSD.org using -f
From: Antoine Brodin 
Date: Mon, 6 Oct 2014 18:50:20 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370205 - head/textproc/kibana
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 18:50:21 -0000

Author: antoine
Date: Mon Oct  6 18:50:19 2014
New Revision: 370205
URL: https://svnweb.freebsd.org/changeset/ports/370205
QAT: https://qat.redports.org/buildarchive/r370205/

Log:
  Update to 3.1.1

Modified:
  head/textproc/kibana/Makefile
  head/textproc/kibana/distinfo
  head/textproc/kibana/pkg-plist

Modified: head/textproc/kibana/Makefile
==============================================================================
--- head/textproc/kibana/Makefile	Mon Oct  6 18:47:37 2014	(r370204)
+++ head/textproc/kibana/Makefile	Mon Oct  6 18:50:19 2014	(r370205)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	kibana
-PORTVERSION=	3.1.0
+PORTVERSION=	3.1.1
 CATEGORIES=	textproc www
 MASTER_SITES=	http://download.elasticsearch.org/kibana/kibana/
 

Modified: head/textproc/kibana/distinfo
==============================================================================
--- head/textproc/kibana/distinfo	Mon Oct  6 18:47:37 2014	(r370204)
+++ head/textproc/kibana/distinfo	Mon Oct  6 18:50:19 2014	(r370205)
@@ -1,2 +1,2 @@
-SHA256 (kibana-3.1.0.tar.gz) = 059a4b6b507b9ff771901d12035e499b0e8d1cae7d9e5284633e19da6c294e07
-SIZE (kibana-3.1.0.tar.gz) = 1073033
+SHA256 (kibana-3.1.1.tar.gz) = ab5c32786d683fa7a2f6d983843751cb627427f8c6eea904a4d6849ef037bda4
+SIZE (kibana-3.1.1.tar.gz) = 1074463

Modified: head/textproc/kibana/pkg-plist
==============================================================================
--- head/textproc/kibana/pkg-plist	Mon Oct  6 18:47:37 2014	(r370204)
+++ head/textproc/kibana/pkg-plist	Mon Oct  6 18:50:19 2014	(r370205)
@@ -96,6 +96,7 @@
 %%WWWDIR%%/app/panels/trends/editor.html
 %%WWWDIR%%/app/panels/trends/module.html
 %%WWWDIR%%/app/panels/trends/module.js
+%%WWWDIR%%/app/partials/connectionFailed.html
 %%WWWDIR%%/app/partials/dashLoader.html
 %%WWWDIR%%/app/partials/dashLoaderShare.html
 %%WWWDIR%%/app/partials/dashboard.html
@@ -148,41 +149,3 @@
 %%WWWDIR%%/vendor/require/require.js
 %%WWWDIR%%/vendor/require/tmpl.js
 %%WWWDIR%%/vendor/timezone.js
-@dirrm %%WWWDIR%%/app/components
-@dirrmtry %%WWWDIR%%/app/dashboards
-@dirrm %%WWWDIR%%/app/factories
-@dirrm %%WWWDIR%%/app/panels/bettermap/leaflet/images
-@dirrm %%WWWDIR%%/app/panels/bettermap/leaflet
-@dirrm %%WWWDIR%%/app/panels/bettermap
-@dirrm %%WWWDIR%%/app/panels/column
-@dirrm %%WWWDIR%%/app/panels/dashcontrol
-@dirrm %%WWWDIR%%/app/panels/derivequeries
-@dirrm %%WWWDIR%%/app/panels/fields
-@dirrm %%WWWDIR%%/app/panels/filtering
-@dirrm %%WWWDIR%%/app/panels/goal
-@dirrm %%WWWDIR%%/app/panels/histogram
-@dirrm %%WWWDIR%%/app/panels/hits
-@dirrm %%WWWDIR%%/app/panels/map/lib
-@dirrm %%WWWDIR%%/app/panels/map
-@dirrm %%WWWDIR%%/app/panels/query/editors
-@dirrm %%WWWDIR%%/app/panels/query/help
-@dirrm %%WWWDIR%%/app/panels/query
-@dirrm %%WWWDIR%%/app/panels/sparklines
-@dirrm %%WWWDIR%%/app/panels/stats
-@dirrm %%WWWDIR%%/app/panels/table
-@dirrm %%WWWDIR%%/app/panels/terms
-@dirrm %%WWWDIR%%/app/panels/text
-@dirrm %%WWWDIR%%/app/panels/timepicker
-@dirrm %%WWWDIR%%/app/panels/trends
-@dirrm %%WWWDIR%%/app/panels
-@dirrm %%WWWDIR%%/app/partials
-@dirrmtry %%WWWDIR%%/app
-@dirrm %%WWWDIR%%/css
-@dirrm %%WWWDIR%%/font
-@dirrm %%WWWDIR%%/img
-@dirrm %%WWWDIR%%/vendor/bootstrap/less/tests
-@dirrm %%WWWDIR%%/vendor/bootstrap/less
-@dirrm %%WWWDIR%%/vendor/bootstrap
-@dirrm %%WWWDIR%%/vendor/require
-@dirrm %%WWWDIR%%/vendor
-@dirrmtry %%WWWDIR%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 19:01:19 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 356A3F6;
 Mon,  6 Oct 2014 19:01:19 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 1681EA35;
 Mon,  6 Oct 2014 19:01:19 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96J1IHJ048761;
 Mon, 6 Oct 2014 19:01:18 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96J1HC4048746;
 Mon, 6 Oct 2014 19:01:17 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061901.s96J1HC4048746@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 19:01:17 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370206 - in head/textproc: . libwpd libwpd010
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 19:01:19 -0000

Author: bapt
Date: Mon Oct  6 19:01:17 2014
New Revision: 370206
URL: https://svnweb.freebsd.org/changeset/ports/370206
QAT: https://qat.redports.org/buildarchive/r370206/

Log:
  Import libwpd010
  Make sure libwpd is not conflicting with libwpd010 by not installing the tools

Added:
  head/textproc/libwpd010/
     - copied from r370181, head/textproc/libwpd/
Modified:
  head/textproc/Makefile
  head/textproc/libwpd/Makefile
  head/textproc/libwpd/pkg-plist
  head/textproc/libwpd010/Makefile
  head/textproc/libwpd010/distinfo
  head/textproc/libwpd010/pkg-plist

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon Oct  6 18:50:19 2014	(r370205)
+++ head/textproc/Makefile	Mon Oct  6 19:01:17 2014	(r370206)
@@ -381,6 +381,7 @@
     SUBDIR += libuninameslist
     SUBDIR += libvisio
     SUBDIR += libwpd
+    SUBDIR += libwpd010
     SUBDIR += libwps
     SUBDIR += libxdiff
     SUBDIR += libxml++26

Modified: head/textproc/libwpd/Makefile
==============================================================================
--- head/textproc/libwpd/Makefile	Mon Oct  6 18:50:19 2014	(r370205)
+++ head/textproc/libwpd/Makefile	Mon Oct  6 19:01:17 2014	(r370206)
@@ -3,7 +3,7 @@
 
 PORTNAME=	libwpd
 PORTVERSION=	0.9.9
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	textproc
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
@@ -22,4 +22,7 @@ INSTALL_TARGET=	install-strip
 CONFIGURE_ARGS=	--without-docs
 PLIST_SUB=	MAJVER=${PORTVERSION:R}
 
+post-stage:
+	@${RM} ${STAGEDIR}${PREFIX}/bin/wpd*
+
 .include 

Modified: head/textproc/libwpd/pkg-plist
==============================================================================
--- head/textproc/libwpd/pkg-plist	Mon Oct  6 18:50:19 2014	(r370205)
+++ head/textproc/libwpd/pkg-plist	Mon Oct  6 19:01:17 2014	(r370206)
@@ -1,6 +1,3 @@
-bin/wpd2html
-bin/wpd2raw
-bin/wpd2text
 include/libwpd-%%MAJVER%%/libwpd/WPDocument.h
 include/libwpd-%%MAJVER%%/libwpd/WPXBinaryData.h
 include/libwpd-%%MAJVER%%/libwpd/WPXDocumentInterface.h
@@ -22,6 +19,3 @@ lib/libwpd-stream-%%MAJVER%%.so.9
 lib/libwpd-stream-%%MAJVER%%.so.9.0.9
 libdata/pkgconfig/libwpd-%%MAJVER%%.pc
 libdata/pkgconfig/libwpd-stream-%%MAJVER%%.pc
-@dirrm include/libwpd-%%MAJVER%%/libwpd-stream
-@dirrm include/libwpd-%%MAJVER%%/libwpd
-@dirrm include/libwpd-%%MAJVER%%

Modified: head/textproc/libwpd010/Makefile
==============================================================================
--- head/textproc/libwpd/Makefile	Mon Oct  6 14:00:58 2014	(r370181)
+++ head/textproc/libwpd010/Makefile	Mon Oct  6 19:01:17 2014	(r370206)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	libwpd
-PORTVERSION=	0.9.9
-PORTREVISION=	1
+PORTVERSION=	0.10.0
 CATEGORIES=	textproc
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
 
@@ -13,6 +12,8 @@ COMMENT=	Tools for importing and exporti
 LICENSE=	LGPL21 MPL
 LICENSE_COMB=	dual
 
+LIB_DEPENDS=	librevenge-0.0.so:${PORTSDIR}/textproc/librevenge
+
 USES=		pathfix libtool:keepla tar:bzip2
 GNU_CONFIGURE=	yes
 USE_GNOME=	libgsf

Modified: head/textproc/libwpd010/distinfo
==============================================================================
--- head/textproc/libwpd/distinfo	Mon Oct  6 14:00:58 2014	(r370181)
+++ head/textproc/libwpd010/distinfo	Mon Oct  6 19:01:17 2014	(r370206)
@@ -1,2 +1,2 @@
-SHA256 (libwpd-0.9.9.tar.bz2) = 210c216bbbf67603f891373362ec0427aeb36bfcaf881d43433db85ca2160d7c
-SIZE (libwpd-0.9.9.tar.bz2) = 684918
+SHA256 (libwpd-0.10.0.tar.bz2) = f2bf5d65156a351ce404550dd822c8db8ab8740b393f61dba828d1b2cb33fe91
+SIZE (libwpd-0.10.0.tar.bz2) = 632272

Modified: head/textproc/libwpd010/pkg-plist
==============================================================================
--- head/textproc/libwpd/pkg-plist	Mon Oct  6 14:00:58 2014	(r370181)
+++ head/textproc/libwpd010/pkg-plist	Mon Oct  6 19:01:17 2014	(r370206)
@@ -2,26 +2,11 @@ bin/wpd2html
 bin/wpd2raw
 bin/wpd2text
 include/libwpd-%%MAJVER%%/libwpd/WPDocument.h
-include/libwpd-%%MAJVER%%/libwpd/WPXBinaryData.h
-include/libwpd-%%MAJVER%%/libwpd/WPXDocumentInterface.h
-include/libwpd-%%MAJVER%%/libwpd/WPXProperty.h
-include/libwpd-%%MAJVER%%/libwpd/WPXPropertyList.h
-include/libwpd-%%MAJVER%%/libwpd/WPXPropertyListVector.h
-include/libwpd-%%MAJVER%%/libwpd/WPXString.h
 include/libwpd-%%MAJVER%%/libwpd/libwpd.h
-include/libwpd-%%MAJVER%%/libwpd-stream/WPXStream.h
-include/libwpd-%%MAJVER%%/libwpd-stream/WPXStreamImplementation.h
-include/libwpd-%%MAJVER%%/libwpd-stream/libwpd-stream.h
 lib/libwpd-%%MAJVER%%.la
 lib/libwpd-%%MAJVER%%.so
-lib/libwpd-%%MAJVER%%.so.9
-lib/libwpd-%%MAJVER%%.so.9.0.9
-lib/libwpd-stream-%%MAJVER%%.la
-lib/libwpd-stream-%%MAJVER%%.so
-lib/libwpd-stream-%%MAJVER%%.so.9
-lib/libwpd-stream-%%MAJVER%%.so.9.0.9
+lib/libwpd-%%MAJVER%%.so.10
+lib/libwpd-%%MAJVER%%.so.10.0.0
 libdata/pkgconfig/libwpd-%%MAJVER%%.pc
-libdata/pkgconfig/libwpd-stream-%%MAJVER%%.pc
-@dirrm include/libwpd-%%MAJVER%%/libwpd-stream
 @dirrm include/libwpd-%%MAJVER%%/libwpd
 @dirrm include/libwpd-%%MAJVER%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 19:03:43 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 623D0238;
 Mon,  6 Oct 2014 19:03:43 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 4E72FA63;
 Mon,  6 Oct 2014 19:03:43 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96J3hKS049753;
 Mon, 6 Oct 2014 19:03:43 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96J3gmO049751;
 Mon, 6 Oct 2014 19:03:42 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061903.s96J3gmO049751@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 19:03:42 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370207 - head/textproc/libwpd010
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 19:03:43 -0000

Author: bapt
Date: Mon Oct  6 19:03:42 2014
New Revision: 370207
URL: https://svnweb.freebsd.org/changeset/ports/370207
QAT: https://qat.redports.org/buildarchive/r370207/

Log:
  Drop la files

Modified:
  head/textproc/libwpd010/Makefile
  head/textproc/libwpd010/pkg-plist

Modified: head/textproc/libwpd010/Makefile
==============================================================================
--- head/textproc/libwpd010/Makefile	Mon Oct  6 19:01:17 2014	(r370206)
+++ head/textproc/libwpd010/Makefile	Mon Oct  6 19:03:42 2014	(r370207)
@@ -14,7 +14,7 @@ LICENSE_COMB=	dual
 
 LIB_DEPENDS=	librevenge-0.0.so:${PORTSDIR}/textproc/librevenge
 
-USES=		pathfix libtool:keepla tar:bzip2
+USES=		pathfix libtool tar:bzip2
 GNU_CONFIGURE=	yes
 USE_GNOME=	libgsf
 USE_LDCONFIG=	yes

Modified: head/textproc/libwpd010/pkg-plist
==============================================================================
--- head/textproc/libwpd010/pkg-plist	Mon Oct  6 19:01:17 2014	(r370206)
+++ head/textproc/libwpd010/pkg-plist	Mon Oct  6 19:03:42 2014	(r370207)
@@ -3,10 +3,7 @@ bin/wpd2raw
 bin/wpd2text
 include/libwpd-%%MAJVER%%/libwpd/WPDocument.h
 include/libwpd-%%MAJVER%%/libwpd/libwpd.h
-lib/libwpd-%%MAJVER%%.la
 lib/libwpd-%%MAJVER%%.so
 lib/libwpd-%%MAJVER%%.so.10
 lib/libwpd-%%MAJVER%%.so.10.0.0
 libdata/pkgconfig/libwpd-%%MAJVER%%.pc
-@dirrm include/libwpd-%%MAJVER%%/libwpd
-@dirrm include/libwpd-%%MAJVER%%

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 19:04:24 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 430CC31D;
 Mon,  6 Oct 2014 19:04:24 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2F541A6A;
 Mon,  6 Oct 2014 19:04:24 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96J4O5G049944;
 Mon, 6 Oct 2014 19:04:24 GMT (envelope-from bapt@FreeBSD.org)
Received: (from bapt@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96J4Oh6049942;
 Mon, 6 Oct 2014 19:04:24 GMT (envelope-from bapt@FreeBSD.org)
Message-Id: <201410061904.s96J4Oh6049942@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org
 using -f
From: Baptiste Daroussin 
Date: Mon, 6 Oct 2014 19:04:24 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370208 - head/textproc/libwpd010
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 19:04:24 -0000

Author: bapt
Date: Mon Oct  6 19:04:23 2014
New Revision: 370208
URL: https://svnweb.freebsd.org/changeset/ports/370208
QAT: https://qat.redports.org/buildarchive/r370208/

Log:
  Fix PKGNAME

Modified:
  head/textproc/libwpd010/Makefile

Modified: head/textproc/libwpd010/Makefile
==============================================================================
--- head/textproc/libwpd010/Makefile	Mon Oct  6 19:03:42 2014	(r370207)
+++ head/textproc/libwpd010/Makefile	Mon Oct  6 19:04:23 2014	(r370208)
@@ -5,6 +5,7 @@ PORTNAME=	libwpd
 PORTVERSION=	0.10.0
 CATEGORIES=	textproc
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
+PKGNAMESUFFIX=	010
 
 MAINTAINER=	office@FreeBSD.org
 COMMENT=	Tools for importing and exporting WordPerfect(tm) documents

From owner-svn-ports-head@FreeBSD.ORG  Mon Oct  6 19:09:35 2014
Return-Path: 
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id BD078479;
 Mon,  6 Oct 2014 19:09:35 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 9DEDAAAA;
 Mon,  6 Oct 2014 19:09:35 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96J9Zsm050811;
 Mon, 6 Oct 2014 19:09:35 GMT (envelope-from ohauer@FreeBSD.org)
Received: (from ohauer@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96J9Ztd050810;
 Mon, 6 Oct 2014 19:09:35 GMT (envelope-from ohauer@FreeBSD.org)
Message-Id: <201410061909.s96J9Ztd050810@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: ohauer set sender to
 ohauer@FreeBSD.org using -f
From: Olli Hauer 
Date: Mon, 6 Oct 2014 19:09:35 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r370209 - head/security/vuxml
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.18-1
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 
List-Unsubscribe: ,
 
List-Archive: 
List-Post: 
List-Help: 
List-Subscribe: ,
 
X-List-Received-Date: Mon, 06 Oct 2014 19:09:35 -0000

Author: ohauer
Date: Mon Oct  6 19:09:34 2014
New Revision: 370209
URL: https://svnweb.freebsd.org/changeset/ports/370209
QAT: https://qat.redports.org/buildarchive/r370209/

Log:
  - document bugzilla security issues

Modified:
  head/security/vuxml/vuln.xml

Modified: head/security/vuxml/vuln.xml
==============================================================================
--- head/security/vuxml/vuln.xml	Mon Oct  6 19:04:23 2014	(r370208)
+++ head/security/vuxml/vuln.xml	Mon Oct  6 19:09:34 2014	(r370209)
@@ -57,6 +57,55 @@ Notes:
 
 -->
 
+  
+    Bugzilla multiple security issues
+    
+      
+	bugzilla44
+	4.4.6
+      
+    
+    
+      
+	

Bugzilla Security Advisory

+
+
Unauthorized Account Creation
+

An attacker creating a new Bugzilla account can override certain + parameters when finalizing the account creation that can lead to the + user being created with a different email address than originally + requested. The overridden login name could be automatically added + to groups based on the group's regular expression setting.

+
Cross-Site Scripting
+

During an audit of the Bugzilla code base, several places + were found where cross-site scripting exploits could occur which + could allow an attacker to access sensitive information.

+
Information Leak
+

If a new comment was marked private to the insider group, and a flag + was set in the same transaction, the comment would be visible to + flag recipients even if they were not in the insider group.

+
Social Engineering
+

Search results can be exported as a CSV file which can then be + imported into external spreadsheet programs. Specially formatted + field values can be interpreted as formulas which can be executed + and used to attack a user's computer.

+
+ +
+ + CVE-2014-1572 + CVE-2014-1573 + CVE-2014-1571 + https://bugzilla.mozilla.org/show_bug.cgi?id=1074812 + https://bugzilla.mozilla.org/show_bug.cgi?id=1075578 + https://bugzilla.mozilla.org/show_bug.cgi?id=1064140 + https://bugzilla.mozilla.org/show_bug.cgi?id=1054702 + + + 2014-10-06 + 2014-10-06 + +
+ rt42 -- vulnerabilities related to shellshock From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:09:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E15E557; Mon, 6 Oct 2014 19:09:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10B6CAAC; Mon, 6 Oct 2014 19:09:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96J9c9E051011; Mon, 6 Oct 2014 19:09:38 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96J9bTx051005; Mon, 6 Oct 2014 19:09:37 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410061909.s96J9bTx051005@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 6 Oct 2014 19:09:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370210 - in head/textproc: . libwps libwps03 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:09:39 -0000 Author: bapt Date: Mon Oct 6 19:09:37 2014 New Revision: 370210 URL: https://svnweb.freebsd.org/changeset/ports/370210 QAT: https://qat.redports.org/buildarchive/r370210/ Log: Import libwps03 Ensure libwps does not conflict with libwps03 Added: head/textproc/libwps03/ - copied from r370181, head/textproc/libwps/ Modified: head/textproc/Makefile head/textproc/libwps/Makefile head/textproc/libwps/pkg-plist head/textproc/libwps03/Makefile head/textproc/libwps03/distinfo head/textproc/libwps03/pkg-plist Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Oct 6 19:09:34 2014 (r370209) +++ head/textproc/Makefile Mon Oct 6 19:09:37 2014 (r370210) @@ -383,6 +383,7 @@ SUBDIR += libwpd SUBDIR += libwpd010 SUBDIR += libwps + SUBDIR += libwps03 SUBDIR += libxdiff SUBDIR += libxml++26 SUBDIR += libxml++26-reference Modified: head/textproc/libwps/Makefile ============================================================================== --- head/textproc/libwps/Makefile Mon Oct 6 19:09:34 2014 (r370209) +++ head/textproc/libwps/Makefile Mon Oct 6 19:09:37 2014 (r370210) @@ -3,7 +3,7 @@ PORTNAME= libwps PORTVERSION= 0.2.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -15,17 +15,12 @@ LICENSE_COMB= dual LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd -OPTIONS_DEFINE= DOCS - -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes USES= compiler:features libtool:keepla pathfix pkgconfig USE_LDCONFIG= yes INSTALL_TARGET= install-strip -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs .include @@ -36,4 +31,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/include/boo CONFIGURE_ARGS+= --with-sharedptr=boost .endif +post-stage: + @${RM} -f ${STAGEDIR}${PREFIX}/bin/* + .include Modified: head/textproc/libwps/pkg-plist ============================================================================== --- head/textproc/libwps/pkg-plist Mon Oct 6 19:09:34 2014 (r370209) +++ head/textproc/libwps/pkg-plist Mon Oct 6 19:09:37 2014 (r370210) @@ -1,6 +1,3 @@ -bin/wps2html -bin/wps2raw -bin/wps2text include/libwps-0.2/libwps/WPSDocument.h include/libwps-0.2/libwps/libwps.h lib/libwps-0.2.la @@ -8,5 +5,3 @@ lib/libwps-0.2.so lib/libwps-0.2.so.2 lib/libwps-0.2.so.2.0.9 libdata/pkgconfig/libwps-0.2.pc -@dirrm include/libwps-0.2/libwps -@dirrm include/libwps-0.2 Modified: head/textproc/libwps03/Makefile ============================================================================== --- head/textproc/libwps/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libwps03/Makefile Mon Oct 6 19:09:37 2014 (r370210) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= libwps -PORTVERSION= 0.2.9 -PORTREVISION= 2 +PORTVERSION= 0.3.0 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMESUFFIX= 03 MAINTAINER= office@FreeBSD.org COMMENT= Microsoft file word processor format import filter library @@ -13,19 +13,15 @@ COMMENT= Microsoft file word processor f LICENSE= LGPL21 MPL LICENSE_COMB= dual -LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd - -OPTIONS_DEFINE= DOCS +LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge CONFIGURE_ARGS= --disable-werror CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= compiler:features libtool:keepla pathfix pkgconfig +CONFIGURE_ARGS= --without-docs +USES= compiler:features libtool pathfix pkgconfig USE_LDCONFIG= yes INSTALL_TARGET= install-strip -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs .include Modified: head/textproc/libwps03/distinfo ============================================================================== --- head/textproc/libwps/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libwps03/distinfo Mon Oct 6 19:09:37 2014 (r370210) @@ -1,2 +1,2 @@ -SHA256 (libwps-0.2.9.tar.gz) = de57e3eb91eb1c6b9c6f1a765f943a3ac894e7575fad117a88ab7959fc29256d -SIZE (libwps-0.2.9.tar.gz) = 615767 +SHA256 (libwps-0.3.0.tar.gz) = ec6f17caa6cd576a2851d92b4d48508d79bece4fc83b66b012e4c8026113d44a +SIZE (libwps-0.3.0.tar.gz) = 639591 Modified: head/textproc/libwps03/pkg-plist ============================================================================== --- head/textproc/libwps/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libwps03/pkg-plist Mon Oct 6 19:09:37 2014 (r370210) @@ -1,12 +1,12 @@ +bin/wks2csv +bin/wks2raw +bin/wks2text bin/wps2html bin/wps2raw bin/wps2text -include/libwps-0.2/libwps/WPSDocument.h -include/libwps-0.2/libwps/libwps.h -lib/libwps-0.2.la -lib/libwps-0.2.so -lib/libwps-0.2.so.2 -lib/libwps-0.2.so.2.0.9 -libdata/pkgconfig/libwps-0.2.pc -@dirrm include/libwps-0.2/libwps -@dirrm include/libwps-0.2 +include/libwps-0.3/libwps/WPSDocument.h +include/libwps-0.3/libwps/libwps.h +lib/libwps-0.3.so +lib/libwps-0.3.so.3 +lib/libwps-0.3.so.3.0.0 +libdata/pkgconfig/libwps-0.3.pc From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:16:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04CE26E2; Mon, 6 Oct 2014 19:16:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E51E5B9F; Mon, 6 Oct 2014 19:16:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96JGhfO055463; Mon, 6 Oct 2014 19:16:43 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96JGhYB055457; Mon, 6 Oct 2014 19:16:43 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201410061916.s96JGhYB055457@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Mon, 6 Oct 2014 19:16:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370211 - head/devel/bugzilla44 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:16:44 -0000 Author: ohauer Date: Mon Oct 6 19:16:42 2014 New Revision: 370211 URL: https://svnweb.freebsd.org/changeset/ports/370211 QAT: https://qat.redports.org/buildarchive/r370211/ Log: - update to bugzilla 4.4.6 Summary ======= The following security issues have been discovered in Bugzilla: * The 'realname' parameter is not correctly filtered on user account creation, which could lead to user data override. * Several places were found in the Bugzilla code where cross-site scripting attacks could be used to access sensitive information. * Private comments can be shown to flagmail recipients who aren't in the insider group * Specially formatted values in a CSV search results export could be used in spreadsheet software to attack a user's computer. Security: CVE-2014-1572 CVE-2014-1571 CVE-2014-1571 Modified: head/devel/bugzilla44/Makefile head/devel/bugzilla44/distinfo head/devel/bugzilla44/pkg-plist Modified: head/devel/bugzilla44/Makefile ============================================================================== --- head/devel/bugzilla44/Makefile Mon Oct 6 19:09:37 2014 (r370210) +++ head/devel/bugzilla44/Makefile Mon Oct 6 19:16:42 2014 (r370211) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= bugzilla -PORTVERSION= 4.4.5 -PORTREVISION= 1 +PORTVERSION= 4.4.6 CATEGORIES= devel MASTER_SITES= BUGZILLA MASTER_SITE_SUBDIR= webtools webtools/archived @@ -50,7 +49,7 @@ RUN_DEPENDS+= p5-DBD-mysql>=4.0001:${POR .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes +USES+= pgsql RUN_DEPENDS+= p5-DBD-Pg>=2.19.3:${PORTSDIR}/databases/p5-DBD-Pg .endif Modified: head/devel/bugzilla44/distinfo ============================================================================== --- head/devel/bugzilla44/distinfo Mon Oct 6 19:09:37 2014 (r370210) +++ head/devel/bugzilla44/distinfo Mon Oct 6 19:16:42 2014 (r370211) @@ -1,2 +1,2 @@ -SHA256 (bugzilla/bugzilla-4.4.5.tar.gz) = 70609fa5bbe55a3b802afcf749a098824d7a96dc87b91ce07b000cfdd7987da5 -SIZE (bugzilla/bugzilla-4.4.5.tar.gz) = 2955964 +SHA256 (bugzilla/bugzilla-4.4.6.tar.gz) = ac3547195f2ce156488aac2cc537620775e08a9d888441daab2b40ab66ab01f4 +SIZE (bugzilla/bugzilla-4.4.6.tar.gz) = 2956046 Modified: head/devel/bugzilla44/pkg-plist ============================================================================== --- head/devel/bugzilla44/pkg-plist Mon Oct 6 19:09:37 2014 (r370210) +++ head/devel/bugzilla44/pkg-plist Mon Oct 6 19:16:42 2014 (r370211) @@ -887,178 +887,14 @@ %%WWWDIR%%/whine.pl %%WWWDIR%%/whineatnews.pl %%WWWDIR%%/xmlrpc.cgi -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Auth -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Config -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/DB -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Field -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Install -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/JobQueue -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Search -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Template/Plugin -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Template -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/User/Setting -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/User -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/WebService/Server -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/WebService -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla/Whine -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/Bugzilla -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/contrib -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api/extensions -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html/api -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/images/callouts -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/txt -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/xml -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en -%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTML -%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple/HTMLBatch -%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod/Simple -%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib/Pod -%%PORTDOCS%%@dirrm %%DOCSDIR%%/lib -%%PORTDOCS%%@dirrm %%DOCSDIR%%/xsl -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%WWWDIR%%/Bugzilla/Attachment -@dirrm %%WWWDIR%%/Bugzilla/Auth/Login -@dirrm %%WWWDIR%%/Bugzilla/Auth/Persist -@dirrm %%WWWDIR%%/Bugzilla/Auth/Verify -@dirrm %%WWWDIR%%/Bugzilla/Auth -@dirrm %%WWWDIR%%/Bugzilla/BugUrl/Bugzilla -@dirrm %%WWWDIR%%/Bugzilla/BugUrl -@dirrm %%WWWDIR%%/Bugzilla/Config -@dirrm %%WWWDIR%%/Bugzilla/DB/Schema -@dirrm %%WWWDIR%%/Bugzilla/DB -@dirrm %%WWWDIR%%/Bugzilla/Field -@dirrm %%WWWDIR%%/Bugzilla/Install -@dirrm %%WWWDIR%%/Bugzilla/Job -@dirrm %%WWWDIR%%/Bugzilla/JobQueue -@dirrm %%WWWDIR%%/Bugzilla/Migrate -@dirrm %%WWWDIR%%/Bugzilla/Search -@dirrm %%WWWDIR%%/Bugzilla/Send -@dirrm %%WWWDIR%%/Bugzilla/Template/Plugin -@dirrm %%WWWDIR%%/Bugzilla/Template -@dirrm %%WWWDIR%%/Bugzilla/User/Setting -@dirrm %%WWWDIR%%/Bugzilla/User -@dirrm %%WWWDIR%%/Bugzilla/WebService/Server -@dirrm %%WWWDIR%%/Bugzilla/WebService -@dirrm %%WWWDIR%%/Bugzilla/Whine -@dirrmtry %%WWWDIR%%/Bugzilla -%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/bugzilla-submit -%%CONTRIB%%@dirrm %%WWWDIR%%/contrib/cmdline -@dirrmtry %%WWWDIR%%/contrib -@dirrmtry %%WWWDIR%%/data -@dirrmtry %%WWWDIR%%/graphs -@dirrmtry %%WWWDIR%%/images -@dirrm %%WWWDIR%%/js/history.js -@dirrm %%WWWDIR%%/js/yui/animation -@dirrm %%WWWDIR%%/js/yui/assets/skins/sam -@dirrm %%WWWDIR%%/js/yui/assets/skins -@dirrm %%WWWDIR%%/js/yui/assets -@dirrm %%WWWDIR%%/js/yui/autocomplete -@dirrm %%WWWDIR%%/js/yui/base -@dirrm %%WWWDIR%%/js/yui/button -@dirrm %%WWWDIR%%/js/yui/calendar -@dirrm %%WWWDIR%%/js/yui/carousel -@dirrm %%WWWDIR%%/js/yui/charts -@dirrm %%WWWDIR%%/js/yui/colorpicker -@dirrm %%WWWDIR%%/js/yui/connection -@dirrm %%WWWDIR%%/js/yui/container -@dirrm %%WWWDIR%%/js/yui/cookie -@dirrm %%WWWDIR%%/js/yui/datasource -@dirrm %%WWWDIR%%/js/yui/datatable -@dirrm %%WWWDIR%%/js/yui/datemath -@dirrm %%WWWDIR%%/js/yui/dom -@dirrm %%WWWDIR%%/js/yui/dragdrop -@dirrm %%WWWDIR%%/js/yui/element -@dirrm %%WWWDIR%%/js/yui/element-delegate -@dirrm %%WWWDIR%%/js/yui/event -@dirrm %%WWWDIR%%/js/yui/event-delegate -@dirrm %%WWWDIR%%/js/yui/event-mouseenter -@dirrm %%WWWDIR%%/js/yui/event-simulate -@dirrm %%WWWDIR%%/js/yui/fonts -@dirrm %%WWWDIR%%/js/yui/get -@dirrm %%WWWDIR%%/js/yui/grids -@dirrm %%WWWDIR%%/js/yui/history -@dirrm %%WWWDIR%%/js/yui/imagecropper -@dirrm %%WWWDIR%%/js/yui/imageloader -@dirrm %%WWWDIR%%/js/yui/json -@dirrm %%WWWDIR%%/js/yui/layout -@dirrm %%WWWDIR%%/js/yui/logger -@dirrm %%WWWDIR%%/js/yui/menu -@dirrm %%WWWDIR%%/js/yui/paginator -@dirrm %%WWWDIR%%/js/yui/profiler -@dirrm %%WWWDIR%%/js/yui/profilerviewer -@dirrm %%WWWDIR%%/js/yui/progressbar -@dirrm %%WWWDIR%%/js/yui/reset -@dirrm %%WWWDIR%%/js/yui/reset-fonts -@dirrm %%WWWDIR%%/js/yui/reset-fonts-grids -@dirrm %%WWWDIR%%/js/yui/resize -@dirrm %%WWWDIR%%/js/yui/selector -@dirrm %%WWWDIR%%/js/yui/slider -@dirrm %%WWWDIR%%/js/yui/storage -@dirrm %%WWWDIR%%/js/yui/stylesheet -@dirrm %%WWWDIR%%/js/yui/swf -@dirrm %%WWWDIR%%/js/yui/swfdetect -@dirrm %%WWWDIR%%/js/yui/swfstore -@dirrm %%WWWDIR%%/js/yui/tabview -@dirrm %%WWWDIR%%/js/yui/treeview -@dirrm %%WWWDIR%%/js/yui/uploader -@dirrm %%WWWDIR%%/js/yui/yahoo -@dirrm %%WWWDIR%%/js/yui/yahoo-dom-event -@dirrm %%WWWDIR%%/js/yui/yuiloader -@dirrm %%WWWDIR%%/js/yui/yuitest -@dirrm %%WWWDIR%%/js/yui -@dirrm %%WWWDIR%%/js -@dirrmtry %%WWWDIR%%/lib -@dirrm %%WWWDIR%%/skins/contrib/Dusk -@dirrm %%WWWDIR%%/skins/contrib -@dirrm %%WWWDIR%%/skins/standard/dependency-tree -@dirrm %%WWWDIR%%/skins/standard/global -@dirrm %%WWWDIR%%/skins/standard/index -@dirrm %%WWWDIR%%/skins/standard -@dirrmtry %%WWWDIR%%/skins -@dirrmtry %%WWWDIR%%/t -@dirrm %%WWWDIR%%/template/en/default/account/auth -@dirrm %%WWWDIR%%/template/en/default/account/email -@dirrm %%WWWDIR%%/template/en/default/account/password -@dirrm %%WWWDIR%%/template/en/default/account/prefs -@dirrm %%WWWDIR%%/template/en/default/account -@dirrm %%WWWDIR%%/template/en/default/admin/classifications -@dirrm %%WWWDIR%%/template/en/default/admin/components -@dirrm %%WWWDIR%%/template/en/default/admin/custom_fields -@dirrm %%WWWDIR%%/template/en/default/admin/fieldvalues -@dirrm %%WWWDIR%%/template/en/default/admin/flag-type -@dirrm %%WWWDIR%%/template/en/default/admin/groups -@dirrm %%WWWDIR%%/template/en/default/admin/keywords -@dirrm %%WWWDIR%%/template/en/default/admin/milestones -@dirrm %%WWWDIR%%/template/en/default/admin/params -@dirrm %%WWWDIR%%/template/en/default/admin/products/groupcontrol -@dirrm %%WWWDIR%%/template/en/default/admin/products -@dirrm %%WWWDIR%%/template/en/default/admin/sanitycheck -@dirrm %%WWWDIR%%/template/en/default/admin/settings -@dirrm %%WWWDIR%%/template/en/default/admin/users -@dirrm %%WWWDIR%%/template/en/default/admin/versions -@dirrm %%WWWDIR%%/template/en/default/admin/workflow -@dirrm %%WWWDIR%%/template/en/default/admin -@dirrm %%WWWDIR%%/template/en/default/attachment -@dirrm %%WWWDIR%%/template/en/default/bug/activity -@dirrm %%WWWDIR%%/template/en/default/bug/create -@dirrm %%WWWDIR%%/template/en/default/bug/process -@dirrm %%WWWDIR%%/template/en/default/bug -@dirrm %%WWWDIR%%/template/en/default/email -@dirrm %%WWWDIR%%/template/en/default/extensions -@dirrm %%WWWDIR%%/template/en/default/flag -@dirrm %%WWWDIR%%/template/en/default/global -@dirrm %%WWWDIR%%/template/en/default/list -@dirrm %%WWWDIR%%/template/en/default/pages -@dirrm %%WWWDIR%%/template/en/default/reports -@dirrm %%WWWDIR%%/template/en/default/request -@dirrm %%WWWDIR%%/template/en/default/search -@dirrm %%WWWDIR%%/template/en/default/setup -@dirrm %%WWWDIR%%/template/en/default/whine -@dirrm %%WWWDIR%%/template/en/default -@dirrm %%WWWDIR%%/template/en -@dirrmtry %%WWWDIR%%/template -@dirrmtry %%WWWDIR%%/xt -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/Bugzilla +@dir %%WWWDIR%%/contrib +@dir %%WWWDIR%%/data +@dir %%WWWDIR%%/graphs +@dir %%WWWDIR%%/images +@dir %%WWWDIR%%/lib +@dir %%WWWDIR%%/skins +@dir %%WWWDIR%%/t +@dir %%WWWDIR%%/template +@dir %%WWWDIR%%/xt +@dir %%WWWDIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:17:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E6C67D0; Mon, 6 Oct 2014 19:17:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 515D0BA9; Mon, 6 Oct 2014 19:17:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96JHNu0055640; Mon, 6 Oct 2014 19:17:23 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96JHMq0055637; Mon, 6 Oct 2014 19:17:22 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410061917.s96JHMq0055637@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 19:17:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370212 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:17:23 -0000 Author: antoine Date: Mon Oct 6 19:17:22 2014 New Revision: 370212 URL: https://svnweb.freebsd.org/changeset/ports/370212 QAT: https://qat.redports.org/buildarchive/r370212/ Log: Replace @dirrm/@dirrmtry with @dir in makeplist and leftovers check Differential Revision: https://reviews.freebsd.org/D901 Reviewed by: bapt With hat: portmgr Modified: head/Mk/Scripts/check-stagedir.sh head/Mk/Scripts/check_leftovers.sh Modified: head/Mk/Scripts/check-stagedir.sh ============================================================================== --- head/Mk/Scripts/check-stagedir.sh Mon Oct 6 19:16:42 2014 (r370211) +++ head/Mk/Scripts/check-stagedir.sh Mon Oct 6 19:17:22 2014 (r370212) @@ -88,7 +88,7 @@ parse_plist() { ;; esac ;; - # Handle [dirrmtry] Keywords + # Handle [dir] Keywords @fc\ *|@fcfontsdir\ *|@fontsdir\ *) set -- $line shift @@ -220,14 +220,14 @@ setup_plist_seds() { # Used for generate_plist sed_files_gen="s!${PREFIX}/!!g; ${sed_plist_sub} \ ${sed_portdocsexamples} /^share\/licenses/d;" - sed_dirs_gen="s!${PREFIX}/!!g; ${sed_plist_sub} s,^,@dirrmtry ,; \ + sed_dirs_gen="s!${PREFIX}/!!g; ${sed_plist_sub} s,^,@dir ,; \ ${sed_portdocsexamples} \ - /^@dirrmtry share\/licenses/d;" + /^@dir share\/licenses/d;" # These prevent ignoring DOCS/EXAMPLES dirs with sed_portdocsexamples sed_files="s!${PREFIX}/!!g; ${sed_plist_sub} /^share\/licenses/d;" - sed_dirs="s!${PREFIX}/!!g; ${sed_plist_sub} s,^,@dirrmtry ,; \ - /^@dirrmtry share\/licenses/d;" + sed_dirs="s!${PREFIX}/!!g; ${sed_plist_sub} s,^,@dir ,; \ + /^@dir share\/licenses/d;" } @@ -264,16 +264,16 @@ check_orphans_from_plist() { # Handle whitelisting while read path; do case "${path}" in - *'@dirrmtry '[^/]*) ;; + *'@dir '[^/]*) ;; *.bak) ;; *.orig) ;; */.DS_Store) ;; */.cvsignore) ;; - */.git/*|'@dirrmtry '*/.git) ;; + */.git/*|'@dir '*/.git) ;; */.gitattributes|*/.gitignore|*/.gitmodules) ;; - */.svn/*|'@dirrmtry '*/.svn) ;; + */.svn/*|'@dir '*/.svn) ;; */.svnignore) ;; - */CVS/*|'@dirrmtry '*/CVS) ;; + */CVS/*|'@dir '*/CVS) ;; */info/dir|info/dir) ;; lib/X11/fonts/*/fonts.dir) ;; lib/X11/fonts/*/fonts.scale) ;; Modified: head/Mk/Scripts/check_leftovers.sh ============================================================================== --- head/Mk/Scripts/check_leftovers.sh Mon Oct 6 19:16:42 2014 (r370211) +++ head/Mk/Scripts/check_leftovers.sh Mon Oct 6 19:17:22 2014 (r370212) @@ -66,11 +66,11 @@ while read modtype path extra; do ignore_path=0 sub_path=$(echo "$path" | sed -e "s|^${PREFIX}/||" -e "${plistsub_sed}") orig_sub_path="${sub_path}" - # If this is a directory, use @dirrm in output + # If this is a directory, use @dir in output is_dir=0 if [ -d "${path}" ]; then is_dir=1 - sub_path="@dirrm ${sub_path}" + sub_path="@dir ${sub_path}" fi # Handle PORTDOCS/PORTEXAMPLES/etc @@ -153,7 +153,7 @@ while read modtype path extra; do /etc/pwd.db|\ /etc/shells|\ /etc/spwd.db) ;; - *) echo "M ${sub_path#@dirrm } ${extra}" ;; + *) echo "M ${sub_path#@dir } ${extra}" ;; esac ;; esac From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:20:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29B2193F; Mon, 6 Oct 2014 19:20:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A807BE1; Mon, 6 Oct 2014 19:20:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96JKQJM056270; Mon, 6 Oct 2014 19:20:26 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96JKPwX056261; Mon, 6 Oct 2014 19:20:25 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410061920.s96JKPwX056261@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 6 Oct 2014 19:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370213 - in head/graphics: . libwpg libwpg03 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:20:27 -0000 Author: bapt Date: Mon Oct 6 19:20:24 2014 New Revision: 370213 URL: https://svnweb.freebsd.org/changeset/ports/370213 QAT: https://qat.redports.org/buildarchive/r370213/ Log: Import libwpg03 Make sure that libwpg is not conflicting with libwpg03 Added: head/graphics/libwpg03/ - copied from r370181, head/graphics/libwpg/ Modified: head/graphics/Makefile head/graphics/libwpg/Makefile head/graphics/libwpg/pkg-plist head/graphics/libwpg03/Makefile head/graphics/libwpg03/distinfo head/graphics/libwpg03/pkg-plist Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Oct 6 19:17:22 2014 (r370212) +++ head/graphics/Makefile Mon Oct 6 19:20:24 2014 (r370213) @@ -543,6 +543,7 @@ SUBDIR += libwmf SUBDIR += libwmf-nox11 SUBDIR += libwpg + SUBDIR += libwpg03 SUBDIR += linplasma SUBDIR += linux-XnViewMP SUBDIR += linux-adobesvg Modified: head/graphics/libwpg/Makefile ============================================================================== --- head/graphics/libwpg/Makefile Mon Oct 6 19:17:22 2014 (r370212) +++ head/graphics/libwpg/Makefile Mon Oct 6 19:20:24 2014 (r370213) @@ -2,7 +2,7 @@ PORTNAME= libwpg PORTVERSION= 0.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -19,11 +19,9 @@ SHEBANG_FILES= ${WRKSRC}/src/conv/svg/wp USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs -OPTIONS_DEFINE= DOCS - -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -PORTDOCS= * +post-stage: + @${RM} ${STAGEDIR}${PREFIX}/bin/wp* .include Modified: head/graphics/libwpg/pkg-plist ============================================================================== --- head/graphics/libwpg/pkg-plist Mon Oct 6 19:17:22 2014 (r370212) +++ head/graphics/libwpg/pkg-plist Mon Oct 6 19:20:24 2014 (r370213) @@ -1,6 +1,3 @@ -bin/wpg2raw -bin/wpg2svg -bin/wpg2svgbatch.pl include/libwpg-0.2/libwpg/WPGPaintInterface.h include/libwpg-0.2/libwpg/WPGraphics.h include/libwpg-0.2/libwpg/libwpg.h @@ -10,5 +7,3 @@ lib/libwpg-0.2.so lib/libwpg-0.2.so.2 lib/libwpg-0.2.so.2.0.2 libdata/pkgconfig/libwpg-0.2.pc -@dirrm include/libwpg-0.2/libwpg -@dirrm include/libwpg-0.2 Modified: head/graphics/libwpg03/Makefile ============================================================================== --- head/graphics/libwpg/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libwpg03/Makefile Mon Oct 6 19:20:24 2014 (r370213) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= libwpg -PORTVERSION= 0.2.2 -PORTREVISION= 2 +PORTVERSION= 0.3.0 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMESUFFIX= 03 MAINTAINER= office@FreeBSD.org COMMENT= Library and tools to work with WordPerfect Graphics (WPG) files @@ -12,18 +12,14 @@ COMMENT= Library and tools to work with LICENSE= LGPL21 MPL LICENSE_COMB= dual -LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd +LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge \ + libwpd-0.10.so:${PORTSDIR}/textproc/libwpd010 -USES= libtool:keepla pathfix perl5 pkgconfig shebangfix tar:bzip2 +USES= libtool pathfix perl5 pkgconfig shebangfix tar:bzip2 SHEBANG_FILES= ${WRKSRC}/src/conv/svg/wpg2svgbatch.pl USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -CONFIGURE_ARGS= --disable-werror - -OPTIONS_DEFINE= DOCS - -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -PORTDOCS= * +CONFIGURE_ARGS= --disable-werror --without-docs .include Modified: head/graphics/libwpg03/distinfo ============================================================================== --- head/graphics/libwpg/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libwpg03/distinfo Mon Oct 6 19:20:24 2014 (r370213) @@ -1,2 +1,2 @@ -SHA256 (libwpg-0.2.2.tar.bz2) = ccb8907bdd78e2a094204a745431d6bcfdba475354ed3caba36aaea6c9d88626 -SIZE (libwpg-0.2.2.tar.bz2) = 376802 +SHA256 (libwpg-0.3.0.tar.bz2) = 28fc3580228a82948dfc01d07abd5076c8b0df76a68702c1a81eb88fdf377348 +SIZE (libwpg-0.3.0.tar.bz2) = 381878 Modified: head/graphics/libwpg03/pkg-plist ============================================================================== --- head/graphics/libwpg/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libwpg03/pkg-plist Mon Oct 6 19:20:24 2014 (r370213) @@ -1,14 +1,9 @@ bin/wpg2raw bin/wpg2svg bin/wpg2svgbatch.pl -include/libwpg-0.2/libwpg/WPGPaintInterface.h -include/libwpg-0.2/libwpg/WPGraphics.h -include/libwpg-0.2/libwpg/libwpg.h -lib/libwpg-0.2.a -lib/libwpg-0.2.la -lib/libwpg-0.2.so -lib/libwpg-0.2.so.2 -lib/libwpg-0.2.so.2.0.2 -libdata/pkgconfig/libwpg-0.2.pc -@dirrm include/libwpg-0.2/libwpg -@dirrm include/libwpg-0.2 +include/libwpg-0.3/libwpg/WPGraphics.h +include/libwpg-0.3/libwpg/libwpg.h +lib/libwpg-0.3.so +lib/libwpg-0.3.so.3 +lib/libwpg-0.3.so.3.0.0 +libdata/pkgconfig/libwpg-0.3.pc From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:24:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD3E4A5F; Mon, 6 Oct 2014 19:24:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE91CC8D; Mon, 6 Oct 2014 19:24:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96JOw7H060507; Mon, 6 Oct 2014 19:24:58 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96JOvAl060498; Mon, 6 Oct 2014 19:24:57 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410061924.s96JOvAl060498@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 6 Oct 2014 19:24:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370214 - in head/textproc: . libvisio libvisio01 libvisio01/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:24:58 -0000 Author: bapt Date: Mon Oct 6 19:24:56 2014 New Revision: 370214 URL: https://svnweb.freebsd.org/changeset/ports/370214 QAT: https://qat.redports.org/buildarchive/r370214/ Log: Import libvisio01 Ensure libvisio01 does not conflicts with libvisio Added: head/textproc/libvisio01/ - copied from r370181, head/textproc/libvisio/ Deleted: head/textproc/libvisio01/files/ Modified: head/textproc/Makefile head/textproc/libvisio/Makefile head/textproc/libvisio/pkg-plist head/textproc/libvisio01/Makefile head/textproc/libvisio01/distinfo head/textproc/libvisio01/pkg-plist Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Oct 6 19:20:24 2014 (r370213) +++ head/textproc/Makefile Mon Oct 6 19:24:56 2014 (r370214) @@ -380,6 +380,7 @@ SUBDIR += libunibreak SUBDIR += libuninameslist SUBDIR += libvisio + SUBDIR += libvisio01 SUBDIR += libwpd SUBDIR += libwpd010 SUBDIR += libwps Modified: head/textproc/libvisio/Makefile ============================================================================== --- head/textproc/libvisio/Makefile Mon Oct 6 19:20:24 2014 (r370213) +++ head/textproc/libvisio/Makefile Mon Oct 6 19:24:56 2014 (r370214) @@ -2,7 +2,7 @@ PORTNAME= libvisio PORTVERSION= 0.0.31 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc devel MASTER_SITES= http://dev-www.libreoffice.org/src/ @@ -32,4 +32,7 @@ BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:$ CONFIGURE_ENV+= GPERF=${LOCALBASE}/bin/gperf .endif +post-stage: + @${RM} -f ${STAGEDIR}${PREFIX}/bin/vs* + .include Modified: head/textproc/libvisio/pkg-plist ============================================================================== --- head/textproc/libvisio/pkg-plist Mon Oct 6 19:20:24 2014 (r370213) +++ head/textproc/libvisio/pkg-plist Mon Oct 6 19:24:56 2014 (r370214) @@ -1,9 +1,3 @@ -bin/vss2raw -bin/vss2text -bin/vss2xhtml -bin/vsd2text -bin/vsd2raw -bin/vsd2xhtml include/libvisio-0.0/libvisio/VSDStringVector.h include/libvisio-0.0/libvisio/VisioDocument.h include/libvisio-0.0/libvisio/libvisio.h @@ -11,5 +5,3 @@ lib/libvisio-0.0.so lib/libvisio-0.0.so.0 lib/libvisio-0.0.so.0.0.31 libdata/pkgconfig/libvisio-0.0.pc -@dirrmtry include/libvisio-0.0/libvisio -@dirrmtry include/libvisio-0.0 Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libvisio01/Makefile Mon Oct 6 19:24:56 2014 (r370214) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= libvisio -PORTVERSION= 0.0.31 -PORTREVISION= 2 +PORTVERSION= 0.1.0 CATEGORIES= textproc devel MASTER_SITES= http://dev-www.libreoffice.org/src/ +PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org COMMENT= Library and tools for parsing the visio file format structure @@ -14,8 +14,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/include/boost/spirit/include/classic_core.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= libicui18n.so:${PORTSDIR}/devel/icu \ - libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ - libwpg-0.2.so:${PORTSDIR}/graphics/libwpg + librevenge-0.0.so:${PORTSDIR}/textproc/librevenge CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include Modified: head/textproc/libvisio01/distinfo ============================================================================== --- head/textproc/libvisio/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libvisio01/distinfo Mon Oct 6 19:24:56 2014 (r370214) @@ -1,2 +1,2 @@ -SHA256 (libvisio-0.0.31.tar.xz) = 6a8c5fdd3b4aaacba13d0ce86ed0abb8df9052f89b019e1dca436c2634e38ef5 -SIZE (libvisio-0.0.31.tar.xz) = 380632 +SHA256 (libvisio-0.1.0.tar.xz) = 0e4f1d49b7cd01173f846995655f2175bbdbde4eac05697bd28667723d176d6f +SIZE (libvisio-0.1.0.tar.xz) = 362740 Modified: head/textproc/libvisio01/pkg-plist ============================================================================== --- head/textproc/libvisio/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libvisio01/pkg-plist Mon Oct 6 19:24:56 2014 (r370214) @@ -4,12 +4,9 @@ bin/vss2xhtml bin/vsd2text bin/vsd2raw bin/vsd2xhtml -include/libvisio-0.0/libvisio/VSDStringVector.h -include/libvisio-0.0/libvisio/VisioDocument.h -include/libvisio-0.0/libvisio/libvisio.h -lib/libvisio-0.0.so -lib/libvisio-0.0.so.0 -lib/libvisio-0.0.so.0.0.31 -libdata/pkgconfig/libvisio-0.0.pc -@dirrmtry include/libvisio-0.0/libvisio -@dirrmtry include/libvisio-0.0 +include/libvisio-0.1/libvisio/VisioDocument.h +include/libvisio-0.1/libvisio/libvisio.h +lib/libvisio-0.1.so +lib/libvisio-0.1.so.1 +lib/libvisio-0.1.so.1.0.0 +libdata/pkgconfig/libvisio-0.1.pc From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:30:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FF51C6B; Mon, 6 Oct 2014 19:30:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BAAACC4; Mon, 6 Oct 2014 19:30:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96JUBVx061791; Mon, 6 Oct 2014 19:30:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96JU9wn061603; Mon, 6 Oct 2014 19:30:09 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410061930.s96JU9wn061603@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 6 Oct 2014 19:30:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370216 - in head/print: . libmspub libmspub01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:30:11 -0000 Author: bapt Date: Mon Oct 6 19:30:09 2014 New Revision: 370216 URL: https://svnweb.freebsd.org/changeset/ports/370216 QAT: https://qat.redports.org/buildarchive/r370216/ Log: Import libmspub01 Ensure it does not conflicts with libmspub Added: head/print/libmspub01/ - copied from r370181, head/print/libmspub/ Modified: head/print/Makefile head/print/libmspub/Makefile head/print/libmspub/pkg-plist head/print/libmspub01/Makefile head/print/libmspub01/distinfo head/print/libmspub01/pkg-plist Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Mon Oct 6 19:29:15 2014 (r370215) +++ head/print/Makefile Mon Oct 6 19:30:09 2014 (r370216) @@ -112,6 +112,7 @@ SUBDIR += libharu SUBDIR += libijs SUBDIR += libmspub + SUBDIR += libmspub01 SUBDIR += libotf SUBDIR += libpaper SUBDIR += libppd Modified: head/print/libmspub/Makefile ============================================================================== --- head/print/libmspub/Makefile Mon Oct 6 19:29:15 2014 (r370215) +++ head/print/libmspub/Makefile Mon Oct 6 19:30:09 2014 (r370216) @@ -2,7 +2,7 @@ PORTNAME= libmspub PORTVERSION= 0.0.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= print graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/ @@ -26,4 +26,7 @@ CONFIGURE_ARGS= --disable-werror --witho CONFIGURE_ENV= ZLIB_CFLAGS="-I/usr/include" ZLIB_LIBS="-lz" CPPFLAGS+= -I${LOCALBASE}/include +post-stage: + @${RM} -f ${STAGEDIR}${PREFIX}/bin/pub* + .include Modified: head/print/libmspub/pkg-plist ============================================================================== --- head/print/libmspub/pkg-plist Mon Oct 6 19:29:15 2014 (r370215) +++ head/print/libmspub/pkg-plist Mon Oct 6 19:30:09 2014 (r370216) @@ -1,5 +1,3 @@ -bin/pub2raw -bin/pub2xhtml include/libmspub-0.0/libmspub/MSPUBDocument.h include/libmspub-0.0/libmspub/MSPUBStringVector.h include/libmspub-0.0/libmspub/libmspub.h @@ -7,5 +5,3 @@ lib/libmspub-0.0.so lib/libmspub-0.0.so.0 lib/libmspub-0.0.so.0.0.6 libdata/pkgconfig/libmspub-0.0.pc -@dirrm include/libmspub-0.0/libmspub -@dirrm include/libmspub-0.0 Modified: head/print/libmspub01/Makefile ============================================================================== --- head/print/libmspub/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/print/libmspub01/Makefile Mon Oct 6 19:30:09 2014 (r370216) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= libmspub -PORTVERSION= 0.0.6 -PORTREVISION= 2 +PORTVERSION= 0.1.0 CATEGORIES= print graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/ +PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org COMMENT= Library and tools for parsing Microsoft Publisher file format @@ -14,8 +14,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/include/boost/ptr_container/ptr_map.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= libicui18n.so:${PORTSDIR}/devel/icu \ - libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ - libwpg-0.2.so:${PORTSDIR}/graphics/libwpg + librevenge-0.0.so:${PORTSDIR}/textproc/librevenge GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/print/libmspub01/distinfo ============================================================================== --- head/print/libmspub/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/print/libmspub01/distinfo Mon Oct 6 19:30:09 2014 (r370216) @@ -1,2 +1,2 @@ -SHA256 (libmspub-0.0.6.tar.xz) = 4cd4e3e9e3eef5ae676fa18415f3f342c17c28e5167d7354115a5cc2ea96a2f9 -SIZE (libmspub-0.0.6.tar.xz) = 353356 +SHA256 (libmspub-0.1.0.tar.xz) = ae6cd49d3595e37c83e12e60b1da8134372b71fbc08511b20daf52455d701f0d +SIZE (libmspub-0.1.0.tar.xz) = 339632 Modified: head/print/libmspub01/pkg-plist ============================================================================== --- head/print/libmspub/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/print/libmspub01/pkg-plist Mon Oct 6 19:30:09 2014 (r370216) @@ -1,11 +1,8 @@ bin/pub2raw bin/pub2xhtml -include/libmspub-0.0/libmspub/MSPUBDocument.h -include/libmspub-0.0/libmspub/MSPUBStringVector.h -include/libmspub-0.0/libmspub/libmspub.h -lib/libmspub-0.0.so -lib/libmspub-0.0.so.0 -lib/libmspub-0.0.so.0.0.6 -libdata/pkgconfig/libmspub-0.0.pc -@dirrm include/libmspub-0.0/libmspub -@dirrm include/libmspub-0.0 +include/libmspub-0.1/libmspub/MSPUBDocument.h +include/libmspub-0.1/libmspub/libmspub.h +lib/libmspub-0.1.so +lib/libmspub-0.1.so.1 +lib/libmspub-0.1.so.1.0.0 +libdata/pkgconfig/libmspub-0.1.pc From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 19:53:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DAB4FA; Mon, 6 Oct 2014 19:53:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07C74F5D; Mon, 6 Oct 2014 19:53:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Jr9Eg074497; Mon, 6 Oct 2014 19:53:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Jr92h074496; Mon, 6 Oct 2014 19:53:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410061953.s96Jr92h074496@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 19:53:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370217 - head/misc/sword X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 19:53:10 -0000 Author: antoine Date: Mon Oct 6 19:53:09 2014 New Revision: 370217 URL: https://svnweb.freebsd.org/changeset/ports/370217 QAT: https://qat.redports.org/buildarchive/r370217/ Log: Fix packaging Modified: head/misc/sword/pkg-plist Modified: head/misc/sword/pkg-plist ============================================================================== --- head/misc/sword/pkg-plist Mon Oct 6 19:30:09 2014 (r370216) +++ head/misc/sword/pkg-plist Mon Oct 6 19:53:09 2014 (r370217) @@ -14,7 +14,7 @@ bin/xml2gbs bin/imp2gbs bin/imp2ld bin/mod2zmod -@sample etc/sword.conf +@sample etc/sword.conf.sample include/sword/canon.h include/sword/canon_abbrevs.h include/sword/cipherfil.h From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:09:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CBD0255F; Mon, 6 Oct 2014 20:09:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B7DF5184; Mon, 6 Oct 2014 20:09:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96K9Pcm080222; Mon, 6 Oct 2014 20:09:25 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96K9PbG080221; Mon, 6 Oct 2014 20:09:25 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062009.s96K9PbG080221@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 20:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370218 - head/sysutils/nut X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:09:25 -0000 Author: antoine Date: Mon Oct 6 20:09:24 2014 New Revision: 370218 URL: https://svnweb.freebsd.org/changeset/ports/370218 QAT: https://qat.redports.org/buildarchive/r370218/ Log: Fix packaging Modified: head/sysutils/nut/Makefile Modified: head/sysutils/nut/Makefile ============================================================================== --- head/sysutils/nut/Makefile Mon Oct 6 19:53:09 2014 (r370217) +++ head/sysutils/nut/Makefile Mon Oct 6 20:09:24 2014 (r370218) @@ -52,6 +52,7 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/e --program-transform-name="" \ --localstatedir=${STATEDIR} \ --datadir=${PREFIX}/etc/nut \ + --with-devd-dir=${PREFIX}/etc/devd \ --with-drvpath=${PREFIX}/libexec/nut \ --with-statepath=${STATEDIR} \ --with-altpidpath=${STATEDIR} \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:16:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B6966C9; Mon, 6 Oct 2014 20:16:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C5BC263; Mon, 6 Oct 2014 20:16:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KGMt4084649; Mon, 6 Oct 2014 20:16:22 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KGLDe084645; Mon, 6 Oct 2014 20:16:21 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201410062016.s96KGLDe084645@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Mon, 6 Oct 2014 20:16:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370219 - in head/japanese/mozc-server: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:16:22 -0000 Author: hrs Date: Mon Oct 6 20:16:21 2014 New Revision: 370219 URL: https://svnweb.freebsd.org/changeset/ports/370219 QAT: https://qat.redports.org/buildarchive/r370219/ Log: - Fix build failure on braches with Clang older than 3.4. - Fix build failure on head due to libiconv link error. - Remove redundant patches. - Add cflags and cflags_cc flags to build_mozc.py. Deleted: head/japanese/mozc-server/files/patch-base_compiler_specific.h Modified: head/japanese/mozc-server/Makefile head/japanese/mozc-server/files/patch-build_mozc.py head/japanese/mozc-server/files/patch-gyp_common.gypi Modified: head/japanese/mozc-server/Makefile ============================================================================== --- head/japanese/mozc-server/Makefile Mon Oct 6 20:09:24 2014 (r370218) +++ head/japanese/mozc-server/Makefile Mon Oct 6 20:16:21 2014 (r370219) @@ -3,7 +3,7 @@ PORTNAME= mozc PORTVERSION= 1.15.1868.102 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese MASTER_SITES= LOCAL/hrs DISTFILES= ${DISTNAME}${EXTRACT_SUFX} @@ -22,7 +22,8 @@ LIB_DEPENDS= libprotobuf.so:${PORTSDIR}/ libzinnia.so:${PORTSDIR}/japanese/zinnia RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils -USES= compiler:c++0x pkgconfig iconv gmake tar:bzip2 python:build +USES= compiler:c++11-lang pkgconfig iconv:wchar_t gmake \ + tar:bzip2 python:build BUILD_MOZC_LIST?= mozc_server @@ -48,6 +49,21 @@ USE_GNOME= glib20 gtk20 USE_EMACS= yes .endif +# Do not use Clang 3.3 or prior because of some C++11 library issues. +.if exists(/usr/bin/clang) +_CLANGVER!= /usr/bin/clang --version 2>&1 || true +.if !defined(_CLANGVER) || \ + empty(_CLANGVER:M[0-9].[0-9]*:C/([0-9]).([0-9]).*/\1\2/g:M[0-9]*) || \ + ${_CLANGVER:M[0-9].[0-9]*:C/([0-9]).([0-9]).*/\1\2/g} < 34 +USE_GCC= yes +_CCTYPE= gcc +.else +_CCTYPE= clang +.endif +.else +_CCTYPE= ${CHOSEN_COMPILER_TYPE} +.endif + .include .if ${OSVERSION} < 800107 @@ -61,6 +77,8 @@ BROKEN= Does not compile: segfault GYP_DEFINES= use_libprotobuf=1 \ channel_dev=0 \ enable_unittest=0 \ + compiler_host="${_CCTYPE}" \ + compiler_target="${_CCTYPE}" \ zinnia_model_file="${LOCALBASE}/share/tegaki/models/zinnia/handwriting-ja.model" \ ibus_mozc_icon_path="${LOCALBASE}/share/ibus-mozc/icons/product_icon.png" \ ibus_mozc_path="${PREFIX}/libexec/ibus-engine-mozc" @@ -106,6 +124,8 @@ post-configure: ${WRKSRC}/mozcmake --server_dir="${PREFIX}/bin" \ --localbase="${LOCALBASE}" \ --ldflags="${LDFLAGS} -fstack-protector -L${LOCALBASE}/lib" \ + --cflags="${CFLAGS:Q}" \ + --cflags_cc="${CXXFLAGS:Q}" \ --include_dirs="${LOCALBASE}/include" \ ${GYP_OPTIONS} .endif Modified: head/japanese/mozc-server/files/patch-build_mozc.py ============================================================================== --- head/japanese/mozc-server/files/patch-build_mozc.py Mon Oct 6 20:09:24 2014 (r370218) +++ head/japanese/mozc-server/files/patch-build_mozc.py Mon Oct 6 20:16:21 2014 (r370219) @@ -1,16 +1,18 @@ --- build_mozc.py.orig 2014-08-31 03:36:22.000000000 +0900 -+++ build_mozc.py 2014-08-31 06:04:34.000000000 +0900 -@@ -351,6 +351,9 @@ ++++ build_mozc.py 2014-09-17 04:37:10.000000000 +0900 +@@ -351,6 +351,11 @@ parser.add_option('--version_file', dest='version_file', help='use the specified version template file', default='mozc_version_template.txt') + parser.add_option('--localbase', dest='localbase') + parser.add_option('--ldflags', dest='ldflags') ++ parser.add_option('--cflags', dest='cflags') ++ parser.add_option('--cflags_cc', dest='cflags_cc') + parser.add_option('--include_dirs', dest='include_dirs') AddTargetPlatformOption(parser) # Mac and Linux -@@ -538,7 +541,7 @@ +@@ -538,7 +543,7 @@ parser = optparse.OptionParser(usage='Usage: %prog build [options]') AddCommonOptions(parser) if IsLinux(): @@ -19,7 +21,7 @@ parser.add_option('--jobs', '-j', dest='jobs', default=('%d' % default_build_concurrency), metavar='N', help='run build jobs in parallel') -@@ -701,6 +704,13 @@ +@@ -701,6 +706,17 @@ logging.info('Building GYP command line...') gyp_options = ['--depth=.', '--include=%s/gyp/common.gypi' % SRC_DIR] @@ -28,6 +30,10 @@ + + ldflags = options.ldflags or '' + gyp_options.extend(['-D', 'ldflags=%s' % ldflags]) ++ cflags = options.cflags or '' ++ gyp_options.extend(['-D', 'cflags=%s' % cflags]) ++ cflags_cc = options.cflags_cc or '' ++ gyp_options.extend(['-D', 'cflags_cc=%s' % cflags_cc]) + include_dirs = options.include_dirs or '' + gyp_options.extend(['-D', 'include_dirs=%s' % include_dirs]) Modified: head/japanese/mozc-server/files/patch-gyp_common.gypi ============================================================================== --- head/japanese/mozc-server/files/patch-gyp_common.gypi Mon Oct 6 20:09:24 2014 (r370218) +++ head/japanese/mozc-server/files/patch-gyp_common.gypi Mon Oct 6 20:16:21 2014 (r370219) @@ -1,6 +1,66 @@ --- gyp/common.gypi.orig 2014-08-31 03:36:19.000000000 +0900 -+++ gyp/common.gypi 2014-08-31 03:46:27.000000000 +0900 -@@ -759,6 +759,8 @@ ++++ gyp/common.gypi 2014-09-17 04:33:49.000000000 +0900 +@@ -171,9 +171,9 @@ + ['target_platform=="Linux"', { + # enable_gtk_renderer represents if mozc_renderer is supported on Linux + # or not. +- 'compiler_target': 'gcc', ++ 'compiler_target': '<(compiler_target)', + 'compiler_target_version_int': 406, # GCC 4.6 or higher +- 'compiler_host': 'gcc', ++ 'compiler_host': '<(compiler_host)', + 'compiler_host_version_int': 406, # GCC 4.6 or higher + 'enable_gtk_renderer%': 1, + }, { # else +@@ -631,17 +631,20 @@ + ['compiler_target=="clang"', { + 'cflags': [ + '-Wtype-limits', ++ '<@(cflags)', + ], + 'cflags_cc': [ + '-Wno-covered-switch-default', + '-Wno-unnamed-type-template-args', + '-Wno-c++11-narrowing', +- '-std=gnu++0x', ++ '-std=c++11', ++ '<@(cflags_cc)', + ], + }], +- ['compiler_target=="clang" or compiler_target=="gcc"', { ++ ['compiler_host=="gcc"', { + 'cflags_cc': [ +- '-std=gnu++0x', ++ '-std=gnu++11', ++ '<@(cflags_cc)', + ], + }], + ], +@@ -651,17 +654,20 @@ + ['compiler_host=="clang"', { + 'cflags': [ + '-Wtype-limits', ++ '<@(cflags)', + ], + 'cflags_cc': [ + '-Wno-covered-switch-default', + '-Wno-unnamed-type-template-args', + '-Wno-c++11-narrowing', +- '-std=gnu++0x', ++ '-std=c++11', ++ '<@(cflags_cc)', + ], + }], +- ['compiler_host=="clang" or compiler_host=="gcc"', { ++ ['compiler_host=="gcc"', { + 'cflags_cc': [ +- '-std=gnu++0x', ++ '-std=gnu++11', ++ '<@(cflags_cc)', + ], + }], + ], +@@ -759,16 +765,27 @@ ['OS=="linux"', { 'defines': [ 'OS_LINUX', @@ -9,17 +69,22 @@ ], 'cflags': [ '<@(warning_cflags)', -@@ -770,6 +772,13 @@ + '-fPIC', + '-fno-exceptions', ++ '<@(cflags)', + ], + 'cflags_cc': [ + # We use deprecated and instead of upcoming # and . '-Wno-deprecated', - ], ++ '<@(cflags_cc)', ++ ], + 'include_dirs': [ + '<@(include_dirs)' + ], + 'ldflags': [ + '<@(ldflags)', + '-fstack-protector', -+ ], + ], 'conditions': [ ['target_platform!="NaCl"', { - 'cflags': [ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:16:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D5667B1; Mon, 6 Oct 2014 20:16:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07F9B26C; Mon, 6 Oct 2014 20:16:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KGasV084856; Mon, 6 Oct 2014 20:16:36 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KGZP8084850; Mon, 6 Oct 2014 20:16:35 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410062016.s96KGZP8084850@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 6 Oct 2014 20:16:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370220 - in head/biology: . ncbi-blast X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:16:37 -0000 Author: marino Date: Mon Oct 6 20:16:35 2014 New Revision: 370220 URL: https://svnweb.freebsd.org/changeset/ports/370220 QAT: https://qat.redports.org/buildarchive/r370220/ Log: Add new port biology/ncbi-blast PR: 190854 Submitted by: Jason Bacon The Basic Local Alignment Search Tool (BLAST) finds regions of local similarity between sequences. The program compares nucleotide or protein sequences to sequence databases and calculates the statistical significance of matches. BLAST can be used to infer functional and evolutionary relationships between sequences as well as help identify members of gene families. Added: head/biology/ncbi-blast/ head/biology/ncbi-blast/Makefile (contents, props changed) head/biology/ncbi-blast/distinfo (contents, props changed) head/biology/ncbi-blast/pkg-descr (contents, props changed) head/biology/ncbi-blast/pkg-plist (contents, props changed) Modified: head/biology/Makefile Modified: head/biology/Makefile ============================================================================== --- head/biology/Makefile Mon Oct 6 20:16:21 2014 (r370219) +++ head/biology/Makefile Mon Oct 6 20:16:35 2014 (r370220) @@ -40,6 +40,7 @@ SUBDIR += mrbayes SUBDIR += mummer SUBDIR += muscle + SUBDIR += ncbi-blast SUBDIR += ncbi-toolkit SUBDIR += njplot SUBDIR += ortep3 Added: head/biology/ncbi-blast/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/ncbi-blast/Makefile Mon Oct 6 20:16:35 2014 (r370220) @@ -0,0 +1,56 @@ +# Created by: Jason Bacon +# $FreeBSD$ + +PORTNAME= blast +PORTVERSION= 2.2.30 +CATEGORIES= biology +MASTER_SITES= http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${PORTVERSION}/ +PKGNAMEPREFIX= ncbi +DISTNAME= ncbi-blast-${PORTVERSION}+-src + +MAINTAINER= jwbacon@tds.net +COMMENT= NCBI implementation of Basic Local Alignment Search Tool + +LICENSE= Public_domain +LICENSE_NAME= Public Domain +LICENSE_FILE= ${WRKSRC}/scripts/projects/blast/LICENSE +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre \ + libbz2.so:${PORTSDIR}/archivers/bzip2 + +WRKSRC= ${WRKDIR}/${DISTNAME}/c++ + +GNU_CONFIGURE= yes +USES= gmake shebangfix perl5 python +SHEBANG_FILES= src/app/blast/legacy_blast.pl \ + src/app/blast/update_blastdb.pl \ + src/app/winmasker/windowmasker_2.2.22_adapter.py + +# Requires openmp +USE_GCC= yes +USE_LDCONFIG= yes + +# The test for amq can hang, but amq is not needed so just avoid the test +CONFIGURE_ENV= ncbi_cv_prog_amq_w=no + +# configure chooses /usr/local/bin/ar with no flags +# FreeBSD boost port flagged by configure as untested version +CONFIGURE_ARGS+=AR="ar cr" --without-boost + +# Fix "undefined _ThreadRuneLocale" error on 10.0 +# Fix unknown options in configure +# Add staging support to configure-generated Makefile +post-patch: + ${REINPLACE_CMD} \ + -e 's|-D_THREAD_SAFE|-D_THREAD_SAFE -D__RUNETYPE_INTERNAL|' \ + -e '/--infodir=DIR/d' \ + -e '/--mandir=DIR/d' \ + ${WRKSRC}/src/build-system/configure + ${REINPLACE_CMD} -e 's|@prefix@|${STAGEDIR}@prefix@|g' \ + ${WRKSRC}/src/build-system/Makefile.in.top + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so + +.include Added: head/biology/ncbi-blast/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/ncbi-blast/distinfo Mon Oct 6 20:16:35 2014 (r370220) @@ -0,0 +1,2 @@ +SHA256 (ncbi-blast-2.2.30+-src.tar.gz) = 7baa46cf761febf2660ddd9a8f9b5b02d12a3413561a554d2f85d4628a25aaa3 +SIZE (ncbi-blast-2.2.30+-src.tar.gz) = 18937894 Added: head/biology/ncbi-blast/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/ncbi-blast/pkg-descr Mon Oct 6 20:16:35 2014 (r370220) @@ -0,0 +1,8 @@ +The Basic Local Alignment Search Tool (BLAST) finds regions of local +similarity between sequences. The program compares nucleotide or protein +sequences to sequence databases and calculates the statistical +significance of matches. BLAST can be used to infer functional and +evolutionary relationships between sequences as well as help identify +members of gene families. + +WWW: http://blast.ncbi.nlm.nih.gov Added: head/biology/ncbi-blast/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/ncbi-blast/pkg-plist Mon Oct 6 20:16:35 2014 (r370220) @@ -0,0 +1,3894 @@ +bin/blast_formatter +bin/blastdb_aliastool +bin/blastdbcheck +bin/blastdbcmd +bin/blastdbcp +bin/blastn +bin/blastp +bin/blastx +bin/convert2blastmask +bin/datatool +bin/deltablast +bin/dustmasker +bin/gene_info_reader +bin/legacy_blast.pl +bin/makeblastdb +bin/makembindex +bin/makeprofiledb +bin/project_tree_builder +bin/psiblast +bin/rpsblast +bin/rpstblastn +bin/seedtop +bin/segmasker +bin/seqdb_demo +bin/seqdb_perf +bin/tblastn +bin/tblastx +bin/update_blastdb.pl +bin/windowmasker +bin/windowmasker_2.2.22_adapter.py +include/ncbi-tools++/algo/blast/api/bl2seq.hpp +include/ncbi-tools++/algo/blast/api/blast_advprot_options.hpp +include/ncbi-tools++/algo/blast/api/blast_aux.hpp +include/ncbi-tools++/algo/blast/api/blast_dbindex.hpp +include/ncbi-tools++/algo/blast/api/blast_exception.hpp +include/ncbi-tools++/algo/blast/api/blast_mtlock.hpp +include/ncbi-tools++/algo/blast/api/blast_nucl_options.hpp +include/ncbi-tools++/algo/blast/api/blast_options.hpp +include/ncbi-tools++/algo/blast/api/blast_options_builder.hpp +include/ncbi-tools++/algo/blast/api/blast_options_handle.hpp +include/ncbi-tools++/algo/blast/api/blast_prot_options.hpp +include/ncbi-tools++/algo/blast/api/blast_results.hpp +include/ncbi-tools++/algo/blast/api/blast_rps_options.hpp +include/ncbi-tools++/algo/blast/api/blast_seqinfosrc.hpp +include/ncbi-tools++/algo/blast/api/blast_seqinfosrc_aux.hpp +include/ncbi-tools++/algo/blast/api/blast_types.hpp +include/ncbi-tools++/algo/blast/api/blastx_options.hpp +include/ncbi-tools++/algo/blast/api/cdd_pssm_input.hpp +include/ncbi-tools++/algo/blast/api/deltablast.hpp +include/ncbi-tools++/algo/blast/api/deltablast_options.hpp +include/ncbi-tools++/algo/blast/api/disc_nucl_options.hpp +include/ncbi-tools++/algo/blast/api/effsearchspace_calc.hpp +include/ncbi-tools++/algo/blast/api/hspstream_queue.hpp +include/ncbi-tools++/algo/blast/api/local_blast.hpp +include/ncbi-tools++/algo/blast/api/local_db_adapter.hpp +include/ncbi-tools++/algo/blast/api/local_search.hpp +include/ncbi-tools++/algo/blast/api/msa_pssm_input.hpp +include/ncbi-tools++/algo/blast/api/objmgr_query_data.hpp +include/ncbi-tools++/algo/blast/api/objmgrfree_query_data.hpp +include/ncbi-tools++/algo/blast/api/phiblast_nucl_options.hpp +include/ncbi-tools++/algo/blast/api/phiblast_prot_options.hpp +include/ncbi-tools++/algo/blast/api/prelim_stage.hpp +include/ncbi-tools++/algo/blast/api/psi_pssm_input.hpp +include/ncbi-tools++/algo/blast/api/psibl2seq.hpp +include/ncbi-tools++/algo/blast/api/psiblast.hpp +include/ncbi-tools++/algo/blast/api/psiblast_iteration.hpp +include/ncbi-tools++/algo/blast/api/psiblast_options.hpp +include/ncbi-tools++/algo/blast/api/pssm_engine.hpp +include/ncbi-tools++/algo/blast/api/pssm_input.hpp +include/ncbi-tools++/algo/blast/api/query_data.hpp +include/ncbi-tools++/algo/blast/api/remote_blast.hpp +include/ncbi-tools++/algo/blast/api/remote_search.hpp +include/ncbi-tools++/algo/blast/api/repeats_filter.hpp +include/ncbi-tools++/algo/blast/api/rps_aux.hpp +include/ncbi-tools++/algo/blast/api/rpsblast_local.hpp +include/ncbi-tools++/algo/blast/api/rpstblastn_options.hpp +include/ncbi-tools++/algo/blast/api/search_strategy.hpp +include/ncbi-tools++/algo/blast/api/seedtop.hpp +include/ncbi-tools++/algo/blast/api/seqinfosrc_seqdb.hpp +include/ncbi-tools++/algo/blast/api/seqinfosrc_seqvec.hpp +include/ncbi-tools++/algo/blast/api/seqsrc_multiseq.hpp +include/ncbi-tools++/algo/blast/api/seqsrc_seqdb.hpp +include/ncbi-tools++/algo/blast/api/setup_factory.hpp +include/ncbi-tools++/algo/blast/api/sseqloc.hpp +include/ncbi-tools++/algo/blast/api/subj_ranges_set.hpp +include/ncbi-tools++/algo/blast/api/tblastn_options.hpp +include/ncbi-tools++/algo/blast/api/tblastx_options.hpp +include/ncbi-tools++/algo/blast/api/traceback_stage.hpp +include/ncbi-tools++/algo/blast/api/uniform_search.hpp +include/ncbi-tools++/algo/blast/api/version.hpp +include/ncbi-tools++/algo/blast/api/windowmask_filter.hpp +include/ncbi-tools++/algo/blast/blastinput/blast_args.hpp +include/ncbi-tools++/algo/blast/blastinput/blast_fasta_input.hpp +include/ncbi-tools++/algo/blast/blastinput/blast_input.hpp +include/ncbi-tools++/algo/blast/blastinput/blast_input_aux.hpp +include/ncbi-tools++/algo/blast/blastinput/blast_scope_src.hpp +include/ncbi-tools++/algo/blast/blastinput/blastn_args.hpp +include/ncbi-tools++/algo/blast/blastinput/blastp_args.hpp +include/ncbi-tools++/algo/blast/blastinput/blastx_args.hpp +include/ncbi-tools++/algo/blast/blastinput/cmdline_flags.hpp +include/ncbi-tools++/algo/blast/blastinput/deltablast_args.hpp +include/ncbi-tools++/algo/blast/blastinput/igblastn_args.hpp +include/ncbi-tools++/algo/blast/blastinput/igblastp_args.hpp +include/ncbi-tools++/algo/blast/blastinput/psiblast_args.hpp +include/ncbi-tools++/algo/blast/blastinput/rmblastn_args.hpp +include/ncbi-tools++/algo/blast/blastinput/rpsblast_args.hpp +include/ncbi-tools++/algo/blast/blastinput/rpstblastn_args.hpp +include/ncbi-tools++/algo/blast/blastinput/tblastn_args.hpp +include/ncbi-tools++/algo/blast/blastinput/tblastx_args.hpp +include/ncbi-tools++/algo/blast/composition_adjustment/compo_heap.h +include/ncbi-tools++/algo/blast/composition_adjustment/compo_mode_condition.h +include/ncbi-tools++/algo/blast/composition_adjustment/composition_adjustment.h +include/ncbi-tools++/algo/blast/composition_adjustment/composition_constants.h +include/ncbi-tools++/algo/blast/composition_adjustment/matrix_frequency_data.h +include/ncbi-tools++/algo/blast/composition_adjustment/nlm_linear_algebra.h +include/ncbi-tools++/algo/blast/composition_adjustment/optimize_target_freq.h +include/ncbi-tools++/algo/blast/composition_adjustment/redo_alignment.h +include/ncbi-tools++/algo/blast/composition_adjustment/smith_waterman.h +include/ncbi-tools++/algo/blast/composition_adjustment/unified_pvalues.h +include/ncbi-tools++/algo/blast/core/aa_ungapped.h +include/ncbi-tools++/algo/blast/core/blast_aalookup.h +include/ncbi-tools++/algo/blast/core/blast_aascan.h +include/ncbi-tools++/algo/blast/core/blast_def.h +include/ncbi-tools++/algo/blast/core/blast_diagnostics.h +include/ncbi-tools++/algo/blast/core/blast_encoding.h +include/ncbi-tools++/algo/blast/core/blast_engine.h +include/ncbi-tools++/algo/blast/core/blast_export.h +include/ncbi-tools++/algo/blast/core/blast_extend.h +include/ncbi-tools++/algo/blast/core/blast_filter.h +include/ncbi-tools++/algo/blast/core/blast_gapalign.h +include/ncbi-tools++/algo/blast/core/blast_hits.h +include/ncbi-tools++/algo/blast/core/blast_hspfilter.h +include/ncbi-tools++/algo/blast/core/blast_hspstream.h +include/ncbi-tools++/algo/blast/core/blast_kappa.h +include/ncbi-tools++/algo/blast/core/blast_lookup.h +include/ncbi-tools++/algo/blast/core/blast_message.h +include/ncbi-tools++/algo/blast/core/blast_nalookup.h +include/ncbi-tools++/algo/blast/core/blast_nascan.h +include/ncbi-tools++/algo/blast/core/blast_options.h +include/ncbi-tools++/algo/blast/core/blast_parameters.h +include/ncbi-tools++/algo/blast/core/blast_program.h +include/ncbi-tools++/algo/blast/core/blast_psi.h +include/ncbi-tools++/algo/blast/core/blast_query_info.h +include/ncbi-tools++/algo/blast/core/blast_rps.h +include/ncbi-tools++/algo/blast/core/blast_seg.h +include/ncbi-tools++/algo/blast/core/blast_seqsrc.h +include/ncbi-tools++/algo/blast/core/blast_seqsrc_impl.h +include/ncbi-tools++/algo/blast/core/blast_setup.h +include/ncbi-tools++/algo/blast/core/blast_stat.h +include/ncbi-tools++/algo/blast/core/blast_sw.h +include/ncbi-tools++/algo/blast/core/blast_toolkit.h +include/ncbi-tools++/algo/blast/core/blast_traceback.h +include/ncbi-tools++/algo/blast/core/blast_tune.h +include/ncbi-tools++/algo/blast/core/blast_util.h +include/ncbi-tools++/algo/blast/core/gapinfo.h +include/ncbi-tools++/algo/blast/core/gencode_singleton.h +include/ncbi-tools++/algo/blast/core/greedy_align.h +include/ncbi-tools++/algo/blast/core/hspfilter_besthit.h +include/ncbi-tools++/algo/blast/core/hspfilter_collector.h +include/ncbi-tools++/algo/blast/core/hspfilter_culling.h +include/ncbi-tools++/algo/blast/core/link_hsps.h +include/ncbi-tools++/algo/blast/core/lookup_util.h +include/ncbi-tools++/algo/blast/core/lookup_wrap.h +include/ncbi-tools++/algo/blast/core/mb_indexed_lookup.h +include/ncbi-tools++/algo/blast/core/na_ungapped.h +include/ncbi-tools++/algo/blast/core/ncbi_math.h +include/ncbi-tools++/algo/blast/core/ncbi_std.h +include/ncbi-tools++/algo/blast/core/pattern.h +include/ncbi-tools++/algo/blast/core/phi_extend.h +include/ncbi-tools++/algo/blast/core/phi_gapalign.h +include/ncbi-tools++/algo/blast/core/phi_lookup.h +include/ncbi-tools++/algo/blast/core/split_query.h +include/ncbi-tools++/algo/blast/dbindex/dbindex.hpp +include/ncbi-tools++/algo/blast/dbindex/dbindex_sp.hpp +include/ncbi-tools++/algo/blast/dbindex/sequence_istream.hpp +include/ncbi-tools++/algo/blast/dbindex/sequence_istream_bdb.hpp +include/ncbi-tools++/algo/blast/dbindex/sequence_istream_fasta.hpp +include/ncbi-tools++/algo/blast/format/blast_format.hpp +include/ncbi-tools++/algo/blast/format/blastfmtutil.hpp +include/ncbi-tools++/algo/blast/format/blastxml2_format.hpp +include/ncbi-tools++/algo/blast/format/blastxml_format.hpp +include/ncbi-tools++/algo/blast/format/build_archive.hpp +include/ncbi-tools++/algo/blast/format/data4xml2format.hpp +include/ncbi-tools++/algo/blast/format/data4xmlformat.hpp +include/ncbi-tools++/algo/blast/format/vecscreen_run.hpp +include/ncbi-tools++/algo/blast/igblast/igblast.hpp +include/ncbi-tools++/algo/dustmask/sdust.tex +include/ncbi-tools++/algo/dustmask/symdust.hpp +include/ncbi-tools++/algo/segmask/segmask.hpp +include/ncbi-tools++/algo/winmask/README.API +include/ncbi-tools++/algo/winmask/seq_masker.hpp +include/ncbi-tools++/algo/winmask/seq_masker_cache_boost.hpp +include/ncbi-tools++/algo/winmask/seq_masker_istat.hpp +include/ncbi-tools++/algo/winmask/seq_masker_istat_ascii.hpp +include/ncbi-tools++/algo/winmask/seq_masker_istat_bin.hpp +include/ncbi-tools++/algo/winmask/seq_masker_istat_factory.hpp +include/ncbi-tools++/algo/winmask/seq_masker_istat_oascii.hpp +include/ncbi-tools++/algo/winmask/seq_masker_istat_obinary.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat_ascii.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat_bin.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat_factory.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat_opt.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat_opt_ascii.hpp +include/ncbi-tools++/algo/winmask/seq_masker_ostat_opt_bin.hpp +include/ncbi-tools++/algo/winmask/seq_masker_score.hpp +include/ncbi-tools++/algo/winmask/seq_masker_score_mean.hpp +include/ncbi-tools++/algo/winmask/seq_masker_score_mean_glob.hpp +include/ncbi-tools++/algo/winmask/seq_masker_score_min.hpp +include/ncbi-tools++/algo/winmask/seq_masker_uset_array.hpp +include/ncbi-tools++/algo/winmask/seq_masker_uset_hash.hpp +include/ncbi-tools++/algo/winmask/seq_masker_uset_simple.hpp +include/ncbi-tools++/algo/winmask/seq_masker_util.hpp +include/ncbi-tools++/algo/winmask/seq_masker_window.hpp +include/ncbi-tools++/algo/winmask/seq_masker_window_ambig.hpp +include/ncbi-tools++/algo/winmask/seq_masker_window_pattern.hpp +include/ncbi-tools++/algo/winmask/seq_masker_window_pattern_ambig.hpp +include/ncbi-tools++/algo/winmask/win_mask_config.hpp +include/ncbi-tools++/algo/winmask/win_mask_counts_converter.hpp +include/ncbi-tools++/algo/winmask/win_mask_dup_table.hpp +include/ncbi-tools++/algo/winmask/win_mask_gen_counts.hpp +include/ncbi-tools++/algo/winmask/win_mask_util.hpp +include/ncbi-tools++/cgi/caf.hpp +include/ncbi-tools++/cgi/caf_encoded.hpp +include/ncbi-tools++/cgi/caf_plain.hpp +include/ncbi-tools++/cgi/cgi_exception.hpp +include/ncbi-tools++/cgi/cgi_serial.hpp +include/ncbi-tools++/cgi/cgi_session.hpp +include/ncbi-tools++/cgi/cgi_util.hpp +include/ncbi-tools++/cgi/cgiapp.hpp +include/ncbi-tools++/cgi/cgiapp_cached.hpp +include/ncbi-tools++/cgi/cgictx.hpp +include/ncbi-tools++/cgi/error_codes.hpp +include/ncbi-tools++/cgi/impl/cgi_entry_reader.hpp +include/ncbi-tools++/cgi/ncbicgi.hpp +include/ncbi-tools++/cgi/ncbicgir.hpp +include/ncbi-tools++/cgi/ncbires.hpp +include/ncbi-tools++/cgi/ref_args.hpp +include/ncbi-tools++/cgi/user_agent.hpp +include/ncbi-tools++/common/config/ncbiconf_msvc.h +include/ncbi-tools++/common/config/ncbiconf_msvc_site.h +include/ncbi-tools++/common/config/ncbiconf_universal.h +include/ncbi-tools++/common/config/ncbiconf_xcode.h +include/ncbi-tools++/common/config/ncbiconf_xcode_site.h +include/ncbi-tools++/common/header_template.hpp +include/ncbi-tools++/common/metamodules_doxygen.h +include/ncbi-tools++/common/ncbi_export.h +include/ncbi-tools++/common/ncbi_package_ver.h +include/ncbi-tools++/common/ncbi_pch_impl.hpp +include/ncbi-tools++/common/ncbi_skew_guard.h +include/ncbi-tools++/common/ncbi_source_ver.h +include/ncbi-tools++/common/ncbiconf_impl.h +include/ncbi-tools++/common/test_assert.h +include/ncbi-tools++/common/test_assert_impl.h +include/ncbi-tools++/common/test_data_path.h +include/ncbi-tools++/connect/connect_export.h +include/ncbi-tools++/connect/email_diag_handler.hpp +include/ncbi-tools++/connect/error_codes.hpp +include/ncbi-tools++/connect/ext/ncbi_crypt.h +include/ncbi-tools++/connect/ext/ncbi_dblb.h +include/ncbi-tools++/connect/ext/ncbi_dblb_svcmapper.hpp +include/ncbi-tools++/connect/ext/ncbi_ifconf.h +include/ncbi-tools++/connect/ext/ncbi_iprange.h +include/ncbi-tools++/connect/ext/ncbi_localnet.h +include/ncbi-tools++/connect/impl/server_connection.hpp +include/ncbi-tools++/connect/impl/thread_pool_for_server.hpp +include/ncbi-tools++/connect/ncbi_base64.h +include/ncbi-tools++/connect/ncbi_buffer.h +include/ncbi-tools++/connect/ncbi_conn_exception.hpp +include/ncbi-tools++/connect/ncbi_conn_reader_writer.hpp +include/ncbi-tools++/connect/ncbi_conn_stream.hpp +include/ncbi-tools++/connect/ncbi_conn_test.hpp +include/ncbi-tools++/connect/ncbi_connection.h +include/ncbi-tools++/connect/ncbi_connector.h +include/ncbi-tools++/connect/ncbi_connutil.h +include/ncbi-tools++/connect/ncbi_core.h +include/ncbi-tools++/connect/ncbi_core_cxx.hpp +include/ncbi-tools++/connect/ncbi_file_connector.h +include/ncbi-tools++/connect/ncbi_ftp_connector.h +include/ncbi-tools++/connect/ncbi_gnutls.h +include/ncbi-tools++/connect/ncbi_heapmgr.h +include/ncbi-tools++/connect/ncbi_host_info.h +include/ncbi-tools++/connect/ncbi_http_connector.h +include/ncbi-tools++/connect/ncbi_http_session.hpp +include/ncbi-tools++/connect/ncbi_memory_connector.h +include/ncbi-tools++/connect/ncbi_misc.hpp +include/ncbi-tools++/connect/ncbi_namedpipe.hpp +include/ncbi-tools++/connect/ncbi_namedpipe_connector.hpp +include/ncbi-tools++/connect/ncbi_pipe.hpp +include/ncbi-tools++/connect/ncbi_pipe_connector.hpp +include/ncbi-tools++/connect/ncbi_sendmail.h +include/ncbi-tools++/connect/ncbi_server_info.h +include/ncbi-tools++/connect/ncbi_service.h +include/ncbi-tools++/connect/ncbi_service_connector.h +include/ncbi-tools++/connect/ncbi_socket.h +include/ncbi-tools++/connect/ncbi_socket.hpp +include/ncbi-tools++/connect/ncbi_socket_connector.h +include/ncbi-tools++/connect/ncbi_socket_unix.h +include/ncbi-tools++/connect/ncbi_socket_unix.hpp +include/ncbi-tools++/connect/ncbi_types.h +include/ncbi-tools++/connect/ncbi_userhost.hpp +include/ncbi-tools++/connect/ncbi_util.h +include/ncbi-tools++/connect/server.hpp +include/ncbi-tools++/connect/server_monitor.hpp +include/ncbi-tools++/connect/services/blob_storage_netcache.hpp +include/ncbi-tools++/connect/services/clparser.hpp +include/ncbi-tools++/connect/services/compound_id.hpp +include/ncbi-tools++/connect/services/error_codes.hpp +include/ncbi-tools++/connect/services/grid_app_version_info.hpp +include/ncbi-tools++/connect/services/grid_client.hpp +include/ncbi-tools++/connect/services/grid_client_app.hpp +include/ncbi-tools++/connect/services/grid_control_thread.hpp +include/ncbi-tools++/connect/services/grid_globals.hpp +include/ncbi-tools++/connect/services/grid_rw_impl.hpp +include/ncbi-tools++/connect/services/grid_worker.hpp +include/ncbi-tools++/connect/services/grid_worker_app.hpp +include/ncbi-tools++/connect/services/json_over_uttp.hpp +include/ncbi-tools++/connect/services/named_parameters.hpp +include/ncbi-tools++/connect/services/netcache_admin.hpp +include/ncbi-tools++/connect/services/netcache_api.hpp +include/ncbi-tools++/connect/services/netcache_api_expt.hpp +include/ncbi-tools++/connect/services/netcache_key.hpp +include/ncbi-tools++/connect/services/netcomponent.hpp +include/ncbi-tools++/connect/services/neticache_client.hpp +include/ncbi-tools++/connect/services/netschedule_api.hpp +include/ncbi-tools++/connect/services/netschedule_api_expt.hpp +include/ncbi-tools++/connect/services/netschedule_key.hpp +include/ncbi-tools++/connect/services/netservice_api.hpp +include/ncbi-tools++/connect/services/netservice_api_expt.hpp +include/ncbi-tools++/connect/services/netservice_protocol_parser.hpp +include/ncbi-tools++/connect/services/netstorage.hpp +include/ncbi-tools++/connect/services/netstorage_admin.hpp +include/ncbi-tools++/connect/services/netstorage_impl.hpp +include/ncbi-tools++/connect/services/ns_client_factory.hpp +include/ncbi-tools++/connect/services/ns_job_serializer.hpp +include/ncbi-tools++/connect/services/ns_output_parser.hpp +include/ncbi-tools++/connect/services/remote_app.hpp +include/ncbi-tools++/connect/services/srv_connections.hpp +include/ncbi-tools++/connect/services/srv_connections_expt.hpp +include/ncbi-tools++/connect/services/timeline.hpp +include/ncbi-tools++/connect/services/util.hpp +include/ncbi-tools++/connect/threaded_server.hpp +include/ncbi-tools++/corelib/blob_storage.hpp +include/ncbi-tools++/corelib/ddumpable.hpp +include/ncbi-tools++/corelib/env_reg.hpp +include/ncbi-tools++/corelib/error_codes.hpp +include/ncbi-tools++/corelib/expr.hpp +include/ncbi-tools++/corelib/guard.hpp +include/ncbi-tools++/corelib/hash_impl/_hash_fun.h +include/ncbi-tools++/corelib/hash_impl/_hash_map.h +include/ncbi-tools++/corelib/hash_impl/_hash_set.h +include/ncbi-tools++/corelib/hash_impl/_hashtable.c +include/ncbi-tools++/corelib/hash_impl/_hashtable.h +include/ncbi-tools++/corelib/hash_impl/_relops_hash_cont.h +include/ncbi-tools++/corelib/hash_impl/stlp_defs.hpp +include/ncbi-tools++/corelib/hash_map.hpp +include/ncbi-tools++/corelib/hash_set.hpp +include/ncbi-tools++/corelib/impl/ncbi_atomic_defs.h +include/ncbi-tools++/corelib/impl/ncbi_dbsvcmapper.hpp +include/ncbi-tools++/corelib/impl/ncbi_java.h +include/ncbi-tools++/corelib/impl/ncbi_os_mswin.h +include/ncbi-tools++/corelib/impl/ncbi_param_impl.hpp +include/ncbi-tools++/corelib/impl/ncbi_toolkit_impl.hpp +include/ncbi-tools++/corelib/impl/ncbierror_impl.hpp +include/ncbi-tools++/corelib/impl/rwstreambuf.hpp +include/ncbi-tools++/corelib/impl/stringutf8_deprecated.hpp +include/ncbi-tools++/corelib/impl/stringutf8_deprecated.inl +include/ncbi-tools++/corelib/interprocess_lock.hpp +include/ncbi-tools++/corelib/metareg.hpp +include/ncbi-tools++/corelib/mswin_export.h +include/ncbi-tools++/corelib/mswin_no_popup.h +include/ncbi-tools++/corelib/ncbi_autoinit.hpp +include/ncbi-tools++/corelib/ncbi_base64.h +include/ncbi-tools++/corelib/ncbi_bswap.hpp +include/ncbi-tools++/corelib/ncbi_config.hpp +include/ncbi-tools++/corelib/ncbi_cookies.hpp +include/ncbi-tools++/corelib/ncbi_limits.h +include/ncbi-tools++/corelib/ncbi_limits.hpp +include/ncbi-tools++/corelib/ncbi_mask.hpp +include/ncbi-tools++/corelib/ncbi_os_mswin.hpp +include/ncbi-tools++/corelib/ncbi_os_unix.hpp +include/ncbi-tools++/corelib/ncbi_param.hpp +include/ncbi-tools++/corelib/ncbi_process.hpp +include/ncbi-tools++/corelib/ncbi_safe_static.hpp +include/ncbi-tools++/corelib/ncbi_signal.hpp +include/ncbi-tools++/corelib/ncbi_stack.hpp +include/ncbi-tools++/corelib/ncbi_strings.h +include/ncbi-tools++/corelib/ncbi_system.hpp +include/ncbi-tools++/corelib/ncbi_toolkit.hpp +include/ncbi-tools++/corelib/ncbi_tree.hpp +include/ncbi-tools++/corelib/ncbi_url.hpp +include/ncbi-tools++/corelib/ncbi_xstr.hpp +include/ncbi-tools++/corelib/ncbiapp.hpp +include/ncbi-tools++/corelib/ncbiargs.hpp +include/ncbi-tools++/corelib/ncbiatomic.h +include/ncbi-tools++/corelib/ncbiatomic.hpp +include/ncbi-tools++/corelib/ncbicfg.h +include/ncbi-tools++/corelib/ncbicntr.hpp +include/ncbi-tools++/corelib/ncbidbg.hpp +include/ncbi-tools++/corelib/ncbidiag.hpp +include/ncbi-tools++/corelib/ncbidiag.inl +include/ncbi-tools++/corelib/ncbidll.hpp +include/ncbi-tools++/corelib/ncbienv.hpp +include/ncbi-tools++/corelib/ncbierror.hpp +include/ncbi-tools++/corelib/ncbiexec.hpp +include/ncbi-tools++/corelib/ncbiexpt.hpp +include/ncbi-tools++/corelib/ncbifile.hpp +include/ncbi-tools++/corelib/ncbifloat.h +include/ncbi-tools++/corelib/ncbimempool.hpp +include/ncbi-tools++/corelib/ncbimisc.hpp +include/ncbi-tools++/corelib/ncbimtx.hpp +include/ncbi-tools++/corelib/ncbimtx.inl +include/ncbi-tools++/corelib/ncbiobj.hpp +include/ncbi-tools++/corelib/ncbireg.hpp +include/ncbi-tools++/corelib/ncbistd.hpp +include/ncbi-tools++/corelib/ncbistl.hpp +include/ncbi-tools++/corelib/ncbistr.hpp +include/ncbi-tools++/corelib/ncbistr_util.hpp +include/ncbi-tools++/corelib/ncbistre.hpp +include/ncbi-tools++/corelib/ncbithr.hpp +include/ncbi-tools++/corelib/ncbithr_conf.hpp +include/ncbi-tools++/corelib/ncbitime.hpp +include/ncbi-tools++/corelib/ncbitype.h +include/ncbi-tools++/corelib/ncbiutil.hpp +include/ncbi-tools++/corelib/obj_pool.hpp +include/ncbi-tools++/corelib/obj_store.hpp +include/ncbi-tools++/corelib/perf_log.hpp +include/ncbi-tools++/corelib/plugin_manager.hpp +include/ncbi-tools++/corelib/plugin_manager_impl.hpp +include/ncbi-tools++/corelib/plugin_manager_store.hpp +include/ncbi-tools++/corelib/reader_writer.hpp +include/ncbi-tools++/corelib/request_control.hpp +include/ncbi-tools++/corelib/request_ctx.hpp +include/ncbi-tools++/corelib/request_status.hpp +include/ncbi-tools++/corelib/resource_info.hpp +include/ncbi-tools++/corelib/rwstream.hpp +include/ncbi-tools++/corelib/stream_utils.hpp +include/ncbi-tools++/corelib/syslog.hpp +include/ncbi-tools++/corelib/tempstr.hpp +include/ncbi-tools++/corelib/test_boost.hpp +include/ncbi-tools++/corelib/test_mt.hpp +include/ncbi-tools++/corelib/version.hpp +include/ncbi-tools++/dbapi/cache/dbapi_blob_cache.hpp +include/ncbi-tools++/dbapi/dbapi.hpp +include/ncbi-tools++/dbapi/dbapi_variant_convert.hpp +include/ncbi-tools++/dbapi/driver/dbapi_conn_factory.hpp +include/ncbi-tools++/dbapi/driver/dbapi_driver_conn_mgr.hpp +include/ncbi-tools++/dbapi/driver/dbapi_driver_conn_params.hpp +include/ncbi-tools++/dbapi/driver/dbapi_driver_convert.hpp +include/ncbi-tools++/dbapi/driver/dbapi_object_convert.hpp +include/ncbi-tools++/dbapi/driver/dbapi_svc_mapper.hpp +include/ncbi-tools++/dbapi/driver/driver_mgr.hpp +include/ncbi-tools++/dbapi/driver/drivers.hpp +include/ncbi-tools++/dbapi/driver/exception.hpp +include/ncbi-tools++/dbapi/driver/impl/dbapi_driver_utils.hpp +include/ncbi-tools++/dbapi/driver/impl/dbapi_impl_cmd.hpp +include/ncbi-tools++/dbapi/driver/impl/dbapi_impl_connection.hpp +include/ncbi-tools++/dbapi/driver/impl/dbapi_impl_context.hpp +include/ncbi-tools++/dbapi/driver/impl/dbapi_impl_result.hpp +include/ncbi-tools++/dbapi/driver/impl/handle_stack.hpp +include/ncbi-tools++/dbapi/driver/interfaces.hpp +include/ncbi-tools++/dbapi/driver/odbc/interfaces.hpp +include/ncbi-tools++/dbapi/driver/odbc/unix_odbc/odbcinst.h +include/ncbi-tools++/dbapi/driver/odbc/unix_odbc/sql.h +include/ncbi-tools++/dbapi/driver/odbc/unix_odbc/sqlext.h +include/ncbi-tools++/dbapi/driver/odbc/unix_odbc/sqlfront.h +include/ncbi-tools++/dbapi/driver/odbc/unix_odbc/sqltypes.h +include/ncbi-tools++/dbapi/driver/odbc/unix_odbc/sqlucode.h +include/ncbi-tools++/dbapi/driver/public.hpp +include/ncbi-tools++/dbapi/driver/types.hpp +include/ncbi-tools++/dbapi/driver/util/blobstore.hpp +include/ncbi-tools++/dbapi/driver/util/numeric_convert.hpp +include/ncbi-tools++/dbapi/driver/util/parameters.hpp +include/ncbi-tools++/dbapi/driver/util/pointer_pot.hpp +include/ncbi-tools++/dbapi/driver_mgr.hpp +include/ncbi-tools++/dbapi/error_codes.hpp +include/ncbi-tools++/dbapi/variant.hpp +include/ncbi-tools++/html/commentdiag.hpp +include/ncbi-tools++/html/components.hpp +include/ncbi-tools++/html/components.inl +include/ncbi-tools++/html/error_codes.hpp +include/ncbi-tools++/html/factory.hpp +include/ncbi-tools++/html/html.hpp +include/ncbi-tools++/html/html.inl +include/ncbi-tools++/html/html_exception.hpp +include/ncbi-tools++/html/htmlhelper.hpp +include/ncbi-tools++/html/indentstream.hpp +include/ncbi-tools++/html/node.hpp +include/ncbi-tools++/html/node.inl +include/ncbi-tools++/html/nodemap.hpp +include/ncbi-tools++/html/page.hpp +include/ncbi-tools++/html/pager.hpp +include/ncbi-tools++/html/selection.hpp +include/ncbi-tools++/html/writer_htmlenc.hpp +include/ncbi-tools++/ncbi_pch.hpp +include/ncbi-tools++/ncbi_source_ver.h +include/ncbi-tools++/ncbiconf.h +include/ncbi-tools++/ncbiconf_unix.h +include/ncbi-tools++/objects/access/.cvsignore +include/ncbi-tools++/objects/access/Link_set.hpp +include/ncbi-tools++/objects/access/Link_set_.hpp +include/ncbi-tools++/objects/access/NCBI_Access_module.hpp +include/ncbi-tools++/objects/access/access__.hpp +include/ncbi-tools++/objects/biblio/.cvsignore +include/ncbi-tools++/objects/biblio/Affil.hpp +include/ncbi-tools++/objects/biblio/Affil_.hpp +include/ncbi-tools++/objects/biblio/ArticleId.hpp +include/ncbi-tools++/objects/biblio/ArticleIdSet.hpp +include/ncbi-tools++/objects/biblio/ArticleIdSet_.hpp +include/ncbi-tools++/objects/biblio/ArticleId_.hpp +include/ncbi-tools++/objects/biblio/Auth_list.hpp +include/ncbi-tools++/objects/biblio/Auth_list_.hpp +include/ncbi-tools++/objects/biblio/Author.hpp +include/ncbi-tools++/objects/biblio/Author_.hpp +include/ncbi-tools++/objects/biblio/CitRetract.hpp +include/ncbi-tools++/objects/biblio/CitRetract_.hpp +include/ncbi-tools++/objects/biblio/Cit_art.hpp +include/ncbi-tools++/objects/biblio/Cit_art_.hpp +include/ncbi-tools++/objects/biblio/Cit_book.hpp +include/ncbi-tools++/objects/biblio/Cit_book_.hpp +include/ncbi-tools++/objects/biblio/Cit_gen.hpp +include/ncbi-tools++/objects/biblio/Cit_gen_.hpp +include/ncbi-tools++/objects/biblio/Cit_jour.hpp +include/ncbi-tools++/objects/biblio/Cit_jour_.hpp +include/ncbi-tools++/objects/biblio/Cit_let.hpp +include/ncbi-tools++/objects/biblio/Cit_let_.hpp +include/ncbi-tools++/objects/biblio/Cit_pat.hpp +include/ncbi-tools++/objects/biblio/Cit_pat_.hpp +include/ncbi-tools++/objects/biblio/Cit_proc.hpp +include/ncbi-tools++/objects/biblio/Cit_proc_.hpp +include/ncbi-tools++/objects/biblio/Cit_sub.hpp +include/ncbi-tools++/objects/biblio/Cit_sub_.hpp +include/ncbi-tools++/objects/biblio/DOI.hpp +include/ncbi-tools++/objects/biblio/DOI_.hpp +include/ncbi-tools++/objects/biblio/Id_pat.hpp +include/ncbi-tools++/objects/biblio/Id_pat_.hpp +include/ncbi-tools++/objects/biblio/Imprint.hpp +include/ncbi-tools++/objects/biblio/Imprint_.hpp +include/ncbi-tools++/objects/biblio/MedlineUID.hpp +include/ncbi-tools++/objects/biblio/MedlineUID_.hpp +include/ncbi-tools++/objects/biblio/Meeting.hpp +include/ncbi-tools++/objects/biblio/Meeting_.hpp +include/ncbi-tools++/objects/biblio/NCBI_Biblio_module.hpp +include/ncbi-tools++/objects/biblio/PII.hpp +include/ncbi-tools++/objects/biblio/PII_.hpp +include/ncbi-tools++/objects/biblio/Patent_priority.hpp +include/ncbi-tools++/objects/biblio/Patent_priority_.hpp +include/ncbi-tools++/objects/biblio/PmPid.hpp +include/ncbi-tools++/objects/biblio/PmPid_.hpp +include/ncbi-tools++/objects/biblio/PmcID.hpp +include/ncbi-tools++/objects/biblio/PmcID_.hpp +include/ncbi-tools++/objects/biblio/PmcPid.hpp +include/ncbi-tools++/objects/biblio/PmcPid_.hpp +include/ncbi-tools++/objects/biblio/PubMedId.hpp +include/ncbi-tools++/objects/biblio/PubMedId_.hpp +include/ncbi-tools++/objects/biblio/PubStatus.hpp +include/ncbi-tools++/objects/biblio/PubStatusDate.hpp +include/ncbi-tools++/objects/biblio/PubStatusDateSet.hpp +include/ncbi-tools++/objects/biblio/PubStatusDateSet_.hpp +include/ncbi-tools++/objects/biblio/PubStatusDate_.hpp +include/ncbi-tools++/objects/biblio/PubStatus_.hpp +include/ncbi-tools++/objects/biblio/Title.hpp +include/ncbi-tools++/objects/biblio/Title_.hpp +include/ncbi-tools++/objects/biblio/biblio__.hpp +include/ncbi-tools++/objects/biblio/biblio_macros.hpp +include/ncbi-tools++/objects/biblio/citation_base.hpp +include/ncbi-tools++/objects/biotree/.cvsignore +include/ncbi-tools++/objects/biotree/BioTreeContainer.hpp +include/ncbi-tools++/objects/biotree/BioTreeContainer_.hpp +include/ncbi-tools++/objects/biotree/DistanceMatrix.hpp +include/ncbi-tools++/objects/biotree/DistanceMatrix_.hpp +include/ncbi-tools++/objects/biotree/FeatureDescr.hpp +include/ncbi-tools++/objects/biotree/FeatureDescr_.hpp +include/ncbi-tools++/objects/biotree/FeatureDictSet.hpp +include/ncbi-tools++/objects/biotree/FeatureDictSet_.hpp +include/ncbi-tools++/objects/biotree/NCBI_BioTree_module.hpp +include/ncbi-tools++/objects/biotree/Node.hpp +include/ncbi-tools++/objects/biotree/NodeFeature.hpp +include/ncbi-tools++/objects/biotree/NodeFeatureSet.hpp +include/ncbi-tools++/objects/biotree/NodeFeatureSet_.hpp +include/ncbi-tools++/objects/biotree/NodeFeature_.hpp +include/ncbi-tools++/objects/biotree/NodeSet.hpp +include/ncbi-tools++/objects/biotree/NodeSet_.hpp +include/ncbi-tools++/objects/biotree/Node_.hpp +include/ncbi-tools++/objects/biotree/biotree__.hpp +include/ncbi-tools++/objects/blast/.cvsignore +include/ncbi-tools++/objects/blast/.cvsignore.extra +include/ncbi-tools++/objects/blast/Bla_com_opt_db_res_by_orga.hpp +include/ncbi-tools++/objects/blast/Bla_com_opt_db_res_by_orga_.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_disco_megab.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_disco_megab_.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_nucle_query.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_nucle_query_.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_query_filte.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_query_filte_.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_repea_filte.hpp +include/ncbi-tools++/objects/blast/Blas_comm_opti_repea_filte_.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_resul_reply.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_resul_reply_.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_resul_reque.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_resul_reque_.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_statu_reply.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_statu_reply_.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_statu_reque.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_statu_reque_.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_strat_reply.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_strat_reply_.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_strat_reque.hpp +include/ncbi-tools++/objects/blast/Blas_get_searc_strat_reque_.hpp +include/ncbi-tools++/objects/blast/Blas_get_windo_taxid_reply.hpp +include/ncbi-tools++/objects/blast/Blas_get_windo_taxid_reply_.hpp +include/ncbi-tools++/objects/blast/Blas_queu_searc_reque_lite.hpp +include/ncbi-tools++/objects/blast/Blas_queu_searc_reque_lite_.hpp +include/ncbi-tools++/objects/blast/Blast4_alignment_for_query.hpp +include/ncbi-tools++/objects/blast/Blast4_alignment_for_query_.hpp +include/ncbi-tools++/objects/blast/Blast4_archive.hpp +include/ncbi-tools++/objects/blast/Blast4_archive_.hpp +include/ncbi-tools++/objects/blast/Blast4_common_options.hpp +include/ncbi-tools++/objects/blast/Blast4_common_options_.hpp +include/ncbi-tools++/objects/blast/Blast4_cutoff.hpp +include/ncbi-tools++/objects/blast/Blast4_cutoff_.hpp +include/ncbi-tools++/objects/blast/Blast4_database.hpp +include/ncbi-tools++/objects/blast/Blast4_database_.hpp +include/ncbi-tools++/objects/blast/Blast4_database_info.hpp +include/ncbi-tools++/objects/blast/Blast4_database_info_.hpp +include/ncbi-tools++/objects/blast/Blast4_error.hpp +include/ncbi-tools++/objects/blast/Blast4_error_.hpp +include/ncbi-tools++/objects/blast/Blast4_error_code.hpp +include/ncbi-tools++/objects/blast/Blast4_error_code_.hpp +include/ncbi-tools++/objects/blast/Blast4_error_flags.hpp +include/ncbi-tools++/objects/blast/Blast4_error_flags_.hpp +include/ncbi-tools++/objects/blast/Blast4_finish_params_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_finish_params_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_frame_type.hpp +include/ncbi-tools++/objects/blast/Blast4_frame_type_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_databa_ex_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_databa_ex_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_databases_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_databases_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_matrices_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_matrices_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_parameter_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_parameter_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_paramsets_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_paramsets_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_programs_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_programs_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_queries_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_queries_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_seq_parts_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_seq_parts_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_sequenc_request.hpp +include/ncbi-tools++/objects/blast/Blast4_get_sequenc_request_.hpp +include/ncbi-tools++/objects/blast/Blast4_get_sequences_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_get_sequences_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_ka_block.hpp +include/ncbi-tools++/objects/blast/Blast4_ka_block_.hpp +include/ncbi-tools++/objects/blast/Blast4_mask.hpp +include/ncbi-tools++/objects/blast/Blast4_mask_.hpp +include/ncbi-tools++/objects/blast/Blast4_matrix_id.hpp +include/ncbi-tools++/objects/blast/Blast4_matrix_id_.hpp +include/ncbi-tools++/objects/blast/Blast4_options_lite.hpp +include/ncbi-tools++/objects/blast/Blast4_options_lite_.hpp +include/ncbi-tools++/objects/blast/Blast4_parameter.hpp +include/ncbi-tools++/objects/blast/Blast4_parameter_.hpp +include/ncbi-tools++/objects/blast/Blast4_parameter_info.hpp +include/ncbi-tools++/objects/blast/Blast4_parameter_info_.hpp +include/ncbi-tools++/objects/blast/Blast4_parameters.hpp +include/ncbi-tools++/objects/blast/Blast4_parameters_.hpp +include/ncbi-tools++/objects/blast/Blast4_phi_alignments.hpp +include/ncbi-tools++/objects/blast/Blast4_phi_alignments_.hpp +include/ncbi-tools++/objects/blast/Blast4_program_info.hpp +include/ncbi-tools++/objects/blast/Blast4_program_info_.hpp +include/ncbi-tools++/objects/blast/Blast4_queries.hpp +include/ncbi-tools++/objects/blast/Blast4_queries_.hpp +include/ncbi-tools++/objects/blast/Blast4_queue_search_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_queue_search_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_queue_search_reques.hpp +include/ncbi-tools++/objects/blast/Blast4_queue_search_reques_.hpp +include/ncbi-tools++/objects/blast/Blast4_range.hpp +include/ncbi-tools++/objects/blast/Blast4_range_.hpp +include/ncbi-tools++/objects/blast/Blast4_reply.hpp +include/ncbi-tools++/objects/blast/Blast4_reply_.hpp +include/ncbi-tools++/objects/blast/Blast4_reply_body.hpp +include/ncbi-tools++/objects/blast/Blast4_reply_body_.hpp +include/ncbi-tools++/objects/blast/Blast4_request.hpp +include/ncbi-tools++/objects/blast/Blast4_request_.hpp +include/ncbi-tools++/objects/blast/Blast4_request_body.hpp +include/ncbi-tools++/objects/blast/Blast4_request_body_.hpp +include/ncbi-tools++/objects/blast/Blast4_residue_type.hpp +include/ncbi-tools++/objects/blast/Blast4_residue_type_.hpp +include/ncbi-tools++/objects/blast/Blast4_result_types.hpp +include/ncbi-tools++/objects/blast/Blast4_result_types_.hpp +include/ncbi-tools++/objects/blast/Blast4_seq_part_data.hpp +include/ncbi-tools++/objects/blast/Blast4_seq_part_data_.hpp +include/ncbi-tools++/objects/blast/Blast4_seqtech.hpp +include/ncbi-tools++/objects/blast/Blast4_seqtech_.hpp +include/ncbi-tools++/objects/blast/Blast4_simple_alignment.hpp +include/ncbi-tools++/objects/blast/Blast4_simple_alignment_.hpp +include/ncbi-tools++/objects/blast/Blast4_simple_results.hpp +include/ncbi-tools++/objects/blast/Blast4_simple_results_.hpp +include/ncbi-tools++/objects/blast/Blast4_strand_type.hpp +include/ncbi-tools++/objects/blast/Blast4_strand_type_.hpp +include/ncbi-tools++/objects/blast/Blast4_subject.hpp +include/ncbi-tools++/objects/blast/Blast4_subject_.hpp +include/ncbi-tools++/objects/blast/Blast4_task_info.hpp +include/ncbi-tools++/objects/blast/Blast4_task_info_.hpp +include/ncbi-tools++/objects/blast/Blast4_value.hpp +include/ncbi-tools++/objects/blast/Blast4_value_.hpp +include/ncbi-tools++/objects/blast/Blast_commo_optio_db_restr.hpp +include/ncbi-tools++/objects/blast/Blast_commo_optio_db_restr_.hpp +include/ncbi-tools++/objects/blast/Blast_common_option_scorin.hpp +include/ncbi-tools++/objects/blast/Blast_common_option_scorin_.hpp +include/ncbi-tools++/objects/blast/Blast_finish_params_reques.hpp +include/ncbi-tools++/objects/blast/Blast_finish_params_reques_.hpp +include/ncbi-tools++/objects/blast/Blast_get_databa_ex_reques.hpp +include/ncbi-tools++/objects/blast/Blast_get_databa_ex_reques_.hpp +include/ncbi-tools++/objects/blast/Blast_get_proto_info_reply.hpp +include/ncbi-tools++/objects/blast/Blast_get_proto_info_reply_.hpp +include/ncbi-tools++/objects/blast/Blast_get_proto_info_reque.hpp +include/ncbi-tools++/objects/blast/Blast_get_proto_info_reque_.hpp +include/ncbi-tools++/objects/blast/Blast_get_reque_info_reply.hpp +include/ncbi-tools++/objects/blast/Blast_get_reque_info_reply_.hpp +include/ncbi-tools++/objects/blast/Blast_get_reque_info_reque.hpp +include/ncbi-tools++/objects/blast/Blast_get_reque_info_reque_.hpp +include/ncbi-tools++/objects/blast/Blast_get_searc_info_reply.hpp +include/ncbi-tools++/objects/blast/Blast_get_searc_info_reply_.hpp +include/ncbi-tools++/objects/blast/Blast_get_searc_info_reque.hpp +include/ncbi-tools++/objects/blast/Blast_get_searc_info_reque_.hpp +include/ncbi-tools++/objects/blast/Blast_get_seq_parts_reques.hpp +include/ncbi-tools++/objects/blast/Blast_get_seq_parts_reques_.hpp +include/ncbi-tools++/objects/blast/NCBI_Blast4_module.hpp +include/ncbi-tools++/objects/blast/blast__.hpp +include/ncbi-tools++/objects/blast/blastclient.hpp +include/ncbi-tools++/objects/blast/blastclient_.hpp +include/ncbi-tools++/objects/blast/names.hpp +include/ncbi-tools++/objects/blastdb/.cvsignore +include/ncbi-tools++/objects/blastdb/Blast_db_mask_info.hpp +include/ncbi-tools++/objects/blastdb/Blast_db_mask_info_.hpp +include/ncbi-tools++/objects/blastdb/Blast_def_line.hpp +include/ncbi-tools++/objects/blastdb/Blast_def_line_.hpp +include/ncbi-tools++/objects/blastdb/Blast_def_line_set.hpp +include/ncbi-tools++/objects/blastdb/Blast_def_line_set_.hpp +include/ncbi-tools++/objects/blastdb/Blast_filter_program.hpp +include/ncbi-tools++/objects/blastdb/Blast_filter_program_.hpp +include/ncbi-tools++/objects/blastdb/Blast_mask_list.hpp +include/ncbi-tools++/objects/blastdb/Blast_mask_list_.hpp +include/ncbi-tools++/objects/blastdb/NCBI_BlastDL_module.hpp +include/ncbi-tools++/objects/blastdb/blastdb__.hpp +include/ncbi-tools++/objects/blastdb/defline_extra.hpp +include/ncbi-tools++/objects/blastxml/.cvsignore +include/ncbi-tools++/objects/blastxml/BlastOutput.hpp +include/ncbi-tools++/objects/blastxml/BlastOutput_.hpp +include/ncbi-tools++/objects/blastxml/Hit.hpp +include/ncbi-tools++/objects/blastxml/Hit_.hpp +include/ncbi-tools++/objects/blastxml/Hsp.hpp +include/ncbi-tools++/objects/blastxml/Hsp_.hpp +include/ncbi-tools++/objects/blastxml/Iteration.hpp +include/ncbi-tools++/objects/blastxml/Iteration_.hpp +include/ncbi-tools++/objects/blastxml/NCBI_BlastOutput_module.hpp +include/ncbi-tools++/objects/blastxml/Parameters.hpp +include/ncbi-tools++/objects/blastxml/Parameters_.hpp +include/ncbi-tools++/objects/blastxml/Statistics.hpp +include/ncbi-tools++/objects/blastxml/Statistics_.hpp +include/ncbi-tools++/objects/blastxml/blastxml__.hpp +include/ncbi-tools++/objects/blastxml2/BlastOutput.hpp +include/ncbi-tools++/objects/blastxml2/BlastOutput_.hpp +include/ncbi-tools++/objects/blastxml2/Err.hpp +include/ncbi-tools++/objects/blastxml2/Err_.hpp +include/ncbi-tools++/objects/blastxml2/Hit.hpp +include/ncbi-tools++/objects/blastxml2/HitDescr.hpp +include/ncbi-tools++/objects/blastxml2/HitDescr_.hpp +include/ncbi-tools++/objects/blastxml2/Hit_.hpp +include/ncbi-tools++/objects/blastxml2/Hsp.hpp +include/ncbi-tools++/objects/blastxml2/Hsp_.hpp +include/ncbi-tools++/objects/blastxml2/Iteration.hpp +include/ncbi-tools++/objects/blastxml2/Iteration_.hpp +include/ncbi-tools++/objects/blastxml2/NCBI_BlastOutput_module.hpp +include/ncbi-tools++/objects/blastxml2/Parameters.hpp +include/ncbi-tools++/objects/blastxml2/Parameters_.hpp +include/ncbi-tools++/objects/blastxml2/Range.hpp +include/ncbi-tools++/objects/blastxml2/Range_.hpp +include/ncbi-tools++/objects/blastxml2/Report.hpp +include/ncbi-tools++/objects/blastxml2/Report_.hpp +include/ncbi-tools++/objects/blastxml2/Results.hpp +include/ncbi-tools++/objects/blastxml2/Results_.hpp +include/ncbi-tools++/objects/blastxml2/Search.hpp +include/ncbi-tools++/objects/blastxml2/Search_.hpp +include/ncbi-tools++/objects/blastxml2/Statistics.hpp +include/ncbi-tools++/objects/blastxml2/Statistics_.hpp +include/ncbi-tools++/objects/blastxml2/Target.hpp +include/ncbi-tools++/objects/blastxml2/Target_.hpp +include/ncbi-tools++/objects/blastxml2/blastxml2__.hpp +include/ncbi-tools++/objects/cdd/.cvsignore +include/ncbi-tools++/objects/cdd/Algorithm_type.hpp +include/ncbi-tools++/objects/cdd/Algorithm_type_.hpp +include/ncbi-tools++/objects/cdd/Align_annot.hpp +include/ncbi-tools++/objects/cdd/Align_annot_.hpp +include/ncbi-tools++/objects/cdd/Align_annot_set.hpp +include/ncbi-tools++/objects/cdd/Align_annot_set_.hpp +include/ncbi-tools++/objects/cdd/Cdd.hpp +include/ncbi-tools++/objects/cdd/Cdd_.hpp +include/ncbi-tools++/objects/cdd/Cdd_Project.hpp +include/ncbi-tools++/objects/cdd/Cdd_Project_.hpp +include/ncbi-tools++/objects/cdd/Cdd_Script.hpp +include/ncbi-tools++/objects/cdd/Cdd_Script_.hpp +include/ncbi-tools++/objects/cdd/Cdd_Viewer.hpp +include/ncbi-tools++/objects/cdd/Cdd_Viewer_.hpp +include/ncbi-tools++/objects/cdd/Cdd_Viewer_Rect.hpp +include/ncbi-tools++/objects/cdd/Cdd_Viewer_Rect_.hpp +include/ncbi-tools++/objects/cdd/Cdd_book_ref.hpp +include/ncbi-tools++/objects/cdd/Cdd_book_ref_.hpp +include/ncbi-tools++/objects/cdd/Cdd_descr.hpp +include/ncbi-tools++/objects/cdd/Cdd_descr_.hpp +include/ncbi-tools++/objects/cdd/Cdd_descr_set.hpp +include/ncbi-tools++/objects/cdd/Cdd_descr_set_.hpp +include/ncbi-tools++/objects/cdd/Cdd_id.hpp +include/ncbi-tools++/objects/cdd/Cdd_id_.hpp +include/ncbi-tools++/objects/cdd/Cdd_id_set.hpp +include/ncbi-tools++/objects/cdd/Cdd_id_set_.hpp +include/ncbi-tools++/objects/cdd/Cdd_org_ref.hpp +include/ncbi-tools++/objects/cdd/Cdd_org_ref_.hpp +include/ncbi-tools++/objects/cdd/Cdd_org_ref_set.hpp +include/ncbi-tools++/objects/cdd/Cdd_org_ref_set_.hpp +include/ncbi-tools++/objects/cdd/Cdd_pref_node_descr.hpp +include/ncbi-tools++/objects/cdd/Cdd_pref_node_descr_.hpp +include/ncbi-tools++/objects/cdd/Cdd_pref_node_descr_set.hpp +include/ncbi-tools++/objects/cdd/Cdd_pref_node_descr_set_.hpp +include/ncbi-tools++/objects/cdd/Cdd_pref_nodes.hpp +include/ncbi-tools++/objects/cdd/Cdd_pref_nodes_.hpp +include/ncbi-tools++/objects/cdd/Cdd_repeat.hpp +include/ncbi-tools++/objects/cdd/Cdd_repeat_.hpp +include/ncbi-tools++/objects/cdd/Cdd_set.hpp +include/ncbi-tools++/objects/cdd/Cdd_set_.hpp +include/ncbi-tools++/objects/cdd/Cdd_tree.hpp +include/ncbi-tools++/objects/cdd/Cdd_tree_.hpp +include/ncbi-tools++/objects/cdd/Cdd_tree_set.hpp +include/ncbi-tools++/objects/cdd/Cdd_tree_set_.hpp +include/ncbi-tools++/objects/cdd/Domain_parent.hpp +include/ncbi-tools++/objects/cdd/Domain_parent_.hpp +include/ncbi-tools++/objects/cdd/Feature_evidence.hpp +include/ncbi-tools++/objects/cdd/Feature_evidence_.hpp +include/ncbi-tools++/objects/cdd/Global_id.hpp +include/ncbi-tools++/objects/cdd/Global_id_.hpp +include/ncbi-tools++/objects/cdd/Matrix.hpp +include/ncbi-tools++/objects/cdd/Matrix_.hpp +include/ncbi-tools++/objects/cdd/NCBI_Cdd_module.hpp +include/ncbi-tools++/objects/cdd/Node_annotation.hpp +include/ncbi-tools++/objects/cdd/Node_annotation_.hpp +include/ncbi-tools++/objects/cdd/Reject_id.hpp +include/ncbi-tools++/objects/cdd/Reject_id_.hpp +include/ncbi-tools++/objects/cdd/SeqTree_node.hpp +include/ncbi-tools++/objects/cdd/SeqTree_node_.hpp +include/ncbi-tools++/objects/cdd/Sequence_tree.hpp +include/ncbi-tools++/objects/cdd/Sequence_tree_.hpp +include/ncbi-tools++/objects/cdd/Triangle.hpp +include/ncbi-tools++/objects/cdd/Triangle_.hpp +include/ncbi-tools++/objects/cdd/Update_align.hpp +include/ncbi-tools++/objects/cdd/Update_align_.hpp +include/ncbi-tools++/objects/cdd/Update_comment.hpp +include/ncbi-tools++/objects/cdd/Update_comment_.hpp +include/ncbi-tools++/objects/cdd/cdd__.hpp +include/ncbi-tools++/objects/cn3d/.cvsignore +include/ncbi-tools++/objects/cn3d/Cn3d_GL_matrix.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_GL_matrix_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_backbone_label_style.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_backbone_label_style_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_backbone_style.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_backbone_style_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_backbone_type.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_backbone_type_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_color.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_color_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_color_scheme.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_color_scheme_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_drawing_style.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_drawing_style_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_general_style.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_general_style_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_molecule_location.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_molecule_location_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_object_location.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_object_location_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_residue_range.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_residue_range_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_dictionary.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_dictionary_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_settings.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_settings_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_settings_set.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_settings_set_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_table_id.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_table_id_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_table_item.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_style_table_item_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_user_annotation.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_user_annotation_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_user_annotations.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_user_annotations_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_vector.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_vector_.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_view_settings.hpp +include/ncbi-tools++/objects/cn3d/Cn3d_view_settings_.hpp +include/ncbi-tools++/objects/cn3d/NCBI_Cn3d_module.hpp +include/ncbi-tools++/objects/cn3d/cn3d__.hpp +include/ncbi-tools++/objects/coords/.cvsignore +include/ncbi-tools++/objects/coords/HGVS_Coordinate.hpp +include/ncbi-tools++/objects/coords/HGVS_Coordinate_.hpp +include/ncbi-tools++/objects/coords/HGVS_Coordinate_Set.hpp +include/ncbi-tools++/objects/coords/HGVS_Coordinate_Set_.hpp +include/ncbi-tools++/objects/coords/NCBI_HGVSCoordinate_module.hpp +include/ncbi-tools++/objects/coords/objcoords__.hpp *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:17:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 342D7918; Mon, 6 Oct 2014 20:17:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 205C6280; Mon, 6 Oct 2014 20:17:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KHpJW085101; Mon, 6 Oct 2014 20:17:51 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KHoaq085100; Mon, 6 Oct 2014 20:17:50 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062017.s96KHoaq085100@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 20:17:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370221 - head/graphics/geos X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:17:51 -0000 Author: antoine Date: Mon Oct 6 20:17:50 2014 New Revision: 370221 URL: https://svnweb.freebsd.org/changeset/ports/370221 QAT: https://qat.redports.org/buildarchive/r370221/ Log: Fix plist Modified: head/graphics/geos/pkg-plist Modified: head/graphics/geos/pkg-plist ============================================================================== --- head/graphics/geos/pkg-plist Mon Oct 6 20:16:35 2014 (r370220) +++ head/graphics/geos/pkg-plist Mon Oct 6 20:17:50 2014 (r370221) @@ -375,7 +375,6 @@ include/geos_c.h lib/libgeos-%%PORTVERSION%%.so lib/libgeos.a lib/libgeos.so -lib/libgeos.so.0 lib/libgeos_c.a lib/libgeos_c.so lib/libgeos_c.so.1 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:20:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EB1DA35; Mon, 6 Oct 2014 20:20:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A9E4354; Mon, 6 Oct 2014 20:20:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KKsxP087893; Mon, 6 Oct 2014 20:20:54 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KKsD1087892; Mon, 6 Oct 2014 20:20:54 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062020.s96KKsD1087892@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 20:20:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370222 - head/games/xpuyopuyo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:20:54 -0000 Author: antoine Date: Mon Oct 6 20:20:53 2014 New Revision: 370222 URL: https://svnweb.freebsd.org/changeset/ports/370222 QAT: https://qat.redports.org/buildarchive/r370222/ Log: Fix plist Modified: head/games/xpuyopuyo/pkg-plist Modified: head/games/xpuyopuyo/pkg-plist ============================================================================== --- head/games/xpuyopuyo/pkg-plist Mon Oct 6 20:17:50 2014 (r370221) +++ head/games/xpuyopuyo/pkg-plist Mon Oct 6 20:20:53 2014 (r370222) @@ -1,7 +1,5 @@ bin/xpuyopuyo man/man6/xpuyopuyo.6.gz -%%GNOME:%%share/gnome/apps/Games/xpuyopuyo.desktop -%%GNOME:%%share/pixmaps/xpuyopuyo.xpm %%DATADIR%%/copying.txt %%DATADIR%%/sounds/game.xm %%DATADIR%%/sounds/gameover.xm From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:27:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E30FBFB; Mon, 6 Oct 2014 20:27:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A3C63B7; Mon, 6 Oct 2014 20:27:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KRF6D089793; Mon, 6 Oct 2014 20:27:15 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KRFsA089792; Mon, 6 Oct 2014 20:27:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062027.s96KRFsA089792@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 20:27:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370223 - head/games/mangband X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:27:15 -0000 Author: antoine Date: Mon Oct 6 20:27:14 2014 New Revision: 370223 URL: https://svnweb.freebsd.org/changeset/ports/370223 QAT: https://qat.redports.org/buildarchive/r370223/ Log: Fix packaging Modified: head/games/mangband/pkg-plist Modified: head/games/mangband/pkg-plist ============================================================================== --- head/games/mangband/pkg-plist Mon Oct 6 20:20:53 2014 (r370222) +++ head/games/mangband/pkg-plist Mon Oct 6 20:27:14 2014 (r370223) @@ -1,10 +1,6 @@ -@group games -@mode 2550 -bin/mangband -@mode -@group +@(,games,2550) bin/mangband bin/mangclient -@sample %%ETCDIR%%/mangband.cfg +@sample etc/mangband.cfg.sample %%DATADIR%%/data/scores.raw %%DATADIR%%/edit/artifact.txt %%DATADIR%%/edit/ego_item.txt @@ -94,15 +90,3 @@ bin/mangclient %%DATADIR%%/xtra/graf/mask.bmp @mode @group -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%%/edit -@dirrm %%DATADIR%%/file -@dirrm %%DATADIR%%/help -@dirrm %%DATADIR%%/save -@dirrm %%DATADIR%%/text -@dirrm %%DATADIR%%/user -@dirrm %%DATADIR%%/xtra/Sound -@dirrm %%DATADIR%%/xtra/font -@dirrm %%DATADIR%%/xtra/graf -@dirrm %%DATADIR%%/xtra -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:29:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7E760D26; Mon, 6 Oct 2014 20:29:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5FF2C3E1; Mon, 6 Oct 2014 20:29:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KTfFa090223; Mon, 6 Oct 2014 20:29:41 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KTeBx090218; Mon, 6 Oct 2014 20:29:40 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410062029.s96KTeBx090218@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 6 Oct 2014 20:29:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370224 - in head/databases: . py-mysql-connector-python2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:29:41 -0000 Author: marino Date: Mon Oct 6 20:29:39 2014 New Revision: 370224 URL: https://svnweb.freebsd.org/changeset/ports/370224 QAT: https://qat.redports.org/buildarchive/r370224/ Log: Add new port databases/py-mysql-connectory-python2 PR: 194048 Submitted by: Muhammad Rahman MySQL driver written in Python which does not depend on MySQL C client libraries and implements the DB API v2.0 specification (PEP-249). Added: head/databases/py-mysql-connector-python2/ head/databases/py-mysql-connector-python2/Makefile (contents, props changed) head/databases/py-mysql-connector-python2/distinfo (contents, props changed) head/databases/py-mysql-connector-python2/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Oct 6 20:27:14 2014 (r370223) +++ head/databases/Makefile Mon Oct 6 20:29:39 2014 (r370224) @@ -736,6 +736,7 @@ SUBDIR += py-memcached SUBDIR += py-mssql SUBDIR += py-mysql-connector-python + SUBDIR += py-mysql-connector-python2 SUBDIR += py-mysql2pgsql SUBDIR += py-odbc SUBDIR += py-oops Added: head/databases/py-mysql-connector-python2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-mysql-connector-python2/Makefile Mon Oct 6 20:29:39 2014 (r370224) @@ -0,0 +1,19 @@ +# Created by: Muhammad Moinur Rahman <5u623l20@gmail.com> +# $FreeBSD$ + +PORTNAME= mysql-connector-python +PORTVERSION= 2.0.1 +CATEGORIES= databases python +MASTER_SITES= ${MASTER_SITE_MYSQL} +MASTER_SITE_SUBDIR= Connector-Python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= 5u623l20@gmail.com +COMMENT= MySQL driver written in Python + +LICENSE= GPLv2 + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/databases/py-mysql-connector-python2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-mysql-connector-python2/distinfo Mon Oct 6 20:29:39 2014 (r370224) @@ -0,0 +1,2 @@ +SHA256 (mysql-connector-python-2.0.1.tar.gz) = 7f96ff40fc464fe0d3bf0efd37af46e7471a9a30d3335da7bb43f6b968f342eb +SIZE (mysql-connector-python-2.0.1.tar.gz) = 206435 Added: head/databases/py-mysql-connector-python2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-mysql-connector-python2/pkg-descr Mon Oct 6 20:29:39 2014 (r370224) @@ -0,0 +1,4 @@ +MySQL driver written in Python which does not depend on MySQL C client +libraries and implements the DB API v2.0 specification (PEP-249). + +WWW: http://dev.mysql.com/doc/connector-python/en From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:44:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5233E231; Mon, 6 Oct 2014 20:44:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E4EE7E0; Mon, 6 Oct 2014 20:44:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96KiriJ099086; Mon, 6 Oct 2014 20:44:53 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Kirlu099085; Mon, 6 Oct 2014 20:44:53 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410062044.s96Kirlu099085@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 6 Oct 2014 20:44:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370225 - head/www/chromium/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:44:53 -0000 Author: rene Date: Mon Oct 6 20:44:52 2014 New Revision: 370225 URL: https://svnweb.freebsd.org/changeset/ports/370225 QAT: https://qat.redports.org/buildarchive/r370225/ Log: Fix build on 8.4/9.X with GCC 4.8. Patch backported from the beta branch on github. Submitted by: package builder via antoine Modified: head/www/chromium/files/extra-patch-gcc Modified: head/www/chromium/files/extra-patch-gcc ============================================================================== --- head/www/chromium/files/extra-patch-gcc Mon Oct 6 20:29:39 2014 (r370224) +++ head/www/chromium/files/extra-patch-gcc Mon Oct 6 20:44:52 2014 (r370225) @@ -96,3 +96,14 @@ #include #elif defined(USE_LIBJPEG_TURBO) #include "third_party/libjpeg_turbo/jpeglib.h" +--- media/cast/logging/encoding_event_subscriber.cc.orig 2014-10-02 19:39:47.000000000 +0200 ++++ media/cast/logging/encoding_event_subscriber.cc 2014-10-06 10:38:30.000000000 +0200 +@@ -4,6 +4,7 @@ + + #include "media/cast/logging/encoding_event_subscriber.h" + ++#include + #include + #include + + From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:46:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5CEE336; Mon, 6 Oct 2014 20:46:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F96E7FB; Mon, 6 Oct 2014 20:46:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Kkgn0099476; Mon, 6 Oct 2014 20:46:42 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96KkfFM099473; Mon, 6 Oct 2014 20:46:41 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410062046.s96KkfFM099473@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 6 Oct 2014 20:46:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370226 - head/multimedia/plexmediaserver-plexpass X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:46:42 -0000 Author: feld Date: Mon Oct 6 20:46:41 2014 New Revision: 370226 URL: https://svnweb.freebsd.org/changeset/ports/370226 QAT: https://qat.redports.org/buildarchive/r370226/ Log: Update to 0.9.10.3.665 Submitted by: ps Modified: head/multimedia/plexmediaserver-plexpass/Makefile head/multimedia/plexmediaserver-plexpass/distinfo head/multimedia/plexmediaserver-plexpass/pkg-plist Modified: head/multimedia/plexmediaserver-plexpass/Makefile ============================================================================== --- head/multimedia/plexmediaserver-plexpass/Makefile Mon Oct 6 20:44:52 2014 (r370225) +++ head/multimedia/plexmediaserver-plexpass/Makefile Mon Oct 6 20:46:41 2014 (r370226) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= plexmediaserver -PORTVERSION= 0.9.10.1.585 -PORTREVISION= 1 +PORTVERSION= 0.9.10.3.665 CATEGORIES= multimedia MASTER_SITES= http://downloads.plexapp.com/plex-media-server/${PORTVERSION}-${PLEX_BUILD}/ PKGNAMESUFFIX= -plexpass @@ -13,7 +12,7 @@ MAINTAINER= feld@FreeBSD.org COMMENT= The Plex Media Server component USES= tar:bzip2 -PLEX_BUILD= f31034e +PLEX_BUILD= c9109e2 NO_BUILD= yes WRKSRC= ${WRKDIR}/PlexMediaServer-${PORTVERSION}-${PLEX_BUILD} BUNDLE_LIBS= yes Modified: head/multimedia/plexmediaserver-plexpass/distinfo ============================================================================== --- head/multimedia/plexmediaserver-plexpass/distinfo Mon Oct 6 20:44:52 2014 (r370225) +++ head/multimedia/plexmediaserver-plexpass/distinfo Mon Oct 6 20:46:41 2014 (r370226) @@ -1,2 +1,2 @@ -SHA256 (PlexMediaServer-0.9.10.1.585-f31034e-freebsd-amd64.tar.bz2) = 1adedbaf26e3172103726cbfdcd3a54d0a01360e4dd84e453c5a9f2605f860f6 -SIZE (PlexMediaServer-0.9.10.1.585-f31034e-freebsd-amd64.tar.bz2) = 68519951 +SHA256 (PlexMediaServer-0.9.10.3.665-c9109e2-freebsd-amd64.tar.bz2) = faf88b1861173a841a87172924e69407c32bc03b80796beee8c0422ebe6a0c62 +SIZE (PlexMediaServer-0.9.10.3.665-c9109e2-freebsd-amd64.tar.bz2) = 69538076 Modified: head/multimedia/plexmediaserver-plexpass/pkg-plist ============================================================================== --- head/multimedia/plexmediaserver-plexpass/pkg-plist Mon Oct 6 20:44:52 2014 (r370225) +++ head/multimedia/plexmediaserver-plexpass/pkg-plist Mon Oct 6 20:46:41 2014 (r370226) @@ -26,6 +26,13 @@ %%DATADIR%%/Resources/Plex New Transcoder %%DATADIR%%/Resources/Plex Transcoder %%DATADIR%%/Resources/PlexFont-Regular.ttf +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Code/__init__.py +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/DefaultPrefs.json +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Info.plist +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Resources/attribution.png +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/Resources/icon-default.png +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/Contents/VERSION +%%DATADIR%%/Resources/Plug-ins/Fanart-tv.bundle/README.md %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Info.plist %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386/Frameworks/README %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386/Libraries/README @@ -415,9 +422,14 @@ %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/atomsearch_test.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file/mp4file.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/__init__.py +%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_compat.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_constants.py +%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_id3frames.py +%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_id3specs.py +%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_id3util.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_util.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/_vorbis.py +%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/aiff.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/apev2.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/asf.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/easyid3.py @@ -431,6 +443,7 @@ %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/musepack.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/ogg.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggflac.py +%%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggopus.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggspeex.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggtheora.py %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen/oggvorbis.py @@ -648,7 +661,7 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Sub Pop.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/TVT.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Too Pure.png -%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Tooth Nail.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Tooth Nail.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Touch and Go.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Universal Records.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label/Universal Republic.png @@ -757,6 +770,7 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Criterion.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/DC_Comics.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/DMAX.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/DNA.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Damselfly.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Danjaq.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Dark_Castle_Entertainment.png @@ -918,6 +932,7 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Nat Geo Wild.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/National_General_Pictures.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Nelvana.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Netflix.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/Network Ten.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/New_Deal_Entertainment.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/New_Line_Cinema.png @@ -1177,6 +1192,7 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/syndicated.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/syrena.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/telos.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/the_hub.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/thecw.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/thewb.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio/tnt.png @@ -1215,6 +1231,7 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/mpeg4.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/quicktime.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/sdtv.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/vc1.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/wmv.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/wmvhd.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec/xvid.png @@ -1231,11 +1248,13 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/432.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/480.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/480i.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/4k.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/540.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/544.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/576.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/576i.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/720.png +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/8k.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/dolbydigital.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/hdtv.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution/sd.png @@ -1243,6 +1262,7 @@ %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/icon-default.png %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/substitutions.xml %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/VERSION +%%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/README.md %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle/Contents/Code/__init__.py %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle/Contents/Info.plist %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle/Contents/Resources/attribution.png @@ -1370,6 +1390,8 @@ %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.college_humor/URL/CollegeHumor/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.comedycentral/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.comedycentral/URL/Comedy Central/ServiceCode.pys +%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.crackle/ServiceInfo.plist +%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.crackle/URL/Crackle/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dailymotion/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dailymotion/URL/Dailymotion/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.discovery/ServiceInfo.plist @@ -1551,8 +1573,6 @@ %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sapo/URL/Sapo/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.schweizerfernsehen/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.schweizerfernsehen/URL/Schweizer Fernsehen/ServiceCode.pys -%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showcase/ServiceInfo.plist -%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showcase/URL/Showcase/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showmedo/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showmedo/URL/ShowMeDo/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skyplayer/ServiceInfo.plist @@ -1615,14 +1635,10 @@ %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.triplem/URL/TripleM/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tubitv/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tubitv/URL/Tubi TV/ServiceCode.pys -%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv3playdk/ServiceInfo.plist -%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv3playdk/URL/tv3playdk/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/Shared Code/tv4play.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/URL/TV4 Play/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/URL/TV4 Play/ServicePrefs.json -%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvigle/ServiceInfo.plist -%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvigle/URL/Tvigle/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvkultura/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvkultura/URL/TVKultura/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvland/ServiceInfo.plist @@ -1651,6 +1667,8 @@ %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vesti/URL/Vesti/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vevo/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vevo/URL/Vevo/ServiceCode.pys +%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.viasat/ServiceInfo.plist +%%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.viasat/URL/Viasat Play/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vice/ServiceInfo.plist %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vice/URL/Vice/ServiceCode.pys %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.viddler/ServiceInfo.plist @@ -2100,6 +2118,7 @@ %%DATADIR%%/Resources/Profiles/Windows Phone.xml %%DATADIR%%/Resources/Profiles/Windows.xml %%DATADIR%%/Resources/Profiles/Xbox 360.xml +%%DATADIR%%/Resources/Profiles/Xbox One.xml %%DATADIR%%/Resources/Profiles/cloudsync.xml %%DATADIR%%/Resources/Profiles/iOS-AppleTV.xml %%DATADIR%%/Resources/Profiles/iOS-iPad-1,1.xml @@ -2953,6 +2972,7 @@ %%DATADIR%%/Resources/com.plexapp.plugins.library.db %%DATADIR%%/Resources/crossdomain.xml %%DATADIR%%/Resources/dh512.pem +%%DATADIR%%/Resources/distribution.txt %%DATADIR%%/Resources/empty.ts %%DATADIR%%/Resources/imdb-combiner-movies.xml %%DATADIR%%/Resources/lastfm-combiner-albums.xml @@ -2974,28 +2994,27 @@ %%DATADIR%%/libavcodec.so.55 %%DATADIR%%/libavformat.so.55 %%DATADIR%%/libavutil.so.52 -%%DATADIR%%/libboost_chrono.so.1.50.0 -%%DATADIR%%/libboost_filesystem.so.1.50.0 -%%DATADIR%%/libboost_iostreams.so.1.50.0 -%%DATADIR%%/libboost_program_options.so.1.50.0 -%%DATADIR%%/libboost_regex.so.1.50.0 -%%DATADIR%%/libboost_signals.so.1.50.0 -%%DATADIR%%/libboost_system.so.1.50.0 -%%DATADIR%%/libboost_thread.so.1.50.0 +%%DATADIR%%/libboost_chrono.so.1.56.0 +%%DATADIR%%/libboost_filesystem.so.1.56.0 +%%DATADIR%%/libboost_iostreams.so.1.56.0 +%%DATADIR%%/libboost_locale.so.1.56.0 +%%DATADIR%%/libboost_program_options.so.1.56.0 +%%DATADIR%%/libboost_regex.so.1.56.0 +%%DATADIR%%/libboost_signals.so.1.56.0 +%%DATADIR%%/libboost_system.so.1.56.0 +%%DATADIR%%/libboost_thread.so.1.56.0 %%DATADIR%%/libcrypto.so.1.0.0 %%DATADIR%%/libcurl.so.7 %%DATADIR%%/libexpat.so.6 %%DATADIR%%/libexslt.so.8 -%%DATADIR%%/libfreeimage.so.3 +%%DATADIR%%/libfreeimage.so %%DATADIR%%/libiconv.so.7 %%DATADIR%%/libidn.so.17 %%DATADIR%%/libmediainfo.so.0 %%DATADIR%%/libminiupnpc.so.10 -%%DATADIR%%/libmp3lame.so.0 %%DATADIR%%/libnatpmp.so.1 %%DATADIR%%/libopencv_core.so.2.4 %%DATADIR%%/libopencv_imgproc.so.2.4 -%%DATADIR%%/libpng16.so.16 %%DATADIR%%/libpython2.7.so %%DATADIR%%/libpython2.7.so.1 %%DATADIR%%/libsoci_core-gcc-3_0.so.3.0.0 @@ -3008,824 +3027,3 @@ %%DATADIR%%/libxslt.so.2 %%DATADIR%%/libz.so.1 %%DATADIR%%/libzen.so.0 -@dirrmtry %%DATADIR%%/Resources/English.lproj -@dirrmtry %%DATADIR%%/Resources/Graphics -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386/Frameworks -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386/Libraries -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD/i386 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/FreeBSD -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython/tests -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/RestrictedPython -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/cerealizer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/cipher -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/entropy -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/hash -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto/keyedHash -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/crypto -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil/zoneinfo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/dateutil -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/adapters -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/flex -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/client -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting/gateway -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/remoting -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf/util -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/pyamf -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/routes -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado/test -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries/tornado -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared/Libraries -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms/Shared -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Platforms -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python/PMS -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0/Python -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/0 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python/PMS -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Python -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/1 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models/Metadata -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Models -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/api -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/handlers -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/interfaces -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/modelling -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/policies -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/Framework -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python/subsystem -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Python -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions/2 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources/Versions -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Framework.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/HTbackdrops.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Services/URL/IVA -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Services/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents/Services -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/IMDB.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LastFM.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LastFM.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mp4file -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared/mutagen -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries/Shared -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Libraries -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/LocalMedia.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Aspect Ratio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Channels -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Audio Codec -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/au -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/ca -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/de -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/fr -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/gb -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating/nl -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Content Rating -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Media -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Record Label -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Studio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Codec -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Frame Rate -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources/Video Resolution -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Media-Flags.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/MoviePosterDB.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/OpenSubtitles.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/OpenSubtitles.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/OpenSubtitles.bundle/Contents/Strings -@dirrmtry %%DATADIR%%/Resources/Plug-ins/OpenSubtitles.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/OpenSubtitles.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PersonalMedia.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PersonalMedia.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PersonalMedia.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PersonalMedia.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PlexThemeMusic.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PlexThemeMusic.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PlexThemeMusic.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/PlexThemeMusic.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Common/mp4file -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Common/mutagen -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Common -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Movies -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Music -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Photos -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources/Series -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Scanners.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.4tube/URL/4tube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.4tube/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.4tube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.5by5/URL/5by5 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.5by5/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.5by5 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.abc/URL/ABC -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.abc/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.abc -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.absoluteradio/URL/Absolute Radio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.absoluteradio/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.absoluteradio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.adobetv/URL/Adobe TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.adobetv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.adobetv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.adultswim/URL/Adult Swim -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.adultswim/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.adultswim -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.aetv/URL/AETV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.aetv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.aetv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.amt/URL/Apple Movie Trailers -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.amt/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.amt -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.annakimphotography/URL/Anna Kim Photography -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.annakimphotography/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.annakimphotography -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.aolon/URL/AOL On -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.aolon/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.aolon -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.arbejdsglaedeTV/URL/arbejdsglaedeTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.arbejdsglaedeTV/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.arbejdsglaedeTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bbvms/URL/Blue Billywig -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bbvms/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bbvms -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bing/URL/Bing -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bing/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bing -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.blip/URL/Blip -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.blip/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.blip -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bodybuilding/URL/Bodybuilding.com -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bodybuilding/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.bodybuilding -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.breakcom/URL/Break.com -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.breakcom/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.breakcom -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.brightcove/URL/Brightcove -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.brightcove/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.brightcove -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.canalplus/URL/Canal Plus France -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.canalplus/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.canalplus -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.canoetv/URL/CanoeTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.canoetv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.canoetv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.catspawimages/URL/Cats Paw Images -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.catspawimages/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.catspawimages -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbcnewsnetwork/URL/CBC -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbcnewsnetwork/URL/CBC Sports -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbcnewsnetwork/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbcnewsnetwork -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbs/URL/CBS -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbs/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cbs -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.channel9/URL/Channel9 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.channel9/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.channel9 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cnettv/URL/CNET -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cnettv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cnettv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cnn/URL/CNN -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cnn/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.cnn -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.college_humor/URL/CollegeHumor -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.college_humor/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.college_humor -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.comedycentral/URL/Comedy Central -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.comedycentral/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.comedycentral -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dailymotion/URL/Dailymotion -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dailymotion/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dailymotion -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.discovery/URL/Discovery -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.discovery/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.discovery -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.disney/URL/Disney -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.disney/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.disney -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dolectures/URL/DoLectures -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dolectures/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dolectures -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dumpert/URL/Dumpert -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dumpert/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.dumpert -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.einthusan/URL/Einthusan -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.einthusan/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.einthusan -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.eurogamer/URL/Eurogamer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.eurogamer/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.eurogamer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.euronews/URL/Euronews -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.euronews/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.euronews -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.extreme/URL/extreme -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.extreme/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.extreme -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.facebook/URL/Facebook -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.facebook/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.facebook -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fallback/URL/Fallback -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fallback/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fallback -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.floridafishingreport/URL/Florida Fishing Report -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.floridafishingreport/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.floridafishingreport -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foodnetwork/URL/Food Network -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foodnetwork/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foodnetwork -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foodnetworkcanada/URL/Food Network Canada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foodnetworkcanada/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foodnetworkcanada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foratv/URL/ForaTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foratv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foratv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foxnews/URL/Fox News -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foxnews/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.foxnews -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freakonomics/URL/Freakonomics -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freakonomics/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freakonomics -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freecaster/URL/Freecaster TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freecaster/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freecaster -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freedocumentaries/URL/FreeDocumentaries -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freedocumentaries/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.freedocumentaries -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.funnyordie/URL/FunnyOrDie -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.funnyordie/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.funnyordie -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fux/URL/FUX -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fux/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fux -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fxguidetv/URL/fxguidetv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fxguidetv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fxguidetv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fxuk/URL/FXUK -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fxuk/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.fxuk -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.g4tv/URL/G4TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.g4tv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.g4tv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.gamernl/URL/GamerNL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.gamernl/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.gamernl -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.gametrailers/URL/GameTrailers -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.gametrailers/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.gametrailers -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.giantbomb/URL/GiantBomb -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.giantbomb/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.giantbomb -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.goal/URL/Goal -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.goal/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.goal -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.golfchannel/URL/GolfChannel -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.golfchannel/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.golfchannel -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.googledrive/URL/Google Drive -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.googledrive/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.googledrive -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.hgtvcanada/URL/HGTV Canada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.hgtvcanada/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.hgtvcanada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.history_canada/URL/History Canada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.history_canada/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.history_canada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.historychannel/URL/History Channel -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.historychannel/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.historychannel -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.hollywoodreporter/URL/Hollywood Reporter -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.hollywoodreporter/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.hollywoodreporter -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.howcast/URL/Howcast -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.howcast/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.howcast -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ign/URL/IGN -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ign/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ign -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.imovies/URL/iMovies -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.imovies/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.imovies -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.indieclicktv/URL/IndieClick TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.indieclicktv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.indieclicktv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.internetarchive/URL/Internet Archive -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.internetarchive/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.internetarchive -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.iplayer/URL/BBC iPlayer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.iplayer/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.iplayer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.jamieoliver/URL/JamieOliver -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.jamieoliver/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.jamieoliver -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.kanal5play/URL/Kanal 5 Play -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.kanal5play/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.kanal5play -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.kelbytv/URL/Kelby TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.kelbytv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.kelbytv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.khanacademy/URL/KhanAcademy -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.khanacademy/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.khanacademy -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.lifetime/URL/Lifetime -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.lifetime/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.lifetime -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.liveleak/URL/LiveLeak -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.liveleak/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.liveleak -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.locotv/URL/LocoTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.locotv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.locotv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.logotv/URL/Logo TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.logotv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.logotv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.lstudio/URL/L Studio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.lstudio/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.lstudio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.makingof/URL/MakingOf -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.makingof/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.makingof -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.medici/URL/Medici TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.medici/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.medici -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.metacafe/URL/Metacafe -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.metacafe/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.metacafe -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mevio/URL/Mevio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mevio/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mevio -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.moviefone/URL/moviefone -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.moviefone/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.moviefone -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mpora/URL/MPORA -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mpora/URL/MPORA Photos -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mpora/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mpora -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mtv/URL/MTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mtv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.mtv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.myspace/URL/MySpace -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.myspace/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.myspace -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nationalgeographic/URL/National Geographic -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nationalgeographic/URL/National Geographic Canada -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nationalgeographic/URL/National Geographic Photography -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nationalgeographic/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nationalgeographic -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nbc/URL/MSNBC -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nbc/URL/MSNBC Podcast -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nbc/URL/NBC -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nbc/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nbc -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ndtv/URL/NDTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ndtv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ndtv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.newsy/URL/Newsy -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.newsy/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.newsy -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nme/URL/NME -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nme/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nme -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nos/URL/NOS -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nos/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nos -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nowthisnews/URL/NowThis News -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nowthisnews/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nowthisnews -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.npo/URL/NPO -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.npo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.npo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nytimes.lens/URL/Lens -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nytimes.lens/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.nytimes.lens -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.orftvthek/URL/ORF TVThek Live -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.orftvthek/URL/ORF TVThek VOD -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.orftvthek/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.orftvthek -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pbs/Shared Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pbs/URL/PBS -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pbs/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pbs -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pinkbike/URL/Pinkbike -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pinkbike/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pinkbike -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pitchforktv/URL/Pitchfork MusicVideos -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pitchforktv/URL/Pitchfork TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pitchforktv/URL/Pitchfork TV YouTube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pitchforktv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pitchforktv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pixelcorps/URL/PixelCorps TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pixelcorps/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pixelcorps -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokernews/URL/Poker News -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokernews/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokernews -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokerstarstv/URL/PokerstarsTV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokerstarstv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokerstarstv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokertube/URL/PokerTube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokertube/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.pokertube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.redbulltv/URL/Red Bull TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.redbulltv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.redbulltv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.redtube/URL/RedTube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.redtube/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.redtube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.revision3/URL/Revision3 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.revision3/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.revision3 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rottentomatoes/URL/RottenTomatoes -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rottentomatoes/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rottentomatoes -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rt/URL/RT -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rt/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rt -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rtbf/URL/RTBF -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rtbf/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rtbf -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rtlxl/URL/RTL XL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rtlxl/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rtlxl -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rutube/URL/Rutube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rutube/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rutube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rutv/URL/RU TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rutv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.rutv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sapo/URL/Sapo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sapo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sapo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.schweizerfernsehen/URL/Schweizer Fernsehen -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.schweizerfernsehen/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.schweizerfernsehen -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showcase/URL/Showcase -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showcase/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showcase -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showmedo/URL/ShowMeDo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showmedo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.showmedo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skyplayer/URL/SkyGo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skyplayer/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skyplayer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skysports/URL/SkySports -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skysports/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.skysports -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.slice/URL/Slice -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.slice/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.slice -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sohutv/URL/Sohu TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sohutv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.sohutv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.soundcloud/URL/SoundCloud -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.soundcloud/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.soundcloud -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.southpark/URL/South Park -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.southpark/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.southpark -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.spike/URL/Spike -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.spike/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.spike -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.springboard/URL/Springboard -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.springboard/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.springboard -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.stubru/URL/Studio Brussel -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.stubru/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.stubru -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.stumbleupon/URL/StumbleUpon -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.stumbleupon/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.stumbleupon -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.svtplay/URL/SVTPlay -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.svtplay/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.svtplay -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.t3/URL/T3 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.t3/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.t3 -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamcoco/URL/Team Coco -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamcoco/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamcoco -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamhww/URL/TeamHWW -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamhww/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamhww -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamtreehouse/URL/Team Treehouse -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamtreehouse/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.teamtreehouse -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ted/URL/TED Talks -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ted/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ted -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tested/URL/Tested -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tested/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tested -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.the-big-picture/URL/The Big Picture -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.the-big-picture/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.the-big-picture -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theberrics/URL/The Berrics -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theberrics/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theberrics -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thecolbertreport/URL/The Colbert Report -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thecolbertreport/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thecolbertreport -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thecw/URL/The CW -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thecw/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thecw -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thedailyshow/URL/The Daily Show -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thedailyshow/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thedailyshow -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theguardian/URL/The Guardian -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theguardian/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theguardian -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thenytimes/URL/New York Times -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thenytimes/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.thenytimes -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theonion/URL/The Onion -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theonion/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theonion -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theverge/URL/The Verge -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theverge/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.theverge -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.toutv/URL/TOU TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.toutv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.toutv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.traileraddict/URL/Trailer Addict -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.traileraddict/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.traileraddict -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.triplem/URL/TripleM -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.triplem/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.triplem -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tubitv/URL/Tubi TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tubitv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tubitv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv3playdk/URL/tv3playdk -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv3playdk/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv3playdk -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/Shared Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/URL/TV4 Play -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tv4play -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvigle/URL/Tvigle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvigle/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvigle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvkultura/URL/TVKultura -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvkultura/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvkultura -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvland/URL/TVLand -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvland/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvland -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvone/URL/TV One -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvone/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvone -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvtropolis/URL/TVTropolis -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvtropolis/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tvtropolis -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tweakers/URL/Tweakers -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tweakers/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.tweakers -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.twitchtv/URL/Twitch.tv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.twitchtv/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.twitchtv -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.twitlive/URL/TWiT.TV -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.twitlive/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.twitlive -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ubu/URL/Ubu -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ubu/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ubu -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ukfilmtrailer/URL/UK Filmtrailer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ukfilmtrailer/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ukfilmtrailer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.universalsports/URL/Universal Sports -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.universalsports/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.universalsports -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.urplay/URL/URPlay -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.urplay/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.urplay -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ustream/URL/Ustream -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ustream/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.ustream -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vesti/URL/Vesti -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vesti/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vesti -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vevo/URL/Vevo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vevo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vevo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vice/URL/Vice -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vice/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vice -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.viddler/URL/Viddler -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.viddler/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.viddler -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videobash/URL/Videobash -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videobash/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videobash -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videojug/URL/VideoJug -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videojug/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videojug -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videostrip/URL/Videostrip -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videostrip/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videostrip -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videovideo/URL/videovideo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videovideo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.videovideo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vimcasts/URL/Vimcasts -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vimcasts/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vimcasts -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vimeo/URL/Vimeo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vimeo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vimeo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vine/URL/Vine -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vine/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vine -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vk/URL/VK -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vk/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vk -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vrt/URL/VRT -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vrt/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.vrt -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.wimp/URL/Wimp -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.wimp/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.wimp -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.wsj/URL/WSJ -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.wsj/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.wsj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.xhamster/URL/xHamster -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.xhamster/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.xhamster -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.yahoo/URL/Yahoo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.yahoo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.yahoo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.youku/URL/Youku -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.youku/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.youku -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.youtube/URL/YouTube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.youtube/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.youtube -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zdfmediathek/URL/ZDF Mediathek -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zdfmediathek/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zdfmediathek -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zideo/URL/Zideo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zideo/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zideo -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zie/URL/Zie -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zie/URL -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.plugins.zie -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.search.videosurf/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.search.videosurf/Search/VideoSurf -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.search.videosurf/Search -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets/com.plexapp.search.videosurf -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents/Service Sets -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Services.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/SiteConfigurations.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/SiteConfigurations.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/SiteConfigurations.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/System.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/System.bundle/Contents/Resources/transcode-presets -@dirrmtry %%DATADIR%%/Resources/Plug-ins/System.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/System.bundle/Contents/Strings -@dirrmtry %%DATADIR%%/Resources/Plug-ins/System.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/System.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/The-Movie-Database.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/The-Movie-Database.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/The-Movie-Database.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/The-Movie-Database.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/TheTVDB.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/TheTVDB.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/TheTVDB.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/TheTVDB.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/Frameworks/EKSpinner/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/Frameworks/EKSpinner -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/Frameworks -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/css -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/fonts -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/img/devices -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/img/ios -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/img/posters -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/img/queue -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/img -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/js -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/swf/jwplayer -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/swf/soundmanager -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/swf -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources/translations -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebClient.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Browser.environment -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Browser.environment -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Resources/Aristo.blend/Browser.environment -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Resources/Aristo.blend/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Resources/Aristo.blend -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Resources/CPCursor -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Resources/CPProgressIndicator -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/AppKit -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/EKSpinner/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/EKSpinner -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/Foundation/ObjJ.environment -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/Foundation -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks/Objective-J -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Frameworks -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/da.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/de.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/en.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/es.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/fi.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/fr.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/it.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/ko.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/nl.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/ru.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/sr.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/sv.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/xx-chef.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources/xx-pirate.lproj -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/WebManager.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Wikipedia.bundle/Contents/Code -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Wikipedia.bundle/Contents/Resources -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Wikipedia.bundle/Contents -@dirrmtry %%DATADIR%%/Resources/Plug-ins/Wikipedia.bundle -@dirrmtry %%DATADIR%%/Resources/Plug-ins -@dirrmtry %%DATADIR%%/Resources/Profiles -@dirrmtry %%DATADIR%%/Resources/Python/bin -@dirrmtry %%DATADIR%%/Resources/Python/include/python2.7 -@dirrmtry %%DATADIR%%/Resources/Python/include -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/bsddb -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/compiler -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/config -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/ctypes/macholib -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/ctypes/test -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/ctypes -@dirrmtry %%DATADIR%%/Resources/Python/lib/python2.7/curses *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 20:51:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FFB488F; Mon, 6 Oct 2014 20:51:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF8CE8FB; Mon, 6 Oct 2014 20:51:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Kpu45004038; Mon, 6 Oct 2014 20:51:56 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Kpuxi004029; Mon, 6 Oct 2014 20:51:56 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410062051.s96Kpuxi004029@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Mon, 6 Oct 2014 20:51:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370227 - in head/math: . arpack-ng arpack-ng-mpich X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 20:51:57 -0000 Author: thierry Date: Mon Oct 6 20:51:55 2014 New Revision: 370227 URL: https://svnweb.freebsd.org/changeset/ports/370227 QAT: https://qat.redports.org/buildarchive/r370227/ Log: - Add an option MPI to build and install libparpack - Create a slave port to build a package with this option - Switch to an external plist, because many files are added. PR: ports/193810 Submitted by: /me Approved by: bf (maintainer, by private mail) Added: head/math/arpack-ng-mpich/ head/math/arpack-ng-mpich/Makefile (contents, props changed) head/math/arpack-ng/pkg-plist (contents, props changed) Modified: head/math/Makefile head/math/arpack-ng/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Oct 6 20:46:41 2014 (r370226) +++ head/math/Makefile Mon Oct 6 20:51:55 2014 (r370227) @@ -59,6 +59,7 @@ SUBDIR += arpack SUBDIR += arpack++ SUBDIR += arpack-ng + SUBDIR += arpack-ng-mpich SUBDIR += asir2000 SUBDIR += aspcud SUBDIR += asymptote Added: head/math/arpack-ng-mpich/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/arpack-ng-mpich/Makefile Mon Oct 6 20:51:55 2014 (r370227) @@ -0,0 +1,12 @@ +# Created by: Thierry Thomas +# $FreeBSD$ + +PORTNAME= arpack-ng + +COMMENT= Revised Argand library for solving large-scale eigenvalue problems with MPI support + +MASTERDIR= ${.CURDIR}/../../math/arpack-ng + +OPTIONS_DEFAULT+= MPI + +.include "${MASTERDIR}/Makefile" Modified: head/math/arpack-ng/Makefile ============================================================================== --- head/math/arpack-ng/Makefile Mon Oct 6 20:46:41 2014 (r370226) +++ head/math/arpack-ng/Makefile Mon Oct 6 20:51:55 2014 (r370227) @@ -3,14 +3,14 @@ PORTNAME= arpack-ng PORTVERSION= 3.1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= http://forge.scilab.org/index.php/p/arpack-ng/downloads/get/ \ LOCAL/bf DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= bf@FreeBSD.org -COMMENT= Revised Argand library for solving large-scale eigenvalue problems +COMMENT+= Revised Argand library for solving large-scale eigenvalue problems LICENSE= BSD @@ -18,27 +18,27 @@ USES= fortran libtool USE_LDCONFIG= yes CONFLICTS= arpack-[0-9]* +SLAVEDIRS= math/arpack-ng-mpich GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-mpi --with-blas="${BLAS}" \ - --with-lapack="${LAPACK}" +CONFIGURE_ARGS= --with-blas="${BLAS}" \ + --with-lapack="${LAPACK}" LDFLAGS+= -L${LOCALBASE}/lib -PLIST_FILES= lib/libarpack.a \ - lib/libarpack.so \ - lib/libarpack.so.2 \ - lib/libarpack.so.2.0.0 \ - libdata/pkgconfig/arpack.pc - WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS MPI +OPTIONS_SUB= yes +MPI_CONFIGURE_ENABLE= mpi +MPI_LIB_DEPENDS= libmpich.so.8:${PORTSDIR}/net/mpich2 +MPI_CONFLICTS_INSTALL+= arpack-ng-3.* +MPI_CONFLICTS_INSTALL_OFF+= arpack-ng-mpich-3.* .include -.if ${PORT_OPTIONS:MDOCS} -PORTDOCS= * +.if ${PORT_OPTIONS:MMPI} +PKGNAMESUFFIX= -mpich .endif WITH_BLAS?= blas Added: head/math/arpack-ng/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/arpack-ng/pkg-plist Mon Oct 6 20:51:55 2014 (r370227) @@ -0,0 +1,22 @@ +%%MPI%%bin/pcndrv1 +%%MPI%%bin/pdndrv1 +%%MPI%%bin/pdndrv3 +%%MPI%%bin/pdsdrv1 +%%MPI%%bin/psndrv3 +%%MPI%%bin/pssdrv1 +%%MPI%%bin/pzndrv1 +lib/libarpack.a +lib/libarpack.so +lib/libarpack.so.2 +lib/libarpack.so.2.0.0 +%%MPI%%lib/libparpack.a +%%MPI%%lib/libparpack.so +%%MPI%%lib/libparpack.so.2 +%%MPI%%lib/libparpack.so.2.0.0 +libdata/pkgconfig/arpack.pc +%%DOCS%%%%DOCSDIR%%/README +%%DOCS%%%%DOCSDIR%%/debug.doc +%%DOCS%%%%DOCSDIR%%/ex-complex.doc +%%DOCS%%%%DOCSDIR%%/ex-nonsym.doc +%%DOCS%%%%DOCSDIR%%/ex-sym.doc +%%DOCS%%%%DOCSDIR%%/stat.doc From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:00:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7988EC11; Mon, 6 Oct 2014 21:00:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65C9597E; Mon, 6 Oct 2014 21:00:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96L0q3P008135; Mon, 6 Oct 2014 21:00:52 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96L0qCG008134; Mon, 6 Oct 2014 21:00:52 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062100.s96L0qCG008134@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 21:00:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370228 - head/x11/xscreensaver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:00:52 -0000 Author: antoine Date: Mon Oct 6 21:00:51 2014 New Revision: 370228 URL: https://svnweb.freebsd.org/changeset/ports/370228 QAT: https://qat.redports.org/buildarchive/r370228/ Log: Fix packaging Modified: head/x11/xscreensaver/Makefile Modified: head/x11/xscreensaver/Makefile ============================================================================== --- head/x11/xscreensaver/Makefile Mon Oct 6 20:51:55 2014 (r370227) +++ head/x11/xscreensaver/Makefile Mon Oct 6 21:00:51 2014 (r370228) @@ -32,6 +32,7 @@ CONFIGURE_ARGS= --with-gtk --with-gl --w --with-jpeg=${LOCALBASE} --with-xshm-ext --with-xdbe-ext \ --with-hackdir=${PREFIX}/bin/xscreensaver-hacks/ \ --with-configdir=${PREFIX}/share/xscreensaver/config/ \ + --with-x-app-defaults=${PREFIX}/lib/X11/app-defaults/ \ --with-dpms-ext --with-xinerama-ext --with-xf86vmode-ext \ --with-xf86gamma-ext --with-randr-ext --without-kerberos \ --without-setuid-hacks --enable-locking From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:02:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 981DDD1A; Mon, 6 Oct 2014 21:02:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83FE6A18; Mon, 6 Oct 2014 21:02:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96L2Gvu009011; Mon, 6 Oct 2014 21:02:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96L2G6O009010; Mon, 6 Oct 2014 21:02:16 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062102.s96L2G6O009010@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 21:02:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370229 - head/graphics/ida/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:02:16 -0000 Author: antoine Date: Mon Oct 6 21:02:15 2014 New Revision: 370229 URL: https://svnweb.freebsd.org/changeset/ports/370229 QAT: https://qat.redports.org/buildarchive/r370229/ Log: Fix packaging Modified: head/graphics/ida/files/patch-mk__Autoconf.mk Modified: head/graphics/ida/files/patch-mk__Autoconf.mk ============================================================================== --- head/graphics/ida/files/patch-mk__Autoconf.mk Mon Oct 6 21:00:51 2014 (r370228) +++ head/graphics/ida/files/patch-mk__Autoconf.mk Mon Oct 6 21:02:15 2014 (r370229) @@ -1,6 +1,6 @@ ---- mk/Autoconf.mk.orig 2008-06-09 17:56:36.000000000 +0300 -+++ mk/Autoconf.mk 2009-05-28 08:51:09.000000000 +0300 -@@ -109,7 +109,7 @@ +--- mk/Autoconf.mk.orig 2012-02-22 17:13:36 UTC ++++ mk/Autoconf.mk +@@ -110,20 +110,14 @@ # $(call ac_fini)) ac_lib64 = $(shell \ $(call ac_init,for libdir name);\ @@ -9,16 +9,17 @@ echo "lib64" || echo "lib");\ $(call ac_fini)) -@@ -118,9 +118,9 @@ + # check for x11 ressource dir prefix + ac_resdir = $(shell \ $(call ac_init,for X11 app-defaults prefix);\ - $(call ac_s_cmd, for dir in \ - /etc/X11/app-defaults \ +- $(call ac_s_cmd, for dir in \ +- /etc/X11/app-defaults \ - /usr/X11R6/lib/X11/app-defaults \ - /usr/share/X11/app-defaults \ - /usr/lib/X11/app-defaults \ -+ ${PREFIX}/lib/X11/app-defaults \ -+ ${PREFIX}/share/X11/app-defaults \ -+ ${PREFIX}/lib/X11/app-defaults \ - ; do test -d "$$dir" || continue;\ - dirname "$$dir"; break; done);\ +- ; do test -d "$$dir" || continue;\ +- dirname "$$dir"; break; done);\ ++ $(call ac_s_cmd, dirname "${PREFIX}/lib/X11/app-defaults");\ $(call ac_fini)) + + # check if package is installed, via pkg-config From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:13:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BBCCF0F; Mon, 6 Oct 2014 21:13:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1DEA4B38; Mon, 6 Oct 2014 21:13:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96LDjUk014144; Mon, 6 Oct 2014 21:13:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96LDjV4014140; Mon, 6 Oct 2014 21:13:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410062113.s96LDjV4014140@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 6 Oct 2014 21:13:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370230 - in head/devel: . rubygem-pry-rails X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:13:46 -0000 Author: swills Date: Mon Oct 6 21:13:44 2014 New Revision: 370230 URL: https://svnweb.freebsd.org/changeset/ports/370230 QAT: https://qat.redports.org/buildarchive/r370230/ Log: devel/rubygem-pry-rails: create port Use Pry as your rails console WWW: https://github.com/rweng/pry-rails Added: head/devel/rubygem-pry-rails/ head/devel/rubygem-pry-rails/Makefile (contents, props changed) head/devel/rubygem-pry-rails/distinfo (contents, props changed) head/devel/rubygem-pry-rails/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 6 21:02:15 2014 (r370229) +++ head/devel/Makefile Mon Oct 6 21:13:44 2014 (r370230) @@ -4460,6 +4460,7 @@ SUBDIR += rubygem-power_assert SUBDIR += rubygem-prototype-rails SUBDIR += rubygem-pry + SUBDIR += rubygem-pry-rails SUBDIR += rubygem-pry-remote-em SUBDIR += rubygem-ptreloaded SUBDIR += rubygem-pygments.rb Added: head/devel/rubygem-pry-rails/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-rails/Makefile Mon Oct 6 21:13:44 2014 (r370230) @@ -0,0 +1,18 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= pry-rails +PORTVERSION= 0.3.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Use Pry as your rails console + +RUN_DEPENDS= rubygem-pry>=0.9.10:${PORTSDIR}/devel/rubygem-pry + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/devel/rubygem-pry-rails/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-rails/distinfo Mon Oct 6 21:13:44 2014 (r370230) @@ -0,0 +1,2 @@ +SHA256 (rubygem/pry-rails-0.3.2.gem) = 9f7365ac52e6718d3a68b6e6b50af194f18b31fb31776edb123767025ad441e3 +SIZE (rubygem/pry-rails-0.3.2.gem) = 13312 Added: head/devel/rubygem-pry-rails/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-pry-rails/pkg-descr Mon Oct 6 21:13:44 2014 (r370230) @@ -0,0 +1,3 @@ +Use Pry as your rails console + +WWW: https://github.com/rweng/pry-rails From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:21:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA1F4111; Mon, 6 Oct 2014 21:21:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C94EC09; Mon, 6 Oct 2014 21:21:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96LLU6b018663; Mon, 6 Oct 2014 21:21:30 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96LLTcW018656; Mon, 6 Oct 2014 21:21:29 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410062121.s96LLTcW018656@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 6 Oct 2014 21:21:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370231 - in head/www: . rubygem-rinku X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:21:30 -0000 Author: swills Date: Mon Oct 6 21:21:29 2014 New Revision: 370231 URL: https://svnweb.freebsd.org/changeset/ports/370231 QAT: https://qat.redports.org/buildarchive/r370231/ Log: www/rubygem-rinku: create port A fast and very smart autolinking library that acts as a drop-in replacement for Rails auto_link WWW: http://github.com/vmg/rinku Added: head/www/rubygem-rinku/ head/www/rubygem-rinku/Makefile (contents, props changed) head/www/rubygem-rinku/distinfo (contents, props changed) head/www/rubygem-rinku/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Oct 6 21:13:44 2014 (r370230) +++ head/www/Makefile Mon Oct 6 21:21:29 2014 (r370231) @@ -1864,6 +1864,7 @@ SUBDIR += rubygem-rest-client SUBDIR += rubygem-rfacebook SUBDIR += rubygem-rfeedfinder + SUBDIR += rubygem-rinku SUBDIR += rubygem-rkelly-remix SUBDIR += rubygem-rqrcode SUBDIR += rubygem-robotex Added: head/www/rubygem-rinku/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rinku/Makefile Mon Oct 6 21:21:29 2014 (r370231) @@ -0,0 +1,16 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= rinku +PORTVERSION= 1.7.3 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Fast and smart autolinking drop-in replacement for Rails auto_link + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/www/rubygem-rinku/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rinku/distinfo Mon Oct 6 21:21:29 2014 (r370231) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rinku-1.7.3.gem) = eb5cec33af86da3002e66470d9a741a0726d6864a69b580abc798931b4b706ca +SIZE (rubygem/rinku-1.7.3.gem) = 16384 Added: head/www/rubygem-rinku/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rinku/pkg-descr Mon Oct 6 21:21:29 2014 (r370231) @@ -0,0 +1,4 @@ +A fast and very smart autolinking library that acts as a drop-in replacement +for Rails auto_link + +WWW: http://github.com/vmg/rinku From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:30:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 091495BD; Mon, 6 Oct 2014 21:30:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9671C9D; Mon, 6 Oct 2014 21:30:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96LU1IP019903; Mon, 6 Oct 2014 21:30:01 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96LU1is019900; Mon, 6 Oct 2014 21:30:01 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062130.s96LU1is019900@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 21:30:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370232 - head/games/xabacus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:30:02 -0000 Author: antoine Date: Mon Oct 6 21:30:01 2014 New Revision: 370232 URL: https://svnweb.freebsd.org/changeset/ports/370232 QAT: https://qat.redports.org/buildarchive/r370232/ Log: Fix packaging Modified: head/games/xabacus/Makefile head/games/xabacus/pkg-plist Modified: head/games/xabacus/Makefile ============================================================================== --- head/games/xabacus/Makefile Mon Oct 6 21:21:29 2014 (r370231) +++ head/games/xabacus/Makefile Mon Oct 6 21:30:01 2014 (r370232) @@ -16,6 +16,7 @@ USES= tar:bzip2 USE_XORG= xpm GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-nas +CONFIGURE_ENV= ac_cv_x_app_defaults=${PREFIX}/lib/X11/app-defaults INSTALLS_ICONS= yes DESKTOP_ENTRIES="XAbacus" "" "abacus" "${PORTNAME}" "" "" Modified: head/games/xabacus/pkg-plist ============================================================================== --- head/games/xabacus/pkg-plist Mon Oct 6 21:21:29 2014 (r370231) +++ head/games/xabacus/pkg-plist Mon Oct 6 21:30:01 2014 (r370232) @@ -1,8 +1,4 @@ -@group games -@owner games -bin/xabacus -@owner -@group +@(games,games,) bin/xabacus lib/X11/app-defaults/Abacus man/man6/xabacus.6.gz share/icons/hicolor/16x16/apps/abacus.png @@ -38,4 +34,3 @@ share/icons/hicolor/48x48/apps/abacus.pn %%DATADIR%%/bump.au %%DATADIR%%/drip.au %%DATADIR%%/move.au -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:43:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92F2A833; Mon, 6 Oct 2014 21:43:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 74AB7E35; Mon, 6 Oct 2014 21:43:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Lh0Lt028379; Mon, 6 Oct 2014 21:43:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96LgxQM028369; Mon, 6 Oct 2014 21:42:59 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410062142.s96LgxQM028369@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 6 Oct 2014 21:42:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370233 - in head/textproc: . rubygem-rmmseg-cpp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:43:00 -0000 Author: swills Date: Mon Oct 6 21:42:58 2014 New Revision: 370233 URL: https://svnweb.freebsd.org/changeset/ports/370233 QAT: https://qat.redports.org/buildarchive/r370233/ Log: textproc/rubygem-rmmseg-cp: create port rmmseg-cpp is a high performance Chinese word segmentation utility for Ruby. WWW: http://rmmseg-cpp.rubyforge.org Added: head/textproc/rubygem-rmmseg-cpp/ head/textproc/rubygem-rmmseg-cpp/Makefile (contents, props changed) head/textproc/rubygem-rmmseg-cpp/distinfo (contents, props changed) head/textproc/rubygem-rmmseg-cpp/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Oct 6 21:30:01 2014 (r370232) +++ head/textproc/Makefile Mon Oct 6 21:42:58 2014 (r370233) @@ -1357,6 +1357,7 @@ SUBDIR += rubygem-redcarpet SUBDIR += rubygem-ri_cal SUBDIR += rubygem-rich + SUBDIR += rubygem-rmmseg-cpp SUBDIR += rubygem-rouge SUBDIR += rubygem-rttool SUBDIR += rubygem-rubypants Added: head/textproc/rubygem-rmmseg-cpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rmmseg-cpp/Makefile Mon Oct 6 21:42:58 2014 (r370233) @@ -0,0 +1,18 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= rmmseg-cpp +PORTVERSION= 0.2.9 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= High performance Chinese word segmentation utility + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +PLIST_FILES= bin/rmmseg + +.include Added: head/textproc/rubygem-rmmseg-cpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rmmseg-cpp/distinfo Mon Oct 6 21:42:58 2014 (r370233) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rmmseg-cpp-0.2.9.gem) = 9c94449163519d9c0c054ad2efa9d4f11914a3a5a0d086778c8a1659cbe060ea +SIZE (rubygem/rmmseg-cpp-0.2.9.gem) = 802304 Added: head/textproc/rubygem-rmmseg-cpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rmmseg-cpp/pkg-descr Mon Oct 6 21:42:58 2014 (r370233) @@ -0,0 +1,16 @@ +rmmseg-cpp is a high performance Chinese word segmentation utility for +Ruby. It features full "Ferret":http://ferret.davebalmain.com/ integration +as well as support for normal Ruby program usage. + +rmmseg-cpp is a re-written of the original +RMMSeg(http://rmmseg.rubyforge.org/) gem in C++. RMMSeg is written +in pure Ruby. Though I tried hard to tweak RMMSeg, it just consumes +lots of memory and the segmenting process is rather slow. + +The interface is almost identical to RMMSeg but the performance is +much better. This gem is always preferable in production +use. However, if you want to understand how the MMSEG segmenting +algorithm works, the source code of RMMSeg is a better choice than +this. + +WWW: http://rmmseg-cpp.rubyforge.org From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:43:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E921916; Mon, 6 Oct 2014 21:43:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8AE72E3A; Mon, 6 Oct 2014 21:43:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Lh91P028498; Mon, 6 Oct 2014 21:43:09 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Lh9Xr028497; Mon, 6 Oct 2014 21:43:09 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062143.s96Lh9Xr028497@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 21:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370234 - head/databases/py-mysql-connector-python2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:43:09 -0000 Author: antoine Date: Mon Oct 6 21:43:08 2014 New Revision: 370234 URL: https://svnweb.freebsd.org/changeset/ports/370234 QAT: https://qat.redports.org/buildarchive/r370234/ Log: Fix pkgname collision Modified: head/databases/py-mysql-connector-python2/Makefile Modified: head/databases/py-mysql-connector-python2/Makefile ============================================================================== --- head/databases/py-mysql-connector-python2/Makefile Mon Oct 6 21:42:58 2014 (r370233) +++ head/databases/py-mysql-connector-python2/Makefile Mon Oct 6 21:43:08 2014 (r370234) @@ -7,6 +7,7 @@ CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_MYSQL} MASTER_SITE_SUBDIR= Connector-Python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMESUFFIX= 2 MAINTAINER= 5u623l20@gmail.com COMMENT= MySQL driver written in Python From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 21:48:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DB98B3E; Mon, 6 Oct 2014 21:48:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68807E64; Mon, 6 Oct 2014 21:48:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96LmTRd029500; Mon, 6 Oct 2014 21:48:29 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96LmPI1029479; Mon, 6 Oct 2014 21:48:25 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410062148.s96LmPI1029479@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Mon, 6 Oct 2014 21:48:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370235 - in head/cad: . elmerfem elmerfem/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 21:48:29 -0000 Author: thierry Date: Mon Oct 6 21:48:25 2014 New Revision: 370235 URL: https://svnweb.freebsd.org/changeset/ports/370235 QAT: https://qat.redports.org/buildarchive/r370235/ Log: Add elmerfem. Elmer includes physical models of fluid dynamics, structural mechanics, electromagnetics, heat transfer and acoustics, for example. These are described by partial differential equations which Elmer solves by the Finite Element Method (FEM). PR: ports/193531 Submitted by: pfg Added: head/cad/elmerfem/ head/cad/elmerfem/Makefile (contents, props changed) head/cad/elmerfem/distinfo (contents, props changed) head/cad/elmerfem/files/ head/cad/elmerfem/files/patch-CMakeLists.txt (contents, props changed) head/cad/elmerfem/files/patch-elmergrid_src_CMakeLists.txt (contents, props changed) head/cad/elmerfem/files/patch-fem-acx_elmer.m4 (contents, props changed) head/cad/elmerfem/files/patch-fem-configure (contents, props changed) head/cad/elmerfem/files/patch-fem-src-Makefile.in (contents, props changed) head/cad/elmerfem/files/patch-fem_src_CMakeLists.txt (contents, props changed) head/cad/elmerfem/files/patch-matc_src_CMakeLists.txt (contents, props changed) head/cad/elmerfem/files/patch-post-src-elmerpost.h (contents, props changed) head/cad/elmerfem/files/patch-post-src-screensave.c (contents, props changed) head/cad/elmerfem/pkg-descr (contents, props changed) head/cad/elmerfem/pkg-plist (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Mon Oct 6 21:43:08 2014 (r370234) +++ head/cad/Makefile Mon Oct 6 21:48:25 2014 (r370235) @@ -21,6 +21,7 @@ SUBDIR += dxf2fig SUBDIR += electric SUBDIR += electric-ng + SUBDIR += elmerfem SUBDIR += feappv SUBDIR += fidocadj SUBDIR += findhier Added: head/cad/elmerfem/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/Makefile Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,58 @@ +# Created by: Pedro Giffuni +# $FreeBSD$ + +PORTNAME= elmerfem +PORTVERSION= 7.0.20140925 +CATEGORIES= cad science +#DISTNAME= ${PORTNAME}-devel + +MAINTAINER= pfg@FreeBSD.org +COMMENT= ELMER FEM package + +LICENSE= GPLv2 + +LIB_DEPENDS= liblapack.so:${PORTSDIR}/math/lapack \ + libparpack.so:${PORTSDIR}/math/arpack-ng-mpich \ + libmpich.so.8:${PORTSDIR}/net/mpich2 + +USE_GITHUB= yes +GH_ACCOUNT= ElmerCSC +GH_PROJECT= elmerfem +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= bc00ab5 + +USES= cmake fortran gmake tcl + +USE_LDCONFIG= yes +ALL_TARGET= + +.if !defined(MAINTAINER_MODE) +CMAKE_ARGS+= -Wno-dev +.endif + +.include + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +CFLAGS_${ARCH}= -fPIC +CXXFLAGS_${ARCH}= -fPIC +FCFLAGS+= -fPIC +FFLAGS+= -fPIC +.endif +LDFLAGS+= -L${LOCALBASE}/lib +FCPPFLAGS+= -ansi + +post-install: + # To avoid conflict with SuiteSparse +.for mod in amd umfpack + ${RM} ${STAGEDIR}/${PREFIX}/lib/lib${mod}.a +.endfor + cd ${STAGEDIR}${PREFIX}/bin \ + && ${LN} -sf ElmerSolver_mpi ${STAGEDIR}${PREFIX}/bin/ElmerSolver + ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/ElmerGrid + +.if defined(MAINTAINER_MODE) +regression-test: install + cd ${WRKSRC} && LD_LIBRARY_PATH=${PREFIX}/share/elmersolver/lib ${MAKE_CMD} test/fast +.endif + +.include Added: head/cad/elmerfem/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/distinfo Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,2 @@ +SHA256 (elmerfem-7.0.20140925.tar.gz) = e1db18873060080809fa7835f09a6f7b5ef09b17b1d5b8d7fc5d6321760c9d02 +SIZE (elmerfem-7.0.20140925.tar.gz) = 42990927 Added: head/cad/elmerfem/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-CMakeLists.txt Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2014-09-21 14:50:21.000000000 +0200 ++++ CMakeLists.txt 2014-09-21 14:56:31.000000000 +0200 +@@ -56,7 +56,7 @@ + ADD_SUBDIRECTORY(eio) + ADD_SUBDIRECTORY(matc) + ADD_SUBDIRECTORY(fem) +-ADD_SUBDIRECTORY(mathlibs) ++#ADD_SUBDIRECTORY(mathlibs) + ADD_SUBDIRECTORY(elmergrid) + + MESSAGE(STATUS "------------------------------------------------") Added: head/cad/elmerfem/files/patch-elmergrid_src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-elmergrid_src_CMakeLists.txt Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,11 @@ +--- elmergrid/src/CMakeLists.txt.orig 2014-09-25 15:07:43.000000000 +0200 ++++ elmergrid/src/CMakeLists.txt 2014-09-30 22:31:29.000000000 +0200 +@@ -14,7 +14,7 @@ + + TARGET_LINK_LIBRARIES(ElmerGrid matc metis) + IF(NOT(WIN32)) +- SET_TARGET_PROPERTIES(ElmerGrid PROPERTIES INSTALL_RPATH ${ELMERSOLVER_RPATH_STRING}) ++ SET_TARGET_PROPERTIES(ElmerGrid PROPERTIES INSTALL_RPATH "${ELMERSOLVER_RPATH_STRING}") + ENDIF() + + #INSTALL(PROGRAMS ${CMAKE_BINARY_DIR}/elmergrid/src/ElmerGrid DESTINATION "bin") Added: head/cad/elmerfem/files/patch-fem-acx_elmer.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-fem-acx_elmer.m4 Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,10 @@ +--- fem/acx_elmer.m4.orig 2014-09-06 21:01:43.000000000 -0500 ++++ fem/acx_elmer.m4 2014-09-06 21:02:07.000000000 -0500 +@@ -851,7 +851,6 @@ + dnl run it + dnl printf "running: $CXX $acx_cxx_verbose_flag test.cpp 2>&1 |grep -e ' -l'\n" + acx_cxx_verbose_out=`$CXX $acx_cxx_verbose_flag test.cpp 2>&1 |grep -e ' -l'` +-acx_cxx_verbose_out=${acx_cxx_verbose_out//\"/ + acx_cxx_libs="" + + dnl get only the -l -L -R flags Added: head/cad/elmerfem/files/patch-fem-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-fem-configure Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,11 @@ +--- fem/configure.orig 2014-09-06 21:42:30.000000000 -0500 ++++ fem/configure 2014-09-06 21:43:51.000000000 -0500 +@@ -6325,7 +6325,7 @@ + printf "int main(int argc, char **argv) { return(1); }" > test.cpp + + acx_cxx_verbose_out=`$CXX $acx_cxx_verbose_flag test.cpp 2>&1 |grep -e ' -l'` +-acx_cxx_verbose_out=${acx_cxx_verbose_out//\"/ ++#acx_cxx_verbose_out=${acx_cxx_verbose_out//\"/ + acx_cxx_libs="" + + for acx_cxx_ldflag in $acx_cxx_verbose_out; do Added: head/cad/elmerfem/files/patch-fem-src-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-fem-src-Makefile.in Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,11 @@ +--- fem/src/Makefile.in.orig 2014-09-09 15:04:27.000000000 -0500 ++++ fem/src/Makefile.in 2014-09-09 15:28:20.000000000 -0500 +@@ -1119,7 +1119,7 @@ + @USE_WINDOWS_COMPILER_TRUE@ -L. -lelmersolver viewaxis/libviewaxis.a view3d/libview3d.a $(EXTRA_LIBS) $(BLAS_LIBS) + @USE_WINDOWS_COMPILER_FALSE@ $(FC) $(SH_LINKING_TO_FLAGS) $(RPATH_ELMER) $(B64FLAGS) $(LDFLAGS) \ + @USE_WINDOWS_COMPILER_FALSE@ -o ViewFactors$(EXE_EXT) ViewFactors$(OBJ_EXT) mpi_stubs$(OBJ_EXT) \ +-@USE_WINDOWS_COMPILER_FALSE@ -L. -lelmersolver viewaxis/libviewaxis.a view3d/libview3d.a $(EXTRA_LIBS) $(BLAS_LIBS) $(STDCXX_LIBS) ++@USE_WINDOWS_COMPILER_FALSE@ -L. -lelmersolver viewaxis/libviewaxis.a view3d/libview3d.a $(EXTRA_LIBS) $(BLAS_LIBS) + + GebhardtFactors$(EXE_EXT): libelmersolver$(SHL_EXT) GebhardtFactors$(OBJ_EXT) mpi_stubs$(OBJ_EXT) + $(FC) $(SH_LINKING_TO_FLAGS) $(RPATH_ELMER) $(B64FLAGS) $(LDFLAGS) \ Added: head/cad/elmerfem/files/patch-fem_src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-fem_src_CMakeLists.txt Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,46 @@ +--- fem/src/CMakeLists.txt.orig 2014-09-25 15:07:43.000000000 +0200 ++++ fem/src/CMakeLists.txt 2014-10-06 23:29:26.000000000 +0200 +@@ -117,9 +117,9 @@ + + + ADD_EXECUTABLE(Solver_TGT Solver.F90) +- SET_TARGET_PROPERTIES(Solver_TGT PROPERTIES OUTPUT_NAME ${ELMERSOLVER_OUTPUT_NAME}) ++ SET_TARGET_PROPERTIES(Solver_TGT PROPERTIES OUTPUT_NAME "${ELMERSOLVER_OUTPUT_NAME}") + IF(NOT(WIN32)) +- SET_TARGET_PROPERTIES(Solver_TGT PROPERTIES INSTALL_RPATH ${ELMERSOLVER_RPATH_STRING}) ++ SET_TARGET_PROPERTIES(Solver_TGT PROPERTIES INSTALL_RPATH "${ELMERSOLVER_RPATH_STRING}") + ENDIF() + + IF(NOT(WITH_MPI)) +@@ -214,7 +214,7 @@ + INSTALL(TARGETS ViewFactors RUNTIME DESTINATION "bin") + + IF(NOT(WIN32)) +- SET_TARGET_PROPERTIES(ViewFactors PROPERTIES INSTALL_RPATH ${ELMERSOLVER_RPATH_STRING}) ++ SET_TARGET_PROPERTIES(ViewFactors PROPERTIES INSTALL_RPATH "${ELMERSOLVER_RPATH_STRING}") + ENDIF() + + # GebhardFactors +@@ -223,7 +223,7 @@ + mpi_stubs elmersolver) + + IF(NOT(WIN32)) +- SET_TARGET_PROPERTIES(GebhardtFactors PROPERTIES INSTALL_RPATH ${ELMERSOLVER_RPATH_STRING}) ++ SET_TARGET_PROPERTIES(GebhardtFactors PROPERTIES INSTALL_RPATH "${ELMERSOLVER_RPATH_STRING}") + ENDIF() + + IF(WITH_Trilinos) +@@ -267,9 +267,10 @@ + + IF(WITH_MPI) + IF(NOT(WIN32)) +- INSTALL(CODE "EXECUTE_PROCESS(COMMAND \${CMAKE_COMMAND} -E create_symlink +- \${CMAKE_INSTALL_PREFIX}/bin/ElmerSolver_mpi +- \${CMAKE_INSTALL_PREFIX}/bin/ElmerSolver)") ++ # Create symlink after, to repect STAGEDIR ++ #INSTALL(CODE "EXECUTE_PROCESS(COMMAND \${CMAKE_COMMAND} -E create_symlink ++ #\${CMAKE_INSTALL_PREFIX}/bin/ElmerSolver_mpi ++ #\${CMAKE_INSTALL_PREFIX}/bin/ElmerSolver)") + ELSE() + INSTALL(CODE "EXECUTE_PROCESS(COMMAND \${CMAKE_COMMAND} -E copy + \${CMAKE_INSTALL_PREFIX}/bin/ElmerSolver_mpi.exe Added: head/cad/elmerfem/files/patch-matc_src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-matc_src_CMakeLists.txt Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,11 @@ +--- matc/src/CMakeLists.txt.orig 2014-09-25 15:07:43.000000000 +0200 ++++ matc/src/CMakeLists.txt 2014-09-30 22:27:34.000000000 +0200 +@@ -12,7 +12,7 @@ + + SET_TARGET_PROPERTIES(Matc_bin PROPERTIES OUTPUT_NAME matc) + IF(NOT(WIN32)) +- SET_TARGET_PROPERTIES(Matc_bin PROPERTIES INSTALL_RPATH ${ELMERSOLVER_RPATH_STRING}) ++ SET_TARGET_PROPERTIES(Matc_bin PROPERTIES INSTALL_RPATH "${ELMERSOLVER_RPATH_STRING}") + ENDIF() + + INSTALL(TARGETS matc Matc_bin RUNTIME DESTINATION "bin" LIBRARY DESTINATION ${ELMER_INSTALL_LIB_DIR}) Added: head/cad/elmerfem/files/patch-post-src-elmerpost.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-post-src-elmerpost.h Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,10 @@ +--- post/src/elmerpost.h.orig 2014-09-09 15:50:25.000000000 -0500 ++++ post/src/elmerpost.h 2014-09-09 16:25:51.000000000 -0500 +@@ -62,6 +62,7 @@ + + #include + ++#define USE_INTERP_RESULT + + #if defined(MINGW32) || defined(WIN32) + Added: head/cad/elmerfem/files/patch-post-src-screensave.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/files/patch-post-src-screensave.c Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,10 @@ +--- post/src/screensave.c.orig 2014-09-09 20:47:35.000000000 -0500 ++++ post/src/screensave.c 2014-09-09 20:50:39.000000000 -0500 +@@ -32,6 +32,7 @@ + #include + + ++#define USE_INTERP_RESULT + #include "tcl.h" + + #if !(defined(WIN32) || defined(win32)) Added: head/cad/elmerfem/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/pkg-descr Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,17 @@ +Elmer - Open Source Finite Element Software for Multiphysical Problems. + +Elmer is an open source multiphysical simulation software mainly +developed by CSC - IT Center for Science (CSC). Elmer development was +started 1995 in collaboration with Finnish Universities, research institutes +and industry. After it's open source publication in 2005, the use and +development of Elmer has become international. + +Elmer includes physical models of fluid dynamics, structural mechanics, +electromagnetics, heat transfer and acoustics, for example. These are +described by partial differential equations which Elmer solves by the +Finite Element Method (FEM). + +WWW: http://www.csc.fi/elmer/elmersolve/ + +Note: This package installs in it's own ELMER_HOME path, so you usually +have to add /usr/local/elmer/bin/ to your shell path. Added: head/cad/elmerfem/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/elmerfem/pkg-plist Mon Oct 6 21:48:25 2014 (r370235) @@ -0,0 +1,193 @@ +bin/ElmerGrid +bin/ElmerSolver +bin/ElmerSolver_mpi +bin/GebhardtFactors +bin/Mesh2D +bin/ViewFactors +bin/elmerf90 +bin/elmerld +bin/matc +lib/elmersolver/libamd.a +lib/elmersolver/libamdf77.a +lib/elmersolver/libelmersolver.so +lib/elmersolver/libfhuti.so +lib/elmersolver/libmatc.so +lib/elmersolver/libmpi_stubs.so +lib/elmersolver/libumfpack.a +share/elmersolver/include/adaptive.mod +share/elmersolver/include/ascbinoutpututils.mod +share/elmersolver/include/bandmatrix.mod +share/elmersolver/include/bandwidthoptimize.mod +share/elmersolver/include/binio.mod +share/elmersolver/include/blocksolve.mod +share/elmersolver/include/clusteringmethods.mod +share/elmersolver/include/coordinatesystems.mod +share/elmersolver/include/crsmatrix.mod +share/elmersolver/include/defutils.mod +share/elmersolver/include/differentials.mod +share/elmersolver/include/diffuseconvective.mod +share/elmersolver/include/diffuseconvectivegeneral.mod +share/elmersolver/include/directsolve.mod +share/elmersolver/include/dxfile.mod +share/elmersolver/include/eigensolve.mod +share/elmersolver/include/elementdescription.mod +share/elmersolver/include/elementutils.mod +share/elmersolver/include/exchangecorrelations.mod +share/elmersolver/include/fetisolve.mod +share/elmersolver/include/freesurface.mod +share/elmersolver/include/gebhardtfactorglobals.mod +share/elmersolver/include/generalutils.mod +share/elmersolver/include/globmat.mod +share/elmersolver/include/globmatc.mod +share/elmersolver/include/hashtable.mod +share/elmersolver/include/huti_aux.mod +share/elmersolver/include/huti_bicgstab.mod +share/elmersolver/include/huti_bicgstab_2.mod +share/elmersolver/include/huti_cg.mod +share/elmersolver/include/huti_cgs.mod +share/elmersolver/include/huti_gmres.mod +share/elmersolver/include/huti_interfaces.mod +share/elmersolver/include/huti_qmr.mod +share/elmersolver/include/huti_sfe.mod +share/elmersolver/include/huti_tfqmr.mod +share/elmersolver/include/integration.mod +share/elmersolver/include/interpolation.mod +share/elmersolver/include/iso_varying_string.mod +share/elmersolver/include/iterativemethods.mod +share/elmersolver/include/itersolve.mod +share/elmersolver/include/kinds.mod +share/elmersolver/include/linearalgebra.mod +share/elmersolver/include/listmatrix.mod +share/elmersolver/include/lists.mod +share/elmersolver/include/loadmod.mod +share/elmersolver/include/ludecomposition.mod +share/elmersolver/include/magnetodynamicsutils.mod +share/elmersolver/include/mainutils.mod +share/elmersolver/include/materialmodels.mod +share/elmersolver/include/maxwell.mod +share/elmersolver/include/maxwellaxis.mod +share/elmersolver/include/maxwellgeneral.mod +share/elmersolver/include/meshutils.mod +share/elmersolver/include/messages.mod +share/elmersolver/include/modeldescription.mod +share/elmersolver/include/multigrid.mod +share/elmersolver/include/navierstokes.mod +share/elmersolver/include/navierstokescylindrical.mod +share/elmersolver/include/navierstokesgeneral.mod +share/elmersolver/include/paralleleigensolve.mod +share/elmersolver/include/parallelutils.mod +share/elmersolver/include/particledynamicsstuff.mod +share/elmersolver/include/particleutils.mod +share/elmersolver/include/pelementbase.mod +share/elmersolver/include/pelementmaps.mod +share/elmersolver/include/porousmaterials.mod +share/elmersolver/include/radiation.mod +share/elmersolver/include/radiationfactorglobals.mod +share/elmersolver/include/smoothers.mod +share/elmersolver/include/solverutils.mod +share/elmersolver/include/sparitercomm.mod +share/elmersolver/include/spariterglobals.mod +share/elmersolver/include/spariterprecond.mod +share/elmersolver/include/sparitersolve.mod +share/elmersolver/include/statelecboundaryutils.mod +share/elmersolver/include/stressgeneral.mod +share/elmersolver/include/stresslocal.mod +share/elmersolver/include/timeintegrate.mod +share/elmersolver/include/types.mod +share/elmersolver/include/viewfactorglobals.mod +share/elmersolver/include/vtklegacyfile.mod +share/elmersolver/lib/Acoustics.so +share/elmersolver/lib/AdvectionDiffusion.so +share/elmersolver/lib/AdvectionReaction.so +share/elmersolver/lib/ArteryOutlet.so +share/elmersolver/lib/ArtificialCompressibility.so +share/elmersolver/lib/CoilSolver.so +share/elmersolver/lib/CompressibleNS.so +share/elmersolver/lib/CoupledNSUpdate.so +share/elmersolver/lib/DCRComplexSolve.so +share/elmersolver/lib/DFTSolver.so +share/elmersolver/lib/DataToFieldSolver.so +share/elmersolver/lib/DistanceSolve.so +share/elmersolver/lib/DivProjection.so +share/elmersolver/lib/DivergenceSolver.so +share/elmersolver/lib/ElasticSolve.so +share/elmersolver/lib/ElectricForce.so +share/elmersolver/lib/Electrokinetics.so +share/elmersolver/lib/ElementSizeSolver.so +share/elmersolver/lib/EliminateDirichlet.so +share/elmersolver/lib/EliminatePeriodic.so +share/elmersolver/lib/EnergyRelease.so +share/elmersolver/lib/FDiffusion.so +share/elmersolver/lib/FDiffusion3D.so +share/elmersolver/lib/FilterTimeSeries.so +share/elmersolver/lib/FindOptimum.so +share/elmersolver/lib/FlowSolve.so +share/elmersolver/lib/FluidicForce.so +share/elmersolver/lib/FluxSolver.so +share/elmersolver/lib/FreeSurfaceReduced.so +share/elmersolver/lib/FreeSurfaceSolver.so +share/elmersolver/lib/HeatSolve.so +share/elmersolver/lib/HelmholtzBEM.so +share/elmersolver/lib/HelmholtzSolve.so +share/elmersolver/lib/Isosurface.so +share/elmersolver/lib/KESolver.so +share/elmersolver/lib/Komega.so +share/elmersolver/lib/LevelSet.so +share/elmersolver/lib/MagneticSolve.so +share/elmersolver/lib/MagnetoDynamics.so +share/elmersolver/lib/MagnetoDynamics2D.so +share/elmersolver/lib/MeshSolve.so +share/elmersolver/lib/ModelPDE.so +share/elmersolver/lib/MovingElstatSolver.so +share/elmersolver/lib/NonphysicalMeshSolve.so +share/elmersolver/lib/NormalSolver.so +share/elmersolver/lib/ParStokes.so +share/elmersolver/lib/ParticleAdvector.so +share/elmersolver/lib/ParticleDynamics.so +share/elmersolver/lib/PhaseChangeSolve.so +share/elmersolver/lib/PoissonBEM.so +share/elmersolver/lib/PoissonBoltzmannSolve.so +share/elmersolver/lib/PressurePrecond.so +share/elmersolver/lib/PressureUpdate.so +share/elmersolver/lib/ProjectToPlane.so +share/elmersolver/lib/RateOfChange.so +share/elmersolver/lib/ReloadData.so +share/elmersolver/lib/ReloadInput.so +share/elmersolver/lib/ResultOutputSolve.so +share/elmersolver/lib/ReynoldsSolver.so +share/elmersolver/lib/RichardsSolver.so +share/elmersolver/lib/RigidBodyReduction.so +share/elmersolver/lib/RigidMeshMapper.so +share/elmersolver/lib/SOLVER.KEYWORDS +share/elmersolver/lib/SSTKomega.so +share/elmersolver/lib/SaveData.so +share/elmersolver/lib/SaveGridData.so +share/elmersolver/lib/ScalarPotentialSolver.so +share/elmersolver/lib/ShallowWaterNS.so +share/elmersolver/lib/ShearrateSolver.so +share/elmersolver/lib/ShellSolve.so +share/elmersolver/lib/Smitc.so +share/elmersolver/lib/Spalart-Allmaras.so +share/elmersolver/lib/StatCurrentSolve.so +share/elmersolver/lib/StatElecBoundary.so +share/elmersolver/lib/StatElecSolve.so +share/elmersolver/lib/StatMagSolve.so +share/elmersolver/lib/SteadyPhaseChange.so +share/elmersolver/lib/Stokes.so +share/elmersolver/lib/StreamSolver.so +share/elmersolver/lib/StressSolve.so +share/elmersolver/lib/StructuredFlowLine.so +share/elmersolver/lib/StructuredMeshMapper.so +share/elmersolver/lib/StructuredProjectToPlane.so +share/elmersolver/lib/ThermoElectricSolver.so +share/elmersolver/lib/TransientPhaseChange.so +share/elmersolver/lib/TransportEquation.so +share/elmersolver/lib/V2FSolver.so +share/elmersolver/lib/VelocityPrecond.so +share/elmersolver/lib/ViscousCompressibility.so +share/elmersolver/lib/VorticitySolver.so +share/elmersolver/lib/elements.def +share/elmersolver/license_texts/GPL-2.txt +share/elmersolver/license_texts/LGPL-2.1.txt +share/elmersolver/license_texts/LICENSES +share/elmersolver/license_texts/fem/LICENSES From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:03:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D80BF15; Mon, 6 Oct 2014 22:03:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F33C879; Mon, 6 Oct 2014 22:02:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96M2xuS038493; Mon, 6 Oct 2014 22:02:59 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96M2xOm038488; Mon, 6 Oct 2014 22:02:59 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062202.s96M2xOm038488@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 22:02:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370236 - head/graphics/osgearth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:03:00 -0000 Author: antoine Date: Mon Oct 6 22:02:58 2014 New Revision: 370236 URL: https://svnweb.freebsd.org/changeset/ports/370236 QAT: https://qat.redports.org/buildarchive/r370236/ Log: Unbreak after graphics/osg update Modified: head/graphics/osgearth/Makefile head/graphics/osgearth/pkg-plist Modified: head/graphics/osgearth/Makefile ============================================================================== --- head/graphics/osgearth/Makefile Mon Oct 6 21:48:25 2014 (r370235) +++ head/graphics/osgearth/Makefile Mon Oct 6 22:02:58 2014 (r370236) @@ -3,7 +3,7 @@ PORTNAME= osgearth PORTVERSION= 2.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics geography MASTER_SITES= https://github.com/gwaldron/${PORTNAME}/archive/ @@ -22,7 +22,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTNAM USE_LDCONFIG= YES USE_SQLITE= 3 USES= cmake gmake pkgconfig zip -PLIST_SUB= OSGVERSION=3.2.0 +PLIST_SUB= OSGVERSION=3.2.1 CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include \ -DMINIZIP_INCLUDE_DIR=${LOCALBASE}/include/minizip \ Modified: head/graphics/osgearth/pkg-plist ============================================================================== --- head/graphics/osgearth/pkg-plist Mon Oct 6 21:48:25 2014 (r370235) +++ head/graphics/osgearth/pkg-plist Mon Oct 6 22:02:58 2014 (r370236) @@ -438,41 +438,3 @@ lib/osgPlugins-%%OSGVERSION%%/osgdb_osge lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_wms.so lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_xyz.so lib/osgPlugins-%%OSGVERSION%%/osgdb_osgearth_yahoo.so -@dirrmtry lib/osgPlugins-%%OSGVERSION%% -@dirrmtry include/osgEarthUtil -@dirrmtry include/osgEarthSymbology -@dirrmtry include/osgEarthFeatures -@dirrmtry include/osgEarthDrivers/yahoo -@dirrmtry include/osgEarthDrivers/xyz -@dirrmtry include/osgEarthDrivers/wms -@dirrmtry include/osgEarthDrivers/wcs -@dirrmtry include/osgEarthDrivers/vpb -@dirrmtry include/osgEarthDrivers/tms -@dirrmtry include/osgEarthDrivers/tileservice -@dirrmtry include/osgEarthDrivers/tileindex -@dirrmtry include/osgEarthDrivers/tilecache -@dirrmtry include/osgEarthDrivers/refresh -@dirrmtry include/osgEarthDrivers/osg -@dirrmtry include/osgEarthDrivers/ocean_surface -@dirrmtry include/osgEarthDrivers/model_simple -@dirrmtry include/osgEarthDrivers/model_feature_stencil -@dirrmtry include/osgEarthDrivers/model_feature_geom -@dirrmtry include/osgEarthDrivers/mbtiles -@dirrmtry include/osgEarthDrivers/mask_feature -@dirrmtry include/osgEarthDrivers/kml -@dirrmtry include/osgEarthDrivers/gdal -@dirrmtry include/osgEarthDrivers/feature_wfs -@dirrmtry include/osgEarthDrivers/feature_tfs -@dirrmtry include/osgEarthDrivers/feature_ogr -@dirrmtry include/osgEarthDrivers/engine_quadtree -@dirrmtry include/osgEarthDrivers/engine_osgterrain -@dirrmtry include/osgEarthDrivers/engine_mp -@dirrmtry include/osgEarthDrivers/engine_byo -@dirrmtry include/osgEarthDrivers/debug -@dirrmtry include/osgEarthDrivers/cache_filesystem -@dirrmtry include/osgEarthDrivers/bing -@dirrmtry include/osgEarthDrivers/arcgis -@dirrmtry include/osgEarthDrivers/agglite -@dirrmtry include/osgEarthDrivers -@dirrmtry include/osgEarthAnnotation -@dirrmtry include/osgEarth From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:39:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 870F67BF; Mon, 6 Oct 2014 22:39:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73C72640; Mon, 6 Oct 2014 22:39:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96MdwJY053482; Mon, 6 Oct 2014 22:39:58 GMT (envelope-from zi@FreeBSD.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Mdw0i053481; Mon, 6 Oct 2014 22:39:58 GMT (envelope-from zi@FreeBSD.org) Message-Id: <201410062239.s96Mdw0i053481@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: zi set sender to zi@FreeBSD.org using -f From: Ryan Steinmetz Date: Mon, 6 Oct 2014 22:39:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370237 - head/textproc/p5-Text-MultiMarkdown X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:39:58 -0000 Author: zi Date: Mon Oct 6 22:39:57 2014 New Revision: 370237 URL: https://svnweb.freebsd.org/changeset/ports/370237 QAT: https://qat.redports.org/buildarchive/r370237/ Log: - Add missing required dependency (HTTP::Entities: cpansearch.perl.org/src/BOBTFISH/Text-MultiMarkdown-1.000035/Changes) - Bump PORTREVISION Modified: head/textproc/p5-Text-MultiMarkdown/Makefile Modified: head/textproc/p5-Text-MultiMarkdown/Makefile ============================================================================== --- head/textproc/p5-Text-MultiMarkdown/Makefile Mon Oct 6 22:02:58 2014 (r370236) +++ head/textproc/p5-Text-MultiMarkdown/Makefile Mon Oct 6 22:39:57 2014 (r370237) @@ -3,6 +3,7 @@ PORTNAME= Text-MultiMarkdown PORTVERSION= 1.000035 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -13,7 +14,8 @@ COMMENT= Convert MultiMarkdown syntax to LICENSE= BSD3CLAUSE BUILD_DEPENDS= p5-Text-Markdown>=1.0.26:${PORTSDIR}/textproc/p5-Text-Markdown -RUN_DEPENDS:= ${BUILD_DEPENDS} +RUN_DEPENDS:= p5-HTML-Parser>0:${PORTSDIR}/www/p5-HTML-Parser \ + ${BUILD_DEPENDS} TEST_DEPENDS= p5-List-MoreUtils>=0:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:43:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8448C8DB; Mon, 6 Oct 2014 22:43:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7125674A; Mon, 6 Oct 2014 22:43:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Mh6In057425; Mon, 6 Oct 2014 22:43:06 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96Mh6oP057423; Mon, 6 Oct 2014 22:43:06 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062243.s96Mh6oP057423@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 22:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370238 - head/games/nethack34 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:43:06 -0000 Author: antoine Date: Mon Oct 6 22:43:05 2014 New Revision: 370238 URL: https://svnweb.freebsd.org/changeset/ports/370238 QAT: https://qat.redports.org/buildarchive/r370238/ Log: Fix packaging Modified: head/games/nethack34/Makefile head/games/nethack34/pkg-plist Modified: head/games/nethack34/Makefile ============================================================================== --- head/games/nethack34/Makefile Mon Oct 6 22:39:57 2014 (r370237) +++ head/games/nethack34/Makefile Mon Oct 6 22:43:05 2014 (r370238) @@ -105,6 +105,7 @@ pre-install: post-install: @cd ${WRKSRC}/doc; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS} manpages + @${MKDIR} ${STAGEDIR}${DATADIR}/save .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/Guidebook.txt ${STAGEDIR}${DOCSDIR} Modified: head/games/nethack34/pkg-plist ============================================================================== --- head/games/nethack34/pkg-plist Mon Oct 6 22:39:57 2014 (r370237) +++ head/games/nethack34/pkg-plist Mon Oct 6 22:43:05 2014 (r370238) @@ -154,9 +154,4 @@ man/man6/lev_comp.6.gz man/man6/%%HACKNAME%%.6.gz man/man6/recover.6.gz %%PORTDOCS%%%%DOCSDIR%%/Guidebook.txt -@exec mkdir %D/%%DATADIR%%/save -@exec chown games:games %D/%%DATADIR%%/save -@exec chmod 0775 %D/%%DATADIR%%/save -@unexec rmdir %D/%%DATADIR%%/save -@dirrmtry %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dir(games,games,0775) %%DATADIR%%/save From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:48:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 381B7BC6; Mon, 6 Oct 2014 22:48:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25613789; Mon, 6 Oct 2014 22:48:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96MmxK8058339; Mon, 6 Oct 2014 22:48:59 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96MmxFE058338; Mon, 6 Oct 2014 22:48:59 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201410062248.s96MmxFE058338@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Mon, 6 Oct 2014 22:48:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370239 - head/databases/redis-devel/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:48:59 -0000 Author: osa Date: Mon Oct 6 22:48:58 2014 New Revision: 370239 URL: https://svnweb.freebsd.org/changeset/ports/370239 QAT: https://qat.redports.org/buildarchive/r370239/ Log: Attempt to fix build on 8.x. Added: head/databases/redis-devel/files/patch-deps-hiredis-net.c (contents, props changed) Added: head/databases/redis-devel/files/patch-deps-hiredis-net.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/redis-devel/files/patch-deps-hiredis-net.c Mon Oct 6 22:48:58 2014 (r370239) @@ -0,0 +1,12 @@ +--- deps/hiredis/net.c.orig 2014-09-12 09:16:58.000000000 -0500 ++++ deps/hiredis/net.c 2014-09-16 19:45:20.339820576 -0500 +@@ -138,7 +138,8 @@ int redisKeepAlive(redisContext *c, int + return REDIS_ERR; + } + #else +-#ifndef __sun ++#if !defined(__sun) && defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && \ ++ defined(TCP_KEEPCNT) + val = interval; + if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE, &val, sizeof(val)) < 0) { + __redisSetError(c,REDIS_ERR_OTHER,strerror(errno)); From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:53:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D794DE7; Mon, 6 Oct 2014 22:53:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49F2C848; Mon, 6 Oct 2014 22:53:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Mrnvb062464; Mon, 6 Oct 2014 22:53:49 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96MrmCO062461; Mon, 6 Oct 2014 22:53:48 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410062253.s96MrmCO062461@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 6 Oct 2014 22:53:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370240 - in head/ports-mgmt/portupgrade-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:53:49 -0000 Author: bdrewery Date: Mon Oct 6 22:53:47 2014 New Revision: 370240 URL: https://svnweb.freebsd.org/changeset/ports/370240 QAT: https://qat.redports.org/buildarchive/r370240/ Log: - Update to checkin 2161660, which matches 2.4.13 - Update @dir usage Changes: * portinstall/upgrade -P[P] now supported with pkgng * pkg_fetch now supports pkgng * Fixed pkg-1.3 delete support to not recurse * Fixed portupgrade -b support with pkgng * Improved portsclean performance with pkgng (#59) * Use service(8) for rc script restarting * Show command executions with PORTUPGRADE_DEBUG in environment * Deprecate rc script handling in lieu of pkg's HANDLE_RC_SCRIPTS in pkg.conf Deleted: head/ports-mgmt/portupgrade-devel/files/ Modified: head/ports-mgmt/portupgrade-devel/Makefile head/ports-mgmt/portupgrade-devel/distinfo head/ports-mgmt/portupgrade-devel/pkg-plist Modified: head/ports-mgmt/portupgrade-devel/Makefile ============================================================================== --- head/ports-mgmt/portupgrade-devel/Makefile Mon Oct 6 22:48:58 2014 (r370239) +++ head/ports-mgmt/portupgrade-devel/Makefile Mon Oct 6 22:53:47 2014 (r370240) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= portupgrade -PORTVERSION= 20140524 -PORTREVISION= 2 +PORTVERSION= 20141006 +PORTREVISION= 0 PORTEPOCH= 3 CATEGORIES= ports-mgmt MASTER_SITES= GH \ @@ -23,7 +23,7 @@ USES= uidfix USE_GITHUB= yes GH_ACCOUNT= freebsd GH_PROJECT= portupgrade -GH_COMMIT= 352086b +GH_COMMIT= 2161660 GH_TAGNAME= ${GH_COMMIT} DIST_SUBDIR= ${PORTNAME} Modified: head/ports-mgmt/portupgrade-devel/distinfo ============================================================================== --- head/ports-mgmt/portupgrade-devel/distinfo Mon Oct 6 22:48:58 2014 (r370239) +++ head/ports-mgmt/portupgrade-devel/distinfo Mon Oct 6 22:53:47 2014 (r370240) @@ -1,2 +1,2 @@ -SHA256 (portupgrade/freebsd-portupgrade-20140524-0-g352086b.tar.gz) = 80c76da88848a5d7d9b5867e77f025ca029f12590a6c50bd75985263efa341b1 -SIZE (portupgrade/freebsd-portupgrade-20140524-0-g352086b.tar.gz) = 107125 +SHA256 (portupgrade/freebsd-portupgrade-20141006-0-g2161660.tar.gz) = 9b773754d634f39ed81ed451536a0dbed8a89f8d2097509cd80defb612c45898 +SIZE (portupgrade/freebsd-portupgrade-20141006-0-g2161660.tar.gz) = 107785 Modified: head/ports-mgmt/portupgrade-devel/pkg-plist ============================================================================== --- head/ports-mgmt/portupgrade-devel/pkg-plist Mon Oct 6 22:48:58 2014 (r370239) +++ head/ports-mgmt/portupgrade-devel/pkg-plist Mon Oct 6 22:53:47 2014 (r370240) @@ -1,6 +1,4 @@ -@exec /bin/mkdir -p %D/lib/compat/pkg -@dirrmtry lib/compat/pkg -@dirrmtry lib/compat +@dir lib/compat/pkg man/man1/pkg_deinstall.1.gz man/man1/pkg_fetch.1.gz man/man1/pkg_glob.1.gz @@ -46,19 +44,12 @@ sbin/portversion %%RUBY_SITELIBDIR%%/pkgtools/portsdb.rb %%RUBY_SITELIBDIR%%/pkgtools/revision.rb %%RUBY_SITELIBDIR%%/pkgtools.rb -@dirrm %%RUBY_SITELIBDIR%%/pkgtools @unexec if cmp -s %D/etc/pkgtools.conf %D/etc/pkgtools.conf.sample; then rm -f %D/etc/pkgtools.conf; fi etc/pkgtools.conf.sample @exec [ -f %B/pkgtools.conf ] || cp %B/%f %B/pkgtools.conf etc/pkgtools.status-pkg.sh share/zsh/site-functions/_pkgtools -@dirrmtry share/zsh/site-functions -@dirrmtry share/zsh %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bash/complete.sample %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tcsh/complete.sample %%PORTDOCS%%%%DOCSDIR%%/NEWS.md %%PORTDOCS%%%%DOCSDIR%%/README.md -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/bash -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tcsh -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:54:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D774ECF; Mon, 6 Oct 2014 22:54:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 09FE784E; Mon, 6 Oct 2014 22:54:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96MsO9O062674; Mon, 6 Oct 2014 22:54:24 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96MsOJH062672; Mon, 6 Oct 2014 22:54:24 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062254.s96MsOJH062672@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 22:54:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370241 - head/games/nethack33 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:54:25 -0000 Author: antoine Date: Mon Oct 6 22:54:24 2014 New Revision: 370241 URL: https://svnweb.freebsd.org/changeset/ports/370241 QAT: https://qat.redports.org/buildarchive/r370241/ Log: Fix packaging Modified: head/games/nethack33/Makefile head/games/nethack33/pkg-plist Modified: head/games/nethack33/Makefile ============================================================================== --- head/games/nethack33/Makefile Mon Oct 6 22:53:47 2014 (r370240) +++ head/games/nethack33/Makefile Mon Oct 6 22:54:24 2014 (r370241) @@ -99,6 +99,7 @@ post-install: @${LN} -s -f ${PREFIX}/bin/${HACKNAME} ${STAGEDIR}${PREFIX}/bin/${HACKLINK} .endif @cd ${WRKSRC}/doc; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS} manpages + @${MKDIR} ${STAGEDIR}${DATADIR}/save .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/Guidebook.txt ${STAGEDIR}${DOCSDIR} Modified: head/games/nethack33/pkg-plist ============================================================================== --- head/games/nethack33/pkg-plist Mon Oct 6 22:53:47 2014 (r370240) +++ head/games/nethack33/pkg-plist Mon Oct 6 22:54:24 2014 (r370241) @@ -149,9 +149,4 @@ man/man6/lev_comp%%HACKEXT%%.6.gz man/man6/%%HACKNAME%%.6.gz man/man6/recover%%HACKEXT%%.6.gz %%PORTDOCS%%%%DOCSDIR%%/Guidebook.txt -@exec mkdir %D/%%DATADIR%%/save -@exec chown games:games %D/%%DATADIR%%/save -@exec chmod 0775 %D/%%DATADIR%%/save -@unexec rmdir %D/%%DATADIR%%/save -@dirrmtry %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dir(games,games,0775) %%DATADIR%%/save From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:58:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C41CBB7; Mon, 6 Oct 2014 22:58:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6BD787A; Mon, 6 Oct 2014 22:58:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96Mwq0V063540; Mon, 6 Oct 2014 22:58:52 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96MwoqK063529; Mon, 6 Oct 2014 22:58:50 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410062258.s96MwoqK063529@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 6 Oct 2014 22:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:58:53 -0000 Author: marino Date: Mon Oct 6 22:58:50 2014 New Revision: 370242 URL: https://svnweb.freebsd.org/changeset/ports/370242 QAT: https://qat.redports.org/buildarchive/r370242/ Log: Add new port emulators/hyperv-is (FreeBSD 8.4, 9.1, 9.2, 9.3, 10.0) PR: 182209 Submitted by: kylie (bsdic @ microsoft) The hyperv-is provision a collection of kernel mode drivers as well as user-space daemons to facilitate integration with Hyper-v to provide a feature rich and high performance FreeBSD guest experience. The FreeBSD Integration Service on Hyper-v includes a collection of kernel mode drivers as well as user-space daemons to interact with the drivers that are required to run Hyper-V-specific devices known as FreeBSD Integration Services (BIS). It is to facilitate integration with Hyper-v to provide a feature rich and high performance FreeBSD guest experience. See the man page for a list of binaries and their functions. FreeBSD support for hyperv-is was first added by Microsoft BSD Integration Services Team . Added: head/emulators/hyperv-is/ head/emulators/hyperv-is/Makefile (contents, props changed) head/emulators/hyperv-is/distinfo (contents, props changed) head/emulators/hyperv-is/files/ head/emulators/hyperv-is/files/pkg-message.A.in (contents, props changed) head/emulators/hyperv-is/files/pkg-message.B.in (contents, props changed) head/emulators/hyperv-is/pkg-descr (contents, props changed) head/emulators/hyperv-is/pkg-install (contents, props changed) head/emulators/hyperv-is/pkg-plist (contents, props changed) Modified: head/emulators/Makefile Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Mon Oct 6 22:54:24 2014 (r370241) +++ head/emulators/Makefile Mon Oct 6 22:58:50 2014 (r370242) @@ -53,6 +53,7 @@ SUBDIR += hercules SUBDIR += higan SUBDIR += hugo + SUBDIR += hyperv-is SUBDIR += i386-wine SUBDIR += i386-wine-compholio SUBDIR += i386-wine-devel Added: head/emulators/hyperv-is/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/Makefile Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,61 @@ +# $FreeBSD$ + +PORTNAME= hyperv-is +PORTVERSION= 1.1 +CATEGORIES= kld +MASTER_SITES= https://github.com/${MSLINK}/ +DISTNAME= ${DNAME} + +MAINTAINER= bsdic@microsoft.com +COMMENT= FreeBSD Integration Service on Hyper-v + +ONLY_FOR_ARCHS= amd64 i386 + +USES+= uidfix +BIS= ${PORTVERSION} +MSBASE= FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master +MSLINK= ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports +SUB_FILES= ${PMSG} + +.include + +.if ${OPSYS} != FreeBSD +IGNORE= ${OPSYS} not supported +.endif + +.if ${OSREL} == "10.0" +BIS= 1.0 +PLIST_SUB= A="@comment " B="" +PMSG= pkg-message.B +.else +CC= gcc -w +WRKSRC= ${WRKDIR}/hyperv-is-${PORTVERSION} +PLIST_SUB= B="@comment " A="" +PMSG= pkg-message.A +.endif + +FILE_84= hyperv-is-8.4.${BIS} +FILE_91= hyperv-is-9.1.${BIS} +FILE_92= hyperv-is-9.2.${BIS} +FILE_93= hyperv-is-9.3.${BIS} +FILE_100= hv-kvp-${BIS} +DNAME= ${FILE_${OSREL:S/.//}} + +.if empty(DNAME) +IGNORE= OSREL ${OSREL} not supported +.endif + +pre-install: + @${MKDIR} ${STAGEDIR}/boot/kernel \ + ${STAGEDIR}/etc/rc.d \ + ${STAGEDIR}/usr/share/man/man1 \ + ${STAGEDIR}/usr/share/man/man4 \ + ${STAGEDIR}/usr/share/man/man8 \ + ${STAGEDIR}/usr/local/hyperv/scripts \ + ${STAGEDIR}/usr/sbin + ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message + +post-install: + ${RM} ${STAGEDIR}/boot/kernel/linker.hints + +.include Added: head/emulators/hyperv-is/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/distinfo Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,10 @@ +SHA256 (hyperv-is-8.4.1.1.tar.gz) = 21f21bf8192892b823a63ebcea8cfd916ab0572b965c06471388386765346ae6 +SIZE (hyperv-is-8.4.1.1.tar.gz) = 94356 +SHA256 (hyperv-is-9.1.1.1.tar.gz) = ab4dc50d4f66ef983bd0de96388ba95e29d1e987362336bf44e3ff971425245a +SIZE (hyperv-is-9.1.1.1.tar.gz) = 94286 +SHA256 (hyperv-is-9.2.1.1.tar.gz) = 75e4ed3ba0c75ce5c67efed7b4f72ada3047f4cc986659b64c14979227292fd5 +SIZE (hyperv-is-9.2.1.1.tar.gz) = 94294 +SHA256 (hyperv-is-9.3.1.1.tar.gz) = 10a63b7b2a7bbfd158eed3852b0c25bfba3362c3cec28dfac641e22e61b23587 +SIZE (hyperv-is-9.3.1.1.tar.gz) = 94296 +SHA256 (hv-kvp-1.0.tar.gz) = c2c60ae645cae75b25934aae7b18c8a29bf00660a1e4ade5d8f31bb98d7ecc78 +SIZE (hv-kvp-1.0.tar.gz) = 30815 Added: head/emulators/hyperv-is/files/pkg-message.A.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/files/pkg-message.A.in Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,19 @@ +############################################################################# +After installing do the following steps: +# Deleting Hyper-v BIS driver names + sed -i "" '/Loader labels for Hyper-v BIS driver/d' /boot/loader.conf + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf + sed -i "" '/hv_utils_load/d' /boot/loader.conf + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf + + #Hyper-v driver names + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> /boot/loader.conf + echo 'hv_vmbus_load="YES"' >> /boot/loader.conf + echo 'hv_utils_load="YES"' >> /boot/loader.conf + echo 'hv_storvsc_load="YES"' >> /boot/loader.conf + echo 'hv_netvsc_load="YES"' >> /boot/loader.conf + echo 'hv_ata_pci_disengage_load="YES"' >>/boot/loader.conf +When deinstalled, restore /boot/loader.conf +############################################################################# Added: head/emulators/hyperv-is/files/pkg-message.B.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/files/pkg-message.B.in Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,17 @@ +############################################################################# +To enable hv_kvp, you should do the steps following: + # Deleting kvp label + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf + sed -i "" '/hv_kvp_load/d' /etc/rc.conf + + #hyperv driver names + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> /boot/loader.conf + echo 'hv_kvp_load="YES"' >> /boot/loader.conf + +# KVP - daemon label + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf + echo 'hv_kvp_daemon_enable="YES"' >> /etc/rc.conf +After deinstall, you should restore /boot/loader.conf and /etc/rc.conf +############################################################################# Added: head/emulators/hyperv-is/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/pkg-descr Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,13 @@ +The hyperv-is provision a collection of kernel mode drivers as well as +user-space daemons to facilitate integration with Hyper-v to provide a +feature rich and high performance FreeBSD guest experience. + +The FreeBSD Integration Service on Hyper-v includes a collection of kernel +mode drivers as well as user-space daemons to interact with the drivers +that are required to run Hyper-V-specific devices known as FreeBSD +Integration Services (BIS). It is to facilitate integration with Hyper-v +to provide a feature rich and high performance FreeBSD guest experience. +See the man page for a list of binaries and their functions. + +FreeBSD support for hyperv-is was first added by Microsoft BSD Integration +Services Team . Added: head/emulators/hyperv-is/pkg-install ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/pkg-install Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,55 @@ +#!/bin/sh +# +# make install or pkg_add script +# Checks labels/gptids for roots and swap partitions +# adds hyperv labels in loader.conf +# + +#Check poudriere workdirs +POD_WRK_HOME=/wrkdirs +if [ ! -d ${POD_WRK_HOME} ]; then + POD_WRK_HOME=/ +fi + +WRKDIRS=${POD_WRK_HOME}$(pwd |awk '{print $1}')/work/stage +if [ ! -d ${WRKDIRS} ]; then + WRKDIRS=/ +fi + +if [ "$2" = "PRE-INSTALL" ]; then +echo "===> Pre-install Check" + +#rootfs check +root_flag=$(mount | awk '/ on \/ / { print $1 }' | cut -d / -f3-) +if [ "$root_flag" != "" ]; then + fs_test=$(glabel status | awk '{print $1}' | grep $root_flag) + if [ "$fs_test" == "" ]; then + echo " xxx rootfs Label/gptid missing in fstab" + fi +else + echo " xxx rootfs Label/gptid missing in fstab" +fi +#swap check +[ -f /etc/fstab ] && swap_flag=$(grep swap /etc/fstab | awk '{print $1}' | cut -d / -f3-) +if [ "$swap_flag" != "" ]; then + sw_test=$(glabel status | awk '{print $1}' | grep $swap_flag) + if [ "$sw_test" == "" ]; then + echo " xxx swap Label/gptid missing in fstab" + fi +else + echo " xxx swap Label/gptid missing in fstab " +fi + +if [ "$fs_test" != "" -a "$sw_test" != "" ]; then + echo "===> Labels/gptids Found" + echo "===> Hyper-V BIS Installation Continues" +else + echo "===> Labels/gptids Not found" + echo "===> Hyper-V BIS Installation Aborted" + echo "===> Refer to Disk UUID section in README document" + echo "===> Please refer the Prerequisites page and complete all steps" + echo "WWW: https://github.com/FreeBSDonHyper-V/Hyperv-Ports/wiki/Prerequisites " + exit 1 +fi +fi +exit 0 Added: head/emulators/hyperv-is/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/pkg-plist Mon Oct 6 22:58:50 2014 (r370242) @@ -0,0 +1,25 @@ +hyperv/scripts/hv_get_dhcp_info +hyperv/scripts/hv_get_dns_info +hyperv/scripts/hv_set_ifconfig +@cwd /boot/kernel +%%A%%hv_ata_pci_disengage.ko +%%A%%hv_netvsc.ko +%%A%%hv_storvsc.ko +%%A%%hv_utils.ko +%%A%%hv_vmbus.ko +%%B%%hv_kvp.ko +@cwd /etc/rc.d +hv_kvpd +%%A%%@cwd /usr/share/man/man1 +%%A%%hyperv-is.1.gz +%%B%%@cwd /usr/sbin +%%B%%hv_kvp_daemon +@cwd /usr/share/man/man4 +%%A%%hv_ata_pci_disengage.4.gz +hv_kvp.4.gz +%%A%%hv_netvsc.4.gz +%%A%%hv_storvsc.4.gz +%%A%%hv_utils.4.gz +%%A%%hv_vmbus.4.gz +%%B%%@cwd /usr/share/man/man8 +%%B%%hv_kvp_daemon.8.gz From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 22:59:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DABC61B0; Mon, 6 Oct 2014 22:59:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C79B0886; Mon, 6 Oct 2014 22:59:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96MxqEm063780; Mon, 6 Oct 2014 22:59:52 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96MxqpJ063779; Mon, 6 Oct 2014 22:59:52 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062259.s96MxqpJ063779@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 22:59:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370243 - head/net-p2p/p5-WWW-BitTorrent X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 22:59:53 -0000 Author: antoine Date: Mon Oct 6 22:59:52 2014 New Revision: 370243 URL: https://svnweb.freebsd.org/changeset/ports/370243 QAT: https://qat.redports.org/buildarchive/r370243/ Log: Remove double / to pass check-plist Modified: head/net-p2p/p5-WWW-BitTorrent/pkg-plist Modified: head/net-p2p/p5-WWW-BitTorrent/pkg-plist ============================================================================== --- head/net-p2p/p5-WWW-BitTorrent/pkg-plist Mon Oct 6 22:58:50 2014 (r370242) +++ head/net-p2p/p5-WWW-BitTorrent/pkg-plist Mon Oct 6 22:59:52 2014 (r370243) @@ -1,7 +1,4 @@ %%SITE_PERL%%/WWW/BitTorrent.pm -%%SITE_PERL%%//WWW/bittorrent.pl +%%SITE_PERL%%/WWW/bittorrent.pl %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/BitTorrent/.packlist %%PERL5_MAN3%%/WWW::BitTorrent.3.gz -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/BitTorrent -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW -@dirrmtry %%SITE_PERL%%/WWW From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:00:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 249CB295; Mon, 6 Oct 2014 23:00:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1188288E; Mon, 6 Oct 2014 23:00:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N0Exu064125; Mon, 6 Oct 2014 23:00:14 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N0Eqo064122; Mon, 6 Oct 2014 23:00:14 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410062300.s96N0Eqo064122@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 6 Oct 2014 23:00:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370244 - head/ports-mgmt/portupgrade-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:00:15 -0000 Author: bdrewery Date: Mon Oct 6 23:00:14 2014 New Revision: 370244 URL: https://svnweb.freebsd.org/changeset/ports/370244 QAT: https://qat.redports.org/buildarchive/r370244/ Log: - Plist fixes. No need for @exec and use @sample. Modified: head/ports-mgmt/portupgrade-devel/Makefile head/ports-mgmt/portupgrade-devel/pkg-plist Modified: head/ports-mgmt/portupgrade-devel/Makefile ============================================================================== --- head/ports-mgmt/portupgrade-devel/Makefile Mon Oct 6 22:59:52 2014 (r370243) +++ head/ports-mgmt/portupgrade-devel/Makefile Mon Oct 6 23:00:14 2014 (r370244) @@ -3,7 +3,7 @@ PORTNAME= portupgrade PORTVERSION= 20141006 -PORTREVISION= 0 +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= ports-mgmt MASTER_SITES= GH \ Modified: head/ports-mgmt/portupgrade-devel/pkg-plist ============================================================================== --- head/ports-mgmt/portupgrade-devel/pkg-plist Mon Oct 6 22:59:52 2014 (r370243) +++ head/ports-mgmt/portupgrade-devel/pkg-plist Mon Oct 6 23:00:14 2014 (r370244) @@ -30,7 +30,6 @@ sbin/portsclean sbin/portsdb sbin/portupgrade sbin/portversion -@exec /bin/mkdir -p %D/%%RUBY_SITELIBDIR%%/pkgtools %%RUBY_SITELIBDIR%%/pkgtools/pkg.rb %%RUBY_SITELIBDIR%%/pkgtools/pkgdb.rb %%RUBY_SITELIBDIR%%/pkgtools/pkgdbtools.rb @@ -44,9 +43,7 @@ sbin/portversion %%RUBY_SITELIBDIR%%/pkgtools/portsdb.rb %%RUBY_SITELIBDIR%%/pkgtools/revision.rb %%RUBY_SITELIBDIR%%/pkgtools.rb -@unexec if cmp -s %D/etc/pkgtools.conf %D/etc/pkgtools.conf.sample; then rm -f %D/etc/pkgtools.conf; fi -etc/pkgtools.conf.sample -@exec [ -f %B/pkgtools.conf ] || cp %B/%f %B/pkgtools.conf +@sample etc/pkgtools.conf.sample etc/pkgtools.status-pkg.sh share/zsh/site-functions/_pkgtools %%PORTEXAMPLES%%%%EXAMPLESDIR%%/bash/complete.sample From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:03:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F41A0436; Mon, 6 Oct 2014 23:03:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E16A093C; Mon, 6 Oct 2014 23:03:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N3amE067979; Mon, 6 Oct 2014 23:03:36 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N3aQL067977; Mon, 6 Oct 2014 23:03:36 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062303.s96N3aQL067977@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 23:03:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370245 - head/graphics/gimp-beautify-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:03:37 -0000 Author: antoine Date: Mon Oct 6 23:03:36 2014 New Revision: 370245 URL: https://svnweb.freebsd.org/changeset/ports/370245 QAT: https://qat.redports.org/buildarchive/r370245/ Log: Remove trailing / to pass check-plist Modified: head/graphics/gimp-beautify-plugin/Makefile Modified: head/graphics/gimp-beautify-plugin/Makefile ============================================================================== --- head/graphics/gimp-beautify-plugin/Makefile Mon Oct 6 23:00:14 2014 (r370244) +++ head/graphics/gimp-beautify-plugin/Makefile Mon Oct 6 23:03:36 2014 (r370245) @@ -30,7 +30,7 @@ USE_GCC= yes USE_GNOME= atk cairo gdkpixbuf2 gtk20 USE_XORG= x11 xcomposite xcursor xdamage xext xfixes xi xinerama xrandr xrender -PLUGIN_DIR?= libexec/gimp/2.2/plug-ins/ +PLUGIN_DIR?= libexec/gimp/2.2/plug-ins PLUGINS= beautify \ border \ simple-border \ @@ -41,11 +41,6 @@ PLUGINS= beautify \ PLIST_FILES+= ${PLUGIN_DIR}/${plugin} .endfor -# installed dirs -PLIST_DIRSTRY= libexec/gimp/2.2/plug-ins \ - libexec/gimp/2.2 \ - libexec/gimp - post-patch: @${REINPLACE_CMD} \ -e 's|gimptool-2.0|${LOCALBASE}/bin/gimptool-2.0|' \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:04:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D6E3528; Mon, 6 Oct 2014 23:04:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5A09C94C; Mon, 6 Oct 2014 23:04:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N4vUO068283; Mon, 6 Oct 2014 23:04:57 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N4uFD068280; Mon, 6 Oct 2014 23:04:56 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410062304.s96N4uFD068280@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 6 Oct 2014 23:04:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370246 - in head/ports-mgmt/portupgrade: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:04:57 -0000 Author: bdrewery Date: Mon Oct 6 23:04:56 2014 New Revision: 370246 URL: https://svnweb.freebsd.org/changeset/ports/370246 QAT: https://qat.redports.org/buildarchive/r370246/ Log: - Update to 2.4.13 - Update plist for pkg-1.3 - Remove pkg-message as ALT_PKGDEP has not worked properly since 2008. See https://github.com/freebsd/portupgrade/issues/61 Changes: * portinstall/upgrade -P[P] now supported with pkgng * pkg_fetch now supports pkgng * Fixed pkg-1.3 delete support to not recurse * Fixed portupgrade -b support with pkgng * Improved portsclean performance with pkgng (#59) * Use service(8) for rc script restarting * Show command executions with PORTUPGRADE_DEBUG in environment * Deprecate rc script handling in lieu of pkg's HANDLE_RC_SCRIPTS in pkg.conf Deleted: head/ports-mgmt/portupgrade/files/ head/ports-mgmt/portupgrade/pkg-message Modified: head/ports-mgmt/portupgrade/Makefile head/ports-mgmt/portupgrade/distinfo head/ports-mgmt/portupgrade/pkg-plist Modified: head/ports-mgmt/portupgrade/Makefile ============================================================================== --- head/ports-mgmt/portupgrade/Makefile Mon Oct 6 23:03:36 2014 (r370245) +++ head/ports-mgmt/portupgrade/Makefile Mon Oct 6 23:04:56 2014 (r370246) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= portupgrade -PORTVERSION= 2.4.12 -PORTREVISION= 2 +PORTVERSION= 2.4.13 +PORTREVISION= 0 PORTEPOCH= 2 CATEGORIES= ports-mgmt MASTER_SITES= SF/portupgrade/pkgtools/dist/ \ Modified: head/ports-mgmt/portupgrade/distinfo ============================================================================== --- head/ports-mgmt/portupgrade/distinfo Mon Oct 6 23:03:36 2014 (r370245) +++ head/ports-mgmt/portupgrade/distinfo Mon Oct 6 23:04:56 2014 (r370246) @@ -1,2 +1,2 @@ -SHA256 (portupgrade/pkgtools-2.4.12.tar.bz2) = 5b389fc877798d5948698923daf2d166fa724ba9d932505253398fc7721e1d82 -SIZE (portupgrade/pkgtools-2.4.12.tar.bz2) = 85928 +SHA256 (portupgrade/pkgtools-2.4.13.tar.bz2) = ddcca87ea5324f54e68774757697980272077d176086fd5957b8b0338d10c06e +SIZE (portupgrade/pkgtools-2.4.13.tar.bz2) = 86529 Modified: head/ports-mgmt/portupgrade/pkg-plist ============================================================================== --- head/ports-mgmt/portupgrade/pkg-plist Mon Oct 6 23:03:36 2014 (r370245) +++ head/ports-mgmt/portupgrade/pkg-plist Mon Oct 6 23:04:56 2014 (r370246) @@ -1,6 +1,4 @@ -@exec /bin/mkdir -p %D/lib/compat/pkg -@dirrmtry lib/compat/pkg -@dirrmtry lib/compat +@dir lib/compat/pkg man/man1/pkg_deinstall.1.gz man/man1/pkg_fetch.1.gz man/man1/pkg_glob.1.gz @@ -32,7 +30,6 @@ sbin/portsclean sbin/portsdb sbin/portupgrade sbin/portversion -@exec /bin/mkdir -p %D/%%RUBY_SITELIBDIR%%/pkgtools %%RUBY_SITELIBDIR%%/pkgtools/pkg.rb %%RUBY_SITELIBDIR%%/pkgtools/pkgdb.rb %%RUBY_SITELIBDIR%%/pkgtools/pkgdbtools.rb @@ -46,17 +43,10 @@ sbin/portversion %%RUBY_SITELIBDIR%%/pkgtools/portsdb.rb %%RUBY_SITELIBDIR%%/pkgtools/revision.rb %%RUBY_SITELIBDIR%%/pkgtools.rb -@dirrm %%RUBY_SITELIBDIR%%/pkgtools @sample etc/pkgtools.conf.sample etc/pkgtools.status-pkg.sh share/zsh/site-functions/_pkgtools -@dirrmtry share/zsh/site-functions -@dirrmtry share/zsh %%EXAMPLESDIR%%/bash/complete.sample %%EXAMPLESDIR%%/tcsh/complete.sample %%PORTDOCS%%%%DOCSDIR%%/NEWS.md %%PORTDOCS%%%%DOCSDIR%%/README.md -@dirrm %%EXAMPLESDIR%%/bash -@dirrm %%EXAMPLESDIR%%/tcsh -@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16A37625; Mon, 6 Oct 2014 23:06:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0434395F; Mon, 6 Oct 2014 23:06:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6FYb068582; Mon, 6 Oct 2014 23:06:15 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6FRp068581; Mon, 6 Oct 2014 23:06:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062306.s96N6FRp068581@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 23:06:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370247 - head/graphics/gimp-lensfun-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:06:16 -0000 Author: antoine Date: Mon Oct 6 23:06:15 2014 New Revision: 370247 URL: https://svnweb.freebsd.org/changeset/ports/370247 QAT: https://qat.redports.org/buildarchive/r370247/ Log: Remove trailing / to pass check-plist Modified: head/graphics/gimp-lensfun-plugin/Makefile Modified: head/graphics/gimp-lensfun-plugin/Makefile ============================================================================== --- head/graphics/gimp-lensfun-plugin/Makefile Mon Oct 6 23:04:56 2014 (r370246) +++ head/graphics/gimp-lensfun-plugin/Makefile Mon Oct 6 23:06:15 2014 (r370247) @@ -26,7 +26,7 @@ GH_PROJECT= GIMP-Lensfun GH_COMMIT= d0a0bd2 GH_TAGNAME= ${GH_COMMIT} -PLUGIN_DIR?= libexec/gimp/2.2/plug-ins/ +PLUGIN_DIR?= libexec/gimp/2.2/plug-ins PLUGINS= gimp-lensfun # installed files @@ -34,11 +34,6 @@ PLUGINS= gimp-lensfun PLIST_FILES+= ${PLUGIN_DIR}/${plugin} .endfor -# installed dirs -PLIST_DIRSTRY= libexec/gimp/2.2/plug-ins \ - libexec/gimp/2.2 \ - libexec/gimp - post-patch: @${REINPLACE_CMD} \ -e 's|gimptool-2.0|${LOCALBASE}/bin/gimptool-2.0|' \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B36BB708; Mon, 6 Oct 2014 23:06:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A00FE969; Mon, 6 Oct 2014 23:06:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6YHd068735; Mon, 6 Oct 2014 23:06:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6Yf2068733; Mon, 6 Oct 2014 23:06:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062306.s96N6Yf2068733@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370248 - head/sysutils/debhelper X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:06:34 -0000 Author: sunpoet Date: Mon Oct 6 23:06:33 2014 New Revision: 370248 URL: https://svnweb.freebsd.org/changeset/ports/370248 QAT: https://qat.redports.org/buildarchive/r370248/ Log: - Update to 9.20141003 Changes: http://source.joeyh.branchable.com/?p=source.git Modified: head/sysutils/debhelper/Makefile head/sysutils/debhelper/distinfo Modified: head/sysutils/debhelper/Makefile ============================================================================== --- head/sysutils/debhelper/Makefile Mon Oct 6 23:06:15 2014 (r370247) +++ head/sysutils/debhelper/Makefile Mon Oct 6 23:06:33 2014 (r370248) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= debhelper -PORTVERSION= 9.20140817 +PORTVERSION= 9.20141003 CATEGORIES= sysutils MASTER_SITES= DEBIAN DISTNAME= ${PORTNAME}_${PORTVERSION} Modified: head/sysutils/debhelper/distinfo ============================================================================== --- head/sysutils/debhelper/distinfo Mon Oct 6 23:06:15 2014 (r370247) +++ head/sysutils/debhelper/distinfo Mon Oct 6 23:06:33 2014 (r370248) @@ -1,2 +1,2 @@ -SHA256 (debhelper_9.20140817.tar.gz) = 4a6c2d5fe9156a5cc9f456d40bb266b8fcaeb78ea1f4d8266ea25b6644b9bba9 -SIZE (debhelper_9.20140817.tar.gz) = 545071 +SHA256 (debhelper_9.20141003.tar.gz) = cd7711176de2cef7943a239f7d27b706b0012e13e5f5309779447252fb0f6081 +SIZE (debhelper_9.20141003.tar.gz) = 545431 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7EDED7EE; Mon, 6 Oct 2014 23:06:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6BF9E96C; Mon, 6 Oct 2014 23:06:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6d0a068864; Mon, 6 Oct 2014 23:06:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6dm2068862; Mon, 6 Oct 2014 23:06:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062306.s96N6dm2068862@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:06:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370249 - head/misc/pciids X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:06:39 -0000 Author: sunpoet Date: Mon Oct 6 23:06:38 2014 New Revision: 370249 URL: https://svnweb.freebsd.org/changeset/ports/370249 QAT: https://qat.redports.org/buildarchive/r370249/ Log: - Update to 20141004 Changes: http://people.FreeBSD.org/~sunpoet/pciids-20141004.diff Modified: head/misc/pciids/Makefile head/misc/pciids/distinfo Modified: head/misc/pciids/Makefile ============================================================================== --- head/misc/pciids/Makefile Mon Oct 6 23:06:33 2014 (r370248) +++ head/misc/pciids/Makefile Mon Oct 6 23:06:38 2014 (r370249) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pciids -PORTVERSION= 20140922 +PORTVERSION= 20141004 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet Modified: head/misc/pciids/distinfo ============================================================================== --- head/misc/pciids/distinfo Mon Oct 6 23:06:33 2014 (r370248) +++ head/misc/pciids/distinfo Mon Oct 6 23:06:38 2014 (r370249) @@ -1,2 +1,2 @@ -SHA256 (pciids-20140922.tar.xz) = 1010ab781856826c9a4edc99318aba31190090ebbefc995bb8f510a5e9ab7e33 -SIZE (pciids-20140922.tar.xz) = 172312 +SHA256 (pciids-20141004.tar.xz) = 6ea05c40313232dd104388e32e21be69a7e7b0d9311ceb2af49b935ceffc64b4 +SIZE (pciids-20141004.tar.xz) = 172960 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 504448D1; Mon, 6 Oct 2014 23:06:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 232D8971; Mon, 6 Oct 2014 23:06:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6jNc069009; Mon, 6 Oct 2014 23:06:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6iH6069006; Mon, 6 Oct 2014 23:06:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062306.s96N6iH6069006@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:06:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370250 - head/devel/p5-Exporter-Tiny X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:06:45 -0000 Author: sunpoet Date: Mon Oct 6 23:06:43 2014 New Revision: 370250 URL: https://svnweb.freebsd.org/changeset/ports/370250 QAT: https://qat.redports.org/buildarchive/r370250/ Log: - Update to 0.042 - Cleanup PLIST Changes: http://search.cpan.org/dist/Exporter-Tiny/Changes Modified: head/devel/p5-Exporter-Tiny/Makefile head/devel/p5-Exporter-Tiny/distinfo head/devel/p5-Exporter-Tiny/pkg-plist Modified: head/devel/p5-Exporter-Tiny/Makefile ============================================================================== --- head/devel/p5-Exporter-Tiny/Makefile Mon Oct 6 23:06:38 2014 (r370249) +++ head/devel/p5-Exporter-Tiny/Makefile Mon Oct 6 23:06:43 2014 (r370250) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Exporter-Tiny -PORTVERSION= 0.040 +PORTVERSION= 0.042 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Exporter-Tiny/distinfo ============================================================================== --- head/devel/p5-Exporter-Tiny/distinfo Mon Oct 6 23:06:38 2014 (r370249) +++ head/devel/p5-Exporter-Tiny/distinfo Mon Oct 6 23:06:43 2014 (r370250) @@ -1,2 +1,2 @@ -SHA256 (Exporter-Tiny-0.040.tar.gz) = f9b7ab58514d6dcce27543c8ab007ed510d05e138262a23a91d289474cc308a6 -SIZE (Exporter-Tiny-0.040.tar.gz) = 30486 +SHA256 (Exporter-Tiny-0.042.tar.gz) = 8f1622c5ebbfbcd519ead81df7917e48cb16cc527b1c46737b0459c3908a023f +SIZE (Exporter-Tiny-0.042.tar.gz) = 32173 Modified: head/devel/p5-Exporter-Tiny/pkg-plist ============================================================================== --- head/devel/p5-Exporter-Tiny/pkg-plist Mon Oct 6 23:06:38 2014 (r370249) +++ head/devel/p5-Exporter-Tiny/pkg-plist Mon Oct 6 23:06:43 2014 (r370250) @@ -3,6 +3,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Exporter/Tiny/.packlist %%PERL5_MAN3%%/Exporter::Shiny.3.gz %%PERL5_MAN3%%/Exporter::Tiny.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Exporter/Tiny -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Exporter -@dirrmtry %%SITE_PERL%%/Exporter From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA4549B3; Mon, 6 Oct 2014 23:06:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DF35978; Mon, 6 Oct 2014 23:06:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6oK4069150; Mon, 6 Oct 2014 23:06:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6nOm069147; Mon, 6 Oct 2014 23:06:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062306.s96N6nOm069147@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:06:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370251 - head/devel/p5-List-AllUtils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:06:50 -0000 Author: sunpoet Date: Mon Oct 6 23:06:49 2014 New Revision: 370251 URL: https://svnweb.freebsd.org/changeset/ports/370251 QAT: https://qat.redports.org/buildarchive/r370251/ Log: - Update to 0.09 - Cleanup PLIST Changes: http://search.cpan.org/dist/List-AllUtils/Changes Modified: head/devel/p5-List-AllUtils/Makefile head/devel/p5-List-AllUtils/distinfo head/devel/p5-List-AllUtils/pkg-plist Modified: head/devel/p5-List-AllUtils/Makefile ============================================================================== --- head/devel/p5-List-AllUtils/Makefile Mon Oct 6 23:06:43 2014 (r370250) +++ head/devel/p5-List-AllUtils/Makefile Mon Oct 6 23:06:49 2014 (r370251) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= List-AllUtils -PORTVERSION= 0.08 -PORTREVISION= 1 +PORTVERSION= 0.09 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-List-AllUtils/distinfo ============================================================================== --- head/devel/p5-List-AllUtils/distinfo Mon Oct 6 23:06:43 2014 (r370250) +++ head/devel/p5-List-AllUtils/distinfo Mon Oct 6 23:06:49 2014 (r370251) @@ -1,2 +1,2 @@ -SHA256 (List-AllUtils-0.08.tar.gz) = 27ddc2f0d47656cd3e08846ffe19f765bbd6c1d0e3c751ce4bb704e2b0b7ad1f -SIZE (List-AllUtils-0.08.tar.gz) = 19283 +SHA256 (List-AllUtils-0.09.tar.gz) = 4cfe6359cc6c9f4ba0d178e223f4b468d3cf7768d645334962f05de069bdaee2 +SIZE (List-AllUtils-0.09.tar.gz) = 25846 Modified: head/devel/p5-List-AllUtils/pkg-plist ============================================================================== --- head/devel/p5-List-AllUtils/pkg-plist Mon Oct 6 23:06:43 2014 (r370250) +++ head/devel/p5-List-AllUtils/pkg-plist Mon Oct 6 23:06:49 2014 (r370251) @@ -1,6 +1,3 @@ %%SITE_PERL%%/List/AllUtils.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/List/AllUtils/.packlist %%PERL5_MAN3%%/List::AllUtils.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/List/AllUtils -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/List -@dirrmtry %%SITE_PERL%%/List From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5E00BA93; Mon, 6 Oct 2014 23:06:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4B8E197B; Mon, 6 Oct 2014 23:06:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6toX069278; Mon, 6 Oct 2014 23:06:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6sJ7069276; Mon, 6 Oct 2014 23:06:54 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062306.s96N6sJ7069276@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:06:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370252 - head/german/mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:06:55 -0000 Author: sunpoet Date: Mon Oct 6 23:06:54 2014 New Revision: 370252 URL: https://svnweb.freebsd.org/changeset/ports/370252 QAT: https://qat.redports.org/buildarchive/r370252/ Log: - Update to 2014.10.05 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Mon Oct 6 23:06:49 2014 (r370251) +++ head/german/mythes/Makefile Mon Oct 6 23:06:54 2014 (r370252) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.09.15 +PORTVERSION= 2014.10.05 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Mon Oct 6 23:06:49 2014 (r370251) +++ head/german/mythes/distinfo Mon Oct 6 23:06:54 2014 (r370252) @@ -1,2 +1,2 @@ -SHA256 (mythes/Deutscher-Thesaurus-20140915.oxt) = 572ae93e1557cafd871c29ece8ea30217b9e513c8e373b31f6d120521eb1e0e2 -SIZE (mythes/Deutscher-Thesaurus-20140915.oxt) = 5908955 +SHA256 (mythes/Deutscher-Thesaurus-20141005.oxt) = 4699828ce1648cc91bbbe2c53f02b727cee580da056836661bc6c6a76068250e +SIZE (mythes/Deutscher-Thesaurus-20141005.oxt) = 5975861 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:06:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DA03EB84; Mon, 6 Oct 2014 23:06:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6F12981; Mon, 6 Oct 2014 23:06:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N6xsx069411; Mon, 6 Oct 2014 23:06:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N6xvN069407; Mon, 6 Oct 2014 23:06:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062306.s96N6xvN069407@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:06:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370253 - head/polish/hunspell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:07:00 -0000 Author: sunpoet Date: Mon Oct 6 23:06:58 2014 New Revision: 370253 URL: https://svnweb.freebsd.org/changeset/ports/370253 QAT: https://qat.redports.org/buildarchive/r370253/ Log: - Update to 20141005 Modified: head/polish/hunspell/Makefile head/polish/hunspell/distinfo Modified: head/polish/hunspell/Makefile ============================================================================== --- head/polish/hunspell/Makefile Mon Oct 6 23:06:54 2014 (r370252) +++ head/polish/hunspell/Makefile Mon Oct 6 23:06:58 2014 (r370253) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20140915 +PORTVERSION= 20141005 CATEGORIES= polish textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME} DISTNAME= sjp-myspell-pl-${PORTVERSION} Modified: head/polish/hunspell/distinfo ============================================================================== --- head/polish/hunspell/distinfo Mon Oct 6 23:06:54 2014 (r370252) +++ head/polish/hunspell/distinfo Mon Oct 6 23:06:58 2014 (r370253) @@ -1,2 +1,2 @@ -SHA256 (hunspell/sjp-myspell-pl-20140915.zip) = be52e884802ffcddb8a640ecf5a1d468511e3b771e8cffc94070f9682ca3cd18 -SIZE (hunspell/sjp-myspell-pl-20140915.zip) = 1134815 +SHA256 (hunspell/sjp-myspell-pl-20141005.zip) = 002eeb552bd63f42925bb4bb848267ad093b5d34b2f6a0166ef5e11609e64e5a +SIZE (hunspell/sjp-myspell-pl-20141005.zip) = 1134815 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:07:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE61AC63; Mon, 6 Oct 2014 23:07:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B849983; Mon, 6 Oct 2014 23:07:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N749L069551; Mon, 6 Oct 2014 23:07:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N74pA069549; Mon, 6 Oct 2014 23:07:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062307.s96N74pA069549@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:07:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370254 - head/textproc/nl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:07:04 -0000 Author: sunpoet Date: Mon Oct 6 23:07:03 2014 New Revision: 370254 URL: https://svnweb.freebsd.org/changeset/ports/370254 QAT: https://qat.redports.org/buildarchive/r370254/ Log: - Update to 2014.10.05 Modified: head/textproc/nl-mythes/Makefile head/textproc/nl-mythes/distinfo Modified: head/textproc/nl-mythes/Makefile ============================================================================== --- head/textproc/nl-mythes/Makefile Mon Oct 6 23:06:58 2014 (r370253) +++ head/textproc/nl-mythes/Makefile Mon Oct 6 23:07:03 2014 (r370254) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.09.15 +PORTVERSION= 2014.10.05 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= nl- Modified: head/textproc/nl-mythes/distinfo ============================================================================== --- head/textproc/nl-mythes/distinfo Mon Oct 6 23:06:58 2014 (r370253) +++ head/textproc/nl-mythes/distinfo Mon Oct 6 23:07:03 2014 (r370254) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_nl-20140915.oxt) = 125c260d32e0703f7b2531861796352511d6fa26b5c6702d8ae3f4a10752d6b6 -SIZE (mythes/thes_nl-20140915.oxt) = 1956080 +SHA256 (mythes/thes_nl-20141005.oxt) = aa131603456b241091211ff92b36f724bbf229502ac1e723c92151bd8fac1ca4 +SIZE (mythes/thes_nl-20141005.oxt) = 1956080 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:07:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DD3FD42; Mon, 6 Oct 2014 23:07:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AFDA985; Mon, 6 Oct 2014 23:07:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N79mU069689; Mon, 6 Oct 2014 23:07:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N78rM069687; Mon, 6 Oct 2014 23:07:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062307.s96N78rM069687@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:07:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370255 - head/textproc/sk-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:07:09 -0000 Author: sunpoet Date: Mon Oct 6 23:07:08 2014 New Revision: 370255 URL: https://svnweb.freebsd.org/changeset/ports/370255 QAT: https://qat.redports.org/buildarchive/r370255/ Log: - Update to 2014.10.05 Modified: head/textproc/sk-mythes/Makefile head/textproc/sk-mythes/distinfo Modified: head/textproc/sk-mythes/Makefile ============================================================================== --- head/textproc/sk-mythes/Makefile Mon Oct 6 23:07:03 2014 (r370254) +++ head/textproc/sk-mythes/Makefile Mon Oct 6 23:07:08 2014 (r370255) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.09.15 +PORTVERSION= 2014.10.05 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sk- Modified: head/textproc/sk-mythes/distinfo ============================================================================== --- head/textproc/sk-mythes/distinfo Mon Oct 6 23:07:03 2014 (r370254) +++ head/textproc/sk-mythes/distinfo Mon Oct 6 23:07:08 2014 (r370255) @@ -1,2 +1,2 @@ -SHA256 (mythes/OOo-Thesaurus2-sk_SK-20140915.zip) = 616a26269844a1efa9fbcebb83fa7938628200772950a115bc8f337e9f03cd10 -SIZE (mythes/OOo-Thesaurus2-sk_SK-20140915.zip) = 332561 +SHA256 (mythes/OOo-Thesaurus2-sk_SK-20141005.zip) = 28331f8b78e1d66843531c1de772893495cedc2cdefcba7c78c1a3839d9908e3 +SIZE (mythes/OOo-Thesaurus2-sk_SK-20141005.zip) = 332561 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:07:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F68AE21; Mon, 6 Oct 2014 23:07:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C79F987; Mon, 6 Oct 2014 23:07:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N7DBb069816; Mon, 6 Oct 2014 23:07:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N7DZw069814; Mon, 6 Oct 2014 23:07:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062307.s96N7DZw069814@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:07:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370256 - head/textproc/sl-mythes X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:07:14 -0000 Author: sunpoet Date: Mon Oct 6 23:07:12 2014 New Revision: 370256 URL: https://svnweb.freebsd.org/changeset/ports/370256 QAT: https://qat.redports.org/buildarchive/r370256/ Log: - Update to 2014.10.05 Modified: head/textproc/sl-mythes/Makefile head/textproc/sl-mythes/distinfo Modified: head/textproc/sl-mythes/Makefile ============================================================================== --- head/textproc/sl-mythes/Makefile Mon Oct 6 23:07:08 2014 (r370255) +++ head/textproc/sl-mythes/Makefile Mon Oct 6 23:07:12 2014 (r370256) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2014.09.15 +PORTVERSION= 2014.10.05 CATEGORIES= textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME}/ PKGNAMEPREFIX= sl- Modified: head/textproc/sl-mythes/distinfo ============================================================================== --- head/textproc/sl-mythes/distinfo Mon Oct 6 23:07:08 2014 (r370255) +++ head/textproc/sl-mythes/distinfo Mon Oct 6 23:07:12 2014 (r370256) @@ -1,2 +1,2 @@ -SHA256 (mythes/thes_sl_SI_v2-20140915.zip) = 0787cb224deeb05df83e1ca1d52da40157350cb3d598f06cd8e26d19a9972ab3 -SIZE (mythes/thes_sl_SI_v2-20140915.zip) = 350618 +SHA256 (mythes/thes_sl_SI_v2-20141005.zip) = b498145da8147d17d13c78e935bcf01ab91fa7e5729a57edec71f54f29d4967c +SIZE (mythes/thes_sl_SI_v2-20141005.zip) = 350618 From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:08:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 21D7EF12; Mon, 6 Oct 2014 23:08:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03E33995; Mon, 6 Oct 2014 23:08:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N8RFw070144; Mon, 6 Oct 2014 23:08:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N8REY070140; Mon, 6 Oct 2014 23:08:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410062308.s96N8REY070140@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 6 Oct 2014 23:08:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370257 - in head/security: . py-oauth2client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:08:28 -0000 Author: sunpoet Date: Mon Oct 6 23:08:26 2014 New Revision: 370257 URL: https://svnweb.freebsd.org/changeset/ports/370257 QAT: https://qat.redports.org/buildarchive/r370257/ Log: - Add py-oauth2client 1.3 oauth2client is a Python module for client-side oauth2 authentication. It works with Google's oauth2 service by default, and is compatible with any oauth2 service. WWW: https://pypi.python.org/pypi/oauth2client WWW: http://google.github.io/oauth2client/ Added: head/security/py-oauth2client/ head/security/py-oauth2client/Makefile (contents, props changed) head/security/py-oauth2client/distinfo (contents, props changed) head/security/py-oauth2client/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Oct 6 23:07:12 2014 (r370256) +++ head/security/Makefile Mon Oct 6 23:08:26 2014 (r370257) @@ -774,6 +774,7 @@ SUBDIR += py-m2crypto SUBDIR += py-mcrypt SUBDIR += py-mhash + SUBDIR += py-oauth2client SUBDIR += py-oauthlib SUBDIR += py-openid SUBDIR += py-openssl Added: head/security/py-oauth2client/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-oauth2client/Makefile Mon Oct 6 23:08:26 2014 (r370257) @@ -0,0 +1,20 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= oauth2client +PORTVERSION= 1.3 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= OAuth 2.0 client library + +LICENSE= APACHE20 + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httplib2>=0.8:${PORTSDIR}/www/py-httplib2 + +USE_PYTHON= autoplist distutils +USES= python:2 + +.include Added: head/security/py-oauth2client/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-oauth2client/distinfo Mon Oct 6 23:08:26 2014 (r370257) @@ -0,0 +1,2 @@ +SHA256 (oauth2client-1.3.tar.gz) = 668ffe5a9a6df1f5fca50a851da9ce97286dc10f190b05e84763a8cd9716141b +SIZE (oauth2client-1.3.tar.gz) = 43852 Added: head/security/py-oauth2client/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-oauth2client/pkg-descr Mon Oct 6 23:08:26 2014 (r370257) @@ -0,0 +1,6 @@ +oauth2client is a Python module for client-side oauth2 authentication. It works +with Google's oauth2 service by default, and is compatible with any oauth2 +service. + +WWW: https://pypi.python.org/pypi/oauth2client +WWW: http://google.github.io/oauth2client/ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:09:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6617BFF9; Mon, 6 Oct 2014 23:09:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 533B599B; Mon, 6 Oct 2014 23:09:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96N9R6t070583; Mon, 6 Oct 2014 23:09:27 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96N9RHU070582; Mon, 6 Oct 2014 23:09:27 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062309.s96N9RHU070582@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 23:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370258 - head/graphics/gimp-ez-perspective-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:09:27 -0000 Author: antoine Date: Mon Oct 6 23:09:26 2014 New Revision: 370258 URL: https://svnweb.freebsd.org/changeset/ports/370258 QAT: https://qat.redports.org/buildarchive/r370258/ Log: Remove trailing / to pass check-plist Modified: head/graphics/gimp-ez-perspective-plugin/Makefile Modified: head/graphics/gimp-ez-perspective-plugin/Makefile ============================================================================== --- head/graphics/gimp-ez-perspective-plugin/Makefile Mon Oct 6 23:08:26 2014 (r370257) +++ head/graphics/gimp-ez-perspective-plugin/Makefile Mon Oct 6 23:09:26 2014 (r370258) @@ -27,16 +27,10 @@ USE_PYTHON_RUN= yes NO_BUILD= yes NO_WRKSUBDIR= yes -PLIST_SUB= PLUGIN_DIR=${PLUGIN_DIR} -PLUGIN_DIR?= libexec/gimp/2.2/plug-ins/ +PLUGIN_DIR?= libexec/gimp/2.2/plug-ins # installed files -PLIST_FILES= %%PLUGIN_DIR%%/${DISTNAME} - -# installed dirs -PLIST_DIRSTRY= libexec/gimp/2.2/plug-ins \ - libexec/gimp/2.2 \ - libexec/gimp +PLIST_FILES= ${PLUGIN_DIR}/${DISTNAME} post-patch: @${REINPLACE_CMD} \ From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:10:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F19FD208; Mon, 6 Oct 2014 23:10:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D3994A36; Mon, 6 Oct 2014 23:10:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96NAUXW072537; Mon, 6 Oct 2014 23:10:30 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96NATar071435; Mon, 6 Oct 2014 23:10:29 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410062310.s96NATar071435@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 6 Oct 2014 23:10:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370259 - in head/devel: . newtonsoft-json newtonsoft-json/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:10:31 -0000 Author: marino Date: Mon Oct 6 23:10:28 2014 New Revision: 370259 URL: https://svnweb.freebsd.org/changeset/ports/370259 QAT: https://qat.redports.org/buildarchive/r370259/ Log: Add new port devel/newtonsoft-json PR: 194147 Submitted by: Muhammad Rahman Popular high-performance JSON framework for .NET * Flexible JSON serializer for converting between .NET objects and JSON * LINQ to JSON for manually reading and writing JSON * High performance, faster than .NET's built-in JSON serializers * Write indented, easy to read JSON * Convert JSON to and from XML * Supports .NET 2, .NET 3.5, .NET 4, .NET 4.5, Silverlight, Windows Phone and Windows 8 Store The JSON serializer in Json.NET is a good choice when the JSON you are reading or writing maps closely to a .NET class. Added: head/devel/newtonsoft-json/ head/devel/newtonsoft-json/Makefile (contents, props changed) head/devel/newtonsoft-json/distinfo (contents, props changed) head/devel/newtonsoft-json/files/ head/devel/newtonsoft-json/files/Newtonsoft.Json.pc.in (contents, props changed) head/devel/newtonsoft-json/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Oct 6 23:09:26 2014 (r370258) +++ head/devel/Makefile Mon Oct 6 23:10:28 2014 (r370259) @@ -1316,6 +1316,7 @@ SUBDIR += netscape-java40 SUBDIR += newfile SUBDIR += newt + SUBDIR += newtonsoft-json SUBDIR += nglogc SUBDIR += nini SUBDIR += ninja Added: head/devel/newtonsoft-json/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/newtonsoft-json/Makefile Mon Oct 6 23:10:28 2014 (r370259) @@ -0,0 +1,46 @@ +# Created by: Muhammad Moinur Rahman <5u623l20@gmail.com> +# $FreeBSD$ + +PORTNAME= newtonsoft-json +PORTVERSION= 6.0.5 +CATEGORIES= devel + +MAINTAINER= 5u623l20@gmail.com +COMMENT= Popular high-performance JSON framework for .NET + +LICENSE= MIT + +USES= mono + +USE_GITHUB= yes +GH_ACCOUNT= JamesNK +GH_PROJECT= Newtonsoft.Json +GH_COMMIT= d463fce + +SUB_FILES= Newtonsoft.Json.pc + +PLIST_FILES= lib/mono/Newtonsoft.Json/Newtonsoft.Json.dll \ + lib/mono/gac/Newtonsoft.Json/6.0.0.0__b9a188c8922137c6/Newtonsoft.Json.dll \ + lib/mono/gac/Newtonsoft.Json/6.0.0.0__b9a188c8922137c6/Newtonsoft.Json.dll.mdb \ + libdata/pkgconfig/Newtonsoft.Json.pc + +do-build: + (cd ${WRKSRC}/Src/Newtonsoft.Json && xbuild Newtonsoft.Json.csproj \ + /property:SignAssembly=true \ + /property:AssemblyOriginatorKeyFile=Dynamic.snk \ + /property:Configuration=Release \ + /property:DefineConstants='SIGNED NET45 TRACE') + (cd ${WRKSRC}/Src/Newtonsoft.Json/bin/Release/Net45 && \ + monodis Newtonsoft.Json.dll --output=Newtonsoft.Json.il) + (cd ${WRKSRC}/Src/Newtonsoft.Json/bin/Release/Net45 && \ + ilasm /dll /key:../../../Dynamic.snk Newtonsoft.Json.il) + +do-install: + (cd ${WRKSRC}/Src/Newtonsoft.Json/bin/Release/Net45 && \ + ${SETENV} MONO_SHARED_DIR=${WRKDIR} ${LOCALBASE}/bin/gacutil \ + /root ${STAGEDIR}${PREFIX}/lib/ \ + /package Newtonsoft.Json /i Newtonsoft.Json.dll) + (cd ${WRKDIR} && ${INSTALL_DATA} Newtonsoft.Json.pc \ + ${STAGEDIR}${PREFIX}/libdata/pkgconfig) + +.include Added: head/devel/newtonsoft-json/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/newtonsoft-json/distinfo Mon Oct 6 23:10:28 2014 (r370259) @@ -0,0 +1,2 @@ +SHA256 (newtonsoft-json-6.0.5.tar.gz) = a6efc6dc79f661d163b8d96cc6e4e0f762000d834a54c653907f755e564a1cde +SIZE (newtonsoft-json-6.0.5.tar.gz) = 2178378 Added: head/devel/newtonsoft-json/files/Newtonsoft.Json.pc.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/newtonsoft-json/files/Newtonsoft.Json.pc.in Mon Oct 6 23:10:28 2014 (r370259) @@ -0,0 +1,8 @@ +prefix=%%LOCALBASE%% +exec_prefix=${prefix} +libdir=${exec_prefix}/lib + +Name: Newtonsoft JSON +Description: Popular high-performance JSON framework for .NET. +Version: 6.0.5 +Libs: -r:${libdir}/mono/newtonsoft.json/Newtonsoft.Json.dll Added: head/devel/newtonsoft-json/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/newtonsoft-json/pkg-descr Mon Oct 6 23:10:28 2014 (r370259) @@ -0,0 +1,13 @@ +Popular high-performance JSON framework for .NET +* Flexible JSON serializer for converting between .NET objects and JSON +* LINQ to JSON for manually reading and writing JSON +* High performance, faster than .NET's built-in JSON serializers +* Write indented, easy to read JSON +* Convert JSON to and from XML +* Supports .NET 2, .NET 3.5, .NET 4, .NET 4.5, Silverlight, Windows Phone and + Windows 8 Store + +The JSON serializer in Json.NET is a good choice when the JSON you are reading +or writing maps closely to a .NET class. + +WWW: http://james.newtonking.com/json From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:13:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4410B310; Mon, 6 Oct 2014 23:13:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30D9DA53; Mon, 6 Oct 2014 23:13:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96NDeKQ074854; Mon, 6 Oct 2014 23:13:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96NDeVA074853; Mon, 6 Oct 2014 23:13:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410062313.s96NDeVA074853@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 6 Oct 2014 23:13:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370260 - head/graphics/gimp-wavelet-decompose-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:13:40 -0000 Author: antoine Date: Mon Oct 6 23:13:39 2014 New Revision: 370260 URL: https://svnweb.freebsd.org/changeset/ports/370260 QAT: https://qat.redports.org/buildarchive/r370260/ Log: Remove trailing / to pass check-plist Modified: head/graphics/gimp-wavelet-decompose-plugin/Makefile Modified: head/graphics/gimp-wavelet-decompose-plugin/Makefile ============================================================================== --- head/graphics/gimp-wavelet-decompose-plugin/Makefile Mon Oct 6 23:10:28 2014 (r370259) +++ head/graphics/gimp-wavelet-decompose-plugin/Makefile Mon Oct 6 23:13:39 2014 (r370260) @@ -21,19 +21,13 @@ OPTIONS_DEFINE= NLS USES= gettext gmake -PLIST_SUB= PLUGIN_DIR=${PLUGIN_DIR} -PLUGIN_DIR?= libexec/gimp/2.2/plug-ins/ +PLUGIN_DIR?= libexec/gimp/2.2/plug-ins # l10n languages LANGUAGES= de ru it pl # installed files -PLIST_FILES= %%PLUGIN_DIR%%/wavelet-decompose - -# installed dirs -PLIST_DIRSTRY= libexec/gimp/2.2/plug-ins \ - libexec/gimp/2.2 \ - libexec/gimp +PLIST_FILES= ${PLUGIN_DIR}/wavelet-decompose .include @@ -55,10 +49,6 @@ post-patch: .if ${PORT_OPTIONS:MNLS} .for language in ${LANGUAGES} PLIST_FILES+= share/locale/${language}/LC_MESSAGES/gimp20-${PORTNAME}-plug-in.mo - -PLIST_DIRSTRY+= share/locale/${language}/LC_MESSAGES \ - share/locale/${language} \ - share/locale .endfor .endif From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:29:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E20F5F9; Mon, 6 Oct 2014 23:29:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B46FB71; Mon, 6 Oct 2014 23:29:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96NTTrK080858; Mon, 6 Oct 2014 23:29:29 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96NTTKl080857; Mon, 6 Oct 2014 23:29:29 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410062329.s96NTTKl080857@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 6 Oct 2014 23:29:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370261 - head/mail/xcite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:29:29 -0000 Author: amdmi3 Date: Mon Oct 6 23:29:28 2014 New Revision: 370261 URL: https://svnweb.freebsd.org/changeset/ports/370261 QAT: https://qat.redports.org/buildarchive/r370261/ Log: - Fix duplicate PORTREVISION lines and bump for all bumps which have not happened because of this Approved by: portmgr blanket Modified: head/mail/xcite/Makefile Modified: head/mail/xcite/Makefile ============================================================================== --- head/mail/xcite/Makefile Mon Oct 6 23:13:39 2014 (r370260) +++ head/mail/xcite/Makefile Mon Oct 6 23:29:28 2014 (r370261) @@ -3,8 +3,7 @@ PORTNAME= xcite PORTVERSION= 1.60 -PORTREVISION= 19 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= mail elisp MASTER_SITES= http://www.gentei.org/~yuuji/software/ PKGNAMESUFFIX= -${EMACS_PORT_NAME} From owner-svn-ports-head@FreeBSD.ORG Mon Oct 6 23:40:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BEE639E6; Mon, 6 Oct 2014 23:40:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB8FCC8F; Mon, 6 Oct 2014 23:40:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s96NerJC086420; Mon, 6 Oct 2014 23:40:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s96NerSw086418; Mon, 6 Oct 2014 23:40:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410062340.s96NerSw086418@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 6 Oct 2014 23:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370262 - in head/graphics/devil: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Oct 2014 23:40:53 -0000 Author: amdmi3 Date: Mon Oct 6 23:40:52 2014 New Revision: 370262 URL: https://svnweb.freebsd.org/changeset/ports/370262 QAT: https://qat.redports.org/buildarchive/r370262/ Log: - Fix segfault (1) - Fix duplicate PORTREVISION PR: 194061 (1) Submitted by: rndfax@yandex.ru MFH: 2014Q4 Added: head/graphics/devil/files/patch-src-IL__src__il_alloc.c (contents, props changed) Modified: head/graphics/devil/Makefile Modified: head/graphics/devil/Makefile ============================================================================== --- head/graphics/devil/Makefile Mon Oct 6 23:29:28 2014 (r370261) +++ head/graphics/devil/Makefile Mon Oct 6 23:40:52 2014 (r370262) @@ -3,9 +3,8 @@ PORTNAME= devil PORTVERSION= 1.7.8 -PORTREVISION= 36 +PORTREVISION= 18 PORTEPOCH= 1 -PORTREVISION= 17 CATEGORIES= graphics MASTER_SITES= SF/openil/DevIL/${PORTVERSION} DISTNAME= DevIL-${PORTVERSION} Added: head/graphics/devil/files/patch-src-IL__src__il_alloc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/devil/files/patch-src-IL__src__il_alloc.c Mon Oct 6 23:40:52 2014 (r370262) @@ -0,0 +1,11 @@ +--- src-IL/src/il_alloc.c.orig 2009-03-08 10:10:09.000000000 +0300 ++++ src-IL/src/il_alloc.c 2014-10-07 01:39:56.201078445 +0400 +@@ -123,7 +123,7 @@ + { + if (ptr) + { +-#ifdef MM_MALLOC ++#if defined(VECTORMEM) && defined(MM_MALLOC) + _mm_free((void*)ptr); + #else + #if defined(VECTORMEM) & !defined(POSIX_MEMALIGN) & !defined(VALLOC) & !defined(MEMALIGN) & !defined(MM_MALLOC) From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 00:21:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41B95F86; Tue, 7 Oct 2014 00:21:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2467B13E; Tue, 7 Oct 2014 00:21:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s970Lrvw007656; Tue, 7 Oct 2014 00:21:53 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s970Lq0U007653; Tue, 7 Oct 2014 00:21:52 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201410070021.s970Lq0U007653@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Tue, 7 Oct 2014 00:21:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370263 - in head/net/ntp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 00:21:54 -0000 Author: cy Date: Tue Oct 7 00:21:52 2014 New Revision: 370263 URL: https://svnweb.freebsd.org/changeset/ports/370263 QAT: https://qat.redports.org/buildarchive/r370263/ Log: Apply upstream recommended patch for CVE-2013-5211 and unforbid. Submitted by: Harlan Stenn - ntp.org upline Also Obtained from: ntp in base (r265465) Added: head/net/ntp/files/patch-ntpd-ntp_request.c (contents, props changed) head/net/ntp/files/patch-ntpd-ntpd.c (contents, props changed) Modified: head/net/ntp/Makefile Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Mon Oct 6 23:40:52 2014 (r370262) +++ head/net/ntp/Makefile Tue Oct 7 00:21:52 2014 (r370263) @@ -3,7 +3,7 @@ PORTNAME= ntp PORTVERSION?= 4.2.6p5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ \ http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ \ @@ -14,7 +14,6 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/P/ MAINTAINER= cy@FreeBSD.org COMMENT= The Network Time Protocol Distribution -FORBIDDEN= CVE-2013-5211 / VU\#348126 - Please use net/ntp-devel, pending upstream stable branch update. LATEST_LINK= ${PORTNAME} USES= libtool shebangfix Added: head/net/ntp/files/patch-ntpd-ntp_request.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ntp/files/patch-ntpd-ntp_request.c Tue Oct 7 00:21:52 2014 (r370263) @@ -0,0 +1,18 @@ +--- ntpd/ntp_request.c.orig 2011-11-30 18:55:17.000000000 -0800 ++++ ntpd/ntp_request.c 2014-10-06 17:07:02.570303970 -0700 +@@ -1956,7 +1956,6 @@ + printf("wants monitor 0 list\n"); + #endif + if (!mon_enabled) { +- req_ack(srcadr, inter, inpkt, INFO_ERR_NODATA); + return; + } + im = (struct info_monitor *)prepare_pkt(srcadr, inter, inpkt, +@@ -2002,7 +2001,6 @@ + extern int mon_enabled; + + if (!mon_enabled) { +- req_ack(srcadr, inter, inpkt, INFO_ERR_NODATA); + return; + } + im = (struct info_monitor_1 *)prepare_pkt(srcadr, inter, inpkt, Added: head/net/ntp/files/patch-ntpd-ntpd.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/ntp/files/patch-ntpd-ntpd.c Tue Oct 7 00:21:52 2014 (r370263) @@ -0,0 +1,13 @@ +--- ntpd/ntpd.c.orig 2011-12-24 15:27:15.000000000 -0800 ++++ ntpd/ntpd.c 2014-10-06 17:04:57.760219124 -0700 +@@ -853,8 +853,8 @@ + init_proto(); /* Call at high priority */ + init_io(); + init_loopfilter(); +- mon_start(MON_ON); /* monitor on by default now */ +- /* turn off in config if unwanted */ ++ mon_start(MON_OFF); /* monitor off by default now */ ++ /* turn on in config if wanted */ + + /* + * Get the configuration. This is done in a separate module From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 00:48:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35C4528C; Tue, 7 Oct 2014 00:48:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22AE7369; Tue, 7 Oct 2014 00:48:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s970mQfU019686; Tue, 7 Oct 2014 00:48:26 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s970mPp0019685; Tue, 7 Oct 2014 00:48:25 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410070048.s970mPp0019685@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 7 Oct 2014 00:48:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370264 - head/security/openssh-portable X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 00:48:26 -0000 Author: bdrewery Date: Tue Oct 7 00:48:25 2014 New Revision: 370264 URL: https://svnweb.freebsd.org/changeset/ports/370264 QAT: https://qat.redports.org/buildarchive/r370264/ Log: Note my intentions with OVERWRITE_BASE Modified: head/security/openssh-portable/Makefile Modified: head/security/openssh-portable/Makefile ============================================================================== --- head/security/openssh-portable/Makefile Tue Oct 7 00:21:52 2014 (r370263) +++ head/security/openssh-portable/Makefile Tue Oct 7 00:48:25 2014 (r370264) @@ -202,6 +202,7 @@ CONFIGURE_LIBS+= -lldap EMPTYDIR= /var/empty .if ${PORT_OPTIONS:MOVERWRITE_BASE} +# XXX: Mark this BROKEN rather than remove the option to force people to notice for POLA. DEPRECATED= Overwrite-base option/port/pkg will be removed. There is no real need for foot-shooting. EXPIRATION_DATE= 2015-01-01 WITH_OPENSSL_BASE= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 00:49:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 485FC381 for ; Tue, 7 Oct 2014 00:49:47 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 29E5237A for ; Tue, 7 Oct 2014 00:49:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s970nlWF077511 for ; Tue, 7 Oct 2014 00:49:47 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s970nkZ8077505 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 00:49:46 GMT (envelope-from bdrewery) Received: (qmail 9252 invoked from network); 6 Oct 2014 19:49:45 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 6 Oct 2014 19:49:45 -0500 Message-ID: <543338A4.80708@FreeBSD.org> Date: Mon, 06 Oct 2014 19:49:40 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, Rene Ladan Subject: Re: svn commit: r370264 - head/security/openssh-portable References: <201410070048.s970mPp0019685@svn.freebsd.org> In-Reply-To: <201410070048.s970mPp0019685@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UPbr6qRR6eOK4cKQR0BG3lV2C45icnH1J" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 00:49:47 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --UPbr6qRR6eOK4cKQR0BG3lV2C45icnH1J Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Please refrain from removing openssh-portable-base when the expiration date comes. I will mark it BROKEN for a month before out-right removing that port. And I will keep BROKEN in the main port for much longer. I want to ensure no one is surprised by losing sshd. On 10/6/2014 7:48 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Tue Oct 7 00:48:25 2014 > New Revision: 370264 > URL: https://svnweb.freebsd.org/changeset/ports/370264 > QAT: https://qat.redports.org/buildarchive/r370264/ >=20 > Log: > Note my intentions with OVERWRITE_BASE >=20 > Modified: > head/security/openssh-portable/Makefile >=20 > Modified: head/security/openssh-portable/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/security/openssh-portable/Makefile Tue Oct 7 00:21:52 2014 (r= 370263) > +++ head/security/openssh-portable/Makefile Tue Oct 7 00:48:25 2014 (r= 370264) > @@ -202,6 +202,7 @@ CONFIGURE_LIBS+=3D -lldap > EMPTYDIR=3D /var/empty > =20 > .if ${PORT_OPTIONS:MOVERWRITE_BASE} > +# XXX: Mark this BROKEN rather than remove the option to force people = to notice for POLA. > DEPRECATED=3D Overwrite-base option/port/pkg will be removed. There i= s no real need for foot-shooting. > EXPIRATION_DATE=3D 2015-01-01 > WITH_OPENSSL_BASE=3D yes >=20 --=20 Regards, Bryan Drewery --UPbr6qRR6eOK4cKQR0BG3lV2C45icnH1J Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUMzikAAoJEDXXcbtuRpfPwmkH/igJbbg3VHzutZ9enNkwdmCL hY60Rj5rwuAVVR3iaU4ACS13asoNPoU5qupX75oXXPS2S1NVuURG9GCJkzjTR0fU ZWVMPYG81JgKGXYaNIwtf9sSS7a/B1RSF+oODdUHxGV/s2CdNgN++RHD18c4t1Fo pZmiEZl0A2C0vqpRgn9nR8KQlslkzgO1ICtBKy0K45qLuSadu+KclyPUeNnliuTp be33COgLE8LM4LXjCgl1cek/y3ji0JsM0+lEOxzKoklUqG2Co00wAAhssth4ZWB3 l1zzTS4UiiTgqXAYI7+IDCxq8YbGuMVT6REy4s9gxI7YUgtABN2GwlwKnx4MS+8= =WBye -----END PGP SIGNATURE----- --UPbr6qRR6eOK4cKQR0BG3lV2C45icnH1J-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 00:58:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40787704; Tue, 7 Oct 2014 00:58:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13A5B64D; Tue, 7 Oct 2014 00:58:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s970wfSm024523; Tue, 7 Oct 2014 00:58:41 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s970wf26024519; Tue, 7 Oct 2014 00:58:41 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410070058.s970wf26024519@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 7 Oct 2014 00:58:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370265 - in head/www: . rubygem-rtlit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 00:58:42 -0000 Author: swills Date: Tue Oct 7 00:58:40 2014 New Revision: 370265 URL: https://svnweb.freebsd.org/changeset/ports/370265 QAT: https://qat.redports.org/buildarchive/r370265/ Log: www/rubygem-rtlit: create port Converts CSS files from left-to-right to right-to-left WWW: https://github.com/zohararad/rtlit Added: head/www/rubygem-rtlit/ head/www/rubygem-rtlit/Makefile (contents, props changed) head/www/rubygem-rtlit/distinfo (contents, props changed) head/www/rubygem-rtlit/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Oct 7 00:48:25 2014 (r370264) +++ head/www/Makefile Tue Oct 7 00:58:40 2014 (r370265) @@ -1869,6 +1869,7 @@ SUBDIR += rubygem-rqrcode SUBDIR += rubygem-robotex SUBDIR += rubygem-robots + SUBDIR += rubygem-rtlit SUBDIR += rubygem-savon SUBDIR += rubygem-sawyer SUBDIR += rubygem-scrapi Added: head/www/rubygem-rtlit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rtlit/Makefile Tue Oct 7 00:58:40 2014 (r370265) @@ -0,0 +1,18 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= rtlit +PORTVERSION= 0.0.5 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= CSS left-to-right to right-to-left converter + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +PLIST_FILES= bin/rtlit + +.include Added: head/www/rubygem-rtlit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rtlit/distinfo Tue Oct 7 00:58:40 2014 (r370265) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rtlit-0.0.5.gem) = 151fd174fe22bd5317901e2624fda63f8dc387ad3731bf7894599744d9812e6b +SIZE (rubygem/rtlit-0.0.5.gem) = 8192 Added: head/www/rubygem-rtlit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-rtlit/pkg-descr Tue Oct 7 00:58:40 2014 (r370265) @@ -0,0 +1,3 @@ +Converts CSS files from left-to-right to right-to-left + +WWW: https://github.com/zohararad/rtlit From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 02:00:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4161B84; Tue, 7 Oct 2014 02:00:41 +0000 (UTC) Received: from nyi.unixathome.org (nyi.unixathome.org [64.147.113.42]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "nyi.unixathome.org", Issuer "StartCom Class 2 Primary Intermediate Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7B671BAC; Tue, 7 Oct 2014 02:00:41 +0000 (UTC) Received: from nyi.unixathome.org (localhost [127.0.0.1]) by nyi.unixathome.org (Postfix) with ESMTP id 123EE5084A; Tue, 7 Oct 2014 01:52:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at unixathome.org Received: from nyi.unixathome.org ([127.0.0.1]) by nyi.unixathome.org (nyi.unixathome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EsoEtOpR5RJh; Tue, 7 Oct 2014 01:52:34 +0000 (UTC) Received: from smtp-auth.unixathome.org (smtp-auth.unixathome.org [10.4.7.7]) (Authenticated sender: hidden) by nyi.unixathome.org (Postfix) with ESMTPSA id 9C35950847 ; Tue, 7 Oct 2014 01:52:33 +0000 (UTC) Content-Type: multipart/signed; boundary="Apple-Mail=_68896277-5F6F-4C5A-BC63-976365AB7012"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files From: Dan Langille In-Reply-To: <201410062258.s96MwoqK063529@svn.freebsd.org> Date: Mon, 6 Oct 2014 21:52:05 -0400 Message-Id: <11C48B58-C7D2-4482-988E-2AE0CBF81569@langille.org> References: <201410062258.s96MwoqK063529@svn.freebsd.org> To: John Marino X-Mailer: Apple Mail (2.1878.6) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 02:00:42 -0000 --Apple-Mail=_68896277-5F6F-4C5A-BC63-976365AB7012 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 heads up: emulators/hyperv-is does not have emulators listed in = CATEGORIES On Oct 6, 2014, at 6:58 PM, John Marino wrote: > Author: marino > Date: Mon Oct 6 22:58:50 2014 > New Revision: 370242 > URL: https://svnweb.freebsd.org/changeset/ports/370242 > QAT: https://qat.redports.org/buildarchive/r370242/ >=20 > Log: > Add new port emulators/hyperv-is (FreeBSD 8.4, 9.1, 9.2, 9.3, 10.0) >=20 > PR: 182209 > Submitted by: kylie (bsdic @ microsoft) >=20 > The hyperv-is provision a collection of kernel mode drivers as well = as > user-space daemons to facilitate integration with Hyper-v to provide = a > feature rich and high performance FreeBSD guest experience. >=20 > The FreeBSD Integration Service on Hyper-v includes a collection of = kernel > mode drivers as well as user-space daemons to interact with the = drivers > that are required to run Hyper-V-specific devices known as FreeBSD > Integration Services (BIS). It is to facilitate integration with = Hyper-v > to provide a feature rich and high performance FreeBSD guest = experience. > See the man page for a list of binaries and their functions. >=20 > FreeBSD support for hyperv-is was first added by Microsoft BSD = Integration > Services Team . >=20 > Added: > head/emulators/hyperv-is/ > head/emulators/hyperv-is/Makefile (contents, props changed) > head/emulators/hyperv-is/distinfo (contents, props changed) > head/emulators/hyperv-is/files/ > head/emulators/hyperv-is/files/pkg-message.A.in (contents, props = changed) > head/emulators/hyperv-is/files/pkg-message.B.in (contents, props = changed) > head/emulators/hyperv-is/pkg-descr (contents, props changed) > head/emulators/hyperv-is/pkg-install (contents, props changed) > head/emulators/hyperv-is/pkg-plist (contents, props changed) > Modified: > head/emulators/Makefile >=20 > Modified: head/emulators/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- head/emulators/Makefile Mon Oct 6 22:54:24 2014 = (r370241) > +++ head/emulators/Makefile Mon Oct 6 22:58:50 2014 = (r370242) > @@ -53,6 +53,7 @@ > SUBDIR +=3D hercules > SUBDIR +=3D higan > SUBDIR +=3D hugo > + SUBDIR +=3D hyperv-is > SUBDIR +=3D i386-wine > SUBDIR +=3D i386-wine-compholio > SUBDIR +=3D i386-wine-devel >=20 > Added: head/emulators/hyperv-is/Makefile > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/Makefile Mon Oct 6 22:58:50 2014 = (r370242) > @@ -0,0 +1,61 @@ > +# $FreeBSD$ > + > +PORTNAME=3D hyperv-is > +PORTVERSION=3D 1.1 > +CATEGORIES=3D kld > +MASTER_SITES=3D https://github.com/${MSLINK}/ > +DISTNAME=3D ${DNAME} > + > +MAINTAINER=3D bsdic@microsoft.com > +COMMENT=3D FreeBSD Integration Service on Hyper-v > + > +ONLY_FOR_ARCHS=3D amd64 i386 > + > +USES+=3D uidfix > +BIS=3D ${PORTVERSION} > +MSBASE=3D = FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master > +MSLINK=3D ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports > +SUB_FILES=3D ${PMSG} > + > +.include > + > +.if ${OPSYS} !=3D FreeBSD > +IGNORE=3D ${OPSYS} not supported > +.endif > + > +.if ${OSREL} =3D=3D "10.0" > +BIS=3D 1.0 > +PLIST_SUB=3D A=3D"@comment " B=3D"" > +PMSG=3D pkg-message.B > +.else > +CC=3D gcc -w > +WRKSRC=3D ${WRKDIR}/hyperv-is-${PORTVERSION} > +PLIST_SUB=3D B=3D"@comment " A=3D"" > +PMSG=3D pkg-message.A > +.endif > + > +FILE_84=3D hyperv-is-8.4.${BIS} > +FILE_91=3D hyperv-is-9.1.${BIS} > +FILE_92=3D hyperv-is-9.2.${BIS} > +FILE_93=3D hyperv-is-9.3.${BIS} > +FILE_100=3D hv-kvp-${BIS} > +DNAME=3D ${FILE_${OSREL:S/.//}} > + > +.if empty(DNAME) > +IGNORE=3D OSREL ${OSREL} not supported > +.endif > + > +pre-install: > + @${MKDIR} ${STAGEDIR}/boot/kernel \ > + ${STAGEDIR}/etc/rc.d \ > + ${STAGEDIR}/usr/share/man/man1 \ > + ${STAGEDIR}/usr/share/man/man4 \ > + ${STAGEDIR}/usr/share/man/man8 \ > + ${STAGEDIR}/usr/local/hyperv/scripts \ > + ${STAGEDIR}/usr/sbin > + ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message > + > +post-install: > + ${RM} ${STAGEDIR}/boot/kernel/linker.hints > + > +.include >=20 > Added: head/emulators/hyperv-is/distinfo > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/distinfo Mon Oct 6 22:58:50 2014 = (r370242) > @@ -0,0 +1,10 @@ > +SHA256 (hyperv-is-8.4.1.1.tar.gz) =3D = 21f21bf8192892b823a63ebcea8cfd916ab0572b965c06471388386765346ae6 > +SIZE (hyperv-is-8.4.1.1.tar.gz) =3D 94356 > +SHA256 (hyperv-is-9.1.1.1.tar.gz) =3D = ab4dc50d4f66ef983bd0de96388ba95e29d1e987362336bf44e3ff971425245a > +SIZE (hyperv-is-9.1.1.1.tar.gz) =3D 94286 > +SHA256 (hyperv-is-9.2.1.1.tar.gz) =3D = 75e4ed3ba0c75ce5c67efed7b4f72ada3047f4cc986659b64c14979227292fd5 > +SIZE (hyperv-is-9.2.1.1.tar.gz) =3D 94294 > +SHA256 (hyperv-is-9.3.1.1.tar.gz) =3D = 10a63b7b2a7bbfd158eed3852b0c25bfba3362c3cec28dfac641e22e61b23587 > +SIZE (hyperv-is-9.3.1.1.tar.gz) =3D 94296 > +SHA256 (hv-kvp-1.0.tar.gz) =3D = c2c60ae645cae75b25934aae7b18c8a29bf00660a1e4ade5d8f31bb98d7ecc78 > +SIZE (hv-kvp-1.0.tar.gz) =3D 30815 >=20 > Added: head/emulators/hyperv-is/files/pkg-message.A.in > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/files/pkg-message.A.in Mon Oct 6 = 22:58:50 2014 (r370242) > @@ -0,0 +1,19 @@ > = +#########################################################################= #### > +After installing do the following steps: > +# Deleting Hyper-v BIS driver names > + sed -i "" '/Loader labels for Hyper-v BIS driver/d' = /boot/loader.conf > + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf > + sed -i "" '/hv_utils_load/d' /boot/loader.conf > + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf > + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf > + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf > + > + #Hyper-v driver names > + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> = /boot/loader.conf > + echo 'hv_vmbus_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_utils_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_storvsc_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_netvsc_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_ata_pci_disengage_load=3D"YES"' >>/boot/loader.conf > +When deinstalled, restore /boot/loader.conf > = +#########################################################################= #### >=20 > Added: head/emulators/hyperv-is/files/pkg-message.B.in > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/files/pkg-message.B.in Mon Oct 6 = 22:58:50 2014 (r370242) > @@ -0,0 +1,17 @@ > = +#########################################################################= #### > +To enable hv_kvp, you should do the steps following: > + # Deleting kvp label > + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf=20= > + sed -i "" '/hv_kvp_load/d' /etc/rc.conf=20 > + > + #hyperv driver names > + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> = /boot/loader.conf > + echo 'hv_kvp_load=3D"YES"' >> /boot/loader.conf > + > +# KVP - daemon label > + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf > + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf > + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf > + echo 'hv_kvp_daemon_enable=3D"YES"' >> /etc/rc.conf > +After deinstall, you should restore /boot/loader.conf and = /etc/rc.conf > = +#########################################################################= #### >=20 > Added: head/emulators/hyperv-is/pkg-descr > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/pkg-descr Mon Oct 6 22:58:50 2014 = (r370242) > @@ -0,0 +1,13 @@ > +The hyperv-is provision a collection of kernel mode drivers as well = as > +user-space daemons to facilitate integration with Hyper-v to provide = a > +feature rich and high performance FreeBSD guest experience. > + > +The FreeBSD Integration Service on Hyper-v includes a collection of = kernel > +mode drivers as well as user-space daemons to interact with the = drivers > +that are required to run Hyper-V-specific devices known as FreeBSD > +Integration Services (BIS). It is to facilitate integration with = Hyper-v > +to provide a feature rich and high performance FreeBSD guest = experience. > +See the man page for a list of binaries and their functions. > + > +FreeBSD support for hyperv-is was first added by Microsoft BSD = Integration > +Services Team . >=20 > Added: head/emulators/hyperv-is/pkg-install > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/pkg-install Mon Oct 6 22:58:50 2014 = (r370242) > @@ -0,0 +1,55 @@ > +#!/bin/sh > +# > +# make install or pkg_add script > +# Checks labels/gptids for roots and swap partitions > +# adds hyperv labels in loader.conf=20 > +# > + > +#Check poudriere workdirs > +POD_WRK_HOME=3D/wrkdirs > +if [ ! -d ${POD_WRK_HOME} ]; then > + POD_WRK_HOME=3D/ > +fi > + > +WRKDIRS=3D${POD_WRK_HOME}$(pwd |awk '{print $1}')/work/stage > +if [ ! -d ${WRKDIRS} ]; then > + WRKDIRS=3D/ > +fi > + > +if [ "$2" =3D "PRE-INSTALL" ]; then > +echo "=3D=3D=3D> Pre-install Check" > + > +#rootfs check > +root_flag=3D$(mount | awk '/ on \/ / { print $1 }' | cut -d / -f3-) > +if [ "$root_flag" !=3D "" ]; then > + fs_test=3D$(glabel status | awk '{print $1}' | grep $root_flag) > + if [ "$fs_test" =3D=3D "" ]; then > + echo " xxx rootfs Label/gptid missing in fstab" =20 > + fi > +else=20 > + echo " xxx rootfs Label/gptid missing in fstab" > +fi > +#swap check > +[ -f /etc/fstab ] && swap_flag=3D$(grep swap /etc/fstab | awk '{print = $1}' | cut -d / -f3-) > +if [ "$swap_flag" !=3D "" ]; then > + sw_test=3D$(glabel status | awk '{print $1}' | grep $swap_flag) > + if [ "$sw_test" =3D=3D "" ]; then > + echo " xxx swap Label/gptid missing in fstab" =20 > + fi > +else =20 > + echo " xxx swap Label/gptid missing in fstab " > +fi > + > +if [ "$fs_test" !=3D "" -a "$sw_test" !=3D "" ]; then > + echo "=3D=3D=3D> Labels/gptids Found" > + echo "=3D=3D=3D> Hyper-V BIS Installation Continues" > +else > + echo "=3D=3D=3D> Labels/gptids Not found" > + echo "=3D=3D=3D> Hyper-V BIS Installation Aborted" > + echo "=3D=3D=3D> Refer to Disk UUID section in README document" > + echo "=3D=3D=3D> Please refer the Prerequisites page and complete = all steps"=20 > + echo "WWW: = https://github.com/FreeBSDonHyper-V/Hyperv-Ports/wiki/Prerequisites "=20 > + exit 1=20 > +fi > +fi > +exit 0 >=20 > Added: head/emulators/hyperv-is/pkg-plist > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/pkg-plist Mon Oct 6 22:58:50 2014 = (r370242) > @@ -0,0 +1,25 @@ > +hyperv/scripts/hv_get_dhcp_info > +hyperv/scripts/hv_get_dns_info > +hyperv/scripts/hv_set_ifconfig > +@cwd /boot/kernel > +%%A%%hv_ata_pci_disengage.ko > +%%A%%hv_netvsc.ko > +%%A%%hv_storvsc.ko > +%%A%%hv_utils.ko > +%%A%%hv_vmbus.ko > +%%B%%hv_kvp.ko > +@cwd /etc/rc.d > +hv_kvpd > +%%A%%@cwd /usr/share/man/man1 > +%%A%%hyperv-is.1.gz > +%%B%%@cwd /usr/sbin > +%%B%%hv_kvp_daemon > +@cwd /usr/share/man/man4 > +%%A%%hv_ata_pci_disengage.4.gz > +hv_kvp.4.gz > +%%A%%hv_netvsc.4.gz > +%%A%%hv_storvsc.4.gz > +%%A%%hv_utils.4.gz > +%%A%%hv_vmbus.4.gz > +%%B%%@cwd /usr/share/man/man8 > +%%B%%hv_kvp_daemon.8.gz > _______________________________________________ > svn-ports-head@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-head > To unsubscribe, send any mail to = "svn-ports-head-unsubscribe@freebsd.org" =97=20 Dan Langille --Apple-Mail=_68896277-5F6F-4C5A-BC63-976365AB7012 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iKYEARECAGYFAlQzR11fFIAAAAAALgAoaXNzdWVyLWZwckBub3RhdGlvbnMub3Bl bnBncC5maWZ0aGhvcnNlbWFuLm5ldDA3REZBQjJGRUQ3NEE5QkE0NTNGOUJCNzBB MEIxNzE0Q0ZGQjlEM0MACgkQCgsXFM/7nTxxAQCfWRf/61ZgoLSKCCicV3Utwz9T oQwAoNDpVfsgsmDDvny0xWIupmfhfmgJ =UmM4 -----END PGP SIGNATURE----- --Apple-Mail=_68896277-5F6F-4C5A-BC63-976365AB7012-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 03:14:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D64E24C1; Tue, 7 Oct 2014 03:14:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7F92388; Tue, 7 Oct 2014 03:14:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s973EPiI090039; Tue, 7 Oct 2014 03:14:25 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s973EO7G090033; Tue, 7 Oct 2014 03:14:24 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410070314.s973EO7G090033@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 7 Oct 2014 03:14:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370266 - in head/devel: . rubygem-message_bus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 03:14:25 -0000 Author: swills Date: Tue Oct 7 03:14:24 2014 New Revision: 370266 URL: https://svnweb.freebsd.org/changeset/ports/370266 QAT: https://qat.redports.org/buildarchive/r370266/ Log: devel/rubygem-message_bus: create port A message bus for rack WWW: https://github.com/SamSaffron/message_bus Added: head/devel/rubygem-message_bus/ head/devel/rubygem-message_bus/Makefile (contents, props changed) head/devel/rubygem-message_bus/distinfo (contents, props changed) head/devel/rubygem-message_bus/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 7 00:58:40 2014 (r370265) +++ head/devel/Makefile Tue Oct 7 03:14:24 2014 (r370266) @@ -4413,6 +4413,7 @@ SUBDIR += rubygem-memoizable SUBDIR += rubygem-memoize SUBDIR += rubygem-mercenary + SUBDIR += rubygem-message_bus SUBDIR += rubygem-metaclass SUBDIR += rubygem-metaid SUBDIR += rubygem-method_source Added: head/devel/rubygem-message_bus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-message_bus/Makefile Tue Oct 7 03:14:24 2014 (r370266) @@ -0,0 +1,20 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= message_bus +PORTVERSION= 0.9.6 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Message bus for rack + +RUN_DEPENDS= rubygem-eventmachine>=0:${PORTSDIR}/devel/rubygem-eventmachine \ + rubygem-rack>=1.1.3:${PORTSDIR}/www/rubygem-rack \ + rubygem-redis>=0:${PORTSDIR}/databases/rubygem-redis + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/devel/rubygem-message_bus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-message_bus/distinfo Tue Oct 7 03:14:24 2014 (r370266) @@ -0,0 +1,2 @@ +SHA256 (rubygem/message_bus-0.9.6.gem) = 4a7fd99cb5fd86ce2ce954485eafdb56abf1b03f961d73e6f143c8af827ca41e +SIZE (rubygem/message_bus-0.9.6.gem) = 304128 Added: head/devel/rubygem-message_bus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-message_bus/pkg-descr Tue Oct 7 03:14:24 2014 (r370266) @@ -0,0 +1,3 @@ +A message bus for rack + +WWW: https://github.com/SamSaffron/message_bus From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 03:23:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CE8274F; Tue, 7 Oct 2014 03:23:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 206AD696; Tue, 7 Oct 2014 03:23:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s973NZBi094714; Tue, 7 Oct 2014 03:23:35 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s973NYDm094709; Tue, 7 Oct 2014 03:23:34 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410070323.s973NYDm094709@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 7 Oct 2014 03:23:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370267 - in head/devel: . rubygem-rack-mini-profiler X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 03:23:35 -0000 Author: swills Date: Tue Oct 7 03:23:33 2014 New Revision: 370267 URL: https://svnweb.freebsd.org/changeset/ports/370267 QAT: https://qat.redports.org/buildarchive/r370267/ Log: devel/rubygem-rack-mini-profiler: create port Profiling toolkit for Rack applications with Rails integration. Client Side profiling, DB profiling and Server profiling. WWW: http://miniprofiler.com Added: head/devel/rubygem-rack-mini-profiler/ head/devel/rubygem-rack-mini-profiler/Makefile (contents, props changed) head/devel/rubygem-rack-mini-profiler/distinfo (contents, props changed) head/devel/rubygem-rack-mini-profiler/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 7 03:14:24 2014 (r370266) +++ head/devel/Makefile Tue Oct 7 03:23:33 2014 (r370267) @@ -4468,6 +4468,7 @@ SUBDIR += rubygem-pygments.rb SUBDIR += rubygem-r18n-core SUBDIR += rubygem-racc + SUBDIR += rubygem-rack-mini-profiler SUBDIR += rubygem-rack-raw-upload SUBDIR += rubygem-rails-observers SUBDIR += rubygem-rainbow Added: head/devel/rubygem-rack-mini-profiler/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rack-mini-profiler/Makefile Tue Oct 7 03:23:33 2014 (r370267) @@ -0,0 +1,18 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= rack-mini-profiler +PORTVERSION= 0.9.2 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Profiles loading speed for rack applications + +RUN_DEPENDS= rubygem-rack>=1.1.3:${PORTSDIR}/www/rubygem-rack + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/devel/rubygem-rack-mini-profiler/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rack-mini-profiler/distinfo Tue Oct 7 03:23:33 2014 (r370267) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rack-mini-profiler-0.9.2.gem) = c91e9422934146874a480d2ae3a8bb5491dc3d769871d9fb00b760d79849bdf8 +SIZE (rubygem/rack-mini-profiler-0.9.2.gem) = 92160 Added: head/devel/rubygem-rack-mini-profiler/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rack-mini-profiler/pkg-descr Tue Oct 7 03:23:33 2014 (r370267) @@ -0,0 +1,4 @@ +Profiling toolkit for Rack applications with Rails integration. Client Side +profiling, DB profiling and Server profiling. + +WWW: http://miniprofiler.com From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 04:38:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D7E4BD; Tue, 7 Oct 2014 04:38:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 498ECDBE; Tue, 7 Oct 2014 04:38:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s974c8xr027882; Tue, 7 Oct 2014 04:38:08 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s974c8PW027881; Tue, 7 Oct 2014 04:38:08 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201410070438.s974c8PW027881@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Tue, 7 Oct 2014 04:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370268 - head/devel/bugzilla44 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 04:38:08 -0000 Author: ohauer Date: Tue Oct 7 04:38:07 2014 New Revision: 370268 URL: https://svnweb.freebsd.org/changeset/ports/370268 QAT: https://qat.redports.org/buildarchive/r370268/ Log: - add CPE information [1] additional MFH revisions: r370209, 370211 MFH: 2014Q4 [1] Modified: head/devel/bugzilla44/Makefile Modified: head/devel/bugzilla44/Makefile ============================================================================== --- head/devel/bugzilla44/Makefile Tue Oct 7 03:23:33 2014 (r370267) +++ head/devel/bugzilla44/Makefile Tue Oct 7 04:38:07 2014 (r370268) @@ -25,9 +25,11 @@ RUN_DEPENDS= \ p5-TimeDate>=1.19:${PORTSDIR}/devel/p5-TimeDate \ p5-URI>=1.37:${PORTSDIR}/net/p5-URI -USES= perl5 +USES= perl5 cpe USE_PERL5= patch build run +CPE_VENDOR= mozilla + SUB_FILES= pkg-message DATA_DIRS_LIST= images js skins From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 04:59:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 482E3C1E; Tue, 7 Oct 2014 04:59:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 342F1CF; Tue, 7 Oct 2014 04:59:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s974xHZJ037459; Tue, 7 Oct 2014 04:59:17 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s974xHlQ037458; Tue, 7 Oct 2014 04:59:17 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410070459.s974xHlQ037458@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 7 Oct 2014 04:59:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370269 - head/emulators/hyperv-is X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 04:59:17 -0000 Author: marino Date: Tue Oct 7 04:59:16 2014 New Revision: 370269 URL: https://svnweb.freebsd.org/changeset/ports/370269 QAT: https://qat.redports.org/buildarchive/r370269/ Log: emulators/hyperv-is: Fix primary category Modified: head/emulators/hyperv-is/Makefile Modified: head/emulators/hyperv-is/Makefile ============================================================================== --- head/emulators/hyperv-is/Makefile Tue Oct 7 04:38:07 2014 (r370268) +++ head/emulators/hyperv-is/Makefile Tue Oct 7 04:59:16 2014 (r370269) @@ -2,7 +2,7 @@ PORTNAME= hyperv-is PORTVERSION= 1.1 -CATEGORIES= kld +CATEGORIES= emulators kld MASTER_SITES= https://github.com/${MSLINK}/ DISTNAME= ${DNAME} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 05:59:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E64D055F; Tue, 7 Oct 2014 05:59:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D26C08C4; Tue, 7 Oct 2014 05:59:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s975xRPO065884; Tue, 7 Oct 2014 05:59:27 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s975xRma065882; Tue, 7 Oct 2014 05:59:27 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201410070559.s975xRma065882@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Tue, 7 Oct 2014 05:59:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370270 - head/ports-mgmt/pchecker X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 05:59:28 -0000 Author: ak Date: Tue Oct 7 05:59:26 2014 New Revision: 370270 URL: https://svnweb.freebsd.org/changeset/ports/370270 QAT: https://qat.redports.org/buildarchive/r370270/ Log: - Update to 1.17 Modified: head/ports-mgmt/pchecker/Makefile head/ports-mgmt/pchecker/distinfo Modified: head/ports-mgmt/pchecker/Makefile ============================================================================== --- head/ports-mgmt/pchecker/Makefile Tue Oct 7 04:59:16 2014 (r370269) +++ head/ports-mgmt/pchecker/Makefile Tue Oct 7 05:59:26 2014 (r370270) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pchecker -PORTVERSION= 1.16 +PORTVERSION= 1.17 CATEGORIES= ports-mgmt MASTER_SITES= https://googledrive.com/host/0BwCT-sp3iBCaeDRPYm1jTjl1Qmc/ Modified: head/ports-mgmt/pchecker/distinfo ============================================================================== --- head/ports-mgmt/pchecker/distinfo Tue Oct 7 04:59:16 2014 (r370269) +++ head/ports-mgmt/pchecker/distinfo Tue Oct 7 05:59:26 2014 (r370270) @@ -1,2 +1,2 @@ -SHA256 (pchecker-1.16.tar.xz) = 1fa5a78ab076459073ef341ef2f7a4886637ca3171d9910b5448776eaaed8faf -SIZE (pchecker-1.16.tar.xz) = 7104 +SHA256 (pchecker-1.17.tar.xz) = 7d614d80dab3e5719dbaf85ce68798d3708b88373293e71eec8ed31f989945b7 +SIZE (pchecker-1.17.tar.xz) = 6788 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 06:12:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B9ACB51; Tue, 7 Oct 2014 06:12:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 877CCA87; Tue, 7 Oct 2014 06:12:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s976CeeJ074982; Tue, 7 Oct 2014 06:12:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s976CeLT074981; Tue, 7 Oct 2014 06:12:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410070612.s976CeLT074981@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 06:12:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370271 - head/textproc/libwpd010 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 06:12:40 -0000 Author: antoine Date: Tue Oct 7 06:12:39 2014 New Revision: 370271 URL: https://svnweb.freebsd.org/changeset/ports/370271 QAT: https://qat.redports.org/buildarchive/r370271/ Log: Fix build Modified: head/textproc/libwpd010/Makefile Modified: head/textproc/libwpd010/Makefile ============================================================================== --- head/textproc/libwpd010/Makefile Tue Oct 7 05:59:26 2014 (r370270) +++ head/textproc/libwpd010/Makefile Tue Oct 7 06:12:39 2014 (r370271) @@ -15,7 +15,7 @@ LICENSE_COMB= dual LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge -USES= pathfix libtool tar:bzip2 +USES= libtool pathfix pkgconfig tar:bzip2 GNU_CONFIGURE= yes USE_GNOME= libgsf USE_LDCONFIG= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 06:32:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2462ED53; Tue, 7 Oct 2014 06:32:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0E81CC34; Tue, 7 Oct 2014 06:32:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s976WXLV084498; Tue, 7 Oct 2014 06:32:33 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s976WXOt084496; Tue, 7 Oct 2014 06:32:33 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410070632.s976WXOt084496@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 06:32:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370272 - head/devel/libsigrok X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 06:32:34 -0000 Author: antoine Date: Tue Oct 7 06:32:32 2014 New Revision: 370272 URL: https://svnweb.freebsd.org/changeset/ports/370272 QAT: https://qat.redports.org/buildarchive/r370272/ Log: Fix build on head and 10.1 Modified: head/devel/libsigrok/Makefile head/devel/libsigrok/pkg-plist Modified: head/devel/libsigrok/Makefile ============================================================================== --- head/devel/libsigrok/Makefile Tue Oct 7 06:12:39 2014 (r370271) +++ head/devel/libsigrok/Makefile Tue Oct 7 06:32:32 2014 (r370272) @@ -22,7 +22,11 @@ MAKE_JOBS_UNSAFE= yes LDFLAGS+= -L/usr/lib -lusb USE_LDCONFIG= yes +.include + # Workaround for libusb not knowing LIBUSB_CLASS_APPLICATION +.if (${OSVERSION} >= 1100000 && ${OSVERSION} < 1100029) || (${OSVERSION} < 1000715) CFLAGS+= -DLIBUSB_CLASS_APPLICATION=0xfe +.endif -.include +.include Modified: head/devel/libsigrok/pkg-plist ============================================================================== --- head/devel/libsigrok/pkg-plist Tue Oct 7 06:12:39 2014 (r370271) +++ head/devel/libsigrok/pkg-plist Tue Oct 7 06:32:32 2014 (r370272) @@ -6,4 +6,3 @@ lib/libsigrok.so lib/libsigrok.so.2 lib/libsigrok.so.2.0.0 libdata/pkgconfig/libsigrok.pc -@dirrm include/libsigrok From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 06:53:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59E07447; Tue, 7 Oct 2014 06:53:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2BD29EA3; Tue, 7 Oct 2014 06:53:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s976roHo094292; Tue, 7 Oct 2014 06:53:50 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s976rnQM094290; Tue, 7 Oct 2014 06:53:49 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410070653.s976rnQM094290@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 06:53:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370273 - in head/ports-mgmt/pkg: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 06:53:50 -0000 Author: bapt Date: Tue Oct 7 06:53:49 2014 New Revision: 370273 URL: https://svnweb.freebsd.org/changeset/ports/370273 QAT: https://qat.redports.org/buildarchive/r370273/ Log: Fix a regression that made some plist errors non fatal Reported by: antoine Added: head/ports-mgmt/pkg/files/patch-plist-non-fatal (contents, props changed) Modified: head/ports-mgmt/pkg/Makefile Modified: head/ports-mgmt/pkg/Makefile ============================================================================== --- head/ports-mgmt/pkg/Makefile Tue Oct 7 06:32:32 2014 (r370272) +++ head/ports-mgmt/pkg/Makefile Tue Oct 7 06:53:49 2014 (r370273) @@ -2,7 +2,7 @@ PORTNAME= pkg DISTVERSION= 1.3.8 -PORTREVISION= 2 +PORTREVISION= 3 _PKG_VERSION= ${DISTVERSION} CATEGORIES= ports-mgmt MASTER_SITES= \ Added: head/ports-mgmt/pkg/files/patch-plist-non-fatal ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ports-mgmt/pkg/files/patch-plist-non-fatal Tue Oct 7 06:53:49 2014 (r370273) @@ -0,0 +1,31 @@ +diff --git libpkg/pkg_ports.c libpkg/pkg_ports.c +index 33a29d0..21182b4 100644 +--- libpkg/pkg_ports.c ++++ libpkg/pkg_ports.c +@@ -1141,7 +1141,7 @@ int + ports_parse_plist(struct pkg *pkg, const char *plist, const char *stage) + { + char *line = NULL; +- int ret = EPKG_OK; ++ int ret, rc = EPKG_OK; + struct plist *pplist; + FILE *plist_f; + size_t linecap = 0; +@@ -1162,6 +1162,8 @@ ports_parse_plist(struct pkg *pkg, const char *plist, const char *stage) + if (line[linelen - 1] == '\n') + line[linelen - 1] = '\0'; + ret = plist_parse_line(pkg, pplist, line); ++ if (rc == EPKG_OK) ++ rc = ret; + } + + free(line); +@@ -1185,7 +1187,7 @@ ports_parse_plist(struct pkg *pkg, const char *plist, const char *stage) + + plist_free(pplist); + +- return (ret); ++ return (rc); + } + + int From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 07:18:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AEE085D; Tue, 7 Oct 2014 07:18:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 46F72178; Tue, 7 Oct 2014 07:18:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s977IlHc005006; Tue, 7 Oct 2014 07:18:47 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s977Ilr3005005; Tue, 7 Oct 2014 07:18:47 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410070718.s977Ilr3005005@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 07:18:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370275 - head/math/gotoblas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 07:18:47 -0000 Author: bapt Date: Tue Oct 7 07:18:46 2014 New Revision: 370275 URL: https://svnweb.freebsd.org/changeset/ports/370275 QAT: https://qat.redports.org/buildarchive/r370275/ Log: Remove latest occurence of a versionned USE_GCC, perfer USE_GCC=yes instead Modified: head/math/gotoblas/Makefile Modified: head/math/gotoblas/Makefile ============================================================================== --- head/math/gotoblas/Makefile Tue Oct 7 06:54:49 2014 (r370274) +++ head/math/gotoblas/Makefile Tue Oct 7 07:18:46 2014 (r370275) @@ -30,7 +30,7 @@ USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/GotoBLAS2 USES= gmake perl5 -USE_GCC= 4.6+ +USE_GCC= yes USE_PERL5= build GOTOLIBS= libgoto2 libgoto2p GOTOFILES= ${GOTOLIBS:S|$|.so|} ${GOTOLIBS:S|$|.so.1|} ${GOTOLIBS:S|$|.a|} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 07:21:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDF2495E; Tue, 7 Oct 2014 07:21:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA61E18D; Tue, 7 Oct 2014 07:21:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s977L2Fp008205; Tue, 7 Oct 2014 07:21:02 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s977L2bl008204; Tue, 7 Oct 2014 07:21:02 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201410070721.s977L2bl008204@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Tue, 7 Oct 2014 07:21:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370276 - head/japanese/mozc-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 07:21:03 -0000 Author: hrs Date: Tue Oct 7 07:21:02 2014 New Revision: 370276 URL: https://svnweb.freebsd.org/changeset/ports/370276 QAT: https://qat.redports.org/buildarchive/r370276/ Log: Fix build on 10.0. Modified: head/japanese/mozc-server/Makefile Modified: head/japanese/mozc-server/Makefile ============================================================================== --- head/japanese/mozc-server/Makefile Tue Oct 7 07:18:46 2014 (r370275) +++ head/japanese/mozc-server/Makefile Tue Oct 7 07:21:02 2014 (r370276) @@ -49,19 +49,12 @@ USE_GNOME= glib20 gtk20 USE_EMACS= yes .endif -# Do not use Clang 3.3 or prior because of some C++11 library issues. -.if exists(/usr/bin/clang) -_CLANGVER!= /usr/bin/clang --version 2>&1 || true -.if !defined(_CLANGVER) || \ - empty(_CLANGVER:M[0-9].[0-9]*:C/([0-9]).([0-9]).*/\1\2/g:M[0-9]*) || \ - ${_CLANGVER:M[0-9].[0-9]*:C/([0-9]).([0-9]).*/\1\2/g} < 34 -USE_GCC= yes -_CCTYPE= gcc -.else +# Use GCC only when the stock clang does not have libc++.so. +.if exists(/usr/bin/clang) && exists(/usr/lib/libc++.so) _CCTYPE= clang -.endif .else -_CCTYPE= ${CHOSEN_COMPILER_TYPE} +USE_GCC= yes +_CCTYPE= gcc .endif .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 08:01:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A02A0169; Tue, 7 Oct 2014 08:01:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CB3183D; Tue, 7 Oct 2014 08:01:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9781rFa027933; Tue, 7 Oct 2014 08:01:53 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9781rgv027932; Tue, 7 Oct 2014 08:01:53 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410070801.s9781rgv027932@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Tue, 7 Oct 2014 08:01:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370277 - head/net/ntp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 08:01:53 -0000 Author: tijl Date: Tue Oct 7 08:01:52 2014 New Revision: 370277 URL: https://svnweb.freebsd.org/changeset/ports/370277 QAT: https://qat.redports.org/buildarchive/r370277/ Log: Remove LATEST_LINK and USE_AUTOTOOLS Modified: head/net/ntp/Makefile Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Tue Oct 7 07:21:02 2014 (r370276) +++ head/net/ntp/Makefile Tue Oct 7 08:01:52 2014 (r370277) @@ -14,13 +14,10 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:S/P/ MAINTAINER= cy@FreeBSD.org COMMENT= The Network Time Protocol Distribution -LATEST_LINK= ${PORTNAME} - USES= libtool shebangfix SHEBANG_FILES= ${WRKSRC}/scripts/ntptrace.in ${WRKSRC}/scripts/ntp-wait.in perl_OLD_CMD= @PATH_PERL@ GNU_CONFIGURE= yes -USE_AUTOTOOLS= automake OPTIONS_SUB= yes .include "Makefile.inc" @@ -50,12 +47,6 @@ CONFIGURE_ARGS+= --enable-${D} .endif .endfor -AUTOTOOLSFILES= aclocal.m4 - -post-patch: - @${REINPLACE_CMD} -e 's|1.11.1|%%AUTOMAKE_APIVER%%|g' \ - ${WRKSRC}/aclocal.m4 - post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} @${INSTALL_DATA} ${WRKSRC}/conf/* ${STAGEDIR}${EXAMPLESDIR} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:07:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 647F61DC; Tue, 7 Oct 2014 09:07:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50206E76; Tue, 7 Oct 2014 09:07:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9797Zxw057427; Tue, 7 Oct 2014 09:07:35 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9797Ykx057422; Tue, 7 Oct 2014 09:07:34 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201410070907.s9797Ykx057422@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Tue, 7 Oct 2014 09:07:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370278 - in head: Mk emulators/linux-c6 graphics graphics/linux-c6-libGLU X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:07:35 -0000 Author: xmj Date: Tue Oct 7 09:07:33 2014 New Revision: 370278 URL: https://svnweb.freebsd.org/changeset/ports/370278 QAT: https://qat.redports.org/buildarchive/r370278/ Log: graphics/linux-c6-libGLU: Port of CentOS 6.5's Mesa libGLU Add port of CentOS 6.5's libGLU library. This allows several games to be used with the new CentOS ports. While here: - Add c6 libglu to Mk/bsd.linux-apps.mk - Add to emulators/linux-c6 as dependency, bump PORTREVISION Differential Revision: https://reviews.freebsd.org/D841 Approved by: swills (mentor) Approved by: portmgr (bapt) Added: head/graphics/linux-c6-libGLU/ head/graphics/linux-c6-libGLU/Makefile (contents, props changed) head/graphics/linux-c6-libGLU/distinfo.i686 (contents, props changed) Modified: head/Mk/bsd.linux-apps.mk head/emulators/linux-c6/Makefile head/graphics/Makefile Modified: head/Mk/bsd.linux-apps.mk ============================================================================== --- head/Mk/bsd.linux-apps.mk Tue Oct 7 08:01:52 2014 (r370277) +++ head/Mk/bsd.linux-apps.mk Tue Oct 7 09:07:33 2014 (r370278) @@ -256,6 +256,7 @@ libglade2_DETECT= ${libglade2${LINUX_DIS libglade2_PORT= ${PORTSDIR}/devel/linux${LINUX_DIST_SUFFIX}-libglade2 libglu_f10_FILE= ${LINUXBASE}/usr/lib/libGLU.so.1 +libglu_c6_FILE= ${LINUXBASE}/usr/lib/libGLU.so.1 libglu_DETECT= ${libglu${LINUX_DIST_SUFFIX:S/-/_/}_FILE} libglu_PORT= ${PORTSDIR}/graphics/linux${LINUX_DIST_SUFFIX}-libGLU Modified: head/emulators/linux-c6/Makefile ============================================================================== --- head/emulators/linux-c6/Makefile Tue Oct 7 08:01:52 2014 (r370277) +++ head/emulators/linux-c6/Makefile Tue Oct 7 09:07:33 2014 (r370278) @@ -3,6 +3,7 @@ PORTNAME= linux-c6 PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= emulators linux MASTER_SITES= # none DISTFILES= # none @@ -90,7 +91,8 @@ RUN_DEPENDS+= linux-c6-libasyncns>0:${PO OPTIONS_DEFINE= NVIDIA_GL NVIDIA_GL_DESC= Use GL driver from nvidia-driver -NVIDIA_GL_RUN_DEPENDS= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +NVIDIA_GL_RUN_DEPENDS= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ + linux-c6-libGLU>0:${PORTSDIR}/graphics/linux-c6-libGLU NVIDIA_GL_RUN_DEPENDS_OFF= linux-c6-dri>0:${PORTSDIR}/graphics/linux-c6-dri .include Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Oct 7 08:01:52 2014 (r370277) +++ head/graphics/Makefile Tue Oct 7 09:07:33 2014 (r370278) @@ -552,6 +552,7 @@ SUBDIR += linux-c6-dri SUBDIR += linux-c6-dri-compat SUBDIR += linux-c6-jpeg + SUBDIR += linux-c6-libGLU SUBDIR += linux-c6-tiff SUBDIR += linux-c6-cairo SUBDIR += linux-c6-png Added: head/graphics/linux-c6-libGLU/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/linux-c6-libGLU/Makefile Tue Oct 7 09:07:33 2014 (r370278) @@ -0,0 +1,28 @@ +# Created by: Johannes Meixner +# $FreeBSD$ + +PORTNAME= libGLU +PORTVERSION= 9.2 +CATEGORIES= graphics linux +DISTNAME= mesa-libGLU-9.2-0.5.el6 + +MAINTAINER= emulation@FreeBSD.org +COMMENT= Mesa libGLU runtime libraries (Linux CentOS ${LINUX_DIST_VER}) + +ALWAYS_KEEP_DISTFILES= YES + +CONFLICTS= linux-f10-dri-[0-9]* linux-f10-libGLU-[0-9]* linux-c6-dri-[0-9]* + +ONLY_FOR_ARCHS= i386 amd64 +.if defined(PACKAGE_BUILDING) +SRC_DISTFILES= mesa-9.2-0.5.el6.src.rpm +.endif + +USE_LINUX= c6 +USE_LINUX_RPM= yes +USE_LDCONFIG= yes +DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr +PLIST_FILES= usr/lib/libGLU.so.1 \ + usr/lib/libGLU.so.1.3.1 + +.include Added: head/graphics/linux-c6-libGLU/distinfo.i686 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/linux-c6-libGLU/distinfo.i686 Tue Oct 7 09:07:33 2014 (r370278) @@ -0,0 +1,4 @@ +SHA256 (rpm/i686/centos/6.5/mesa-libGLU-9.2-0.5.el6.i686.rpm) = ded5d3f58c8fbe89e9c710d90d578f3fc76cc7b44090ff9c3c87276004f23175 +SIZE (rpm/i686/centos/6.5/mesa-libGLU-9.2-0.5.el6.i686.rpm) = 197372 +SHA256 (rpm/i686/centos/6.5/mesa-9.2-0.5.el6.src.rpm) = 235ebab32077e6658c8785b310c40907bfc0e9bcfec4affabdfd00e28b67f54c +SIZE (rpm/i686/centos/6.5/mesa-9.2-0.5.el6.src.rpm) = 23336483 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:22:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D8AD34F4; Tue, 7 Oct 2014 09:22:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB4D6CE; Tue, 7 Oct 2014 09:22:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s979MS6h066270; Tue, 7 Oct 2014 09:22:28 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s979MSgH066268; Tue, 7 Oct 2014 09:22:28 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410070922.s979MSgH066268@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Tue, 7 Oct 2014 09:22:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370279 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:22:29 -0000 Author: tijl Date: Tue Oct 7 09:22:27 2014 New Revision: 370279 URL: https://svnweb.freebsd.org/changeset/ports/370279 QAT: https://qat.redports.org/buildarchive/r370279/ Log: Remove unused configure-autotools target from Mk/bsd.autotools.mk and Mk/bsd.port.mk Approved by: portmgr (bapt) Modified: head/Mk/bsd.autotools.mk head/Mk/bsd.port.mk Modified: head/Mk/bsd.autotools.mk ============================================================================== --- head/Mk/bsd.autotools.mk Tue Oct 7 09:07:33 2014 (r370278) +++ head/Mk/bsd.autotools.mk Tue Oct 7 09:22:27 2014 (r370279) @@ -39,10 +39,6 @@ Autotools_Include_MAINTAINER= autotools@ # LIBTOOLIZE_ARGS=... # - Extra arguments passed to libtoolize during configure step # -# AUTOTOOLSFILES= -# - A list of files to further patch with derived information -# post-patching to reduce churn during component updates -# #--------------------------------------------------------------------------- #--------------------------------------------------------------------------- @@ -292,22 +288,3 @@ run-autotools-libtoolize: @${DO_NADA} . endif .endif - -#--------------------------------------------------------------------------- -# Reduce patch churn by auto-substituting data from AUTOTOOLS_VARS -# into the correct places. Code shamelessly stolen from PLIST_SUB. - -AUTOTOOLSFILES?= # default to empty -AUTOTOOLS_VARS?= # empty if not already set - -.if !target(configure-autotools) -configure-autotools:: -. if ${AUTOTOOLS_VARS}!="" && ${AUTOTOOLSFILES} != "" - @for file in ${AUTOTOOLSFILES}; do \ - ${REINPLACE_CMD} ${AUTOTOOLS_VARS:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ - ${WRKSRC}/$${file} ; \ - done -. else - @${DO_NADA} -. endif -.endif Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Oct 7 09:07:33 2014 (r370278) +++ head/Mk/bsd.port.mk Tue Oct 7 09:22:27 2014 (r370279) @@ -5992,7 +5992,7 @@ _PATCH_SEQ= ask-license patch-message p pre-patch-script do-patch charsetfix-post-patch post-patch post-patch-script _CONFIGURE_DEP= patch _CONFIGURE_SEQ= build-depends lib-depends configure-message run-autotools-fixup \ - configure-autotools pre-configure pre-configure-script \ + pre-configure pre-configure-script \ run-autotools do-autoreconf patch-libtool do-configure \ post-configure post-configure-script _BUILD_DEP= configure From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:32:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD74F711; Tue, 7 Oct 2014 09:32:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 99FE51F9; Tue, 7 Oct 2014 09:32:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s979Wsdu071101; Tue, 7 Oct 2014 09:32:54 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s979WsIa071100; Tue, 7 Oct 2014 09:32:54 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410070932.s979WsIa071100@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 09:32:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370280 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:32:54 -0000 Author: bapt Date: Tue Oct 7 09:32:53 2014 New Revision: 370280 URL: https://svnweb.freebsd.org/changeset/ports/370280 QAT: https://qat.redports.org/buildarchive/r370280/ Log: Add a use to handle gperf dependency It uses gperf from base if it exists and its version is 3.x.x Otherwise it uses gperf from ports Added: head/Mk/Uses/gperf.mk (contents, props changed) Added: head/Mk/Uses/gperf.mk ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/Mk/Uses/gperf.mk Tue Oct 7 09:32:53 2014 (r370280) @@ -0,0 +1,35 @@ +# $FreeBSD$ +# +# handle dependency on gperf +# +# Feature: gperf +# Usage: USES=gperf +# +# Take no arguments + +.if !defined(_INCLUDE_USES_GPERG_MK) +_INCLUDE_USES_GPERF_MK= yes + +.if !exists(/usr/bin/gperf) +BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf +GPERF= ${LOCALBASE}/bin/gperf +.else +_GPERF_VERSION!= /usr/bin/gperf --version | head -1 || true +_GPERF_MAJ_VERSION= ${_GPERF_VERSION:M[0-9].[0-9].[0-9]:C/.*([0-9]).[0-9].[0-9].*/\1/g} + +.if empty(_GPERF_MAJ_VERSION) +_GPERF_MAJ_VERSION= 0 +.endif + +.if ${_GPERF_MAJ_VERSION} < 3 +BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf +GPERF= ${LOCALBASE}/bin/gperf +.else +GPERF= /usr/bin/gperf +.endif +.endif + +CONFIGURE_ENV+= GPERF=${GPERF} +MAKE_ENV+= GPERF=${GPERF} + +.endif From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:47:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0EC4DBA5; Tue, 7 Oct 2014 09:47:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3C50347; Tue, 7 Oct 2014 09:47:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s979luU9076524; Tue, 7 Oct 2014 09:47:56 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s979ltxJ076513; Tue, 7 Oct 2014 09:47:55 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410070947.s979ltxJ076513@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 09:47:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370281 - in head/graphics: . libetonyek libetonyek01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:47:57 -0000 Author: bapt Date: Tue Oct 7 09:47:55 2014 New Revision: 370281 URL: https://svnweb.freebsd.org/changeset/ports/370281 QAT: https://qat.redports.org/buildarchive/r370281/ Log: Import libetonyek01 Ensure it doesn't conflicts with libetonyek Added: head/graphics/libetonyek01/ - copied from r370181, head/graphics/libetonyek/ Modified: head/graphics/Makefile head/graphics/libetonyek/Makefile head/graphics/libetonyek01/Makefile head/graphics/libetonyek01/distinfo head/graphics/libetonyek01/pkg-plist Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Oct 7 09:32:53 2014 (r370280) +++ head/graphics/Makefile Tue Oct 7 09:47:55 2014 (r370281) @@ -491,6 +491,7 @@ SUBDIR += libecwj2 SUBDIR += libemf SUBDIR += libetonyek + SUBDIR += libetonyek01 SUBDIR += libexif SUBDIR += libexif-gtk SUBDIR += libfpx Modified: head/graphics/libetonyek/Makefile ============================================================================== --- head/graphics/libetonyek/Makefile Tue Oct 7 09:32:53 2014 (r370280) +++ head/graphics/libetonyek/Makefile Tue Oct 7 09:47:55 2014 (r370281) @@ -2,6 +2,7 @@ PORTNAME= libetonyek PORTVERSION= 0.0.4 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://dev-www.libreoffice.org/src/ @@ -11,24 +12,20 @@ COMMENT= Library to interpret and import LICENSE= LGPL21 MPL LICENSE_COMB= dual -BUILD_DEPENDS= gperf:${PORTSDIR}/devel/gperf LIB_DEPENDS= libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ libxml2.so:${PORTSDIR}/textproc/libxml2 -OPTIONS_DEFINE= DOCS TEST +OPTIONS_DEFINE= TEST -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= gmake libtool:keepla pathfix pkgconfig tar:xz +USES= gmake gperf libtool:keepla pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs TEST_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/cppunit.pc:${PORTSDIR}/devel/cppunit TEST_CONFIGURE_OFF= --disable-tests @@ -39,4 +36,7 @@ post-build: @cd ${WRKSRC}/src/test && ${MAKE_CMD} check .endif +port-stage: + @${RM} -f ${STAGEDIR}${PREFIX}/bin/key* + .include Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libetonyek01/Makefile Tue Oct 7 09:47:55 2014 (r370281) @@ -1,9 +1,10 @@ # $FreeBSD$ PORTNAME= libetonyek -PORTVERSION= 0.0.4 +PORTVERSION= 0.1.1 CATEGORIES= graphics MASTER_SITES= http://dev-www.libreoffice.org/src/ +PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org COMMENT= Library to interpret and import Apple Keynote presentations @@ -11,24 +12,21 @@ COMMENT= Library to interpret and import LICENSE= LGPL21 MPL LICENSE_COMB= dual -BUILD_DEPENDS= gperf:${PORTSDIR}/devel/gperf +USES= gperf LIB_DEPENDS= libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ - libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ + librevenge-0.0.so:${PORTSDIR}/textproc/librevenge \ libxml2.so:${PORTSDIR}/textproc/libxml2 -OPTIONS_DEFINE= DOCS TEST +OPTIONS_DEFINE= TEST -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= gmake libtool:keepla pathfix pkgconfig tar:xz +USES= gmake libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs TEST_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/cppunit.pc:${PORTSDIR}/devel/cppunit TEST_CONFIGURE_OFF= --disable-tests Modified: head/graphics/libetonyek01/distinfo ============================================================================== --- head/graphics/libetonyek/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libetonyek01/distinfo Tue Oct 7 09:47:55 2014 (r370281) @@ -1,2 +1,2 @@ -SHA256 (libetonyek-0.0.4.tar.xz) = 4e1ab60382207854524bb270b13c70b2d590aefc20864da2aa5c6693c2181a6f -SIZE (libetonyek-0.0.4.tar.xz) = 340856 +SHA256 (libetonyek-0.1.1.tar.xz) = 9c6a5a0f15ae6cc6e2dfb2272b664dedda7918ed46f3756f9f29a72589d8c83e +SIZE (libetonyek-0.1.1.tar.xz) = 338396 Modified: head/graphics/libetonyek01/pkg-plist ============================================================================== --- head/graphics/libetonyek/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libetonyek01/pkg-plist Tue Oct 7 09:47:55 2014 (r370281) @@ -1,14 +1,15 @@ +bin/numbers2csv +bin/numbers2raw +bin/numbers2text +bin/pages2html +bin/pages2raw +bin/pages2text bin/key2raw bin/key2text bin/key2xhtml -include/libetonyek-0.0/libetonyek/KEYDocument.h -include/libetonyek-0.0/libetonyek/KEYPresentationInterface.h -include/libetonyek-0.0/libetonyek/KEYStringVector.h -include/libetonyek-0.0/libetonyek/libetonyek.h -lib/libetonyek-0.0.la -lib/libetonyek-0.0.so -lib/libetonyek-0.0.so.0 -lib/libetonyek-0.0.so.0.0.4 -libdata/pkgconfig/libetonyek-0.0.pc -@dirrm include/libetonyek-0.0/libetonyek -@dirrm include/libetonyek-0.0 +include/libetonyek-0.1/libetonyek/EtonyekDocument.h +include/libetonyek-0.1/libetonyek/libetonyek.h +lib/libetonyek-0.1.so +lib/libetonyek-0.1.so.1 +lib/libetonyek-0.1.so.1.0.1 +libdata/pkgconfig/libetonyek-0.1.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:50:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 571AFCC7; Tue, 7 Oct 2014 09:50:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 436CA35A; Tue, 7 Oct 2014 09:50:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s979oS4K076998; Tue, 7 Oct 2014 09:50:28 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s979oSgM076997; Tue, 7 Oct 2014 09:50:28 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201410070950.s979oSgM076997@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Tue, 7 Oct 2014 09:50:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370282 - head/devel/rubygem-gyoku X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:50:28 -0000 Author: robak Date: Tue Oct 7 09:50:27 2014 New Revision: 370282 URL: https://svnweb.freebsd.org/changeset/ports/370282 QAT: https://qat.redports.org/buildarchive/r370282/ Log: devel/rubygem-gyoku: keep portscout from looking for newer versions PR: 189825 Submitted by: Joseph Benden Approved by: mentors (implicit) Modified: head/devel/rubygem-gyoku/Makefile Modified: head/devel/rubygem-gyoku/Makefile ============================================================================== --- head/devel/rubygem-gyoku/Makefile Tue Oct 7 09:47:55 2014 (r370281) +++ head/devel/rubygem-gyoku/Makefile Tue Oct 7 09:50:27 2014 (r370282) @@ -17,4 +17,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes +PORTSCOUT= limit:^0\.4\. + .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:52:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 054F5DDD; Tue, 7 Oct 2014 09:52:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E51225F2; Tue, 7 Oct 2014 09:52:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s979qIYv080757; Tue, 7 Oct 2014 09:52:18 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s979qHgj080751; Tue, 7 Oct 2014 09:52:17 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410070952.s979qHgj080751@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 09:52:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370283 - in head/graphics: . libcdr libcdr01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:52:19 -0000 Author: bapt Date: Tue Oct 7 09:52:16 2014 New Revision: 370283 URL: https://svnweb.freebsd.org/changeset/ports/370283 QAT: https://qat.redports.org/buildarchive/r370283/ Log: Import libcdr01 Ensure it does not conflicts with libcdr Added: head/graphics/libcdr01/ - copied from r370181, head/graphics/libcdr/ Modified: head/graphics/Makefile head/graphics/libcdr/Makefile head/graphics/libcdr/pkg-plist head/graphics/libcdr01/Makefile head/graphics/libcdr01/distinfo head/graphics/libcdr01/pkg-plist Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Oct 7 09:50:27 2014 (r370282) +++ head/graphics/Makefile Tue Oct 7 09:52:16 2014 (r370283) @@ -485,6 +485,7 @@ SUBDIR += libboard SUBDIR += libcaca SUBDIR += libcdr + SUBDIR += libcdr01 SUBDIR += libchamplain SUBDIR += libdmtx SUBDIR += libdrm Modified: head/graphics/libcdr/Makefile ============================================================================== --- head/graphics/libcdr/Makefile Tue Oct 7 09:50:27 2014 (r370282) +++ head/graphics/libcdr/Makefile Tue Oct 7 09:52:16 2014 (r370283) @@ -2,7 +2,7 @@ PORTNAME= libcdr PORTVERSION= 0.0.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/ @@ -27,4 +27,7 @@ INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include CXXFLAGS+= -Wno-long-long +post-stage: + ${RM} -f ${STAGEDIR}${PREFIX}/bin/c* + .include Modified: head/graphics/libcdr/pkg-plist ============================================================================== --- head/graphics/libcdr/pkg-plist Tue Oct 7 09:50:27 2014 (r370282) +++ head/graphics/libcdr/pkg-plist Tue Oct 7 09:52:16 2014 (r370283) @@ -1,9 +1,3 @@ -bin/cdr2raw -bin/cdr2text -bin/cdr2xhtml -bin/cmx2raw -bin/cmx2text -bin/cmx2xhtml include/libcdr-0.0/libcdr/CDRDocument.h include/libcdr-0.0/libcdr/CDRStringVector.h include/libcdr-0.0/libcdr/CMXDocument.h @@ -12,5 +6,3 @@ lib/libcdr-0.0.so lib/libcdr-0.0.so.0 lib/libcdr-0.0.so.0.0.16 libdata/pkgconfig/libcdr-0.0.pc -@dirrm include/libcdr-0.0/libcdr -@dirrm include/libcdr-0.0 Modified: head/graphics/libcdr01/Makefile ============================================================================== --- head/graphics/libcdr/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libcdr01/Makefile Tue Oct 7 09:52:16 2014 (r370283) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= libcdr -PORTVERSION= 0.0.16 -PORTREVISION= 1 +PORTVERSION= 0.1.0 CATEGORIES= graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/ +PKGNAMESUIFFIX= 01 MAINTAINER= office@FreeBSD.org COMMENT= Library and tools for parsing Corel Draw file format @@ -14,8 +14,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/include/boost/optional.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= libicui18n.so:${PORTSDIR}/devel/icu \ - libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ - libwpg-0.2.so:${PORTSDIR}/graphics/libwpg \ + librevenge-0.0.so:${PORTSDIR}/textproc/librevenge \ liblcms2.so:${PORTSDIR}/graphics/lcms2 GNU_CONFIGURE= yes Modified: head/graphics/libcdr01/distinfo ============================================================================== --- head/graphics/libcdr/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libcdr01/distinfo Tue Oct 7 09:52:16 2014 (r370283) @@ -1,2 +1,2 @@ -SHA256 (libcdr-0.0.16.tar.xz) = 4c8a6586920f7b040ce51fa375eb87507291e0de4f568469db25f52915bc1135 -SIZE (libcdr-0.0.16.tar.xz) = 569644 +SHA256 (libcdr-0.1.0.tar.xz) = a9bd1faca049cf1e2285b27da213a499434591919227beb209b191ad1bb240e8 +SIZE (libcdr-0.1.0.tar.xz) = 562240 Modified: head/graphics/libcdr01/pkg-plist ============================================================================== --- head/graphics/libcdr/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/graphics/libcdr01/pkg-plist Tue Oct 7 09:52:16 2014 (r370283) @@ -4,13 +4,11 @@ bin/cdr2xhtml bin/cmx2raw bin/cmx2text bin/cmx2xhtml -include/libcdr-0.0/libcdr/CDRDocument.h -include/libcdr-0.0/libcdr/CDRStringVector.h -include/libcdr-0.0/libcdr/CMXDocument.h -include/libcdr-0.0/libcdr/libcdr.h -lib/libcdr-0.0.so -lib/libcdr-0.0.so.0 -lib/libcdr-0.0.so.0.0.16 -libdata/pkgconfig/libcdr-0.0.pc -@dirrm include/libcdr-0.0/libcdr -@dirrm include/libcdr-0.0 +include/libcdr-0.1/libcdr/CDRDocument.h +include/libcdr-0.1/libcdr/CMXDocument.h +include/libcdr-0.1/libcdr/libcdr.h +include/libcdr-0.1/libcdr/libcdr_api.h +lib/libcdr-0.1.so +lib/libcdr-0.1.so.1 +lib/libcdr-0.1.so.1.0.0 +libdata/pkgconfig/libcdr-0.1.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:53:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48572ED2; Tue, 7 Oct 2014 09:53:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 353D3601; Tue, 7 Oct 2014 09:53:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s979roJZ081022; Tue, 7 Oct 2014 09:53:50 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s979ro7C081021; Tue, 7 Oct 2014 09:53:50 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410070953.s979ro7C081021@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 09:53:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370284 - head/graphics/libcdr01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:53:50 -0000 Author: bapt Date: Tue Oct 7 09:53:49 2014 New Revision: 370284 URL: https://svnweb.freebsd.org/changeset/ports/370284 QAT: https://qat.redports.org/buildarchive/r370284/ Log: Fix typo Modified: head/graphics/libcdr01/Makefile Modified: head/graphics/libcdr01/Makefile ============================================================================== --- head/graphics/libcdr01/Makefile Tue Oct 7 09:52:16 2014 (r370283) +++ head/graphics/libcdr01/Makefile Tue Oct 7 09:53:49 2014 (r370284) @@ -4,7 +4,7 @@ PORTNAME= libcdr PORTVERSION= 0.1.0 CATEGORIES= graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/ -PKGNAMESUIFFIX= 01 +PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org COMMENT= Library and tools for parsing Corel Draw file format From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 09:59:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 810517E; Tue, 7 Oct 2014 09:59:49 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 3FB2162D; Tue, 7 Oct 2014 09:59:49 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id C75A1BDC1F; Tue, 7 Oct 2014 11:59:45 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id A85B4BDC1D; Tue, 7 Oct 2014 11:59:45 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 525436124; Tue, 7 Oct 2014 11:59:34 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 5841575B1290; Tue, 7 Oct 2014 11:59:31 +0200 (CEST) Date: Tue, 07 Oct 2014 11:59:30 +0200 From: Mathieu Arnold To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files Message-ID: In-Reply-To: <201410062258.s96MwoqK063529@svn.freebsd.org> References: <201410062258.s96MwoqK063529@svn.freebsd.org> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 09:59:49 -0000 +--On 6 octobre 2014 22:58:50 +0000 John Marino wrote: | +@cwd /boot/kernel | +%%A%%hv_ata_pci_disengage.ko | +%%A%%hv_netvsc.ko Please, do not use @cwd, it is confusing, and not needed since pkg_* has gotten out. List files with their path like this : %%A%%/boot/kernel/hv_ata_pci_disengage.ko | +%%A%%hv_storvsc.ko | +%%A%%hv_utils.ko | +%%A%%hv_vmbus.ko | +%%B%%hv_kvp.ko | +@cwd /etc/rc.d | +hv_kvpd | +%%A%%@cwd /usr/share/man/man1 | +%%A%%hyperv-is.1.gz | +%%B%%@cwd /usr/sbin | +%%B%%hv_kvp_daemon | +@cwd /usr/share/man/man4 | +%%A%%hv_ata_pci_disengage.4.gz | +hv_kvp.4.gz | +%%A%%hv_netvsc.4.gz | +%%A%%hv_storvsc.4.gz | +%%A%%hv_utils.4.gz | +%%A%%hv_vmbus.4.gz | +%%B%%@cwd /usr/share/man/man8 | +%%B%%hv_kvp_daemon.8.gz -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:03:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 526A72A5; Tue, 7 Oct 2014 10:03:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E080750; Tue, 7 Oct 2014 10:03:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97A3HQA085861; Tue, 7 Oct 2014 10:03:17 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97A3Fh8085852; Tue, 7 Oct 2014 10:03:15 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071003.s97A3Fh8085852@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 10:03:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370285 - in head/textproc: . libmwaw libmwaw03 libmwaw03/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:03:17 -0000 Author: bapt Date: Tue Oct 7 10:03:15 2014 New Revision: 370285 URL: https://svnweb.freebsd.org/changeset/ports/370285 QAT: https://qat.redports.org/buildarchive/r370285/ Log: Import libmwaw03 Ensure it does not conflicts with libmwaw Added: head/textproc/libmwaw03/ - copied from r370181, head/textproc/libmwaw/ Deleted: head/textproc/libmwaw03/files/ Modified: head/textproc/Makefile head/textproc/libmwaw/Makefile head/textproc/libmwaw/pkg-plist head/textproc/libmwaw03/Makefile head/textproc/libmwaw03/distinfo head/textproc/libmwaw03/pkg-plist Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Oct 7 09:53:49 2014 (r370284) +++ head/textproc/Makefile Tue Oct 7 10:03:15 2014 (r370285) @@ -363,6 +363,7 @@ SUBDIR += libmrss SUBDIR += libmrss-php SUBDIR += libmwaw + SUBDIR += libmwaw03 SUBDIR += libnxml SUBDIR += libodfgen SUBDIR += libparsifal Modified: head/textproc/libmwaw/Makefile ============================================================================== --- head/textproc/libmwaw/Makefile Tue Oct 7 09:53:49 2014 (r370284) +++ head/textproc/libmwaw/Makefile Tue Oct 7 10:03:15 2014 (r370285) @@ -2,6 +2,7 @@ PORTNAME= libmwaw PORTVERSION= 0.2.0 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -14,9 +15,7 @@ LICENSE_COMB= dual LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ libwpg-0.2.so:${PORTSDIR}/graphics/libwpg -OPTIONS_DEFINE= DOCS - -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include EXTRA_PATCHES+= ${FILESDIR}/0001-use-correct-type.patch:-p1 @@ -26,10 +25,6 @@ USES= compiler:features libtool:keepla USE_LDCONFIG= yes INSTALL_TARGET= install-strip -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs - .include .if ${COMPILER_FEATURES:Mlibc++} @@ -40,4 +35,7 @@ CONFIGURE_ARGS+= --with-sharedptr=boost EXTRA_PATCHES+= ${FILESDIR}/0001-std-isfinite-is-C-11.patch:-p1 .endif +post-stage: + @${RM} -f ${STAGEDIR}${PREFIX}/bin/mwaw* + .include Modified: head/textproc/libmwaw/pkg-plist ============================================================================== --- head/textproc/libmwaw/pkg-plist Tue Oct 7 09:53:49 2014 (r370284) +++ head/textproc/libmwaw/pkg-plist Tue Oct 7 10:03:15 2014 (r370285) @@ -1,9 +1,3 @@ -bin/mwaw2csv -bin/mwaw2html -bin/mwaw2raw -bin/mwaw2text -bin/mwawFile -bin/mwawZip include/libmwaw-0.2/libmwaw/MWAWDocument.hxx include/libmwaw-0.2/libmwaw/libmwaw.hxx lib/libmwaw-0.2.la @@ -11,5 +5,3 @@ lib/libmwaw-0.2.so lib/libmwaw-0.2.so.2 lib/libmwaw-0.2.so.2.0.0 libdata/pkgconfig/libmwaw-0.2.pc -@dirrm include/libmwaw-0.2/libmwaw -@dirrm include/libmwaw-0.2 Modified: head/textproc/libmwaw03/Makefile ============================================================================== --- head/textproc/libmwaw/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libmwaw03/Makefile Tue Oct 7 10:03:15 2014 (r370285) @@ -1,9 +1,10 @@ # $FreeBSD$ PORTNAME= libmwaw -PORTVERSION= 0.2.0 +PORTVERSION= 0.3.2 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMESUFFIX= 03 MAINTAINER= office@FreeBSD.org COMMENT= Import library for some old mac text documents @@ -11,25 +12,16 @@ COMMENT= Import library for some old mac LICENSE= LGPL21 MPL LICENSE_COMB= dual -LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd \ - libwpg-0.2.so:${PORTSDIR}/graphics/libwpg +LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge -OPTIONS_DEFINE= DOCS - -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include -EXTRA_PATCHES+= ${FILESDIR}/0001-use-correct-type.patch:-p1 - GNU_CONFIGURE= yes -USES= compiler:features libtool:keepla pathfix pkgconfig tar:xz +USES= compiler:features libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs - .include .if ${COMPILER_FEATURES:Mlibc++} @@ -37,7 +29,6 @@ CONFIGURE_ARGS+= --with-sharedptr=c++11 .else BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs CONFIGURE_ARGS+= --with-sharedptr=boost -EXTRA_PATCHES+= ${FILESDIR}/0001-std-isfinite-is-C-11.patch:-p1 .endif .include Modified: head/textproc/libmwaw03/distinfo ============================================================================== --- head/textproc/libmwaw/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libmwaw03/distinfo Tue Oct 7 10:03:15 2014 (r370285) @@ -1,2 +1,2 @@ -SHA256 (libmwaw-0.2.0.tar.xz) = c30f228681ba2fc3715c9e41fcf2c3bb2b873911acb22602ab7b2eb1eeed85bd -SIZE (libmwaw-0.2.0.tar.xz) = 808604 +SHA256 (libmwaw-0.3.2.tar.xz) = d8360a8d6f078b5cce45815a7f90fbc163a3778205f8c9601b0e212244ea8556 +SIZE (libmwaw-0.3.2.tar.xz) = 940368 Modified: head/textproc/libmwaw03/pkg-plist ============================================================================== --- head/textproc/libmwaw/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libmwaw03/pkg-plist Tue Oct 7 10:03:15 2014 (r370285) @@ -1,15 +1,13 @@ bin/mwaw2csv bin/mwaw2html bin/mwaw2raw +bin/mwaw2svg bin/mwaw2text bin/mwawFile bin/mwawZip -include/libmwaw-0.2/libmwaw/MWAWDocument.hxx -include/libmwaw-0.2/libmwaw/libmwaw.hxx -lib/libmwaw-0.2.la -lib/libmwaw-0.2.so -lib/libmwaw-0.2.so.2 -lib/libmwaw-0.2.so.2.0.0 -libdata/pkgconfig/libmwaw-0.2.pc -@dirrm include/libmwaw-0.2/libmwaw -@dirrm include/libmwaw-0.2 +include/libmwaw-0.3/libmwaw/MWAWDocument.hxx +include/libmwaw-0.3/libmwaw/libmwaw.hxx +lib/libmwaw-0.3.so +lib/libmwaw-0.3.so.3 +lib/libmwaw-0.3.so.3.0.2 +libdata/pkgconfig/libmwaw-0.3.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:06:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 707B950E; Tue, 7 Oct 2014 10:06:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D0B8784; Tue, 7 Oct 2014 10:06:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97A6Nst086437; Tue, 7 Oct 2014 10:06:23 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97A6MiE086435; Tue, 7 Oct 2014 10:06:22 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071006.s97A6MiE086435@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 10:06:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370286 - head/math/mpir X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:06:23 -0000 Author: gahr Date: Tue Oct 7 10:06:22 2014 New Revision: 370286 URL: https://svnweb.freebsd.org/changeset/ports/370286 QAT: https://qat.redports.org/buildarchive/r370286/ Log: - Update to 2.7.0-alpha12 Announcement: https://groups.google.com/forum/#!topic/mpir-devel/9a9MWwp2sFA Modified: head/math/mpir/Makefile head/math/mpir/distinfo Modified: head/math/mpir/Makefile ============================================================================== --- head/math/mpir/Makefile Tue Oct 7 10:03:15 2014 (r370285) +++ head/math/mpir/Makefile Tue Oct 7 10:06:22 2014 (r370286) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpir -DISTVERSION= 2.7.0-alpha11 +DISTVERSION= 2.7.0-alpha12 CATEGORIES= math MASTER_SITES= http://www.mpir.org/ Modified: head/math/mpir/distinfo ============================================================================== --- head/math/mpir/distinfo Tue Oct 7 10:03:15 2014 (r370285) +++ head/math/mpir/distinfo Tue Oct 7 10:06:22 2014 (r370286) @@ -1,2 +1,2 @@ -SHA256 (mpir-2.7.0-alpha11.tar.bz2) = 46bff47981480b8053558f6853be98e7105409db639f12e83abfa104c080a1d1 -SIZE (mpir-2.7.0-alpha11.tar.bz2) = 3621040 +SHA256 (mpir-2.7.0-alpha12.tar.bz2) = 444a90dbbe2d8f7cccb8c2cc9ebd192c1dcf2563686da671977f73662ef2095d +SIZE (mpir-2.7.0-alpha12.tar.bz2) = 3620866 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:11:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDE7763B; Tue, 7 Oct 2014 10:11:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA2A0836; Tue, 7 Oct 2014 10:11:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97ABW34090796; Tue, 7 Oct 2014 10:11:32 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97ABWTu090794; Tue, 7 Oct 2014 10:11:32 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071011.s97ABWTu090794@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 10:11:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370287 - head/graphics/libetonyek X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:11:32 -0000 Author: bapt Date: Tue Oct 7 10:11:31 2014 New Revision: 370287 URL: https://svnweb.freebsd.org/changeset/ports/370287 QAT: https://qat.redports.org/buildarchive/r370287/ Log: Really ensure it does not conflicts with libetonyek01 Modified: head/graphics/libetonyek/Makefile head/graphics/libetonyek/pkg-plist Modified: head/graphics/libetonyek/Makefile ============================================================================== --- head/graphics/libetonyek/Makefile Tue Oct 7 10:06:22 2014 (r370286) +++ head/graphics/libetonyek/Makefile Tue Oct 7 10:11:31 2014 (r370287) @@ -36,7 +36,7 @@ post-build: @cd ${WRKSRC}/src/test && ${MAKE_CMD} check .endif -port-stage: +post-stage: @${RM} -f ${STAGEDIR}${PREFIX}/bin/key* .include Modified: head/graphics/libetonyek/pkg-plist ============================================================================== --- head/graphics/libetonyek/pkg-plist Tue Oct 7 10:06:22 2014 (r370286) +++ head/graphics/libetonyek/pkg-plist Tue Oct 7 10:11:31 2014 (r370287) @@ -1,6 +1,3 @@ -bin/key2raw -bin/key2text -bin/key2xhtml include/libetonyek-0.0/libetonyek/KEYDocument.h include/libetonyek-0.0/libetonyek/KEYPresentationInterface.h include/libetonyek-0.0/libetonyek/KEYStringVector.h @@ -10,5 +7,3 @@ lib/libetonyek-0.0.so lib/libetonyek-0.0.so.0 lib/libetonyek-0.0.so.0.0.4 libdata/pkgconfig/libetonyek-0.0.pc -@dirrm include/libetonyek-0.0/libetonyek -@dirrm include/libetonyek-0.0 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:11:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0960571E; Tue, 7 Oct 2014 10:11:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E4E0983B; Tue, 7 Oct 2014 10:11:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97ABwwW091017; Tue, 7 Oct 2014 10:11:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97ABvRC091010; Tue, 7 Oct 2014 10:11:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071011.s97ABvRC091010@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 10:11:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370288 - in head/www/qupzilla: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:11:59 -0000 Author: amdmi3 Date: Tue Oct 7 10:11:57 2014 New Revision: 370288 URL: https://svnweb.freebsd.org/changeset/ports/370288 QAT: https://qat.redports.org/buildarchive/r370288/ Log: - Update to 1.8.0 - Make dbus support optional - Remove @dirrmtry's from plist PR: 193979 Submitted by: amdmi3 Approved by: javad.kouhi@gmail.com (maintainer) Deleted: head/www/qupzilla/files/patch-src__main__main.pro Modified: head/www/qupzilla/Makefile head/www/qupzilla/distinfo head/www/qupzilla/files/patch-src__lib__3rdparty__processinfo.h head/www/qupzilla/pkg-plist Modified: head/www/qupzilla/Makefile ============================================================================== --- head/www/qupzilla/Makefile Tue Oct 7 10:11:31 2014 (r370287) +++ head/www/qupzilla/Makefile Tue Oct 7 10:11:57 2014 (r370288) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= qupzilla -PORTVERSION= 1.6.6 -PORTREVISION= 1 +PORTVERSION= 1.8.0 CATEGORIES= www MASTER_SITES= https://github.com/QupZilla/${PORTNAME}/releases/download/v${PORTVERSION}/ DISTNAME= QupZilla-${PORTVERSION} @@ -16,13 +15,14 @@ LIB_DEPENDS= libhunspell-1.3.so:${PORTSD libexecinfo.so:${PORTSDIR}/devel/libexecinfo USES= desktop-file-utils pkgconfig qmake tar:xz -USE_QT4= gui moc_build rcc_build uic_build webkit \ - dbus xml script sql network imageformats_run linguist_build +USE_QT4= corelib gui moc_build rcc_build uic_build webkit \ + xml script sql network imageformats_run linguist_build QMAKE_ENV= QUPZILLA_PREFIX=${PREFIX}/ USE_LDCONFIG= yes INSTALLS_ICONS= yes -OPTIONS_DEFINE= GNOMEKEYRING KWALLET +OPTIONS_DEFINE= DBUS GNOMEKEYRING KWALLET +OPTIONS_DEFAULT=DBUS OPTIONS_SUB= yes .include @@ -37,6 +37,12 @@ LIB_DEPENDS+= libkdeui.so:${PORTSDIR}/x1 QMAKE_ENV+= KDE_INTEGRATION="true" .endif +.if ${PORT_OPTIONS:MDBUS} +USE_QT4+= dbus +.else +QMAKE_ENV+= DISABLE_DBUS="true" +.endif + post-patch: @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ ${WRKSRC}/tests/autotests/qztoolstest.cpp \ Modified: head/www/qupzilla/distinfo ============================================================================== --- head/www/qupzilla/distinfo Tue Oct 7 10:11:31 2014 (r370287) +++ head/www/qupzilla/distinfo Tue Oct 7 10:11:57 2014 (r370288) @@ -1,2 +1,2 @@ -SHA256 (QupZilla-1.6.6.tar.xz) = 82597a18fff789ddb92bdf21fb46a1f85c0003813f89c7462269c6aa11ef0fc9 -SIZE (QupZilla-1.6.6.tar.xz) = 3162916 +SHA256 (QupZilla-1.8.0.tar.xz) = c4089d14254e87b58a5f2bfb0e393cd6bae0b2bd508da19a92c12989b7e90908 +SIZE (QupZilla-1.8.0.tar.xz) = 3092300 Modified: head/www/qupzilla/files/patch-src__lib__3rdparty__processinfo.h ============================================================================== --- head/www/qupzilla/files/patch-src__lib__3rdparty__processinfo.h Tue Oct 7 10:11:31 2014 (r370287) +++ head/www/qupzilla/files/patch-src__lib__3rdparty__processinfo.h Tue Oct 7 10:11:57 2014 (r370288) @@ -1,11 +1,11 @@ ---- ./src/lib/3rdparty/processinfo.h.orig 2014-01-26 19:04:16.000000000 +0330 -+++ ./src/lib/3rdparty/processinfo.h 2014-01-26 19:04:33.000000000 +0330 +--- src/lib/3rdparty/processinfo.h.orig 2014-09-26 12:35:35.000000000 +0400 ++++ src/lib/3rdparty/processinfo.h 2014-09-26 23:04:10.000000000 +0400 @@ -18,6 +18,8 @@ #ifndef PROCESSINFO_H #define PROCESSINFO_H -+#include ++#include + - #include - - #include "qz_namespace.h" + #if defined(Q_OS_UNIX) && !defined(Q_OS_MAC) + #include + #endif Modified: head/www/qupzilla/pkg-plist ============================================================================== --- head/www/qupzilla/pkg-plist Tue Oct 7 10:11:31 2014 (r370287) +++ head/www/qupzilla/pkg-plist Tue Oct 7 10:11:57 2014 (r370288) @@ -1,8 +1,8 @@ bin/qupzilla lib/libQupZilla.so lib/libQupZilla.so.1 -lib/libQupZilla.so.1.6 -lib/libQupZilla.so.1.6.6 +lib/libQupZilla.so.1.8 +lib/libQupZilla.so.1.8.0 lib/qupzilla/libAccessKeysNavigation.so lib/qupzilla/libAutoScroll.so %%GNOMEKEYRING%%lib/qupzilla/libGnomeKeyringPasswords.so @@ -11,6 +11,7 @@ lib/qupzilla/libGreaseMonkey.so lib/qupzilla/libMouseGestures.so lib/qupzilla/libPIM.so lib/qupzilla/libStatusBarIcons.so +share/appdata/qupzilla.appdata.xml share/applications/qupzilla.desktop share/bash-completion/completions/qupzilla share/icons/hicolor/128x128/apps/qupzilla.png @@ -31,9 +32,11 @@ share/pixmaps/qupzilla.png %%DATADIR%%/locale/es_VE.qm %%DATADIR%%/locale/eu_ES.qm %%DATADIR%%/locale/fa_IR.qm +%%DATADIR%%/locale/fi_FI.qm %%DATADIR%%/locale/fr_FR.qm %%DATADIR%%/locale/gl_ES.qm %%DATADIR%%/locale/he_IL.qm +%%DATADIR%%/locale/hr_HR.qm %%DATADIR%%/locale/hu_HU.qm %%DATADIR%%/locale/id_ID.qm %%DATADIR%%/locale/it_IT.qm @@ -46,48 +49,67 @@ share/pixmaps/qupzilla.png %%DATADIR%%/locale/pl_PL.qm %%DATADIR%%/locale/pt_BR.qm %%DATADIR%%/locale/pt_PT.qm -%%DATADIR%%/locale/qt_ar.qm %%DATADIR%%/locale/qt_ca.qm -%%DATADIR%%/locale/qt_cs.qm -%%DATADIR%%/locale/qt_da.qm -%%DATADIR%%/locale/qt_de.qm %%DATADIR%%/locale/qt_el.qm -%%DATADIR%%/locale/qt_es.qm -%%DATADIR%%/locale/qt_eu.qm -%%DATADIR%%/locale/qt_fa.qm -%%DATADIR%%/locale/qt_fr.qm -%%DATADIR%%/locale/qt_gl.qm -%%DATADIR%%/locale/qt_he.qm -%%DATADIR%%/locale/qt_hu.qm -%%DATADIR%%/locale/qt_it.qm -%%DATADIR%%/locale/qt_ja.qm %%DATADIR%%/locale/qt_nl.qm -%%DATADIR%%/locale/qt_pl.qm -%%DATADIR%%/locale/qt_pt.qm -%%DATADIR%%/locale/qt_ru.qm -%%DATADIR%%/locale/qt_sk.qm -%%DATADIR%%/locale/qt_sr_BA.qm -%%DATADIR%%/locale/qt_sr_BA@latin.qm -%%DATADIR%%/locale/qt_sr_RS.qm -%%DATADIR%%/locale/qt_sr_RS@latin.qm -%%DATADIR%%/locale/qt_sv.qm -%%DATADIR%%/locale/qt_uk.qm -%%DATADIR%%/locale/qt_zh_CN.qm -%%DATADIR%%/locale/qt_zh_TW.qm +%%DATADIR%%/locale/qt_sr.qm +%%DATADIR%%/locale/qt_sr@ijekavian.qm +%%DATADIR%%/locale/qt_sr@ijekavianlatin.qm +%%DATADIR%%/locale/qt_sr@latin.qm %%DATADIR%%/locale/ro_RO.qm %%DATADIR%%/locale/ru_RU.qm %%DATADIR%%/locale/sk_SK.qm -%%DATADIR%%/locale/sr_BA.qm -%%DATADIR%%/locale/sr_BA@latin.qm -%%DATADIR%%/locale/sr_RS.qm -%%DATADIR%%/locale/sr_RS@latin.qm +%%DATADIR%%/locale/sr.qm +%%DATADIR%%/locale/sr@ijekavian.qm +%%DATADIR%%/locale/sr@ijekavianlatin.qm +%%DATADIR%%/locale/sr@latin.qm %%DATADIR%%/locale/sv_SE.qm +%%DATADIR%%/locale/tr_TR.qm %%DATADIR%%/locale/uk_UA.qm %%DATADIR%%/locale/uz@Latn.qm %%DATADIR%%/locale/zh_CN.qm %%DATADIR%%/locale/zh_TW.qm -%%DATADIR%%/themes/chrome/images/blankbutton-a.png -%%DATADIR%%/themes/chrome/images/blankbutton-h.png +%%DATADIR%%/themes/breathe/images/add.png +%%DATADIR%%/themes/breathe/images/find.png +%%DATADIR%%/themes/breathe/images/flash.png +%%DATADIR%%/themes/breathe/images/flashstart.png +%%DATADIR%%/themes/breathe/images/goto.png +%%DATADIR%%/themes/breathe/images/home.png +%%DATADIR%%/themes/breathe/images/library-bg-left.png +%%DATADIR%%/themes/breathe/images/library-bg-top-right.png +%%DATADIR%%/themes/breathe/images/library-bg-top.png +%%DATADIR%%/themes/breathe/images/library-search-bg.png +%%DATADIR%%/themes/breathe/images/lineedit-bg.png +%%DATADIR%%/themes/breathe/images/login.png +%%DATADIR%%/themes/breathe/images/menu.png +%%DATADIR%%/themes/breathe/images/navigation-dropdown.png +%%DATADIR%%/themes/breathe/images/next.png +%%DATADIR%%/themes/breathe/images/previous.png +%%DATADIR%%/themes/breathe/images/reload.png +%%DATADIR%%/themes/breathe/images/restore.png +%%DATADIR%%/themes/breathe/images/rss.png +%%DATADIR%%/themes/breathe/images/semi-transp.png +%%DATADIR%%/themes/breathe/images/siteicon-bg-a.png +%%DATADIR%%/themes/breathe/images/siteicon-bg-h.png +%%DATADIR%%/themes/breathe/images/siteicon-bg.png +%%DATADIR%%/themes/breathe/images/siteicon-secure-bg-a.png +%%DATADIR%%/themes/breathe/images/siteicon-secure-bg-h.png +%%DATADIR%%/themes/breathe/images/siteicon-secure-bg.png +%%DATADIR%%/themes/breathe/images/star-a.png +%%DATADIR%%/themes/breathe/images/star.png +%%DATADIR%%/themes/breathe/images/stop.png +%%DATADIR%%/themes/breathe/images/tab-left.png +%%DATADIR%%/themes/breathe/images/tab-right.png +%%DATADIR%%/themes/breathe/images/tabs-list.png +%%DATADIR%%/themes/breathe/images/transp.png +%%DATADIR%%/themes/breathe/images/trash.png +%%DATADIR%%/themes/breathe/images/websearch-bg-a.png +%%DATADIR%%/themes/breathe/images/websearch-bg-h.png +%%DATADIR%%/themes/breathe/images/websearch-bg.png +%%DATADIR%%/themes/breathe/main.css +%%DATADIR%%/themes/breathe/rtl.css +%%DATADIR%%/themes/breathe/theme.info +%%DATADIR%%/themes/breathe/theme.png %%DATADIR%%/themes/chrome/images/flash.png %%DATADIR%%/themes/chrome/images/flashstart.png %%DATADIR%%/themes/chrome/images/gotoaddress.png @@ -119,7 +141,9 @@ share/pixmaps/qupzilla.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png -%%DATADIR%%/themes/chrome/images/transp.png +%%DATADIR%%/themes/chrome/images/toolbutton-a.png +%%DATADIR%%/themes/chrome/images/toolbutton-h.png +%%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/rtl.css @@ -155,27 +179,21 @@ share/pixmaps/qupzilla.png %%DATADIR%%/themes/default/images/tab-right-arrow.png %%DATADIR%%/themes/default/images/tabs-list-button.png %%DATADIR%%/themes/default/images/transp.png +%%DATADIR%%/themes/default/images/websearchbar-bg.png %%DATADIR%%/themes/default/main.css %%DATADIR%%/themes/default/rtl.css %%DATADIR%%/themes/default/theme.info %%DATADIR%%/themes/default/theme.png %%DATADIR%%/themes/default/windows.css -%%DATADIR%%/themes/linux/images/edit-find.png %%DATADIR%%/themes/linux/images/flash.png %%DATADIR%%/themes/linux/images/flashstart.png -%%DATADIR%%/themes/linux/images/go-home.png -%%DATADIR%%/themes/linux/images/go-next.png -%%DATADIR%%/themes/linux/images/go-previous.png -%%DATADIR%%/themes/linux/images/gotoaddress.png %%DATADIR%%/themes/linux/images/key.png %%DATADIR%%/themes/linux/images/library-bg-left.png %%DATADIR%%/themes/linux/images/library-bg-top-right.png %%DATADIR%%/themes/linux/images/library-bg-top.png %%DATADIR%%/themes/linux/images/library-search-bg.png -%%DATADIR%%/themes/linux/images/list-add.png +%%DATADIR%%/themes/linux/images/menu.png %%DATADIR%%/themes/linux/images/navigation-dropdown.png -%%DATADIR%%/themes/linux/images/preferences-desktop.png -%%DATADIR%%/themes/linux/images/process-stop.png %%DATADIR%%/themes/linux/images/rss.png %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.png @@ -184,7 +202,6 @@ share/pixmaps/qupzilla.png %%DATADIR%%/themes/linux/images/tab-right-arrow.png %%DATADIR%%/themes/linux/images/tabs-list-button.png %%DATADIR%%/themes/linux/images/transp.png -%%DATADIR%%/themes/linux/images/view-refresh.png %%DATADIR%%/themes/linux/images/websearch-bg.png %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/rtl.css @@ -224,6 +241,7 @@ share/pixmaps/qupzilla.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/transp.png +%%DATADIR%%/themes/mac/images/user-trash-full.png %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/rtl.css @@ -268,6 +286,7 @@ share/pixmaps/qupzilla.png %%DATADIR%%/themes/windows/images/tabs-list-button.png %%DATADIR%%/themes/windows/images/toolbar-bg.png %%DATADIR%%/themes/windows/images/transp.png +%%DATADIR%%/themes/windows/images/user-trash-full.png %%DATADIR%%/themes/windows/linux.css %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/rtl.css @@ -275,33 +294,3 @@ share/pixmaps/qupzilla.png %%DATADIR%%/themes/windows/theme.license %%DATADIR%%/themes/windows/theme.png %%DATADIR%%/themes/windows/windows.css -@dirrmtry %%DATADIR%%/themes/windows/images -@dirrmtry %%DATADIR%%/themes/windows -@dirrmtry %%DATADIR%%/themes/mac/images -@dirrmtry %%DATADIR%%/themes/mac -@dirrmtry %%DATADIR%%/themes/linux/images -@dirrmtry %%DATADIR%%/themes/linux -@dirrmtry %%DATADIR%%/themes/default/images -@dirrmtry %%DATADIR%%/themes/default -@dirrmtry %%DATADIR%%/themes/chrome/images -@dirrmtry %%DATADIR%%/themes/chrome -@dirrmtry %%DATADIR%%/themes -@dirrmtry %%DATADIR%%/locale -@dirrmtry %%DATADIR%% -@dirrmtry share/icons/hicolor/64x64/apps -@dirrmtry share/icons/hicolor/64x64 -@dirrmtry share/icons/hicolor/48x48/apps -@dirrmtry share/icons/hicolor/48x48 -@dirrmtry share/icons/hicolor/32x32/apps -@dirrmtry share/icons/hicolor/32x32 -@dirrmtry share/icons/hicolor/256x256/apps -@dirrmtry share/icons/hicolor/256x256 -@dirrmtry share/icons/hicolor/16x16/apps -@dirrmtry share/icons/hicolor/16x16 -@dirrmtry share/icons/hicolor/128x128/apps -@dirrmtry share/icons/hicolor/128x128 -@dirrmtry share/icons/hicolor -@dirrmtry share/icons -@dirrmtry share/bash-completion/completions -@dirrmtry share/bash-completion -@dirrmtry lib/qupzilla From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:15:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 238FC898; Tue, 7 Oct 2014 10:15:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1004A860; Tue, 7 Oct 2014 10:15:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97AFA5I091654; Tue, 7 Oct 2014 10:15:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97AFAZD091652; Tue, 7 Oct 2014 10:15:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071015.s97AFAZD091652@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 10:15:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370289 - head/textproc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:15:11 -0000 Author: bapt Date: Tue Oct 7 10:15:10 2014 New Revision: 370289 URL: https://svnweb.freebsd.org/changeset/ports/370289 QAT: https://qat.redports.org/buildarchive/r370289/ Log: Import libodfgen01 Allow libodfgen to use c++11 shared pointed instead of boost Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Oct 7 10:11:57 2014 (r370288) +++ head/textproc/Makefile Tue Oct 7 10:15:10 2014 (r370289) @@ -366,6 +366,7 @@ SUBDIR += libmwaw03 SUBDIR += libnxml SUBDIR += libodfgen + SUBDIR += libodfgen01 SUBDIR += libparsifal SUBDIR += librevenge SUBDIR += libroxml From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:17:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F1BD9D4; Tue, 7 Oct 2014 10:17:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B22587F; Tue, 7 Oct 2014 10:17:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97AHZTZ092134; Tue, 7 Oct 2014 10:17:35 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97AHYqa092128; Tue, 7 Oct 2014 10:17:34 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071017.s97AHYqa092128@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 10:17:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370290 - in head/textproc: libodfgen libodfgen01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:17:36 -0000 Author: bapt Date: Tue Oct 7 10:17:34 2014 New Revision: 370290 URL: https://svnweb.freebsd.org/changeset/ports/370290 QAT: https://qat.redports.org/buildarchive/r370290/ Log: Import libodfgen01 Allow libodfgen to use c++11 shared pointed instead of boost Added: head/textproc/libodfgen01/ - copied from r370181, head/textproc/libodfgen/ Modified: head/textproc/libodfgen/Makefile head/textproc/libodfgen/pkg-plist head/textproc/libodfgen01/Makefile head/textproc/libodfgen01/distinfo head/textproc/libodfgen01/pkg-plist Modified: head/textproc/libodfgen/Makefile ============================================================================== --- head/textproc/libodfgen/Makefile Tue Oct 7 10:15:10 2014 (r370289) +++ head/textproc/libodfgen/Makefile Tue Oct 7 10:17:34 2014 (r370290) @@ -2,7 +2,7 @@ PORTNAME= libodfgen PORTVERSION= 0.0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= textproc MASTER_SITES= SF/libwpd/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -12,22 +12,25 @@ COMMENT= Library for generating document LICENSE= LGPL21 MPL LICENSE_COMB= dual -BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= libetonyek-0.0.so:${PORTSDIR}/graphics/libetonyek \ libwpg-0.2.so:${PORTSDIR}/graphics/libwpg \ libwpd-0.9.so:${PORTSDIR}/textproc/libwpd -OPTIONS_DEFINE= DOCS - -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= libtool:keepla pathfix pkgconfig tar:xz +USES= compiler:features libtool:keepla pathfix pkgconfig tar:xz USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +.include -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs +.if ${COMPILER_FEATURES:Mlibc++} +CONFIGURE_ARGS+= --with-sharedptr=c++11 +.else +BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs +CONFIGURE_ARGS+= --with-sharedptr=boost +.endif -.include +.include Modified: head/textproc/libodfgen/pkg-plist ============================================================================== --- head/textproc/libodfgen/pkg-plist Tue Oct 7 10:15:10 2014 (r370289) +++ head/textproc/libodfgen/pkg-plist Tue Oct 7 10:17:34 2014 (r370290) @@ -8,5 +8,3 @@ lib/libodfgen-0.0.so lib/libodfgen-0.0.so.0 lib/libodfgen-0.0.so.0.0.4 libdata/pkgconfig/libodfgen-0.0.pc -@dirrm include/libodfgen-0.0/libodfgen -@dirrm include/libodfgen-0.0 Modified: head/textproc/libodfgen01/Makefile ============================================================================== --- head/textproc/libodfgen/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libodfgen01/Makefile Tue Oct 7 10:17:34 2014 (r370290) @@ -1,10 +1,10 @@ # $FreeBSD$ PORTNAME= libodfgen -PORTVERSION= 0.0.4 -PORTREVISION= 2 +PORTVERSION= 0.1.1 CATEGORIES= textproc MASTER_SITES= SF/libwpd/${PORTNAME}/${PORTNAME}-${PORTVERSION} +PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org COMMENT= Library for generating documents in Open Document Format (ODF) @@ -12,22 +12,24 @@ COMMENT= Library for generating document LICENSE= LGPL21 MPL LICENSE_COMB= dual -BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs -LIB_DEPENDS= libetonyek-0.0.so:${PORTSDIR}/graphics/libetonyek \ - libwpg-0.2.so:${PORTSDIR}/graphics/libwpg \ - libwpd-0.9.so:${PORTSDIR}/textproc/libwpd +LIB_DEPENDS= libetonyek-0.1.so:${PORTSDIR}/graphics/libetonyek01 \ + librevenge-0.0.so:${PORTSDIR}/textproc/librevenge -OPTIONS_DEFINE= DOCS - -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= libtool:keepla pathfix pkgconfig tar:xz +USES= compiler:features gperf libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +.include -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs +.if ${COMPILER_FEATURES:Mlibc++} +CONFIGURE_ARGS+= --with-sharedptr=c++11 +.else +BUILD_DEPENDS+= ${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs +CONFIGURE_ARGS+= --with-sharedptr=boost +.endif -.include +.include Modified: head/textproc/libodfgen01/distinfo ============================================================================== --- head/textproc/libodfgen/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libodfgen01/distinfo Tue Oct 7 10:17:34 2014 (r370290) @@ -1,2 +1,2 @@ -SHA256 (libodfgen-0.0.4.tar.xz) = 8f7a46f05417afbe957d0c3f88e375631b8651ea99bb2c231595408bc4224099 -SIZE (libodfgen-0.0.4.tar.xz) = 296224 +SHA256 (libodfgen-0.1.1.tar.xz) = 9521e2c9aa13d84799ce476e97a6549eb9de4acd190cad357d87a540452d63dc +SIZE (libodfgen-0.1.1.tar.xz) = 325872 Modified: head/textproc/libodfgen01/pkg-plist ============================================================================== --- head/textproc/libodfgen/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/textproc/libodfgen01/pkg-plist Tue Oct 7 10:17:34 2014 (r370290) @@ -1,12 +1,11 @@ -include/libodfgen-0.0/libodfgen/OdfDocumentHandler.hxx -include/libodfgen-0.0/libodfgen/OdgGenerator.hxx -include/libodfgen-0.0/libodfgen/OdpGenerator.hxx -include/libodfgen-0.0/libodfgen/OdtGenerator.hxx -include/libodfgen-0.0/libodfgen/libodfgen.hxx -lib/libodfgen-0.0.la -lib/libodfgen-0.0.so -lib/libodfgen-0.0.so.0 -lib/libodfgen-0.0.so.0.0.4 -libdata/pkgconfig/libodfgen-0.0.pc -@dirrm include/libodfgen-0.0/libodfgen -@dirrm include/libodfgen-0.0 +include/libodfgen-0.1/libodfgen/OdfDocumentHandler.hxx +include/libodfgen-0.1/libodfgen/OdgGenerator.hxx +include/libodfgen-0.1/libodfgen/OdpGenerator.hxx +include/libodfgen-0.1/libodfgen/OdtGenerator.hxx +include/libodfgen-0.1/libodfgen/libodfgen.hxx +include/libodfgen-0.1/libodfgen/OdsGenerator.hxx +include/libodfgen-0.1/libodfgen/libodfgen-api.hxx +lib/libodfgen-0.1.so +lib/libodfgen-0.1.so.1 +lib/libodfgen-0.1.so.1.0.1 +libdata/pkgconfig/libodfgen-0.1.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:25:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0884FB73; Tue, 7 Oct 2014 10:25:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E926A95A; Tue, 7 Oct 2014 10:25:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97APLWW096673; Tue, 7 Oct 2014 10:25:21 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97APL1m096672; Tue, 7 Oct 2014 10:25:21 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201410071025.s97APL1m096672@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 7 Oct 2014 10:25:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370291 - head/dns/bind99 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:25:22 -0000 Author: mat Date: Tue Oct 7 10:25:21 2014 New Revision: 370291 URL: https://svnweb.freebsd.org/changeset/ports/370291 QAT: https://qat.redports.org/buildarchive/r370291/ Log: Note REPLACE_BASE will get removed. Sponsored by: Absolight Modified: head/dns/bind99/Makefile Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Tue Oct 7 10:17:34 2014 (r370290) +++ head/dns/bind99/Makefile Tue Oct 7 10:25:21 2014 (r370291) @@ -152,6 +152,10 @@ CONFIGURE_ARGS+= --disable-threads .if ${PORT_OPTIONS:MREPLACE_BASE} .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000100 IGNORE= REPLACE_BASE option is not supported on this release +.else # >= 10.0 +# Move to BROKEN after expiration. +DEPRECATED= REPLACE_BASE option will be removed. There is no real need for foot-shooting. +EXPIRATION_DATE= 2015-01-01 .endif # >= 10.0 PKGNAMESUFFIX= -base PREFIX= /usr From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:25:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 758DBC56; Tue, 7 Oct 2014 10:25:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57C96960; Tue, 7 Oct 2014 10:25:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97APijb096868; Tue, 7 Oct 2014 10:25:44 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97APhDd096861; Tue, 7 Oct 2014 10:25:43 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410071025.s97APhDd096861@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Tue, 7 Oct 2014 10:25:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370292 - in head/devel/gdb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:25:44 -0000 Author: tijl Date: Tue Oct 7 10:25:42 2014 New Revision: 370292 URL: https://svnweb.freebsd.org/changeset/ports/370292 QAT: https://qat.redports.org/buildarchive/r370292/ Log: - Fix a buffer overflow when copying a string - Use sysctl KERN_PROC_SIGTRAMP to retrieve the signal trampoline location for the native amd64 ABI. This fixes unwinding over the signal frame after trampoline was moved to the shared page. (https://svnweb.freebsd.org/changeset/base/258663) - Remove some gcc specific warning flags PR: 194190 Submitted by: luca.pizzamiglio@gmail.com (maintainer) Modified: head/devel/gdb/Makefile head/devel/gdb/files/fbsd-threads.c head/devel/gdb/files/patch-gdb-amd64fbsd-nat.c head/devel/gdb/files/patch-gdb-configure Modified: head/devel/gdb/Makefile ============================================================================== --- head/devel/gdb/Makefile Tue Oct 7 10:25:21 2014 (r370291) +++ head/devel/gdb/Makefile Tue Oct 7 10:25:42 2014 (r370292) @@ -3,7 +3,7 @@ PORTNAME= gdb PORTVERSION= 7.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= GNU Modified: head/devel/gdb/files/fbsd-threads.c ============================================================================== --- head/devel/gdb/files/fbsd-threads.c Tue Oct 7 10:25:21 2014 (r370291) +++ head/devel/gdb/files/fbsd-threads.c Tue Oct 7 10:25:42 2014 (r370292) @@ -1188,9 +1188,9 @@ fbsd_find_lwp_name(long lwpid, struct pr } } - len = strlen(kipp->ki_ocomm); + len = strlen(kipp->ki_ocomm) + 1; lwpstr = xmalloc(len); - strcpy(lwpstr, kipp->ki_ocomm); + strncpy(lwpstr, kipp->ki_ocomm, len); info->lwp_name = lwpstr; break; } Modified: head/devel/gdb/files/patch-gdb-amd64fbsd-nat.c ============================================================================== --- head/devel/gdb/files/patch-gdb-amd64fbsd-nat.c Tue Oct 7 10:25:21 2014 (r370291) +++ head/devel/gdb/files/patch-gdb-amd64fbsd-nat.c Tue Oct 7 10:25:42 2014 (r370292) @@ -1,6 +1,6 @@ ---- gdb/amd64fbsd-nat.c.orig 2012-02-09 17:06:44.000000000 +0100 -+++ gdb/amd64fbsd-nat.c 2012-08-30 10:58:55.000000000 +0200 -@@ -21,11 +21,13 @@ +--- gdb/amd64fbsd-nat.c.orig 2014-06-11 18:34:41.000000000 +0200 ++++ gdb/amd64fbsd-nat.c 2014-09-24 18:27:50.618458853 +0200 +@@ -21,13 +21,17 @@ #include "inferior.h" #include "regcache.h" #include "target.h" @@ -13,8 +13,12 @@ +#include #include #include ++#include ++#include #include -@@ -93,6 +95,46 @@ + + #include "fbsd-nat.h" +@@ -93,6 +97,46 @@ }; @@ -60,4 +64,41 @@ + /* Support for debugging kernel virtual memory images. */ - #include + #include +@@ -247,6 +291,10 @@ + + SC_RBP_OFFSET = offset; + ++// Newer versions of FreeBSD provide a better way to locate the signtramp ++#if ( __FreeBSD_version/100000 < 9 ) \ ++ || ( ( __FreeBSD_version/100000 == 9 ) && ( __FreeBSD_version < 902505 ) ) \ ++ || ( ( __FreeBSD_version/100000 == 10 ) && ( __FreeBSD_version < 1000700 ) ) + /* FreeBSD provides a kern.ps_strings sysctl that we can use to + locate the sigtramp. That way we can still recognize a sigtramp + if its location is changed in a new kernel. Of course this is +@@ -267,4 +315,25 @@ + amd64fbsd_sigtramp_end_addr = ps_strings; + } + } ++#else ++ /* FreeBSD provides a kern.proc.sigtramp sysctl that we can use to ++ locate the sigtramp. That way we can still recognize a sigtramp ++ if its location is changed in a new kernel. */ ++ { ++ int mib[4]; ++ struct kinfo_sigtramp kst; ++ size_t len; ++ ++ mib[0] = CTL_KERN; ++ mib[1] = KERN_PROC; ++ mib[2] = KERN_PROC_SIGTRAMP; ++ mib[3] = getpid(); ++ len = sizeof (kst); ++ if (sysctl (mib, sizeof(mib)/sizeof(mib[0]), &kst, &len, NULL, 0) == 0) ++ { ++ amd64fbsd_sigtramp_start_addr = kst.ksigtramp_start; ++ amd64fbsd_sigtramp_end_addr = kst.ksigtramp_end; ++ } ++ } ++#endif + } Modified: head/devel/gdb/files/patch-gdb-configure ============================================================================== --- head/devel/gdb/files/patch-gdb-configure Tue Oct 7 10:25:21 2014 (r370291) +++ head/devel/gdb/files/patch-gdb-configure Tue Oct 7 10:25:42 2014 (r370292) @@ -1,6 +1,6 @@ ---- gdb/configure.orig 2012-08-24 14:03:52.000000000 +0200 -+++ gdb/configure 2012-08-24 14:05:06.000000000 +0200 -@@ -10590,7 +10590,8 @@ +--- gdb/configure.orig 2014-07-29 14:37:42.000000000 +0200 ++++ gdb/configure 2014-10-01 14:21:14.902231511 +0200 +@@ -11485,7 +11485,8 @@ # See if supports the %fs and %gs i386 segment registers. # Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'. @@ -10,7 +10,7 @@ " if test "x$ac_cv_member_struct_reg_r_fs" = x""yes; then : -@@ -10600,7 +10601,8 @@ +@@ -11495,7 +11496,8 @@ fi @@ -20,3 +20,16 @@ " if test "x$ac_cv_member_struct_reg_r_gs" = x""yes; then : +@@ -13007,10 +13009,9 @@ + + build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \ + -Wpointer-sign \ +--Wno-unused -Wunused-value -Wunused-function \ ++-Wno-unused -Wunused-value \ + -Wno-switch -Wno-char-subscripts -Wmissing-prototypes \ +--Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \ +--Wold-style-declaration -Wold-style-definition" ++-Wdeclaration-after-statement -Wempty-body -Wold-style-definition" + + # Enable -Wno-format by default when using gcc on mingw since many + # GCC versions complain about %I64. From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 10:52:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1088D3; Tue, 7 Oct 2014 10:52:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C609BF5; Tue, 7 Oct 2014 10:52:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97AqBYW010828; Tue, 7 Oct 2014 10:52:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97AqAtu010821; Tue, 7 Oct 2014 10:52:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071052.s97AqAtu010821@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 10:52:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370293 - in head/emulators/hyperv-is: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 10:52:11 -0000 Author: bapt Date: Tue Oct 7 10:52:10 2014 New Revision: 370293 URL: https://svnweb.freebsd.org/changeset/ports/370293 QAT: https://qat.redports.org/buildarchive/r370293/ Log: Big cleanup directly specify the pkg-message used instead of trying to manually generate it avoid using @cwd Do not touch base and push everything in PREFIX This port needs way more love Added: head/emulators/hyperv-is/files/pkg-message.A - copied unchanged from r370275, head/emulators/hyperv-is/files/pkg-message.A.in head/emulators/hyperv-is/files/pkg-message.B - copied unchanged from r370275, head/emulators/hyperv-is/files/pkg-message.B.in Deleted: head/emulators/hyperv-is/files/pkg-message.A.in head/emulators/hyperv-is/files/pkg-message.B.in Modified: head/emulators/hyperv-is/Makefile head/emulators/hyperv-is/pkg-plist Modified: head/emulators/hyperv-is/Makefile ============================================================================== --- head/emulators/hyperv-is/Makefile Tue Oct 7 10:25:42 2014 (r370292) +++ head/emulators/hyperv-is/Makefile Tue Oct 7 10:52:10 2014 (r370293) @@ -2,6 +2,7 @@ PORTNAME= hyperv-is PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= emulators kld MASTER_SITES= https://github.com/${MSLINK}/ DISTNAME= ${DNAME} @@ -15,7 +16,8 @@ USES+= uidfix BIS= ${PORTVERSION} MSBASE= FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master MSLINK= ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports -SUB_FILES= ${PMSG} +MAKE_ARGS= BINDIR=${PREFIX}/sbin MANDIR=${PREFIX}/man/man +PKGMESSAGE= ${FILESDIR}/${PMSG} .include @@ -45,17 +47,18 @@ DNAME= ${FILE_${OSREL:S/.//}} IGNORE= OSREL ${OSREL} not supported .endif +post-patch: + @${REINPLACE_CMD} -e "s,/usr/sbin/,${PREFIX}/sbin/,g" \ + ${WRKSRC}/etc/rc.d/hv_kvpd + pre-install: @${MKDIR} ${STAGEDIR}/boot/kernel \ ${STAGEDIR}/etc/rc.d \ - ${STAGEDIR}/usr/share/man/man1 \ - ${STAGEDIR}/usr/share/man/man4 \ - ${STAGEDIR}/usr/share/man/man8 \ - ${STAGEDIR}/usr/local/hyperv/scripts \ - ${STAGEDIR}/usr/sbin - ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message + ${STAGEDIR}/usr/local/hyperv/scripts post-install: ${RM} ${STAGEDIR}/boot/kernel/linker.hints + ${MV} ${STAGEDIR}/etc/rc.d/* ${STAGEDIR}${PREFIX}/etc/rc.d + .include Copied: head/emulators/hyperv-is/files/pkg-message.A (from r370275, head/emulators/hyperv-is/files/pkg-message.A.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/files/pkg-message.A Tue Oct 7 10:52:10 2014 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message.A.in) @@ -0,0 +1,19 @@ +############################################################################# +After installing do the following steps: +# Deleting Hyper-v BIS driver names + sed -i "" '/Loader labels for Hyper-v BIS driver/d' /boot/loader.conf + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf + sed -i "" '/hv_utils_load/d' /boot/loader.conf + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf + + #Hyper-v driver names + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> /boot/loader.conf + echo 'hv_vmbus_load="YES"' >> /boot/loader.conf + echo 'hv_utils_load="YES"' >> /boot/loader.conf + echo 'hv_storvsc_load="YES"' >> /boot/loader.conf + echo 'hv_netvsc_load="YES"' >> /boot/loader.conf + echo 'hv_ata_pci_disengage_load="YES"' >>/boot/loader.conf +When deinstalled, restore /boot/loader.conf +############################################################################# Copied: head/emulators/hyperv-is/files/pkg-message.B (from r370275, head/emulators/hyperv-is/files/pkg-message.B.in) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/hyperv-is/files/pkg-message.B Tue Oct 7 10:52:10 2014 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message.B.in) @@ -0,0 +1,17 @@ +############################################################################# +To enable hv_kvp, you should do the steps following: + # Deleting kvp label + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf + sed -i "" '/hv_kvp_load/d' /etc/rc.conf + + #hyperv driver names + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> /boot/loader.conf + echo 'hv_kvp_load="YES"' >> /boot/loader.conf + +# KVP - daemon label + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf + echo 'hv_kvp_daemon_enable="YES"' >> /etc/rc.conf +After deinstall, you should restore /boot/loader.conf and /etc/rc.conf +############################################################################# Modified: head/emulators/hyperv-is/pkg-plist ============================================================================== --- head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:25:42 2014 (r370292) +++ head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:52:10 2014 (r370293) @@ -1,25 +1,19 @@ hyperv/scripts/hv_get_dhcp_info hyperv/scripts/hv_get_dns_info hyperv/scripts/hv_set_ifconfig -@cwd /boot/kernel -%%A%%hv_ata_pci_disengage.ko -%%A%%hv_netvsc.ko -%%A%%hv_storvsc.ko -%%A%%hv_utils.ko -%%A%%hv_vmbus.ko -%%B%%hv_kvp.ko -@cwd /etc/rc.d -hv_kvpd -%%A%%@cwd /usr/share/man/man1 -%%A%%hyperv-is.1.gz -%%B%%@cwd /usr/sbin -%%B%%hv_kvp_daemon -@cwd /usr/share/man/man4 -%%A%%hv_ata_pci_disengage.4.gz -hv_kvp.4.gz -%%A%%hv_netvsc.4.gz -%%A%%hv_storvsc.4.gz -%%A%%hv_utils.4.gz -%%A%%hv_vmbus.4.gz -%%B%%@cwd /usr/share/man/man8 -%%B%%hv_kvp_daemon.8.gz +%%A%%/boot/kernel/hv_ata_pci_disengage.ko +%%A%%/boot/kernel/hv_netvsc.ko +%%A%%/boot/kernel/hv_storvsc.ko +%%A%%/boot/kernel/hv_utils.ko +%%A%%/boot/kernel/hv_vmbus.ko +%%B%%/boot/kernel/hv_kvp.ko +etc/rc.d/hv_kvpd +%%A%%man/man1/hyperv-is.1.gz +%%B%%sbin/hv_kvp_daemon +%%A%%man/man4/hv_ata_pci_disengage.4.gz +man/man4/hv_kvp.4.gz +%%A%%man/man4/hv_netvsc.4.gz +%%A%%man/man4/hv_storvsc.4.gz +%%A%%man/man4/hv_utils.4.gz +%%A%%man/man4/hv_vmbus.4.gz +%%B%%man/man8/hv_kvp_daemon.8.gz From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:33:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4A4FFACD; Tue, 7 Oct 2014 11:33:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 367D874; Tue, 7 Oct 2014 11:33:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BXmUh030280; Tue, 7 Oct 2014 11:33:48 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BXlGH030276; Tue, 7 Oct 2014 11:33:47 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071133.s97BXlGH030276@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:33:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370295 - in head/net-im/jabber-pyicq: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:33:48 -0000 Author: wg Date: Tue Oct 7 11:33:46 2014 New Revision: 370295 URL: https://svnweb.freebsd.org/changeset/ports/370295 QAT: https://qat.redports.org/buildarchive/r370295/ Log: net-im/jabber-pyicq: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/net-im/jabber-pyicq/files/patch-src__contact.py (contents, props changed) head/net-im/jabber-pyicq/files/patch-src__imgmanip.py (contents, props changed) head/net-im/jabber-pyicq/files/patch-tools__infodump.py (contents, props changed) Modified: head/net-im/jabber-pyicq/Makefile Modified: head/net-im/jabber-pyicq/Makefile ============================================================================== --- head/net-im/jabber-pyicq/Makefile Tue Oct 7 11:23:29 2014 (r370294) +++ head/net-im/jabber-pyicq/Makefile Tue Oct 7 11:33:46 2014 (r370295) @@ -2,7 +2,7 @@ PORTNAME= pyicq PORTVERSION= 0.8.1.5 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} @@ -17,7 +17,7 @@ COMMENT= Python ICQ-Transport for Jabber LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/OpenSSL/__init__.py:${PORTSDIR}/security/py-openssl \ - ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow PROJECTHOST= pyicqt OPTIONS_DEFINE= DOCS EXAMPLES MYSQL TWISTED @@ -31,7 +31,7 @@ DAEMON_DESC= Use builtin daemon TWISTED_DESC= Use py-twisted NO_BUILD= yes -USE_PYTHON= yes +USES= python USE_RC_SUBR= jabber-pyicq-transport LOCAL_PYTHON= ${PYTHON_CMD} Added: head/net-im/jabber-pyicq/files/patch-src__contact.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/jabber-pyicq/files/patch-src__contact.py Tue Oct 7 11:33:46 2014 (r370295) @@ -0,0 +1,11 @@ +--- src/contact.py.orig 2014-10-06 16:48:44 UTC ++++ src/contact.py +@@ -13,7 +13,7 @@ + import globals + import base64 + if not config.disableAvatars: +- import Image ++ from PIL import Image + import StringIO + + Added: head/net-im/jabber-pyicq/files/patch-src__imgmanip.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/jabber-pyicq/files/patch-src__imgmanip.py Tue Oct 7 11:33:46 2014 (r370295) @@ -0,0 +1,11 @@ +--- src/imgmanip.py.orig 2014-10-06 16:49:20 UTC ++++ src/imgmanip.py +@@ -5,7 +5,7 @@ + + if not config.disableAvatars: + try: +- import Image ++ from PIL import Image + import StringIO + + def convertToPNG(imageData): Added: head/net-im/jabber-pyicq/files/patch-tools__infodump.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/jabber-pyicq/files/patch-tools__infodump.py Tue Oct 7 11:33:46 2014 (r370295) @@ -0,0 +1,11 @@ +--- tools/infodump.py.orig 2014-10-06 16:48:04 UTC ++++ tools/infodump.py +@@ -41,7 +41,7 @@ + print "Nevow Version: Unknown or Not Installed" + + try: +- from Image import VERSION ++ from PIL.Image import VERSION + print "Python Imaging Library (PIL) Version: " + VERSION + except: + print "Python Imaging Library (PIL) Version: Unknown or Not Installed" From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:34:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 51438BB2; Tue, 7 Oct 2014 11:34:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E0137D; Tue, 7 Oct 2014 11:34:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BYIAB030469; Tue, 7 Oct 2014 11:34:18 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BYHSB030467; Tue, 7 Oct 2014 11:34:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071134.s97BYHSB030467@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 11:34:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370296 - head/astro/josm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:34:18 -0000 Author: amdmi3 Date: Tue Oct 7 11:34:17 2014 New Revision: 370296 URL: https://svnweb.freebsd.org/changeset/ports/370296 QAT: https://qat.redports.org/buildarchive/r370296/ Log: - Update to 7588 Modified: head/astro/josm/Makefile head/astro/josm/distinfo Modified: head/astro/josm/Makefile ============================================================================== --- head/astro/josm/Makefile Tue Oct 7 11:33:46 2014 (r370295) +++ head/astro/josm/Makefile Tue Oct 7 11:34:17 2014 (r370296) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= josm -PORTVERSION= 7480 +PORTVERSION= 7588 CATEGORIES= astro java MASTER_SITES= http://josm.openstreetmap.de/download/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/astro/josm/distinfo ============================================================================== --- head/astro/josm/distinfo Tue Oct 7 11:33:46 2014 (r370295) +++ head/astro/josm/distinfo Tue Oct 7 11:34:17 2014 (r370296) @@ -1,2 +1,2 @@ -SHA256 (josm-snapshot-7480.jar) = ef0736c38ea1509424861ee1e0aa3de800701fc73acdda2794d36a4b70626eda -SIZE (josm-snapshot-7480.jar) = 9077382 +SHA256 (josm-snapshot-7588.jar) = 25902132dfe1422687a735a218b1eace2f0358b0757146bb6370968f68f213cb +SIZE (josm-snapshot-7588.jar) = 9101796 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:41:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67765D36; Tue, 7 Oct 2014 11:41:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53DAB16B; Tue, 7 Oct 2014 11:41:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Bfgo0033795; Tue, 7 Oct 2014 11:41:42 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BfguH033793; Tue, 7 Oct 2014 11:41:42 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071141.s97BfguH033793@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:41:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370297 - head/www/diamanda X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:41:42 -0000 Author: wg Date: Tue Oct 7 11:41:41 2014 New Revision: 370297 URL: https://svnweb.freebsd.org/changeset/ports/370297 QAT: https://qat.redports.org/buildarchive/r370297/ Log: www/diamanda: mark as broken, does not work with www/py-django anymore - Switch from py-imaging to py-pillow - Remove manual cat PKGMESSAGE With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/www/diamanda/Makefile Modified: head/www/diamanda/Makefile ============================================================================== --- head/www/diamanda/Makefile Tue Oct 7 11:34:17 2014 (r370296) +++ head/www/diamanda/Makefile Tue Oct 7 11:41:41 2014 (r370297) @@ -14,15 +14,15 @@ COMMENT= Set of useful Django applicatio RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/__init__.py:${PORTSDIR}/www/py-django \ ${PYTHON_SITELIBDIR}/stripogram/__init__.py:${PORTSDIR}/textproc/py-stripogram \ ${PYTHON_SITELIBDIR}/polib.py:${PORTSDIR}/devel/py-polib \ - ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow SNAPSHOT= 2007.04.26 WRKSRC= ${WRKDIR}/${PORTNAME} +BROKEN= Does not work with current django NO_BUILD= yes -USE_PYTHON= yes -USES= tar:bzip2 gettext +USES= gettext python tar:bzip2 SUB_FILES= pkg-message .include @@ -35,7 +35,4 @@ do-install: @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST} -post-install: - ${CAT} ${PKGMESSAGE} - .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:42:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 386F3E1E; Tue, 7 Oct 2014 11:42:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0AEBC176; Tue, 7 Oct 2014 11:42:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BgPDu035040; Tue, 7 Oct 2014 11:42:25 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BgPvr035038; Tue, 7 Oct 2014 11:42:25 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071142.s97BgPvr035038@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:42:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370298 - in head/security/vinetto: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:42:26 -0000 Author: wg Date: Tue Oct 7 11:42:25 2014 New Revision: 370298 URL: https://svnweb.freebsd.org/changeset/ports/370298 QAT: https://qat.redports.org/buildarchive/r370298/ Log: security/vinetto: switch from py-imaging to py-pillow - USES python - Rename option to reflect reality With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/security/vinetto/files/ head/security/vinetto/files/patch-vinetto (contents, props changed) Modified: head/security/vinetto/Makefile Modified: head/security/vinetto/Makefile ============================================================================== --- head/security/vinetto/Makefile Tue Oct 7 11:41:41 2014 (r370297) +++ head/security/vinetto/Makefile Tue Oct 7 11:42:25 2014 (r370298) @@ -3,7 +3,7 @@ PORTNAME= vinetto PORTVERSION= 0.07 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-beta-${PORTVERSION} DISTNAME= ${PORTNAME}-beta-${PORTVERSION} @@ -11,18 +11,18 @@ DISTNAME= ${PORTNAME}-beta-${PORTVERSION MAINTAINER= ports@FreeBSD.org COMMENT= Forensics tool to examine Thumbs.db files -OPTIONS_DEFINE= IMAGING -OPTIONS_DEFAULT= IMAGING +OPTIONS_DEFINE= THUMBNAILS +OPTIONS_DEFAULT=THUMBNAILS IMAGING_DESC= Build with ability to extract graphic thumbnails -USE_PYTHON= yes -USE_PYDISTUTILS=yes +USES= python +USE_PYTHON= distutils PYDISTUTILS_PKGVERSION= 0.06alpha .include .if ${PORT_OPTIONS:MIMAGING} -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/PIL/_imaging.so:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow .endif do-patch: Added: head/security/vinetto/files/patch-vinetto ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/vinetto/files/patch-vinetto Tue Oct 7 11:42:25 2014 (r370298) @@ -0,0 +1,11 @@ +--- vinetto.orig 2014-10-07 11:39:47 UTC ++++ vinetto +@@ -149,7 +149,7 @@ + outputdir += "/" + + try: +- from PIL import Image ++ import Image + PIL = "imported" + except ImportError, e: + print >> sys.stderr, "" From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:49:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D764BF99; Tue, 7 Oct 2014 11:49:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C429F1BD; Tue, 7 Oct 2014 11:49:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Bnr6V036062; Tue, 7 Oct 2014 11:49:53 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BnrLq036061; Tue, 7 Oct 2014 11:49:53 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071149.s97BnrLq036061@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:49:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370299 - head/www/google-appengine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:49:53 -0000 Author: wg Date: Tue Oct 7 11:49:53 2014 New Revision: 370299 URL: https://svnweb.freebsd.org/changeset/ports/370299 QAT: https://qat.redports.org/buildarchive/r370299/ Log: www/google-appengine: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/www/google-appengine/Makefile Modified: head/www/google-appengine/Makefile ============================================================================== --- head/www/google-appengine/Makefile Tue Oct 7 11:42:25 2014 (r370298) +++ head/www/google-appengine/Makefile Tue Oct 7 11:49:53 2014 (r370299) @@ -3,7 +3,7 @@ PORTNAME= google-appengine PORTVERSION= 1.9.8 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www devel python MASTER_SITES= https://storage.googleapis.com/appengine-sdks/featured/ DISTFILES= ${PORTNAME:S|-|_|}_${PORTVERSION}.zip @@ -15,7 +15,7 @@ LICENSE= APACHE20 BSD3CLAUSE GPLv2 LGPL2 LICENSE_COMB= multi RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=${PYTHON_VER}:${PORTSDIR}/databases/py-sqlite3 \ - ${PYTHON_PKGNAMEPREFIX}imaging>=1.1.6_2:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}pycrypto>=2.6:${PORTSDIR}/security/py-pycrypto NO_BUILD= yes @@ -27,8 +27,7 @@ PORTDATA= * PORTEXAMPLES= * PLIST_FILES= ${GAESCRIPTS:C,^| ,bin/&,g} -USE_PYTHON= 2 -USES= gettext shebangfix zip +USES= gettext python:2 shebangfix zip WRKSRC= ${WRKDIR}/${PORTNAME:S,-,_,} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:51:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA899122; Tue, 7 Oct 2014 11:51:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A7CFA1D4; Tue, 7 Oct 2014 11:51:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BpDnx039731; Tue, 7 Oct 2014 11:51:13 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BpD7Q039730; Tue, 7 Oct 2014 11:51:13 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071151.s97BpD7Q039730@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:51:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370300 - head/www/py-django-filer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:51:13 -0000 Author: wg Date: Tue Oct 7 11:51:13 2014 New Revision: 370300 URL: https://svnweb.freebsd.org/changeset/ports/370300 QAT: https://qat.redports.org/buildarchive/r370300/ Log: www/py-django-filer: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/www/py-django-filer/Makefile Modified: head/www/py-django-filer/Makefile ============================================================================== --- head/www/py-django-filer/Makefile Tue Oct 7 11:49:53 2014 (r370299) +++ head/www/py-django-filer/Makefile Tue Oct 7 11:51:13 2014 (r370300) @@ -3,7 +3,7 @@ PORTNAME= django-filer PORTVERSION= 0.8.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,13 +13,9 @@ COMMENT= File and Image Management Appli RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=0:${PORTSDIR}/www/py-django \ ${PYTHON_PKGNAMEPREFIX}django-easy-thumbnails>=0:${PORTSDIR}/graphics/py-django-easy-thumbnails \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes - -post-install: - @${CAT} ${PKGMESSAGE} +USES= python +USE_PYTHON= autoplist distutils .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:53:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6A24237; Tue, 7 Oct 2014 11:53:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9357826F; Tue, 7 Oct 2014 11:53:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Brx6W040131; Tue, 7 Oct 2014 11:53:59 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BrxNv040130; Tue, 7 Oct 2014 11:53:59 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071153.s97BrxNv040130@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:53:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370301 - head/www/py-django-photologue X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:53:59 -0000 Author: wg Date: Tue Oct 7 11:53:58 2014 New Revision: 370301 URL: https://svnweb.freebsd.org/changeset/ports/370301 QAT: https://qat.redports.org/buildarchive/r370301/ Log: www/py-django-photologue: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/www/py-django-photologue/Makefile Modified: head/www/py-django-photologue/Makefile ============================================================================== --- head/www/py-django-photologue/Makefile Tue Oct 7 11:51:13 2014 (r370300) +++ head/www/py-django-photologue/Makefile Tue Oct 7 11:53:58 2014 (r370301) @@ -3,7 +3,7 @@ PORTNAME= django-photologue PORTVERSION= 2.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,12 +14,10 @@ COMMENT= Reusable gallery application fo LICENSE= BSD RUN_DEPENDS= ${PYTHON_SITELIBDIR}/django/bin/django-admin.py:${PORTSDIR}/www/py-django \ - ${LOCALBASE}/bin/pildriver.py:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow -USES= zip -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python zip +USE_PYTHON= autoplist distutils OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options OPTIONS_DEFINE= TAGGING From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:56:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCC88335; Tue, 7 Oct 2014 11:56:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B8E48282; Tue, 7 Oct 2014 11:56:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BuEWJ040572; Tue, 7 Oct 2014 11:56:14 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BuEI7040571; Tue, 7 Oct 2014 11:56:14 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071156.s97BuEI7040571@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 11:56:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370302 - head/graphics/libetonyek01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:56:14 -0000 Author: bapt Date: Tue Oct 7 11:56:14 2014 New Revision: 370302 URL: https://svnweb.freebsd.org/changeset/ports/370302 QAT: https://qat.redports.org/buildarchive/r370302/ Log: Fix fetch Modified: head/graphics/libetonyek01/Makefile Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek01/Makefile Tue Oct 7 11:53:58 2014 (r370301) +++ head/graphics/libetonyek01/Makefile Tue Oct 7 11:56:14 2014 (r370302) @@ -3,7 +3,7 @@ PORTNAME= libetonyek PORTVERSION= 0.1.1 CATEGORIES= graphics -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:58:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 716E145C; Tue, 7 Oct 2014 11:58:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E3D22B2; Tue, 7 Oct 2014 11:58:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BwJ60040914; Tue, 7 Oct 2014 11:58:19 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BwIg0040912; Tue, 7 Oct 2014 11:58:18 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071158.s97BwIg0040912@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 11:58:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370303 - head/graphics/libfreehand X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:58:19 -0000 Author: bapt Date: Tue Oct 7 11:58:18 2014 New Revision: 370303 URL: https://svnweb.freebsd.org/changeset/ports/370303 QAT: https://qat.redports.org/buildarchive/r370303/ Log: Fix fetching Remove the DOCS option Modified: head/graphics/libfreehand/Makefile head/graphics/libfreehand/pkg-plist Modified: head/graphics/libfreehand/Makefile ============================================================================== --- head/graphics/libfreehand/Makefile Tue Oct 7 11:56:14 2014 (r370302) +++ head/graphics/libfreehand/Makefile Tue Oct 7 11:58:18 2014 (r370303) @@ -2,9 +2,9 @@ PORTNAME= libfreehand PORTVERSION= 0.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ MAINTAINER= office@FreeBSD.org COMMENT= Library providing ability to interpret and import Adobe/Macromedia drawings @@ -17,14 +17,8 @@ LIB_DEPENDS= librevenge-0.0.so:${PORTSDI GNU_CONFIGURE= yes USES= libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs INSTALL_TARGET= install-strip -OPTIONS_DEFINE= DOCS - -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs -PORTDOCS= * - .include Modified: head/graphics/libfreehand/pkg-plist ============================================================================== --- head/graphics/libfreehand/pkg-plist Tue Oct 7 11:56:14 2014 (r370302) +++ head/graphics/libfreehand/pkg-plist Tue Oct 7 11:58:18 2014 (r370303) @@ -6,5 +6,3 @@ lib/libfreehand-0.1.so lib/libfreehand-0.1.so.1 lib/libfreehand-0.1.so.1.0.0 libdata/pkgconfig/libfreehand-0.1.pc -@dirrm include/libfreehand-0.1/libfreehand -@dirrm include/libfreehand-0.1 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 11:58:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF279547; Tue, 7 Oct 2014 11:58:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BA0C2C5; Tue, 7 Oct 2014 11:58:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97BwwAq041070; Tue, 7 Oct 2014 11:58:58 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97BwwWA041069; Tue, 7 Oct 2014 11:58:58 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071158.s97BwwWA041069@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 11:58:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370304 - head/www/py-djblets X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 11:58:58 -0000 Author: wg Date: Tue Oct 7 11:58:57 2014 New Revision: 370304 URL: https://svnweb.freebsd.org/changeset/ports/370304 QAT: https://qat.redports.org/buildarchive/r370304/ Log: www/py-djblets: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/www/py-djblets/Makefile Modified: head/www/py-djblets/Makefile ============================================================================== --- head/www/py-djblets/Makefile Tue Oct 7 11:58:18 2014 (r370303) +++ head/www/py-djblets/Makefile Tue Oct 7 11:58:57 2014 (r370304) @@ -2,6 +2,7 @@ PORTNAME= djblets PORTVERSION= 0.7.28 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= http://downloads.reviewboard.org/releases/Djblets/${PORTVERSION:R}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,12 +18,11 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dj RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django14>=1.4.3:${PORTSDIR}/www/py-django14 \ ${PYTHON_PKGNAMEPREFIX}django-pipeline12>=1.2.24:${PORTSDIR}/www/py-django-pipeline12 \ ${PYTHON_PKGNAMEPREFIX}feedparser>=5.1.2:${PORTSDIR}/textproc/py-feedparser \ - ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz -USES= shebangfix -USE_PYTHON= 2 -USE_PYDISTUTILS= yes +USES= python:2 shebangfix +USE_PYTHON= distutils PYDISTUTILS_PKGNAME= Djblets python_OLD_CMD= /usr/bin/env python From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:00:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B4FB860; Tue, 7 Oct 2014 12:00:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 87BFE2FD; Tue, 7 Oct 2014 12:00:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C0Mw0041533; Tue, 7 Oct 2014 12:00:22 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C0MEJ041532; Tue, 7 Oct 2014 12:00:22 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071200.s97C0MEJ041532@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:00:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370305 - head/textproc/libabw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:00:22 -0000 Author: bapt Date: Tue Oct 7 12:00:21 2014 New Revision: 370305 URL: https://svnweb.freebsd.org/changeset/ports/370305 QAT: https://qat.redports.org/buildarchive/r370305/ Log: Fix fetching remove docs option Modified: head/textproc/libabw/Makefile Modified: head/textproc/libabw/Makefile ============================================================================== --- head/textproc/libabw/Makefile Tue Oct 7 11:58:57 2014 (r370304) +++ head/textproc/libabw/Makefile Tue Oct 7 12:00:21 2014 (r370305) @@ -2,9 +2,9 @@ PORTNAME= libabw PORTVERSION= 0.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ MAINTAINER= office@FreeBSD.org COMMENT= Library providing ability to interpret Abiword documents @@ -12,8 +12,6 @@ COMMENT= Library providing ability to in LICENSE= LGPL21 MPL LICENSE_COMB= dual -OPTIONS_DEFINE= DOCS - BUILD_DEPENDS= ${LOCALBASE}/include/boost/algorithm/string.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge @@ -24,10 +22,6 @@ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip CPPFLAGS= -I${LOCALBASE}/include -CONFIGURE_ARGS= -disable-werror - -PORTDOCS= * -DOCS_BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen -DOCS_CONFIGURE_OFF= --without-docs +CONFIGURE_ARGS= -disable-werror --without-docs .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:01:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA1B7967; Tue, 7 Oct 2014 12:01:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ABBED3B4; Tue, 7 Oct 2014 12:01:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C1Mev044642; Tue, 7 Oct 2014 12:01:22 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C1MHQ044641; Tue, 7 Oct 2014 12:01:22 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071201.s97C1MHQ044641@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:01:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370306 - head/textproc/libvisio01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:01:22 -0000 Author: bapt Date: Tue Oct 7 12:01:21 2014 New Revision: 370306 URL: https://svnweb.freebsd.org/changeset/ports/370306 QAT: https://qat.redports.org/buildarchive/r370306/ Log: Fix fetching Convert to USES=gperf Modified: head/textproc/libvisio01/Makefile Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio01/Makefile Tue Oct 7 12:00:21 2014 (r370305) +++ head/textproc/libvisio01/Makefile Tue Oct 7 12:01:21 2014 (r370306) @@ -3,7 +3,7 @@ PORTNAME= libvisio PORTVERSION= 0.1.0 CATEGORIES= textproc devel -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org @@ -21,14 +21,7 @@ CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_PERL5= build -USES= gmake libtool pathfix perl5 pkgconfig tar:xz +USES= gmake gperf libtool pathfix perl5 pkgconfig tar:xz INSTALL_TARGET= install-strip -.include - -.if ${OSVERSION} < 802516 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900502) -BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf -CONFIGURE_ENV+= GPERF=${LOCALBASE}/bin/gperf -.endif - -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:01:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3B27A62; Tue, 7 Oct 2014 12:01:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4CB43D2; Tue, 7 Oct 2014 12:01:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C1rUR045307; Tue, 7 Oct 2014 12:01:53 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C1q01045300; Tue, 7 Oct 2014 12:01:52 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071201.s97C1q01045300@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:01:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370307 - in head/www/twms: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:01:54 -0000 Author: wg Date: Tue Oct 7 12:01:51 2014 New Revision: 370307 URL: https://svnweb.freebsd.org/changeset/ports/370307 QAT: https://qat.redports.org/buildarchive/r370307/ Log: www/twms: switch from py-imaging to py-pillow With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/www/twms/files/patch-twms__canvas.py (contents, props changed) head/www/twms/files/patch-twms__drawing.py (contents, props changed) head/www/twms/files/patch-twms__fetchers.py (contents, props changed) head/www/twms/files/patch-twms__filter.py (contents, props changed) head/www/twms/files/patch-twms__reproject.py (contents, props changed) Modified: head/www/twms/Makefile Modified: head/www/twms/Makefile ============================================================================== --- head/www/twms/Makefile Tue Oct 7 12:01:21 2014 (r370306) +++ head/www/twms/Makefile Tue Oct 7 12:01:51 2014 (r370307) @@ -3,7 +3,7 @@ PORTNAME= twms PORTVERSION= 0.02w -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www astro MASTER_SITES= GOOGLE_CODE @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pyproj/__init__.py:${PORTSDIR}/graphics/py-pyproj \ ${PYTHON_SITELIBDIR}/web/__init__.py:${PORTSDIR}/www/webpy \ - ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow USES= python tar:bzip2 NO_BUILD= yes Added: head/www/twms/files/patch-twms__canvas.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/twms/files/patch-twms__canvas.py Tue Oct 7 12:01:51 2014 (r370307) @@ -0,0 +1,18 @@ +--- twms/canvas.py.orig 2014-10-07 11:58:01 UTC ++++ twms/canvas.py +@@ -24,7 +24,7 @@ + + + import projections +-import Image, ImageFilter ++from PIL import Image, ImageFilter + import urllib2 + import StringIO + import datetime +@@ -132,4 +132,4 @@ + tiles = self.tiles.keys() + for tile in tiles: + self.tiles[tile]["im"] = self.tiles[tile]["im"].filter(ImageFilter.MedianFilter(size)) +- self.tiles[tile]["pix"] = self.tiles[tile]["im"].load() +\ No newline at end of file ++ self.tiles[tile]["pix"] = self.tiles[tile]["im"].load() Added: head/www/twms/files/patch-twms__drawing.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/twms/files/patch-twms__drawing.py Tue Oct 7 12:01:51 2014 (r370307) @@ -0,0 +1,18 @@ +--- twms/drawing.py.orig 2014-10-07 11:57:57 UTC ++++ twms/drawing.py +@@ -13,7 +13,7 @@ + + # You should have received a copy of the GNU General Public License + # along with tWMS. If not, see . +-import Image, ImageDraw ++from PIL import Image, ImageDraw + import urllib + import os, sys + +@@ -79,4 +79,4 @@ + draw.ellipse((coords[0][0]-3,coords[0][1]-3,coords[0][0]+3,coords[0][1]+3),fill=color,outline=color) + elif geometry == "POLYGON": + draw.polygon(coords, fill=color, outline=color) +- return img +\ No newline at end of file ++ return img Added: head/www/twms/files/patch-twms__fetchers.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/twms/files/patch-twms__fetchers.py Tue Oct 7 12:01:51 2014 (r370307) @@ -0,0 +1,18 @@ +--- twms/fetchers.py.orig 2014-10-07 11:58:04 UTC ++++ twms/fetchers.py +@@ -21,7 +21,7 @@ + import math + import sys + import StringIO +-import Image ++from PIL import Image + + import config + import projections +@@ -115,4 +115,4 @@ + tne.close() + os.remove(local+ this_layer["ext"]) + return False +- return im +\ No newline at end of file ++ return im Added: head/www/twms/files/patch-twms__filter.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/twms/files/patch-twms__filter.py Tue Oct 7 12:01:51 2014 (r370307) @@ -0,0 +1,13 @@ +--- twms/filter.py.orig 2014-10-07 11:57:53 UTC ++++ twms/filter.py +@@ -15,8 +15,8 @@ + # along with tWMS. If not, see . + + +-import ImageFilter +-import ImageEnhance ++from PIL import ImageFilter ++from PIL import ImageEnhance + + def raster(result_img, filt): + """ Added: head/www/twms/files/patch-twms__reproject.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/twms/files/patch-twms__reproject.py Tue Oct 7 12:01:51 2014 (r370307) @@ -0,0 +1,11 @@ +--- twms/reproject.py.orig 2014-10-07 11:58:11 UTC ++++ twms/reproject.py +@@ -14,7 +14,7 @@ + # You should have received a copy of the GNU General Public License + # along with tWMS. If not, see . + +-import Image ++from PIL import Image + import projections + import sys + From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:02:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 110A6B55; Tue, 7 Oct 2014 12:02:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F165C3E0; Tue, 7 Oct 2014 12:02:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C2jA2045518; Tue, 7 Oct 2014 12:02:45 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C2jSS045515; Tue, 7 Oct 2014 12:02:45 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071202.s97C2jSS045515@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:02:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370308 - in head/www/xist: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:02:46 -0000 Author: wg Date: Tue Oct 7 12:02:44 2014 New Revision: 370308 URL: https://svnweb.freebsd.org/changeset/ports/370308 QAT: https://qat.redports.org/buildarchive/r370308/ Log: www/xist: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/www/xist/files/patch-src__ll__url.py (contents, props changed) Modified: head/www/xist/Makefile Modified: head/www/xist/Makefile ============================================================================== --- head/www/xist/Makefile Tue Oct 7 12:01:51 2014 (r370307) +++ head/www/xist/Makefile Tue Oct 7 12:02:44 2014 (r370308) @@ -3,7 +3,7 @@ PORTNAME= xist PORTVERSION= 3.25 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www python MASTER_SITES= CHEESESHOP \ http://ftp.livinglogic.de/xist/ @@ -17,13 +17,11 @@ LICENSE= MIT RUN_DEPENDS= ${PYXML} \ ${PYTHON_PKGNAMEPREFIX}ll-core>=1.11.1:${PORTSDIR}/devel/py-ll-core \ - ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}cssutils>=0.9.7:${PORTSDIR}/www/py-cssutils -USES= tar:bzip2 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 tar:bzip2 +USE_PYTHON= autoplist distutils post-patch: .for conflictswithllcore in __init__ scripts/__init__ ansistyle astyle color \ Added: head/www/xist/files/patch-src__ll__url.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/xist/files/patch-src__ll__url.py Tue Oct 7 12:02:44 2014 (r370308) @@ -0,0 +1,11 @@ +--- src/ll/url.py.orig 2014-10-07 12:02:25 UTC ++++ src/ll/url.py +@@ -57,7 +57,7 @@ + execnet = None + + try: +- import Image ++ from PIL import Image + except ImportError: + pass + From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:02:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5E3EC35; Tue, 7 Oct 2014 12:02:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 789C73E2; Tue, 7 Oct 2014 12:02:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C2pUC045625; Tue, 7 Oct 2014 12:02:51 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C2p9Q045624; Tue, 7 Oct 2014 12:02:51 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071202.s97C2p9Q045624@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:02:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370309 - head/print/libmspub01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:02:51 -0000 Author: bapt Date: Tue Oct 7 12:02:50 2014 New Revision: 370309 URL: https://svnweb.freebsd.org/changeset/ports/370309 QAT: https://qat.redports.org/buildarchive/r370309/ Log: Fix fetching Modified: head/print/libmspub01/Makefile Modified: head/print/libmspub01/Makefile ============================================================================== --- head/print/libmspub01/Makefile Tue Oct 7 12:02:44 2014 (r370308) +++ head/print/libmspub01/Makefile Tue Oct 7 12:02:50 2014 (r370309) @@ -3,7 +3,7 @@ PORTNAME= libmspub PORTVERSION= 0.1.0 CATEGORIES= print graphics devel -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:03:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3A07D34; Tue, 7 Oct 2014 12:03:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B04393F9; Tue, 7 Oct 2014 12:03:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C3lBE045844; Tue, 7 Oct 2014 12:03:47 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C3llK045843; Tue, 7 Oct 2014 12:03:47 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071203.s97C3llK045843@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 12:03:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370310 - head/cad/geda X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:03:48 -0000 Author: amdmi3 Date: Tue Oct 7 12:03:46 2014 New Revision: 370310 URL: https://svnweb.freebsd.org/changeset/ports/370310 QAT: https://qat.redports.org/buildarchive/r370310/ Log: - Drop @dirrm* from plist Modified: head/cad/geda/pkg-plist Modified: head/cad/geda/pkg-plist ============================================================================== --- head/cad/geda/pkg-plist Tue Oct 7 12:02:50 2014 (r370309) +++ head/cad/geda/pkg-plist Tue Oct 7 12:03:46 2014 (r370310) @@ -2341,87 +2341,3 @@ share/mime/application/x-geda-gsch2pcb-p share/mime/application/x-geda-schematic.xml share/mime/application/x-geda-symbol.xml share/mime/packages/libgeda.xml -@dirrmtry share/mime/application -@dirrm %%DATADIR%%/sym/xilinx -@dirrm %%DATADIR%%/sym/vhdl -@dirrm %%DATADIR%%/sym/verilog -@dirrm %%DATADIR%%/sym/tube -@dirrm %%DATADIR%%/sym/transistor -@dirrm %%DATADIR%%/sym/titleblock -@dirrm %%DATADIR%%/sym/switch -@dirrm %%DATADIR%%/sym/switcap -@dirrm %%DATADIR%%/sym/supervisor -@dirrm %%DATADIR%%/sym/st -@dirrm %%DATADIR%%/sym/spice -@dirrm %%DATADIR%%/sym/rf -@dirrm %%DATADIR%%/sym/relay -@dirrm %%DATADIR%%/sym/radio -@dirrm %%DATADIR%%/sym/power -@dirrm %%DATADIR%%/sym/pla -@dirrm %%DATADIR%%/sym/philips -@dirrm %%DATADIR%%/sym/opto -@dirrm %%DATADIR%%/sym/national -@dirrm %%DATADIR%%/sym/misc -@dirrm %%DATADIR%%/sym/minicircuits -@dirrm %%DATADIR%%/sym/micro -@dirrm %%DATADIR%%/sym/memory -@dirrm %%DATADIR%%/sym/maxim -@dirrm %%DATADIR%%/sym/local -@dirrm %%DATADIR%%/sym/linear -@dirrm %%DATADIR%%/sym/lattice -@dirrm %%DATADIR%%/sym/irf -@dirrm %%DATADIR%%/sym/io -@dirrm %%DATADIR%%/sym/idt -@dirrm %%DATADIR%%/sym/gnetman -@dirrm %%DATADIR%%/sym/ecl -@dirrm %%DATADIR%%/sym/diode -@dirrm %%DATADIR%%/sym/dec -@dirrm %%DATADIR%%/sym/connector -@dirrm %%DATADIR%%/sym/cascade -@dirrm %%DATADIR%%/sym/bus -@dirrm %%DATADIR%%/sym/asicpads -@dirrm %%DATADIR%%/sym/asic -@dirrm %%DATADIR%%/sym/apex -@dirrm %%DATADIR%%/sym/analog -@dirrm %%DATADIR%%/sym/amphenol -@dirrm %%DATADIR%%/sym/altera -@dirrm %%DATADIR%%/sym/allegro -@dirrm %%DATADIR%%/sym/IEC417 -@dirrm %%DATADIR%%/sym/74 -@dirrm %%DATADIR%%/sym/4000 -@dirrm %%DATADIR%%/sym -@dirrm %%DATADIR%%/scheme/gschem/core -@dirrm %%DATADIR%%/scheme/gschem -@dirrm %%DATADIR%%/scheme/gnetlist -@dirrm %%DATADIR%%/scheme/geda/core -@dirrm %%DATADIR%%/scheme/geda -@dirrm %%DATADIR%%/scheme -@dirrm %%DATADIR%%/perl/lib -@dirrm %%DATADIR%%/perl -@dirrm %%DATADIR%%/gafrc.d -@dirrm %%DATADIR%%/bitmap -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/media/wiki -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/media/tragesym/tragesym -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/media/tragesym -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/media/geda -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/media/devel_tips -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/media -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/images/smileys -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/images/interwiki -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki/images -%%PORTDOCS%%@dirrm %%DOCSDIR%%/wiki -%%PORTDOCS%%@dirrm %%DOCSDIR%%/readmes -%%PORTDOCS%%@dirrm %%DOCSDIR%%/man -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/lightning_detector/sym -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/lightning_detector -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/gTAG -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/TwoStageAmp/sym -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/TwoStageAmp/models -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/TwoStageAmp -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/RF_Amp/sym -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/RF_Amp/model -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples/RF_Amp -%%PORTDOCS%%@dirrm %%DOCSDIR%%/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/libgeda From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:08:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BBB03EE9; Tue, 7 Oct 2014 12:08:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8044616; Tue, 7 Oct 2014 12:08:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97C8Gww046499; Tue, 7 Oct 2014 12:08:16 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97C8GBh046496; Tue, 7 Oct 2014 12:08:16 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071208.s97C8GBh046496@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:08:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370311 - in head/x11/xcurs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:08:16 -0000 Author: wg Date: Tue Oct 7 12:08:15 2014 New Revision: 370311 URL: https://svnweb.freebsd.org/changeset/ports/370311 QAT: https://qat.redports.org/buildarchive/r370311/ Log: x11/xcurs: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/x11/xcurs/Makefile head/x11/xcurs/files/patch-xcurs.py Modified: head/x11/xcurs/Makefile ============================================================================== --- head/x11/xcurs/Makefile Tue Oct 7 12:03:46 2014 (r370310) +++ head/x11/xcurs/Makefile Tue Oct 7 12:08:15 2014 (r370311) @@ -3,7 +3,7 @@ PORTNAME= xcurs PORTVERSION= 0.5.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11 python MASTER_SITES= http://freebsd.nsu.ru/distfiles/ \ #http://varg.dyndns.org/psi/files/xcurs/ @@ -11,10 +11,10 @@ MASTER_SITES= http://freebsd.nsu.ru/dist MAINTAINER= ports@FreeBSD.org COMMENT= Editor for new X.Org style full-color cursors properties -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow +USES= python USE_GNOME= pygtk2 -USE_PYTHON= yes NO_BUILD= yes post-patch: Modified: head/x11/xcurs/files/patch-xcurs.py ============================================================================== --- head/x11/xcurs/files/patch-xcurs.py Tue Oct 7 12:03:46 2014 (r370310) +++ head/x11/xcurs/files/patch-xcurs.py Tue Oct 7 12:08:15 2014 (r370311) @@ -14,7 +14,8 @@ import gtk.glade @@ -8,7 +12,7 @@ import gladew - import Image +-import Image ++from PIL import Image -import os, new, types +import new, types From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:10:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AAC8FFE; Tue, 7 Oct 2014 12:10:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 073FB63A; Tue, 7 Oct 2014 12:10:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CAdSi049543; Tue, 7 Oct 2014 12:10:39 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CAdlp049542; Tue, 7 Oct 2014 12:10:39 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071210.s97CAdlp049542@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:10:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370312 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:10:40 -0000 Author: bapt Date: Tue Oct 7 12:10:39 2014 New Revision: 370312 URL: https://svnweb.freebsd.org/changeset/ports/370312 QAT: https://qat.redports.org/buildarchive/r370312/ Log: Add a master site for libreoffice dev hosting abbreviated as LODEV Modified: head/Mk/bsd.sites.mk Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Tue Oct 7 12:08:15 2014 (r370311) +++ head/Mk/bsd.sites.mk Tue Oct 7 12:10:39 2014 (r370312) @@ -750,6 +750,11 @@ MASTER_SITE_KDE+= \ http://ftp.funet.fi/pub/mirrors/ftp.kde.org/pub/kde/%SUBDIR%/ .endif +.if !defined(IGNORE_MASTER_SITE_LIBREOFFICE_DEV) +MASTER_SITE_LIBREOFFICE_DEV+= \ + http://dev-www.libreoffice.org/src/%SUBDIR%/ +.endif + .if !defined(IGNORE_MASTER_SITE_LOGILAB) MASTER_SITE_LOGILAB+= \ http://download.logilab.org/pub/%SUBDIR%/ \ @@ -1501,6 +1506,7 @@ MASTER_SITE_KERNEL_ORG+= \ MASTER_SITES_ABBREVS= CPAN:PERL_CPAN \ GH:GITHUB \ GHC:GITHUB_CLOUD \ + LODEV:LIBREOFFICE_DEV \ NL:NETLIB \ SF:SOURCEFORGE \ SFJP:SOURCEFORGE_JP \ @@ -1520,6 +1526,7 @@ MASTER_SITES_SUBDIRS= APACHE_JAKARTA:${P GNU_ALPHA:${PORTNAME} \ HORDE:${PORTNAME} \ LOGILAB:${PORTNAME} \ + LIBREOFFICE_DEV:${PORTNAME} \ MATE:${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} \ MOZDEV:${PORTNAME:tl} \ NETLIB:${PORTNAME} \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:14:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4D0D1B2; Tue, 7 Oct 2014 12:14:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C11576EF; Tue, 7 Oct 2014 12:14:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CEh8Q051066; Tue, 7 Oct 2014 12:14:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CEhlt051065; Tue, 7 Oct 2014 12:14:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071214.s97CEhlt051065@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 12:14:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370313 - head/sysutils/automount X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:14:43 -0000 Author: amdmi3 Date: Tue Oct 7 12:14:43 2014 New Revision: 370313 URL: https://svnweb.freebsd.org/changeset/ports/370313 QAT: https://qat.redports.org/buildarchive/r370313/ Log: - Disable EXFAT by default to allow package building (not possible otherwise due to sysutils/fusefs-exfat licensing restrictions) - Use options helpers PR: 189486 Submitted by: amdmi3 Approved by: vermaden@interia.pl Modified: head/sysutils/automount/Makefile Modified: head/sysutils/automount/Makefile ============================================================================== --- head/sysutils/automount/Makefile Tue Oct 7 12:10:39 2014 (r370312) +++ head/sysutils/automount/Makefile Tue Oct 7 12:14:43 2014 (r370313) @@ -17,24 +17,13 @@ PLIST_FILES= sbin/automount etc/devd/aut NO_BUILD= yes OPTIONS_DEFINE= NTFS3G EXT4 EXFAT -OPTIONS_DEFAULT= NTFS3G EXT4 EXFAT +OPTIONS_DEFAULT= NTFS3G EXT4 NTFS3G_DESC= Enable NTFS write support with ntfs-3g over FUSE +NTFS3G_RUN_DEPENDS= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs EXT4_DESC= Support EXT4 filesystem +EXT4_RUN_DEPENDS= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse EXFAT_DESC= Support Microsoft exFAT filesystem - -.include - -.if ${PORT_OPTIONS:MNTFS3G} -RUN_DEPENDS+= fusefs-ntfs>=0:${PORTSDIR}/sysutils/fusefs-ntfs -.endif - -.if ${PORT_OPTIONS:MEXT4} -RUN_DEPENDS+= fusefs-ext4fuse>=0:${PORTSDIR}/sysutils/fusefs-ext4fuse -.endif - -.if ${PORT_OPTIONS:MEXFAT} -RUN_DEPENDS+= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat -.endif +EXFAT_RUN_DEPENDS= fusefs-exfat>=0:${PORTSDIR}/sysutils/fusefs-exfat do-install: ${INSTALL_SCRIPT} ${WRKSRC}/automount ${STAGEDIR}${PREFIX}/sbin From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:20:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 998BD3B8; Tue, 7 Oct 2014 12:20:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7B1B779B; Tue, 7 Oct 2014 12:20:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CK7Y2052058; Tue, 7 Oct 2014 12:20:07 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CK6ub052051; Tue, 7 Oct 2014 12:20:06 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071220.s97CK6ub052051@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:20:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370314 - in head/graphics: . libgltf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:20:07 -0000 Author: bapt Date: Tue Oct 7 12:20:05 2014 New Revision: 370314 URL: https://svnweb.freebsd.org/changeset/ports/370314 QAT: https://qat.redports.org/buildarchive/r370314/ Log: Import libgltf required by libreoffice 4.3 Added: head/graphics/libgltf/ head/graphics/libgltf/Makefile (contents, props changed) head/graphics/libgltf/distinfo (contents, props changed) head/graphics/libgltf/pkg-descr (contents, props changed) head/graphics/libgltf/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Oct 7 12:14:43 2014 (r370313) +++ head/graphics/Makefile Tue Oct 7 12:20:05 2014 (r370314) @@ -504,6 +504,7 @@ SUBDIR += libglapi SUBDIR += libglesv2 SUBDIR += libgltext + SUBDIR += libgltf SUBDIR += libgnomecanvas SUBDIR += libgnomecanvas-reference SUBDIR += libgnomecanvasmm26 Added: head/graphics/libgltf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libgltf/Makefile Tue Oct 7 12:20:05 2014 (r370314) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= libgltf +PORTVERSION= 0.0.2 +CATEGORIES= graphics devel +MASTER_SITES= LODEV + +MAINTAINER= office@FreeBSD.org +COMMENT= C++ Library for rendering OpenGL models stored in glTF format + +LICENSE= LGPL21 MPL +LICENSE_COMB= dual + +BUILD_DEPENDS= ${LOCALBASE}/include/boost/ptr_container/ptr_map.hpp:${PORTSDIR}/devel/boost-libs \ + ${LOCALBASE}/include/glm/glm.hpp:${PORTSDIR}/math/glm +LIB_DEPENDS= libGLEW.so:${PORTSDIR}/graphics/glew + +USES= pathfix libtool tar:bzip2 +USE_LDCONFIG= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-werror +INSTALL_TARGET= install-strip +CPPFLAGS+= -I${LOCALBASE}/include + +.include Added: head/graphics/libgltf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libgltf/distinfo Tue Oct 7 12:20:05 2014 (r370314) @@ -0,0 +1,2 @@ +SHA256 (libgltf-0.0.2.tar.bz2) = d1cc7297ed1921aa969e26413b4c4e18afc882ce4d2f5a2aa2a2905706f7206b +SIZE (libgltf-0.0.2.tar.bz2) = 538040 Added: head/graphics/libgltf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libgltf/pkg-descr Tue Oct 7 12:20:05 2014 (r370314) @@ -0,0 +1,3 @@ +Library for rendering OpenGL models stored in glTF format + +WWW: http://www.libreoffice.org Added: head/graphics/libgltf/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libgltf/pkg-plist Tue Oct 7 12:20:05 2014 (r370314) @@ -0,0 +1,6 @@ +include/libgltf-0.0/libgltf.h +include/libgltf-0.0/types.h +lib/libgltf-0.0.so +lib/libgltf-0.0.so.0 +lib/libgltf-0.0.so.0.0.2 +libdata/pkgconfig/libgltf-0.0.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:20:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7837249B; Tue, 7 Oct 2014 12:20:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 648BC7A2; Tue, 7 Oct 2014 12:20:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CKac2053263; Tue, 7 Oct 2014 12:20:36 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CKaw5053227; Tue, 7 Oct 2014 12:20:36 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071220.s97CKaw5053227@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:20:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370315 - head/graphics/py-opengl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:20:36 -0000 Author: wg Date: Tue Oct 7 12:20:35 2014 New Revision: 370315 URL: https://svnweb.freebsd.org/changeset/ports/370315 QAT: https://qat.redports.org/buildarchive/r370315/ Log: graphics/py-opengl: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/graphics/py-opengl/Makefile Modified: head/graphics/py-opengl/Makefile ============================================================================== --- head/graphics/py-opengl/Makefile Tue Oct 7 12:20:05 2014 (r370314) +++ head/graphics/py-opengl/Makefile Tue Oct 7 12:20:35 2014 (r370315) @@ -3,30 +3,27 @@ PORTNAME= opengl PORTVERSION= 3.0.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics python MASTER_SITES= SF/py${PORTNAME}/PyOpenGL/${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= PyOpenGL-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= python@FreeBSD.org COMMENT= OpenGL (and related library) interface for Python BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging -RUN_DEPENDS= ${PYNUMPY} \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow +RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= TKINTER OPTIONS_DEFAULT= TKINTER TKINTER_DESC= Build with tkinter for X support OPTIONSFILE?= ${PORT_DBDIR}/${PORTNAME}/options -USES= dos2unix +USES= dos2unix python USE_GL= glut -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USE_PYTHON= distutils autoplist TKINTER_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter TKINTER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:23:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39BE159E; Tue, 7 Oct 2014 12:23:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 25E4C83E; Tue, 7 Oct 2014 12:23:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CNPjq056007; Tue, 7 Oct 2014 12:23:25 GMT (envelope-from erwin@FreeBSD.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CNOeC056005; Tue, 7 Oct 2014 12:23:24 GMT (envelope-from erwin@FreeBSD.org) Message-Id: <201410071223.s97CNOeC056005@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: erwin set sender to erwin@FreeBSD.org using -f From: Erwin Lansing Date: Tue, 7 Oct 2014 12:23:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370316 - head/dns/knot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:23:25 -0000 Author: erwin Date: Tue Oct 7 12:23:24 2014 New Revision: 370316 URL: https://svnweb.freebsd.org/changeset/ports/370316 QAT: https://qat.redports.org/buildarchive/r370316/ Log: Update to 1.5.3: Bugfixes: Some specific incoming IXFRs were causing server to crash Rare sychronization error during reload caused read-after-free Response synthetization module did not work properly with DNSSEC-enabled zones If Knot sent AXFR when IXFR was requested, message ID and opcode were wrong Knot failed to send large messages to remote control (present since 1.5.1) Version: 1.5.2 Bugfixes: Some RR parsing corner cases were not handled properly AXFR-style IXFR was refused and had to be retransfered Hash character (#) was not properly escaped when storing text zone file PR: 193969 Submitted by: erwin Approved by: freebsd@dns-lab.com (maintainer) Modified: head/dns/knot/Makefile head/dns/knot/distinfo Modified: head/dns/knot/Makefile ============================================================================== --- head/dns/knot/Makefile Tue Oct 7 12:20:35 2014 (r370315) +++ head/dns/knot/Makefile Tue Oct 7 12:23:24 2014 (r370316) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= knot -PORTVERSION= 1.5.1 -PORTREVISION= 1 +PORTVERSION= 1.5.3 CATEGORIES= dns ipv6 MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ Modified: head/dns/knot/distinfo ============================================================================== --- head/dns/knot/distinfo Tue Oct 7 12:20:35 2014 (r370315) +++ head/dns/knot/distinfo Tue Oct 7 12:23:24 2014 (r370316) @@ -1,2 +1,2 @@ -SHA256 (knot-1.5.1.tar.gz) = 9a636e846586619be590d94f57c17bb3e520c516f82875380466061e1ed33963 -SIZE (knot-1.5.1.tar.gz) = 1172631 +SHA256 (knot-1.5.3.tar.gz) = 8d82ad5b2c7162750dc40c57d45dcae2665171a862767a350379fe1c4e0afcdd +SIZE (knot-1.5.3.tar.gz) = 1175445 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:23:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A6A6689; Tue, 7 Oct 2014 12:23:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 077C1848; Tue, 7 Oct 2014 12:23:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CNhT8056143; Tue, 7 Oct 2014 12:23:43 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CNhcX056142; Tue, 7 Oct 2014 12:23:43 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071223.s97CNhcX056142@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:23:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370317 - head/x11/xpra X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:23:44 -0000 Author: wg Date: Tue Oct 7 12:23:43 2014 New Revision: 370317 URL: https://svnweb.freebsd.org/changeset/ports/370317 QAT: https://qat.redports.org/buildarchive/r370317/ Log: x11/xpra: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/x11/xpra/Makefile Modified: head/x11/xpra/Makefile ============================================================================== --- head/x11/xpra/Makefile Tue Oct 7 12:23:24 2014 (r370316) +++ head/x11/xpra/Makefile Tue Oct 7 12:23:43 2014 (r370317) @@ -3,6 +3,7 @@ PORTNAME= xpra PORTVERSION= 0.12.6 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://xpra.org/src/ @@ -15,7 +16,7 @@ BUILD_DEPENDS= cython:${PORTSDIR}/lang/c ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gtk/__init__.py:${PORTSDIR}/x11-toolkits/py-gtk2 \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus \ - ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ Xvfb:${PORTSDIR}/x11-servers/xorg-vfbserver \ xauth:${PORTSDIR}/x11/xauth \ setxkbmap:${PORTSDIR}/x11/setxkbmap \ @@ -25,12 +26,11 @@ LIB_DEPENDS= libx264.so:${PORTSDIR}/mult libavcodec.so:${PORTSDIR}/multimedia/ffmpeg \ libvpx.so:${PORTSDIR}/multimedia/libvpx -USES= pkgconfig tar:bzip2 -USE_PYTHON= yes +USES= pkgconfig python tar:bzip2 +USE_PYTHON= distutils USE_XORG= x11 xtst xfixes xcomposite xdamage xrandr PLIST_SUB+= PORTVERSION=${PORTVERSION} PYTHON_VER=${PYTHON_VER} -USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= xpra_all post-install: From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:25:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A451C7E7; Tue, 7 Oct 2014 12:25:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76776865; Tue, 7 Oct 2014 12:25:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CPUgs056492; Tue, 7 Oct 2014 12:25:30 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CPUff056488; Tue, 7 Oct 2014 12:25:30 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071225.s97CPUff056488@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:25:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370318 - in head/audio/decibel-audio-player: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:25:30 -0000 Author: wg Date: Tue Oct 7 12:25:29 2014 New Revision: 370318 URL: https://svnweb.freebsd.org/changeset/ports/370318 QAT: https://qat.redports.org/buildarchive/r370318/ Log: audio/decibel-audio-player: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/audio/decibel-audio-player/files/patch-src__modules__Covers.py (contents, props changed) Modified: head/audio/decibel-audio-player/Makefile Modified: head/audio/decibel-audio-player/Makefile ============================================================================== --- head/audio/decibel-audio-player/Makefile Tue Oct 7 12:23:43 2014 (r370317) +++ head/audio/decibel-audio-player/Makefile Tue Oct 7 12:25:29 2014 (r370318) @@ -3,7 +3,7 @@ PORTNAME= decibel-audio-player PORTVERSION= 1.08 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio multimedia gnome python MASTER_SITES= http://decibel.silent-blade.org/uploads/Main/ @@ -15,7 +15,7 @@ RUN_DEPENDS= py*-dbus>=0.80:${PORTSDIR}/ LICENSE= GPLv2 -USE_PYTHON= yes +USES= python USE_GNOME= pygnome2 pygtk2 USE_GSTREAMER= python good bad USES= gmake gettext desktop-file-utils @@ -33,7 +33,7 @@ EXTRAS_DESC= Extra dependencies for plug AUDIOCD_RUN_DEPENDS= cd-discid>=0.9:${PORTSDIR}/audio/cd-discid \ py*-cddb>=1.4:${PORTSDIR}/audio/py-cddb \ gstreamer-plugins-cdio>=0.10.16:${PORTSDIR}/sysutils/gstreamer-plugins-cdio -EXTRAS_RUN_DEPENDS= py*-imaging>=1.1.6:${PORTSDIR}/graphics/py-imaging \ +EXTRAS_RUN_DEPENDS= py*-pillow>0:${PORTSDIR}/graphics/py-pillow \ py*-notify>=0.1.1:${PORTSDIR}/devel/py-notify FLAC_USE= GSTREAMER=flac MP3_USE= GSTREAMER=mp3 Added: head/audio/decibel-audio-player/files/patch-src__modules__Covers.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/decibel-audio-player/files/patch-src__modules__Covers.py Tue Oct 7 12:25:29 2014 (r370318) @@ -0,0 +1,20 @@ +--- src/modules/Covers.py.orig 2014-10-07 12:26:08 UTC ++++ src/modules/Covers.py +@@ -124,7 +124,7 @@ + + def generateFullSizeCover(self, inFile, outFile, format): + """ Resize inFile if needed, and write it to outFile (outFile and inFile may be equal) """ +- import Image ++ from PIL import Image + + try: + # Open the image +@@ -144,7 +144,7 @@ + + def generateThumbnail(self, inFile, outFile, format): + """ Generate a thumbnail from inFile (e.g., resize it) and write it to outFile (outFile and inFile may be equal) """ +- import Image ++ from PIL import Image + + try: + # Open the image From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:25:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C266A8CE; Tue, 7 Oct 2014 12:25:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD15386A; Tue, 7 Oct 2014 12:25:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CPse4056904; Tue, 7 Oct 2014 12:25:54 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CPnOP056879; Tue, 7 Oct 2014 12:25:49 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071225.s97CPnOP056879@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 12:25:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370319 - in head/devel/ftjam: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:25:55 -0000 Author: gahr Date: Tue Oct 7 12:25:49 2014 New Revision: 370319 URL: https://svnweb.freebsd.org/changeset/ports/370319 QAT: https://qat.redports.org/buildarchive/r370319/ Log: - Chase compiler warnings, upstream: https://savannah.nongnu.org/bugs/?42945 Added: head/devel/ftjam/files/ head/devel/ftjam/files/patch-builtins.c (contents, props changed) head/devel/ftjam/files/patch-compile.c (contents, props changed) head/devel/ftjam/files/patch-execunix.c (contents, props changed) head/devel/ftjam/files/patch-expand.c (contents, props changed) head/devel/ftjam/files/patch-fileunix.c (contents, props changed) head/devel/ftjam/files/patch-hash.c (contents, props changed) head/devel/ftjam/files/patch-hdrmacro.c (contents, props changed) head/devel/ftjam/files/patch-headers.c (contents, props changed) head/devel/ftjam/files/patch-jam.c (contents, props changed) head/devel/ftjam/files/patch-lists.c (contents, props changed) head/devel/ftjam/files/patch-make.c (contents, props changed) head/devel/ftjam/files/patch-make1.c (contents, props changed) head/devel/ftjam/files/patch-mkjambase.c (contents, props changed) head/devel/ftjam/files/patch-newstr.c (contents, props changed) head/devel/ftjam/files/patch-pathunix.c (contents, props changed) head/devel/ftjam/files/patch-rules.c (contents, props changed) head/devel/ftjam/files/patch-search.c (contents, props changed) head/devel/ftjam/files/patch-variable.c (contents, props changed) Modified: head/devel/ftjam/Makefile Modified: head/devel/ftjam/Makefile ============================================================================== --- head/devel/ftjam/Makefile Tue Oct 7 12:25:29 2014 (r370318) +++ head/devel/ftjam/Makefile Tue Oct 7 12:25:49 2014 (r370319) @@ -11,7 +11,8 @@ COMMENT= Small build tool that can be us OPTIONS_DEFINE= DOCS -USES= gmake tar:bzip2 +USES= dos2unix gmake tar:bzip2 +DOS2UNIX_GLOB= *.c PORTDOCS= Jam.html \ Jambase.html \ @@ -23,7 +24,7 @@ PORTDOCS= Jam.html \ PLIST_FILES= bin/${PORTNAME} -do-configure: +post-patch: @${REINPLACE_CMD} -e '/^CC/s|=|?=|; /^CFLAGS/s|=|?=|' \ ${BUILD_WRKSRC}/${MAKEFILE} Added: head/devel/ftjam/files/patch-builtins.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-builtins.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,108 @@ +--- builtins.c.orig 2006-06-05 12:52:18.000000000 +0200 ++++ builtins.c 2014-08-07 15:35:40.000000000 +0200 +@@ -134,9 +134,10 @@ + LOL *args, + int *jmp ) + { ++ (void)jmp; ++ + LIST *targets = lol_get( args, 0 ); + LIST *sources = lol_get( args, 1 ); +- int which = parse->num; + LIST *l; + + for( l = targets; l; l = list_next( l ) ) +@@ -173,6 +174,9 @@ + LOL *args, + int *jmp ) + { ++ (void)parse; ++ (void)jmp; ++ + list_print( lol_get( args, 0 ) ); + printf( "\n" ); + return L0; +@@ -191,6 +195,9 @@ + LOL *args, + int *jmp ) + { ++ (void)parse; ++ (void)jmp; ++ + list_print( lol_get( args, 0 ) ); + printf( "\n" ); + exit( EXITBAD ); /* yeech */ +@@ -210,6 +217,9 @@ + LOL *args, + int *jmp ) + { ++ (void)parse; ++ (void)jmp; ++ + LIST *l = lol_get( args, 0 ); + + for( ; l; l = list_next( l ) ) +@@ -234,6 +244,9 @@ + int status, + time_t time ) + { ++ (void)status; ++ (void)time; ++ + struct globbing *globbing = (struct globbing *)closure; + LIST *l; + PATHNAME f; +@@ -260,6 +273,9 @@ + LOL *args, + int *jmp ) + { ++ (void)parse; ++ (void)jmp; ++ + LIST *l = lol_get( args, 0 ); + LIST *r = lol_get( args, 1 ); + +@@ -284,6 +300,9 @@ + LOL *args, + int *jmp ) + { ++ (void)parse; ++ (void)jmp; ++ + LIST *l, *r; + LIST *result = 0; + +@@ -332,19 +351,22 @@ + LOL *args, + int *jmp ) + { +- LIST* l = lol_get( args, 0 ); ++ (void)parse; ++ (void)jmp; + +- for ( ; l; l = list_next(l) ) +- { +- TARGET* t = bindtarget( l->string ); ++ LIST* l = lol_get( args, 0 ); + +- /* scan file for header filename macro definitions */ +- if ( DEBUG_HEADER ) +- printf( "scanning '%s' for header file macro definitions\n", +- l->string ); ++ for ( ; l; l = list_next(l) ) ++ { ++ TARGET* t = bindtarget( l->string ); + +- macro_headers( t ); +- } ++ /* scan file for header filename macro definitions */ ++ if ( DEBUG_HEADER ) ++ printf( "scanning '%s' for header file macro definitions\n", ++ l->string ); + +- return L0; ++ macro_headers( t ); ++ } ++ ++ return L0; + } Added: head/devel/ftjam/files/patch-compile.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-compile.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,32 @@ +--- compile.c.orig 2014-08-07 15:35:58.000000000 +0200 ++++ compile.c 2014-08-07 15:36:52.000000000 +0200 +@@ -371,6 +371,8 @@ + LOL *args, + int *jmp ) + { ++ (void)jmp; ++ + /* voodoo 1 means: s is a copyable string */ + const char *s = parse->string; + return var_expand( L0, s, s + strlen( s ), args, 1 ); +@@ -434,6 +436,10 @@ + LOL *args, + int *jmp ) + { ++ (void)parse; ++ (void)args; ++ (void)jmp; ++ + return L0; + } + +@@ -692,6 +698,9 @@ + LOL *args, + int *jmp ) + { ++ (void)args; ++ (void)jmp; ++ + RULE *rule = bindrule( parse->string ); + LIST *params = 0; + PARSE *p; Added: head/devel/ftjam/files/patch-execunix.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-execunix.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,34 @@ +--- execunix.c.orig 2006-06-05 12:52:27.000000000 +0200 ++++ execunix.c 2014-08-07 15:38:48.000000000 +0200 +@@ -45,6 +45,13 @@ + + # ifdef USE_EXECUNIX + ++ ++# ifdef OS_FREEBSD ++# include ++# include ++# include ++# endif ++ + # ifdef OS_OS2 + # define USE_EXECNT + # include +@@ -85,6 +92,8 @@ + void + onintr( int disp ) + { ++ (void)disp; ++ + intr++; + printf( "...interrupted\n" ); + } +@@ -231,7 +240,7 @@ + # else + if ((pid = vfork()) == 0) + { +- execvp( argv[0], argv ); ++ execvp( argv[0], (char * const *)argv ); + _exit(127); + } + # endif Added: head/devel/ftjam/files/patch-expand.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-expand.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,52 @@ +--- expand.c.orig 2014-08-07 15:13:43.000000000 +0200 ++++ expand.c 2014-08-07 15:16:26.000000000 +0200 +@@ -83,7 +83,7 @@ + int depth; + + if( DEBUG_VAREXP ) +- printf( "expand '%.*s'\n", end - in, in ); ++ printf( "expand '%.*s'\n", (int)(end - in), in ); + + /* This gets alot of cases: $(<) and $(>) */ + +@@ -210,7 +210,7 @@ + + strcpy( varname, vars->string ); + +- if( colon = strchr( varname, MAGIC_COLON ) ) ++ if( ( colon = strchr( varname, MAGIC_COLON ) ) ) + { + *colon = '\0'; + var_edit_parse( colon + 1, &edits ); +@@ -220,11 +220,11 @@ + /* sub1 is x (0 default) */ + /* sub2 is length (-1 means forever) */ + +- if( bracket = strchr( varname, MAGIC_LEFT ) ) ++ if( ( bracket = strchr( varname, MAGIC_LEFT ) ) ) + { + char *dash; + +- if( dash = strchr( bracket + 1, '-' ) ) ++ if( ( dash = strchr( bracket + 1, '-' ) ) ) + *dash = '\0'; + + sub1 = atoi( bracket + 1 ) - 1; +@@ -454,7 +454,7 @@ + fp->ptr = ""; + fp->len = 0; + } +- else if( p = strchr( mods, MAGIC_COLON ) ) ++ else if( ( p = strchr( mods, MAGIC_COLON ) ) ) + { + *p = 0; + fp->ptr = ++mods; +@@ -544,7 +544,7 @@ + var_edit_quote( char *out ) + { + /* Handle quoting now */ +- int count, len; ++ int count; + char* p = out; + char* q; + Added: head/devel/ftjam/files/patch-fileunix.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-fileunix.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,23 @@ +--- fileunix.c.orig 2014-08-07 15:16:40.000000000 +0200 ++++ fileunix.c 2014-08-07 15:18:11.000000000 +0200 +@@ -51,6 +51,11 @@ + # include + # endif + ++# if defined( OS_FREEBSD ) ++# include ++# include ++# endif ++ + # if defined( OS_RHAPSODY ) || \ + defined( OS_MACOSX ) || \ + defined( OS_NEXT ) +@@ -141,7 +146,7 @@ + if( DEBUG_BINDSCAN ) + printf( "scan directory %s\n", dir ); + +- while( dirent = readdir( d ) ) ++ while( ( dirent = readdir( d ) ) ) + { + # ifdef old_sinix + /* Broken structure definition on sinix. */ Added: head/devel/ftjam/files/patch-hash.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-hash.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,19 @@ +--- hash.c.orig 2014-08-07 15:18:25.000000000 +0200 ++++ hash.c 2014-08-07 15:19:06.000000000 +0200 +@@ -239,14 +239,14 @@ + + for( i = nel; i > 0; i-- ) + { +- if( here = ( *tab++ != (ITEM *)0 ) ) ++ if( ( here = ( *tab++ != (ITEM *)0 ) ) ) + count++; + if( here && !run ) + sets++; + run = here; + } + +- printf( "%s table: %d+%d+%d (%dK+%dK) items+table+hash, %f density\n", ++ printf( "%s table: %d+%d+%d (%dK+%zuK) items+table+hash, %f density\n", + hp->name, + count, + hp->items.nel, Added: head/devel/ftjam/files/patch-hdrmacro.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-hdrmacro.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,23 @@ +--- hdrmacro.c.orig 2014-08-07 15:19:17.000000000 +0200 ++++ hdrmacro.c 2014-08-07 15:23:19.000000000 +0200 +@@ -39,8 +39,6 @@ + * just to invoke a rule. + */ + +-static LIST *header_macros1( LIST *l, char *file, int rec, regexp *re[] ); +- + /* this type is used to store a dictionary of file header macros */ + typedef struct header_macro + { +@@ -60,11 +58,9 @@ + void + macro_headers( TARGET *t ) + { +- LIST *hdrrule; + regexp *re; + FILE *f; + char buf[ 1024 ]; +- int i; + + if ( DEBUG_HEADER ) + printf( "macro header scan for %s\n", t->name ); Added: head/devel/ftjam/files/patch-headers.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-headers.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,10 @@ +--- headers.c.orig 2014-08-07 15:23:32.000000000 +0200 ++++ headers.c 2014-08-07 15:23:38.000000000 +0200 +@@ -53,7 +53,6 @@ + { + LIST *hdrscan; + LIST *hdrrule; +- LIST *hdrcache; + LOL lol; + + if( !( hdrscan = var_get( "HDRSCAN" ) ) || Added: head/devel/ftjam/files/patch-jam.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-jam.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,11 @@ +--- jam.c.orig 2014-08-07 15:39:04.000000000 +0200 ++++ jam.c 2014-08-07 15:39:24.000000000 +0200 +@@ -167,7 +167,7 @@ + # endif + + int +-main( int argc, char **argv, char **arg_environ ) ++main( int argc, char **argv ) + { + int n, num_targets; + const char *s; Added: head/devel/ftjam/files/patch-lists.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-lists.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,11 @@ +--- lists.c.orig 2014-08-07 15:25:31.000000000 +0200 ++++ lists.c 2014-08-07 15:26:01.000000000 +0200 +@@ -190,7 +190,7 @@ + + /* Any embedded "'s? Escape them */ + +- while( p = (char *)memchr( op, '"', ep - op ) ) ++ while( ( p = (char *)memchr( op, '"', ep - op ) ) ) + { + fwrite( op, p - op, 1, out ); + fputc( '\\', out ); Added: head/devel/ftjam/files/patch-make.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-make.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,47 @@ +--- make.c.orig 2014-08-07 15:26:13.000000000 +0200 ++++ make.c 2014-08-07 15:27:53.000000000 +0200 +@@ -69,6 +69,10 @@ + # define max( a,b ) ((a)>(b)?(a):(b)) + # endif + ++# if defined ( OS_FREEBSD ) ++# include // unlink(2) ++# endif ++ + typedef struct { + int temp; + int updating; +@@ -169,7 +173,7 @@ + COUNTS *counts, /* for reporting */ + int anyhow ) /* forcibly touch all (real) targets */ + { +- TARGETS *c, *d, *incs; ++ TARGETS *c, *incs; + TARGET *ptime = t; + time_t last, leaf, hlast; + int fate; +@@ -246,7 +250,7 @@ + case T_BIND_MISSING: + case T_BIND_PARENTS: + printf( "time\t--\t%s%s: %s\n", +- spaces( depth ), t->name, target_bind[ t->binding ] ); ++ spaces( depth ), t->name, target_bind[ (int)t->binding ] ); + break; + + case T_BIND_EXISTS: +@@ -481,13 +485,13 @@ + + if( DEBUG_MAKEPROG ) + printf( "made%s\t%s\t%s%s\n", +- flag, target_fate[ t->fate ], ++ flag, target_fate[ (int)t->fate ], + spaces( depth ), t->name ); + + if( DEBUG_CAUSES && + t->fate >= T_FATE_NEWER && + t->fate <= T_FATE_MISSING ) +- printf( "%s %s\n", target_fate[ t->fate ], t->name ); ++ printf( "%s %s\n", target_fate[ (int)t->fate ], t->name ); + } + + /* Added: head/devel/ftjam/files/patch-make1.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-make1.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,21 @@ +--- make1.c.orig 2014-08-07 15:28:04.000000000 +0200 ++++ make1.c 2014-08-07 15:28:43.000000000 +0200 +@@ -62,6 +62,10 @@ + # include "command.h" + # include "execcmd.h" + ++# if defined ( OS_FREEBSD ) ++# include // unlink(2) ++# endif ++ + static void make1a( TARGET *t, TARGET *parent ); + static void make1b( TARGET *t ); + static void make1c( TARGET *t ); +@@ -426,7 +430,6 @@ + SETTINGS *boundvars; + LIST *nt, *ns; + ACTIONS *a1; +- CMD *cmd; + int start, chunk, length, maxline; + + /* Only do rules with commands to execute. */ Added: head/devel/ftjam/files/patch-mkjambase.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-mkjambase.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,11 @@ +--- mkjambase.c.orig 2014-08-07 15:44:34.000000000 +0200 ++++ mkjambase.c 2014-08-07 15:44:46.000000000 +0200 +@@ -24,7 +24,7 @@ + # include + # include + +-main( int argc, char **argv, char **envp ) ++int main( int argc, char **argv, char **envp ) + { + char buf[ 1024 ]; + FILE *fin; Added: head/devel/ftjam/files/patch-newstr.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-newstr.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,10 @@ +--- newstr.c.orig 2014-08-07 15:39:56.000000000 +0200 ++++ newstr.c 2014-08-07 15:40:34.000000000 +0200 +@@ -82,6 +82,7 @@ + void + freestr( const char *s ) + { ++ (void)s; // is this supposed to be free(s); ? + } + + /* Added: head/devel/ftjam/files/patch-pathunix.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-pathunix.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,19 @@ +--- pathunix.c.orig 2006-06-05 12:52:12.000000000 +0200 ++++ pathunix.c 2014-08-07 15:41:24.000000000 +0200 +@@ -110,7 +110,7 @@ + p = 0; + q = file; + +- while( q = (char *)memchr( q, '.', end - q ) ) ++ while( ( q = (char *)memchr( q, '.', end - q ) ) ) + p = q++; + + if( p ) +@@ -136,6 +136,7 @@ + char *file, + int binding ) + { ++ (void)binding; + /* Start with the grist. If the current grist isn't */ + /* surrounded by <>'s, add them. */ + Added: head/devel/ftjam/files/patch-rules.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-rules.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,20 @@ +--- rules.c.orig 2014-08-07 15:29:24.000000000 +0200 ++++ rules.c 2014-08-07 15:29:43.000000000 +0200 +@@ -185,8 +185,6 @@ + TARGETS *chain, + TARGETS *targets ) + { +- TARGETS *c; +- + if( !targets ) + return chain; + else if( !chain ) +@@ -297,7 +295,7 @@ + SETTINGS * + copysettings( SETTINGS *from ) + { +- SETTINGS *head = 0, *v; ++ SETTINGS *head = 0; + + for( ; from; from = from->next ) + { Added: head/devel/ftjam/files/patch-search.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-search.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,20 @@ +--- search.c.orig 2014-08-07 15:30:23.000000000 +0200 ++++ search.c 2014-08-07 15:30:50.000000000 +0200 +@@ -34,7 +34,7 @@ + f->f_grist.ptr = 0; + f->f_grist.len = 0; + +- if( varlist = var_get( "LOCATE" ) ) ++ if( ( varlist = var_get( "LOCATE" ) ) ) + { + f->f_root.ptr = varlist->string; + f->f_root.len = strlen( varlist->string ); +@@ -48,7 +48,7 @@ + + return newstr( buf ); + } +- else if( varlist = var_get( "SEARCH" ) ) ++ else if( ( varlist = var_get( "SEARCH" ) ) ) + { + while( varlist ) + { Added: head/devel/ftjam/files/patch-variable.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ftjam/files/patch-variable.c Tue Oct 7 12:25:49 2014 (r370319) @@ -0,0 +1,35 @@ +--- variable.c.orig 2006-06-05 12:52:08.000000000 +0200 ++++ variable.c 2014-08-07 15:43:50.000000000 +0200 +@@ -88,7 +88,7 @@ + + if( ( val = strchr( *e, '=' ) ) || ( val = *e + strlen( *e ) ) ) + # else +- if( val = strchr( *e, '=' ) ) ++ if( ( val = strchr( *e, '=' ) ) ) + # endif + { + LIST *l = L0; +@@ -112,11 +112,11 @@ + + /* Do the split */ + +- for( pp = val + 1; p = strchr( pp, split ); pp = p + 1 ) ++ for( pp = val + 1; ( p = strchr( pp, split ) ); pp = p + 1 ) + { +- int len = p - pp; ++ size_t len = p - pp; + +- if ( len >= sizeof(buf) ) ++ if ( ( len >= sizeof(buf) ) ) + len = sizeof(buf)-1; + + strncpy( buf, pp, len ); +@@ -203,7 +203,7 @@ + + /* Separate with space */ + +- if( l = list_next( l ) ) ++ if( ( l = list_next( l ) ) ) + *out++ = ' '; + } + From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:27:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D86B9CE; Tue, 7 Oct 2014 12:27:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3278883; Tue, 7 Oct 2014 12:27:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CRN02057241; Tue, 7 Oct 2014 12:27:23 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CRM19057236; Tue, 7 Oct 2014 12:27:22 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071227.s97CRM19057236@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 12:27:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370320 - in head/devel: . tclbsd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:27:24 -0000 Author: gahr Date: Tue Oct 7 12:27:22 2014 New Revision: 370320 URL: https://svnweb.freebsd.org/changeset/ports/370320 QAT: https://qat.redports.org/buildarchive/r370320/ Log: - New port: devel/tclbsd tclbsd provides a way for Tcl programs to exercise many interesting and useful system calls and library routines available to C programs on versions of BSD UNIX such as FreeBSD. Many of the interfaces also work with Linux and other non-BSD UNIX variants as well. WWW: https://github.com/flightaware/tclbsd Added: head/devel/tclbsd/ head/devel/tclbsd/Makefile (contents, props changed) head/devel/tclbsd/distinfo (contents, props changed) head/devel/tclbsd/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 7 12:25:49 2014 (r370319) +++ head/devel/Makefile Tue Oct 7 12:27:22 2014 (r370320) @@ -4693,6 +4693,7 @@ SUBDIR += tcl-signal SUBDIR += tcl-trf SUBDIR += tclap + SUBDIR += tclbsd SUBDIR += tclcheck SUBDIR += tclgetopts SUBDIR += tcllauncher Added: head/devel/tclbsd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tclbsd/Makefile Tue Oct 7 12:27:22 2014 (r370320) @@ -0,0 +1,36 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= tclbsd +PORTVERSION= 1.6 +CATEGORIES= devel + +MAINTAINER= tcltk@FreeBSD.org +COMMENT= Tcl interface to various system calls and library routines + +LICENSE= MIT + +OPTIONS_DEFINE= DOCS +PORTDOCS= bsd.pdf + +USES= tcl +USE_AUTOTOOLS= autoconf + +USE_GITHUB= yes +GH_ACCOUNT= flightaware +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 1601307 + +CONFIGURE_ARGS+=--exec-prefix=${PREFIX} \ + --with-tcl=${TCL_LIBDIR} + +PLIST_FILES= lib/BSD${PORTVERSION}/bsd_procs.tcl \ + lib/BSD${PORTVERSION}/libBSD${PORTVERSION}.so \ + lib/BSD${PORTVERSION}/pkgIndex.tcl \ + man/mann/bsd.n.gz + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/bsd.pdf ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/tclbsd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tclbsd/distinfo Tue Oct 7 12:27:22 2014 (r370320) @@ -0,0 +1,2 @@ +SHA256 (tclbsd-1.6.tar.gz) = e6520ad27056e05d931ea2ecd98e0b897c73fd35e89c6da662f4d80440d824e2 +SIZE (tclbsd-1.6.tar.gz) = 184686 Added: head/devel/tclbsd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tclbsd/pkg-descr Tue Oct 7 12:27:22 2014 (r370320) @@ -0,0 +1,6 @@ +tclbsd provides a way for Tcl programs to exercise many interesting and useful +system calls and library routines available to C programs on versions of BSD +UNIX such as FreeBSD. Many of the interfaces also work with Linux and other +non-BSD UNIX variants as well. + +WWW: https://github.com/flightaware/tclbsd From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:28:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 833FAABE; Tue, 7 Oct 2014 12:28:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FC3888C; Tue, 7 Oct 2014 12:28:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CSTBt057466; Tue, 7 Oct 2014 12:28:29 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CSTQ8057465; Tue, 7 Oct 2014 12:28:29 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071228.s97CSTQ8057465@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:28:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370321 - head/graphics/libcdr01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:28:29 -0000 Author: bapt Date: Tue Oct 7 12:28:28 2014 New Revision: 370321 URL: https://svnweb.freebsd.org/changeset/ports/370321 QAT: https://qat.redports.org/buildarchive/r370321/ Log: Fix fetching Modified: head/graphics/libcdr01/Makefile Modified: head/graphics/libcdr01/Makefile ============================================================================== --- head/graphics/libcdr01/Makefile Tue Oct 7 12:27:22 2014 (r370320) +++ head/graphics/libcdr01/Makefile Tue Oct 7 12:28:28 2014 (r370321) @@ -3,7 +3,7 @@ PORTNAME= libcdr PORTVERSION= 0.1.0 CATEGORIES= graphics devel -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= LODEV PKGNAMESUFFIX= 01 MAINTAINER= office@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:29:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 14D18BAA; Tue, 7 Oct 2014 12:29:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01703893; Tue, 7 Oct 2014 12:29:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CSxMi057617; Tue, 7 Oct 2014 12:28:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CSxAp057616; Tue, 7 Oct 2014 12:28:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071228.s97CSxAp057616@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:28:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370322 - head/graphics/libfreehand X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:29:00 -0000 Author: bapt Date: Tue Oct 7 12:28:59 2014 New Revision: 370322 URL: https://svnweb.freebsd.org/changeset/ports/370322 QAT: https://qat.redports.org/buildarchive/r370322/ Log: Use new LODEV master site Modified: head/graphics/libfreehand/Makefile Modified: head/graphics/libfreehand/Makefile ============================================================================== --- head/graphics/libfreehand/Makefile Tue Oct 7 12:28:28 2014 (r370321) +++ head/graphics/libfreehand/Makefile Tue Oct 7 12:28:59 2014 (r370322) @@ -4,7 +4,7 @@ PORTNAME= libfreehand PORTVERSION= 0.1.0 PORTREVISION= 2 CATEGORIES= graphics -MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ +MASTER_SITES= LODEV MAINTAINER= office@FreeBSD.org COMMENT= Library providing ability to interpret and import Adobe/Macromedia drawings From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:31:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D044CCBD; Tue, 7 Oct 2014 12:31:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BCB788A7; Tue, 7 Oct 2014 12:31:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CVKmY060526; Tue, 7 Oct 2014 12:31:20 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CVKZf060525; Tue, 7 Oct 2014 12:31:20 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071231.s97CVKZf060525@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:31:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370323 - head/graphics/libfreehand X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:31:20 -0000 Author: bapt Date: Tue Oct 7 12:31:19 2014 New Revision: 370323 URL: https://svnweb.freebsd.org/changeset/ports/370323 QAT: https://qat.redports.org/buildarchive/r370323/ Log: Fix build without gperf Modified: head/graphics/libfreehand/Makefile Modified: head/graphics/libfreehand/Makefile ============================================================================== --- head/graphics/libfreehand/Makefile Tue Oct 7 12:28:59 2014 (r370322) +++ head/graphics/libfreehand/Makefile Tue Oct 7 12:31:19 2014 (r370323) @@ -15,8 +15,9 @@ LICENSE_COMB= dual LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge GNU_CONFIGURE= yes -USES= libtool pathfix pkgconfig tar:xz +USES= gperf perl5 libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes +USE_PERL5= build CONFIGURE_ARGS= --disable-werror --without-docs INSTALL_TARGET= install-strip From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:33:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6FC7E3C; Tue, 7 Oct 2014 12:33:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9375194E; Tue, 7 Oct 2014 12:33:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CXxSU061832; Tue, 7 Oct 2014 12:33:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CXxEo061831; Tue, 7 Oct 2014 12:33:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071233.s97CXxEo061831@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:33:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370324 - head/textproc/libabw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:33:59 -0000 Author: bapt Date: Tue Oct 7 12:33:58 2014 New Revision: 370324 URL: https://svnweb.freebsd.org/changeset/ports/370324 QAT: https://qat.redports.org/buildarchive/r370324/ Log: Fix build without gperf Modified: head/textproc/libabw/Makefile Modified: head/textproc/libabw/Makefile ============================================================================== --- head/textproc/libabw/Makefile Tue Oct 7 12:31:19 2014 (r370323) +++ head/textproc/libabw/Makefile Tue Oct 7 12:33:58 2014 (r370324) @@ -15,10 +15,11 @@ LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/include/boost/algorithm/string.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge -USES= libtool pathfix pkgconfig tar:xz +USES= gperf perl5 libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes USE_GNOME= libxml2 GNU_CONFIGURE= yes +USE_PERL5= build INSTALL_TARGET= install-strip CPPFLAGS= -I${LOCALBASE}/include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:36:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FD58F41; Tue, 7 Oct 2014 12:36:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F09A1969; Tue, 7 Oct 2014 12:36:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CaSIm062267; Tue, 7 Oct 2014 12:36:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CaSIh062266; Tue, 7 Oct 2014 12:36:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071236.s97CaSIh062266@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:36:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370325 - head/textproc/libvisio01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:36:29 -0000 Author: bapt Date: Tue Oct 7 12:36:28 2014 New Revision: 370325 URL: https://svnweb.freebsd.org/changeset/ports/370325 QAT: https://qat.redports.org/buildarchive/r370325/ Log: Fix build Modified: head/textproc/libvisio01/Makefile Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio01/Makefile Tue Oct 7 12:33:58 2014 (r370324) +++ head/textproc/libvisio01/Makefile Tue Oct 7 12:36:28 2014 (r370325) @@ -21,6 +21,7 @@ CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_PERL5= build +USE_GNOME= libxml2 USES= gmake gperf libtool pathfix perl5 pkgconfig tar:xz INSTALL_TARGET= install-strip From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:42:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69621ED; Tue, 7 Oct 2014 12:42:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BA35A11; Tue, 7 Oct 2014 12:42:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Cg8OR066406; Tue, 7 Oct 2014 12:42:08 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Cg7Uu066404; Tue, 7 Oct 2014 12:42:07 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071242.s97Cg7Uu066404@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 12:42:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370326 - in head/games/fretsonfire: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:42:08 -0000 Author: wg Date: Tue Oct 7 12:42:07 2014 New Revision: 370326 URL: https://svnweb.freebsd.org/changeset/ports/370326 QAT: https://qat.redports.org/buildarchive/r370326/ Log: games/fretsonfire: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/games/fretsonfire/files/patch-src__Texture.py (contents, props changed) Modified: head/games/fretsonfire/Makefile Modified: head/games/fretsonfire/Makefile ============================================================================== --- head/games/fretsonfire/Makefile Tue Oct 7 12:36:28 2014 (r370325) +++ head/games/fretsonfire/Makefile Tue Oct 7 12:42:07 2014 (r370326) @@ -3,7 +3,7 @@ PORTNAME= fretsonfire PORTVERSION= 1.3.110 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games python MASTER_SITES= SF DISTNAME= ${PORTNAME:S/f/F/g:S/o/O/}-${PORTVERSION} @@ -15,11 +15,10 @@ COMMENT= Game of musical skill and fast RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}game>=0:${PORTSDIR}/devel/py-game \ ${PYTHON_PKGNAMEPREFIX}opengl>=0:${PORTSDIR}/graphics/py-opengl \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow \ ${LOCALBASE}/share/${PORTNAME}/default.ttf:${PORTSDIR}/games/fretsonfire-data -USES= dos2unix -USE_PYTHON= yes +USES= dos2unix python DOS2UNIX_FILES= *.txt NO_BUILD= yes Added: head/games/fretsonfire/files/patch-src__Texture.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/fretsonfire/files/patch-src__Texture.py Tue Oct 7 12:42:07 2014 (r370326) @@ -0,0 +1,15 @@ +--- src/Texture.py.orig 2014-10-07 12:30:12 UTC ++++ src/Texture.py +@@ -24,10 +24,10 @@ + + import Log + import Config +-import Image ++from PIL import Image + import pygame + import StringIO +-import PngImagePlugin ++from PIL import PngImagePlugin + from OpenGL.GL import * + from OpenGL.GLU import * + from Queue import Queue, Empty From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:45:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F5031FC; Tue, 7 Oct 2014 12:45:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02043A29; Tue, 7 Oct 2014 12:45:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Cj4SJ066985; Tue, 7 Oct 2014 12:45:04 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Cj3ak066974; Tue, 7 Oct 2014 12:45:03 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071245.s97Cj3ak066974@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 12:45:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370327 - head/lang/tclX/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:45:05 -0000 Author: gahr Date: Tue Oct 7 12:45:02 2014 New Revision: 370327 URL: https://svnweb.freebsd.org/changeset/ports/370327 QAT: https://qat.redports.org/buildarchive/r370327/ Log: - Chase compiler warnings PR: 192370 Submitted by: gahr Approved by: maintainer (timeout > 2 months) Added: head/lang/tclX/files/patch-generic_tclXchmod.c (contents, props changed) head/lang/tclX/files/patch-generic_tclXdup.c (contents, props changed) head/lang/tclX/files/patch-generic_tclXfcntl.c (contents, props changed) head/lang/tclX/files/patch-generic_tclXhandles.c (contents, props changed) head/lang/tclX/files/patch-generic_tclXutil.c (contents, props changed) head/lang/tclX/files/patch-unix_tclXunixDup.c (contents, props changed) Added: head/lang/tclX/files/patch-generic_tclXchmod.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/tclX/files/patch-generic_tclXchmod.c Tue Oct 7 12:45:02 2014 (r370327) @@ -0,0 +1,10 @@ +--- generic/tclXchmod.c.orig 2014-07-30 17:45:54.000000000 +0200 ++++ generic/tclXchmod.c 2014-07-30 17:48:09.000000000 +0200 +@@ -353,6 +353,7 @@ + modeInfo.absMode = modeBits; + modeInfo.symMode = NULL; + } else { ++ modeInfo.absMode = 0; // not used, but keeps compilers happy + modeInfo.symMode = modeString; + } + Added: head/lang/tclX/files/patch-generic_tclXdup.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/tclX/files/patch-generic_tclXdup.c Tue Oct 7 12:45:02 2014 (r370327) @@ -0,0 +1,11 @@ +--- generic/tclXdup.c.orig 2014-07-30 16:44:06.000000000 +0200 ++++ generic/tclXdup.c 2014-07-30 16:45:30.000000000 +0200 +@@ -128,7 +128,7 @@ + char *targetChannelId; + { + Tcl_Channel srcChannel, newChannel = NULL; +- Tcl_ChannelType *channelType; ++ const Tcl_ChannelType *channelType; + int mode; + + srcChannel = Tcl_GetChannel (interp, srcChannelId, &mode); Added: head/lang/tclX/files/patch-generic_tclXfcntl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/tclX/files/patch-generic_tclXfcntl.c Tue Oct 7 12:45:02 2014 (r370327) @@ -0,0 +1,12 @@ +--- generic/tclXfcntl.c.orig 2014-07-30 16:45:58.000000000 +0200 ++++ generic/tclXfcntl.c 2014-07-30 16:46:21.000000000 +0200 +@@ -162,7 +162,8 @@ + int mode; + int attrib; + { +- int value, optValue; ++ int value = 0; ++ int optValue; + + switch (attrib) { + case ATTR_RDONLY: Added: head/lang/tclX/files/patch-generic_tclXhandles.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/tclX/files/patch-generic_tclXhandles.c Tue Oct 7 12:45:02 2014 (r370327) @@ -0,0 +1,11 @@ +--- generic/tclXhandles.c.orig 2014-07-30 17:35:38.000000000 +0200 ++++ generic/tclXhandles.c 2014-07-30 17:35:43.000000000 +0200 +@@ -567,7 +567,7 @@ + + entryHdrPtr = HEADER_AREA (entryPtr); + if (entryHdrPtr->freeLink != ALLOCATED_IDX) +- panic ("Tcl_HandleFree: entry not allocated %x\n", entryHdrPtr); ++ panic ("Tcl_HandleFree: entry not allocated %p\n", entryHdrPtr); + + entryHdrPtr->freeLink = tblHdrPtr->freeHeadIdx; + tblHdrPtr->freeHeadIdx = Added: head/lang/tclX/files/patch-generic_tclXutil.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/tclX/files/patch-generic_tclXutil.c Tue Oct 7 12:45:02 2014 (r370327) @@ -0,0 +1,20 @@ +--- generic/tclXutil.c.orig 2014-07-30 16:56:00.000000000 +0200 ++++ generic/tclXutil.c 2014-07-30 16:56:50.000000000 +0200 +@@ -870,7 +870,7 @@ + TclX_IsNullObj (objPtr) + Tcl_Obj *objPtr; + { +- static Tcl_ObjType *listType = NULL, *stringType = NULL; ++ const static Tcl_ObjType *listType = NULL, *stringType = NULL; + int length; + + /* +@@ -956,7 +956,7 @@ + { + Tcl_Obj **saveObjv; + int saveObjc; +- long flags; ++ long flags = 0; + + if ((Tcl_ListObjGetElements (NULL, saveObjPtr, &saveObjc, + &saveObjv) != TCL_OK) || Added: head/lang/tclX/files/patch-unix_tclXunixDup.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/tclX/files/patch-unix_tclXunixDup.c Tue Oct 7 12:45:02 2014 (r370327) @@ -0,0 +1,11 @@ +--- unix/tclXunixDup.c.orig 2014-07-30 16:57:13.000000000 +0200 ++++ unix/tclXunixDup.c 2014-07-30 17:00:42.000000000 +0200 +@@ -84,7 +84,7 @@ + char *targetChannelId; + { + ClientData handle; +- Tcl_ChannelType *channelType; ++ const Tcl_ChannelType *channelType; + Tcl_Channel newChannel = NULL; + int srcFileNum, newFileNum = -1; + From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:47:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B7B831B; Tue, 7 Oct 2014 12:47:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37AFAA4D; Tue, 7 Oct 2014 12:47:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CliEQ067401; Tue, 7 Oct 2014 12:47:44 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CliHh067400; Tue, 7 Oct 2014 12:47:44 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071247.s97CliHh067400@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 12:47:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370328 - head/graphics/libetonyek01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:47:44 -0000 Author: bapt Date: Tue Oct 7 12:47:43 2014 New Revision: 370328 URL: https://svnweb.freebsd.org/changeset/ports/370328 QAT: https://qat.redports.org/buildarchive/r370328/ Log: Remove zlib from required dependencies for libetonyek01 Modified: head/graphics/libetonyek01/Makefile Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek01/Makefile Tue Oct 7 12:45:02 2014 (r370327) +++ head/graphics/libetonyek01/Makefile Tue Oct 7 12:47:43 2014 (r370328) @@ -2,6 +2,7 @@ PORTNAME= libetonyek PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 @@ -32,6 +33,9 @@ TEST_CONFIGURE_OFF= --disable-tests .include +post-patch: + @${REINPLACE_CMD} -e "s,zlib,,g" ${WRKSRC}/libetonyek.pc.in + .if ${PORT_OPTIONS:MTEST} post-build: @cd ${WRKSRC}/src/test && ${MAKE_CMD} check From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:49:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FAF644D; Tue, 7 Oct 2014 12:49:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C3B9A63; Tue, 7 Oct 2014 12:49:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Cn2Yp067671; Tue, 7 Oct 2014 12:49:02 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Cn27E067670; Tue, 7 Oct 2014 12:49:02 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071249.s97Cn27E067670@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 12:49:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370329 - head/devel/ninja X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:49:02 -0000 Author: gahr Date: Tue Oct 7 12:49:01 2014 New Revision: 370329 URL: https://svnweb.freebsd.org/changeset/ports/370329 QAT: https://qat.redports.org/buildarchive/r370329/ Log: - Convert to USES=python Modified: head/devel/ninja/Makefile Modified: head/devel/ninja/Makefile ============================================================================== --- head/devel/ninja/Makefile Tue Oct 7 12:47:43 2014 (r370328) +++ head/devel/ninja/Makefile Tue Oct 7 12:49:01 2014 (r370329) @@ -17,7 +17,7 @@ GH_TAGNAME= v${PORTVERSION} GH_COMMIT= 85e13c1 CONFLICTS= irc/ninja-[0-9]* -USE_PYTHON_BUILD= yes +USES= python:build PLIST_FILES= bin/ninja PORTDOCS= COPYING HACKING.md README manual.asciidoc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 12:54:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB013594; Tue, 7 Oct 2014 12:54:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D588BB25; Tue, 7 Oct 2014 12:54:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97CskhU071817; Tue, 7 Oct 2014 12:54:46 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97CskSR071816; Tue, 7 Oct 2014 12:54:46 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071254.s97CskSR071816@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 12:54:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370330 - head/devel/tkcon/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 12:54:47 -0000 Author: gahr Date: Tue Oct 7 12:54:46 2014 New Revision: 370330 URL: https://svnweb.freebsd.org/changeset/ports/370330 QAT: https://qat.redports.org/buildarchive/r370330/ Log: - Always ask confirmation before closing the console - Upstream: http://sourceforge.net/p/tkcon/feature-requests/8/ Modified: head/devel/tkcon/files/patch-tkcon.tcl Modified: head/devel/tkcon/files/patch-tkcon.tcl ============================================================================== --- head/devel/tkcon/files/patch-tkcon.tcl Tue Oct 7 12:49:01 2014 (r370329) +++ head/devel/tkcon/files/patch-tkcon.tcl Tue Oct 7 12:54:46 2014 (r370330) @@ -1,5 +1,5 @@ --- tkcon.tcl.orig 2009-02-27 01:17:21.000000000 +0100 -+++ tkcon.tcl 2013-09-26 16:10:14.000000000 +0200 ++++ tkcon.tcl 2013-10-01 11:43:39.000000000 +0200 @@ -1,6 +1,6 @@ #!/bin/sh # \ @@ -28,7 +28,30 @@ if {![catch {package require ActiveTcl} ver]} { set cmd "" if {$tcl_platform(platform) == "windows"} { -@@ -5018,6 +5018,11 @@ +@@ -2497,13 +2497,19 @@ + proc ::tkcon::Destroy {{slave {}}} { + variable PRIV + ++ set confirmed 0 ++ if {[tk_messageBox -parent $PRIV(root) -title "Close window?" \ ++ -message "Close the current window?" -default no \ ++ -icon question -type yesno] == "yes"} { set confirmed 1} ++ ++ if {!$confirmed} { ++ return ++ } ++ + # Just close on the last one + if {[llength $PRIV(interps)] == 1} { exit } + if {"" == $slave} { + ## Main interpreter close request +- if {[tk_messageBox -parent $PRIV(root) -title "Quit tkcon?" \ +- -message "Close all windows and exit tkcon?" \ +- -icon question -type yesno] == "yes"} { exit } + return + } elseif {$slave == $::tkcon::OPT(exec)} { + set name [tk appname] +@@ -5018,6 +5024,11 @@ ## We really didn't want the newline insertion bind TkConsole {} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:01:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7129F84B; Tue, 7 Oct 2014 13:01:49 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DE65C52; Tue, 7 Oct 2014 13:01:48 +0000 (UTC) Received: from [10.31.9.122] (unknown [213.225.137.129]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id E89A043552; Tue, 7 Oct 2014 08:01:30 -0500 (CDT) Message-ID: <5433E41C.9050803@marino.st> Date: Tue, 07 Oct 2014 15:01:16 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370280 - head/Mk/Uses References: <201410070932.s979WsIa071100@svn.freebsd.org> In-Reply-To: <201410070932.s979WsIa071100@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:01:49 -0000 On 10/7/2014 11:32, Baptiste Daroussin wrote: > Author: bapt > Date: Tue Oct 7 09:32:53 2014 > New Revision: 370280 > URL: https://svnweb.freebsd.org/changeset/ports/370280 > QAT: https://qat.redports.org/buildarchive/r370280/ > > Log: > Add a use to handle gperf dependency > It uses gperf from base if it exists and its version is 3.x.x > Otherwise it uses gperf from ports > > Added: > head/Mk/Uses/gperf.mk (contents, props changed) > Thank you! I have a bunch of dports I can grep for the initial set of ports that need this. John From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:05:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85EC7991; Tue, 7 Oct 2014 13:05:19 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5B633C83; Tue, 7 Oct 2014 13:05:18 +0000 (UTC) Received: from [10.31.9.122] (unknown [213.225.137.129]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 8C2C543552; Tue, 7 Oct 2014 08:05:07 -0500 (CDT) Message-ID: <5433E4F7.9030903@marino.st> Date: Tue, 07 Oct 2014 15:04:55 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mathieu Arnold , John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files References: <201410062258.s96MwoqK063529@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:05:19 -0000 On 10/7/2014 11:59, Mathieu Arnold wrote: > +--On 6 octobre 2014 22:58:50 +0000 John Marino wrote: > | +@cwd /boot/kernel > | +%%A%%hv_ata_pci_disengage.ko > | +%%A%%hv_netvsc.ko > > Please, do not use @cwd, it is confusing, and not needed since pkg_* has > gotten out. List files with their path like this : > %%A%%/boot/kernel/hv_ata_pci_disengage.ko In my defense: 1) It works (tested pretty thoroughly) 2) The alternative to @cwd is not documented in UPDATING so I had no idea what the alternative was. 3) cwd is documented here with no alternative: https://www.freebsd.org/doc/en/books/porters-handbook/plist-keywords.html So it's not really fair to bang on us for stuff that is undocumented. right? This theme is getting repetitive too. John From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:09:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F1ADBE0; Tue, 7 Oct 2014 13:09:55 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15D36CBA; Tue, 7 Oct 2014 13:09:55 +0000 (UTC) Received: from [10.31.9.122] (unknown [213.225.137.129]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id C0D3043552; Tue, 7 Oct 2014 08:09:43 -0500 (CDT) Message-ID: <5433E60C.6070602@marino.st> Date: Tue, 07 Oct 2014 15:09:32 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370293 - in head/emulators/hyperv-is: . files References: <201410071052.s97AqAtu010821@svn.freebsd.org> In-Reply-To: <201410071052.s97AqAtu010821@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:09:55 -0000 You just broke the port. PORTVERSION must be 1.1, otherwise it breaks for everything other than release 10.0. That part needs to be reverted. On 10/7/2014 12:52, Baptiste Daroussin wrote: > Author: bapt > Date: Tue Oct 7 10:52:10 2014 > New Revision: 370293 > URL: https://svnweb.freebsd.org/changeset/ports/370293 > QAT: https://qat.redports.org/buildarchive/r370293/ > > Log: > Big cleanup > directly specify the pkg-message used instead of trying to manually generate it > avoid using @cwd > Do not touch base and push everything in PREFIX > This port needs way more love You can't imagine how much love I gave it last night. :( From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:17:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 25DDDDB0; Tue, 7 Oct 2014 13:17:39 +0000 (UTC) Received: from mail-wi0-x22d.google.com (mail-wi0-x22d.google.com [IPv6:2a00:1450:400c:c05::22d]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 400A6D90; Tue, 7 Oct 2014 13:17:38 +0000 (UTC) Received: by mail-wi0-f173.google.com with SMTP id fb4so7803396wid.12 for ; Tue, 07 Oct 2014 06:17:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=lv33cV2nndn/Wr7jKIQZKk1kGKx7GF5TCwRGWP2mLBs=; b=Du3x5O7HagAKS8TNbJ/qHID+Fxh6OSz2MmlHf+zPxABFDG3vxxa0n251xIJWyn0/Yu 5LEZewyFjR9Nz1yF5FHjOK9mTploSXxHC76m8N6RNvOuALINGne+4L3sEL87A/j7UCDe 0h4gGvGhzDGslsvWIjNzWtTkO0uGFKI6lfRW8IeXRyUgZWYPQ406LDTxEbzlYAybuigc /ctgceraCJxS5rjtToEOd25gzJVN4JntKwMVcUoPWnHKOPQHW35uC5a+PjRbe48hrRyl FV3gQ11qXzgEGex4N+KXj41+bS9AMGzzh6T/O2uYykAQ6lQ8W98Xs0Zkf8aRB4eYAly+ /gsw== X-Received: by 10.180.101.100 with SMTP id ff4mr4492285wib.43.1412687856299; Tue, 07 Oct 2014 06:17:36 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id cb6sm1252333wjc.30.2014.10.07.06.17.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Oct 2014 06:17:35 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 7 Oct 2014 15:17:33 +0200 From: Baptiste Daroussin To: marino@freebsd.org Subject: Re: svn commit: r370293 - in head/emulators/hyperv-is: . files Message-ID: <20141007131732.GJ37670@ivaldir.etoilebsd.net> References: <201410071052.s97AqAtu010821@svn.freebsd.org> <5433E60C.6070602@marino.st> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qo8f1a4rgWw9S/zY" Content-Disposition: inline In-Reply-To: <5433E60C.6070602@marino.st> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:17:39 -0000 --Qo8f1a4rgWw9S/zY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 07, 2014 at 03:09:32PM +0200, John Marino wrote: > You just broke the port. > PORTVERSION must be 1.1, otherwise it breaks for everything other than > release 10.0. That part needs to be reverted. >=20 >=20 > On 10/7/2014 12:52, Baptiste Daroussin wrote: > > Author: bapt > > Date: Tue Oct 7 10:52:10 2014 > > New Revision: 370293 > > URL: https://svnweb.freebsd.org/changeset/ports/370293 > > QAT: https://qat.redports.org/buildarchive/r370293/ > >=20 > > Log: > > Big cleanup > > directly specify the pkg-message used instead of trying to manually g= enerate it > > avoid using @cwd > > Do not touch base and push everything in PREFIX > > This port needs way more love >=20 > You can't imagine how much love I gave it last night. :( Oh I can :) Actually the last love needed is switch to USES=3Dkmod and do not hardcode /usr/local regards, Bapt --Qo8f1a4rgWw9S/zY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlQz5+wACgkQ8kTtMUmk6Ex6EwCgoJ/EhwWgcXDUptnoLcbcCDUB 8UYAnRgC2EamwOhfCD9L4/WLnavJkQCQ =cKwe -----END PGP SIGNATURE----- --Qo8f1a4rgWw9S/zY-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:27:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5DEC5749; Tue, 7 Oct 2014 13:27:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E72CEB1; Tue, 7 Oct 2014 13:27:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97DRkx9087248; Tue, 7 Oct 2014 13:27:46 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97DRiS3087240; Tue, 7 Oct 2014 13:27:44 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071327.s97DRiS3087240@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 13:27:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370331 - in head/devel: . liborcus liborcus07 liborcus07/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:27:46 -0000 Author: bapt Date: Tue Oct 7 13:27:44 2014 New Revision: 370331 URL: https://svnweb.freebsd.org/changeset/ports/370331 QAT: https://qat.redports.org/buildarchive/r370331/ Log: Import liborcus07 Make sure it does not conflicts with liborcus Added: head/devel/liborcus07/ - copied from r370181, head/devel/liborcus/ Deleted: head/devel/liborcus07/files/ Modified: head/devel/Makefile head/devel/liborcus/Makefile head/devel/liborcus/pkg-plist head/devel/liborcus07/Makefile head/devel/liborcus07/distinfo head/devel/liborcus07/pkg-plist Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 7 12:54:46 2014 (r370330) +++ head/devel/Makefile Tue Oct 7 13:27:44 2014 (r370331) @@ -1088,6 +1088,7 @@ SUBDIR += libopensync022 SUBDIR += libopkele SUBDIR += liborcus + SUBDIR += liborcus07 SUBDIR += libosinfo SUBDIR += libosmo-abis SUBDIR += libosmo-sccp Modified: head/devel/liborcus/Makefile ============================================================================== --- head/devel/liborcus/Makefile Tue Oct 7 12:54:46 2014 (r370330) +++ head/devel/liborcus/Makefile Tue Oct 7 13:27:44 2014 (r370331) @@ -2,6 +2,7 @@ PORTNAME= liborcus PORTVERSION= 0.5.2 +PORTREVISION= 1 CATEGORIES= devel misc MASTER_SITES= http://kohei.us/files/orcus/src/ @@ -26,4 +27,7 @@ CONFIGURE_ENV= ZLIB_CFLAGS="-I/usr/inclu CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +post-stage: + @${RM} -f ${STAGEDIR}${PREFIX}/bin/* + .include Modified: head/devel/liborcus/pkg-plist ============================================================================== --- head/devel/liborcus/pkg-plist Tue Oct 7 12:54:46 2014 (r370330) +++ head/devel/liborcus/pkg-plist Tue Oct 7 13:27:44 2014 (r370331) @@ -1,6 +1,3 @@ -bin/orcus-mso-encryption -bin/orcus-xml-dump -bin/orcus-zip-dump include/liborcus-0.6/orcus/base64.hpp include/liborcus-0.6/orcus/cell_buffer.hpp include/liborcus-0.6/orcus/css_parser.hpp @@ -44,7 +41,3 @@ lib/liborcus-parser-0.6.so lib/liborcus-parser-0.6.so.0 lib/liborcus-parser-0.6.so.0.0.0 libdata/pkgconfig/liborcus-0.6.pc -@dirrm include/liborcus-0.6/orcus/spreadsheet -@dirrm include/liborcus-0.6/orcus/ooxml -@dirrm include/liborcus-0.6/orcus -@dirrm include/liborcus-0.6 Modified: head/devel/liborcus07/Makefile ============================================================================== --- head/devel/liborcus/Makefile Mon Oct 6 14:00:58 2014 (r370181) +++ head/devel/liborcus07/Makefile Tue Oct 7 13:27:44 2014 (r370331) @@ -1,9 +1,10 @@ # $FreeBSD$ PORTNAME= liborcus -PORTVERSION= 0.5.2 +PORTVERSION= 0.7.0 CATEGORIES= devel misc MASTER_SITES= http://kohei.us/files/orcus/src/ +PKGNAMESUFFIX= 07 MAINTAINER= office@FreeBSD.org COMMENT= Standalone file import filter library for spreadsheet documents Modified: head/devel/liborcus07/distinfo ============================================================================== --- head/devel/liborcus/distinfo Mon Oct 6 14:00:58 2014 (r370181) +++ head/devel/liborcus07/distinfo Tue Oct 7 13:27:44 2014 (r370331) @@ -1,2 +1,2 @@ -SHA256 (liborcus-0.5.2.tar.bz2) = e58b085e4f824aef0d4bbf6f64492dc8e970b75bb24dc890f6d9384ca27940d7 -SIZE (liborcus-0.5.2.tar.bz2) = 1503802 +SHA256 (liborcus-0.7.0.tar.bz2) = 7773a8f5f0b810e0f146dbcf3dbb42e89dd8af0868235e01d9f0cdefde41a8a9 +SIZE (liborcus-0.7.0.tar.bz2) = 1665988 Modified: head/devel/liborcus07/pkg-plist ============================================================================== --- head/devel/liborcus/pkg-plist Mon Oct 6 14:00:58 2014 (r370181) +++ head/devel/liborcus07/pkg-plist Tue Oct 7 13:27:44 2014 (r370331) @@ -1,50 +1,53 @@ +bin/orcus-detect bin/orcus-mso-encryption bin/orcus-xml-dump bin/orcus-zip-dump -include/liborcus-0.6/orcus/base64.hpp -include/liborcus-0.6/orcus/cell_buffer.hpp -include/liborcus-0.6/orcus/css_parser.hpp -include/liborcus-0.6/orcus/csv_parser.hpp -include/liborcus-0.6/orcus/dom_tree.hpp -include/liborcus-0.6/orcus/env.hpp -include/liborcus-0.6/orcus/exception.hpp -include/liborcus-0.6/orcus/global.hpp -include/liborcus-0.6/orcus/orcus_csv.hpp -include/liborcus-0.6/orcus/orcus_gnumeric.hpp -include/liborcus-0.6/orcus/orcus_ods.hpp -include/liborcus-0.6/orcus/orcus_xlsx.hpp -include/liborcus-0.6/orcus/orcus_xml.hpp -include/liborcus-0.6/orcus/pstring.hpp -include/liborcus-0.6/orcus/sax_ns_parser.hpp -include/liborcus-0.6/orcus/sax_parser.hpp -include/liborcus-0.6/orcus/sax_parser_global.hpp -include/liborcus-0.6/orcus/sax_token_parser.hpp -include/liborcus-0.6/orcus/stream.hpp -include/liborcus-0.6/orcus/string_pool.hpp -include/liborcus-0.6/orcus/tokens.hpp -include/liborcus-0.6/orcus/types.hpp -include/liborcus-0.6/orcus/xml_namespace.hpp -include/liborcus-0.6/orcus/xml_structure_tree.hpp -include/liborcus-0.6/orcus/zip_archive.hpp -include/liborcus-0.6/orcus/zip_archive_stream.hpp -include/liborcus-0.6/orcus/ooxml/encryption_info.hpp -include/liborcus-0.6/orcus/spreadsheet/export_interface.hpp -include/liborcus-0.6/orcus/spreadsheet/import_interface.hpp -include/liborcus-0.6/orcus/spreadsheet/types.hpp -lib/liborcus-0.6.a -lib/liborcus-0.6.so -lib/liborcus-0.6.so.0 -lib/liborcus-0.6.so.0.0.0 -lib/liborcus-mso-0.6.a -lib/liborcus-mso-0.6.so -lib/liborcus-mso-0.6.so.0 -lib/liborcus-mso-0.6.so.0.0.0 -lib/liborcus-parser-0.6.a -lib/liborcus-parser-0.6.so -lib/liborcus-parser-0.6.so.0 -lib/liborcus-parser-0.6.so.0.0.0 -libdata/pkgconfig/liborcus-0.6.pc -@dirrm include/liborcus-0.6/orcus/spreadsheet -@dirrm include/liborcus-0.6/orcus/ooxml -@dirrm include/liborcus-0.6/orcus -@dirrm include/liborcus-0.6 +include/liborcus-0.8/orcus/base64.hpp +include/liborcus-0.8/orcus/cell_buffer.hpp +include/liborcus-0.8/orcus/css_parser.hpp +include/liborcus-0.8/orcus/csv_parser.hpp +include/liborcus-0.8/orcus/csv_parser_base.hpp +include/liborcus-0.8/orcus/dom_tree.hpp +include/liborcus-0.8/orcus/env.hpp +include/liborcus-0.8/orcus/exception.hpp +include/liborcus-0.8/orcus/format_detection.hpp +include/liborcus-0.8/orcus/global.hpp +include/liborcus-0.8/orcus/interface.hpp +include/liborcus-0.8/orcus/measurement.hpp +include/liborcus-0.8/orcus/ooxml/encryption_info.hpp +include/liborcus-0.8/orcus/orcus_csv.hpp +include/liborcus-0.8/orcus/orcus_gnumeric.hpp +include/liborcus-0.8/orcus/orcus_ods.hpp +include/liborcus-0.8/orcus/orcus_xls_xml.hpp +include/liborcus-0.8/orcus/orcus_xlsx.hpp +include/liborcus-0.8/orcus/orcus_xml.hpp +include/liborcus-0.8/orcus/parser_global.hpp +include/liborcus-0.8/orcus/pstring.hpp +include/liborcus-0.8/orcus/sax_ns_parser.hpp +include/liborcus-0.8/orcus/sax_parser.hpp +include/liborcus-0.8/orcus/sax_parser_base.hpp +include/liborcus-0.8/orcus/sax_token_parser.hpp +include/liborcus-0.8/orcus/spreadsheet/export_interface.hpp +include/liborcus-0.8/orcus/spreadsheet/import_interface.hpp +include/liborcus-0.8/orcus/spreadsheet/types.hpp +include/liborcus-0.8/orcus/stream.hpp +include/liborcus-0.8/orcus/string_pool.hpp +include/liborcus-0.8/orcus/tokens.hpp +include/liborcus-0.8/orcus/types.hpp +include/liborcus-0.8/orcus/xml_namespace.hpp +include/liborcus-0.8/orcus/xml_structure_tree.hpp +include/liborcus-0.8/orcus/zip_archive.hpp +include/liborcus-0.8/orcus/zip_archive_stream.hpp +lib/liborcus-0.8.a +lib/liborcus-0.8.so +lib/liborcus-0.8.so.0 +lib/liborcus-0.8.so.0.0.0 +lib/liborcus-mso-0.8.a +lib/liborcus-mso-0.8.so +lib/liborcus-mso-0.8.so.0 +lib/liborcus-mso-0.8.so.0.0.0 +lib/liborcus-parser-0.8.a +lib/liborcus-parser-0.8.so +lib/liborcus-parser-0.8.so.0 +lib/liborcus-parser-0.8.so.0.0.0 +libdata/pkgconfig/liborcus-0.8.pc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:33:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9CA4D2D; Tue, 7 Oct 2014 13:33:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B52EFA0; Tue, 7 Oct 2014 13:33:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97DXQpv091763; Tue, 7 Oct 2014 13:33:26 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97DXPvo091760; Tue, 7 Oct 2014 13:33:25 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071333.s97DXPvo091760@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 13:33:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370332 - in head: graphics/libcdr01 print/libmspub01 textproc/libvisio01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:33:26 -0000 Author: bapt Date: Tue Oct 7 13:33:25 2014 New Revision: 370332 URL: https://svnweb.freebsd.org/changeset/ports/370332 QAT: https://qat.redports.org/buildarchive/r370332/ Log: Remove zlib from pc files Modified: head/graphics/libcdr01/Makefile head/print/libmspub01/Makefile head/textproc/libvisio01/Makefile Modified: head/graphics/libcdr01/Makefile ============================================================================== --- head/graphics/libcdr01/Makefile Tue Oct 7 13:27:44 2014 (r370331) +++ head/graphics/libcdr01/Makefile Tue Oct 7 13:33:25 2014 (r370332) @@ -2,6 +2,7 @@ PORTNAME= libcdr PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= graphics devel MASTER_SITES= LODEV PKGNAMESUFFIX= 01 @@ -26,4 +27,7 @@ INSTALL_TARGET= install-strip CPPFLAGS+= -I${LOCALBASE}/include CXXFLAGS+= -Wno-long-long +post-patch: + @${REINPLACE_CMD} -e "s,zlib,,g" ${WRKSRC}/libcdr.pc.in + .include Modified: head/print/libmspub01/Makefile ============================================================================== --- head/print/libmspub01/Makefile Tue Oct 7 13:27:44 2014 (r370331) +++ head/print/libmspub01/Makefile Tue Oct 7 13:33:25 2014 (r370332) @@ -2,6 +2,7 @@ PORTNAME= libmspub PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= print graphics devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 @@ -25,4 +26,7 @@ CONFIGURE_ARGS= --disable-werror --witho CONFIGURE_ENV= ZLIB_CFLAGS="-I/usr/include" ZLIB_LIBS="-lz" CPPFLAGS+= -I${LOCALBASE}/include +post-patch: + @${REINPLACE_CMD} -e "s,zlib,,g" ${WRKSRC}/libmspub.pc.in + .include Modified: head/textproc/libvisio01/Makefile ============================================================================== --- head/textproc/libvisio01/Makefile Tue Oct 7 13:27:44 2014 (r370331) +++ head/textproc/libvisio01/Makefile Tue Oct 7 13:33:25 2014 (r370332) @@ -2,6 +2,7 @@ PORTNAME= libvisio PORTVERSION= 0.1.0 +PORTREVISION= 1 CATEGORIES= textproc devel MASTER_SITES= http://dev-www.libreoffice.org/src/${PORTNAME}/ PKGNAMESUFFIX= 01 @@ -25,4 +26,7 @@ USE_GNOME= libxml2 USES= gmake gperf libtool pathfix perl5 pkgconfig tar:xz INSTALL_TARGET= install-strip +post-patch: + @${REINPLACE_CMD} -e "s,zlib,,g" ${WRKSRC}/libvisio.pc.in + .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:51:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78A95794; Tue, 7 Oct 2014 13:51:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6504A24C; Tue, 7 Oct 2014 13:51:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Dp6oC098714; Tue, 7 Oct 2014 13:51:06 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Dp6ak098713; Tue, 7 Oct 2014 13:51:06 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071351.s97Dp6ak098713@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 13:51:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370333 - head/graphics/libgltf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:51:06 -0000 Author: bapt Date: Tue Oct 7 13:51:05 2014 New Revision: 370333 URL: https://svnweb.freebsd.org/changeset/ports/370333 QAT: https://qat.redports.org/buildarchive/r370333/ Log: Fix build Modified: head/graphics/libgltf/Makefile Modified: head/graphics/libgltf/Makefile ============================================================================== --- head/graphics/libgltf/Makefile Tue Oct 7 13:33:25 2014 (r370332) +++ head/graphics/libgltf/Makefile Tue Oct 7 13:51:05 2014 (r370333) @@ -15,7 +15,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boos ${LOCALBASE}/include/glm/glm.hpp:${PORTSDIR}/math/glm LIB_DEPENDS= libGLEW.so:${PORTSDIR}/graphics/glew -USES= pathfix libtool tar:bzip2 +USES= pathfix pkgconfig libtool tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-werror From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:55:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D415988; Tue, 7 Oct 2014 13:55:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8925427C; Tue, 7 Oct 2014 13:55:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97DtINQ001945; Tue, 7 Oct 2014 13:55:18 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97DtIkW001941; Tue, 7 Oct 2014 13:55:18 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410071355.s97DtIkW001941@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Tue, 7 Oct 2014 13:55:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370334 - head/lang/gcc5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:55:18 -0000 Author: gerald Date: Tue Oct 7 13:55:17 2014 New Revision: 370334 URL: https://svnweb.freebsd.org/changeset/ports/370334 QAT: https://qat.redports.org/buildarchive/r370334/ Log: Update to the 20141005 snapshot of GCC 5.0. Modified: head/lang/gcc5/Makefile head/lang/gcc5/distinfo Modified: head/lang/gcc5/Makefile ============================================================================== --- head/lang/gcc5/Makefile Tue Oct 7 13:51:05 2014 (r370333) +++ head/lang/gcc5/Makefile Tue Oct 7 13:55:17 2014 (r370334) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gcc5 -PORTVERSION= 5.0.s20140921 -PORTREVISION= 1 +PORTVERSION= 5.0.s20141005 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc5/distinfo ============================================================================== --- head/lang/gcc5/distinfo Tue Oct 7 13:51:05 2014 (r370333) +++ head/lang/gcc5/distinfo Tue Oct 7 13:55:17 2014 (r370334) @@ -1,2 +1,2 @@ -SHA256 (gcc-5-20140921.tar.bz2) = c3d2d4bc11b0c2205c04ea517b257ec0b994c57dccba17df23507e3535a3bddc -SIZE (gcc-5-20140921.tar.bz2) = 86771203 +SHA256 (gcc-5-20141005.tar.bz2) = c78e296fc8aeaa5e5fa2c6a2e03cd80711414ff45a7059c8c526c05b10a60828 +SIZE (gcc-5-20141005.tar.bz2) = 86794369 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:55:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C62F7A6B; Tue, 7 Oct 2014 13:55:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B28AF282; Tue, 7 Oct 2014 13:55:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Dtp0e002136; Tue, 7 Oct 2014 13:55:51 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97DtpcN002133; Tue, 7 Oct 2014 13:55:51 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410071355.s97DtpcN002133@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Tue, 7 Oct 2014 13:55:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370335 - head/lang/gcc49 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:55:51 -0000 Author: gerald Date: Tue Oct 7 13:55:50 2014 New Revision: 370335 URL: https://svnweb.freebsd.org/changeset/ports/370335 QAT: https://qat.redports.org/buildarchive/r370335/ Log: Update to the 20141001 snapshot of GCC 4.9.2. Modified: head/lang/gcc49/Makefile head/lang/gcc49/distinfo head/lang/gcc49/pkg-plist Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Tue Oct 7 13:55:17 2014 (r370334) +++ head/lang/gcc49/Makefile Tue Oct 7 13:55:50 2014 (r370335) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gcc49 -PORTVERSION= 4.9.2.s20140924 -PORTREVISION= 1 +PORTVERSION= 4.9.2.s20141001 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc49/distinfo ============================================================================== --- head/lang/gcc49/distinfo Tue Oct 7 13:55:17 2014 (r370334) +++ head/lang/gcc49/distinfo Tue Oct 7 13:55:50 2014 (r370335) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.9-20140924.tar.bz2) = c574e40b776539acd0605106bc813d9aa6baf5683e664a0003c44c9701db09d3 -SIZE (gcc-4.9-20140924.tar.bz2) = 85583180 +SHA256 (gcc-4.9-20141001.tar.bz2) = a6d4acea9659dcc8f501339c10d334375bcf3326b451d7a8ba44d52fc6b9d941 +SIZE (gcc-4.9-20141001.tar.bz2) = 85582162 Modified: head/lang/gcc49/pkg-plist ============================================================================== --- head/lang/gcc49/pkg-plist Tue Oct 7 13:55:17 2014 (r370334) +++ head/lang/gcc49/pkg-plist Tue Oct 7 13:55:50 2014 (r370335) @@ -15,7 +15,6 @@ bin/gcc-nm%%SUFFIX%% bin/gcc-ranlib%%SUFFIX%% bin/gcov%%SUFFIX%% bin/gfortran%%SUFFIX%% -@comment info/gcc%%SUFFIX%%/dir man/man1/cpp%%SUFFIX%%.1.gz man/man1/g++%%SUFFIX%%.1.gz man/man1/gcc%%SUFFIX%%.1.gz From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 13:59:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 731CDB79; Tue, 7 Oct 2014 13:59:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F5CA2BB; Tue, 7 Oct 2014 13:59:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97DxDlx002639; Tue, 7 Oct 2014 13:59:13 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97DxCkk002637; Tue, 7 Oct 2014 13:59:12 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410071359.s97DxCkk002637@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Tue, 7 Oct 2014 13:59:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370336 - head/emulators/wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 13:59:13 -0000 Author: gerald Date: Tue Oct 7 13:59:12 2014 New Revision: 370336 URL: https://svnweb.freebsd.org/changeset/ports/370336 QAT: https://qat.redports.org/buildarchive/r370336/ Log: Update to Wine 1.7.28. This includes the following changes: - Support for conditional compilation in JavaScript. - Bidirectional text support in DirectWrite. - Stubs for DirectPlay Voice support. - Various bug fixes. Modified: head/emulators/wine-devel/Makefile head/emulators/wine-devel/distinfo Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Tue Oct 7 13:55:50 2014 (r370335) +++ head/emulators/wine-devel/Makefile Tue Oct 7 13:59:12 2014 (r370336) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.7.27 +DISTVERSION= 1.7.28 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Tue Oct 7 13:55:50 2014 (r370335) +++ head/emulators/wine-devel/distinfo Tue Oct 7 13:59:12 2014 (r370336) @@ -1,4 +1,4 @@ -SHA256 (wine-1.7.27.tar.bz2) = 99d2050c5bd04591a3e5f84d2ad6c021deb4d8b97874050cd3946d5c984d32b2 -SIZE (wine-1.7.27.tar.bz2) = 21710372 -SHA256 (v1.7.27.tar.gz) = b234e6010aaf5df3d6fe73c8d55aab977ac04b1749ca0f03346724d64f9202d1 -SIZE (v1.7.27.tar.gz) = 8362747 +SHA256 (wine-1.7.28.tar.bz2) = 67c3f157b9e720971d1f7dc582e9f0b16879ef660b5ba284a77f8bdfc6fc2313 +SIZE (wine-1.7.28.tar.bz2) = 21811422 +SHA256 (v1.7.28.tar.gz) = 40eabfddd2bf76a3a9498348a7655f6265ab18141be7b21ad4e7be69058eac0e +SIZE (v1.7.28.tar.gz) = 8388708 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:02:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29DC3C94; Tue, 7 Oct 2014 14:02:06 +0000 (UTC) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1B8C375; Tue, 7 Oct 2014 14:02:05 +0000 (UTC) Received: from tuna.dhcp.nue.suse.com (charybdis-ext.suse.de [195.135.221.2]) by ainaz.pair.com (Postfix) with ESMTPSA id 2EEC03F482; Tue, 7 Oct 2014 09:52:48 -0400 (EDT) Date: Tue, 7 Oct 2014 15:52:45 +0200 (CEST) From: Gerald Pfeifer To: Baptiste Daroussin Subject: Re: svn commit: r369448 - head/lang/gcc5 In-Reply-To: <20140928205858.GH40373@ivaldir.etoilebsd.net> Message-ID: References: <201409281049.s8SAnFiT062634@svn.freebsd.org> <20140928205858.GH40373@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:02:06 -0000 On Sunday 2014-09-28 22:58, Baptiste Daroussin wrote: >> share/applications >> share/licenses/gcc5-5.0.s20140921 > The above stayed? that looks strange I'm at EuroBSDCon for now, I'll > check when back home. Thanks. This now went from warning to error in my recent test after your later committ r370199 | bapt | 2014-10-06 18:13:15 +0000 (Mon, 06 Oct 2014) | 5 lines Comment out info/dir files indexinfo is taking care of generating it at package installation time Here is the log: #### make #### make stage #### make package #### make deinstall #### pkg install #### make deinstall #### make reinstall #### make package #### make deinstall #### The PREFIX should be essentially empty: info/gcc5 share/applications share/gcc-5.0.0 share/licenses/gcc5-5.0.s20141005 info/gcc5 #### Running regression-test, checking for orphans, checking pkg-plist. ====> Checking for pkg-plist issues (check-plist) ===> Parsing plist ===> Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: info/gcc5/dir ===> Checking for items in pkg-plist which are not in STAGEDIR ===> Error: Plist issues found. ===> Warning: Test was done with PREFIX != LOCALBASE ===> Warning: The port may not be properly installing into PREFIX *** Error code 1 (This is installing as user into a non-standard PREFIX and following the old ports/package testing instructions.) Gerald From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:06:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ABDAFF49; Tue, 7 Oct 2014 14:06:01 +0000 (UTC) Received: from mail-wi0-x229.google.com (mail-wi0-x229.google.com [IPv6:2a00:1450:400c:c05::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EA6A05E0; Tue, 7 Oct 2014 14:06:00 +0000 (UTC) Received: by mail-wi0-f169.google.com with SMTP id cc10so9847832wib.0 for ; Tue, 07 Oct 2014 07:05:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=eP+MpYZ/2wDe3BnGgM9qTjsP5K73/9KUSiFpdtlvjCY=; b=Sq95fF0hmx2qJb4QE0DynxA/ewUeMaqJ2DdSqX3DJKpeG4DrMFJGDXrIJzY/QcZcaT KtZ99Fl0LmqoiL+PnszvjwAd4jAr0l0nYy7toEfD2sGIOl5LBwKrIUb+zF1+k5QcFw66 fwIZd1uLpI3v/5ZX2J4SD6juNXDKRfPf+HROCYNL/CPbJUBfiSoiUjoI0L90uPzDfznv FHTxl/AHVz9LCXqjLz3QZbZTV+T8b9qwpNpOqJ8Mib7suqag6MoGXQMiJ0QNgRReNXwg BMtAF49sh8ZN8cmoHMe91p/RDwFjwE/kJgd0chU+mO6gjhS+zt9qsAI5TV/KnrxO+pzk pkOA== X-Received: by 10.181.5.42 with SMTP id cj10mr28839186wid.28.1412690759014; Tue, 07 Oct 2014 07:05:59 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id u8sm14853757wia.24.2014.10.07.07.05.57 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Oct 2014 07:05:58 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 7 Oct 2014 16:05:56 +0200 From: Baptiste Daroussin To: Gerald Pfeifer Subject: Re: svn commit: r369448 - head/lang/gcc5 Message-ID: <20141007140556.GK37670@ivaldir.etoilebsd.net> References: <201409281049.s8SAnFiT062634@svn.freebsd.org> <20140928205858.GH40373@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="9JSHP372f+2dzJ8X" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:06:01 -0000 --9JSHP372f+2dzJ8X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 07, 2014 at 03:52:45PM +0200, Gerald Pfeifer wrote: > On Sunday 2014-09-28 22:58, Baptiste Daroussin wrote: > >> share/applications > >> share/licenses/gcc5-5.0.s20140921 > > The above stayed? that looks strange I'm at EuroBSDCon for now, I'll=20 > > check when back home. >=20 > Thanks. This now went from warning to error in my recent test > after your later committ >=20 > r370199 | bapt | 2014-10-06 18:13:15 +0000 (Mon, 06 Oct 2014) | 5 lines >=20 > Comment out info/dir files > indexinfo is taking care of generating it at package installation time > =20 > Here is the log: >=20 > #### make > #### make stage > #### make package > #### make deinstall > #### pkg install > #### make deinstall > #### make reinstall > #### make package > #### make deinstall > #### The PREFIX should be essentially empty: > info/gcc5 > share/applications > share/gcc-5.0.0 > share/licenses/gcc5-5.0.s20141005 > info/gcc5 > #### Running regression-test, checking for orphans, checking pkg-plist. > =3D=3D=3D=3D> Checking for pkg-plist issues (check-plist) > =3D=3D=3D> Parsing plist > =3D=3D=3D> Checking for items in STAGEDIR missing from pkg-plist > Error: Orphaned: info/gcc5/dir > =3D=3D=3D> Checking for items in pkg-plist which are not in STAGEDIR > =3D=3D=3D> Error: Plist issues found. > =3D=3D=3D> Warning: Test was done with PREFIX !=3D LOCALBASE > =3D=3D=3D> Warning: The port may not be properly installing into PREFIX > *** Error code 1 >=20 > (This is installing as user into a non-standard PREFIX and following > the old ports/package testing instructions.) With the @comment the should not be an Error that it the reason I put a @co= mment I checked locally and it worked. regards, Bapt --9JSHP372f+2dzJ8X Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlQz80QACgkQ8kTtMUmk6EwVwwCgnEOSlMxF42su7Ppae4pWtYwc fqwAoIZpbZPwnNSa5TNxKbtYb3hUvqfU =FjBj -----END PGP SIGNATURE----- --9JSHP372f+2dzJ8X-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:12:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE0172C5; Tue, 7 Oct 2014 14:12:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA3836D6; Tue, 7 Oct 2014 14:12:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EC4Z7011541; Tue, 7 Oct 2014 14:12:04 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EC4HK011540; Tue, 7 Oct 2014 14:12:04 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201410071412.s97EC4HK011540@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Tue, 7 Oct 2014 14:12:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370337 - head/net-im/skype4 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:12:05 -0000 Author: xmj Date: Tue Oct 7 14:12:04 2014 New Revision: 370337 URL: https://svnweb.freebsd.org/changeset/ports/370337 QAT: https://qat.redports.org/buildarchive/r370337/ Log: net-im/skype4: mark as BROKEN - Mark as BOKEN due to missing syscalls Differential Revision: https://reviews.freebsd.org/D907 Approved by: swills (mentor) Modified: head/net-im/skype4/Makefile Modified: head/net-im/skype4/Makefile ============================================================================== --- head/net-im/skype4/Makefile Tue Oct 7 13:59:12 2014 (r370336) +++ head/net-im/skype4/Makefile Tue Oct 7 14:12:04 2014 (r370337) @@ -30,6 +30,8 @@ PLIST_SUB+= SKYPEDIR=${SKYPEDIR} SUB_FILES= skype.sh SUB_LIST+= SKYPEDIR=${SKYPEDIR} +BROKEN= Skype 4.3 is missing several Linux syscalls. + #NVIDIA_GL_RUN_DEPENDS= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver #NVIDIA_GL_USE= LINUX_APPS=xorglibs #NVIDIA_GL_USE_OFF= LINUX_APPS=dri From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:14:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 59FD23F4; Tue, 7 Oct 2014 14:14:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4609475A; Tue, 7 Oct 2014 14:14:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EENGU011942; Tue, 7 Oct 2014 14:14:23 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EEM4Y011940; Tue, 7 Oct 2014 14:14:22 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201410071414.s97EEM4Y011940@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Tue, 7 Oct 2014 14:14:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370338 - in head/editors/sublime: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:14:23 -0000 Author: xmj Date: Tue Oct 7 14:14:22 2014 New Revision: 370338 URL: https://svnweb.freebsd.org/changeset/ports/370338 QAT: https://qat.redports.org/buildarchive/r370338/ Log: editors/sublime: amend patch - Remove an import that cannot work on Python 2.7 Differential Revision: https://reviews.freebsd.org/D910 Approved by: swills (mentor) Modified: head/editors/sublime/Makefile head/editors/sublime/files/patch-PackageSetup.py Modified: head/editors/sublime/Makefile ============================================================================== --- head/editors/sublime/Makefile Tue Oct 7 14:12:04 2014 (r370337) +++ head/editors/sublime/Makefile Tue Oct 7 14:14:22 2014 (r370338) @@ -3,6 +3,7 @@ PORTNAME= sublime PORTVERSION= 2.0.2 +PORTREVISION= 1 CATEGORIES= editors linux MASTER_SITES= http://c758482.r82.cf2.rackcdn.com/ DISTNAME= Sublime%20Text%202.0.2 Modified: head/editors/sublime/files/patch-PackageSetup.py ============================================================================== --- head/editors/sublime/files/patch-PackageSetup.py Tue Oct 7 14:12:04 2014 (r370337) +++ head/editors/sublime/files/patch-PackageSetup.py Tue Oct 7 14:14:22 2014 (r370338) @@ -1,8 +1,10 @@ ---- ./PackageSetup.py.orig 2014-03-22 14:57:27.290782685 +0200 -+++ ./PackageSetup.py 2014-03-22 14:57:40.220307481 +0200 -@@ -1,4 +1,4 @@ +--- PackageSetup.py.orig 2013-07-08 01:21:09 UTC ++++ PackageSetup.py +@@ -1,6 +1,5 @@ -#!python +#!/usr/bin/env python - from __future__ import with_statement +-from __future__ import with_statement import glob + import os.path + import shutil From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:14:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 61E3E4D7; Tue, 7 Oct 2014 14:14:28 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 208EE75D; Tue, 7 Oct 2014 14:14:28 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id 0BD52BDC30; Tue, 7 Oct 2014 16:14:25 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 0D818BDC2E; Tue, 7 Oct 2014 16:14:24 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id CEC106124; Tue, 7 Oct 2014 16:14:22 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 3B09875BBCB8; Tue, 7 Oct 2014 16:14:21 +0200 (CEST) Date: Tue, 07 Oct 2014 16:14:20 +0200 From: Mathieu Arnold To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files Message-ID: In-Reply-To: <5433E4F7.9030903@marino.st> References: <201410062258.s96MwoqK063529@svn.freebsd.org> <5433E4F7.9030903@marino.st> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:14:28 -0000 +--On 7 octobre 2014 15:04:55 +0200 John Marino wrote: | On 10/7/2014 11:59, Mathieu Arnold wrote: |> +--On 6 octobre 2014 22:58:50 +0000 John Marino |> wrote: |> | +@cwd /boot/kernel |> | +%%A%%hv_ata_pci_disengage.ko |> | +%%A%%hv_netvsc.ko |> |> Please, do not use @cwd, it is confusing, and not needed since pkg_* has |> gotten out. List files with their path like this : |> %%A%%/boot/kernel/hv_ata_pci_disengage.ko | | In my defense: | 1) It works (tested pretty thoroughly) | 2) The alternative to @cwd is not documented in UPDATING so I had no | idea what the alternative was. | 3) cwd is documented here with no alternative: | https://www.freebsd.org/doc/en/books/porters-handbook/plist-keywords.html | | So it's not really fair to bang on us for stuff that is undocumented. | right? This theme is getting repetitive too. Well, it's a bit the other way around, @cwd was the alternative to listing the full path to the filenames, so, I could document the alternative to the alternative, but it feels a bit silly :-) -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:14:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 236FC5A2; Tue, 7 Oct 2014 14:14:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F65A763; Tue, 7 Oct 2014 14:14:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EEXoo012068; Tue, 7 Oct 2014 14:14:33 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EEXbS012067; Tue, 7 Oct 2014 14:14:33 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071414.s97EEXbS012067@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 14:14:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370339 - head/textproc/libvisio X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:14:34 -0000 Author: bapt Date: Tue Oct 7 14:14:33 2014 New Revision: 370339 URL: https://svnweb.freebsd.org/changeset/ports/370339 QAT: https://qat.redports.org/buildarchive/r370339/ Log: Fix fetching, convert to USES=gperf Modified: head/textproc/libvisio/Makefile Modified: head/textproc/libvisio/Makefile ============================================================================== --- head/textproc/libvisio/Makefile Tue Oct 7 14:14:22 2014 (r370338) +++ head/textproc/libvisio/Makefile Tue Oct 7 14:14:33 2014 (r370339) @@ -4,7 +4,7 @@ PORTNAME= libvisio PORTVERSION= 0.0.31 PORTREVISION= 3 CATEGORIES= textproc devel -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= LODEV MAINTAINER= office@FreeBSD.org COMMENT= Library and tools for parsing the visio file format structure @@ -22,17 +22,10 @@ CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_PERL5= build -USES= gmake libtool pathfix perl5 pkgconfig tar:xz +USES= gmake gperf libtool pathfix perl5 pkgconfig tar:xz INSTALL_TARGET= install-strip -.include - -.if ${OSVERSION} < 802516 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900502) -BUILD_DEPENDS+= ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf -CONFIGURE_ENV+= GPERF=${LOCALBASE}/bin/gperf -.endif - post-stage: @${RM} -f ${STAGEDIR}${PREFIX}/bin/vs* -.include +.include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:15:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 007A96B5; Tue, 7 Oct 2014 14:15:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0F0B779; Tue, 7 Oct 2014 14:15:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EFUxY012328; Tue, 7 Oct 2014 14:15:30 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EFUnx012327; Tue, 7 Oct 2014 14:15:30 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071415.s97EFUnx012327@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 14:15:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370340 - head/www/netsurf X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:15:31 -0000 Author: bapt Date: Tue Oct 7 14:15:30 2014 New Revision: 370340 URL: https://svnweb.freebsd.org/changeset/ports/370340 QAT: https://qat.redports.org/buildarchive/r370340/ Log: Convert to USES=gperf Modified: head/www/netsurf/Makefile Modified: head/www/netsurf/Makefile ============================================================================== --- head/www/netsurf/Makefile Tue Oct 7 14:14:33 2014 (r370339) +++ head/www/netsurf/Makefile Tue Oct 7 14:15:30 2014 (r370340) @@ -24,7 +24,7 @@ CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -lssl -lcrypto -L${LOCALBASE}/lib ${ICONV_LIB} MAKE_ARGS= HOST_CC="${CC}" CC="${CC}" CCOPT="" HOST="${OPSYS}" \ WARNFLAGS="" Q="" OPTCFLAGS="${CFLAGS}" -USES= bison gmake pkgconfig iconv +USES= bison gmake gperf pkgconfig iconv USE_GNOME= gtk20 librsvg2 NSFB_VERSION= 0.1.0 @@ -41,7 +41,6 @@ WEBP_LIB_DEPENDS= libwebp.so:${PORTSDIR} .if ${OPSYS} == DragonFly LIB_DEPENDS+= libssl.so:${PORTSDIR}/security/openssl -BUILD_DEPENDS+= gperf:${PORTSDIR}/devel/gperf .endif .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:16:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D23A95D; Tue, 7 Oct 2014 14:16:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 69358792; Tue, 7 Oct 2014 14:16:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EGB21012580; Tue, 7 Oct 2014 14:16:11 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EGBOM012579; Tue, 7 Oct 2014 14:16:11 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071416.s97EGBOM012579@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 14:16:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370341 - head/graphics/libetonyek01 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:16:11 -0000 Author: bapt Date: Tue Oct 7 14:16:10 2014 New Revision: 370341 URL: https://svnweb.freebsd.org/changeset/ports/370341 QAT: https://qat.redports.org/buildarchive/r370341/ Log: Convert USES=gperf properly Modified: head/graphics/libetonyek01/Makefile Modified: head/graphics/libetonyek01/Makefile ============================================================================== --- head/graphics/libetonyek01/Makefile Tue Oct 7 14:15:30 2014 (r370340) +++ head/graphics/libetonyek01/Makefile Tue Oct 7 14:16:10 2014 (r370341) @@ -13,7 +13,6 @@ COMMENT= Library to interpret and import LICENSE= LGPL21 MPL LICENSE_COMB= dual -USES= gperf LIB_DEPENDS= libboost_filesystem.so:${PORTSDIR}/devel/boost-libs \ librevenge-0.0.so:${PORTSDIR}/textproc/librevenge \ libxml2.so:${PORTSDIR}/textproc/libxml2 @@ -24,7 +23,7 @@ CONFIGURE_ARGS= --disable-werror --witho CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -USES= gmake libtool pathfix pkgconfig tar:xz +USES= gmake gperf libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes INSTALL_TARGET= install-strip From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:17:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 211BFB08; Tue, 7 Oct 2014 14:17:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D45E7BB; Tue, 7 Oct 2014 14:17:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EHFxq012810; Tue, 7 Oct 2014 14:17:15 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EHF2Y012809; Tue, 7 Oct 2014 14:17:15 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071417.s97EHF2Y012809@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 14:17:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370342 - head/textproc/libe-book00 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:17:16 -0000 Author: bapt Date: Tue Oct 7 14:17:15 2014 New Revision: 370342 URL: https://svnweb.freebsd.org/changeset/ports/370342 QAT: https://qat.redports.org/buildarchive/r370342/ Log: USES=gperf Modified: head/textproc/libe-book00/Makefile Modified: head/textproc/libe-book00/Makefile ============================================================================== --- head/textproc/libe-book00/Makefile Tue Oct 7 14:16:10 2014 (r370341) +++ head/textproc/libe-book00/Makefile Tue Oct 7 14:17:15 2014 (r370342) @@ -20,7 +20,7 @@ LIB_DEPENDS= libicui18n.so:${PORTSDIR}/d USE_GNOME= libxml2 -USES= gmake libtool pathfix pkgconfig tar:xz +USES= gmake gperf libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV= ZLIB_CFLAGS="-DWEHAVEZLIBINBASE" ZLIB_LIBS="-DWEDOHAVEIT" From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:18:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5283EC1E; Tue, 7 Oct 2014 14:18:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E7FF7D3; Tue, 7 Oct 2014 14:18:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EIC5W013028; Tue, 7 Oct 2014 14:18:12 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EICEP013027; Tue, 7 Oct 2014 14:18:12 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071418.s97EICEP013027@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 14:18:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370343 - head/textproc/libe-book X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:18:12 -0000 Author: bapt Date: Tue Oct 7 14:18:11 2014 New Revision: 370343 URL: https://svnweb.freebsd.org/changeset/ports/370343 QAT: https://qat.redports.org/buildarchive/r370343/ Log: Convert to USES=gperf Modified: head/textproc/libe-book/Makefile Modified: head/textproc/libe-book/Makefile ============================================================================== --- head/textproc/libe-book/Makefile Tue Oct 7 14:17:15 2014 (r370342) +++ head/textproc/libe-book/Makefile Tue Oct 7 14:18:11 2014 (r370343) @@ -20,7 +20,7 @@ LIB_DEPENDS= libicui18n.so:${PORTSDIR}/d USE_GNOME= libxml2 -USES= gmake libtool pathfix pkgconfig tar:xz +USES= gmake gperf libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV= ZLIB_CFLAGS="-DWEHAVEZLIBINBASE" ZLIB_LIBS="-DWEDOHAVEIT" From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:18:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84193E29; Tue, 7 Oct 2014 14:18:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C1027DD; Tue, 7 Oct 2014 14:18:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EIrjV013206; Tue, 7 Oct 2014 14:18:53 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EIroY013205; Tue, 7 Oct 2014 14:18:53 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071418.s97EIroY013205@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 14:18:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370344 - head/textproc/libabw00 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:18:53 -0000 Author: bapt Date: Tue Oct 7 14:18:52 2014 New Revision: 370344 URL: https://svnweb.freebsd.org/changeset/ports/370344 QAT: https://qat.redports.org/buildarchive/r370344/ Log: Convert USES=gperf Modified: head/textproc/libabw00/Makefile Modified: head/textproc/libabw00/Makefile ============================================================================== --- head/textproc/libabw00/Makefile Tue Oct 7 14:18:11 2014 (r370343) +++ head/textproc/libabw00/Makefile Tue Oct 7 14:18:52 2014 (r370344) @@ -15,7 +15,7 @@ LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/include/boost/algorithm/string.hpp:${PORTSDIR}/devel/boost-libs LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/textproc/libwpd -USES= libtool pathfix pkgconfig tar:xz +USES= gperf libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes USE_GNOME= libxml2 GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:19:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 005B2F24; Tue, 7 Oct 2014 14:18:59 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C85027E0; Tue, 7 Oct 2014 14:18:59 +0000 (UTC) Received: from [10.31.9.122] (unknown [213.225.137.129]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 5A81B43552; Tue, 7 Oct 2014 09:18:47 -0500 (CDT) Message-ID: <5433F63B.8000506@marino.st> Date: Tue, 07 Oct 2014 16:18:35 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mathieu Arnold , marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files References: <201410062258.s96MwoqK063529@svn.freebsd.org> <5433E4F7.9030903@marino.st> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:19:00 -0000 On 10/7/2014 16:14, Mathieu Arnold wrote: > > > +--On 7 octobre 2014 15:04:55 +0200 John Marino > wrote: > | On 10/7/2014 11:59, Mathieu Arnold wrote: > |> +--On 6 octobre 2014 22:58:50 +0000 John Marino > |> wrote: > |> | +@cwd /boot/kernel > |> | +%%A%%hv_ata_pci_disengage.ko > |> | +%%A%%hv_netvsc.ko > |> > |> Please, do not use @cwd, it is confusing, and not needed since pkg_* has > |> gotten out. List files with their path like this : > |> %%A%%/boot/kernel/hv_ata_pci_disengage.ko > | > | In my defense: > | 1) It works (tested pretty thoroughly) > | 2) The alternative to @cwd is not documented in UPDATING so I had no > | idea what the alternative was. > | 3) cwd is documented here with no alternative: > | https://www.freebsd.org/doc/en/books/porters-handbook/plist-keywords.html > | > | So it's not really fair to bang on us for stuff that is undocumented. > | right? This theme is getting repetitive too. > > Well, it's a bit the other way around, @cwd was the alternative to listing > the full path to the filenames, so, I could document the alternative to the > alternative, but it feels a bit silly :-) It was my understanding that pkg-plist lists assigned a ${PREFIX} prefix and @cwd was the only way to list files outside of the prefix. This is why I was surprised that stuff like /var/db/mydir worked. I don't know when absolute paths got supported. for me, absolute path is something new, not a baseline. Why would @cwd even exist if it wasn't necessary in the past? John From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:41:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2A3D7D3; Tue, 7 Oct 2014 14:41:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E990AB4; Tue, 7 Oct 2014 14:41:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EfxCr026405; Tue, 7 Oct 2014 14:41:59 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EfxwT026404; Tue, 7 Oct 2014 14:41:59 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201410071441.s97EfxwT026404@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Tue, 7 Oct 2014 14:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370345 - head/www/py-django-crispy-forms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:41:59 -0000 Author: xmj Date: Tue Oct 7 14:41:58 2014 New Revision: 370345 URL: https://svnweb.freebsd.org/changeset/ports/370345 QAT: https://qat.redports.org/buildarchive/r370345/ Log: www/py-django-crispy-forms: fix django dependency - Fix django dependency, now that www/py-django was bumped to 1.7 While here, fix PORTNAME and PKGNAMESUFFIX. Differential Revision: https://reviews.freebsd.org/D909 Approved by: swills (mentor) Modified: head/www/py-django-crispy-forms/Makefile Modified: head/www/py-django-crispy-forms/Makefile ============================================================================== --- head/www/py-django-crispy-forms/Makefile Tue Oct 7 14:18:52 2014 (r370344) +++ head/www/py-django-crispy-forms/Makefile Tue Oct 7 14:41:58 2014 (r370345) @@ -1,11 +1,12 @@ # Created by: Johannes Meixner # $FreeBSD$ -PORTNAME= crispy-forms +PORTNAME= django-crispy-forms PORTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}django- +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= django-${PORTNAME}-${PORTVERSION} MAINTAINER= xmj@chaot.net @@ -13,7 +14,7 @@ COMMENT= The best way to have Django DRY LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django<1.7:${PORTSDIR}/www/py-django +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django16>=1.6:${PORTSDIR}/www/py-django16 USE_PYTHON= yes USE_PYDISTUTILS= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:45:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 157569B2; Tue, 7 Oct 2014 14:45:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0165EAFC; Tue, 7 Oct 2014 14:45:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97EjddH027008; Tue, 7 Oct 2014 14:45:39 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97EjdWZ027007; Tue, 7 Oct 2014 14:45:39 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071445.s97EjdWZ027007@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 14:45:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370346 - head/databases/py-psycopg2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:45:40 -0000 Author: wg Date: Tue Oct 7 14:45:39 2014 New Revision: 370346 URL: https://svnweb.freebsd.org/changeset/ports/370346 QAT: https://qat.redports.org/buildarchive/r370346/ Log: databases/py-psycopg2: allow concurrent install - USES pgsql python With hat: python Reported by: Richard Kuhns (via freebsd-python@) Modified: head/databases/py-psycopg2/Makefile Modified: head/databases/py-psycopg2/Makefile ============================================================================== --- head/databases/py-psycopg2/Makefile Tue Oct 7 14:41:58 2014 (r370345) +++ head/databases/py-psycopg2/Makefile Tue Oct 7 14:45:39 2014 (r370346) @@ -3,6 +3,7 @@ PORTNAME= psycopg2 PORTVERSION= 2.5.3 +PORTREVISION= 1 CATEGORIES= databases python MASTER_SITES= http://initd.org/psycopg/tarballs/PSYCOPG-2-5/ \ CHEESESHOP @@ -11,13 +12,8 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= miwi@FreeBSD.org COMMENT= High performance Python adapter for PostgreSQL -USE_PGSQL= yes -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes - -DOCSDIR= ${PREFIX}/share/doc/py-psycopg2 -EXAMPLESDIR= ${PREFIX}/share/examples/py-psycopg2 +USES= pgsql python +USE_PYTHON= autoplist concurrent distutils PORTEXAMPLES= binary.py copy_from.py copy_to.py cursor.py dialtone.py \ dict.py dt.py encoding.py fetch.py lastrowid.py lobject.py \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:59:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49296C35; Tue, 7 Oct 2014 14:59:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1B346C25; Tue, 7 Oct 2014 14:59:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97ExeP1032265; Tue, 7 Oct 2014 14:59:40 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97ExeiO032262; Tue, 7 Oct 2014 14:59:40 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071459.s97ExeiO032262@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 14:59:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370347 - head/x11-toolkits/tkdnd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:59:41 -0000 Author: gahr Date: Tue Oct 7 14:59:39 2014 New Revision: 370347 URL: https://svnweb.freebsd.org/changeset/ports/370347 QAT: https://qat.redports.org/buildarchive/r370347/ Log: - Update to 2.7 * Announcement: https://groups.google.com/forum/m/#!topic/comp.lang.tcl/hXmtOHE6AlU * Changelog: https://code.google.com/p/tkdnd/source/browse/trunk/Changelog Modified: head/x11-toolkits/tkdnd/Makefile head/x11-toolkits/tkdnd/distinfo head/x11-toolkits/tkdnd/pkg-plist Modified: head/x11-toolkits/tkdnd/Makefile ============================================================================== --- head/x11-toolkits/tkdnd/Makefile Tue Oct 7 14:45:39 2014 (r370346) +++ head/x11-toolkits/tkdnd/Makefile Tue Oct 7 14:59:39 2014 (r370347) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tkdnd -PORTVERSION= 2.6 +PORTVERSION= 2.7 CATEGORIES= x11-toolkits tk MASTER_SITES= SF/${PORTNAME}/TkDND/TkDND%20${PORTVERSION}/ DISTNAME= ${PORTNAME}${PORTVERSION}-src Modified: head/x11-toolkits/tkdnd/distinfo ============================================================================== --- head/x11-toolkits/tkdnd/distinfo Tue Oct 7 14:45:39 2014 (r370346) +++ head/x11-toolkits/tkdnd/distinfo Tue Oct 7 14:59:39 2014 (r370347) @@ -1,2 +1,2 @@ -SHA256 (tkdnd2.6-src.tar.gz) = e3f499c62d1db2e9a4468791544c784eac727175e094aa06bfe7441dfb3f08e7 -SIZE (tkdnd2.6-src.tar.gz) = 180278 +SHA256 (tkdnd2.7-src.tar.gz) = d81a782bf743d2f7382c3ef27d8e1af05de0cc45d4fb6767fabf2f85741c8abd +SIZE (tkdnd2.7-src.tar.gz) = 541562 Modified: head/x11-toolkits/tkdnd/pkg-plist ============================================================================== --- head/x11-toolkits/tkdnd/pkg-plist Tue Oct 7 14:45:39 2014 (r370346) +++ head/x11-toolkits/tkdnd/pkg-plist Tue Oct 7 14:59:39 2014 (r370347) @@ -2,8 +2,8 @@ lib/%%TKPKG%%/libtkdnd.so.1 lib/%%TKPKG%%/pkgIndex.tcl lib/%%TKPKG%%/tkdnd.tcl lib/%%TKPKG%%/tkdnd_compat.tcl +lib/%%TKPKG%%/tkdnd_generic.tcl lib/%%TKPKG%%/tkdnd_macosx.tcl lib/%%TKPKG%%/tkdnd_unix.tcl lib/%%TKPKG%%/tkdnd_windows.tcl man/mann/tkDND.n.gz -@dirrm lib/%%TKPKG%% From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 14:59:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5E1AC39; Tue, 7 Oct 2014 14:59:41 +0000 (UTC) Received: from prod2.absolight.net (mx3.absolight.net [IPv6:2a01:678:2:100::25]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6328FC27; Tue, 7 Oct 2014 14:59:41 +0000 (UTC) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id A1CAFBDC4C; Tue, 7 Oct 2014 16:59:39 +0200 (CEST) Received: from gw.in.absolight.net (gw-ecl.in.absolight.net [79.143.241.69]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "gw.in.absolight.net", Issuer "CA Cert Signing Authority" (not verified)) by prod2.absolight.net (Postfix) with ESMTPSA id 7EF1BBDC2E; Tue, 7 Oct 2014 16:59:39 +0200 (CEST) Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) by gw.in.absolight.net (Postfix) with ESMTP id 9B94B6124; Tue, 7 Oct 2014 16:59:38 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by ogg.in.absolight.net (Postfix) with ESMTP id 3346375BE134; Tue, 7 Oct 2014 16:59:37 +0200 (CEST) Date: Tue, 07 Oct 2014 16:59:36 +0200 From: Mathieu Arnold To: marino@freebsd.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files Message-ID: <55F3F598E11FE4EBDB3743DB@ogg.in.absolight.net> In-Reply-To: <5433F63B.8000506@marino.st> References: <201410062258.s96MwoqK063529@svn.freebsd.org> <5433E4F7.9030903@marino.st> <5433F63B.8000506@marino.st> X-Mailer: Mulberry/4.0.8 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 14:59:41 -0000 +--On 7 octobre 2014 16:18:35 +0200 John Marino wrote: | On 10/7/2014 16:14, Mathieu Arnold wrote: |> |> |> +--On 7 octobre 2014 15:04:55 +0200 John Marino |> wrote: |> | On 10/7/2014 11:59, Mathieu Arnold wrote: |> |> +--On 6 octobre 2014 22:58:50 +0000 John Marino |> |> wrote: |> |> | +@cwd /boot/kernel |> |> | +%%A%%hv_ata_pci_disengage.ko |> |> | +%%A%%hv_netvsc.ko |> |> |> |> Please, do not use @cwd, it is confusing, and not needed since pkg_* |> |> has gotten out. List files with their path like this : |> |> %%A%%/boot/kernel/hv_ata_pci_disengage.ko |> | |> | In my defense: |> | 1) It works (tested pretty thoroughly) |> | 2) The alternative to @cwd is not documented in UPDATING so I had no |> | idea what the alternative was. |> | 3) cwd is documented here with no alternative: |> | https://www.freebsd.org/doc/en/books/porters-handbook/plist-keywords.h |> | tml |> | |> | So it's not really fair to bang on us for stuff that is undocumented. |> | right? This theme is getting repetitive too. |> |> Well, it's a bit the other way around, @cwd was the alternative to |> listing the full path to the filenames, so, I could document the |> alternative to the alternative, but it feels a bit silly :-) | | It was my understanding that pkg-plist lists assigned a ${PREFIX} prefix | and @cwd was the only way to list files outside of the prefix. This is | why I was surprised that stuff like /var/db/mydir worked. I don't know | when absolute paths got supported. Absolute path always were supported with pkg, so people have been using those for some time. | for me, absolute path is something new, not a baseline. | Why would @cwd even exist if it wasn't necessary in the past? Well, nothing in the handbook tells you to use @cwd, the only occurrence of it is in its own documentation section, and make makeplist will output a clean plist, without using @cwd. Regards, -- Mathieu Arnold From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:01:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 847D1E14; Tue, 7 Oct 2014 15:01:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70177C43; Tue, 7 Oct 2014 15:01:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97F1Ua9036136; Tue, 7 Oct 2014 15:01:30 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97F1TR4036133; Tue, 7 Oct 2014 15:01:29 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071501.s97F1TR4036133@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 15:01:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370348 - head/x11-toolkits/wxgtk30 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:01:30 -0000 Author: gahr Date: Tue Oct 7 15:01:29 2014 New Revision: 370348 URL: https://svnweb.freebsd.org/changeset/ports/370348 QAT: https://qat.redports.org/buildarchive/r370348/ Log: - Update to 3.0.2 * Release notes: http://www.wxwidgets.org/news/2014/10/wxwidgets-3.0.2-released/ Modified: head/x11-toolkits/wxgtk30/Makefile head/x11-toolkits/wxgtk30/distinfo head/x11-toolkits/wxgtk30/pkg-plist Modified: head/x11-toolkits/wxgtk30/Makefile ============================================================================== --- head/x11-toolkits/wxgtk30/Makefile Tue Oct 7 14:59:39 2014 (r370347) +++ head/x11-toolkits/wxgtk30/Makefile Tue Oct 7 15:01:29 2014 (r370348) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= wx -PORTVERSION= 3.0.1 -PORTREVISION?= 2 +PORTVERSION= 3.0.2 +PORTREVISION?= 0 CATEGORIES= x11-toolkits MASTER_SITES= SF/wxwindows/${PORTVERSION} PKGNAMESUFFIX= 30-gtk2 Modified: head/x11-toolkits/wxgtk30/distinfo ============================================================================== --- head/x11-toolkits/wxgtk30/distinfo Tue Oct 7 14:59:39 2014 (r370347) +++ head/x11-toolkits/wxgtk30/distinfo Tue Oct 7 15:01:29 2014 (r370348) @@ -1,2 +1,2 @@ -SHA256 (wxWidgets-3.0.1.tar.bz2) = bd671b79ec56af8fb3844e11cafceac1a4276fb02c79404d06b91b6c19d2c5f5 -SIZE (wxWidgets-3.0.1.tar.bz2) = 20068143 +SHA256 (wxWidgets-3.0.2.tar.bz2) = 346879dc554f3ab8d6da2704f651ecb504a22e9d31c17ef5449b129ed711585d +SIZE (wxWidgets-3.0.2.tar.bz2) = 20172909 Modified: head/x11-toolkits/wxgtk30/pkg-plist ============================================================================== --- head/x11-toolkits/wxgtk30/pkg-plist Tue Oct 7 14:59:39 2014 (r370347) +++ head/x11-toolkits/wxgtk30/pkg-plist Tue Oct 7 15:01:29 2014 (r370348) @@ -678,6 +678,7 @@ include/wx-3.0/wx/xrc/xh_ribbon.h include/wx-3.0/wx/xrc/xh_richtext.h include/wx-3.0/wx/xrc/xh_scrol.h include/wx-3.0/wx/xrc/xh_scwin.h +include/wx-3.0/wx/xrc/xh_simplebook.h include/wx-3.0/wx/xrc/xh_sizer.h include/wx-3.0/wx/xrc/xh_slidr.h include/wx-3.0/wx/xrc/xh_spin.h @@ -711,52 +712,52 @@ include/wx-3.0/wx/zipstrm.h include/wx-3.0/wx/zstream.h lib/libwx_baseu-3.0.so lib/libwx_baseu-3.0.so.0 -lib/libwx_baseu-3.0.so.0.1.0 +lib/libwx_baseu-3.0.so.0.2.0 lib/libwx_baseu_net-3.0.so lib/libwx_baseu_net-3.0.so.0 -lib/libwx_baseu_net-3.0.so.0.1.0 +lib/libwx_baseu_net-3.0.so.0.2.0 lib/libwx_baseu_xml-3.0.so lib/libwx_baseu_xml-3.0.so.0 -lib/libwx_baseu_xml-3.0.so.0.1.0 +lib/libwx_baseu_xml-3.0.so.0.2.0 lib/libwx_gtk2u_adv-3.0.so lib/libwx_gtk2u_adv-3.0.so.0 -lib/libwx_gtk2u_adv-3.0.so.0.1.0 +lib/libwx_gtk2u_adv-3.0.so.0.2.0 lib/libwx_gtk2u_aui-3.0.so lib/libwx_gtk2u_aui-3.0.so.0 -lib/libwx_gtk2u_aui-3.0.so.0.1.0 +lib/libwx_gtk2u_aui-3.0.so.0.2.0 lib/libwx_gtk2u_core-3.0.so lib/libwx_gtk2u_core-3.0.so.0 -lib/libwx_gtk2u_core-3.0.so.0.1.0 +lib/libwx_gtk2u_core-3.0.so.0.2.0 lib/libwx_gtk2u_gl-3.0.so lib/libwx_gtk2u_gl-3.0.so.0 -lib/libwx_gtk2u_gl-3.0.so.0.1.0 +lib/libwx_gtk2u_gl-3.0.so.0.2.0 lib/libwx_gtk2u_html-3.0.so lib/libwx_gtk2u_html-3.0.so.0 -lib/libwx_gtk2u_html-3.0.so.0.1.0 +lib/libwx_gtk2u_html-3.0.so.0.2.0 %%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so %%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so.0 -%%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so.0.1.0 +%%GSTREAMER%%lib/libwx_gtk2u_media-3.0.so.0.2.0 lib/libwx_gtk2u_propgrid-3.0.so lib/libwx_gtk2u_propgrid-3.0.so.0 -lib/libwx_gtk2u_propgrid-3.0.so.0.1.0 +lib/libwx_gtk2u_propgrid-3.0.so.0.2.0 lib/libwx_gtk2u_qa-3.0.so lib/libwx_gtk2u_qa-3.0.so.0 -lib/libwx_gtk2u_qa-3.0.so.0.1.0 +lib/libwx_gtk2u_qa-3.0.so.0.2.0 lib/libwx_gtk2u_ribbon-3.0.so lib/libwx_gtk2u_ribbon-3.0.so.0 -lib/libwx_gtk2u_ribbon-3.0.so.0.1.0 +lib/libwx_gtk2u_ribbon-3.0.so.0.2.0 lib/libwx_gtk2u_richtext-3.0.so lib/libwx_gtk2u_richtext-3.0.so.0 -lib/libwx_gtk2u_richtext-3.0.so.0.1.0 +lib/libwx_gtk2u_richtext-3.0.so.0.2.0 lib/libwx_gtk2u_stc-3.0.so lib/libwx_gtk2u_stc-3.0.so.0 -lib/libwx_gtk2u_stc-3.0.so.0.1.0 +lib/libwx_gtk2u_stc-3.0.so.0.2.0 lib/libwx_gtk2u_webview-3.0.so lib/libwx_gtk2u_webview-3.0.so.0 -lib/libwx_gtk2u_webview-3.0.so.0.1.0 +lib/libwx_gtk2u_webview-3.0.so.0.2.0 lib/libwx_gtk2u_xrc-3.0.so lib/libwx_gtk2u_xrc-3.0.so.0 -lib/libwx_gtk2u_xrc-3.0.so.0.1.0 +lib/libwx_gtk2u_xrc-3.0.so.0.2.0 lib/wx/include/gtk2-unicode-3.0/wx/setup.h %%NLS%%share/locale/ca/LC_MESSAGES/wxstd30.mo %%NLS%%share/locale/cs/LC_MESSAGES/wxstd30.mo From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:07:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D673BF72; Tue, 7 Oct 2014 15:07:24 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA741D11; Tue, 7 Oct 2014 15:07:24 +0000 (UTC) Received: from [10.31.9.122] (unknown [213.225.137.129]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id E298543B8C; Tue, 7 Oct 2014 10:07:12 -0500 (CDT) Message-ID: <54340195.60606@marino.st> Date: Tue, 07 Oct 2014 17:07:01 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files References: <201410062258.s96MwoqK063529@svn.freebsd.org> <5433E4F7.9030903@marino.st> <5433F63B.8000506@marino.st> <55F3F598E11FE4EBDB3743DB@ogg.in.absolight.net> In-Reply-To: <55F3F598E11FE4EBDB3743DB@ogg.in.absolight.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:07:25 -0000 On 10/7/2014 16:59, Mathieu Arnold wrote: > +--On 7 octobre 2014 16:18:35 +0200 John Marino > | It was my understanding that pkg-plist lists assigned a ${PREFIX} prefix > | and @cwd was the only way to list files outside of the prefix. This is > | why I was surprised that stuff like /var/db/mydir worked. I don't know > | when absolute paths got supported. > > Absolute path always were supported with pkg, so people have been using > those for some time. Does that mean using them before 1 Sept 2014 broke the port for people using pkg_install? Since it's historical now, I'm mainly just curious. I would have thought this use would be discouraged if pkg_install couldn't support it. > > | for me, absolute path is something new, not a baseline. > | Why would @cwd even exist if it wasn't necessary in the past? > > Well, nothing in the handbook tells you to use @cwd, the only occurrence of > it is in its own documentation section, and make makeplist will output a > clean plist, without using @cwd. I really did actually review the documentation before conceding to use @cwd, and I didn't find anything. The @cwd documentation should note that it's deprecated and to use absolute patch instead (IMO). It would be nice if CHANGES mentioned it too. I checked both sources as I said. John From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:08:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48A7DF6 for ; Tue, 7 Oct 2014 15:08:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 260A9D23 for ; Tue, 7 Oct 2014 15:08:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97F8Zt8060792 for ; Tue, 7 Oct 2014 15:08:35 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97F8Zsq060789 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 15:08:35 GMT (envelope-from bdrewery) Received: (qmail 40119 invoked from network); 7 Oct 2014 10:08:33 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 10:08:33 -0500 Message-ID: <543401E7.4060508@FreeBSD.org> Date: Tue, 07 Oct 2014 10:08:23 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Dan Langille , John Marino Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files References: <201410062258.s96MwoqK063529@svn.freebsd.org> <11C48B58-C7D2-4482-988E-2AE0CBF81569@langille.org> In-Reply-To: <11C48B58-C7D2-4482-988E-2AE0CBF81569@langille.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="e3HIxbe9jAREcGvSH9Pde79d46gTowIW5" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:08:36 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --e3HIxbe9jAREcGvSH9Pde79d46gTowIW5 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 10/6/2014 8:52 PM, Dan Langille wrote: > heads up: emulators/hyperv-is does not have emulators listed in CATEGOR= IES You can fix these yourself with mentor approval too. >=20 > On Oct 6, 2014, at 6:58 PM, John Marino wrote: >=20 >> Author: marino >> Date: Mon Oct 6 22:58:50 2014 >> New Revision: 370242 >> URL: https://svnweb.freebsd.org/changeset/ports/370242 >> QAT: https://qat.redports.org/buildarchive/r370242/ >> >> Log: >> Add new port emulators/hyperv-is (FreeBSD 8.4, 9.1, 9.2, 9.3, 10.0) >> >> PR: 182209 >> Submitted by: kylie (bsdic @ microsoft) >> >> The hyperv-is provision a collection of kernel mode drivers as well a= s >> user-space daemons to facilitate integration with Hyper-v to provide = a >> feature rich and high performance FreeBSD guest experience. >> >> The FreeBSD Integration Service on Hyper-v includes a collection of k= ernel >> mode drivers as well as user-space daemons to interact with the drive= rs >> that are required to run Hyper-V-specific devices known as FreeBSD >> Integration Services (BIS). It is to facilitate integration with Hype= r-v >> to provide a feature rich and high performance FreeBSD guest experien= ce. >> See the man page for a list of binaries and their functions. >> >> FreeBSD support for hyperv-is was first added by Microsoft BSD Integr= ation >> Services Team . >> >> Added: >> head/emulators/hyperv-is/ >> head/emulators/hyperv-is/Makefile (contents, props changed) >> head/emulators/hyperv-is/distinfo (contents, props changed) >> head/emulators/hyperv-is/files/ >> head/emulators/hyperv-is/files/pkg-message.A.in (contents, props ch= anged) >> head/emulators/hyperv-is/files/pkg-message.B.in (contents, props ch= anged) >> head/emulators/hyperv-is/pkg-descr (contents, props changed) >> head/emulators/hyperv-is/pkg-install (contents, props changed) >> head/emulators/hyperv-is/pkg-plist (contents, props changed) >> Modified: >> head/emulators/Makefile >> >> Modified: head/emulators/Makefile >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- head/emulators/Makefile Mon Oct 6 22:54:24 2014 (r370241) >> +++ head/emulators/Makefile Mon Oct 6 22:58:50 2014 (r370242) >> @@ -53,6 +53,7 @@ >> SUBDIR +=3D hercules >> SUBDIR +=3D higan >> SUBDIR +=3D hugo >> + SUBDIR +=3D hyperv-is >> SUBDIR +=3D i386-wine >> SUBDIR +=3D i386-wine-compholio >> SUBDIR +=3D i386-wine-devel >> >> Added: head/emulators/hyperv-is/Makefile >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/Makefile Mon Oct 6 22:58:50 2014 (r37024= 2) >> @@ -0,0 +1,61 @@ >> +# $FreeBSD$ >> + >> +PORTNAME=3D hyperv-is >> +PORTVERSION=3D 1.1 >> +CATEGORIES=3D kld >> +MASTER_SITES=3D https://github.com/${MSLINK}/ >> +DISTNAME=3D ${DNAME} >> + >> +MAINTAINER=3D bsdic@microsoft.com >> +COMMENT=3D FreeBSD Integration Service on Hyper-v >> + >> +ONLY_FOR_ARCHS=3D amd64 i386 >> + >> +USES+=3D uidfix >> +BIS=3D ${PORTVERSION} >> +MSBASE=3D FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master >> +MSLINK=3D ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports >> +SUB_FILES=3D ${PMSG} >> + >> +.include >> + >> +.if ${OPSYS} !=3D FreeBSD >> +IGNORE=3D ${OPSYS} not supported >> +.endif >> + >> +.if ${OSREL} =3D=3D "10.0" >> +BIS=3D 1.0 >> +PLIST_SUB=3D A=3D"@comment " B=3D"" >> +PMSG=3D pkg-message.B >> +.else >> +CC=3D gcc -w >> +WRKSRC=3D ${WRKDIR}/hyperv-is-${PORTVERSION} >> +PLIST_SUB=3D B=3D"@comment " A=3D"" >> +PMSG=3D pkg-message.A >> +.endif >> + >> +FILE_84=3D hyperv-is-8.4.${BIS} >> +FILE_91=3D hyperv-is-9.1.${BIS} >> +FILE_92=3D hyperv-is-9.2.${BIS} >> +FILE_93=3D hyperv-is-9.3.${BIS} >> +FILE_100=3D hv-kvp-${BIS} >> +DNAME=3D ${FILE_${OSREL:S/.//}} >> + >> +.if empty(DNAME) >> +IGNORE=3D OSREL ${OSREL} not supported >> +.endif >> + >> +pre-install: >> + @${MKDIR} ${STAGEDIR}/boot/kernel \ >> + ${STAGEDIR}/etc/rc.d \ >> + ${STAGEDIR}/usr/share/man/man1 \ >> + ${STAGEDIR}/usr/share/man/man4 \ >> + ${STAGEDIR}/usr/share/man/man8 \ >> + ${STAGEDIR}/usr/local/hyperv/scripts \ >> + ${STAGEDIR}/usr/sbin >> + ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message >> + >> +post-install: >> + ${RM} ${STAGEDIR}/boot/kernel/linker.hints >> + >> +.include >> >> Added: head/emulators/hyperv-is/distinfo >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/distinfo Mon Oct 6 22:58:50 2014 (r37024= 2) >> @@ -0,0 +1,10 @@ >> +SHA256 (hyperv-is-8.4.1.1.tar.gz) =3D 21f21bf8192892b823a63ebcea8cfd9= 16ab0572b965c06471388386765346ae6 >> +SIZE (hyperv-is-8.4.1.1.tar.gz) =3D 94356 >> +SHA256 (hyperv-is-9.1.1.1.tar.gz) =3D ab4dc50d4f66ef983bd0de96388ba95= e29d1e987362336bf44e3ff971425245a >> +SIZE (hyperv-is-9.1.1.1.tar.gz) =3D 94286 >> +SHA256 (hyperv-is-9.2.1.1.tar.gz) =3D 75e4ed3ba0c75ce5c67efed7b4f72ad= a3047f4cc986659b64c14979227292fd5 >> +SIZE (hyperv-is-9.2.1.1.tar.gz) =3D 94294 >> +SHA256 (hyperv-is-9.3.1.1.tar.gz) =3D 10a63b7b2a7bbfd158eed3852b0c25b= fba3362c3cec28dfac641e22e61b23587 >> +SIZE (hyperv-is-9.3.1.1.tar.gz) =3D 94296 >> +SHA256 (hv-kvp-1.0.tar.gz) =3D c2c60ae645cae75b25934aae7b18c8a29bf006= 60a1e4ade5d8f31bb98d7ecc78 >> +SIZE (hv-kvp-1.0.tar.gz) =3D 30815 >> >> Added: head/emulators/hyperv-is/files/pkg-message.A.in >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/files/pkg-message.A.in Mon Oct 6 22:58:5= 0 2014 (r370242) >> @@ -0,0 +1,19 @@ >> +#####################################################################= ######## >> +After installing do the following steps: >> +# Deleting Hyper-v BIS driver names >> + sed -i "" '/Loader labels for Hyper-v BIS driver/d' /boot/loader.c= onf >> + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf >> + sed -i "" '/hv_utils_load/d' /boot/loader.conf >> + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf >> + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf >> + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf >> + >> + #Hyper-v driver names >> + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> = /boot/loader.conf >> + echo 'hv_vmbus_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_utils_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_storvsc_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_netvsc_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_ata_pci_disengage_load=3D"YES"' >>/boot/loader.conf >> +When deinstalled, restore /boot/loader.conf >> +#####################################################################= ######## >> >> Added: head/emulators/hyperv-is/files/pkg-message.B.in >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/files/pkg-message.B.in Mon Oct 6 22:58:5= 0 2014 (r370242) >> @@ -0,0 +1,17 @@ >> +#####################################################################= ######## >> +To enable hv_kvp, you should do the steps following: >> + # Deleting kvp label >> + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf = >> + sed -i "" '/hv_kvp_load/d' /etc/rc.conf=20 >> + >> + #hyperv driver names >> + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> = /boot/loader.conf >> + echo 'hv_kvp_load=3D"YES"' >> /boot/loader.conf >> + >> +# KVP - daemon label >> + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf >> + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf >> + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf >> + echo 'hv_kvp_daemon_enable=3D"YES"' >> /etc/rc.conf >> +After deinstall, you should restore /boot/loader.conf and /etc/rc.con= f >> +#####################################################################= ######## >> >> Added: head/emulators/hyperv-is/pkg-descr >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/pkg-descr Mon Oct 6 22:58:50 2014 (r3702= 42) >> @@ -0,0 +1,13 @@ >> +The hyperv-is provision a collection of kernel mode drivers as well a= s >> +user-space daemons to facilitate integration with Hyper-v to provide = a >> +feature rich and high performance FreeBSD guest experience. >> + >> +The FreeBSD Integration Service on Hyper-v includes a collection of k= ernel >> +mode drivers as well as user-space daemons to interact with the drive= rs >> +that are required to run Hyper-V-specific devices known as FreeBSD >> +Integration Services (BIS). It is to facilitate integration with Hype= r-v >> +to provide a feature rich and high performance FreeBSD guest experien= ce. >> +See the man page for a list of binaries and their functions. >> + >> +FreeBSD support for hyperv-is was first added by Microsoft BSD Integr= ation >> +Services Team . >> >> Added: head/emulators/hyperv-is/pkg-install >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/pkg-install Mon Oct 6 22:58:50 2014 (r37= 0242) >> @@ -0,0 +1,55 @@ >> +#!/bin/sh >> +# >> +# make install or pkg_add script >> +# Checks labels/gptids for roots and swap partitions >> +# adds hyperv labels in loader.conf=20 >> +# >> + >> +#Check poudriere workdirs >> +POD_WRK_HOME=3D/wrkdirs >> +if [ ! -d ${POD_WRK_HOME} ]; then >> + POD_WRK_HOME=3D/ >> +fi >> + >> +WRKDIRS=3D${POD_WRK_HOME}$(pwd |awk '{print $1}')/work/stage >> +if [ ! -d ${WRKDIRS} ]; then >> + WRKDIRS=3D/ >> +fi >> + >> +if [ "$2" =3D "PRE-INSTALL" ]; then >> +echo "=3D=3D=3D> Pre-install Check" >> + >> +#rootfs check >> +root_flag=3D$(mount | awk '/ on \/ / { print $1 }' | cut -d / -f3-) >> +if [ "$root_flag" !=3D "" ]; then >> + fs_test=3D$(glabel status | awk '{print $1}' | grep $root_flag) >> + if [ "$fs_test" =3D=3D "" ]; then >> + echo " xxx rootfs Label/gptid missing in fstab" =20 >> + fi >> +else=20 >> + echo " xxx rootfs Label/gptid missing in fstab" >> +fi >> +#swap check >> +[ -f /etc/fstab ] && swap_flag=3D$(grep swap /etc/fstab | awk '{print= $1}' | cut -d / -f3-) >> +if [ "$swap_flag" !=3D "" ]; then >> + sw_test=3D$(glabel status | awk '{print $1}' | grep $swap_flag) >> + if [ "$sw_test" =3D=3D "" ]; then >> + echo " xxx swap Label/gptid missing in fstab" =20 >> + fi >> +else =20 >> + echo " xxx swap Label/gptid missing in fstab " >> +fi >> + >> +if [ "$fs_test" !=3D "" -a "$sw_test" !=3D "" ]; then >> + echo "=3D=3D=3D> Labels/gptids Found" >> + echo "=3D=3D=3D> Hyper-V BIS Installation Continues" >> +else >> + echo "=3D=3D=3D> Labels/gptids Not found" >> + echo "=3D=3D=3D> Hyper-V BIS Installation Aborted" >> + echo "=3D=3D=3D> Refer to Disk UUID section in README document" >> + echo "=3D=3D=3D> Please refer the Prerequisites page and complete = all steps"=20 >> + echo "WWW: https://github.com/FreeBSDonHyper-V/Hyperv-Ports/wiki/P= rerequisites "=20 >> + exit 1=20 >> +fi >> +fi >> +exit 0 >> >> Added: head/emulators/hyperv-is/pkg-plist >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/pkg-plist Mon Oct 6 22:58:50 2014 (r3702= 42) >> @@ -0,0 +1,25 @@ >> +hyperv/scripts/hv_get_dhcp_info >> +hyperv/scripts/hv_get_dns_info >> +hyperv/scripts/hv_set_ifconfig >> +@cwd /boot/kernel >> +%%A%%hv_ata_pci_disengage.ko >> +%%A%%hv_netvsc.ko >> +%%A%%hv_storvsc.ko >> +%%A%%hv_utils.ko >> +%%A%%hv_vmbus.ko >> +%%B%%hv_kvp.ko >> +@cwd /etc/rc.d >> +hv_kvpd >> +%%A%%@cwd /usr/share/man/man1 >> +%%A%%hyperv-is.1.gz >> +%%B%%@cwd /usr/sbin >> +%%B%%hv_kvp_daemon >> +@cwd /usr/share/man/man4 >> +%%A%%hv_ata_pci_disengage.4.gz >> +hv_kvp.4.gz >> +%%A%%hv_netvsc.4.gz >> +%%A%%hv_storvsc.4.gz >> +%%A%%hv_utils.4.gz >> +%%A%%hv_vmbus.4.gz >> +%%B%%@cwd /usr/share/man/man8 >> +%%B%%hv_kvp_daemon.8.gz >> _______________________________________________ >> svn-ports-head@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/svn-ports-head >> To unsubscribe, send any mail to "svn-ports-head-unsubscribe@freebsd.o= rg" >=20 > =97=20 > Dan Langille >=20 --=20 Regards, Bryan Drewery --e3HIxbe9jAREcGvSH9Pde79d46gTowIW5 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNAHsAAoJEDXXcbtuRpfP8TwH/Al5lCDzwRL0cDUFCjG6EMEh 5m9tvQsPmCo+iuWzLvOnj9tj+HVCya7DQV6m3ALdV8AhWDen6T4e8LxbcYfUHSbv fkxPvBfXgWpac25fAZkRq/1nMfGHQBaeQGcrJ2wE106FS1LJ1SjS4tSaDKsSXq2A KzZA8bm94i/+OGehUYkZwE/LhqnCrr43bw0PmvOPkm+QB0xkA6pFSvxCaq1VmzJB 3PE4YB8uOfWkcawz51aEXfWOPyp1Z1zlYBIPQWhLkSPt4iCL0599pFlDuYuSv823 q3WvjHRoWr4PWPZS69Uy4TU9qMZhsRpO5nINh8IaOpCwmO7/B13cCqi+Vednl0E= =87+h -----END PGP SIGNATURE----- --e3HIxbe9jAREcGvSH9Pde79d46gTowIW5-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:09:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8190E1E0 for ; Tue, 7 Oct 2014 15:09:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 472E9D2D for ; Tue, 7 Oct 2014 15:09:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97F9jo5060839 for ; Tue, 7 Oct 2014 15:09:45 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97F9j7X060835 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 15:09:45 GMT (envelope-from bdrewery) Received: (qmail 52046 invoked from network); 7 Oct 2014 10:09:43 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 10:09:43 -0500 Message-ID: <54340231.2020903@FreeBSD.org> Date: Tue, 07 Oct 2014 10:09:37 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: marino@freebsd.org, Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370242 - in head/emulators: . hyperv-is hyperv-is/files References: <201410062258.s96MwoqK063529@svn.freebsd.org> <5433E4F7.9030903@marino.st> In-Reply-To: <5433E4F7.9030903@marino.st> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aVA8aGGNj6fpUCxCxru44hc5mTjpIpQrS" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:09:45 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --aVA8aGGNj6fpUCxCxru44hc5mTjpIpQrS Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 10/7/2014 8:04 AM, John Marino wrote: > On 10/7/2014 11:59, Mathieu Arnold wrote: >> +--On 6 octobre 2014 22:58:50 +0000 John Marino w= rote: >> | +@cwd /boot/kernel >> | +%%A%%hv_ata_pci_disengage.ko >> | +%%A%%hv_netvsc.ko >> >> Please, do not use @cwd, it is confusing, and not needed since pkg_* h= as >> gotten out. List files with their path like this : >> %%A%%/boot/kernel/hv_ata_pci_disengage.ko >=20 > In my defense: > 1) It works (tested pretty thoroughly) > 2) The alternative to @cwd is not documented in UPDATING so I had no > idea what the alternative was. > 3) cwd is documented here with no alternative: > https://www.freebsd.org/doc/en/books/porters-handbook/plist-keywords.ht= ml >=20 > So it's not really fair to bang on us for stuff that is undocumented. > right? This theme is getting repetitive too. >=20 > John >=20 Agreed, @cwd is not marked "deprecated" anywhere. It's an oversight that should be fixed. The alternative is just using absolute paths rather than relative. --=20 Regards, Bryan Drewery --aVA8aGGNj6fpUCxCxru44hc5mTjpIpQrS Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNAIxAAoJEDXXcbtuRpfP2XIIAJ78dbA8oba/20Cjpz/7+Nia OQNzsAwU6HmfS20ooKYsHgmbtr/hiCwt8E4MZH7lPJ7RQaWJYFMmP2BLmLQ0mfmb zo16tUBexAAxutWro1sJK3AaNjjRQaHiKKPnWz0ppoHudrAq6tiv2oj8n2ZGM4yZ SFzpFXdGZck6bLUnqMxNmzyBLbnuOCePUjJMWLQ06EPhUBiHOZ+Ql1eA0Q0oAKh1 /M5otkToWo/75YFlIc1jSeXrzhX1v+5ShYA1thYMonQL9bYsydqLky69a71AbiSK BcZjjMkaY66ReTbofMzn6NFehtTFrXCfjgrty1lUl6BmzHO6uPfJR72SpZxt+TY= =E4ta -----END PGP SIGNATURE----- --aVA8aGGNj6fpUCxCxru44hc5mTjpIpQrS-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:10:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 162102CE; Tue, 7 Oct 2014 15:10:44 +0000 (UTC) Received: from mail-wi0-x22e.google.com (mail-wi0-x22e.google.com [IPv6:2a00:1450:400c:c05::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 56669DC3; Tue, 7 Oct 2014 15:10:43 +0000 (UTC) Received: by mail-wi0-f174.google.com with SMTP id cc10so8196874wib.13 for ; Tue, 07 Oct 2014 08:10:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=9qSjT3KTPhBiMpiAkpejbFbnrxAcuZzfx9mWLJf/FSc=; b=0oxJMjpnimV/SJHUih3w++D7//7nv+TIjEdknfcxaoVlqR2DXFMLFRVdc8L/hsy5AE h9dv6MpmxssKHvJnassG1lNrhtnw2/CkbEvEQGR3MHdvNDky7yWL+ihVP6jsxtWL2k3R FgMRs0d8P9+6HS95muzxqylW2gcO/OocRawDsvF3sqtyc6PFHkXd5OtHIy2Mff5JK2zL ICZ/kLtxOYx4fPAdu35uCDVqvKTJRmIAJy8Y1Fc8IAVf4zz0HoR5qGBS5M7Je+d0kZVw iW1EE0SyGskw/A8+siRyr319a2me53MJOGurysMPwPEVXm9P2wuLGOAka/0FlA1k46VU DQjg== X-Received: by 10.194.156.132 with SMTP id we4mr5650112wjb.101.1412694641601; Tue, 07 Oct 2014 08:10:41 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id y5sm4642241wix.10.2014.10.07.08.10.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Oct 2014 08:10:40 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:10:38 +0200 From: Baptiste Daroussin To: Gerald Pfeifer Subject: Re: svn commit: r369448 - head/lang/gcc5 Message-ID: <20141007151038.GM37670@ivaldir.etoilebsd.net> References: <201409281049.s8SAnFiT062634@svn.freebsd.org> <20140928205858.GH40373@ivaldir.etoilebsd.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="kUBUi7JBpjcBtem/" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:10:44 -0000 --kUBUi7JBpjcBtem/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 07, 2014 at 03:52:45PM +0200, Gerald Pfeifer wrote: > On Sunday 2014-09-28 22:58, Baptiste Daroussin wrote: > >> share/applications > >> share/licenses/gcc5-5.0.s20140921 > > The above stayed? that looks strange I'm at EuroBSDCon for now, I'll=20 > > check when back home. >=20 > Thanks. This now went from warning to error in my recent test > after your later committ >=20 > r370199 | bapt | 2014-10-06 18:13:15 +0000 (Mon, 06 Oct 2014) | 5 lines >=20 > Comment out info/dir files > indexinfo is taking care of generating it at package installation time > =20 > Here is the log: >=20 > #### make > #### make stage > #### make package > #### make deinstall > #### pkg install > #### make deinstall > #### make reinstall > #### make package > #### make deinstall > #### The PREFIX should be essentially empty: > info/gcc5 > share/applications > share/gcc-5.0.0 > share/licenses/gcc5-5.0.s20141005 > info/gcc5 > #### Running regression-test, checking for orphans, checking pkg-plist. > =3D=3D=3D=3D> Checking for pkg-plist issues (check-plist) > =3D=3D=3D> Parsing plist > =3D=3D=3D> Checking for items in STAGEDIR missing from pkg-plist > Error: Orphaned: info/gcc5/dir > =3D=3D=3D> Checking for items in pkg-plist which are not in STAGEDIR > =3D=3D=3D> Error: Plist issues found. > =3D=3D=3D> Warning: Test was done with PREFIX !=3D LOCALBASE > =3D=3D=3D> Warning: The port may not be properly installing into PREFIX > *** Error code 1 >=20 > (This is installing as user into a non-standard PREFIX and following > the old ports/package testing instructions.) >=20 > Gerald =3D=3D=3D=3D> Checking for pkg-plist issues (check-plist) =3D=3D=3D> Parsing plist =3D=3D=3D> Checking for items in STAGEDIR missing from pkg-plist =3D=3D=3D> Checking for items in pkg-plist which are not in STAGEDIR =3D=3D=3D> No pkg-plist issues found (check-plist) Here is what make check-plist is giving to me on gcc 5 regards, Bapt --kUBUi7JBpjcBtem/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlQ0Am4ACgkQ8kTtMUmk6Exe8QCeJiz0GNVGl4IFUSD94bSxjGX7 8eQAmwc2XmrCjOuQo9aAjBY+E/8Su0nY =zER0 -----END PGP SIGNATURE----- --kUBUi7JBpjcBtem/-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:47:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7185A792; Tue, 7 Oct 2014 15:47:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43AEC2D7; Tue, 7 Oct 2014 15:47:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97FlJXw055998; Tue, 7 Oct 2014 15:47:19 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97FlIIv055995; Tue, 7 Oct 2014 15:47:18 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410071547.s97FlIIv055995@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 7 Oct 2014 15:47:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370349 - head/irc/inspircd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:47:19 -0000 Author: feld Date: Tue Oct 7 15:47:18 2014 New Revision: 370349 URL: https://svnweb.freebsd.org/changeset/ports/370349 QAT: https://qat.redports.org/buildarchive/r370349/ Log: Add CPE capability Remove unnecessary @dirrm Modified: head/irc/inspircd/Makefile head/irc/inspircd/pkg-plist Modified: head/irc/inspircd/Makefile ============================================================================== --- head/irc/inspircd/Makefile Tue Oct 7 15:01:29 2014 (r370348) +++ head/irc/inspircd/Makefile Tue Oct 7 15:47:18 2014 (r370349) @@ -34,9 +34,12 @@ SUB_LIST+= PORTNAME=${PORTNAME} \ GROUPS=${GROUPS} # Configure script is written in perl -USES= perl5 +USES= cpe perl5 USE_PERL5= build +CPE_VENDOR= inspire_ircd +CPE_PRODUCT= inspircd + HAS_CONFIGURE= yes CONFIGURE_ARGS= --with-cc=${CXX} --config-dir=${ETCDIR} \ --module-dir=${PREFIX}/lib/${PORTNAME}/modules \ Modified: head/irc/inspircd/pkg-plist ============================================================================== --- head/irc/inspircd/pkg-plist Tue Oct 7 15:01:29 2014 (r370348) +++ head/irc/inspircd/pkg-plist Tue Oct 7 15:47:18 2014 (r370349) @@ -225,14 +225,6 @@ lib/inspircd/modules/m_userip.so lib/inspircd/modules/m_vhost.so lib/inspircd/modules/m_watch.so lib/inspircd/modules/m_xline_db.so -@dirrmtry etc/inspircd/examples/aliases -@dirrmtry etc/inspircd/examples/modules -@dirrmtry etc/inspircd/examples -@dirrmtry etc/inspircd -@dirrm lib/inspircd/modules -@dirrmtry lib/inspircd/logs -@dirrmtry lib/inspircd/data -@dirrm lib/inspircd @unexec if cmp -s %D/%%ETCDIR%%/examples/censor.conf.example %D/%%ETCDIR%%/censor.conf; then rm -f %D/%%ETCDIR%%/censor.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/examples/filter.conf.example %D/%%ETCDIR%%/filter.conf; then rm -f %D/%%ETCDIR%%/filter.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/examples/helpop-full.conf.example %D/%%ETCDIR%%/helpop-full.conf; then rm -f %D/%%ETCDIR%%/helpop-full.conf; fi From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:47:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27AD9A0E; Tue, 7 Oct 2014 15:47:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13FE72E2; Tue, 7 Oct 2014 15:47:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97FlkcK056156; Tue, 7 Oct 2014 15:47:46 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Flk5l056155; Tue, 7 Oct 2014 15:47:46 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201410071547.s97Flk5l056155@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 7 Oct 2014 15:47:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370350 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:47:47 -0000 Author: mat Date: Tue Oct 7 15:47:46 2014 New Revision: 370350 URL: https://svnweb.freebsd.org/changeset/ports/370350 QAT: https://qat.redports.org/buildarchive/r370350/ Log: Note @cwd being deprecated. Sponsored by: Absolight Modified: head/CHANGES Modified: head/CHANGES ============================================================================== --- head/CHANGES Tue Oct 7 15:47:18 2014 (r370349) +++ head/CHANGES Tue Oct 7 15:47:46 2014 (r370350) @@ -10,6 +10,21 @@ in the release notes and/or placed into All ports committers are allowed to commit to this file. +20141007: +AUTHOR: mat@FreeBSD.org + + The @cwd [path] construct in plist files is deprecated. Instead of adding + those lines to the plist: + + @cwd / + etc/rc.d/foo + var/db/bar + + add this: + + /etc/rc.d/foo + /var/db/bar + 20141002: AUTHOR: bapt@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:49:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24541BDD; Tue, 7 Oct 2014 15:49:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0DBB5303; Tue, 7 Oct 2014 15:49:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Fnt3F056530; Tue, 7 Oct 2014 15:49:55 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97FntkP056529; Tue, 7 Oct 2014 15:49:55 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071549.s97FntkP056529@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 15:49:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370351 - head/databases/pgtcl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:49:56 -0000 Author: gahr Date: Tue Oct 7 15:49:55 2014 New Revision: 370351 URL: https://svnweb.freebsd.org/changeset/ports/370351 QAT: https://qat.redports.org/buildarchive/r370351/ Log: - USE_LDCONFIG Modified: head/databases/pgtcl/Makefile Modified: head/databases/pgtcl/Makefile ============================================================================== --- head/databases/pgtcl/Makefile Tue Oct 7 15:47:46 2014 (r370350) +++ head/databases/pgtcl/Makefile Tue Oct 7 15:49:55 2014 (r370351) @@ -25,6 +25,7 @@ USES= pgsql tcl GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} --with-tclinclude=${TCL_INCLUDEDIR} LIBDIR= ${PREFIX}/lib/${PORTNAME} +USE_LDCONFIG= ${LIBDIR} PLIST_SUB+= PORTVERSION=${PORTVERSION} MANUALREL= 20110918 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:49:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F4D0B1D for ; Tue, 7 Oct 2014 15:49:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB9F3301 for ; Tue, 7 Oct 2014 15:49:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97FnrZg074517 for ; Tue, 7 Oct 2014 15:49:53 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97Fnr4c074510 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 15:49:53 GMT (envelope-from bdrewery) Received: (qmail 6555 invoked from network); 7 Oct 2014 10:49:51 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 10:49:51 -0500 Message-ID: <54340B99.9070304@FreeBSD.org> Date: Tue, 07 Oct 2014 10:49:45 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370350 - head References: <201410071547.s97Flk5l056155@svn.freebsd.org> In-Reply-To: <201410071547.s97Flk5l056155@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EwEDWlGfgAg6u1mMLlaaRctHS8XejxdHd" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:49:54 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --EwEDWlGfgAg6u1mMLlaaRctHS8XejxdHd Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 10:47 AM, Mathieu Arnold wrote: > Author: mat > Date: Tue Oct 7 15:47:46 2014 > New Revision: 370350 > URL: https://svnweb.freebsd.org/changeset/ports/370350 > QAT: https://qat.redports.org/buildarchive/r370350/ >=20 > Log: > Note @cwd being deprecated. > =20 > Sponsored by: Absolight >=20 > Modified: > head/CHANGES >=20 > Modified: head/CHANGES > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/CHANGES Tue Oct 7 15:47:18 2014 (r370349) > +++ head/CHANGES Tue Oct 7 15:47:46 2014 (r370350) > @@ -10,6 +10,21 @@ in the release notes and/or placed into=20 > =20 > All ports committers are allowed to commit to this file. > =20 > +20141007: > +AUTHOR: mat@FreeBSD.org > + > + The @cwd [path] construct in plist files is deprecated. Instead of = adding > + those lines to the plist: > + > + @cwd / > + etc/rc.d/foo > + var/db/bar > + > + add this: > + > + /etc/rc.d/foo > + /var/db/bar > + > 20141002: > AUTHOR: bapt@FreeBSD.org > =20 >=20 @exec and all other keywords that use %D must be considered as well. --=20 Regards, Bryan Drewery --EwEDWlGfgAg6u1mMLlaaRctHS8XejxdHd Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNAuaAAoJEDXXcbtuRpfPRjkIANmetxxmXVMBdSoKqa4vCZe3 4eXev4aQHibOe+JkW3lY7kn2po2/RMSpjZoVL5OagvGAm2jayxsn68UNU13gwe1U esMvE96XEU8xtrzpmuFSq46usIJhMRbpDlYxBM4XpuOPe4VrLFoYjQAs0puHVPGu xT1jh0ridwEKFbsxP1ZFHDtM2At4gne5xjZYZhUmrwZrKcG+KxGK2GXAfLz+te72 fq+L8B5JXLzudi2ylCqpOVFYzoXlprMVeIBasJ4k9yhreJSOUBe947Eje80sE71c j4yt8C5ANdzQckzbXlVdU5jWXHSePmYH8TxCGZ7+dYPln8kGpOXi+0ZAjNwPc3Y= =MRpv -----END PGP SIGNATURE----- --EwEDWlGfgAg6u1mMLlaaRctHS8XejxdHd-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:51:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 820B5D0A; Tue, 7 Oct 2014 15:51:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5409A3B0; Tue, 7 Oct 2014 15:51:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97FppfG060306; Tue, 7 Oct 2014 15:51:51 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Fpoc3060303; Tue, 7 Oct 2014 15:51:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071551.s97Fpoc3060303@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 15:51:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370352 - in head/graphics/gimageview: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:51:51 -0000 Author: amdmi3 Date: Tue Oct 7 15:51:50 2014 New Revision: 370352 URL: https://svnweb.freebsd.org/changeset/ports/370352 QAT: https://qat.redports.org/buildarchive/r370352/ Log: - Fix checking unitialized variable - While here, add LICENSE PR: 194210 Submitted by: enslay@gmail.com MFH: 2014Q4 Added: head/graphics/gimageview/files/patch-plugins__image_view__gimv_mplayer.c (contents, props changed) Modified: head/graphics/gimageview/Makefile Modified: head/graphics/gimageview/Makefile ============================================================================== --- head/graphics/gimageview/Makefile Tue Oct 7 15:49:55 2014 (r370351) +++ head/graphics/gimageview/Makefile Tue Oct 7 15:51:50 2014 (r370352) @@ -3,13 +3,16 @@ PORTNAME= gimageview PORTVERSION= 0.2.27 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= graphics MASTER_SITES= SF/gtkmmviewer/${PORTNAME}/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Yet another GTK+ based image viewer +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ libpng15.so:${PORTSDIR}/graphics/png Added: head/graphics/gimageview/files/patch-plugins__image_view__gimv_mplayer.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/gimageview/files/patch-plugins__image_view__gimv_mplayer.c Tue Oct 7 15:51:50 2014 (r370352) @@ -0,0 +1,20 @@ +Fixes check on unitialized variable +--- plugins/image_view/gimv_mplayer.c.orig 2004-09-29 03:42:14.000000000 -0500 ++++ plugins/image_view/gimv_mplayer.c 2014-10-06 23:43:40.000000000 -0400 +@@ -1480,13 +1480,13 @@ + gint i, len, size; + gchar *src, *end; + ++ src = buf; ++ size = bufsize; ++ + g_return_if_fail (buf && stock_buf); + g_return_if_fail (size > 0 || size < GIMV_MPLAYER_BUF_SIZE); + g_return_if_fail (remain_size); + +- src = buf; +- size = bufsize; +- + while (src && size >= 0) { + end = NULL; + From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:56:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08911134; Tue, 7 Oct 2014 15:56:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E58395E2; Tue, 7 Oct 2014 15:56:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97FuXHK061140; Tue, 7 Oct 2014 15:56:33 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97FuWFI061133; Tue, 7 Oct 2014 15:56:32 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410071556.s97FuWFI061133@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 7 Oct 2014 15:56:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370353 - in head: astro/boinc-astropulse astro/boinc-setiathome-v7 misc/biosfont-demos net/boinc-client sysutils/biosfont X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:56:34 -0000 Author: rene Date: Tue Oct 7 15:56:31 2014 New Revision: 370353 URL: https://svnweb.freebsd.org/changeset/ports/370353 QAT: https://qat.redports.org/buildarchive/r370353/ Log: Drop ftp://rene-ladan.nl/pub/ as mirror. While here use shorter form for "local" master sites. Modified: head/astro/boinc-astropulse/Makefile head/astro/boinc-setiathome-v7/Makefile head/misc/biosfont-demos/Makefile head/net/boinc-client/Makefile head/sysutils/biosfont/Makefile Modified: head/astro/boinc-astropulse/Makefile ============================================================================== --- head/astro/boinc-astropulse/Makefile Tue Oct 7 15:51:50 2014 (r370352) +++ head/astro/boinc-astropulse/Makefile Tue Oct 7 15:56:31 2014 (r370353) @@ -5,10 +5,8 @@ PORTNAME= boinc-astropulse PORTVERSION= 6.01 PORTREVISION= 10 CATEGORIES= astro -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://rene-ladan.nl/pub/distfiles/ +MASTER_SITES= LOCAL/rene DISTNAME= astropulse-svn-1702 # modified archive, see leftout in top directory -MASTER_SITE_SUBDIR=rene MAINTAINER= ports@FreeBSD.org COMMENT= Astropulse for BOINC Modified: head/astro/boinc-setiathome-v7/Makefile ============================================================================== --- head/astro/boinc-setiathome-v7/Makefile Tue Oct 7 15:51:50 2014 (r370352) +++ head/astro/boinc-setiathome-v7/Makefile Tue Oct 7 15:56:31 2014 (r370353) @@ -5,10 +5,8 @@ PORTNAME= boinc-setiathome-v7 PORTVERSION= 7.00 PORTREVISION= 5 CATEGORIES= astro -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://rene-ladan.nl/pub/distfiles/ +MASTER_SITES= LOCAL/rene DISTNAME= setiathome-svn-1924 # modified archive, see leftout in top directory -MASTER_SITE_SUBDIR=rene MAINTAINER= ports@FreeBSD.org COMMENT= Setiathome Enhanced for BOINC Modified: head/misc/biosfont-demos/Makefile ============================================================================== --- head/misc/biosfont-demos/Makefile Tue Oct 7 15:51:50 2014 (r370352) +++ head/misc/biosfont-demos/Makefile Tue Oct 7 15:56:31 2014 (r370353) @@ -5,9 +5,7 @@ PORTNAME= biosfont-demos PORTVERSION= 1.1 PORTREVISION= 2 CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://rene-ladan.nl/pub/distfiles/ -MASTER_SITE_SUBDIR=rene +MASTER_SITES= LOCAL/rene MAINTAINER= rene@FreeBSD.org COMMENT= Demos for the biosfont kernel module Modified: head/net/boinc-client/Makefile ============================================================================== --- head/net/boinc-client/Makefile Tue Oct 7 15:51:50 2014 (r370352) +++ head/net/boinc-client/Makefile Tue Oct 7 15:56:31 2014 (r370353) @@ -5,9 +5,7 @@ PORTNAME= boinc-client PORTVERSION= 7.2.33 PORTREVISION= 6 CATEGORIES= net -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://rene-ladan.nl/pub/distfiles/ -MASTER_SITE_SUBDIR=rene +MASTER_SITES= LOCAL/rene MAINTAINER= ports@FreeBSD.org COMMENT= Berkeley Open Infrastructure for Network Computing client Modified: head/sysutils/biosfont/Makefile ============================================================================== --- head/sysutils/biosfont/Makefile Tue Oct 7 15:51:50 2014 (r370352) +++ head/sysutils/biosfont/Makefile Tue Oct 7 15:56:31 2014 (r370353) @@ -4,9 +4,7 @@ PORTNAME= biosfont PORTVERSION= 1.2.1 CATEGORIES= sysutils -MASTER_SITES= ${MASTER_SITE_LOCAL} \ - ftp://rene-ladan.nl/pub/distfiles/ -MASTER_SITE_SUBDIR=rene +MASTER_SITES= LOCAL/rene MAINTAINER= rene@FreeBSD.org COMMENT= Kernel module to retrieve bitmap fonts from BIOS memory From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:57:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDAEC222; Tue, 7 Oct 2014 15:57:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B9B5C5F1; Tue, 7 Oct 2014 15:57:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Fvij8061387; Tue, 7 Oct 2014 15:57:44 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97FviPj061386; Tue, 7 Oct 2014 15:57:44 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071557.s97FviPj061386@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 15:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370354 - head/games/tuxpaint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:57:44 -0000 Author: bapt Date: Tue Oct 7 15:57:43 2014 New Revision: 370354 URL: https://svnweb.freebsd.org/changeset/ports/370354 QAT: https://qat.redports.org/buildarchive/r370354/ Log: Fix without gperf in base Modified: head/games/tuxpaint/Makefile Modified: head/games/tuxpaint/Makefile ============================================================================== --- head/games/tuxpaint/Makefile Tue Oct 7 15:56:31 2014 (r370353) +++ head/games/tuxpaint/Makefile Tue Oct 7 15:57:43 2014 (r370354) @@ -17,7 +17,7 @@ LIB_DEPENDS= libfribidi.so:${PORTSDIR}/c RUN_DEPENDS= anytopnm:${PORTSDIR}/graphics/netpbm \ bash:${PORTSDIR}/shells/bash -USES= gettext gmake pkgconfig shebangfix +USES= gettext gmake gperf pkgconfig shebangfix SHEBANG_FILES= src/tuxpaint-import.sh USE_GNOME= librsvg2 USE_SDL= image mixer sdl ttf pango From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:58:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85439323; Tue, 7 Oct 2014 15:58:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 71C605FF; Tue, 7 Oct 2014 15:58:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Fw84Y061549; Tue, 7 Oct 2014 15:58:08 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Fw849061548; Tue, 7 Oct 2014 15:58:08 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071558.s97Fw849061548@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 15:58:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370355 - head/graphics/flasm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:58:08 -0000 Author: bapt Date: Tue Oct 7 15:58:07 2014 New Revision: 370355 URL: https://svnweb.freebsd.org/changeset/ports/370355 QAT: https://qat.redports.org/buildarchive/r370355/ Log: Fix without gperf in base Modified: head/graphics/flasm/Makefile Modified: head/graphics/flasm/Makefile ============================================================================== --- head/graphics/flasm/Makefile Tue Oct 7 15:57:43 2014 (r370354) +++ head/graphics/flasm/Makefile Tue Oct 7 15:58:07 2014 (r370355) @@ -11,7 +11,7 @@ DISTNAME= flasm16src MAINTAINER= kuriyama@FreeBSD.org COMMENT= Command line assembler/disassembler of flash actionscript bytecode -USES= bison dos2unix gmake zip +USES= bison dos2unix gmake gperf zip NO_WRKSUBDIR= yes PLIST_FILES= bin/flasm From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:58:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3B4043D; Tue, 7 Oct 2014 15:58:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C01DF60E; Tue, 7 Oct 2014 15:58:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Fwc5K061713; Tue, 7 Oct 2014 15:58:38 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97FwcBC061712; Tue, 7 Oct 2014 15:58:38 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071558.s97FwcBC061712@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 15:58:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370356 - head/databases/evolution-data-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:58:38 -0000 Author: bapt Date: Tue Oct 7 15:58:38 2014 New Revision: 370356 URL: https://svnweb.freebsd.org/changeset/ports/370356 QAT: https://qat.redports.org/buildarchive/r370356/ Log: Fix without gperf in base Modified: head/databases/evolution-data-server/Makefile Modified: head/databases/evolution-data-server/Makefile ============================================================================== --- head/databases/evolution-data-server/Makefile Tue Oct 7 15:58:07 2014 (r370355) +++ head/databases/evolution-data-server/Makefile Tue Oct 7 15:58:38 2014 (r370356) @@ -20,7 +20,7 @@ LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/ libtasn1.so:${PORTSDIR}/security/libtasn1 \ libgnome-keyring.so:${PORTSDIR}/security/libgnome-keyring -USES= bison gettext gmake libtool pathfix pkgconfig tar:bzip2 +USES= bison gettext gmake gperf libtool pathfix pkgconfig tar:bzip2 USE_GNOME= gnomeprefix intlhack gconf2 libxml2 USE_OPENLDAP= yes USE_SQLITE= 3 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:59:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F2A4A528; Tue, 7 Oct 2014 15:59:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF0C1617; Tue, 7 Oct 2014 15:59:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97FxAVI061893; Tue, 7 Oct 2014 15:59:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97FxAwK061892; Tue, 7 Oct 2014 15:59:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071559.s97FxAwK061892@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 15:59:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370357 - head/cad/gtkwave X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:59:11 -0000 Author: bapt Date: Tue Oct 7 15:59:10 2014 New Revision: 370357 URL: https://svnweb.freebsd.org/changeset/ports/370357 QAT: https://qat.redports.org/buildarchive/r370357/ Log: Fix without gperf in base Modified: head/cad/gtkwave/Makefile Modified: head/cad/gtkwave/Makefile ============================================================================== --- head/cad/gtkwave/Makefile Tue Oct 7 15:58:38 2014 (r370356) +++ head/cad/gtkwave/Makefile Tue Oct 7 15:59:10 2014 (r370357) @@ -10,7 +10,7 @@ MASTER_SITES= http://gtkwave.sourceforge MAINTAINER= zeising@FreeBSD.org COMMENT= Electronic Waveform Viewer -USES= desktop-file-utils gmake pkgconfig shared-mime-info +USES= desktop-file-utils gmake gperf pkgconfig shared-mime-info GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-mime-update USE_GNOME= gtk20 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 15:59:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C61116D9; Tue, 7 Oct 2014 15:59:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2539626; Tue, 7 Oct 2014 15:59:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Fxldf062075; Tue, 7 Oct 2014 15:59:47 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Fxlns062074; Tue, 7 Oct 2014 15:59:47 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071559.s97Fxlns062074@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 15:59:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370358 - head/www/webkit-qt5 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 15:59:47 -0000 Author: bapt Date: Tue Oct 7 15:59:46 2014 New Revision: 370358 URL: https://svnweb.freebsd.org/changeset/ports/370358 QAT: https://qat.redports.org/buildarchive/r370358/ Log: Fix without gperf in base Modified: head/www/webkit-qt5/Makefile Modified: head/www/webkit-qt5/Makefile ============================================================================== --- head/www/webkit-qt5/Makefile Tue Oct 7 15:59:10 2014 (r370357) +++ head/www/webkit-qt5/Makefile Tue Oct 7 15:59:46 2014 (r370358) @@ -26,7 +26,7 @@ USE_RUBY= yes RUBY_NO_RUN_DEPENDS= yes USE_SQLITE= 3 USE_XORG= x11 xcomposite xrender -USES= bison:build gmake perl5 pkgconfig python:build qmake:outsource +USES= bison gmake gperf perl5 pkgconfig python:build qmake:outsource # Keep make(1) from descending into obj/ subdirectories during tests. CONFIGURE_ENV= MAKEOBJDIR=. # Use flex(1) from ports. From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:00:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1F884817; Tue, 7 Oct 2014 16:00:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0BF7963E; Tue, 7 Oct 2014 16:00:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97G0gLo063538; Tue, 7 Oct 2014 16:00:42 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97G0gBJ063537; Tue, 7 Oct 2014 16:00:42 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201410071600.s97G0gBJ063537@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 7 Oct 2014 16:00:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370359 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:00:43 -0000 Author: mat Date: Tue Oct 7 16:00:42 2014 New Revision: 370359 URL: https://svnweb.freebsd.org/changeset/ports/370359 QAT: https://qat.redports.org/buildarchive/r370359/ Log: Add an example with @exec too. Sponsored by: Absolight Modified: head/CHANGES Modified: head/CHANGES ============================================================================== --- head/CHANGES Tue Oct 7 15:59:46 2014 (r370358) +++ head/CHANGES Tue Oct 7 16:00:42 2014 (r370359) @@ -19,11 +19,14 @@ AUTHOR: mat@FreeBSD.org @cwd / etc/rc.d/foo var/db/bar + @cwd /some + @exec mkdir -p %D/nested/dir add this: /etc/rc.d/foo /var/db/bar + @exec mkdir -p /some/nested/dir 20141002: AUTHOR: bapt@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:01:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98575B0C; Tue, 7 Oct 2014 16:01:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 788E16E2; Tue, 7 Oct 2014 16:01:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97G1hP7066195; Tue, 7 Oct 2014 16:01:43 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97G1gOi066189; Tue, 7 Oct 2014 16:01:42 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071601.s97G1gOi066189@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 16:01:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370360 - in head/databases: . speedtables X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:01:43 -0000 Author: gahr Date: Tue Oct 7 16:01:41 2014 New Revision: 370360 URL: https://svnweb.freebsd.org/changeset/ports/370360 QAT: https://qat.redports.org/buildarchive/r370360/ Log: - New port: databases/speedtables Speed tables is a high-performance memory-resident database, currently oriented towards Tcl. Speed tables provides an interface for defining tables containing zero or more rows, with each row containing one or more fields. The speed table compiler reads the table definition and generates C code to create and manage corresponding structures, generating a custom C language Tcl extension to create, access and manipulate those tables and building a native code package in a shared library that is loadable on demand via Tcl's "package require" mechanism. WWW: http://flightaware.github.io/speedtables/ Added: head/databases/speedtables/ head/databases/speedtables/Makefile (contents, props changed) head/databases/speedtables/distinfo (contents, props changed) head/databases/speedtables/pkg-descr (contents, props changed) head/databases/speedtables/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Oct 7 16:00:42 2014 (r370359) +++ head/databases/Makefile Tue Oct 7 16:01:41 2014 (r370360) @@ -888,6 +888,7 @@ SUBDIR += soci SUBDIR += spatialite SUBDIR += spatialite_gui + SUBDIR += speedtables SUBDIR += sqlbuddy SUBDIR += sqlcached SUBDIR += sqlcipher Added: head/databases/speedtables/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/speedtables/Makefile Tue Oct 7 16:01:41 2014 (r370360) @@ -0,0 +1,42 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= speedtables +PORTVERSION= 1.8.3 +CATEGORIES= databases + +MAINTAINER= gahr@FreeBSD.org +COMMENT= High-performance memory-resident database + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= libtclx8.4.so:${PORTSDIR}/lang/tclX + +OPTIONS_DEFINE= DOCS PGSQL +PGSQL_CONFIGURE_ON= --with-pgsql=${LOCALBASE} +PGSQL_LIB_DEPENDS= libpgtcl2.0.0.so:${PORTSDIR}/databases/postgresql94-pgtcl + +PORTDOCS= * + +USES= tcl + +USE_AUTOTOOLS= autoconf +USE_GITHUB= yes +GH_ACCOUNT= flightaware +GH_TAGNAME= v${PORTVERSION} +GH_COMMIT= 09c623c + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+=--exec-prefix=${PREFIX} \ + --with-tcl=${TCL_LIBDIR} + +pre-configure: + @cd ${WRKSRC} && ${AUTORECONF} + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/ctables/docs/manual && \ + ${COPYTREE_SHARE} \*.html ${STAGEDIR}${DOCSDIR} && \ + ${COPYTREE_SHARE} \*.css ${STAGEDIR}${DOCSDIR} + +.include Added: head/databases/speedtables/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/speedtables/distinfo Tue Oct 7 16:01:41 2014 (r370360) @@ -0,0 +1,2 @@ +SHA256 (speedtables-1.8.3.tar.gz) = 4a15af503a051c12e8866ec66325aa636ae71c0c8ce744d543526cf3defd6c5a +SIZE (speedtables-1.8.3.tar.gz) = 696032 Added: head/databases/speedtables/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/speedtables/pkg-descr Tue Oct 7 16:01:41 2014 (r370360) @@ -0,0 +1,10 @@ +Speed tables is a high-performance memory-resident database, currently oriented +towards Tcl. Speed tables provides an interface for defining tables containing +zero or more rows, with each row containing one or more fields. The speed table +compiler reads the table definition and generates C code to create and manage +corresponding structures, generating a custom C language Tcl extension to +create, access and manipulate those tables and building a native code package +in a shared library that is loadable on demand via Tcl's "package require" +mechanism. + +WWW: http://flightaware.github.io/speedtables/ Added: head/databases/speedtables/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/speedtables/pkg-plist Tue Oct 7 16:01:41 2014 (r370360) @@ -0,0 +1,42 @@ +bin/sttp +lib/ctable/boyer_moore.c +lib/ctable/command-body.c-subst +lib/ctable/config.tcl +lib/ctable/ctable.h +lib/ctable/ctable_batch.c +lib/ctable/ctable_io.c +lib/ctable/ctable_lists.c +lib/ctable/ctable_qsort.c +lib/ctable/ctable_search.c +lib/ctable/exten-frag.c-subst +lib/ctable/gentable.tcl +lib/ctable/init-exten.c-subst +lib/ctable/jsw_rand.c +lib/ctable/jsw_rand.h +lib/ctable/jsw_slib.c +lib/ctable/jsw_slib.h +lib/ctable/pkgIndex.tcl +lib/ctable/shared.c +lib/ctable/shared.h +lib/ctable/speedtableHash.c +lib/ctable/speedtables.h +lib/ctable/sysconfig.tcl +lib/ctable/template.c-subst +lib/ctable_server/ctable_client.tcl +lib/ctable_server/ctable_client_server.tcl +lib/ctable_server/ctable_server.tcl +lib/ctable_server/pkgIndex.tcl +lib/ctable_server/sttp_buffer.tcl +lib/stapi/client/client.tcl +lib/stapi/client/extend.tcl +lib/stapi/client/pgsql.tcl +lib/stapi/client/shared.tcl +lib/stapi/copy.tcl +lib/stapi/debug.tcl +lib/stapi/display/display.tcl +lib/stapi/display/test.tcl +lib/stapi/pgsql.tcl +lib/stapi/pkgIndex.tcl +lib/stapi/server/lock.tcl +lib/stapi/server/server.tcl +lib/stapi/stapi.tcl From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:03:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5F1FCDC; Tue, 7 Oct 2014 16:03:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C23F6754; Tue, 7 Oct 2014 16:03:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97G3qqV066628; Tue, 7 Oct 2014 16:03:52 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97G3qOw066627; Tue, 7 Oct 2014 16:03:52 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410071603.s97G3qOw066627@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 7 Oct 2014 16:03:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370361 - head/databases/pgtcl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:03:52 -0000 Author: gahr Date: Tue Oct 7 16:03:52 2014 New Revision: 370361 URL: https://svnweb.freebsd.org/changeset/ports/370361 QAT: https://qat.redports.org/buildarchive/r370361/ Log: - Bump PORTREVISION after r370351 Modified: head/databases/pgtcl/Makefile Modified: head/databases/pgtcl/Makefile ============================================================================== --- head/databases/pgtcl/Makefile Tue Oct 7 16:01:41 2014 (r370360) +++ head/databases/pgtcl/Makefile Tue Oct 7 16:03:52 2014 (r370361) @@ -3,6 +3,7 @@ PORTNAME= pgtcl PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= databases tcl MASTER_SITES= SF/pgtclng/pgtclng/${PORTVERSION}:src MASTER_SITE_SUBDIR= pgtclng From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:19:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01D9B4A4; Tue, 7 Oct 2014 16:19:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E1FCB8C7; Tue, 7 Oct 2014 16:19:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GJqht072701; Tue, 7 Oct 2014 16:19:52 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GJqA0072696; Tue, 7 Oct 2014 16:19:52 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071619.s97GJqA0072696@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 16:19:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370362 - head/textproc/igor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:19:53 -0000 Author: amdmi3 Date: Tue Oct 7 16:19:51 2014 New Revision: 370362 URL: https://svnweb.freebsd.org/changeset/ports/370362 QAT: https://qat.redports.org/buildarchive/r370362/ Log: - Update to 1.502 PR: 194203 Submitted by: wblock@FreeBSD.org (maintainer) Modified: head/textproc/igor/Makefile head/textproc/igor/distinfo Modified: head/textproc/igor/Makefile ============================================================================== --- head/textproc/igor/Makefile Tue Oct 7 16:03:52 2014 (r370361) +++ head/textproc/igor/Makefile Tue Oct 7 16:19:51 2014 (r370362) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= igor -PORTVERSION= 1.474 +PORTVERSION= 1.502 CATEGORIES= textproc MASTER_SITES= http://docscripts.glenbarber.us/tags/${PORTNAME}/${PORTVERSION}/ Modified: head/textproc/igor/distinfo ============================================================================== --- head/textproc/igor/distinfo Tue Oct 7 16:03:52 2014 (r370361) +++ head/textproc/igor/distinfo Tue Oct 7 16:19:51 2014 (r370362) @@ -1,2 +1,2 @@ -SHA256 (igor-1.474.tar.gz) = c3b4ea213793a5168bfad28232aebc1fae69ab51717b27c563475122a22348c6 -SIZE (igor-1.474.tar.gz) = 25281 +SHA256 (igor-1.502.tar.gz) = 15c8543aed2ae6ff3fee76b5c16677192fdf310a0a23abec3b690c5f193e59be +SIZE (igor-1.502.tar.gz) = 26137 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:33:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2F7F3C8C; Tue, 7 Oct 2014 16:33:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1BCC2B0C; Tue, 7 Oct 2014 16:33:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GXOH1081539; Tue, 7 Oct 2014 16:33:24 GMT (envelope-from des@FreeBSD.org) Received: (from des@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GXO6Y081538; Tue, 7 Oct 2014 16:33:24 GMT (envelope-from des@FreeBSD.org) Message-Id: <201410071633.s97GXO6Y081538@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: des set sender to des@FreeBSD.org using -f From: Dag-Erling Smørgrav Date: Tue, 7 Oct 2014 16:33:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370363 - in head/astro: . openmap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:33:25 -0000 Author: des Date: Tue Oct 7 16:33:24 2014 New Revision: 370363 URL: https://svnweb.freebsd.org/changeset/ports/370363 QAT: https://qat.redports.org/buildarchive/r370363/ Log: Nuke OpenMAP rather than try to fix it. It is ten years out of date and clearly of no interest to anyone since nobody has complained about it in all those years. MFH: 2014Q4 Deleted: head/astro/openmap/ Modified: head/astro/Makefile Modified: head/astro/Makefile ============================================================================== --- head/astro/Makefile Tue Oct 7 16:19:51 2014 (r370362) +++ head/astro/Makefile Tue Oct 7 16:33:24 2014 (r370363) @@ -47,7 +47,6 @@ SUBDIR += mkgmap-splitter SUBDIR += mymoon SUBDIR += nightfall - SUBDIR += openmap SUBDIR += openuniverse SUBDIR += osmium SUBDIR += osmosis From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:45:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10CFF2B8; Tue, 7 Oct 2014 16:45:31 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0358C7A; Tue, 7 Oct 2014 16:45:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GjUeB086599; Tue, 7 Oct 2014 16:45:30 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GjUY3086598; Tue, 7 Oct 2014 16:45:30 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410071645.s97GjUY3086598@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 16:45:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370364 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:45:31 -0000 Author: antoine Date: Tue Oct 7 16:45:30 2014 New Revision: 370364 URL: https://svnweb.freebsd.org/changeset/ports/370364 QAT: https://qat.redports.org/buildarchive/r370364/ Log: Fix typo With hat: portmgr Modified: head/Mk/Uses/gperf.mk Modified: head/Mk/Uses/gperf.mk ============================================================================== --- head/Mk/Uses/gperf.mk Tue Oct 7 16:33:24 2014 (r370363) +++ head/Mk/Uses/gperf.mk Tue Oct 7 16:45:30 2014 (r370364) @@ -7,7 +7,7 @@ # # Take no arguments -.if !defined(_INCLUDE_USES_GPERG_MK) +.if !defined(_INCLUDE_USES_GPERF_MK) _INCLUDE_USES_GPERF_MK= yes .if !exists(/usr/bin/gperf) From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:48:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C2E04D5; Tue, 7 Oct 2014 16:48:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F16DCAF; Tue, 7 Oct 2014 16:48:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GmsHl087189; Tue, 7 Oct 2014 16:48:54 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Gmsbd087187; Tue, 7 Oct 2014 16:48:54 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071648.s97Gmsbd087187@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 16:48:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370365 - in head/graphics/impressive: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:48:55 -0000 Author: wg Date: Tue Oct 7 16:48:54 2014 New Revision: 370365 URL: https://svnweb.freebsd.org/changeset/ports/370365 QAT: https://qat.redports.org/buildarchive/r370365/ Log: graphics/impressive: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/graphics/impressive/files/ head/graphics/impressive/files/patch-impressive.py (contents, props changed) Modified: head/graphics/impressive/Makefile Modified: head/graphics/impressive/Makefile ============================================================================== --- head/graphics/impressive/Makefile Tue Oct 7 16:45:30 2014 (r370364) +++ head/graphics/impressive/Makefile Tue Oct 7 16:48:54 2014 (r370365) @@ -3,7 +3,7 @@ PORTNAME= impressive PORTVERSION= 0.10.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Impressive/${PORTVERSION}/ DISTNAME= Impressive-${PORTVERSION} @@ -14,14 +14,14 @@ COMMENT= The stylish way of giving prese LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}opengl>=0:${PORTSDIR}/graphics/py-opengl \ - ${PYTHON_PKGNAMEPREFIX}imaging>0:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ xpdf:${PORTSDIR}/graphics/xpdf \ pdftk:${PORTSDIR}/print/pdftk \ xdg-open:${PORTSDIR}/devel/xdg-utils \ mplayer:${PORTSDIR}/multimedia/mplayer \ ${PYGAME} -USE_PYTHON= yes +USES= python USE_GHOSTSCRIPT_RUN= yes NO_BUILD= yes PLIST_FILES= bin/${PORTNAME} \ Added: head/graphics/impressive/files/patch-impressive.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/impressive/files/patch-impressive.py Tue Oct 7 16:48:54 2014 (r370365) @@ -0,0 +1,13 @@ +--- impressive.py.orig 2014-10-04 23:28:04 UTC ++++ impressive.py +@@ -182,8 +182,8 @@ + from OpenGL.GL import * + import pygame + from pygame.locals import * +- import Image, ImageDraw, ImageFont, ImageFilter +- import TiffImagePlugin, BmpImagePlugin, JpegImagePlugin, PngImagePlugin, PpmImagePlugin ++ from PIL import Image, ImageDraw, ImageFont, ImageFilter ++ from PIL import TiffImagePlugin, BmpImagePlugin, JpegImagePlugin, PngImagePlugin, PpmImagePlugin + except (ValueError, ImportError), err: + print >>sys.stderr, "Oops! Cannot load necessary modules:", err + print >>sys.stderr, """To use Impressive, you need to install the following Python modules: From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:51:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6750D5F7; Tue, 7 Oct 2014 16:51:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 52C13CD5; Tue, 7 Oct 2014 16:51:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GpLGL090547; Tue, 7 Oct 2014 16:51:21 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GpL3v090546; Tue, 7 Oct 2014 16:51:21 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201410071651.s97GpL3v090546@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Tue, 7 Oct 2014 16:51:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370366 - head/Mk/Uses X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:51:21 -0000 Author: mva Date: Tue Oct 7 16:51:20 2014 New Revision: 370366 URL: https://svnweb.freebsd.org/changeset/ports/370366 QAT: https://qat.redports.org/buildarchive/r370366/ Log: - Do not blindly assume PREFIX to be the same as PYTHONBASE, when creating the egg-info entries for the plist PR: 193811 Reported by: 6yearold@gmail.com Exp-run by: antoine@ With hat: python@ Modified: head/Mk/Uses/python.mk Modified: head/Mk/Uses/python.mk ============================================================================== --- head/Mk/Uses/python.mk Tue Oct 7 16:48:54 2014 (r370365) +++ head/Mk/Uses/python.mk Tue Oct 7 16:51:20 2014 (r370366) @@ -552,7 +552,7 @@ add-plist-egginfo: . for egginfo in ${PYDISTUTILS_EGGINFO} if [ -d "${PYDISTUTILS_EGGINFODIR}/${egginfo}" ]; then \ ${LS} ${PYDISTUTILS_EGGINFODIR}/${egginfo} | while read f; do \ - ${ECHO_CMD} ${PYDISTUTILS_EGGINFODIR:S;^${STAGEDIR}${PYTHONBASE}/;;}/${egginfo}/$${f} >> ${TMPPLIST}; \ + ${ECHO_CMD} ${PYDISTUTILS_EGGINFODIR:S;^${STAGEDIR}${PREFIX}/;;}/${egginfo}/$${f} >> ${TMPPLIST}; \ done; \ fi; . endfor From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:53:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 747AA7D7; Tue, 7 Oct 2014 16:53:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 460F5D8E; Tue, 7 Oct 2014 16:53:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GrCRo091369; Tue, 7 Oct 2014 16:53:12 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GrBvm091367; Tue, 7 Oct 2014 16:53:11 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071653.s97GrBvm091367@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 16:53:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370367 - in head/graphics/py-pyggel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:53:12 -0000 Author: wg Date: Tue Oct 7 16:53:11 2014 New Revision: 370367 URL: https://svnweb.freebsd.org/changeset/ports/370367 QAT: https://qat.redports.org/buildarchive/r370367/ Log: graphics/py-pyggel: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/graphics/py-pyggel/files/ head/graphics/py-pyggel/files/patch-pyggel__include.py (contents, props changed) Modified: head/graphics/py-pyggel/Makefile Modified: head/graphics/py-pyggel/Makefile ============================================================================== --- head/graphics/py-pyggel/Makefile Tue Oct 7 16:51:20 2014 (r370366) +++ head/graphics/py-pyggel/Makefile Tue Oct 7 16:53:11 2014 (r370367) @@ -4,7 +4,7 @@ PORTNAME= pyggel PORTVERSION= 0.08 DISTVERSIONSUFFIX= -alpha4c -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics python MASTER_SITES= GOOGLE_CODE DISTNAME= ${PORTNAME:tu}-V${DISTVERSION}${DISTVERSIONSUFFIX} @@ -23,14 +23,12 @@ LICENSE_PERMS_Public_Domain=dist-mirror RUN_DEPENDS= ${PYNUMPY} \ ${PYGAME} \ ${PYTHON_PKGNAMEPREFIX}opengl>=0:${PORTSDIR}/graphics/py-opengl \ - ${PYTHON_PKGNAMEPREFIX}imaging>=0:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>=0:${PORTSDIR}/graphics/py-pillow -USES= dos2unix zip +USES= dos2unix python:2 zip DOS2UNIX_GLOB= *.mtl *.py *.txt -USE_PYTHON= 2 +USE_PYTHON= autoplist distutils NO_BUILD= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes PORTDOCS= Readme.txt PORTEXAMPLES= * Added: head/graphics/py-pyggel/files/patch-pyggel__include.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyggel/files/patch-pyggel__include.py Tue Oct 7 16:53:11 2014 (r370367) @@ -0,0 +1,11 @@ +--- pyggel/include.py.orig 2014-10-07 16:52:11 UTC ++++ pyggel/include.py +@@ -27,7 +27,7 @@ + ANI_AVAILABLE = False + + try: +- import Image as PIL ++ from PIL import Image as PIL + PIL_AVAILABLE = True + except: + PIL_AVAILABLE = False From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 16:55:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED9BA8FA; Tue, 7 Oct 2014 16:55:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB2E1DB6; Tue, 7 Oct 2014 16:55:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97GtN0b091791; Tue, 7 Oct 2014 16:55:23 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97GtN0e091786; Tue, 7 Oct 2014 16:55:23 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201410071655.s97GtN0e091786@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Tue, 7 Oct 2014 16:55:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370368 - head/graphics/py-imaging X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 16:55:24 -0000 Author: mva Date: Tue Oct 7 16:55:22 2014 New Revision: 370368 URL: https://svnweb.freebsd.org/changeset/ports/370368 QAT: https://qat.redports.org/buildarchive/r370368/ Log: - Make py-imaging concurrently available for different Python versions - Fix WWW: spacing, while here PR: 194211 Submitted by: myself Approved by: mainland@apeiron.net (maintainer) Modified: head/graphics/py-imaging/Makefile head/graphics/py-imaging/pkg-descr Modified: head/graphics/py-imaging/Makefile ============================================================================== --- head/graphics/py-imaging/Makefile Tue Oct 7 16:53:11 2014 (r370367) +++ head/graphics/py-imaging/Makefile Tue Oct 7 16:55:22 2014 (r370368) @@ -3,7 +3,7 @@ PORTNAME= imaging PORTVERSION= 1.1.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics python MASTER_SITES= http://effbot.org/media/downloads/ \ http://www.pythonware.net/storage/ @@ -21,15 +21,12 @@ UNIQUENAME= py-${PORTNAME} USES= python DIST_SUBDIR= python -USE_PYTHON= distutils autoplist +USE_PYTHON= distutils autoplist concurrent PLIST_FILES= %%PYTHON_INCLUDEDIR%%/ImPlatform.h %%PYTHON_INCLUDEDIR%%/Imaging.h PORTDOCS= * PORTEXAMPLES= * -DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} -EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME} - OPTIONS_DEFINE= DOCS TKINTER TKINTER_DESC= tkinter for X support Modified: head/graphics/py-imaging/pkg-descr ============================================================================== --- head/graphics/py-imaging/pkg-descr Tue Oct 7 16:53:11 2014 (r370367) +++ head/graphics/py-imaging/pkg-descr Tue Oct 7 16:55:22 2014 (r370368) @@ -5,7 +5,7 @@ image processing capabilities. The main distribution site for this software is: -WWW: http://www.pythonware.com/products/pil/index.htm +WWW: http://www.pythonware.com/products/pil/index.htm The PIL handbook is not included in this distribution; to get the latest version, check: From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:00:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7667AD0; Tue, 7 Oct 2014 17:00:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3044E28; Tue, 7 Oct 2014 17:00:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97H0cjS093161; Tue, 7 Oct 2014 17:00:38 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97H0cvd093160; Tue, 7 Oct 2014 17:00:38 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071700.s97H0cvd093160@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 17:00:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370369 - head/science/psychopy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:00:38 -0000 Author: wg Date: Tue Oct 7 17:00:37 2014 New Revision: 370369 URL: https://svnweb.freebsd.org/changeset/ports/370369 QAT: https://qat.redports.org/buildarchive/r370369/ Log: science/psychopy: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/science/psychopy/Makefile Modified: head/science/psychopy/Makefile ============================================================================== --- head/science/psychopy/Makefile Tue Oct 7 16:55:22 2014 (r370368) +++ head/science/psychopy/Makefile Tue Oct 7 17:00:37 2014 (r370369) @@ -3,7 +3,7 @@ PORTNAME= psychopy PORTVERSION= 1.77.00 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= science python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= PsychoPy-${PORTVERSION} @@ -13,16 +13,14 @@ COMMENT= Psychophysics toolkit for Pytho BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.1.0:${PORTSDIR}/math/py-numpy \ ${PYTHON_PKGNAMEPREFIX}scipy>=0.6.0:${PORTSDIR}/science/py-scipy \ - ${PYTHON_PKGNAMEPREFIX}imaging>=1.1.6:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}pyglet>=1.1.2:${PORTSDIR}/graphics/py-pyglet \ ${PYTHON_PKGNAMEPREFIX}wxPython28>=2.8.7.1:${PORTSDIR}/x11-toolkits/py-wxPython28 \ ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.90.1:${PORTSDIR}/math/py-matplotlib RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= zip -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python zip +USE_PYTHON= autoplist distutils # needed to avoid polluting /root, since psychopy # tries to create some configuration files on import From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:02:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02F1EC3F; Tue, 7 Oct 2014 17:02:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E2582ED6; Tue, 7 Oct 2014 17:02:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97H2GKR096357; Tue, 7 Oct 2014 17:02:16 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97H2GUx096356; Tue, 7 Oct 2014 17:02:16 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071702.s97H2GUx096356@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:02:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370370 - head/databases/firebird25-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:02:17 -0000 Author: bapt Date: Tue Oct 7 17:02:16 2014 New Revision: 370370 URL: https://svnweb.freebsd.org/changeset/ports/370370 QAT: https://qat.redports.org/buildarchive/r370370/ Log: Simplify plist Modified: head/databases/firebird25-server/pkg-plist Modified: head/databases/firebird25-server/pkg-plist ============================================================================== --- head/databases/firebird25-server/pkg-plist Tue Oct 7 17:00:37 2014 (r370369) +++ head/databases/firebird25-server/pkg-plist Tue Oct 7 17:02:16 2014 (r370370) @@ -23,19 +23,14 @@ libexec/firebird/intl/fbintl.conf @group @sample %%CONFDIR%%/aliases.conf.sample %%CONFDIR%%/fbtrace.conf -@dirrmtry %%CONFDIR%% -@dirrm libexec/firebird/intl -@dirrm libexec/firebird/plugins -@dirrm libexec/firebird/udf -@dirrm libexec/firebird -@cwd / @owner firebird @group firebird -@sample %%LOCALSTATEDIR%%/security2.fdb.sample -%%LOCALSTATEDIR%%/help/help.fdb -@unexec [ -s %D/%%LOCALSTATEDIR%%/firebird.log ] || rm -f %D/%%LOCALSTATEDIR%%/firebird.log -@rmtry %%LOCALSTATEDIR%%/isc_event1.`hostname` -@rmtry %%LOCALSTATEDIR%%/isc_init1.`hostname` -@rmtry %%LOCALSTATEDIR%%/isc_lock1.`hostname` -@dirrm %%LOCALSTATEDIR%%/help -@dirrmtry %%LOCALSTATEDIR%% +@sample /%%LOCALSTATEDIR%%/security2.fdb.sample +/%%LOCALSTATEDIR%%/help/help.fdb +@unexec [ -s /%%LOCALSTATEDIR%%/firebird.log ] || rm -f /%%LOCALSTATEDIR%%/firebird.log +@rmtry /%%LOCALSTATEDIR%%/isc_event1.`hostname` +@rmtry /%%LOCALSTATEDIR%%/isc_init1.`hostname` +@rmtry /%%LOCALSTATEDIR%%/isc_lock1.`hostname` +@dir /%%LOCALSTATEDIR%% +@owner +@group From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:07:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D74ADAE; Tue, 7 Oct 2014 17:07:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 18FE5F1E; Tue, 7 Oct 2014 17:07:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97H7SZL097098; Tue, 7 Oct 2014 17:07:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97H7ScS097097; Tue, 7 Oct 2014 17:07:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071707.s97H7ScS097097@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:07:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370371 - head/sysutils/mbgtools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:07:29 -0000 Author: bapt Date: Tue Oct 7 17:07:28 2014 New Revision: 370371 URL: https://svnweb.freebsd.org/changeset/ports/370371 QAT: https://qat.redports.org/buildarchive/r370371/ Log: Remove useless @cwd Modified: head/sysutils/mbgtools/pkg-plist Modified: head/sysutils/mbgtools/pkg-plist ============================================================================== --- head/sysutils/mbgtools/pkg-plist Tue Oct 7 17:02:16 2014 (r370370) +++ head/sysutils/mbgtools/pkg-plist Tue Oct 7 17:07:28 2014 (r370371) @@ -7,5 +7,4 @@ bin/mbgshowsignal bin/mbggpscap bin/mbghrtime bin/mbgfasttstamp -@cwd / -%%KMODDIR%%/mbgclock.ko +/%%KMODDIR%%/mbgclock.ko From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:10:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F3BA7FF4; Tue, 7 Oct 2014 17:10:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF6C8F3E; Tue, 7 Oct 2014 17:10:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HA8lZ098238; Tue, 7 Oct 2014 17:10:08 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HA8MH098237; Tue, 7 Oct 2014 17:10:08 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410071710.s97HA8MH098237@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 17:10:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370372 - head/devel/gearmand-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:10:09 -0000 Author: antoine Date: Tue Oct 7 17:10:08 2014 New Revision: 370372 URL: https://svnweb.freebsd.org/changeset/ports/370372 QAT: https://qat.redports.org/buildarchive/r370372/ Log: Fix without gperf from base Modified: head/devel/gearmand-devel/Makefile Modified: head/devel/gearmand-devel/Makefile ============================================================================== --- head/devel/gearmand-devel/Makefile Tue Oct 7 17:07:28 2014 (r370371) +++ head/devel/gearmand-devel/Makefile Tue Oct 7 17:10:08 2014 (r370372) @@ -24,7 +24,7 @@ GROUPS= gearmand USE_PERL5= build GNU_CONFIGURE= yes -USES= pathfix perl5 gmake libtool execinfo +USES= pathfix perl5 gmake gperf libtool execinfo USE_LDCONFIG= yes USE_PYTHON_BUILD=yes USE_RC_SUBR= gearmand From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:12:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCE5E18A for ; Tue, 7 Oct 2014 17:12:25 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3CE0FE7 for ; Tue, 7 Oct 2014 17:12:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HCPin003650 for ; Tue, 7 Oct 2014 17:12:25 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97HCP7R003646 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 17:12:25 GMT (envelope-from bdrewery) Received: (qmail 68088 invoked from network); 7 Oct 2014 12:12:23 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 12:12:23 -0500 Message-ID: <54341EF1.1030903@FreeBSD.org> Date: Tue, 07 Oct 2014 12:12:17 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Antoine Brodin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370372 - head/devel/gearmand-devel References: <201410071710.s97HA8MH098237@svn.freebsd.org> In-Reply-To: <201410071710.s97HA8MH098237@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sAtSA5AoxnCREGCN5LGviFjbI2FKffgFx" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:12:26 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --sAtSA5AoxnCREGCN5LGviFjbI2FKffgFx Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 12:10 PM, Antoine Brodin wrote: > Author: antoine > Date: Tue Oct 7 17:10:08 2014 > New Revision: 370372 > URL: https://svnweb.freebsd.org/changeset/ports/370372 > QAT: https://qat.redports.org/buildarchive/r370372/ >=20 > Log: > Fix without gperf from base >=20 This is unclear, is it currently broken, or are you fixing it in preparation for removing gperf? > Modified: > head/devel/gearmand-devel/Makefile >=20 > Modified: head/devel/gearmand-devel/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/devel/gearmand-devel/Makefile Tue Oct 7 17:07:28 2014 (r37037= 1) > +++ head/devel/gearmand-devel/Makefile Tue Oct 7 17:10:08 2014 (r37037= 2) > @@ -24,7 +24,7 @@ GROUPS=3D gearmand > =20 > USE_PERL5=3D build > GNU_CONFIGURE=3D yes > -USES=3D pathfix perl5 gmake libtool execinfo > +USES=3D pathfix perl5 gmake gperf libtool execinfo > USE_LDCONFIG=3D yes > USE_PYTHON_BUILD=3Dyes > USE_RC_SUBR=3D gearmand >=20 --=20 Regards, Bryan Drewery --sAtSA5AoxnCREGCN5LGviFjbI2FKffgFx Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNB7xAAoJEDXXcbtuRpfPgrQH/RsoOcufl0pJKJywwAlsvNEL JLGWgrMdE6HZC5y6Wl/h5/YPRHO1/XOWAhl1qB6PltH9YtOCPxfYdLklSzXYSrht wukUNbXKYJXyCbfE4YuC0rOZJw+/XMlSSangqI2+h03HSvXcSiHf9b0znhaLvQSW BcK6s0ISpTMTHdhjR4UU+nbPvmIbOn/Qe+n+C7o/OZwc1vFqzQhMcW07g9dNZNzg +p7dRA80d+QgblyGnNqSiLUOR2tAfwAJJcs5Zfu78lGqDmMDfZ4mjK5UFkWsn6o+ 04gLMvLIQkvAiyxbUdxJS/HwCA6tR+HoaSHYOO4vNl5ofat16CwfxV9YvanJGJM= =Rc9T -----END PGP SIGNATURE----- --sAtSA5AoxnCREGCN5LGviFjbI2FKffgFx-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:13:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11518274; Tue, 7 Oct 2014 17:13:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F0918FF4; Tue, 7 Oct 2014 17:13:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HDJv3001830; Tue, 7 Oct 2014 17:13:19 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HDJHQ001829; Tue, 7 Oct 2014 17:13:19 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071713.s97HDJHQ001829@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:13:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370373 - head/sysutils/memtest86+ X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:13:20 -0000 Author: bapt Date: Tue Oct 7 17:13:19 2014 New Revision: 370373 URL: https://svnweb.freebsd.org/changeset/ports/370373 QAT: https://qat.redports.org/buildarchive/r370373/ Log: Simplify plist management Modified: head/sysutils/memtest86+/Makefile Modified: head/sysutils/memtest86+/Makefile ============================================================================== --- head/sysutils/memtest86+/Makefile Tue Oct 7 17:10:08 2014 (r370372) +++ head/sysutils/memtest86+/Makefile Tue Oct 7 17:13:19 2014 (r370373) @@ -30,6 +30,9 @@ BOOT_DESC= Build ELF image loadable by b SERIAL_DESC= Enable serial console at COM1/9600 HISPEED_DESC= Set COM1 serial console speed to 115200 +ISO_PLIST_FILES= ${DATADIR}/mt${PORTVERSION:C/\.//}.iso +BOOT_PLIST_FILES= ${BOOT_DIR}/memtest86+ + .include .if ${PORT_OPTIONS:MBOOT} @@ -62,21 +65,6 @@ pre-fetch: post-patch: ${REINPLACE_CMD} -e 's|gcc|${CC}|' ${WRKSRC}/Makefile -PLIST= ${WRKDIR}/pkg-plist - -pre-install: -# Generate PLIST dynamically because install things outside normal ${PREFIX} - @${TEST} -f ${PLIST} && ${RM} ${PLIST} || ${TRUE} -.if ${PORT_OPTIONS:MISO} - @${ECHO} "%%DATADIR%%/mt${PORTVERSION:C/\.//}.iso" >> ${PLIST} - @${ECHO} "@dirrm %%DATADIR%%" >> ${PLIST} -.endif -.if ${PORT_OPTIONS:MBOOT} - @${ECHO} "@cwd ${BOOT_DIR:H}" >> ${PLIST} - @${ECHO} "${BOOT_DIR:T}/memtest86+" >> ${PLIST} - @${ECHO} "@dirrm ${BOOT_DIR:T}" >> ${PLIST} -.endif - do-install: .if ${PORT_OPTIONS:MISO} @${MKDIR} ${STAGEDIR}${DATADIR} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:14:31 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B191835D; Tue, 7 Oct 2014 17:14:31 +0000 (UTC) Received: from mail-wg0-x22c.google.com (mail-wg0-x22c.google.com [IPv6:2a00:1450:400c:c00::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9CA81FFF; Tue, 7 Oct 2014 17:14:30 +0000 (UTC) Received: by mail-wg0-f44.google.com with SMTP id y10so9749814wgg.3 for ; Tue, 07 Oct 2014 10:14:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=8KlPyHBmwc97sI4THernDnmRVv7JsvdCvcSz0KF4Y28=; b=G05ezGgw8iD090gPZW3GQ/gScoxPw9o49FvVJ3N9/4M97IID+PVtUwNLZ5/W3RxQL7 TlbrljLTD2LXebA39viZH3CPpTA1svHJNAGmyDekt2YKxOPwqeymKJ7PLYSNNpTGOYxJ 6CGBSDzuGn78Cnjg6kPwUfjvuNO7cUHj5nWRtPk4wivDeBwO3/cvTP8CdNBxH4HsMHP9 GjkbVol3pIsHiMrrDj57daWaZ0YZXyHgqluzONdKvM6c1Yfb/7BXdBrXAi4RDZcdJQUp 7R1/4GVCe8ld5ACL3PXjhYhcjCQJHDJOsizbG/fFtRK2hKpuYLoOCmJZYYao+VXbUyJH ygmQ== X-Received: by 10.194.241.229 with SMTP id wl5mr4649726wjc.53.1412702068812; Tue, 07 Oct 2014 10:14:28 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id ga9sm21456464wjb.45.2014.10.07.10.14.27 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Oct 2014 10:14:27 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 7 Oct 2014 19:14:25 +0200 From: Baptiste Daroussin To: Bryan Drewery Subject: Re: svn commit: r370372 - head/devel/gearmand-devel Message-ID: <20141007171425.GP37670@ivaldir.etoilebsd.net> References: <201410071710.s97HA8MH098237@svn.freebsd.org> <54341EF1.1030903@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="l8yJEXo8J9fv7OFY" Content-Disposition: inline In-Reply-To: <54341EF1.1030903@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, Antoine Brodin , svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:14:31 -0000 --l8yJEXo8J9fv7OFY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 07, 2014 at 12:12:17PM -0500, Bryan Drewery wrote: > On 10/7/2014 12:10 PM, Antoine Brodin wrote: > > Author: antoine > > Date: Tue Oct 7 17:10:08 2014 > > New Revision: 370372 > > URL: https://svnweb.freebsd.org/changeset/ports/370372 > > QAT: https://qat.redports.org/buildarchive/r370372/ > >=20 > > Log: > > Fix without gperf from base > >=20 >=20 > This is unclear, is it currently broken, or are you fixing it in > preparation for removing gperf? >=20 Fixing in preparation of gperf removal, sorry I should have written clearer commit logs regards, Bapt --l8yJEXo8J9fv7OFY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlQ0H3EACgkQ8kTtMUmk6ExjzACeIY8p5sRo0hFbzaa1B3Rr/XCf YQMAn3Cb5Bva7tFo7xQ7P2Tjp91Mm+Cd =ziOU -----END PGP SIGNATURE----- --l8yJEXo8J9fv7OFY-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:15:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4A2044C; Tue, 7 Oct 2014 17:15:01 +0000 (UTC) Received: from mail-yk0-x22c.google.com (mail-yk0-x22c.google.com [IPv6:2607:f8b0:4002:c07::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B64B2B; Tue, 7 Oct 2014 17:15:01 +0000 (UTC) Received: by mail-yk0-f172.google.com with SMTP id 19so3031072ykq.17 for ; Tue, 07 Oct 2014 10:15:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=U1EZYuCOSf58N0dLG64ExMW+b+tY5yRLVOBIAk3jy0A=; b=UeV8S56GGbIB2rmbbSplo37U0W91sBmlosuYVJ3WkCN53decgS6x2zu4B8TgmydYoS yIrkLEjd33yiAzfriqnvcE8yl1aDmaG/exBWKnkA9rhGJ5xi+CyOnpVKUwZ1qhM0bzuK WTKZU73uC5xcEvoY+DWQFsP5etAeEPnuDYF4SqB7gqEDvl1yC8vPYGoTH0LOj/eTsajR OTj/TMovt2pCsC1PqlfeH/He2e0KwjE8AiKZb2J072FxmbC4epSwioyeNlHl4Ms3zDJn vU1qW6rmfeIo3xGy5mkdOC0MPtKexHRKPTd9Yr4U0foH30EuYBL5INyEfl9t0LQkAtYI VMsA== MIME-Version: 1.0 X-Received: by 10.236.39.177 with SMTP id d37mr7258563yhb.121.1412702100249; Tue, 07 Oct 2014 10:15:00 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.207.73 with HTTP; Tue, 7 Oct 2014 10:15:00 -0700 (PDT) In-Reply-To: <54341EF1.1030903@FreeBSD.org> References: <201410071710.s97HA8MH098237@svn.freebsd.org> <54341EF1.1030903@FreeBSD.org> Date: Tue, 7 Oct 2014 19:15:00 +0200 X-Google-Sender-Auth: 2ADZvu9Z7f6v3lvfrGRzPxGad-4 Message-ID: Subject: Re: svn commit: r370372 - head/devel/gearmand-devel From: Antoine Brodin To: Bryan Drewery Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:15:01 -0000 On Tue, Oct 7, 2014 at 7:12 PM, Bryan Drewery wrote: > On 10/7/2014 12:10 PM, Antoine Brodin wrote: >> Author: antoine >> Date: Tue Oct 7 17:10:08 2014 >> New Revision: 370372 >> URL: https://svnweb.freebsd.org/changeset/ports/370372 >> QAT: https://qat.redports.org/buildarchive/r370372/ >> >> Log: >> Fix without gperf from base >> > > This is unclear, is it currently broken, or are you fixing it in > preparation for removing gperf? gperf will be removed from base for archs using clang soon. Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:15:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 10CB154B for ; Tue, 7 Oct 2014 17:15:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C99E071 for ; Tue, 7 Oct 2014 17:15:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HFYud004664 for ; Tue, 7 Oct 2014 17:15:34 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97HFYcL004661 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 17:15:34 GMT (envelope-from bdrewery) Received: (qmail 98408 invoked from network); 7 Oct 2014 12:15:33 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 12:15:33 -0500 Message-ID: <54341FAE.2010403@FreeBSD.org> Date: Tue, 07 Oct 2014 12:15:26 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 Subject: Re: svn commit: r370372 - head/devel/gearmand-devel References: <201410071710.s97HA8MH098237@svn.freebsd.org> <54341EF1.1030903@FreeBSD.org> In-Reply-To: OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="maatlkbk0siMDI2GjD1HOMUPepCkOadTd" Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:15:35 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --maatlkbk0siMDI2GjD1HOMUPepCkOadTd Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 12:15 PM, Antoine Brodin wrote: > On Tue, Oct 7, 2014 at 7:12 PM, Bryan Drewery wr= ote: >> On 10/7/2014 12:10 PM, Antoine Brodin wrote: >>> Author: antoine >>> Date: Tue Oct 7 17:10:08 2014 >>> New Revision: 370372 >>> URL: https://svnweb.freebsd.org/changeset/ports/370372 >>> QAT: https://qat.redports.org/buildarchive/r370372/ >>> >>> Log: >>> Fix without gperf from base >>> >> >> This is unclear, is it currently broken, or are you fixing it in >> preparation for removing gperf? >=20 >=20 > gperf will be removed from base for archs using clang soon. >=20 > Cheers, >=20 > Antoine >=20 Sounds good, thanks. --=20 Regards, Bryan Drewery --maatlkbk0siMDI2GjD1HOMUPepCkOadTd Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNB+vAAoJEDXXcbtuRpfP9J8H/jbRdlpSOPZ0IV4kCgxFoQMT 6Pq23dX9pHNKvOShZ8oXehdYnGFX8gyzSR7k8ufZ386fSsEfe8Bi0zkIO0Q9+R+G RuAX0gPk3ftAPNxYWWyq9k+O7qai8S+HOQatEKvNoszo4mgrjj5dWmewTwcsDT4b 6bW8NAJnBs+bqPz6C+L3sSMnUkb2or7v+8e7z9WiBRqRR+RRYIPdZlrCd8ZzZi9a dVjqxcJLWjPY3E1DTI5SPpXY9Vhzj+LKDB02354RMKleBX9vRuE3kmX/aSjkdfPw gHUWkXaNBtdh69uiAXsLsmDwp+C5mBzSHkgiCNZEZDyfWagnd/df5ziqqWaSwMM= =7wuu -----END PGP SIGNATURE----- --maatlkbk0siMDI2GjD1HOMUPepCkOadTd-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:16:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 724BB635; Tue, 7 Oct 2014 17:16:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DB227D; Tue, 7 Oct 2014 17:16:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HG3qb002329; Tue, 7 Oct 2014 17:16:03 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HG3wm002328; Tue, 7 Oct 2014 17:16:03 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410071716.s97HG3wm002328@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 17:16:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370374 - head/graphics/libfreehand00 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:16:03 -0000 Author: antoine Date: Tue Oct 7 17:16:02 2014 New Revision: 370374 URL: https://svnweb.freebsd.org/changeset/ports/370374 QAT: https://qat.redports.org/buildarchive/r370374/ Log: Fix without gperf from base Modified: head/graphics/libfreehand00/Makefile Modified: head/graphics/libfreehand00/Makefile ============================================================================== --- head/graphics/libfreehand00/Makefile Tue Oct 7 17:13:19 2014 (r370373) +++ head/graphics/libfreehand00/Makefile Tue Oct 7 17:16:02 2014 (r370374) @@ -16,7 +16,7 @@ LIB_DEPENDS= libwpd-0.9.so:${PORTSDIR}/t libwpg-0.2.so:${PORTSDIR}/graphics/libwpg GNU_CONFIGURE= yes -USES= libtool pathfix pkgconfig tar:xz +USES= gperf libtool pathfix pkgconfig tar:xz USE_LDCONFIG= yes CONFIGURE_ARGS= --without-docs --disable-werror INSTALL_TARGET= install-strip From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:16:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CE6B752; Tue, 7 Oct 2014 17:16:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 082EBB4; Tue, 7 Oct 2014 17:16:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HGv4t002539; Tue, 7 Oct 2014 17:16:57 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HGvAS002538; Tue, 7 Oct 2014 17:16:57 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071716.s97HGvAS002538@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:16:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370375 - head/sysutils/fusefs-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:16:58 -0000 Author: bapt Date: Tue Oct 7 17:16:57 2014 New Revision: 370375 URL: https://svnweb.freebsd.org/changeset/ports/370375 QAT: https://qat.redports.org/buildarchive/r370375/ Log: Avoid playing with @cwd Modified: head/sysutils/fusefs-kmod/pkg-plist Modified: head/sysutils/fusefs-kmod/pkg-plist ============================================================================== --- head/sysutils/fusefs-kmod/pkg-plist Tue Oct 7 17:16:02 2014 (r370374) +++ head/sysutils/fusefs-kmod/pkg-plist Tue Oct 7 17:16:57 2014 (r370375) @@ -2,5 +2,4 @@ man/man8/mount_fusefs.8.gz sbin/mount_fusefs @exec ln -fs %D/%F /usr/sbin @unexec rm -f /usr/sbin/mount_fusefs -@cwd / -%%KMODDIR%%/fuse.ko +/%%KMODDIR%%/fuse.ko From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:21:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 527EA8A5; Tue, 7 Oct 2014 17:21:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3DCC3D8; Tue, 7 Oct 2014 17:21:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HL0gB005627; Tue, 7 Oct 2014 17:21:00 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HL0Mh005626; Tue, 7 Oct 2014 17:21:00 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410071721.s97HL0Mh005626@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 17:21:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370376 - head/games/tuxpaint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:21:00 -0000 Author: antoine Date: Tue Oct 7 17:20:59 2014 New Revision: 370376 URL: https://svnweb.freebsd.org/changeset/ports/370376 QAT: https://qat.redports.org/buildarchive/r370376/ Log: Fix without gperf from base Modified: head/games/tuxpaint/Makefile Modified: head/games/tuxpaint/Makefile ============================================================================== --- head/games/tuxpaint/Makefile Tue Oct 7 17:16:57 2014 (r370375) +++ head/games/tuxpaint/Makefile Tue Oct 7 17:20:59 2014 (r370376) @@ -30,7 +30,8 @@ MAKE_ARGS= CPPFLAGS="-I${LOCALBASE}/incl GNOME_PREFIX="${PREFIX}" \ ARCH_INSTALL="" \ OPTFLAGS="${CFLAGS} -DHAVE_STRCASESTR" \ - SHARED_FLAGS="-shared -fPIC" + SHARED_FLAGS="-shared -fPIC" \ + GPERF="${GPERF}" INSTALL_TARGET= install-gettext install-im install-magic-plugins \ install-magic-plugin-dev install-default-config \ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:44:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B084FF6; Tue, 7 Oct 2014 17:44:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45BD15F9; Tue, 7 Oct 2014 17:44:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HiSxM016439; Tue, 7 Oct 2014 17:44:28 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HiRQb016437; Tue, 7 Oct 2014 17:44:27 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201410071744.s97HiRQb016437@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Tue, 7 Oct 2014 17:44:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370377 - in head/sysutils/grub2-pcbsd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:44:28 -0000 Author: kmoore Date: Tue Oct 7 17:44:27 2014 New Revision: 370377 URL: https://svnweb.freebsd.org/changeset/ports/370377 QAT: https://qat.redports.org/buildarchive/r370377/ Log: - Update grub 30_os-prober.in to detect more bootable NTFS partitions - Bump PORTREV Modified: head/sysutils/grub2-pcbsd/Makefile head/sysutils/grub2-pcbsd/files/30_os-prober.in Modified: head/sysutils/grub2-pcbsd/Makefile ============================================================================== --- head/sysutils/grub2-pcbsd/Makefile Tue Oct 7 17:20:59 2014 (r370376) +++ head/sysutils/grub2-pcbsd/Makefile Tue Oct 7 17:44:27 2014 (r370377) @@ -3,7 +3,7 @@ PORTNAME= grub2-pcbsd PORTVERSION= 2.02p -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils MASTER_SITES= http://www.pcbsd.org/~kris/software/ \ ftp://ftp.pcbsd.org/pub/software/ Modified: head/sysutils/grub2-pcbsd/files/30_os-prober.in ============================================================================== --- head/sysutils/grub2-pcbsd/files/30_os-prober.in Tue Oct 7 17:20:59 2014 (r370376) +++ head/sysutils/grub2-pcbsd/files/30_os-prober.in Tue Oct 7 17:44:27 2014 (r370377) @@ -32,7 +32,7 @@ check_ntfs_part() fs_label=`grub-probe --device /dev/${disk} --target=fs_label` # Check for common windows NTFS labels for bootable partitions - if [ "$fs_label" != "System Reserved" -a "$fs_label" != "OS" -a "$fs_label" != "SYSTEM" ] ; then return; fi + if [ "$fs_label" != "System Reserved" -a "$fs_label" != "SYSTEM RESERVED" -a "$fs_label" != "eMachines" -a "$fs_label" != "OS" -a "$fs_label" != "SYSTEM" ] ; then return; fi fs_uuid=`grub-probe --device /dev/${disk} --target=fs_uuid` if [ -z "$fs_uuid" ] ; then From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:46:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7197B189; Tue, 7 Oct 2014 17:46:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5CB3A616; Tue, 7 Oct 2014 17:46:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HkE8a016806; Tue, 7 Oct 2014 17:46:14 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HkEO8016805; Tue, 7 Oct 2014 17:46:14 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201410071746.s97HkEO8016805@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 7 Oct 2014 17:46:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370378 - head/net/openldap24-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:46:14 -0000 Author: delphij Date: Tue Oct 7 17:46:13 2014 New Revision: 370378 URL: https://svnweb.freebsd.org/changeset/ports/370378 QAT: https://qat.redports.org/buildarchive/r370378/ Log: Blacklist BDB 6. Reported by: Gerard E. Seibert Modified: head/net/openldap24-server/Makefile Modified: head/net/openldap24-server/Makefile ============================================================================== --- head/net/openldap24-server/Makefile Tue Oct 7 17:44:27 2014 (r370377) +++ head/net/openldap24-server/Makefile Tue Oct 7 17:46:13 2014 (r370378) @@ -353,6 +353,7 @@ PLIST_SUB+= BACK_BDB="@comment " \ .else USE_BDB= 48+ +INVALID_BDB_VER= 6 CONFIGURE_ARGS+= --enable-bdb=${BACKEND_ENABLE} \ --enable-hdb=${BACKEND_ENABLE} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:49:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E77B2F6; Tue, 7 Oct 2014 17:49:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2FCF164D; Tue, 7 Oct 2014 17:49:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Hn6Hv017258; Tue, 7 Oct 2014 17:49:06 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Hn5nI017256; Tue, 7 Oct 2014 17:49:05 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071749.s97Hn5nI017256@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:49:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370379 - head/net/pwhois X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:49:06 -0000 Author: bapt Date: Tue Oct 7 17:49:05 2014 New Revision: 370379 URL: https://svnweb.freebsd.org/changeset/ports/370379 QAT: https://qat.redports.org/buildarchive/r370379/ Log: Cleanup plist Allow packaging as a user Modified: head/net/pwhois/Makefile head/net/pwhois/pkg-plist Modified: head/net/pwhois/Makefile ============================================================================== --- head/net/pwhois/Makefile Tue Oct 7 17:46:13 2014 (r370378) +++ head/net/pwhois/Makefile Tue Oct 7 17:49:05 2014 (r370379) @@ -5,26 +5,28 @@ PORTNAME= pwhois PORTVERSION= 2.2.0.1 CATEGORIES= net MASTER_SITES= http://pwhois.org/get/ \ - http://mirrors.rit.edu/zi/ + http://mirrors.rit.edu/zi/ EXTRACT_SUFX= .tgz MAINTAINER= zi@FreeBSD.org COMMENT= Whois-compatible framework for disclosing routing data RUN_DEPENDS= p5-DBI>0:${PORTSDIR}/databases/p5-DBI \ - p5-Time-Format>0:${PORTSDIR}/devel/p5-Time-Format \ + p5-Time-Format>0:${PORTSDIR}/devel/p5-Time-Format \ p5-Log-Dispatch>0:${PORTSDIR}/devel/p5-Log-Dispatch \ p5-Net-DNS>0:${PORTSDIR}/dns/p5-Net-DNS \ p5-Net-Telnet>0:${PORTSDIR}/net/p5-Net-Telnet \ p5-Net-CIDR>0:${PORTSDIR}/net-mgmt/p5-Net-CIDR \ p5-RPSL-Parser>0:${PORTSDIR}/devel/p5-RPSL-Parser \ - p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql + p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql FETCH_ARGS= -p USERS= ${PORTNAME} GROUPS= ${PORTNAME} +USES= shebangfix tar:tgz +SHEBANG_FILES= pwhois-updatedb USE_MYSQL= client USE_RC_SUBR= ${PORTNAME}d SUB_FILES= pkg-message 512.pwhois-updatedb @@ -55,7 +57,5 @@ do-install: post-install: @${MKDIR} ${STAGEDIR}/var/db/pwhois ${STAGEDIR}/var/log/pwhois - @${CHOWN} 512:512 ${STAGEDIR}/var/db/pwhois ${STAGEDIR}/var/log/pwhois - #@${CHOWN} ${USERS}:${GROUPS} ${STAGEDIR}/var/db/pwhois ${STAGEDIR}/var/log/pwhois .include Modified: head/net/pwhois/pkg-plist ============================================================================== --- head/net/pwhois/pkg-plist Tue Oct 7 17:46:13 2014 (r370378) +++ head/net/pwhois/pkg-plist Tue Oct 7 17:49:05 2014 (r370379) @@ -1,20 +1,7 @@ etc/periodic/daily/512.pwhois-updatedb sbin/pwhois-updatedb sbin/pwhoisd -@group pwhois -@mode 640 -@unexec if cmp -s %D/etc/pwhois/pwhoisd.conf %D/etc/pwhois/pwhoisd.conf.sample ; then rm -f %D/etc/pwhois/pwhoisd.conf ; fi -%%ETCDIR%%/pwhoisd.conf.sample -@exec if [ ! -f %D/etc/pwhois/pwhoisd.conf ]; then cp -p %D/%F %B/pwhoisd.conf; fi -@group wheel -@mode +@sample(,pwhois,640) %%ETCDIR%%/pwhoisd.conf.sample %%DATADIR%%/createdb.sql -@dirrm %%DATADIR%% -@dirrmtry %%ETCDIR%% -@dirrmtry etc/periodic/daily -@dirrmtry etc/periodic -@cwd / -@dirrmtry var/db/pwhois -@dirrmtry var/log/pwhois -@unexec if [ -d var/db/pwhois ]; then echo "You should remove /var/db/pwhois if you don't need it any more."; fi -@unexec if [ -d var/log/pwhois ]; then echo "You should remove /var/log/pwhois if you don't need it any more."; fi +@dir(pwhois,pwhois,) /var/db/pwhois +@dir(pwhois,pwhois,) /var/log/pwhois From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:49:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CD773EE; Tue, 7 Oct 2014 17:49:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F279065F; Tue, 7 Oct 2014 17:49:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Hnm7N017472; Tue, 7 Oct 2014 17:49:48 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HnmAg017466; Tue, 7 Oct 2014 17:49:48 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201410071749.s97HnmAg017466@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Tue, 7 Oct 2014 17:49:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370380 - head/emulators/i386-wine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:49:49 -0000 Author: dbn Date: Tue Oct 7 17:49:47 2014 New Revision: 370380 URL: https://svnweb.freebsd.org/changeset/ports/370380 QAT: https://qat.redports.org/buildarchive/r370380/ Log: Update emulators/i386-wine to 1.6.2_5. Modified: head/emulators/i386-wine/Makefile.inc head/emulators/i386-wine/distinfo head/emulators/i386-wine/pkg-plist Modified: head/emulators/i386-wine/Makefile.inc ============================================================================== --- head/emulators/i386-wine/Makefile.inc Tue Oct 7 17:49:05 2014 (r370379) +++ head/emulators/i386-wine/Makefile.inc Tue Oct 7 17:49:47 2014 (r370380) @@ -3,7 +3,7 @@ PORTNAME= wine PORTVERSION= 1.6.2 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= LOCAL/dbn/repos/wine/${DIST_SUBDIR}/${PORTVERSION} Modified: head/emulators/i386-wine/distinfo ============================================================================== --- head/emulators/i386-wine/distinfo Tue Oct 7 17:49:05 2014 (r370379) +++ head/emulators/i386-wine/distinfo Tue Oct 7 17:49:47 2014 (r370380) @@ -1,8 +1,8 @@ -SHA256 (freebsd:8:x86:64/i386-wine-1.6.2_4,1.txz) = 2f4a1438ba3dc23b60a24628c8a21b8a18bdecc3663a9c0619a8a0cc551f92ba -SIZE (freebsd:8:x86:64/i386-wine-1.6.2_4,1.txz) = 22919276 -SHA256 (freebsd:9:x86:64/i386-wine-1.6.2_4,1.txz) = 5fad00fea8d45dfd68d89198d0e63954e8b0dd2263addce2a3bb91a09c994189 -SIZE (freebsd:9:x86:64/i386-wine-1.6.2_4,1.txz) = 23070084 -SHA256 (freebsd:10:x86:64/i386-wine-1.6.2_4,1.txz) = a687f368e00affd31c8685fb975389943e826a88be016aa51265e7b1f8299d57 -SIZE (freebsd:10:x86:64/i386-wine-1.6.2_4,1.txz) = 23066064 -SHA256 (freebsd:11:x86:64/i386-wine-1.6.2_4,1.txz) = cabf7b07b3d8f3236648d4c0282cb1fdf958eaba2ae95759097e9d2c2bb1e4df -SIZE (freebsd:11:x86:64/i386-wine-1.6.2_4,1.txz) = 43438256 +SHA256 (freebsd:8:x86:64/i386-wine-1.6.2_5,1.txz) = f1e4e7a2d9c41ee2125338e1ec256a30ca26b1542b9b05e045b53c12aacaa04a +SIZE (freebsd:8:x86:64/i386-wine-1.6.2_5,1.txz) = 22927612 +SHA256 (freebsd:9:x86:64/i386-wine-1.6.2_5,1.txz) = 19b429fa44267889d217024d50a781653cb0874460a7901641676d09e79fc279 +SIZE (freebsd:9:x86:64/i386-wine-1.6.2_5,1.txz) = 23059852 +SHA256 (freebsd:10:x86:64/i386-wine-1.6.2_5,1.txz) = 40ac9222df285d5bebaa70e99512adcea37c93f1da2d6b4f4d0ccacc295d1147 +SIZE (freebsd:10:x86:64/i386-wine-1.6.2_5,1.txz) = 23061740 +SHA256 (freebsd:11:x86:64/i386-wine-1.6.2_5,1.txz) = 4544a4e9495de7e30d252d96c5c6dbdd8721af1433dc6bb47264d77aff3757c8 +SIZE (freebsd:11:x86:64/i386-wine-1.6.2_5,1.txz) = 43375936 Modified: head/emulators/i386-wine/pkg-plist ============================================================================== --- head/emulators/i386-wine/pkg-plist Tue Oct 7 17:49:05 2014 (r370379) +++ head/emulators/i386-wine/pkg-plist Tue Oct 7 17:49:47 2014 (r370380) @@ -2161,7 +2161,6 @@ share/wine/wine.inf @dirrmtry man/de.UTF-8/man1 @dirrmtry man/de.UTF-8 @dirrm share/wine/fonts -@dirrm share/wine @dirrm share/doc/wine @dirrm lib32/wine/fakedlls @dirrm lib32/wine From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:51:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 723FC4EE; Tue, 7 Oct 2014 17:51:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D997756; Tue, 7 Oct 2014 17:51:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Hp3Xh017800; Tue, 7 Oct 2014 17:51:03 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Hp3Zx017799; Tue, 7 Oct 2014 17:51:03 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410071751.s97Hp3Zx017799@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 17:51:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370381 - head/net/pwhois X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:51:03 -0000 Author: bapt Date: Tue Oct 7 17:51:02 2014 New Revision: 370381 URL: https://svnweb.freebsd.org/changeset/ports/370381 QAT: https://qat.redports.org/buildarchive/r370381/ Log: Bump portrevision as now the properly credentials are applied to the owned directories when installed by binary packages Modified: head/net/pwhois/Makefile Modified: head/net/pwhois/Makefile ============================================================================== --- head/net/pwhois/Makefile Tue Oct 7 17:49:47 2014 (r370380) +++ head/net/pwhois/Makefile Tue Oct 7 17:51:02 2014 (r370381) @@ -3,6 +3,7 @@ PORTNAME= pwhois PORTVERSION= 2.2.0.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://pwhois.org/get/ \ http://mirrors.rit.edu/zi/ From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:52:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F274A5F1; Tue, 7 Oct 2014 17:52:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DD601774; Tue, 7 Oct 2014 17:52:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HqduK021485; Tue, 7 Oct 2014 17:52:39 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HqdkP021483; Tue, 7 Oct 2014 17:52:39 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071752.s97HqdkP021483@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 17:52:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370382 - head/graphics/shotwell X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:52:40 -0000 Author: amdmi3 Date: Tue Oct 7 17:52:38 2014 New Revision: 370382 URL: https://svnweb.freebsd.org/changeset/ports/370382 QAT: https://qat.redports.org/buildarchive/r370382/ Log: - Update to 0.20.1 - While here, add LICENSE_FILE PR: 194200 Submitted by: cmt@burggraben.net (maintainer) Modified: head/graphics/shotwell/Makefile head/graphics/shotwell/distinfo Modified: head/graphics/shotwell/Makefile ============================================================================== --- head/graphics/shotwell/Makefile Tue Oct 7 17:51:02 2014 (r370381) +++ head/graphics/shotwell/Makefile Tue Oct 7 17:52:38 2014 (r370382) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= shotwell -PORTVERSION= 0.20.0 +PORTVERSION= 0.20.1 CATEGORIES= graphics gnome MASTER_SITES= GNOME/sources/shotwell/${PORTVERSION:R} @@ -10,6 +10,7 @@ MAINTAINER= cmt@burggraben.net COMMENT= Open source photo manager for GNOME LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= vala>=0.18.0:${PORTSDIR}/lang/vala \ bash:${PORTSDIR}/shells/bash Modified: head/graphics/shotwell/distinfo ============================================================================== --- head/graphics/shotwell/distinfo Tue Oct 7 17:51:02 2014 (r370381) +++ head/graphics/shotwell/distinfo Tue Oct 7 17:52:38 2014 (r370382) @@ -1,2 +1,2 @@ -SHA256 (shotwell-0.20.0.tar.xz) = d698ee59e2b582b4553ff343aa92a5bbc3e56146e5cbd3f2af321be4bca56f70 -SIZE (shotwell-0.20.0.tar.xz) = 1809492 +SHA256 (shotwell-0.20.1.tar.xz) = 86a869432b7c049e61217ad09eeac7e0d79cabfeca04a57a3629ad25f3070615 +SIZE (shotwell-0.20.1.tar.xz) = 1810488 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 17:57:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4C3D85A; Tue, 7 Oct 2014 17:57:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B01057CF; Tue, 7 Oct 2014 17:57:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97HvSwp022386; Tue, 7 Oct 2014 17:57:28 GMT (envelope-from mva@FreeBSD.org) Received: (from mva@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97HvS72022383; Tue, 7 Oct 2014 17:57:28 GMT (envelope-from mva@FreeBSD.org) Message-Id: <201410071757.s97HvS72022383@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mva set sender to mva@FreeBSD.org using -f From: Marcus von Appen Date: Tue, 7 Oct 2014 17:57:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370384 - head/misc/mbuffer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 17:57:29 -0000 Author: mva Date: Tue Oct 7 17:57:27 2014 New Revision: 370384 URL: https://svnweb.freebsd.org/changeset/ports/370384 QAT: https://qat.redports.org/buildarchive/r370384/ Log: - Update to version 2014.03.10 - Fix version display - Minor updates to pkg-descr, incoluding a WWW: whitespace fix Notable changes: 0140310: - added memory advise for buffer memory - compatibility fix for Solars st driver - prevent buffer overflow attack via defaults file - ignore defaults file from other users - updated documentation for use with cron - minor bugfixes 20140126: - new feature: set option defaults in ~/.mbuffer.rc - enhancement: write status to the log file - enhancement: added option to suppress status logging - fix: formatting fix for summary message PR: 193480 Submitted by: fk@fabiankeil.de Approved by: maintainer timeout (mm@) Modified: head/misc/mbuffer/Makefile head/misc/mbuffer/distinfo head/misc/mbuffer/pkg-descr Modified: head/misc/mbuffer/Makefile ============================================================================== --- head/misc/mbuffer/Makefile Tue Oct 7 17:54:07 2014 (r370383) +++ head/misc/mbuffer/Makefile Tue Oct 7 17:57:27 2014 (r370384) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= mbuffer -PORTVERSION= 2013.02.20 -PORTREVISION= 1 +PORTVERSION= 2014.03.10 CATEGORIES= misc MASTER_SITES= http://www.maier-komor.de/software/mbuffer/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g} @@ -36,9 +35,18 @@ CONFIGURE_ARGS+=ac_cv_search_mhash_init= USE_OPENSSL= yes .endif +# Prevent sendfile() from being detected by configure and rejected +# by mbuffer.c due to being "unable to send from buffers". +CONFIGURE_ARGS+=ac_cv_search_sendfile=no + .include post-patch: @${REINPLACE_CMD} -e 's,-lpthread,${PTHREAD_LIBS},' ${WRKSRC}/configure +post-configure: + # Rename variables to make sure they aren't redefined through mhash.h + @${REINPLACE_CMD} -E -e 's@(PACKAGE|VERSION)@MBUFFER_\1@' \ + ${WRKSRC}/config.h ${WRKSRC}/mbuffer.c + .include Modified: head/misc/mbuffer/distinfo ============================================================================== --- head/misc/mbuffer/distinfo Tue Oct 7 17:54:07 2014 (r370383) +++ head/misc/mbuffer/distinfo Tue Oct 7 17:57:27 2014 (r370384) @@ -1,2 +1,2 @@ -SHA256 (mbuffer-20130220.tgz) = 1d549c3ac7e29c6064b63195141a61253095831cf5d16f419ae6cc342f12c512 -SIZE (mbuffer-20130220.tgz) = 120519 +SHA256 (mbuffer-20140310.tgz) = ab90b6fdce16db2bf08bcda0bc5d2bfb053a9a163d2a24f95fbf246460549b99 +SIZE (mbuffer-20140310.tgz) = 122422 Modified: head/misc/mbuffer/pkg-descr ============================================================================== --- head/misc/mbuffer/pkg-descr Tue Oct 7 17:54:07 2014 (r370383) +++ head/misc/mbuffer/pkg-descr Tue Oct 7 17:57:27 2014 (r370384) @@ -1,12 +1,14 @@ mbuffer is a tool for buffering data streams. It is also a replacement for buffer with additional functionality: -- display of i/o speed -- optional use of memory mapped i/o for huge buffer files -- multithreaded instead of shared memory ipc -- multi-volume support -- auto-loader support -- network support -- buffer compatible command-line options +- multi-target network output +- on the fly hash calculation +- display of I/O speed +- optional use of memory mapped I/O for huge buffers +- multithreaded instead of sharedmemory ipc +- multi volume support +- autoloader support +- networking support +- command-line options compatible to buffer -WWW: http://www.maier-komor.de/mbuffer.html +WWW: http://www.maier-komor.de/mbuffer.html From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:06:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5934EC6C; Tue, 7 Oct 2014 18:06:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 446F68EF; Tue, 7 Oct 2014 18:06:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97I6SOt027224; Tue, 7 Oct 2014 18:06:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97I6RZu027220; Tue, 7 Oct 2014 18:06:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071806.s97I6RZu027220@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 18:06:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370385 - head/audio/ctronome X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:06:28 -0000 Author: amdmi3 Date: Tue Oct 7 18:06:27 2014 New Revision: 370385 URL: https://svnweb.freebsd.org/changeset/ports/370385 QAT: https://qat.redports.org/buildarchive/r370385/ Log: - Upadate to 0.5.6 - While here, add LICENSE_FILE and drop @dirrm PR: 194191 Submitted by: luca.pizzamiglio@gmail.com (maintainer) Modified: head/audio/ctronome/Makefile head/audio/ctronome/distinfo Modified: head/audio/ctronome/Makefile ============================================================================== --- head/audio/ctronome/Makefile Tue Oct 7 17:57:27 2014 (r370384) +++ head/audio/ctronome/Makefile Tue Oct 7 18:06:27 2014 (r370385) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ctronome -PORTVERSION= 0.5.5 +PORTVERSION= 0.5.6 CATEGORIES= audio MASTER_SITES= http://ctronome.kign.org/source/ @@ -10,11 +10,11 @@ MAINTAINER= luca.pizzamiglio@gmail.com COMMENT= Programmable console-based metronome LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING PLIST_FILES= bin/ctronome \ %%DATADIR%%/metronome1.wav \ %%DATADIR%%/metronome2.wav -PLIST_DIRS= %%DATADIR%% post-patch: @${REINPLACE_CMD} -e 's|linux/soundcard.h|sys/soundcard.h|' ${WRKSRC}/ctronome.h ${WRKSRC}/dsp.c Modified: head/audio/ctronome/distinfo ============================================================================== --- head/audio/ctronome/distinfo Tue Oct 7 17:57:27 2014 (r370384) +++ head/audio/ctronome/distinfo Tue Oct 7 18:06:27 2014 (r370385) @@ -1,2 +1,2 @@ -SHA256 (ctronome-0.5.5.tar.gz) = 6666fb380e76c5c3d26c43f84110abae1ca9193fc46ff285dca32d9e9cc9361e -SIZE (ctronome-0.5.5.tar.gz) = 26402 +SHA256 (ctronome-0.5.6.tar.gz) = d8c17282235759491eae36efbc8fe93514dcac655efa68d3cb8db0132c29a24d +SIZE (ctronome-0.5.6.tar.gz) = 27233 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:13:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D6EFFFF; Tue, 7 Oct 2014 18:13:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC2DE9E4; Tue, 7 Oct 2014 18:13:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97IDBaf031758; Tue, 7 Oct 2014 18:13:11 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97IDBZU031756; Tue, 7 Oct 2014 18:13:11 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410071813.s97IDBZU031756@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 18:13:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370386 - head/multimedia/freevo/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:13:12 -0000 Author: wg Date: Tue Oct 7 18:13:11 2014 New Revision: 370386 URL: https://svnweb.freebsd.org/changeset/ports/370386 QAT: https://qat.redports.org/buildarchive/r370386/ Log: multimedia/freevo: commit forgotten patches Reported by: antoine Added: head/multimedia/freevo/files/patch-setup.py (contents, props changed) head/multimedia/freevo/files/patch-src-plugins-zoneminder.py (contents, props changed) Added: head/multimedia/freevo/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freevo/files/patch-setup.py Tue Oct 7 18:13:11 2014 (r370386) @@ -0,0 +1,11 @@ +--- setup.py.orig 2014-10-06 12:36:29 UTC ++++ setup.py +@@ -26,7 +26,7 @@ + ('kaa.imlib2', '\"svn co svn://svn.freevo.org/kaa/trunk/ kaa\"' ), + ('BeautifulSoup', 'http://www.crummy.com/software/BeautifulSoup/' ), + ('pygame', 'http://www.pygame.org'), +- ('Image', 'http://www.pythonware.com/products/pil/'), ++ ('PIL', 'http://www.pythonware.com/products/pil/'), + ('twisted', 'http://www.twistedmatrix.com/'), + ('zope.interface', 'http://www.zope.org/Products/ZopeInterface'), + ('twisted.web.microdom', 'http://www.twistedmatrix.com/'), Added: head/multimedia/freevo/files/patch-src-plugins-zoneminder.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/freevo/files/patch-src-plugins-zoneminder.py Tue Oct 7 18:13:11 2014 (r370386) @@ -0,0 +1,11 @@ +--- src/plugins/zoneminder.py.orig 2014-10-06 12:02:58 UTC ++++ src/plugins/zoneminder.py +@@ -50,7 +50,7 @@ + import pygame + import MySQLdb + import threading +-import ImageFile ++from PIL import ImageFile + + # Freevo + import config From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:22:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DFC32E1; Tue, 7 Oct 2014 18:22:08 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60215AC7; Tue, 7 Oct 2014 18:22:07 +0000 (UTC) Received: from [192.168.120.187] (095-097-241-198.static.chello.nl [95.97.241.198]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 8353743552; Tue, 7 Oct 2014 13:21:54 -0500 (CDT) Message-ID: <54342F32.9070401@marino.st> Date: Tue, 07 Oct 2014 20:21:38 +0200 From: John Marino Reply-To: marino@freebsd.org, marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370293 - in head/emulators/hyperv-is: . files References: <201410071052.s97AqAtu010821@svn.freebsd.org> <5433E60C.6070602@marino.st> In-Reply-To: <5433E60C.6070602@marino.st> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:22:08 -0000 On 10/7/2014 15:09, John Marino wrote: > You just broke the port. > PORTVERSION must be 1.1, otherwise it breaks for everything other than > release 10.0. That part needs to be reverted. Disregard - I thought you changed PORTVERSION from 1.1 to 1 but actually you just added PORTREVSION=1. Sorry! From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:28:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5B7767A; Tue, 7 Oct 2014 18:28:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 86E2BB26; Tue, 7 Oct 2014 18:28:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97ISSsN037237; Tue, 7 Oct 2014 18:28:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97ISSut037236; Tue, 7 Oct 2014 18:28:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410071828.s97ISSut037236@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 18:28:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370387 - head/net-im/uTox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:28:28 -0000 Author: amdmi3 Date: Tue Oct 7 18:28:27 2014 New Revision: 370387 URL: https://svnweb.freebsd.org/changeset/ports/370387 QAT: https://qat.redports.org/buildarchive/r370387/ Log: - Add runtime dependency on net-im/tox (workaround). - Remove stale libXft dependency. Add instead: * Fontconfig / freetype2 dependencies. * USE_XORG = x11 xext xrender. - Add missing dependencies (libv4l / libvpx / openal). - Make dbus dependency optional. PR: 194136 Submitted by: s3erios@gmail.com Approved by: fidaj@ukr.net (maintainer) Modified: head/net-im/uTox/Makefile Modified: head/net-im/uTox/Makefile ============================================================================== --- head/net-im/uTox/Makefile Tue Oct 7 18:13:11 2014 (r370386) +++ head/net-im/uTox/Makefile Tue Oct 7 18:28:27 2014 (r370387) @@ -2,6 +2,7 @@ PORTNAME= uTox DISTVERSION= 0.1.8.git20140925 +PORTREVISION= 1 CATEGORIES= net-im net-p2p MAINTAINER= fidaj@ukr.net @@ -12,8 +13,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/lib/libtoxcore.a:${PORTSDIR}/net-im/tox \ ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat -LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus \ - libXft.so:${PORTSDIR}/x11-fonts/libXft +LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 \ + libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ + libv4lconvert.so:${PORTSDIR}/multimedia/libv4l \ + libvpx.so:${PORTSDIR}/multimedia/libvpx +RUN_DEPENDS= ${LOCALBASE}/lib/libtoxcore.a:${PORTSDIR}/net-im/tox USE_GITHUB= yes GH_ACCOUNT= notsecure @@ -21,9 +25,16 @@ GH_PROJECT= ${PORTNAME} GH_TAGNAME= ${GH_COMMIT} GH_COMMIT= 3f86bb5 -USES= compiler:c11 desktop-file-utils gmake pkgconfig +USES= compiler:c11 desktop-file-utils gmake openal:al pkgconfig +USE_XORG= x11 xext xrender INSTALLS_ICONS= yes +OPTIONS_DEFINE= DBUS +OPTIONS_DEFAULT= DBUS + +DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus +DBUS_MAKE_ARGS_OFF= DBUS=0 + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/utox From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:39:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA6F4941 for ; Tue, 7 Oct 2014 18:39:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 998D3C2F for ; Tue, 7 Oct 2014 18:39:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Idsr7031010 for ; Tue, 7 Oct 2014 18:39:54 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97IdrVH031007 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 18:39:53 GMT (envelope-from bdrewery) Received: (qmail 82322 invoked from network); 7 Oct 2014 13:39:49 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 13:39:49 -0500 Message-ID: <5434336E.8090805@FreeBSD.org> Date: Tue, 07 Oct 2014 13:39:42 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370293 - in head/emulators/hyperv-is: . files References: <201410071052.s97AqAtu010821@svn.freebsd.org> In-Reply-To: <201410071052.s97AqAtu010821@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cgdtlmgd5I0bemhIBLKpoIVJn5HQuUbjG" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:39:54 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --cgdtlmgd5I0bemhIBLKpoIVJn5HQuUbjG Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 5:52 AM, Baptiste Daroussin wrote: > Author: bapt > Date: Tue Oct 7 10:52:10 2014 > New Revision: 370293 > URL: https://svnweb.freebsd.org/changeset/ports/370293 > QAT: https://qat.redports.org/buildarchive/r370293/ >=20 > Log: > Big cleanup > directly specify the pkg-message used instead of trying to manually g= enerate it > avoid using @cwd > Do not touch base and push everything in PREFIX > This port needs way more love >=20 > Added: > head/emulators/hyperv-is/files/pkg-message.A > - copied unchanged from r370275, head/emulators/hyperv-is/files/pk= g-message.A.in > head/emulators/hyperv-is/files/pkg-message.B > - copied unchanged from r370275, head/emulators/hyperv-is/files/pk= g-message.B.in > Deleted: > head/emulators/hyperv-is/files/pkg-message.A.in > head/emulators/hyperv-is/files/pkg-message.B.in > Modified: > head/emulators/hyperv-is/Makefile > head/emulators/hyperv-is/pkg-plist >=20 > Modified: head/emulators/hyperv-is/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/emulators/hyperv-is/Makefile Tue Oct 7 10:25:42 2014 (r370292= ) > +++ head/emulators/hyperv-is/Makefile Tue Oct 7 10:52:10 2014 (r370293= ) > @@ -2,6 +2,7 @@ > =20 > PORTNAME=3D hyperv-is > PORTVERSION=3D 1.1 > +PORTREVISION=3D 1 > CATEGORIES=3D emulators kld > MASTER_SITES=3D https://github.com/${MSLINK}/ > DISTNAME=3D ${DNAME} > @@ -15,7 +16,8 @@ USES+=3D uidfix > BIS=3D ${PORTVERSION} > MSBASE=3D FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master > MSLINK=3D ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports > -SUB_FILES=3D ${PMSG} > +MAKE_ARGS=3D BINDIR=3D${PREFIX}/sbin MANDIR=3D${PREFIX}/man/man > +PKGMESSAGE=3D ${FILESDIR}/${PMSG} > =20 > .include > =20 > @@ -45,17 +47,18 @@ DNAME=3D ${FILE_${OSREL:S/.//}} > IGNORE=3D OSREL ${OSREL} not supported > .endif > =20 > +post-patch: > + @${REINPLACE_CMD} -e "s,/usr/sbin/,${PREFIX}/sbin/,g" \ > + ${WRKSRC}/etc/rc.d/hv_kvpd > + > pre-install: > @${MKDIR} ${STAGEDIR}/boot/kernel \ > ${STAGEDIR}/etc/rc.d \ > - ${STAGEDIR}/usr/share/man/man1 \ > - ${STAGEDIR}/usr/share/man/man4 \ > - ${STAGEDIR}/usr/share/man/man8 \ > - ${STAGEDIR}/usr/local/hyperv/scripts \ > - ${STAGEDIR}/usr/sbin > - ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message > + ${STAGEDIR}/usr/local/hyperv/scripts > =20 > post-install: > ${RM} ${STAGEDIR}/boot/kernel/linker.hints > + ${MV} ${STAGEDIR}/etc/rc.d/* ${STAGEDIR}${PREFIX}/etc/rc.d > + > =20 > .include >=20 > Copied: head/emulators/hyperv-is/files/pkg-message.A (from r370275, hea= d/emulators/hyperv-is/files/pkg-message.A.in) > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/files/pkg-message.A Tue Oct 7 10:52:10 20= 14 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message.= A.in) > @@ -0,0 +1,19 @@ > +######################################################################= ####### > +After installing do the following steps: > +# Deleting Hyper-v BIS driver names > + sed -i "" '/Loader labels for Hyper-v BIS driver/d' /boot/loader.co= nf > + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf > + sed -i "" '/hv_utils_load/d' /boot/loader.conf > + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf > + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf > + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf > + > + #Hyper-v driver names > + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> /= boot/loader.conf > + echo 'hv_vmbus_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_utils_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_storvsc_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_netvsc_load=3D"YES"' >> /boot/loader.conf > + echo 'hv_ata_pci_disengage_load=3D"YES"' >>/boot/loader.conf > +When deinstalled, restore /boot/loader.conf > +######################################################################= ####### >=20 > Copied: head/emulators/hyperv-is/files/pkg-message.B (from r370275, hea= d/emulators/hyperv-is/files/pkg-message.B.in) > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/emulators/hyperv-is/files/pkg-message.B Tue Oct 7 10:52:10 20= 14 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message.= B.in) > @@ -0,0 +1,17 @@ > +######################################################################= ####### > +To enable hv_kvp, you should do the steps following: > + # Deleting kvp label > + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf=20 > + sed -i "" '/hv_kvp_load/d' /etc/rc.conf=20 > + > + #hyperv driver names > + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> /= boot/loader.conf > + echo 'hv_kvp_load=3D"YES"' >> /boot/loader.conf > + > +# KVP - daemon label > + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf > + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf > + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf > + echo 'hv_kvp_daemon_enable=3D"YES"' >> /etc/rc.conf > +After deinstall, you should restore /boot/loader.conf and /etc/rc.conf= > +######################################################################= ####### >=20 > Modified: head/emulators/hyperv-is/pkg-plist > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:25:42 2014 (r37029= 2) > +++ head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:52:10 2014 (r37029= 3) > @@ -1,25 +1,19 @@ > hyperv/scripts/hv_get_dhcp_info > hyperv/scripts/hv_get_dns_info > hyperv/scripts/hv_set_ifconfig > -@cwd /boot/kernel > -%%A%%hv_ata_pci_disengage.ko > -%%A%%hv_netvsc.ko > -%%A%%hv_storvsc.ko > -%%A%%hv_utils.ko > -%%A%%hv_vmbus.ko > -%%B%%hv_kvp.ko > -@cwd /etc/rc.d > -hv_kvpd > -%%A%%@cwd /usr/share/man/man1 > -%%A%%hyperv-is.1.gz > -%%B%%@cwd /usr/sbin > -%%B%%hv_kvp_daemon > -@cwd /usr/share/man/man4 > -%%A%%hv_ata_pci_disengage.4.gz > -hv_kvp.4.gz > -%%A%%hv_netvsc.4.gz > -%%A%%hv_storvsc.4.gz > -%%A%%hv_utils.4.gz > -%%A%%hv_vmbus.4.gz > -%%B%%@cwd /usr/share/man/man8 > -%%B%%hv_kvp_daemon.8.gz > +%%A%%/boot/kernel/hv_ata_pci_disengage.ko > +%%A%%/boot/kernel/hv_netvsc.ko > +%%A%%/boot/kernel/hv_storvsc.ko > +%%A%%/boot/kernel/hv_utils.ko > +%%A%%/boot/kernel/hv_vmbus.ko > +%%B%%/boot/kernel/hv_kvp.ko > +etc/rc.d/hv_kvpd > +%%A%%man/man1/hyperv-is.1.gz > +%%B%%sbin/hv_kvp_daemon > +%%A%%man/man4/hv_ata_pci_disengage.4.gz > +man/man4/hv_kvp.4.gz > +%%A%%man/man4/hv_netvsc.4.gz > +%%A%%man/man4/hv_storvsc.4.gz > +%%A%%man/man4/hv_utils.4.gz > +%%A%%man/man4/hv_vmbus.4.gz > +%%B%%man/man8/hv_kvp_daemon.8.gz >=20 Shouldn't these go to /boot/modules and not /boot/kernel? /boot/kernel is moved/replaced in upgrades while /boot/modules is not. --=20 Regards, Bryan Drewery --cgdtlmgd5I0bemhIBLKpoIVJn5HQuUbjG Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNDNvAAoJEDXXcbtuRpfPK3YH/0PxlUe9J7fw3hgkTiwJywt9 5T1Th0epK8UCuNICA7TC8Cickklwe2ruwZmigu/ZcOJDbblgy/ye1b5TM1dT9UDS YH76hxrGcJ9ZXzipEie0I2iktyfgqebnUtJuS+aI9KyC2NWFZxZ8OnKeV7KehenN 1oiO+KOBnE39tGnwmfAi0ge6pIH1cHFedCQxHvnOjAPVWZg6SabOr+E/L9HqhhG3 +MbU8kRPVuPs7orCvGDbx4HlBSnpGuK5i4mKgS0XM7Uxqia58LqPwO3ojTVDet+L HTUjRO6vV5Yn+ssqrPdMdLDXeKBZsmdypK4TE38Ezr0a4utVIM7cnQc8is66pyQ= =ZMuu -----END PGP SIGNATURE----- --cgdtlmgd5I0bemhIBLKpoIVJn5HQuUbjG-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:40:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE2C0A42 for ; Tue, 7 Oct 2014 18:40:50 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6C2BCCD for ; Tue, 7 Oct 2014 18:40:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97IeowD033846 for ; Tue, 7 Oct 2014 18:40:50 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97Ieorw033837 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 18:40:50 GMT (envelope-from bdrewery) Received: (qmail 92247 invoked from network); 7 Oct 2014 13:40:48 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 13:40:48 -0500 Message-ID: <543433A9.8020504@FreeBSD.org> Date: Tue, 07 Oct 2014 13:40:41 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370293 - in head/emulators/hyperv-is: . files References: <201410071052.s97AqAtu010821@svn.freebsd.org> <5434336E.8090805@FreeBSD.org> In-Reply-To: <5434336E.8090805@FreeBSD.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DeJowhUUwvx4lj3dCn0wQvgxjnR5j75x4" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:40:51 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --DeJowhUUwvx4lj3dCn0wQvgxjnR5j75x4 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 1:39 PM, Bryan Drewery wrote: > On 10/7/2014 5:52 AM, Baptiste Daroussin wrote: >> Author: bapt >> Date: Tue Oct 7 10:52:10 2014 >> New Revision: 370293 >> URL: https://svnweb.freebsd.org/changeset/ports/370293 >> QAT: https://qat.redports.org/buildarchive/r370293/ >> >> Log: >> Big cleanup >> directly specify the pkg-message used instead of trying to manually = generate it >> avoid using @cwd >> Do not touch base and push everything in PREFIX >> This port needs way more love >> >> Added: >> head/emulators/hyperv-is/files/pkg-message.A >> - copied unchanged from r370275, head/emulators/hyperv-is/files/p= kg-message.A.in >> head/emulators/hyperv-is/files/pkg-message.B >> - copied unchanged from r370275, head/emulators/hyperv-is/files/p= kg-message.B.in >> Deleted: >> head/emulators/hyperv-is/files/pkg-message.A.in >> head/emulators/hyperv-is/files/pkg-message.B.in >> Modified: >> head/emulators/hyperv-is/Makefile >> head/emulators/hyperv-is/pkg-plist >> >> Modified: head/emulators/hyperv-is/Makefile >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- head/emulators/hyperv-is/Makefile Tue Oct 7 10:25:42 2014 (r37029= 2) >> +++ head/emulators/hyperv-is/Makefile Tue Oct 7 10:52:10 2014 (r37029= 3) >> @@ -2,6 +2,7 @@ >> =20 >> PORTNAME=3D hyperv-is >> PORTVERSION=3D 1.1 >> +PORTREVISION=3D 1 >> CATEGORIES=3D emulators kld >> MASTER_SITES=3D https://github.com/${MSLINK}/ >> DISTNAME=3D ${DNAME} >> @@ -15,7 +16,8 @@ USES+=3D uidfix >> BIS=3D ${PORTVERSION} >> MSBASE=3D FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master >> MSLINK=3D ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports >> -SUB_FILES=3D ${PMSG} >> +MAKE_ARGS=3D BINDIR=3D${PREFIX}/sbin MANDIR=3D${PREFIX}/man/man >> +PKGMESSAGE=3D ${FILESDIR}/${PMSG} >> =20 >> .include >> =20 >> @@ -45,17 +47,18 @@ DNAME=3D ${FILE_${OSREL:S/.//}} >> IGNORE=3D OSREL ${OSREL} not supported >> .endif >> =20 >> +post-patch: >> + @${REINPLACE_CMD} -e "s,/usr/sbin/,${PREFIX}/sbin/,g" \ >> + ${WRKSRC}/etc/rc.d/hv_kvpd >> + >> pre-install: >> @${MKDIR} ${STAGEDIR}/boot/kernel \ >> ${STAGEDIR}/etc/rc.d \ >> - ${STAGEDIR}/usr/share/man/man1 \ >> - ${STAGEDIR}/usr/share/man/man4 \ >> - ${STAGEDIR}/usr/share/man/man8 \ >> - ${STAGEDIR}/usr/local/hyperv/scripts \ >> - ${STAGEDIR}/usr/sbin >> - ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message >> + ${STAGEDIR}/usr/local/hyperv/scripts >> =20 >> post-install: >> ${RM} ${STAGEDIR}/boot/kernel/linker.hints >> + ${MV} ${STAGEDIR}/etc/rc.d/* ${STAGEDIR}${PREFIX}/etc/rc.d >> + >> =20 >> .include >> >> Copied: head/emulators/hyperv-is/files/pkg-message.A (from r370275, he= ad/emulators/hyperv-is/files/pkg-message.A.in) >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/files/pkg-message.A Tue Oct 7 10:52:10 2= 014 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message= =2EA.in) >> @@ -0,0 +1,19 @@ >> +#####################################################################= ######## >> +After installing do the following steps: >> +# Deleting Hyper-v BIS driver names >> + sed -i "" '/Loader labels for Hyper-v BIS driver/d' /boot/loader.c= onf >> + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf >> + sed -i "" '/hv_utils_load/d' /boot/loader.conf >> + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf >> + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf >> + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf >> + >> + #Hyper-v driver names >> + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> = /boot/loader.conf >> + echo 'hv_vmbus_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_utils_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_storvsc_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_netvsc_load=3D"YES"' >> /boot/loader.conf >> + echo 'hv_ata_pci_disengage_load=3D"YES"' >>/boot/loader.conf >> +When deinstalled, restore /boot/loader.conf >> +#####################################################################= ######## >> >> Copied: head/emulators/hyperv-is/files/pkg-message.B (from r370275, he= ad/emulators/hyperv-is/files/pkg-message.B.in) >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >> +++ head/emulators/hyperv-is/files/pkg-message.B Tue Oct 7 10:52:10 2= 014 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message= =2EB.in) >> @@ -0,0 +1,17 @@ >> +#####################################################################= ######## >> +To enable hv_kvp, you should do the steps following: >> + # Deleting kvp label >> + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf = >> + sed -i "" '/hv_kvp_load/d' /etc/rc.conf=20 >> + >> + #hyperv driver names >> + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> = /boot/loader.conf >> + echo 'hv_kvp_load=3D"YES"' >> /boot/loader.conf >> + >> +# KVP - daemon label >> + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf >> + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf >> + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf >> + echo 'hv_kvp_daemon_enable=3D"YES"' >> /etc/rc.conf >> +After deinstall, you should restore /boot/loader.conf and /etc/rc.con= f >> +#####################################################################= ######## >> >> Modified: head/emulators/hyperv-is/pkg-plist >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:25:42 2014 (r3702= 92) >> +++ head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:52:10 2014 (r3702= 93) >> @@ -1,25 +1,19 @@ >> hyperv/scripts/hv_get_dhcp_info >> hyperv/scripts/hv_get_dns_info >> hyperv/scripts/hv_set_ifconfig >> -@cwd /boot/kernel >> -%%A%%hv_ata_pci_disengage.ko >> -%%A%%hv_netvsc.ko >> -%%A%%hv_storvsc.ko >> -%%A%%hv_utils.ko >> -%%A%%hv_vmbus.ko >> -%%B%%hv_kvp.ko >> -@cwd /etc/rc.d >> -hv_kvpd >> -%%A%%@cwd /usr/share/man/man1 >> -%%A%%hyperv-is.1.gz >> -%%B%%@cwd /usr/sbin >> -%%B%%hv_kvp_daemon >> -@cwd /usr/share/man/man4 >> -%%A%%hv_ata_pci_disengage.4.gz >> -hv_kvp.4.gz >> -%%A%%hv_netvsc.4.gz >> -%%A%%hv_storvsc.4.gz >> -%%A%%hv_utils.4.gz >> -%%A%%hv_vmbus.4.gz >> -%%B%%@cwd /usr/share/man/man8 >> -%%B%%hv_kvp_daemon.8.gz >> +%%A%%/boot/kernel/hv_ata_pci_disengage.ko >> +%%A%%/boot/kernel/hv_netvsc.ko >> +%%A%%/boot/kernel/hv_storvsc.ko >> +%%A%%/boot/kernel/hv_utils.ko >> +%%A%%/boot/kernel/hv_vmbus.ko >> +%%B%%/boot/kernel/hv_kvp.ko >> +etc/rc.d/hv_kvpd >> +%%A%%man/man1/hyperv-is.1.gz >> +%%B%%sbin/hv_kvp_daemon >> +%%A%%man/man4/hv_ata_pci_disengage.4.gz >> +man/man4/hv_kvp.4.gz >> +%%A%%man/man4/hv_netvsc.4.gz >> +%%A%%man/man4/hv_storvsc.4.gz >> +%%A%%man/man4/hv_utils.4.gz >> +%%A%%man/man4/hv_vmbus.4.gz >> +%%B%%man/man8/hv_kvp_daemon.8.gz >> >=20 > Shouldn't these go to /boot/modules and not /boot/kernel? /boot/kernel > is moved/replaced in upgrades while /boot/modules is not. >=20 Plus hier(7): kernel/ pure kernel executable (the operating system loaded into memory at boot time) modules/ third-party loadable kernel modules; see kldstat(8) --=20 Regards, Bryan Drewery --DeJowhUUwvx4lj3dCn0wQvgxjnR5j75x4 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNDOqAAoJEDXXcbtuRpfPcfQIAMp856a0VUdWcxqEhv2iohgS DWx4Nfsv3oiL5S7sgccgihtPAhN89rtYi+3mANje+b9pZOKuKjT3ZjsoOKqhxeoV FOUPEcyvPKbWDXXmj1rHqlz9yKTodXazbjaql57BEsdso4NFnxRwTB6MvwZF4YbI Ol3z5Owytw1Le8XqwuyI3bouGPCis0uXqon0sipgtxKRy2z5fp47+g60Pq6Fesr1 22jiaKayPGrxvnJkK3oV5asiuZ9fCrTLbWFd/tE3VMkpDWFWsafvEwKcsoaYxnNI TPaFzWBrI2F9F6sfy316iQCucCmQfH8ifHc8+EsV5xSrn3za3c3E/kHb3ErgzwA= =rpan -----END PGP SIGNATURE----- --DeJowhUUwvx4lj3dCn0wQvgxjnR5j75x4-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 18:48:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67BCED32; Tue, 7 Oct 2014 18:48:36 +0000 (UTC) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DD2BAD66; Tue, 7 Oct 2014 18:48:35 +0000 (UTC) Received: from [192.168.120.187] (095-097-241-198.static.chello.nl [95.97.241.198]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 9091243552; Tue, 7 Oct 2014 13:48:23 -0500 (CDT) Message-ID: <54343576.6070500@marino.st> Date: Tue, 07 Oct 2014 20:48:22 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Bryan Drewery , Baptiste Daroussin , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370293 - in head/emulators/hyperv-is: . files References: <201410071052.s97AqAtu010821@svn.freebsd.org> <5434336E.8090805@FreeBSD.org> <543433A9.8020504@FreeBSD.org> In-Reply-To: <543433A9.8020504@FreeBSD.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 18:48:36 -0000 On 10/7/2014 20:40, Bryan Drewery wrote: > On 10/7/2014 1:39 PM, Bryan Drewery wrote: >> On 10/7/2014 5:52 AM, Baptiste Daroussin wrote: >>> Author: bapt >>> Date: Tue Oct 7 10:52:10 2014 >>> New Revision: 370293 >>> URL: https://svnweb.freebsd.org/changeset/ports/370293 >>> QAT: https://qat.redports.org/buildarchive/r370293/ >>> >>> Log: >>> Big cleanup >>> directly specify the pkg-message used instead of trying to manually generate it >>> avoid using @cwd >>> Do not touch base and push everything in PREFIX >>> This port needs way more love >>> >>> Added: >>> head/emulators/hyperv-is/files/pkg-message.A >>> - copied unchanged from r370275, head/emulators/hyperv-is/files/pkg-message.A.in >>> head/emulators/hyperv-is/files/pkg-message.B >>> - copied unchanged from r370275, head/emulators/hyperv-is/files/pkg-message.B.in >>> Deleted: >>> head/emulators/hyperv-is/files/pkg-message.A.in >>> head/emulators/hyperv-is/files/pkg-message.B.in >>> Modified: >>> head/emulators/hyperv-is/Makefile >>> head/emulators/hyperv-is/pkg-plist >>> >>> Modified: head/emulators/hyperv-is/Makefile >>> ============================================================================== >>> --- head/emulators/hyperv-is/Makefile Tue Oct 7 10:25:42 2014 (r370292) >>> +++ head/emulators/hyperv-is/Makefile Tue Oct 7 10:52:10 2014 (r370293) >>> @@ -2,6 +2,7 @@ >>> >>> PORTNAME= hyperv-is >>> PORTVERSION= 1.1 >>> +PORTREVISION= 1 >>> CATEGORIES= emulators kld >>> MASTER_SITES= https://github.com/${MSLINK}/ >>> DISTNAME= ${DNAME} >>> @@ -15,7 +16,8 @@ USES+= uidfix >>> BIS= ${PORTVERSION} >>> MSBASE= FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master >>> MSLINK= ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports >>> -SUB_FILES= ${PMSG} >>> +MAKE_ARGS= BINDIR=${PREFIX}/sbin MANDIR=${PREFIX}/man/man >>> +PKGMESSAGE= ${FILESDIR}/${PMSG} >>> >>> .include >>> >>> @@ -45,17 +47,18 @@ DNAME= ${FILE_${OSREL:S/.//}} >>> IGNORE= OSREL ${OSREL} not supported >>> .endif >>> >>> +post-patch: >>> + @${REINPLACE_CMD} -e "s,/usr/sbin/,${PREFIX}/sbin/,g" \ >>> + ${WRKSRC}/etc/rc.d/hv_kvpd >>> + >>> pre-install: >>> @${MKDIR} ${STAGEDIR}/boot/kernel \ >>> ${STAGEDIR}/etc/rc.d \ >>> - ${STAGEDIR}/usr/share/man/man1 \ >>> - ${STAGEDIR}/usr/share/man/man4 \ >>> - ${STAGEDIR}/usr/share/man/man8 \ >>> - ${STAGEDIR}/usr/local/hyperv/scripts \ >>> - ${STAGEDIR}/usr/sbin >>> - ${MV} ${WRKDIR}/${PMSG} ${WRKDIR}/pkg-message >>> + ${STAGEDIR}/usr/local/hyperv/scripts >>> >>> post-install: >>> ${RM} ${STAGEDIR}/boot/kernel/linker.hints >>> + ${MV} ${STAGEDIR}/etc/rc.d/* ${STAGEDIR}${PREFIX}/etc/rc.d >>> + >>> >>> .include >>> >>> Copied: head/emulators/hyperv-is/files/pkg-message.A (from r370275, head/emulators/hyperv-is/files/pkg-message.A.in) >>> ============================================================================== >>> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >>> +++ head/emulators/hyperv-is/files/pkg-message.A Tue Oct 7 10:52:10 2014 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message.A.in) >>> @@ -0,0 +1,19 @@ >>> +############################################################################# >>> +After installing do the following steps: >>> +# Deleting Hyper-v BIS driver names >>> + sed -i "" '/Loader labels for Hyper-v BIS driver/d' /boot/loader.conf >>> + sed -i "" '/hv_vmbus_load/d' /boot/loader.conf >>> + sed -i "" '/hv_utils_load/d' /boot/loader.conf >>> + sed -i "" '/hv_storvsc_load/d' /boot/loader.conf >>> + sed -i "" '/hv_netvsc_load/d' /boot/loader.conf >>> + sed -i "" '/hv_ata_pci_disengage_load/d' /boot/loader.conf >>> + >>> + #Hyper-v driver names >>> + echo "# Loader labels for Hyper-v BIS drivers -do not modify" >> /boot/loader.conf >>> + echo 'hv_vmbus_load="YES"' >> /boot/loader.conf >>> + echo 'hv_utils_load="YES"' >> /boot/loader.conf >>> + echo 'hv_storvsc_load="YES"' >> /boot/loader.conf >>> + echo 'hv_netvsc_load="YES"' >> /boot/loader.conf >>> + echo 'hv_ata_pci_disengage_load="YES"' >>/boot/loader.conf >>> +When deinstalled, restore /boot/loader.conf >>> +############################################################################# >>> >>> Copied: head/emulators/hyperv-is/files/pkg-message.B (from r370275, head/emulators/hyperv-is/files/pkg-message.B.in) >>> ============================================================================== >>> --- /dev/null 00:00:00 1970 (empty, because file is newly added) >>> +++ head/emulators/hyperv-is/files/pkg-message.B Tue Oct 7 10:52:10 2014 (r370293, copy of r370275, head/emulators/hyperv-is/files/pkg-message.B.in) >>> @@ -0,0 +1,17 @@ >>> +############################################################################# >>> +To enable hv_kvp, you should do the steps following: >>> + # Deleting kvp label >>> + sed -i "" '/Loader labels for Hyper-V KVP drivers/d' /etc/rc.conf >>> + sed -i "" '/hv_kvp_load/d' /etc/rc.conf >>> + >>> + #hyperv driver names >>> + echo '# Loader labels for Hyper-V KVP drivers -do not modify' >> /boot/loader.conf >>> + echo 'hv_kvp_load="YES"' >> /boot/loader.conf >>> + >>> +# KVP - daemon label >>> + sed -i "" '/Label for KVP daemon/d' /etc/rc.conf >>> + sed -i "" '/hv_kvp_daemon_enable/d' /etc/rc.conf >>> + echo '# Label for KVP daemon -do not modify' >> /etc/rc.conf >>> + echo 'hv_kvp_daemon_enable="YES"' >> /etc/rc.conf >>> +After deinstall, you should restore /boot/loader.conf and /etc/rc.conf >>> +############################################################################# >>> >>> Modified: head/emulators/hyperv-is/pkg-plist >>> ============================================================================== >>> --- head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:25:42 2014 (r370292) >>> +++ head/emulators/hyperv-is/pkg-plist Tue Oct 7 10:52:10 2014 (r370293) >>> @@ -1,25 +1,19 @@ >>> hyperv/scripts/hv_get_dhcp_info >>> hyperv/scripts/hv_get_dns_info >>> hyperv/scripts/hv_set_ifconfig >>> -@cwd /boot/kernel >>> -%%A%%hv_ata_pci_disengage.ko >>> -%%A%%hv_netvsc.ko >>> -%%A%%hv_storvsc.ko >>> -%%A%%hv_utils.ko >>> -%%A%%hv_vmbus.ko >>> -%%B%%hv_kvp.ko >>> -@cwd /etc/rc.d >>> -hv_kvpd >>> -%%A%%@cwd /usr/share/man/man1 >>> -%%A%%hyperv-is.1.gz >>> -%%B%%@cwd /usr/sbin >>> -%%B%%hv_kvp_daemon >>> -@cwd /usr/share/man/man4 >>> -%%A%%hv_ata_pci_disengage.4.gz >>> -hv_kvp.4.gz >>> -%%A%%hv_netvsc.4.gz >>> -%%A%%hv_storvsc.4.gz >>> -%%A%%hv_utils.4.gz >>> -%%A%%hv_vmbus.4.gz >>> -%%B%%@cwd /usr/share/man/man8 >>> -%%B%%hv_kvp_daemon.8.gz >>> +%%A%%/boot/kernel/hv_ata_pci_disengage.ko >>> +%%A%%/boot/kernel/hv_netvsc.ko >>> +%%A%%/boot/kernel/hv_storvsc.ko >>> +%%A%%/boot/kernel/hv_utils.ko >>> +%%A%%/boot/kernel/hv_vmbus.ko >>> +%%B%%/boot/kernel/hv_kvp.ko >>> +etc/rc.d/hv_kvpd >>> +%%A%%man/man1/hyperv-is.1.gz >>> +%%B%%sbin/hv_kvp_daemon >>> +%%A%%man/man4/hv_ata_pci_disengage.4.gz >>> +man/man4/hv_kvp.4.gz >>> +%%A%%man/man4/hv_netvsc.4.gz >>> +%%A%%man/man4/hv_storvsc.4.gz >>> +%%A%%man/man4/hv_utils.4.gz >>> +%%A%%man/man4/hv_vmbus.4.gz >>> +%%B%%man/man8/hv_kvp_daemon.8.gz >>> >> >> Shouldn't these go to /boot/modules and not /boot/kernel? /boot/kernel >> is moved/replaced in upgrades while /boot/modules is not. >> > > Plus hier(7): > > kernel/ pure kernel executable (the operating system > loaded into memory at boot time) > modules/ third-party loadable kernel modules; see > kldstat(8) > Okay, I'll make that change with the others. This is a challenging port! John From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:15:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BAF6A85C; Tue, 7 Oct 2014 19:15:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A492F12A; Tue, 7 Oct 2014 19:15:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97JFter061055; Tue, 7 Oct 2014 19:15:55 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JFrQo061043; Tue, 7 Oct 2014 19:15:53 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410071915.s97JFrQo061043@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Tue, 7 Oct 2014 19:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370388 - in head: devel/e2fsprogs-libss misc/e2fsprogs-libblkid misc/e2fsprogs-libuuid sysutils/e2fsprogs sysutils/e2fsprogs/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:15:55 -0000 Author: mandree Date: Tue Oct 7 19:15:52 2014 New Revision: 370388 URL: https://svnweb.freebsd.org/changeset/ports/370388 QAT: https://qat.redports.org/buildarchive/r370388/ Log: Update to new upstream release 1.42.12. Changelog: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.42.12 Reset PORTREVISION on slaves. Remove @dirrm* from master's + slaves' pkg-plist. Remove patches overcome by upstream events. Ignore PORTSCOUT - it can't figure out the directory structure. No longer run self-test in parallel - exhausts redports directory. Mark BROKEN on 11-CURRENT - causes miscompilation (bogus numbers in output, SIGSEGV/SIGBUS): https://redports.org/~mandree/20141007190638-31576-251231/e2fsprogs-1.42.12.log https://redports.org/~mandree/20141007185700-4151-251228/e2fsprogs-1.42.12.log Deleted: head/sysutils/e2fsprogs/files/patch-350897 head/sysutils/e2fsprogs/files/patch-tests-md5sum Modified: head/devel/e2fsprogs-libss/Makefile head/devel/e2fsprogs-libss/pkg-plist head/misc/e2fsprogs-libblkid/Makefile head/misc/e2fsprogs-libblkid/pkg-plist head/misc/e2fsprogs-libuuid/Makefile head/misc/e2fsprogs-libuuid/pkg-plist head/sysutils/e2fsprogs/Makefile head/sysutils/e2fsprogs/distinfo head/sysutils/e2fsprogs/pkg-plist Modified: head/devel/e2fsprogs-libss/Makefile ============================================================================== --- head/devel/e2fsprogs-libss/Makefile Tue Oct 7 18:28:27 2014 (r370387) +++ head/devel/e2fsprogs-libss/Makefile Tue Oct 7 19:15:52 2014 (r370388) @@ -1,7 +1,7 @@ # Created by: Ben Kaduk # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= devel PKGNAMESUFFIX= -libss Modified: head/devel/e2fsprogs-libss/pkg-plist ============================================================================== --- head/devel/e2fsprogs-libss/pkg-plist Tue Oct 7 18:28:27 2014 (r370387) +++ head/devel/e2fsprogs-libss/pkg-plist Tue Oct 7 19:15:52 2014 (r370388) @@ -9,5 +9,3 @@ libdata/pkgconfig/ss.pc man/man1/mk_cmds.1.gz share/ss/ct_c.awk share/ss/ct_c.sed -@dirrm include/ss -@dirrm share/ss Modified: head/misc/e2fsprogs-libblkid/Makefile ============================================================================== --- head/misc/e2fsprogs-libblkid/Makefile Tue Oct 7 18:28:27 2014 (r370387) +++ head/misc/e2fsprogs-libblkid/Makefile Tue Oct 7 19:15:52 2014 (r370388) @@ -1,7 +1,7 @@ # Created by: Matthias Andree # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= misc devel PKGNAMESUFFIX= -libblkid Modified: head/misc/e2fsprogs-libblkid/pkg-plist ============================================================================== --- head/misc/e2fsprogs-libblkid/pkg-plist Tue Oct 7 18:28:27 2014 (r370387) +++ head/misc/e2fsprogs-libblkid/pkg-plist Tue Oct 7 19:15:52 2014 (r370388) @@ -5,5 +5,4 @@ lib/libblkid.so.1 lib/libblkid.so lib/libblkid.a libdata/pkgconfig/blkid.pc -@dirrm include/blkid man/man3/libblkid.3.gz Modified: head/misc/e2fsprogs-libuuid/Makefile ============================================================================== --- head/misc/e2fsprogs-libuuid/Makefile Tue Oct 7 18:28:27 2014 (r370387) +++ head/misc/e2fsprogs-libuuid/Makefile Tue Oct 7 19:15:52 2014 (r370388) @@ -1,7 +1,7 @@ # Created by: Matthias Andree # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= misc devel PKGNAMESUFFIX= -libuuid Modified: head/misc/e2fsprogs-libuuid/pkg-plist ============================================================================== --- head/misc/e2fsprogs-libuuid/pkg-plist Tue Oct 7 18:28:27 2014 (r370387) +++ head/misc/e2fsprogs-libuuid/pkg-plist Tue Oct 7 19:15:52 2014 (r370388) @@ -20,6 +20,5 @@ man/man3/uuid_generate_time.3.gz man/man8/uuidd.8.gz sbin/uuidd @exec mkdir -p /var/run/libuuid -@dirrm include/uuid @unexec %D/etc/rc.d/uuidd stop >/dev/null 2>&1 || true @unexec rmdir /var/run/libuuid >/dev/null 2>&1 || true Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Tue Oct 7 18:28:27 2014 (r370387) +++ head/sysutils/e2fsprogs/Makefile Tue Oct 7 19:15:52 2014 (r370388) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= e2fsprogs -PORTVERSION= 1.42.10 +PORTVERSION= 1.42.12 PORTREVISION?= 0 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -12,6 +12,8 @@ COMMENT?= Utilities & library to manipul LICENSE= GPLv2 +PORTSCOUT= ignore # cannot handle the version in the directory + PATCH_STRIP= -p1 USES= gmake pkgconfig tar:xz USE_CSTD= gnu99 @@ -51,6 +53,10 @@ USES+= gettext iconv:build .include +.if ${OSVERSION} >= 1100000 +BROKEN= Segfaults and miscalculations observed on redports +.endif + .if ${PORT_OPTIONS:MNLS} PLIST_SUB= NLS="" . if empty(ICONV_LIB) @@ -119,7 +125,9 @@ post-build: # There have been subtle failures induced by Linux-isms in the past. # -- Matthias Andree, package maintainer, 2007-09-18 @${ECHO_CMD} '===> Running e2fsprogs self-test suite' - cd ${WRKSRC}/tests && ${MKDIR} ${WRKDIR}/tmp && ${MAKE_CMD} -j${MAKE_JOBS_NUMBER} check TMPDIR=${WRKDIR}/tmp \ +# do not add -j options to ${MAKE_CMD} below, this might break +# due to excessive disk space use. + cd ${WRKSRC}/tests && ${MKDIR} ${WRKDIR}/tmp && ${MAKE_CMD} check TMPDIR=${WRKDIR}/tmp \ || { head -n30000 ${WRKSRC}/tests/*.failed 2>/dev/null ; exit 1 ; } post-install: Modified: head/sysutils/e2fsprogs/distinfo ============================================================================== --- head/sysutils/e2fsprogs/distinfo Tue Oct 7 18:28:27 2014 (r370387) +++ head/sysutils/e2fsprogs/distinfo Tue Oct 7 19:15:52 2014 (r370388) @@ -1,2 +1,2 @@ -SHA256 (e2fsprogs-1.42.10.tar.xz) = 1f3324e80b042e8b9c2791c5b5de57afa205989b170e5800764ea60cb3961599 -SIZE (e2fsprogs-1.42.10.tar.xz) = 4676804 +SHA256 (e2fsprogs-1.42.12.tar.xz) = 6dadcd3b759195150d20154ab9d6516e3b3cbb35d66d461f55ae94a2854e7de8 +SIZE (e2fsprogs-1.42.12.tar.xz) = 4777592 Modified: head/sysutils/e2fsprogs/pkg-plist ============================================================================== --- head/sysutils/e2fsprogs/pkg-plist Tue Oct 7 18:28:27 2014 (r370387) +++ head/sysutils/e2fsprogs/pkg-plist Tue Oct 7 19:15:52 2014 (r370388) @@ -59,6 +59,7 @@ sbin/tune2fs %%NLS%%share/locale/ca/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/cs/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/de/LC_MESSAGES/e2fsprogs.mo +%%NLS%%share/locale/eo/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/es/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/fr/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/id/LC_MESSAGES/e2fsprogs.mo @@ -67,5 +68,6 @@ sbin/tune2fs %%NLS%%share/locale/pl/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/sv/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/tr/LC_MESSAGES/e2fsprogs.mo +%%NLS%%share/locale/uk/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/vi/LC_MESSAGES/e2fsprogs.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/e2fsprogs.mo From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:21:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8F12B3B; Tue, 7 Oct 2014 19:21:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C7DC234; Tue, 7 Oct 2014 19:21:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97JLSAQ063783; Tue, 7 Oct 2014 19:21:28 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JLSF6063781; Tue, 7 Oct 2014 19:21:28 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410071921.s97JLSF6063781@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 19:21:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370389 - head/math/gretl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:21:28 -0000 Author: antoine Date: Tue Oct 7 19:21:27 2014 New Revision: 370389 URL: https://svnweb.freebsd.org/changeset/ports/370389 QAT: https://qat.redports.org/buildarchive/r370389/ Log: Fix packaging Modified: head/math/gretl/Makefile head/math/gretl/pkg-plist Modified: head/math/gretl/Makefile ============================================================================== --- head/math/gretl/Makefile Tue Oct 7 19:15:52 2014 (r370388) +++ head/math/gretl/Makefile Tue Oct 7 19:21:27 2014 (r370389) @@ -3,7 +3,7 @@ PORTNAME= gretl PORTVERSION= 1.9.13 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math finance MASTER_SITES= SF @@ -96,8 +96,10 @@ CONFIGURE_ARGS+= --without-libR .if ${PORT_OPTIONS:MUNZIP} CONFIGURE_ARGS+= --with-gsf USE_GNOME+= libgsf +PLIST_SUB+= NO_UNZIP="@comment " .else CONFIGURE_ARGS+= --without-gsf +PLIST_SUB+= NO_UNZIP="" .endif .if !empty(MACHINE_CPU:Msse2) Modified: head/math/gretl/pkg-plist ============================================================================== --- head/math/gretl/pkg-plist Tue Oct 7 19:15:52 2014 (r370388) +++ head/math/gretl/pkg-plist Tue Oct 7 19:21:27 2014 (r370389) @@ -96,8 +96,8 @@ lib/gretl-gtk2/garch.a lib/gretl-gtk2/garch.so %%GUI%%lib/gretl-gtk2/gnumeric_import.a %%GUI%%lib/gretl-gtk2/gnumeric_import.so -lib/gretl-gtk2/gretlzip.a -lib/gretl-gtk2/gretlzip.so +%%NO_UNZIP%%lib/gretl-gtk2/gretlzip.a +%%NO_UNZIP%%lib/gretl-gtk2/gretlzip.so lib/gretl-gtk2/heckit.a lib/gretl-gtk2/heckit.so lib/gretl-gtk2/interpolate.a @@ -543,19 +543,3 @@ man/man1/gretl.1.gz %%NLS%%share/locale/tr/LC_MESSAGES/gretl.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/gretl.mo %%GUI%%share/mime/packages/gretl.xml -%%GUI%%@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/scripts/misc -@dirrm %%DATADIR%%/scripts -@dirrm %%DATADIR%%/helpfigs -@dirrm %%DATADIR%%/functions -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/db -@dirrm %%DATADIR%%/data/plotbars -@dirrm %%DATADIR%%/data/nist -@dirrm %%DATADIR%%/data/misc -@dirrm %%DATADIR%%/data/greene -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% -@dirrm lib/gretl-gtk2/data -@dirrm lib/gretl-gtk2 -@dirrm include/gretl From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:36:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4ACD3596; Tue, 7 Oct 2014 19:36:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 353AD3D2; Tue, 7 Oct 2014 19:36:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Ja0Zl070764; Tue, 7 Oct 2014 19:36:00 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JZxw1070745; Tue, 7 Oct 2014 19:35:59 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410071935.s97JZxw1070745@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 7 Oct 2014 19:35:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370390 - in head: math/elmer-umfpack science/elmer-eio science/elmer-matc science/elmer-meshgen2d science/elmergrid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:36:01 -0000 Author: thierry Date: Tue Oct 7 19:35:59 2014 New Revision: 370390 URL: https://svnweb.freebsd.org/changeset/ports/370390 QAT: https://qat.redports.org/buildarchive/r370390/ Log: Mark the old elmer-* ports as deprecated: they are obsoleted by cad/elmerfem. Reported by: pfg Modified: head/math/elmer-umfpack/Makefile head/science/elmer-eio/Makefile head/science/elmer-matc/Makefile head/science/elmer-meshgen2d/Makefile head/science/elmergrid/Makefile Modified: head/math/elmer-umfpack/Makefile ============================================================================== --- head/math/elmer-umfpack/Makefile Tue Oct 7 19:21:27 2014 (r370389) +++ head/math/elmer-umfpack/Makefile Tue Oct 7 19:35:59 2014 (r370390) @@ -12,6 +12,9 @@ PKGNAMEPREFIX= elmer- MAINTAINER= ports@FreeBSD.org COMMENT= UMFPACK library used by ELMER FEM package +DEPRECATED= Obsoleted by cad/elmerfem +EXPIRATION_DATE=2014-11-07 + USES= fortran GNU_CONFIGURE= yes ALL_TARGET= Modified: head/science/elmer-eio/Makefile ============================================================================== --- head/science/elmer-eio/Makefile Tue Oct 7 19:21:27 2014 (r370389) +++ head/science/elmer-eio/Makefile Tue Oct 7 19:35:59 2014 (r370390) @@ -5,12 +5,15 @@ PORTNAME= eio PORTVERSION= 5.4.0 PORTREVISION= 6 CATEGORIES= science -MASTER_SITES= http://garr.dl.sourceforge.net/sourceforge/elmerfem/ +MASTER_SITES= http://garr.dl.sourceforge.net/sourceforge/elmerfem/ PKGNAMEPREFIX= elmer- MAINTAINER= ports@FreeBSD.org COMMENT= ELMER FEM Package Data base Interface +DEPRECATED= Obsoleted by cad/elmerfem +EXPIRATION_DATE=2014-11-07 + USES= fortran GNU_CONFIGURE= yes Modified: head/science/elmer-matc/Makefile ============================================================================== --- head/science/elmer-matc/Makefile Tue Oct 7 19:21:27 2014 (r370389) +++ head/science/elmer-matc/Makefile Tue Oct 7 19:35:59 2014 (r370390) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= elmer- MAINTAINER= ports@FreeBSD.org COMMENT= MatC language library used by ELMER FEM package +DEPRECATED= Obsoleted by cad/elmerfem +EXPIRATION_DATE=2014-11-07 + CXXFLAGS+= -Wno-deprecated GNU_CONFIGURE= yes Modified: head/science/elmer-meshgen2d/Makefile ============================================================================== --- head/science/elmer-meshgen2d/Makefile Tue Oct 7 19:21:27 2014 (r370389) +++ head/science/elmer-meshgen2d/Makefile Tue Oct 7 19:35:59 2014 (r370390) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= elmer- MAINTAINER= ports@FreeBSD.org COMMENT= Mesh Generation Utility for use with the ELMER FEM package +DEPRECATED= Obsoleted by cad/elmerfem +EXPIRATION_DATE=2014-11-07 + GNU_CONFIGURE= yes ALL_TARGET= Modified: head/science/elmergrid/Makefile ============================================================================== --- head/science/elmergrid/Makefile Tue Oct 7 19:21:27 2014 (r370389) +++ head/science/elmergrid/Makefile Tue Oct 7 19:35:59 2014 (r370390) @@ -10,6 +10,9 @@ MASTER_SITES= http://garr.dl.sourceforge MAINTAINER= ports@FreeBSD.org COMMENT= Mesh Manipulation Utility for use with the ELMER FEM package +DEPRECATED= Obsoleted by cad/elmerfem +EXPIRATION_DATE=2014-11-07 + ALL_TARGET= GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:43:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB641958; Tue, 7 Oct 2014 19:43:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A560C69E; Tue, 7 Oct 2014 19:43:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97JhYbv075491; Tue, 7 Oct 2014 19:43:34 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JhXwf075483; Tue, 7 Oct 2014 19:43:33 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410071943.s97JhXwf075483@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 7 Oct 2014 19:43:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370391 - in head/net-mgmt/xymon-server: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:43:34 -0000 Author: feld Date: Tue Oct 7 19:43:33 2014 New Revision: 370391 URL: https://svnweb.freebsd.org/changeset/ports/370391 QAT: https://qat.redports.org/buildarchive/r370391/ Log: Add CPE support and fix plist issue I'd previously missed. While here, modernize port and plist. Modified: head/net-mgmt/xymon-server/Makefile head/net-mgmt/xymon-server/files/patch-xymond-Makefile head/net-mgmt/xymon-server/files/xymon-server.in head/net-mgmt/xymon-server/pkg-plist Modified: head/net-mgmt/xymon-server/Makefile ============================================================================== --- head/net-mgmt/xymon-server/Makefile Tue Oct 7 19:35:59 2014 (r370390) +++ head/net-mgmt/xymon-server/Makefile Tue Oct 7 19:43:33 2014 (r370391) @@ -2,7 +2,7 @@ PORTNAME= xymon PORTVERSION= 4.3.17 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt www MASTER_SITES= SF/xymon/Xymon/${PORTVERSION} PKGNAMESUFFIX= -server${PKGNAMESUFFIX2} @@ -29,7 +29,10 @@ XYMONUSER?= xymon XYMONHOSTNAME?= xymon.example.com XYMONHOSTIP?= 127.0.0.1 -USES= gmake +USES= cpe gmake shebangfix +CPE_VENDOR= xymon +CPE_PRODUCT= xymon +SHEBANG_FILES= ${WRKSRC}/xymond/xymonreports.sh.DIST ${WRKSRC}/build/upgrade430.sh USE_OPENSSL= yes MAKE_JOBS_UNSAFE= yes CONFIGURE_ENV= MAKE=gmake @@ -43,9 +46,9 @@ USE_RC_SUBR= xymon-server SUB_LIST+= XYMONUSER="${XYMONUSER}" PLIST_SUB+= XYMONUSER="${XYMONUSER}" -CONFIG_FILES= alerts.cfg analysis.cfg cgioptions.cfg client-local.cfg \ - columndoc.csv combo.cfg graphs.cfg holidays.cfg protocols.cfg \ - rrddefinitions.cfg tasks.cfg xymonserver.cfg +CONFIG_FILES= cgioptions.cfg client-local.cfg \ + columndoc.csv graphs.cfg protocols.cfg \ + tasks.cfg xymonserver.cfg xymon-apache.conf FIXME1= alerts.cfg hosts.cfg xymon-apache-open xymon-apache-secure FIXME2= analysis.cfg combo.cfg holidays.cfg rrddefinitions.cfg \ snmpmibs.cfg xymonmenu.cfg xymonserver-migration.cfg @@ -66,8 +69,6 @@ LIB_DEPENDS+= libnetsnmp.so:${PORTSDIR}/ .endif post-patch: - ${REINPLACE_CMD} -e 's|!/bin/bash|!/usr/local/bin/bash|' \ - ${WRKSRC}/xymond/xymonreports.sh.DIST ${REINPLACE_CMD} -e 's|web-build client|web-build|' ${WRKSRC}/build/Makefile.rules ${REINPLACE_CMD} -e 's|install-docs install-client|install-docs|' ${WRKSRC}/build/Makefile.rules ${REINPLACE_CMD} -e 's|$(INSTALLETCDIR)/protocols.cfg|$(INSTALLETCDIR)/protocols.cfg.DIST|' ${WRKSRC}/xymonnet/Makefile @@ -82,19 +83,13 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/build/upgrade430.sh ${STAGEDIR}${WWWDIR}/server/bin/ ${INSTALL_PROGRAM} ${WRKSRC}/build/renamevars ${STAGEDIR}${WWWDIR}/server/bin/ .for i in ${FIXME1} - ${INSTALL_DATA} ${WRKSRC}/xymond/etcfiles/${i}.DIST ${STAGEDIR}${WWWDIR}/server/etc/ + ${INSTALL_DATA} ${WRKSRC}/xymond/etcfiles/${i}.DIST ${STAGEDIR}${WWWDIR}/server/etc/${i}.sample .endfor .for i in ${FIXME2} - ${INSTALL_DATA} ${WRKSRC}/xymond/etcfiles/${i} ${STAGEDIR}${WWWDIR}/server/etc/${i}.DIST + ${INSTALL_DATA} ${WRKSRC}/xymond/etcfiles/${i} ${STAGEDIR}${WWWDIR}/server/etc/${i}.sample .endfor .for i in ${CONFIG_FILES} - ${CP} -np ${STAGEDIR}${WWWDIR}/server/etc/${i}.DIST \ - ${STAGEDIR}${WWWDIR}/server/etc/${i} || ${TRUE} + ${MV} ${STAGEDIR}${WWWDIR}/server/etc/${i}.DIST ${STAGEDIR}${WWWDIR}/server/etc/${i}.sample .endfor - # this dir should NOT get installed with the package; will do in rc script - ${RMDIR} ${STAGEDIR}/var/log/xymon - ${RMDIR} ${STAGEDIR}/var/log - ${RMDIR} ${STAGEDIR}/var - .include Modified: head/net-mgmt/xymon-server/files/patch-xymond-Makefile ============================================================================== --- head/net-mgmt/xymon-server/files/patch-xymond-Makefile Tue Oct 7 19:35:59 2014 (r370390) +++ head/net-mgmt/xymon-server/files/patch-xymond-Makefile Tue Oct 7 19:43:33 2014 (r370391) @@ -1,6 +1,6 @@ ---- xymond/Makefile.orig 2011-12-12 23:18:17.000000000 +0100 -+++ xymond/Makefile 2012-01-12 06:55:06.000000000 +0100 -@@ -153,13 +153,13 @@ +--- xymond/Makefile.orig 2014-02-10 21:13:18 UTC ++++ xymond/Makefile +@@ -180,25 +180,20 @@ cp -fp *.8 $(INSTALLROOT)$(MANROOT)/man8/ install-cfg: @@ -21,3 +21,16 @@ cd $(INSTALLROOT)$(XYMONHOME); rm -f xymon.sh; ln -sf bin/xymon.sh . cd wwwfiles; find . | grep -v RCS | grep -v ".svn" | grep -v DIST | ../../build/setup-newfiles $(INSTALLROOT)$(INSTALLWWWDIR)/ ../../build/md5.dat cd webfiles; find . | grep -v RCS | grep -v ".svn" | grep -v DIST | ../../build/setup-newfiles $(INSTALLROOT)$(INSTALLWEBDIR)/ ../../build/md5.dat +- touch $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg.bak +- chmod 664 $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg.bak +- mkdir -p $(INSTALLROOT)$(XYMONLOGDIR); chmod 755 $(INSTALLROOT)$(XYMONLOGDIR) + mkdir -p $(INSTALLROOT)$(INSTALLETCDIR)/tasks.d; chmod 755 $(INSTALLROOT)$(INSTALLETCDIR)/tasks.d + ifndef PKGBUILD +- chown $(XYMONUSER) $(INSTALLROOT)$(XYMONLOGDIR) $(INSTALLROOT)$(XYMONHOME) $(INSTALLROOT)$(XYMONHOME)/* $(INSTALLROOT)$(INSTALLBINDIR)/* $(INSTALLROOT)$(INSTALLETCDIR)/* $(INSTALLROOT)$(INSTALLEXTDIR)/* $(INSTALLROOT)$(INSTALLWEBDIR)/* $(INSTALLROOT)$(INSTALLWWWDIR)/gifs $(INSTALLROOT)$(INSTALLWWWDIR)/gifs/* $(INSTALLROOT)$(INSTALLWWWDIR)/menu $(INSTALLROOT)$(INSTALLWWWDIR)/menu/* $(INSTALLROOT)$(INSTALLWWWDIR)/help $(INSTALLROOT)$(INSTALLWWWDIR)/notes $(INSTALLROOT)$(INSTALLWWWDIR)/html $(INSTALLROOT)$(INSTALLWWWDIR)/wml $(INSTALLROOT)$(XYMONVAR) $(INSTALLROOT)$(XYMONVAR)/* ++ chown $(XYMONUSER) $(INSTALLROOT)$(XYMONHOME) $(INSTALLROOT)$(XYMONHOME)/* $(INSTALLROOT)$(INSTALLBINDIR)/* $(INSTALLROOT)$(INSTALLETCDIR)/* $(INSTALLROOT)$(INSTALLEXTDIR)/* $(INSTALLROOT)$(INSTALLWEBDIR)/* $(INSTALLROOT)$(INSTALLWWWDIR)/gifs $(INSTALLROOT)$(INSTALLWWWDIR)/gifs/* $(INSTALLROOT)$(INSTALLWWWDIR)/menu $(INSTALLROOT)$(INSTALLWWWDIR)/menu/* $(INSTALLROOT)$(INSTALLWWWDIR)/help $(INSTALLROOT)$(INSTALLWWWDIR)/notes $(INSTALLROOT)$(INSTALLWWWDIR)/html $(INSTALLROOT)$(INSTALLWWWDIR)/wml $(INSTALLROOT)$(XYMONVAR) $(INSTALLROOT)$(XYMONVAR)/* + chgrp `$(IDTOOL) -g $(XYMONUSER)` $(INSTALLROOT)$(XYMONLOGDIR) $(INSTALLROOT)$(XYMONHOME) $(INSTALLROOT)$(XYMONHOME)/* $(INSTALLROOT)$(INSTALLBINDIR)/* $(INSTALLROOT)$(INSTALLETCDIR)/* $(INSTALLROOT)$(INSTALLEXTDIR)/* $(INSTALLROOT)$(INSTALLWEBDIR)/* $(INSTALLROOT)$(INSTALLWWWDIR)/gifs $(INSTALLROOT)$(INSTALLWWWDIR)/gifs/* $(INSTALLROOT)$(INSTALLWWWDIR)/menu $(INSTALLROOT)$(INSTALLWWWDIR)/menu/* $(INSTALLROOT)$(INSTALLWWWDIR)/help $(INSTALLROOT)$(INSTALLWWWDIR)/notes $(INSTALLROOT)$(INSTALLWWWDIR)/html $(INSTALLROOT)$(INSTALLWWWDIR)/wml $(INSTALLROOT)$(XYMONVAR) $(INSTALLROOT)$(XYMONVAR)/* +- chgrp $(HTTPDGID) $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg.bak +- chmod 664 $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg $(INSTALLROOT)$(INSTALLETCDIR)/critical.cfg.bak + + chown root $(INSTALLROOT)$(INSTALLBINDIR)/xymonping || echo "Could not make xymonping owned by root, continuing" + chmod 4755 $(INSTALLROOT)$(INSTALLBINDIR)/xymonping || echo "Could not make xymonping suid-root, continuing" Modified: head/net-mgmt/xymon-server/files/xymon-server.in ============================================================================== --- head/net-mgmt/xymon-server/files/xymon-server.in Tue Oct 7 19:35:59 2014 (r370390) +++ head/net-mgmt/xymon-server/files/xymon-server.in Tue Oct 7 19:43:33 2014 (r370391) @@ -27,6 +27,12 @@ xymon_prestart() if [ ! -d /var/log/xymon ]; then install -d -o xymon /var/log/xymon fi + + for i in critical.cfg critical.cfg.bak ; do + if [ ! -f ${i} ]; then + install -o xymon -g xymon /dev/null %%WWWDIR%%/server/etc/${i} ; + fi + done } run_rc_command "$1" Modified: head/net-mgmt/xymon-server/pkg-plist ============================================================================== --- head/net-mgmt/xymon-server/pkg-plist Tue Oct 7 19:35:59 2014 (r370390) +++ head/net-mgmt/xymon-server/pkg-plist Tue Oct 7 19:43:33 2014 (r370391) @@ -163,61 +163,25 @@ man/man8/xymonproxy.8 %%WWWDIR%%/server/bin/xymonping %%WWWDIR%%/server/bin/xymonproxy %%WWWDIR%%/server/bin/xymonreports.sh -%%WWWDIR%%/server/etc/xymon-apache-open.DIST -%%WWWDIR%%/server/etc/xymon-apache-secure.DIST -%%WWWDIR%%/server/etc/xymon-apache.conf.DIST -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/alerts.cfg %D/%%WWWDIR%%/server/etc/alerts.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/alerts.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/analysis.cfg %D/%%WWWDIR%%/server/etc/analysis.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/analysis.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/cgioptions.cfg %D/%%WWWDIR%%/server/etc/cgioptions.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/cgioptions.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/client-local.cfg %D/%%WWWDIR%%/server/etc/client-local.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/client-local.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/columndoc.csv %D/%%WWWDIR%%/server/etc/columndoc.csv.DIST; then rm -f %D/%%WWWDIR%%/server/etc/columndoc.csv; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/combo.cfg %D/%%WWWDIR%%/server/etc/combo.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/combo.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/graphs.cfg %D/%%WWWDIR%%/server/etc/graphs.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/graphs.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/holidays.cfg %D/%%WWWDIR%%/server/etc/holidays.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/holidays.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/hosts.cfg %D/%%WWWDIR%%/server/etc/hosts.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/hosts.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/protocols.cfg %D/%%WWWDIR%%/server/etc/protocols.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/protocols.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/rrddefinitions.cfg %D/%%WWWDIR%%/server/etc/rrddefinitions.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/rrddefinitions.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/snmpmibs.cfg %D/%%WWWDIR%%/server/etc/snmpmibs.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/snmpmibs.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/tasks.cfg %D/%%WWWDIR%%/server/etc/tasks.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/tasks.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/xymonmenu.cfg %D/%%WWWDIR%%/server/etc/xymonmenu.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/xymonmenu.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/xymonserver-migration.cfg %D/%%WWWDIR%%/server/etc/xymonserver-migration.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/xymonserver-migration.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/server/etc/xymonserver.cfg %D/%%WWWDIR%%/server/etc/xymonserver.cfg.DIST; then rm -f %D/%%WWWDIR%%/server/etc/xymonserver.cfg; fi -@unexec if test ! -s %D/%%WWWDIR%%/server/etc/critical.cfg; then rm -f %D/%%WWWDIR%%/server/etc/critical.cfg; fi -@unexec if test ! -s %D/%%WWWDIR%%/server/etc/critical.cfg.bak; then rm -f %D/%%WWWDIR%%/server/etc/critical.cfg.bak; fi -%%WWWDIR%%/server/etc/alerts.cfg.DIST -@exec [ ! -f %B/alerts.cfg ] && cp %B/%f %B/alerts.cfg -%%WWWDIR%%/server/etc/analysis.cfg.DIST -@exec [ ! -f %B/analysis.cfg ] && cp %B/%f %B/analysis.cfg -%%WWWDIR%%/server/etc/cgioptions.cfg.DIST -@exec [ ! -f %B/cgioptions.cfg ] && cp %B/%f %B/cgioptions.cfg -%%WWWDIR%%/server/etc/client-local.cfg.DIST -@exec [ ! -f %B/client-local.cfg ] && cp %B/%f %B/client-local.cfg -%%WWWDIR%%/server/etc/columndoc.csv.DIST -@exec [ ! -f %B/columndoc.csv ] && cp %B/%f %B/columndoc.csv -%%WWWDIR%%/server/etc/combo.cfg.DIST -@exec [ ! -f %B/combo.cfg ] && cp %B/%f %B/combo.cfg -%%WWWDIR%%/server/etc/graphs.cfg.DIST -@exec [ ! -f %B/graphs.cfg ] && cp %B/%f %B/graphs.cfg -%%WWWDIR%%/server/etc/holidays.cfg.DIST -@exec [ ! -f %B/holidays.cfg ] && cp %B/%f %B/holidays.cfg -%%WWWDIR%%/server/etc/hosts.cfg.DIST -@exec [ ! -f %B/hosts.cfg ] && cp %B/%f %B/hosts.cfg -%%WWWDIR%%/server/etc/protocols.cfg.DIST -@exec [ ! -f %B/protocols.cfg ] && cp %B/%f %B/protocols.cfg -%%WWWDIR%%/server/etc/rrddefinitions.cfg.DIST -@exec [ ! -f %B/rrddefinitions.cfg ] && cp %B/%f %B/rrddefinitions.cfg -%%WWWDIR%%/server/etc/snmpmibs.cfg.DIST -@exec [ ! -f %B/snmpmibs.cfg ] && cp %B/%f %B/snmpmibs.cfg -%%WWWDIR%%/server/etc/tasks.cfg.DIST -@exec [ ! -f %B/tasks.cfg ] && cp %B/%f %B/tasks.cfg -%%WWWDIR%%/server/etc/xymonmenu.cfg.DIST -@exec [ ! -f %B/xymonmenu.cfg ] && cp %B/%f %B/xymonmenu.cfg -%%WWWDIR%%/server/etc/xymonserver-migration.cfg.DIST -@exec [ ! -f %B/xymonserver-migration.cfg ] && cp %B/%f %B/xymonserver-migration.cfg -%%WWWDIR%%/server/etc/xymonserver.cfg.DIST -@exec [ ! -f %B/xymonserver.cfg ] && cp %B/%f %B/xymonserver.cfg -@exec touch %D/%%WWWDIR%%/server/etc/critical.cfg %D/%%WWWDIR%%/server/etc/critical.cfg.bak -@exec chown %%XYMONUSER%% %D/%%WWWDIR%%/server/etc/critical.cfg.bak %D/%%WWWDIR%%/server/etc/critical.cfg +%%WWWDIR%%/server/etc/xymon-apache-open.sample +%%WWWDIR%%/server/etc/xymon-apache-secure.sample +%%WWWDIR%%/server/etc/xymon-apache.conf.sample +@sample %%WWWDIR%%/server/etc/alerts.cfg.sample +@sample %%WWWDIR%%/server/etc/analysis.cfg.sample +@sample %%WWWDIR%%/server/etc/cgioptions.cfg.sample +@sample %%WWWDIR%%/server/etc/client-local.cfg.sample +@sample %%WWWDIR%%/server/etc/columndoc.csv.sample +@sample %%WWWDIR%%/server/etc/combo.cfg.sample +@sample %%WWWDIR%%/server/etc/graphs.cfg.sample +@sample %%WWWDIR%%/server/etc/holidays.cfg.sample +@sample %%WWWDIR%%/server/etc/hosts.cfg.sample +@sample %%WWWDIR%%/server/etc/protocols.cfg.sample +@sample %%WWWDIR%%/server/etc/rrddefinitions.cfg.sample +@sample %%WWWDIR%%/server/etc/snmpmibs.cfg.sample +@sample %%WWWDIR%%/server/etc/tasks.cfg.sample +@sample %%WWWDIR%%/server/etc/xymonmenu.cfg.sample +@sample %%WWWDIR%%/server/etc/xymonserver-migration.cfg.sample +@sample %%WWWDIR%%/server/etc/xymonserver.cfg.sample %%WWWDIR%%/server/ext/xymonnet-again.sh %%WWWDIR%%/server/web/acknowledge_footer %%WWWDIR%%/server/web/acknowledge_form @@ -468,37 +432,37 @@ man/man8/xymonproxy.8 @exec install -d -o %%XYMONUSER%% %D/%%WWWDIR%%/server/www/snap @exec install -d -o %%XYMONUSER%% %D/%%WWWDIR%%/server/www/wml @exec chown %%XYMONUSER%% %D/%%WWWDIR%%/server/www -@dirrm %%WWWDIR%%/server/www/wml -@dirrm %%WWWDIR%%/server/www/snap -@dirrm %%WWWDIR%%/server/www/rep -@dirrm %%WWWDIR%%/server/www/notes -@dirrm %%WWWDIR%%/server/www/menu -@dirrm %%WWWDIR%%/server/www/html -@dirrm %%WWWDIR%%/server/www/help/manpages/man8 -@dirrm %%WWWDIR%%/server/www/help/manpages/man7 -@dirrm %%WWWDIR%%/server/www/help/manpages/man5 -@dirrm %%WWWDIR%%/server/www/help/manpages/man1 -@dirrm %%WWWDIR%%/server/www/help/manpages -@dirrm %%WWWDIR%%/server/www/help -@dirrm %%WWWDIR%%/server/www/gifs -@dirrm %%WWWDIR%%/server/www -@dirrm %%WWWDIR%%/server/web -@dirrm %%WWWDIR%%/server/tmp -@dirrm %%WWWDIR%%/server/ext -@dirrm %%WWWDIR%%/server/etc/tasks.d -@dirrm %%WWWDIR%%/server/etc -@dirrm %%WWWDIR%%/server/download -@dirrm %%WWWDIR%%/server/bin -@dirrm %%WWWDIR%%/server -@dirrm %%WWWDIR%%/data/rrd -@dirrm %%WWWDIR%%/data/logs -@dirrm %%WWWDIR%%/data/hostdata -@dirrm %%WWWDIR%%/data/histlogs -@dirrm %%WWWDIR%%/data/hist -@dirrm %%WWWDIR%%/data/disabled -@dirrm %%WWWDIR%%/data/data -@dirrm %%WWWDIR%%/data/acks -@dirrm %%WWWDIR%%/data -@dirrm %%WWWDIR%%/cgi-secure -@dirrm %%WWWDIR%%/cgi-bin -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/server/www/wml +@dir %%WWWDIR%%/server/www/snap +@dir %%WWWDIR%%/server/www/rep +@dir %%WWWDIR%%/server/www/notes +@dir %%WWWDIR%%/server/www/menu +@dir %%WWWDIR%%/server/www/html +@dir %%WWWDIR%%/server/www/help/manpages/man8 +@dir %%WWWDIR%%/server/www/help/manpages/man7 +@dir %%WWWDIR%%/server/www/help/manpages/man5 +@dir %%WWWDIR%%/server/www/help/manpages/man1 +@dir %%WWWDIR%%/server/www/help/manpages +@dir %%WWWDIR%%/server/www/help +@dir %%WWWDIR%%/server/www/gifs +@dir %%WWWDIR%%/server/www +@dir %%WWWDIR%%/server/web +@dir %%WWWDIR%%/server/tmp +@dir %%WWWDIR%%/server/ext +@dir %%WWWDIR%%/server/etc/tasks.d +@dir %%WWWDIR%%/server/etc +@dir %%WWWDIR%%/server/download +@dir %%WWWDIR%%/server/bin +@dir %%WWWDIR%%/server +@dir %%WWWDIR%%/data/rrd +@dir %%WWWDIR%%/data/logs +@dir %%WWWDIR%%/data/hostdata +@dir %%WWWDIR%%/data/histlogs +@dir %%WWWDIR%%/data/hist +@dir %%WWWDIR%%/data/disabled +@dir %%WWWDIR%%/data/data +@dir %%WWWDIR%%/data/acks +@dir %%WWWDIR%%/data +@dir %%WWWDIR%%/cgi-secure +@dir %%WWWDIR%%/cgi-bin +@dir %%WWWDIR%% From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:51:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B6E4C68; Tue, 7 Oct 2014 19:51:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F127C7D5; Tue, 7 Oct 2014 19:51:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97JpY33080912; Tue, 7 Oct 2014 19:51:34 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JpY8W080909; Tue, 7 Oct 2014 19:51:34 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410071951.s97JpY8W080909@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 7 Oct 2014 19:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370392 - in head/net-mgmt/xymon-client: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:51:35 -0000 Author: feld Date: Tue Oct 7 19:51:33 2014 New Revision: 370392 URL: https://svnweb.freebsd.org/changeset/ports/370392 QAT: https://qat.redports.org/buildarchive/r370392/ Log: Add CPE support. While here, modernize plist and use @sample Modified: head/net-mgmt/xymon-client/Makefile head/net-mgmt/xymon-client/files/patch-Makefile head/net-mgmt/xymon-client/pkg-plist Modified: head/net-mgmt/xymon-client/Makefile ============================================================================== --- head/net-mgmt/xymon-client/Makefile Tue Oct 7 19:43:33 2014 (r370391) +++ head/net-mgmt/xymon-client/Makefile Tue Oct 7 19:51:33 2014 (r370392) @@ -20,7 +20,9 @@ XYMONUSER?= xymon XYMONHOSTIP?= 127.0.0.1 MAKE_JOBS_UNSAFE= yes -USES= gmake +USES= cpe gmake +CPE_VENDOR= xymon +CPE_PRODUCT= xymon CONFIGURE_ENV= MAKE=${MAKE_CMD} MAKE_ENV+= XYMONUSER="${XYMONUSER}" MAKE_ENV+= XYMONHOSTIP="${XYMONHOSTIP}" @@ -35,10 +37,4 @@ CONFIG_FILES= clientlaunch.cfg xymonclie do-configure: ${CP} ${FILESDIR}/Makefile ${WRKSRC}/ -post-install: -.for i in ${CONFIG_FILES} - ${CP} -np ${STAGEDIR}${WWWDIR}/etc/${i}.DIST \ - ${STAGEDIR}${WWWDIR}/etc/${i} || ${TRUE} -.endfor - .include Modified: head/net-mgmt/xymon-client/files/patch-Makefile ============================================================================== --- head/net-mgmt/xymon-client/files/patch-Makefile Tue Oct 7 19:43:33 2014 (r370391) +++ head/net-mgmt/xymon-client/files/patch-Makefile Tue Oct 7 19:51:33 2014 (r370392) @@ -5,7 +5,7 @@ if test ! -d $(INSTALLROOT)$(XYMONHOME)/ext ; then mkdir -p $(INSTALLROOT)$(XYMONHOME)/ext ; chmod 755 $(INSTALLROOT)$(XYMONHOME)/ext ; fi if test ! -d $(INSTALLROOT)$(XYMONHOME)/local ; then mkdir -p $(INSTALLROOT)$(XYMONHOME)/local ; chmod 755 $(INSTALLROOT)$(XYMONHOME)/local; fi - if test ! -f $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg ; then cp localclient.cfg $(INSTALLROOT)$(XYMONHOME)/etc/ ; chmod 644 $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg; fi -+ if test ! -f $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg.DIST ; then cp localclient.cfg $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg.DIST ; chmod 644 $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg.DIST; fi ++ if test ! -f $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg.sample ; then cp localclient.cfg $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg.sample ; chmod 644 $(INSTALLROOT)$(XYMONHOME)/etc/localclient.cfg.sample; fi if test ! -f $(INSTALLROOT)$(XYMONHOME)/local/README; then cp README-local $(INSTALLROOT)$(XYMONHOME)/local/README ; chmod 644 $(INSTALLROOT)$(XYMONHOME)/local/README; fi chmod 755 runclient.sh $(PROGRAMS) xymonclient*.sh $(COMMONTOOLS) $(EXTRATOOLS) cp -fp runclient.sh $(INSTALLROOT)$(XYMONHOME) @@ -14,9 +14,9 @@ - ../build/merge-sects clientlaunch.cfg $(INSTALLROOT)$(XYMONHOME)/etc/clientlaunch.cfg - ../build/merge-lines xymonclient.cfg $(INSTALLROOT)$(XYMONHOME)/etc/xymonclient.cfg - chmod 644 $(INSTALLROOT)$(XYMONHOME)/etc/clientlaunch.cfg $(INSTALLROOT)$(XYMONHOME)/etc/xymonclient.cfg -+ ../build/merge-sects clientlaunch.cfg $(INSTALLROOT)$(XYMONHOME)/etc/clientlaunch.cfg.DIST -+ ../build/merge-lines xymonclient.cfg $(INSTALLROOT)$(XYMONHOME)/etc/xymonclient.cfg.DIST -+ chmod 644 $(INSTALLROOT)$(XYMONHOME)/etc/clientlaunch.cfg.DIST $(INSTALLROOT)$(XYMONHOME)/etc/xymonclient.cfg.DIST ++ ../build/merge-sects clientlaunch.cfg $(INSTALLROOT)$(XYMONHOME)/etc/clientlaunch.cfg.sample ++ ../build/merge-lines xymonclient.cfg $(INSTALLROOT)$(XYMONHOME)/etc/xymonclient.cfg.sample ++ chmod 644 $(INSTALLROOT)$(XYMONHOME)/etc/clientlaunch.cfg.sample $(INSTALLROOT)$(XYMONHOME)/etc/xymonclient.cfg.sample ifndef PKGBUILD chown -R $(XYMONUSER) $(INSTALLROOT)$(XYMONHOME) Modified: head/net-mgmt/xymon-client/pkg-plist ============================================================================== --- head/net-mgmt/xymon-client/pkg-plist Tue Oct 7 19:43:33 2014 (r370391) +++ head/net-mgmt/xymon-client/pkg-plist Tue Oct 7 19:51:33 2014 (r370392) @@ -22,26 +22,20 @@ %%WWWDIR%%/client/bin/xymonlaunch %%WWWDIR%%/client/bin/logfetch %%WWWDIR%%/client/bin/msgcache -@unexec if cmp -s %D/%%WWWDIR%%/client/etc/clientlaunch.cfg %D/%%WWWDIR%%/client/etc/clientlaunch.cfg.DIST; then rm -f %D/%%WWWDIR%%/client/etc/clientlaunch.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/client/etc/xymonclient.cfg %D/%%WWWDIR%%/client/etc/xymonclient.cfg.DIST; then rm -f %D/%%WWWDIR%%/client/etc/xymonclient.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/client/etc/localclient.cfg %D/%%WWWDIR%%/client/etc/localclient.cfg.DIST; then rm -f %D/%%WWWDIR%%/client/etc/localclient.cfg; fi -%%WWWDIR%%/client/etc/clientlaunch.cfg.DIST -@exec [ ! -f %B/clientlaunch.cfg ] && cp %B/%f %B/clientlaunch.cfg -%%WWWDIR%%/client/etc/xymonclient.cfg.DIST -@exec [ ! -f %B/xymonclient.cfg ] && cp %B/%f %B/xymonclient.cfg -%%WWWDIR%%/client/etc/localclient.cfg.DIST -@exec [ ! -f %B/localclient.cfg ] && cp %B/%f %B/localclient.cfg +@sample %%WWWDIR%%/client/etc/clientlaunch.cfg.sample +@sample %%WWWDIR%%/client/etc/xymonclient.cfg.sample +@sample %%WWWDIR%%/client/etc/localclient.cfg.sample %%WWWDIR%%/client/local/README %%WWWDIR%%/client/runclient.sh @exec chown -R %%XYMONUSER%% %D/%%WWWDIR%%/client @exec mkdir -p %D/%%WWWDIR%%/client/ext @exec mkdir -p %D/%%WWWDIR%%/client/logs @exec mkdir -p %D/%%WWWDIR%%/client/tmp -@dirrm %%WWWDIR%%/client/tmp -@dirrm %%WWWDIR%%/client/logs -@dirrm %%WWWDIR%%/client/local -@dirrm %%WWWDIR%%/client/ext -@dirrm %%WWWDIR%%/client/etc -@dirrm %%WWWDIR%%/client/bin -@dirrm %%WWWDIR%%/client -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/client/tmp +@dir %%WWWDIR%%/client/logs +@dir %%WWWDIR%%/client/local +@dir %%WWWDIR%%/client/ext +@dir %%WWWDIR%%/client/etc +@dir %%WWWDIR%%/client/bin +@dir %%WWWDIR%%/client +@dir %%WWWDIR%% From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:53:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BBEAD5F; Tue, 7 Oct 2014 19:53:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EC2237E5; Tue, 7 Oct 2014 19:53:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97JrPeg081263; Tue, 7 Oct 2014 19:53:25 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JrPBX081261; Tue, 7 Oct 2014 19:53:25 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410071953.s97JrPBX081261@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 7 Oct 2014 19:53:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370393 - in head/net-mgmt: unifi2 unifi3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:53:26 -0000 Author: feld Date: Tue Oct 7 19:53:24 2014 New Revision: 370393 URL: https://svnweb.freebsd.org/changeset/ports/370393 QAT: https://qat.redports.org/buildarchive/r370393/ Log: Add CPE support Modified: head/net-mgmt/unifi2/Makefile head/net-mgmt/unifi3/Makefile Modified: head/net-mgmt/unifi2/Makefile ============================================================================== --- head/net-mgmt/unifi2/Makefile Tue Oct 7 19:51:33 2014 (r370392) +++ head/net-mgmt/unifi2/Makefile Tue Oct 7 19:53:24 2014 (r370393) @@ -16,7 +16,9 @@ RUN_DEPENDS= mongodb>0:${PORTSDIR}/datab SUB_LIST+= USERS=${USERS} GROUPS=${GROUPS} JAVASHAREDIR=${JAVASHAREDIR} -USES= zip +USES= cpe zip +CPE_VENDOR= ubnt +CPE_PRODUCT= unifi_controller USE_JAVA= yes JAVA_VERSION= 1.6+ JAVA_OS= native Modified: head/net-mgmt/unifi3/Makefile ============================================================================== --- head/net-mgmt/unifi3/Makefile Tue Oct 7 19:51:33 2014 (r370392) +++ head/net-mgmt/unifi3/Makefile Tue Oct 7 19:53:24 2014 (r370393) @@ -15,7 +15,9 @@ RUN_DEPENDS= mongodb>0:${PORTSDIR}/datab SUB_LIST+= USERS=${USERS} GROUPS=${GROUPS} JAVASHAREDIR=${JAVASHAREDIR} -USES= zip +USES= cpe zip +CPE_VENDOR= ubnt +CPE_PRODUCT= unifi_controller USE_JAVA= yes JAVA_VERSION= 1.6+ JAVA_OS= native From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 19:54:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63E28E3F; Tue, 7 Oct 2014 19:54:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5022F7E9; Tue, 7 Oct 2014 19:54:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97JsH60081477; Tue, 7 Oct 2014 19:54:17 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97JsHvD081476; Tue, 7 Oct 2014 19:54:17 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410071954.s97JsHvD081476@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 7 Oct 2014 19:54:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370394 - head/net-mgmt/nfsen X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 19:54:17 -0000 Author: feld Date: Tue Oct 7 19:54:16 2014 New Revision: 370394 URL: https://svnweb.freebsd.org/changeset/ports/370394 QAT: https://qat.redports.org/buildarchive/r370394/ Log: Add CPE support Modified: head/net-mgmt/nfsen/Makefile Modified: head/net-mgmt/nfsen/Makefile ============================================================================== --- head/net-mgmt/nfsen/Makefile Tue Oct 7 19:53:24 2014 (r370393) +++ head/net-mgmt/nfsen/Makefile Tue Oct 7 19:54:16 2014 (r370394) @@ -19,7 +19,9 @@ RUN_DEPENDS= rrdtool>=0:${PORTSDIR}/data p5-Socket6>=0:${PORTSDIR}/net/p5-Socket6 \ nfdump>=0:${PORTSDIR}/net-mgmt/nfdump -USES= iconv shebangfix perl5 +USES= cpe iconv shebangfix perl5 +CPE_VENDOR= nfsen +CPE_PRODUCT= nfsen USE_PHP= session pcre sockets NO_BUILD= yes PLIST_SUB+= PORTNAME=${PORTNAME} From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 20:08:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96F24176 for ; Tue, 7 Oct 2014 20:08:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5DA7E8F7 for ; Tue, 7 Oct 2014 20:08:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97K8rbo060700 for ; Tue, 7 Oct 2014 20:08:53 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97K8qlK060693 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 20:08:52 GMT (envelope-from bdrewery) Received: (qmail 58243 invoked from network); 7 Oct 2014 15:08:48 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 15:08:48 -0500 Message-ID: <54344848.1040707@FreeBSD.org> Date: Tue, 07 Oct 2014 15:08:40 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Matthias Andree , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370388 - in head: devel/e2fsprogs-libss misc/e2fsprogs-libblkid misc/e2fsprogs-libuuid sysutils/e2fsprogs sysutils/e2fsprogs/files References: <201410071915.s97JFrQo061043@svn.freebsd.org> In-Reply-To: <201410071915.s97JFrQo061043@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ggXG2DqaTrk7ajNOA0ljiTix7Fcqkl1L8" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 20:08:53 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --ggXG2DqaTrk7ajNOA0ljiTix7Fcqkl1L8 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 2:15 PM, Matthias Andree wrote: > Author: mandree > Date: Tue Oct 7 19:15:52 2014 > New Revision: 370388 > URL: https://svnweb.freebsd.org/changeset/ports/370388 > QAT: https://qat.redports.org/buildarchive/r370388/ >=20 > Log: > Update to new upstream release 1.42.12. > Changelog: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.= 42.12 > =20 > Reset PORTREVISION on slaves. > Remove @dirrm* from master's + slaves' pkg-plist. > Remove patches overcome by upstream events. > Ignore PORTSCOUT - it can't figure out the directory structure. > No longer run self-test in parallel - exhausts redports directory. > =20 > Mark BROKEN on 11-CURRENT - causes miscompilation (bogus numbers in > output, SIGSEGV/SIGBUS): > https://redports.org/~mandree/20141007190638-31576-251231/e2fsprogs= -1.42.12.log > https://redports.org/~mandree/20141007185700-4151-251228/e2fsprogs-= 1.42.12.log It says a lot about ports that we can't update something without breaking it on a release where it was working fine before. --=20 Regards, Bryan Drewery --ggXG2DqaTrk7ajNOA0ljiTix7Fcqkl1L8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNEhJAAoJEDXXcbtuRpfPX14H/0TPkrSxgx09t4erzLeWW0TD d/ft2vCbSFJmAJfxStg1P7UZXZlZnXcfM+d7UtlhmZSGJkeFBTNjwKsezGqESEGV odS51dsnys6nFe5TsudTtzRDr9UkEiDs+kaz+SonvZ9XfhoPDaqqBW+e7p8Q/COv tH8JccKFyzIDpHw751LAfKqm0Jk9jvPUH6FWkDW+f2d//I2Vz+rwnlOrz/5PRih6 9E0ZwbHpJy85ScvRPtOYn9KQnPy/M88s27lkH2ZjHzgvrHfPJLvE8hfaFiacN412 dwaf2/XaS7feXcqijd9OkhYYMl4xbGLJDPs++sw2Quv7FzzFphPM3GMHnehuJ54= =Yw8z -----END PGP SIGNATURE----- --ggXG2DqaTrk7ajNOA0ljiTix7Fcqkl1L8-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 20:14:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D17134CE; Tue, 7 Oct 2014 20:14:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB8B19C5; Tue, 7 Oct 2014 20:14:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97KEMow091277; Tue, 7 Oct 2014 20:14:22 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97KEMok091273; Tue, 7 Oct 2014 20:14:22 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410072014.s97KEMok091273@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 7 Oct 2014 20:14:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370395 - head/devel/py-omniorb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 20:14:22 -0000 Author: thierry Date: Tue Oct 7 20:14:21 2014 New Revision: 370395 URL: https://svnweb.freebsd.org/changeset/ports/370395 QAT: https://qat.redports.org/buildarchive/r370395/ Log: Update (and unbreak) devel/py-omniorb to version 4.2.0. PR: ports/194195 Submitted by: pfg Patched by: maintainer Modified: head/devel/py-omniorb/Makefile head/devel/py-omniorb/distinfo head/devel/py-omniorb/pkg-plist Modified: head/devel/py-omniorb/Makefile ============================================================================== --- head/devel/py-omniorb/Makefile Tue Oct 7 19:54:16 2014 (r370394) +++ head/devel/py-omniorb/Makefile Tue Oct 7 20:14:21 2014 (r370395) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= omniorb -PORTVERSION= 3.7 +PORTVERSION= 4.2.0 CATEGORIES= devel python MASTER_SITES= SF/${PORTNAME}/omniORBpy/omniORBpy-${PORTVERSION} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,8 +13,6 @@ COMMENT= Python bindings for omniORB4, a LICENSE= LGPL21 -BROKEN= Fails to build with new omniORB - LIB_DEPENDS= libomniORB4.so:${PORTSDIR}/devel/omniORB RUN_DEPENDS= omniidl:${PORTSDIR}/devel/omniORB # parts of omniORB4 source tree is required to build omniORBpy; @@ -25,39 +23,51 @@ CONFLICTS= py*-orbit-2* OPTIONS_DEFINE= DOCS EXAMPLES -PLIST_SUB= SONUM=${PORTVERSION:C/.*\.//} +PLIST_SUB= SONUM=2 CONFIGURE_WRKSRC= ${WRKSRC}/build BUILD_WRKSRC= ${CONFIGURE_WRKSRC} INSTALL_WRKSRC= ${CONFIGURE_WRKSRC} OMNIORB_WRKSRC!= cd ${.CURDIR}/../omniORB && ${MAKE} -V WRKSRC -USE_PYTHON= yes USE_OPENSSL= yes GNU_CONFIGURE= yes MAKEFILE= GNUmakefile USE_LDCONFIG= yes -USES= gmake tar:bzip2 +USES= gmake tar:bzip2 python CONFIGURE_SCRIPT= ../configure CONFIGURE_ENV+= PYTHON=${PYTHON_CMD} CONFIGURE_ARGS= --with-openssl=${OPENSSLBASE} --with-omniorb=${LOCALBASE} +.include + pre-configure: @${MKDIR} ${CONFIGURE_WRKSRC} @cd ${OMNIORB_WRKSRC} && ${FIND} idl | ${CPIO} --quiet -pdum ${WRKSRC} post-install: + cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming/__init__.py',None,'CosNaming/__init__.pyc',True)" + cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming__POA/__init__.py',None,'CosNaming__POA/__init__.pyc',True)" + cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('omniidl_be/python.py',None,'omniidl_be/python.pyc',True)" +# cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('omniidl_be/python.py',None,'omniidl_be/python.pyc',True)" + @${RM} ${STAGEDIR}${PYTHON_SITELIBDIR}/omniidl_be/__init__.py + @${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/_omnipymodule.so.4.2 + @${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/_omniZIOPmodule.so.4.2 + @${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/_omniConnMgmtmodule.so.4.2 + @${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/_omnicodesetsmodule.so.4.2 + @${STRIP_CMD} ${STAGEDIR}/${PYTHON_SITELIBDIR}/_omnisslTPmodule.so.4.2 +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR}/html @${MKDIR} ${STAGEDIR}${DOCSDIR}/tex ${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy.* ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/omniORBpy/* ${STAGEDIR}${DOCSDIR}/html ${INSTALL_DATA} ${WRKSRC}/doc/tex/* ${STAGEDIR}${DOCSDIR}/tex +.endif +.if ${PORT_OPTIONS:MEXAMPLES} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${FIND} . \ | ${CPIO} --quiet -pdum -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}${EXAMPLESDIR} - cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming/__init__.py',None,'CosNaming/__init__.pyc',True)" - cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('CosNaming__POA/__init__.py',None,'CosNaming__POA/__init__.pyc',True)" - cd ${STAGEDIR}${PYTHON_SITELIBDIR} && ${PYTHON_CMD} -c "import py_compile;py_compile.compile('omniidl_be/python.py',None,'omniidl_be/python.pyc',True)" +.endif .include Modified: head/devel/py-omniorb/distinfo ============================================================================== --- head/devel/py-omniorb/distinfo Tue Oct 7 19:54:16 2014 (r370394) +++ head/devel/py-omniorb/distinfo Tue Oct 7 20:14:21 2014 (r370395) @@ -1,2 +1,2 @@ -SHA256 (omniORBpy-3.7.tar.bz2) = 64ddd49581b4f5dde04b8ed80d81ae96fd7efb1f8f6c8075aaf56de9522c1136 -SIZE (omniORBpy-3.7.tar.bz2) = 610025 +SHA256 (omniORBpy-4.2.0.tar.bz2) = c82b3bafacbb93cfaace41765219155f2b24eb3781369bba0581feb1dc50fe5e +SIZE (omniORBpy-4.2.0.tar.bz2) = 653795 Modified: head/devel/py-omniorb/pkg-plist ============================================================================== --- head/devel/py-omniorb/pkg-plist Tue Oct 7 19:54:16 2014 (r370394) +++ head/devel/py-omniorb/pkg-plist Tue Oct 7 20:14:21 2014 (r370395) @@ -13,22 +13,27 @@ include/omniORBpy.h %%PYTHON_SITELIBDIR%%/PortableServer__POA.py %%PYTHON_SITELIBDIR%%/PortableServer__POA.pyc %%PYTHON_SITELIBDIR%%/_omniConnMgmtmodule.so -%%PYTHON_SITELIBDIR%%/_omniConnMgmtmodule.so.3 -%%PYTHON_SITELIBDIR%%/_omniConnMgmtmodule.so.3.%%SONUM%% +%%PYTHON_SITELIBDIR%%/_omniConnMgmtmodule.so.4 +%%PYTHON_SITELIBDIR%%/_omniConnMgmtmodule.so.4.%%SONUM%% +%%PYTHON_SITELIBDIR%%/_omniZIOPmodule.so +%%PYTHON_SITELIBDIR%%/_omniZIOPmodule.so.4 +%%PYTHON_SITELIBDIR%%/_omniZIOPmodule.so.4.%%SONUM%% %%PYTHON_SITELIBDIR%%/_omnicodesetsmodule.so -%%PYTHON_SITELIBDIR%%/_omnicodesetsmodule.so.3 -%%PYTHON_SITELIBDIR%%/_omnicodesetsmodule.so.3.%%SONUM%% +%%PYTHON_SITELIBDIR%%/_omnicodesetsmodule.so.4 +%%PYTHON_SITELIBDIR%%/_omnicodesetsmodule.so.4.%%SONUM%% %%PYTHON_SITELIBDIR%%/_omnipymodule.so -%%PYTHON_SITELIBDIR%%/_omnipymodule.so.3 -%%PYTHON_SITELIBDIR%%/_omnipymodule.so.3.%%SONUM%% +%%PYTHON_SITELIBDIR%%/_omnipymodule.so.4 +%%PYTHON_SITELIBDIR%%/_omnipymodule.so.4.%%SONUM%% %%PYTHON_SITELIBDIR%%/_omnisslTPmodule.so -%%PYTHON_SITELIBDIR%%/_omnisslTPmodule.so.3 -%%PYTHON_SITELIBDIR%%/_omnisslTPmodule.so.3.%%SONUM%% +%%PYTHON_SITELIBDIR%%/_omnisslTPmodule.so.4 +%%PYTHON_SITELIBDIR%%/_omnisslTPmodule.so.4.%%SONUM%% %%PYTHON_SITELIBDIR%%/omniORB.pth %%PYTHON_SITELIBDIR%%/omniORB/BiDirPolicy.py %%PYTHON_SITELIBDIR%%/omniORB/BiDirPolicy.pyc %%PYTHON_SITELIBDIR%%/omniORB/CORBA.py %%PYTHON_SITELIBDIR%%/omniORB/CORBA.pyc +%%PYTHON_SITELIBDIR%%/omniORB/Compression.py +%%PYTHON_SITELIBDIR%%/omniORB/Compression.pyc %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCollection/__init__.py %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCollection/__init__.pyc %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCollection__POA/__init__.py @@ -296,28 +301,44 @@ include/omniORBpy.h %%PYTHON_SITELIBDIR%%/omniORB/PortableServer__POA.pyc %%PYTHON_SITELIBDIR%%/omniORB/URI.py %%PYTHON_SITELIBDIR%%/omniORB/URI.pyc +%%PYTHON_SITELIBDIR%%/omniORB/ZIOP.py +%%PYTHON_SITELIBDIR%%/omniORB/ZIOP.pyc %%PYTHON_SITELIBDIR%%/omniORB/__init__.py %%PYTHON_SITELIBDIR%%/omniORB/__init__.pyc +%%PYTHON_SITELIBDIR%%/omniORB/ami.py +%%PYTHON_SITELIBDIR%%/omniORB/ami.pyc %%PYTHON_SITELIBDIR%%/omniORB/any.py %%PYTHON_SITELIBDIR%%/omniORB/any.pyc %%PYTHON_SITELIBDIR%%/omniORB/boxes_idl.py %%PYTHON_SITELIBDIR%%/omniORB/boxes_idl.pyc %%PYTHON_SITELIBDIR%%/omniORB/codesets.py %%PYTHON_SITELIBDIR%%/omniORB/codesets.pyc +%%PYTHON_SITELIBDIR%%/omniORB/compression_idl.py +%%PYTHON_SITELIBDIR%%/omniORB/compression_idl.pyc %%PYTHON_SITELIBDIR%%/omniORB/corbaidl_idl.py %%PYTHON_SITELIBDIR%%/omniORB/corbaidl_idl.pyc %%PYTHON_SITELIBDIR%%/omniORB/interceptors.py %%PYTHON_SITELIBDIR%%/omniORB/interceptors.pyc %%PYTHON_SITELIBDIR%%/omniORB/ir_idl.py %%PYTHON_SITELIBDIR%%/omniORB/ir_idl.pyc +%%PYTHON_SITELIBDIR%%/omniORB/messaging_idl.py +%%PYTHON_SITELIBDIR%%/omniORB/messaging_idl.pyc %%PYTHON_SITELIBDIR%%/omniORB/minorCodes.py %%PYTHON_SITELIBDIR%%/omniORB/minorCodes.pyc %%PYTHON_SITELIBDIR%%/omniORB/omniConnectionMgmt.py %%PYTHON_SITELIBDIR%%/omniORB/omniConnectionMgmt.pyc +%%PYTHON_SITELIBDIR%%/omniORB/omniPolicy.py +%%PYTHON_SITELIBDIR%%/omniORB/omniPolicy.pyc +%%PYTHON_SITELIBDIR%%/omniORB/omniZIOP.py +%%PYTHON_SITELIBDIR%%/omniORB/omniZIOP.pyc +%%PYTHON_SITELIBDIR%%/omniORB/pollable_idl.py +%%PYTHON_SITELIBDIR%%/omniORB/pollable_idl.pyc %%PYTHON_SITELIBDIR%%/omniORB/sslTP.py %%PYTHON_SITELIBDIR%%/omniORB/sslTP.pyc %%PYTHON_SITELIBDIR%%/omniORB/tcInternal.py %%PYTHON_SITELIBDIR%%/omniORB/tcInternal.pyc +%%PYTHON_SITELIBDIR%%/omniORB/ziop_idl.py +%%PYTHON_SITELIBDIR%%/omniORB/ziop_idl.pyc %%PYTHON_SITELIBDIR%%/omniidl_be/python.py %%PYTHON_SITELIBDIR%%/omniidl_be/python.pyc %%PORTDOCS%%%%DOCSDIR%%/html/contents_motif.gif @@ -336,10 +357,15 @@ include/omniORBpy.h %%PORTDOCS%%%%DOCSDIR%%/html/omniORBpy009.html %%PORTDOCS%%%%DOCSDIR%%/html/omniORBpy010.html %%PORTDOCS%%%%DOCSDIR%%/html/omniORBpy011.html +%%PORTDOCS%%%%DOCSDIR%%/html/omniORBpy012.html +%%PORTDOCS%%%%DOCSDIR%%/html/omniORBpy013.html %%PORTDOCS%%%%DOCSDIR%%/html/previous_motif.gif %%PORTDOCS%%%%DOCSDIR%%/omniORBpy.pdf %%PORTDOCS%%%%DOCSDIR%%/tex/omniORBpy.bib %%PORTDOCS%%%%DOCSDIR%%/tex/omniORBpy.tex +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ami/ami_callback.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ami/ami_poller.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ami/example_echo.idl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo.idl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo_clt.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo/echo_srv.py @@ -363,9 +389,6 @@ include/omniORBpy.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/servantactivator.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/servantlocator.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/poa/singlethread.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random/random.idl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random/random_clt.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/PerfTest.idl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/TypeTest.idl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/tests/pclient.py @@ -383,113 +406,5 @@ include/omniORBpy.h %%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/server.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/value1.idl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/valuetype/tests/value2.idl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/gauge.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/weather.py -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/weatherInfo.idl -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/weather/wserver.py -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/weather -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/valuetype/tests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/valuetype/simple -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/valuetype -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tictactoe -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/tests -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/random -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/poa -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/fortune -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/embed -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/echo -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%%/tex -%%PORTDOCS%%@dirrm %%DOCSDIR%%/html -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/TimeBase__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/TimeBase -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/RDITestTypes__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/RDITestTypes -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/LifeCycleService__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/LifeCycleService -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedNotifyComm__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedNotifyComm -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedNotifyChannelAdmin__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedNotifyChannelAdmin -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedEventComm__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedEventComm -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedEventChannelAdmin__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTypedEventChannelAdmin -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTrading__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTradingRepos__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTradingRepos -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTradingDynamic__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTradingDynamic -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTrading -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTimerEvent__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTimerEvent -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTime__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosTime -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosStream__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosStream -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosRelationships__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosRelationships -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosReference__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosReference -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosQuery__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosQueryCollection__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosQueryCollection -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosQuery -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPropertyService__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPropertyService -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePO__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePOM__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePOM -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePO -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePID__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePID -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePDS__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePDS_DA__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePDS_DA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistencePDS -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistenceDS_CLI__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistenceDS_CLI -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistenceDDO__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosPersistenceDDO -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosObjectIdentity__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosObjectIdentity -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotifyFilter__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotifyFilter -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotifyComm__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotifyComm -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotifyChannelAdmin__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotifyChannelAdmin -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotification__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNotification -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNaming__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosNaming -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosLifeCycle__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosLifeCycleReference__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosLifeCycleReference -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosLifeCycleContainment__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosLifeCycleContainment -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosLifeCycle -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosGraphs__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosGraphs -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosExternalization__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosExternalizationReference__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosExternalizationReference -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosExternalizationContainment__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosExternalizationContainment -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosExternalization -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosEventComm__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosEventComm -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosEventChannelAdmin__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosEventChannelAdmin -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosContainment__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosContainment -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCompoundLifeCycle__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCompoundLifeCycle -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCollection__POA -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS/CosCollection -@dirrm %%PYTHON_SITELIBDIR%%/omniORB/COS -@dirrm %%PYTHON_SITELIBDIR%%/omniORB -@dirrm %%PYTHON_SITELIBDIR%%/CosNaming__POA -@dirrm %%PYTHON_SITELIBDIR%%/CosNaming +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ziop/ziop_clt.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ziop/ziop_srv.py From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 20:27:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4566484E; Tue, 7 Oct 2014 20:27:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 26452B0D; Tue, 7 Oct 2014 20:27:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97KRUeY096431; Tue, 7 Oct 2014 20:27:30 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97KRTS4096429; Tue, 7 Oct 2014 20:27:29 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410072027.s97KRTS4096429@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 7 Oct 2014 20:27:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370396 - head/emulators/hyperv-is X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 20:27:30 -0000 Author: marino Date: Tue Oct 7 20:27:29 2014 New Revision: 370396 URL: https://svnweb.freebsd.org/changeset/ports/370396 QAT: https://qat.redports.org/buildarchive/r370396/ Log: emulators/hyperv-is: Use kmod, support non-default prefix USES= kmod correctly installs the kernel modules at /boot/modules instead of /boot/kernel. Also use the post-install target to support prefixes other than /usr/local. Suggested by: bapt and bdrewery Modified: head/emulators/hyperv-is/Makefile head/emulators/hyperv-is/pkg-plist Modified: head/emulators/hyperv-is/Makefile ============================================================================== --- head/emulators/hyperv-is/Makefile Tue Oct 7 20:14:21 2014 (r370395) +++ head/emulators/hyperv-is/Makefile Tue Oct 7 20:27:29 2014 (r370396) @@ -2,8 +2,8 @@ PORTNAME= hyperv-is PORTVERSION= 1.1 -PORTREVISION= 1 -CATEGORIES= emulators kld +PORTREVISION= 2 +CATEGORIES= emulators MASTER_SITES= https://github.com/${MSLINK}/ DISTNAME= ${DNAME} @@ -12,7 +12,7 @@ COMMENT= FreeBSD Integration Service on ONLY_FOR_ARCHS= amd64 i386 -USES+= uidfix +USES= kmod uidfix BIS= ${PORTVERSION} MSBASE= FreeBSDonHyper-V/Hyperv-Ports/raw/hyperv-is-master MSLINK= ${MSBASE}/BIS-${BIS}/FreeBSD-${OSREL}/ports @@ -44,7 +44,7 @@ FILE_100= hv-kvp-${BIS} DNAME= ${FILE_${OSREL:S/.//}} .if empty(DNAME) -IGNORE= OSREL ${OSREL} not supported +IGNORE?= OSREL ${OSREL} not supported .endif post-patch: @@ -52,13 +52,15 @@ post-patch: ${WRKSRC}/etc/rc.d/hv_kvpd pre-install: - @${MKDIR} ${STAGEDIR}/boot/kernel \ + @${MKDIR} ${STAGEDIR}${PREFIX} \ ${STAGEDIR}/etc/rc.d \ ${STAGEDIR}/usr/local/hyperv/scripts post-install: ${RM} ${STAGEDIR}/boot/kernel/linker.hints ${MV} ${STAGEDIR}/etc/rc.d/* ${STAGEDIR}${PREFIX}/etc/rc.d - +.if ${PREFIX} != /usr/local + ${MV} ${STAGEDIR}/usr/local/* ${STAGEDIR}${PREFIX} +.endif .include Modified: head/emulators/hyperv-is/pkg-plist ============================================================================== --- head/emulators/hyperv-is/pkg-plist Tue Oct 7 20:14:21 2014 (r370395) +++ head/emulators/hyperv-is/pkg-plist Tue Oct 7 20:27:29 2014 (r370396) @@ -1,15 +1,15 @@ hyperv/scripts/hv_get_dhcp_info hyperv/scripts/hv_get_dns_info hyperv/scripts/hv_set_ifconfig -%%A%%/boot/kernel/hv_ata_pci_disengage.ko -%%A%%/boot/kernel/hv_netvsc.ko -%%A%%/boot/kernel/hv_storvsc.ko -%%A%%/boot/kernel/hv_utils.ko -%%A%%/boot/kernel/hv_vmbus.ko -%%B%%/boot/kernel/hv_kvp.ko +%%A%%/boot/modules/hv_ata_pci_disengage.ko +%%A%%/boot/modules/hv_netvsc.ko +%%A%%/boot/modules/hv_storvsc.ko +%%A%%/boot/modules/hv_utils.ko +%%A%%/boot/modules/hv_vmbus.ko +%%B%%/boot/modules/hv_kvp.ko etc/rc.d/hv_kvpd -%%A%%man/man1/hyperv-is.1.gz %%B%%sbin/hv_kvp_daemon +%%A%%man/man1/hyperv-is.1.gz %%A%%man/man4/hv_ata_pci_disengage.4.gz man/man4/hv_kvp.4.gz %%A%%man/man4/hv_netvsc.4.gz From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 20:36:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4B04A34 for ; Tue, 7 Oct 2014 20:36:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C2B8C1F for ; Tue, 7 Oct 2014 20:36:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s97Kaq0t070807 for ; Tue, 7 Oct 2014 20:36:52 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s97KapW9070792 for svn-ports-head@freebsd.org; Tue, 7 Oct 2014 20:36:51 GMT (envelope-from bdrewery) Received: (qmail 93929 invoked from network); 7 Oct 2014 15:36:50 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 15:36:50 -0500 Message-ID: <54344EDB.3070202@FreeBSD.org> Date: Tue, 07 Oct 2014 15:36:43 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: John Marino , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370396 - head/emulators/hyperv-is References: <201410072027.s97KRTS4096429@svn.freebsd.org> In-Reply-To: <201410072027.s97KRTS4096429@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OucSfAclii8dAGp4Ji9ulb1Lmoc0NQaUk" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 20:36:52 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --OucSfAclii8dAGp4Ji9ulb1Lmoc0NQaUk Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 3:27 PM, John Marino wrote: > Author: marino > Date: Tue Oct 7 20:27:29 2014 > New Revision: 370396 > URL: https://svnweb.freebsd.org/changeset/ports/370396 > QAT: https://qat.redports.org/buildarchive/r370396/ >=20 > Log: > emulators/hyperv-is: Use kmod, support non-default prefix > =20 > USES=3D kmod correctly installs the kernel modules at /boot/modules > instead of /boot/kernel. Also use the post-install target to support= > prefixes other than /usr/local. > =20 Thanks! --=20 Regards, Bryan Drewery --OucSfAclii8dAGp4Ji9ulb1Lmoc0NQaUk Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNE7bAAoJEDXXcbtuRpfPXGMH/iSja1rfz4BpBq/NAFG4XRZm jqKRgjkbb0TTRZtviJ3BXl/8YpV20niqDmPDNzqCdAjHg+lcstKIenK+clqEFwjm I6PCnnOAqoqK7G3X6+Ulr428Wh4DueUUfxswr5QaYudKvwDT+6wgECKdPIipZmuM DIjhzmKL6Bwcmh5mM80JDUdfLu5K7qnYwnQ+7K3rBf5XYrhJbTm1hTK/dPz03rhO vdJTGIWZm/GlK0d1JBRQCnLXi6VbPtuzZCN6Ri9+j/iOm4UiE5yHQiLoP33xRSIc WKvsju7bJn5jTTouK95mO21QQP2Njy2pvN0PczRL7m4S28bT1XPy6uxuRhkkfUM= =wJNF -----END PGP SIGNATURE----- --OucSfAclii8dAGp4Ji9ulb1Lmoc0NQaUk-- From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 20:40:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 08EEBB83; Tue, 7 Oct 2014 20:40:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF224C42; Tue, 7 Oct 2014 20:40:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97KeLsl001770; Tue, 7 Oct 2014 20:40:21 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97KeLgl001768; Tue, 7 Oct 2014 20:40:21 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410072040.s97KeLgl001768@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 7 Oct 2014 20:40:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370397 - head/graphics/py-pillow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 20:40:22 -0000 Author: wg Date: Tue Oct 7 20:40:20 2014 New Revision: 370397 URL: https://svnweb.freebsd.org/changeset/ports/370397 QAT: https://qat.redports.org/buildarchive/r370397/ Log: graphics/py-pillow: fix build of tk extension - Update to 2.6.0 - USES python PR: 193958 Submitted by: mva Approved by: koobs (maintainer) Modified: head/graphics/py-pillow/Makefile head/graphics/py-pillow/distinfo Modified: head/graphics/py-pillow/Makefile ============================================================================== --- head/graphics/py-pillow/Makefile Tue Oct 7 20:27:29 2014 (r370396) +++ head/graphics/py-pillow/Makefile Tue Oct 7 20:40:20 2014 (r370397) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pillow -PORTVERSION= 2.5.1 +PORTVERSION= 2.6.0 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${PORTNAME:C/p/P/}-${PORTVERSION} @@ -29,15 +29,19 @@ TKINTER_USES= tk:build WEBP_LIB_DEPENDS= libwebp.so:${PORTSDIR}/graphics/webp USE_GITHUB= yes -USE_PYTHON= yes -USE_PYDISTUTILS= yes - -PYDISTUTILS_AUTOPLIST= yes -PYDISTUTILS_BUILD_TARGET= build_ext +USES= python +USE_PYTHON= autoplist concurrent distutils +PYDISTUTILS_SETUP= ${PYSETUP} +PYDISTUTILS_BUILD_TARGET= build build_py build_ext + +# we have to build and install everything in a single run, +# otherwise pillow's build_ext extension tries to be clever +# and messes up standard distutils behaviour... +NO_BUILD= yes GH_ACCOUNT= python-pillow GH_PROJECT= ${PORTNAME:C/p/P/} -GH_COMMIT= 1ab78b8 +GH_COMMIT= 9634e43 CONFLICTS_INSTALL= py*-imaging-* @@ -86,6 +90,11 @@ PYDISTUTILS_BUILDARGS+= --enable-webp PYDISTUTILS_BUILDARGS+= --disable-webp .endif +do-install: + @(cd ${INSTALL_WRKSRC}; ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} \ + ${PYDISTUTILS_SETUP} ${PYDISTUTILS_BUILD_TARGET} ${PYDISTUTILS_BUILDARGS} \ + ${PYDISTUTILS_INSTALL_TARGET} ${PYDISTUTILS_INSTALLARGS}) + regression-test: extract @cd ${WRKSRC} && \ ${PYTHON_CMD} ${PYSETUP} build_ext -i && \ Modified: head/graphics/py-pillow/distinfo ============================================================================== --- head/graphics/py-pillow/distinfo Tue Oct 7 20:27:29 2014 (r370396) +++ head/graphics/py-pillow/distinfo Tue Oct 7 20:40:20 2014 (r370397) @@ -1,2 +1,2 @@ -SHA256 (Pillow-2.5.1.tar.gz) = e7934f86705a7054e3c117ab1295d612b2aa34f4cfa4d61bd88e544e9a544a13 -SIZE (Pillow-2.5.1.tar.gz) = 6528250 +SHA256 (Pillow-2.6.0.tar.gz) = ffa1b214027acd5a62a38fd7851ade75a2a6d96957261f7aee932cf7f6f6db3b +SIZE (Pillow-2.6.0.tar.gz) = 7235577 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 21:34:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F17B6AB0; Tue, 7 Oct 2014 21:34:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDBE125B; Tue, 7 Oct 2014 21:34:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97LYk0Q030489; Tue, 7 Oct 2014 21:34:46 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97LYkQa030487; Tue, 7 Oct 2014 21:34:46 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410072134.s97LYkQa030487@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 7 Oct 2014 21:34:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370399 - head/science/paraview X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 21:34:47 -0000 Author: thierry Date: Tue Oct 7 21:34:45 2014 New Revision: 370399 URL: https://svnweb.freebsd.org/changeset/ports/370399 QAT: https://qat.redports.org/buildarchive/r370399/ Log: Force freetype's headers detection. Submitted by: maintainer Modified: head/science/paraview/Makefile head/science/paraview/pkg-plist Modified: head/science/paraview/Makefile ============================================================================== --- head/science/paraview/Makefile Tue Oct 7 21:04:18 2014 (r370398) +++ head/science/paraview/Makefile Tue Oct 7 21:34:45 2014 (r370399) @@ -3,7 +3,7 @@ PORTNAME= paraview PORTVERSION= 4.1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= science graphics MASTER_SITES= http://www.paraview.org/files/v${VERMAJORMINOR}/ DISTNAME= ParaView-v${PORTVERSION}-source @@ -40,9 +40,8 @@ USE_QT4= qmake_build moc_build rcc_build USE_GL= yes USE_XORG= x11 xt xext ice xdmcp xau xcb xfixes xdamage xxf86vm xrender sm USE_LDCONFIG= yes -USE_PYTHON= yes USE_GSTREAMER= yes -USES= cmake:outsource gmake execinfo shebangfix +USES= cmake:outsource execinfo gmake python shebangfix CMAKE_ARGS+= -DBUILD_SHARED_LIBS="ON" \ -DVTK_USE_SYSTEM_PNG="ON" \ @@ -56,7 +55,8 @@ CMAKE_ARGS+= -DBUILD_SHARED_LIBS="ON" \ -DPARAVIEW_ENABLE_PYTHON:BOOL="ON" \ -DPARAVIEW_ENABLE_FFMPEG:BOOL="OFF" \ -DBUILD_TESTING:BOOL="OFF" \ - -DExternalData_OBJECT_STORES="${WRKDIR}/VTK/ExternalData/MD5" + -DExternalData_OBJECT_STORES="${WRKDIR}/VTK/ExternalData/MD5" \ + -DFREETYPE_INCLUDE_DIRS="${LOCALBASE}/include/freetype2" MAKE_ENV= XDG_CONFIG_HOME=${WRKDIR} SHEBANG_FILES= Catalyst/catalyze.py VTK/Examples/SearchScript.sh \ Modified: head/science/paraview/pkg-plist ============================================================================== --- head/science/paraview/pkg-plist Tue Oct 7 21:04:18 2014 (r370398) +++ head/science/paraview/pkg-plist Tue Oct 7 21:34:45 2014 (r370399) @@ -4091,148 +4091,3 @@ share/paraview-%%VERMAJORMINOR%%/www/lib share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/TreeWidget/vtkweb-widget-tree.css share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/TreeWidget/vtkweb-widget-tree.js share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/TreeWidget/vtkweb-widget-tree.tpl -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/TreeWidget/resources/pipeline -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/TreeWidget/resources -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/TreeWidget -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/FileBrowser/resources -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/FileBrowser -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/ChartWidget -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets/CatalystBrowser -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/widgets -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/js -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview/toolbar/viewport -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview/toolbar/vcr -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview/toolbar/connect -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview/toolbar/common -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview/toolbar -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview/pipeline -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css/paraview -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/css -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib/core -@dirrm share/paraview-%%VERMAJORMINOR%%/www/lib -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/rickshaw -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/pure -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/nvd3 -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/jscolor -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/jquery-ui/images -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/jquery-ui -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/fontello/font -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/fontello/css -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/fontello -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/d3 -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/core -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/bootstrap/js -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/bootstrap/img -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/bootstrap/css -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext/bootstrap -@dirrm share/paraview-%%VERMAJORMINOR%%/www/ext -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/Visualizer -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/Parallel/js -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/Parallel -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/LiveArticles/images -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/LiveArticles -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/FileViewer -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/DataProber/jclv -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/DataProber/icons -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps/DataProber -@dirrm share/paraview-%%VERMAJORMINOR%%/www/apps -@dirrm share/paraview-%%VERMAJORMINOR%%/www -@dirrm share/paraview-%%VERMAJORMINOR%%/vtkDomainsChemistry -@dirrm share/paraview-%%VERMAJORMINOR%% -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/zope/interface/tests -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/zope/interface/common/tests -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/zope/interface/common -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/zope/interface -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/zope -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/wx -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/web -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/util -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/tk -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/qt4 -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk/gtk -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/vtk -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words/xish -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words/protocols/jabber -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words/protocols -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words/im -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/words -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/web/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/web/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/web/_auth -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/web -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/trial/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/trial/_dist/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/trial/_dist -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/trial -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/tap -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/spread/ui -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/spread -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/scripts/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/scripts -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/runner/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/runner/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/runner -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/python -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/protocols/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/protocols/mice -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/protocols/gps -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/protocols -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/plugins -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/persisted/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/persisted -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/pair/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/pair/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/pair -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/news/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/news/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/news -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/names/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/names/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/names -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/manhole/ui/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/manhole/ui -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/manhole/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/manhole -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/mail/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/mail/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/mail/scripts -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/mail -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/lore/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/lore/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/lore/scripts -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/lore -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/internet/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/internet/iocpreactor -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/internet -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/enterprise -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/cred -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/ui -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/topfiles -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/ssh -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/scripts -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/openssh_compat -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/insults -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch/client -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/conch -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/application/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted/application -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/twisted -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/web -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk/wx -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk/util -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk/tk -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk/test -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk/qt4 -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk/gtk -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/vtk -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview/demos -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/paraview -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages/autobahn -@dirrm lib/paraview-%%VERMAJORMINOR%%/site-packages -@dirrm lib/paraview-%%VERMAJORMINOR%% From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 21:54:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C004811F; Tue, 7 Oct 2014 21:54:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC1076B9; Tue, 7 Oct 2014 21:54:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97LsvOQ040358; Tue, 7 Oct 2014 21:54:57 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97LsvOs040353; Tue, 7 Oct 2014 21:54:57 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201410072154.s97LsvOs040353@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 7 Oct 2014 21:54:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370401 - head/math/octave-forge-image X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 21:54:57 -0000 Author: stephen Date: Tue Oct 7 21:54:56 2014 New Revision: 370401 URL: https://svnweb.freebsd.org/changeset/ports/370401 QAT: https://qat.redports.org/buildarchive/r370401/ Log: - Update to 2.2.2. Modified: head/math/octave-forge-image/Makefile head/math/octave-forge-image/distinfo Modified: head/math/octave-forge-image/Makefile ============================================================================== --- head/math/octave-forge-image/Makefile Tue Oct 7 21:41:32 2014 (r370400) +++ head/math/octave-forge-image/Makefile Tue Oct 7 21:54:56 2014 (r370401) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-image -PORTVERSION= 2.2.1 -PORTREVISION= 2 +PORTVERSION= 2.2.2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-image/distinfo ============================================================================== --- head/math/octave-forge-image/distinfo Tue Oct 7 21:41:32 2014 (r370400) +++ head/math/octave-forge-image/distinfo Tue Oct 7 21:54:56 2014 (r370401) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/image-2.2.1.tar.gz) = 857cf96b5579962cc836805bdb92162fe6cdb17a90c9b6c9b9e16ccaf79cafe1 -SIZE (octave-forge/image-2.2.1.tar.gz) = 266790 +SHA256 (octave-forge/image-2.2.2.tar.gz) = c0938eeb1ab98d3795464f079c1b435a00d2d660d007b85c0503cd5286db34b4 +SIZE (octave-forge/image-2.2.2.tar.gz) = 229953 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 22:06:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 987B875F; Tue, 7 Oct 2014 22:06:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8490B80E; Tue, 7 Oct 2014 22:06:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97M6gn5045525; Tue, 7 Oct 2014 22:06:42 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97M6gjU045523; Tue, 7 Oct 2014 22:06:42 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201410072206.s97M6gjU045523@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Tue, 7 Oct 2014 22:06:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370402 - head/math/octave-forge-ltfat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 22:06:42 -0000 Author: stephen Date: Tue Oct 7 22:06:41 2014 New Revision: 370402 URL: https://svnweb.freebsd.org/changeset/ports/370402 QAT: https://qat.redports.org/buildarchive/r370402/ Log: - Update to 2.0.0. Modified: head/math/octave-forge-ltfat/Makefile head/math/octave-forge-ltfat/distinfo Modified: head/math/octave-forge-ltfat/Makefile ============================================================================== --- head/math/octave-forge-ltfat/Makefile Tue Oct 7 21:54:56 2014 (r370401) +++ head/math/octave-forge-ltfat/Makefile Tue Oct 7 22:06:41 2014 (r370402) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-ltfat -PORTVERSION= 1.4.4 -PORTREVISION= 2 +PORTVERSION= 2.0.0 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-ltfat/distinfo ============================================================================== --- head/math/octave-forge-ltfat/distinfo Tue Oct 7 21:54:56 2014 (r370401) +++ head/math/octave-forge-ltfat/distinfo Tue Oct 7 22:06:41 2014 (r370402) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/ltfat-1.4.4.tar.gz) = 228d223d9f70117e7e5c8e41fa4c076150b17bd3c72a5b364caa3b56e5fb2c9d -SIZE (octave-forge/ltfat-1.4.4.tar.gz) = 2510355 +SHA256 (octave-forge/ltfat-2.0.0.tar.gz) = 392a2a80648a1c3f9cd0620ca9910382f2977cb34e7dc21fde7820580afa40c0 +SIZE (octave-forge/ltfat-2.0.0.tar.gz) = 2551342 From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 22:28:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A6E7C29; Tue, 7 Oct 2014 22:28:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06F579EE; Tue, 7 Oct 2014 22:28:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97MSOOu055483; Tue, 7 Oct 2014 22:28:24 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97MSOhp055482; Tue, 7 Oct 2014 22:28:24 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410072228.s97MSOhp055482@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 22:28:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370403 - head/www/py-django-crispy-forms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 22:28:25 -0000 Author: antoine Date: Tue Oct 7 22:28:24 2014 New Revision: 370403 URL: https://svnweb.freebsd.org/changeset/ports/370403 QAT: https://qat.redports.org/buildarchive/r370403/ Log: Unbreak Modified: head/www/py-django-crispy-forms/Makefile Modified: head/www/py-django-crispy-forms/Makefile ============================================================================== --- head/www/py-django-crispy-forms/Makefile Tue Oct 7 22:06:41 2014 (r370402) +++ head/www/py-django-crispy-forms/Makefile Tue Oct 7 22:28:24 2014 (r370403) @@ -1,7 +1,7 @@ # Created by: Johannes Meixner # $FreeBSD$ -PORTNAME= django-crispy-forms +PORTNAME= crispy-forms PORTVERSION= 1.4.0 PORTREVISION= 1 CATEGORIES= www python @@ -16,8 +16,7 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django16>=1.6:${PORTSDIR}/www/py-django16 -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 22:30:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 58075D23; Tue, 7 Oct 2014 22:30:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43206A00; Tue, 7 Oct 2014 22:30:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97MUdMs057896; Tue, 7 Oct 2014 22:30:39 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97MUbHc057889; Tue, 7 Oct 2014 22:30:37 GMT (envelope-from db@FreeBSD.org) Message-Id: <201410072230.s97MUbHc057889@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Tue, 7 Oct 2014 22:30:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370404 - in head/comms/wspr: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 22:30:39 -0000 Author: db Date: Tue Oct 7 22:30:36 2014 New Revision: 370404 URL: https://svnweb.freebsd.org/changeset/ports/370404 QAT: https://qat.redports.org/buildarchive/r370404/ Log: - update to the version 4 branch - add LICENSE Added: head/comms/wspr/files/patch-configure.ac (contents, props changed) head/comms/wspr/files/wspr.sh.in (contents, props changed) Deleted: head/comms/wspr/files/wspr Modified: head/comms/wspr/Makefile head/comms/wspr/Makefile.svn_rev (contents, props changed) head/comms/wspr/distinfo (contents, props changed) head/comms/wspr/files/patch-Makefile.in head/comms/wspr/pkg-plist (contents, props changed) Modified: head/comms/wspr/Makefile ============================================================================== --- head/comms/wspr/Makefile Tue Oct 7 22:28:24 2014 (r370403) +++ head/comms/wspr/Makefile Tue Oct 7 22:30:36 2014 (r370404) @@ -1,9 +1,7 @@ -# Created by: Diane Bruce # $FreeBSD$ PORTNAME= wspr DISTVERSION= ${VERSION}.r${SVN_REV} -PORTREVISION= 9 CATEGORIES= comms hamradio MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= db @@ -12,47 +10,35 @@ DISTNAME= wspr-r${SVN_REV} MAINTAINER= hamradio@FreeBSD.org COMMENT= Weak signal for HF ham radio communication package -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \ - ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow +LICENSE= GPLv3 + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYTHON_LIBDIR}/tkinter:${PORTSDIR}/x11-toolkits/py-tkinter \ + ${PYTHON_SITELIBDIR}/PIL:${PORTSDIR}/graphics/py-pillow \ + ${PYTHON_SITELIBDIR}/scipy:${PORTSDIR}/science/py-scipy \ + ${LOCALBASE}/lib/portaudio2/libportaudio.so:${PORTSDIR}/audio/portaudio2 LIB_DEPENDS= libhamlib.so:${PORTSDIR}/comms/hamlib \ libfftw3f.so:${PORTSDIR}/math/fftw3-float \ libsamplerate.so:${PORTSDIR}/audio/libsamplerate -BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/scipy:${PORTSDIR}/science/py-scipy \ - ${LOCALBASE}/lib/portaudio2/libportaudio.so:${PORTSDIR}/audio/portaudio2 \ - ${PYNUMPY} -USES= fortran gmake libtool python tar:bzip2 -ALL_TARGET= build +DISABLE_MAKE_JOBS= yes +USE_AUTOTOOLS= autoconf +USES= fortran gmake libtool tar:bzip2 python:3.3 GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-gfortran --prefix=${STAGEDIR}${LOCALBASE} \ - --with-portaudio-include-dir=${LOCALBASE}/include/portaudio2 \ - --with-portaudio-lib-dir=${LOCALBASE}/lib/portaudio2 -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +CONFIGURE_ARGS= --with-gfortran=${FC} \ + --with-f2py=f2py-${PYTHON_VER} \ + --with-python3=${PYTHON_CMD} MAKE_ENV+= PYTHONUSERBASE=${STAGEDIR}${PYTHONBASE} -PLIST_SUB= PYVER=${PYTHON_VERSION:S/python//} \ - VERSION=${VERSION} -VERSION= 3.00 - -OPTIONS_DEFINE= DOCS +VERSION= 4.00 .include -post-configure: - @${REINPLACE_CMD} -e 's|%%DESTDIR%%|${STAGEDIR}|' ${WRKSRC}/Makefile - @cp ${FILESDIR}/wspr ${WRKSRC} - -post-build: - (cd ${STAGEDIR}${PREFIX} \ - && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ - -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;}) - ${MKDIR} ${STAGEDIR}${DOCSDIR} -.for d in ${WRKSRC}/LICENSE.TXT ${WRKSRC}/WSPR_Announcement.TXT \ - ${WRKSRC}/WSPR0_Instructions.TXT ${WRKSRC}/WSPR_Quick_Start.TXT \ - ${WRKSRC}/supported_rigs.txt - ${INSTALL_DATA} ${WRKSRC}/${d} ${STAGEDIR}${DOCSDIR} -.endfor +pre-configure: + @${CP} ${FILESDIR}/wspr.sh.in ${WRKSRC} + +post-install: .if defined(BOOTSTRAP) -SVN_REV!= svn info http://svn.code.sf.net/p/wsjt/code/branches/wspr | ${GREP} Revision | cut -d' ' -f2 +#portlint freaks over this but it's only for dev ignore. +SVN_REV!= svn info svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr | ${GREP} Revision | cut -d' ' -f2 .else .include "Makefile.svn_rev" .endif @@ -62,7 +48,7 @@ FETCH_DEPENDS+= svn:${PORTSDIR}/devel/su do-fetch: ${MKDIR} ${WRKDIR} svn export -r ${SVN_REV} \ - http://svn.code.sf.net/p/wsjt/code/branches/wspr ${WRKDIR}/wspr-r${SVN_REV} + svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr ${WRKDIR}/wspr-r${SVN_REV} cd ${WRKDIR};rm -f ${DISTNAME}/*.a ${DISTNAME}/*.lib ${DISTNAME}/*.dll;\ tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} echo "SVN_REV= ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev Modified: head/comms/wspr/Makefile.svn_rev ============================================================================== --- head/comms/wspr/Makefile.svn_rev Tue Oct 7 22:28:24 2014 (r370403) +++ head/comms/wspr/Makefile.svn_rev Tue Oct 7 22:30:36 2014 (r370404) @@ -1 +1 @@ -SVN_REV= 2511 +SVN_REV= 4198 Modified: head/comms/wspr/distinfo ============================================================================== --- head/comms/wspr/distinfo Tue Oct 7 22:28:24 2014 (r370403) +++ head/comms/wspr/distinfo Tue Oct 7 22:30:36 2014 (r370404) @@ -1,2 +1,2 @@ -SHA256 (wspr-r2511.tar.bz2) = f7fa3e81431867418916e327317a05da2986def9220ad6173ff6e012fe91fb80 -SIZE (wspr-r2511.tar.bz2) = 320419 +SHA256 (wspr-r4198.tar.bz2) = 8ca522b52da16bd18568977d58aad85dcb771d3994136e374e4fd5ffe9fb350a +SIZE (wspr-r4198.tar.bz2) = 4617738 Modified: head/comms/wspr/files/patch-Makefile.in ============================================================================== --- head/comms/wspr/files/patch-Makefile.in Tue Oct 7 22:28:24 2014 (r370403) +++ head/comms/wspr/files/patch-Makefile.in Tue Oct 7 22:30:36 2014 (r370404) @@ -1,50 +1,127 @@ ---- Makefile.in.orig 2012-01-25 09:30:23.000000000 -0500 -+++ Makefile.in 2014-06-26 20:50:27.000000000 -0400 -@@ -8,6 +8,7 @@ - CPPFLAGS = @CPPFLAGS@ - CFLAGS = @CFLAGS@ - PREFIX = @PREFIX@ -+DESTDIR = %%DESTDIR%% - # ${CFLAGS}# WSPR specific C flags - CFLAGS += -DBIGSYM=1 -fPIC - DEFS = @DEFS@ -@@ -90,11 +91,16 @@ - - OBJS2F77 = ${SRCS2F77:.f=.o} deep65.o - --SRCS2C = padevsub.c start_threads.c sound.c gmtime2.c ptt_unix.c \ -+SRCS2C = start_threads.c sound.c gmtime2.c ptt_unix.c \ - nhash.c fthread.c - OBJS2C = ${SRCS2C:.c=.o} - -+padevsub.o: padevsub.c -+ ${CC} ${CPPFLAGS} ${CFLAGS} -c padevsub.c -+ - WsprMod/w.so: ${OBJS2C} $(SRCS2C) $(SRCS2F90) $(SRCS2F77) acom1.f90 -+ echo DESTDIR = ${DESTDIR} -+ echo PREFIX = ${PREFIX} - ${F2PY} -c --quiet --noopt --debug -m w \ - --f77flags="${FFLAGS}" --f90flags="${FFLAGS}" \ - --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \ -@@ -102,8 +108,9 @@ - ${CPPFLAGS} ${LDFLAGS} ${LIBS} \ - only: $(F2PYONLY) : \ - $(SRCS2F90) $(SRCS2F77) $(SRCS2C) -- ${MKDIR} -p build/lib/WsprMod - ${MV} w.so WsprMod/w.so -+ ${PYTHON} setup.py install --prefix=${DESTDIR}${PREFIX} -+# ${PYTHON} setup.py build_py - - fmt: fmt.f90 fil1.f90 four2a.f peakup.f db.f sound.o - $(FC) -o fmt fmt.f90 fil1.f90 four2a.f peakup.f db.f \ -@@ -140,9 +147,7 @@ - $(FC) -o wwv $(FFLAGS) $(LDFLAGS) $(OBJS6) -lportaudio -lsamplerate -lfftw3f - - install: WsprMod/w.so -- ${RM} -rf build/ -- ${PYTHON} setup.py install -- ${INSTALL} wspr ${PREFIX}/bin -+ ${INSTALL} wspr ${DESTDIR}${PREFIX}/bin - - deb: wspr.py WsprMod/w.so WsprMod/g.py WsprMod/__init__.py \ - WsprMod/advanced.py \ +--- Makefile.in.orig 2014-06-20 18:58:03.000000000 -0400 ++++ Makefile.in 2014-07-24 16:14:06.000000000 -0400 +@@ -25,7 +25,7 @@ + MKDIR := @MKDIR@ + + # Install locations +-INATALL := install ++INSTALL := install + BINDIR := @BINDIR@ + DOCDIR := @DOCDIR@ + HOMEDIR := @HOMEDIR@ +@@ -50,6 +50,8 @@ + CFLAGS += @CFLAGS@ + FFLAGS += @FFLAGS@ + FCOPT += @FCOPT@ ++PORTAUDIO_INCLUDE = @PORTAUDIO_INCLUDE@ ++PORTAUDIO_LIBDIR = @PORTAUDIO_LIBDIR@ + + # Config Definitions + DEFS := @DEFS@ +@@ -71,24 +73,24 @@ + + # Default Rules + %.o: %.c +- ${CC} ${CPPFLAGS} ${CFLAGS} -c $< ++ ${CC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${CPPFLAGS} -c $< + %.o: %.f +- ${FC} ${FFLAGS} -c $< ++ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} -c $< + %.o: %.F +- ${FC} ${FFLAGS} -c $< ++ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} -c $< + %.o: %.f90 +- ${FC} ${FFLAGS} -c $< ++ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} -c $< + %.o: %.F90 +- ${FC} ${FFLAGS} -c $< ++ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} -c $< + + # Objects + OBJS1 = wspr0.o wspr0init.o wspr0_rx.o wspr0_tx.o thnix_stub.o + + wspr0: ${OBJS1} +- ${FC} ${FFLAGS} -o wspr0 ${FFLAGS} ${OBJS1} libwspr.a -lfftw3f -lportaudio ++ ${FC} ${PORTAUDIO_LIBDIR} ${FFLAGS} ${LDFLAGS} -o wspr0 ${FFLAGS} ${OBJS1} libwspr.a -lfftw3f -lportaudio + + wsprcode: wsprcode.o thnix_stub.o +- ${FC} ${FFLAGS} -o wsprcode wsprcode.o thnix_stub.o libwspr.a -pthread ++ ${FC} ${PORTAUDIO_INCLUDE} ${FFLAGS} -o wsprcode wsprcode.o thnix_stub.o libwspr.a -pthread + + OBJS3 = azdist.o ccf2.o chklevel.o db.o decode.o decode162.o deg2grid.o \ + encode232.o fano232.o fchisq.o fil1.o flat3.o four2a.o\ +@@ -105,21 +107,22 @@ + + # Build Library: libwspr.a + libwspr.a: ${OBJS3} acom1.f90 acom2.f90 +- ${AR} cr libwspr.a ${OBJS3} + ranlib libwspr.a ++ ar cr libwspr.a ${OBJS3} ++# ${AR} cr libwspr.a ${OBJS3} + + # Build FMT Applications + fmtest: fmtest.f90 libwspr.a +- ${FC} ${FFLAGS} -o fmtest fmtest.f90 libwspr.a -lfftw3f -lportaudio ++ ${FC} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fmtest fmtest.f90 libwspr.a -lfftw3f -lportaudio + + fmtave: fmtave.f90 +- ${FC} ${FFLAGS} -o fmtave fmtave.f90 ++ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fmtave fmtave.f90 + + fcal: fcal.f90 +- ${FC} ${FFLAGS} -o fcal fcal.f90 ++ ${FC} ${PORTAUDIO_INCLUDE} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fcal fcal.f90 + + fmeasure: fmeasure.f90 +- ${FC} ${FFLAGS} -o fmeasure fmeasure.f90 ++ ${FC} ${PORTAUIO_INCLUDE} ${CFLAGS} ${FFLAGS} ${PORTAUDIO_LIBDIR} ${LDFLAGS} -o fmeasure fmeasure.f90 + + # SRC for w.so + F2PYSRCS = wspr1.f90 getfile.f90 paterminate.f90 audiodev.f90 +@@ -127,7 +130,7 @@ + # Build W.SO & MV to WsprMod/ + WsprMod/w.so: libwspr.a ${F2PYSRCS} acom1.f90 + ${F2PY} -c --quiet --fcompiler=${FCV} --f77exec=${FC} --f90exec=${FC} \ +- --opt="${FCOPT}" thnix.o ${LDFLAGS} ${LIBS} libwspr.a -m w ${F2PYSRCS} ++ --opt="${FCOPT}" thnix.o ${PORTAUDIO_LIBDIR} ${LDFLAGS} ${LIBS} libwspr.a -m w ${F2PYSRCS} + ${MV} w*.so WsprMod/w.so + + # Install target wspr +@@ -137,20 +140,23 @@ + @echo " Installing ${PROGRAM}" + @echo '-----------------------------------' + @echo '' +- @${MKDIR} -p ${DOCDIR}/examples +- @${MKDIR} -p ${SHARED}/save/Samples +- @${MKDIR} -p ${WSPRLIB}/WsprMod +- @install -m 755 --strip fmtest fcal fmeasure fmtave wspr0 wsprcode ${BINDIR} +- @install -m 644 manpages/man1/*.1 ${MANDIR} +- @install -m 644 save/Samples/* ${SHARED}/save/Samples/ +- @install -m 755 ./{gocal,Pmw*.py,wspr.py,wspr.sh,wsprrc} ${SHARED} +- @install -m 644 ./{AUTHORS,README,NEWS,COPYING,COPYRIGHT} ${DOCDIR} +- @install -m 644 ./hamlib_rig* ${SHARED} +- @install -m 755 WsprMod/* ${WSPRLIB}/WsprMod +- @${MV} -T ${SHARED}/wspr.sh ${BINDIR}/wspr +- @${CHMOD} 755 ${BINDIR}/wspr +- @${CP} -r doc/examples/* ${DOCDIR}/examples/ +- @${CHMOD} -R 644 ${DOCDIR}/examples/* ++ @${MKDIR} -p ${DESTDIR}${DOCDIR}/examples ++ @${MKDIR} -p ${DESTDIR}${SHARED}/save/Samples ++ @${MKDIR} -p ${DESTDIR}${WSPRLIB}/WsprMod ++ @install -m 555 fmtest fcal fmeasure fmtave wspr0 wsprcode ${DESTDIR}${BINDIR} ++ @strip ${DESTDIR}${BINDIR}/fmtest ${DESTDIR}${BINDIR}/fcal \ ++ ${DESTDIR}${BINDIR}/fmeasure ${DESTDIR}${BINDIR}/fmtave \ ++ ${DESTDIR}${BINDIR}/wspr0 ${DESTDIR}${BINDIR}/wsprcode ++ @install -m 644 manpages/man1/*.1 ${DESTDIR}${MANDIR} ++ @install -m 644 save/Samples/* ${DESTDIR}${SHARED}/save/Samples/ ++ @install -m 755 gocal Pmw*.py wspr.py wspr.sh wsprrc ${DESTDIR}${SHARED} ++ @install -m 644 AUTHORS README NEWS COPYING COPYRIGHT ${DESTDIR}${DOCDIR} ++ @install -m 644 hamlib_rig* ${DESTDIR}${SHARED} ++ @install -m 755 WsprMod/* ${DESTDIR}${WSPRLIB}/WsprMod ++ @install -m 755 wspr.sh ${DESTDIR}${BINDIR}/wspr ++ @${CHMOD} 755 ${DESTDIR}${BINDIR}/wspr ++ @${CP} -r doc/examples/* ${DESTDIR}${DOCDIR}/examples/ ++ @${CHMOD} -R 644 ${DESTDIR}${DOCDIR}/examples/* + @echo "Finished Installing ${PROGRAM}" + @echo '' + @echo '..To run, type..: wspr' Added: head/comms/wspr/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/wspr/files/patch-configure.ac Tue Oct 7 22:30:36 2014 (r370404) @@ -0,0 +1,242 @@ +--- configure.ac.orig 2014-06-04 15:38:13.000000000 -0400 ++++ configure.ac 2014-09-26 15:03:51.000000000 -0400 +@@ -10,18 +10,33 @@ + dnl path vars + dnl ---------------------------------------------------------------------------- + ++AC_PREFIX_DEFAULT("/usr") ++ + AC_CONFIG_AUX_DIR([build-aux]) + AC_CANONICAL_HOST + AC_CANONICAL_BUILD + AC_SUBST([USER], ["$USER"]) ++ ++gfortran="gfortran" ++ ++AC_DEFINE_UNQUOTED(PREFIX, "${prefix}", [Prefix where wspr is installed.]) ++ ++ + AC_SUBST([HOMEDIR], [/home/"$USER"/.wspr]) +-AC_SUBST([PREFIX], [/usr]) +-AC_SUBST([BINDIR], [/usr/bin]) +-AC_SUBST([WSPRLIB], [/usr/lib/wspr]) +-AC_SUBST([SHARED], [/usr/share/wspr]) +-AC_SUBST([MANDIR], [/usr/share/man/man1]) +-AC_SUBST([DOCDIR], [/usr/share/doc/wspr]) ++AC_SUBST([PREFIX], [${prefix}]) ++AC_SUBST([BINDIR], [${prefix}/bin]) ++AC_SUBST([WSPRLIB], [${prefix}/lib/wspr]) ++AC_SUBST([SHARED], [${prefix}/share/wspr]) ++AC_SUBST([DOCDIR], [${prefix}/share/doc/wspr]) + ++case "${host_os}" in ++ *bsd* ) ++ AC_SUBST([MANDIR], [${prefix}/man/man1]) ++ ;; ++ * ) ++ AC_SUBST([MANDIR], [${prefix}/share/man/man1]) ++ ;; ++esac + + dnl ---------------------------------------------------------------------------- + dnl check compilers +@@ -59,9 +74,17 @@ + AC_SUBST([OS], ["$host_os"]) + AC_SUBST([CPU], ["$host_cpu"]) + +-dnl ---------------------------------------------------------------------------- ++dnl --------------------------------------------------------------------------- + dnl check headers +-dnl ---------------------------------------------------------------------------- ++dnl --------------------------------------------------------------------------- ++ ++dnl --------------------------------------------------------------------------- ++dnl Lots of BSD/Solaris/ other systems look in /usr/local ++dnl --------------------------------------------------------------------------- ++ ++CPPFLAGS="-I/usr/local/include ${CPPFLAGS}" ++LDFLAGS="-L/usr/local/lib ${LDFLAGS}" ++ + AC_HEADER_STDC + AC_HEADER_DIRENT + AC_HEADER_TIME +@@ -88,36 +111,36 @@ + dnl add additional lib paths + dnl ---------------------------------------------------------------------------- + if test -d "/usr/lib64"; then LDFLAGS="-L/usr/lib64 ${LDFLAGS}"; fi +-if test -d "/usr/local/lib"; then LDFLAGS="-L/usr/local/lib ${LDFLAGS}"; fi ++#if test -d "/usr/local/lib"; then LDFLAGS="${LDFLAGS} -L/usr/local/lib"; fi + if test -d "/usr/lib/x86_64-linux-gnu"; then LDFLAGS="-L/usr/lib/x86_64-linux-gnu ${LDFLAGS}"; fi + if test -d "/usr/lib/i386-linux-gnu"; then LDFLAGS="-L/usr/lib/i386-linux-gnu ${LDFLAGS}"; fi +-if test -d "/usr/lib"; then LDFLAGS="-L/usr/lib ${LDFLAGS}"; fi ++if test -d "/usr/lib"; then LDFLAGS="${LDFLAGS} -L/usr/lib"; fi + if test -d "/usr/lib/arm-linux-gnueabihf"; then LDFLAGS="-L/usr/lib/arm-linux-gnueabihf ${LDFLAGS}"; fi + ++ + dnl ---------------------------------------------------------------------------- + dnl find Python3 + dnl ---------------------------------------------------------------------------- + + HAVE_PY3=no + +-# check with-enable first ++# check with-python3 first + AC_MSG_CHECKING([Python3 --with-python3]) +-AC_ARG_WITH([f2py], [ --with-python3=PATH path to: ../python3], ++AC_ARG_WITH([python3], [ --with-python3=PATH path to: ../python3], + PY3="$withval") + + # if --with-python3 is not empty +-if test -n "$PY3"; then ++if test -n ${PY3}; then + + # check if user provided python3 is >= 3.2 +-python3 -c "import sys; sys.exit(sys.version < '3.2')" >/dev/null 2>&1 +- ++${PY3} -c "import sys; sys.exit(sys.version < '3.2')" >/dev/null 2>&1 + if test "$?" != "0"; then +- HAVE_PY3=no ++ HAVE_PY3="no" + AC_MSG_RESULT([no]) + else +- HAVE_PY3=yes +- PY3_PATH="$PY3" +- PY3V=`$PY3 -V` ++ HAVE_PY3="yes" ++ PY3_PATH=${PY3} ++ PY3V=`${PY3} -V` + AC_DEFINE([HAVE_PY3], [1]) + AC_DEFINE_UNQUOTED([PY3_PATH], ["${PY3}"], [Path to Python3]) + AC_SUBST([PYTHON], ["${PY3}"]) +@@ -128,6 +151,7 @@ + fi + + # if not user supplied, check by calling python ++ + if test "$HAVE_PY3" = "no"; then + + AC_MSG_CHECKING([Python3 using: python]) +@@ -172,7 +196,7 @@ + + HAVE_F2PY=no + +-# check with-enable first ++# check with-f2py first + AC_MSG_CHECKING([F2PY --with-f2py]) + AC_ARG_WITH([f2py], [ --with-f2py=PATH path to: ../f2py ../f2py3], + F2PY="$withval") +@@ -244,13 +268,23 @@ + dnl check gfortran + dnl ---------------------------------------------------------------------------- + ++AC_MSG_CHECKING([gfortran --with-gfortran]) ++AC_ARG_WITH([gfortran], [ --with-gfortran=PATH path to: ../gfortran],]) ++ ++# if --with-gfortran is not empty ++if test -n ${withval}; then ++ gfortran="${withval}" ++ gfpath=`${gfortran} --print-file-name=|awk -F/ '{print $1 "/" $2 "/" $3 "/" $4 "/" $5}'` ++ LDFLAGS="-L${gfpath} ${LDFLAGS}" ++fi ++ + AC_CHECK_LIB([gfortran], [_gfortran_st_write], [], []) + + if test "$ac_cv_lib_gfortran__gfortran_st_write" != "yes"; then + HAVE_GFORTRAN=0 + else + HAVE_GFORTRAN=1 +- FC=gfortran ++ FC=${gfortran} + FCV=gnu95 + FC_LIB_PATH=`${FC} -print-file-name=` + AC_DEFINE_UNQUOTED([FC_LIB_PATH], ["${FC_LIB_PATH}"], [Path to Gfortran libs.]) +@@ -266,12 +300,27 @@ + dnl ---------------------------------------------------------------------------- + dnl check portaudio + dnl ---------------------------------------------------------------------------- ++# ++# This unpleasant hack due to FreeBSD supporting both portaudio2 (v19+) ++# and older portaudio. Many programs depend on older. Sorry :-( - db ++# ++ ++case "${host_os}" in ++ *freebsd* ) ++ AC_SUBST([PORTAUDIO_INCLUDE], ["-I/usr/local/include/portaudio2"]) ++ AC_SUBST([PORTAUDIO_LIBDIR], ["-L/usr/local/lib/portaudio2"]) ++ LDFLAGS="-L/usr/local/lib/portaudio2 ${LDFLAGS}" ++ ;; ++ *) ++ ;; ++esac + + AC_CHECK_LIB([portaudio], [Pa_Initialize], [], []) + if test "$ac_cv_lib_portaudio_Pa_Initialize" = "yes"; then +- LIBS="-lportaudio ${LIBS}" ++ LIBS="-lportaudio ${LIBS}" + fi + ++ + # if headers and libs found, set define + if test "$ac_cv_header_portaudio_h" = "yes" -a "$ac_cv_lib_portaudio_Pa_Initialize" = "yes"; then + HAVE_PORTAUDIO=1 +@@ -279,7 +328,6 @@ + AC_DEFINE([HAVE_PORTAUDIO_LIB], [1], [Portaudio Lib]) + fi + +- + dnl ---------------------------------------------------------------------------- + dnl check fftw3 + dnl ---------------------------------------------------------------------------- +@@ -322,8 +370,10 @@ + _LBU=$(echo "-lpthread $LIBS" |tr ' ' '\n'|sort -su |tr '\n' ' ') + LIBS="$_LBU" + +-_LDU=$(echo "$LDFLAGS" |tr ' ' '\n'|sort -su |tr '\n' ' ') +-LDFLAGS="$_LDU" ++# This of course destroys FreeBSD builds ++#_LDU=$(echo "$LDFLAGS" |tr ' ' '\n'|sort -su |tr '\n' ' ') ++#LDFLAGS="$_LDU" ++ + + _CPPU=$(echo "-I/usr/include -I/usr/local/include $CPPFLAGS" |tr ' ' '\n'|sort -su |tr '\n' ' ') + CPPFLAGS="$_CPPU" +@@ -355,6 +405,10 @@ + FFLAGS="-O2 -m64 -Wall -fbounds-check -fno-second-underscore \ + -Wno-conversion -Wno-character-truncation -fPIC" + ;; ++ *freebsd* ) ++ CFLAGS="${CFLAGS} -fpic" ++ FFLAGS="-O2 -m64 -Wall -fbounds-check -fno-second-underscore \ ++-Wno-conversion -Wno-character-truncation -fPIC" ;; + *) + AC_MSG_ERROR([Unsupported System: ${host_os}.]) + ;; +@@ -377,10 +431,6 @@ + echo + echo 'Example:' + echo './configure --with-python3="/home/$USER/test/python3"' +-else +- # add python3 path to wspr.sh script +- sed -i '/wspr.py/d' wspr.sh +- echo "$PY3_PATH -O wspr.py" >> wspr.sh + fi + + +@@ -502,7 +552,7 @@ + AC_SUBST([PROGRAM], ["$PACKAGE_NAME"]) + AC_SUBST([VERSION], ["$PACKAGE_VERSION"]) + AC_SUBST([WEB], ["$PACKAGE_URL"]) +-AC_CONFIG_FILES([Makefile]) ++AC_CONFIG_FILES([Makefile wspr.sh]) + AC_OUTPUT + + +@@ -523,7 +573,7 @@ + echo " Package: .........: ${PROGRAM} ${VERSION}" + echo " Python3: .........: ${PYTHON}" + echo " F2py: ............: ${F2PY}" +-echo " Fcomplier: .......: ${FC}" ++echo " Fcompiler: .......: ${FC}" + echo " Samplerate: ......: ${srstatus}" + echo " FFTW3: ...........: ${ffstatus}" + echo " Portaudio: .......: ${pastatus}" Added: head/comms/wspr/files/wspr.sh.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/wspr/files/wspr.sh.in Tue Oct 7 22:30:36 2014 (r370404) @@ -0,0 +1,60 @@ +#!/bin/sh +#------------------------------------------------------------------------------- +# This file is part of the WSPR application, Weak Signal Propogation Reporter +# +# File Name: wspr.sh +# Description: Shell script wrapper to update or copy files from system install +# +# Copyright (C) 2001-2014 Joseph Taylor, K1JT +# License: GNU GPL v3 +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free Software +# Foundation; either version 3 of the License, or (at your option) any later +# version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 51 Franklin +# Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +#------------------------------------------------------------------------------- + +set -e + +copyur() { + for f in $1/*;do + if [ $f -nt `basename $f` ]; then + if [ ! -d `basename $f` ]; then + cp $f . + fi + fi + done +} + +# set dir's +_HOMEDIR="/home/$USER/.wspr" + +# update out of date files +if [ -e $_HOMEDIR ] ; then + cd $_HOMEDIR + copyur /usr/local/share/wspr + copyur /usr/local/share/doc/wspr + cd $_HOMEDIR/WsprMod + copyur /usr/local/lib/wspr/WsprMod + cd $_HOMEDIR +else +# if _HOMEDIR does not exist make it + mkdir $_HOMEDIR + cp -R @PREFIX@/share/wspr/* $_HOMEDIR + cp -R @PREFIX@/share/doc/wspr/* $_HOMEDIR + cp -R @PREFIX@/lib/wspr/* $_HOMEDIR +fi + +# run: py location updated by configure.ac +cd $_HOMEDIR +@PYTHON@ -O wspr.py Modified: head/comms/wspr/pkg-plist ============================================================================== --- head/comms/wspr/pkg-plist Tue Oct 7 22:28:24 2014 (r370403) +++ head/comms/wspr/pkg-plist Tue Oct 7 22:30:36 2014 (r370404) @@ -1,35 +1,43 @@ +bin/fcal +bin/fmeasure +bin/fmtave +bin/fmtest bin/wspr -bin/wspr.py -%%PORTDOCS%%%%DOCSDIR%%/LICENSE.TXT -%%PORTDOCS%%%%DOCSDIR%%/WSPR_Announcement.TXT -%%PORTDOCS%%%%DOCSDIR%%/WSPR0_Instructions.TXT -%%PORTDOCS%%%%DOCSDIR%%/WSPR_Quick_Start.TXT -%%PORTDOCS%%%%DOCSDIR%%/supported_rigs.txt -%%PYTHON_SITELIBDIR%%/WsprMod/w.so -%%PYTHON_SITELIBDIR%%/WsprMod/__init__.py -%%PYTHON_SITELIBDIR%%/WsprMod/__init__.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/Pmw.py -%%PYTHON_SITELIBDIR%%/WsprMod/Pmw.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/PmwBlt.py -%%PYTHON_SITELIBDIR%%/WsprMod/PmwBlt.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/PmwColor.py -%%PYTHON_SITELIBDIR%%/WsprMod/PmwColor.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/advanced.py -%%PYTHON_SITELIBDIR%%/WsprMod/advanced.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/hopping.py -%%PYTHON_SITELIBDIR%%/WsprMod/hopping.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/g.py -%%PYTHON_SITELIBDIR%%/WsprMod/g.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/iq.py -%%PYTHON_SITELIBDIR%%/WsprMod/iq.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/options.py -%%PYTHON_SITELIBDIR%%/WsprMod/options.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/palettes.py -%%PYTHON_SITELIBDIR%%/WsprMod/palettes.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/smeter.py -%%PYTHON_SITELIBDIR%%/WsprMod/smeter.pyc -%%PYTHON_SITELIBDIR%%/WsprMod/specjt.py -%%PYTHON_SITELIBDIR%%/WsprMod/specjt.pyc -%%PYTHON_SITELIBDIR%%/Wspr-WSPR.Version.%%VERSION%%_.by.K1JT-py%%PYVER%%.egg-info -@dirrm %%PYTHON_SITELIBDIR%%/WsprMod -%%PORTDOCS%%@dirrm %%DOCSDIR%% +bin/wspr0 +bin/wsprcode +lib/wspr/WsprMod/__init__.py +lib/wspr/WsprMod/advanced.py +lib/wspr/WsprMod/g.py +lib/wspr/WsprMod/hopping.py +lib/wspr/WsprMod/iq.py +lib/wspr/WsprMod/libgcc_s_dw2-1.dll +lib/wspr/WsprMod/options.py +lib/wspr/WsprMod/palettes.py +lib/wspr/WsprMod/smeter.py +lib/wspr/WsprMod/specjt.py +lib/wspr/WsprMod/w.so +man/man1/fcal.1.gz +man/man1/fmeasure.1.gz +man/man1/fmtave.1.gz +man/man1/fmtest.1.gz +man/man1/wspr.1.gz +man/man1/wspr0.1.gz +man/man1/wsprcode.1.gz +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/examples/README +%%PORTDOCS%%%%DOCSDIR%%/examples/fcal.out +%%PORTDOCS%%%%DOCSDIR%%/examples/fmt.all +%%PORTDOCS%%%%DOCSDIR%%/examples/fmtave.out +%%DATADIR%%/Pmw.py +%%DATADIR%%/PmwBlt.py +%%DATADIR%%/PmwColor.py +%%DATADIR%%/gocal +%%DATADIR%%/hamlib_rig_numbers +%%DATADIR%%/save/Samples/091022_0436.wav +%%DATADIR%%/wspr.py +%%DATADIR%%/wspr.sh +%%DATADIR%%/wsprrc From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 22:33:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 07C55E42; Tue, 7 Oct 2014 22:33:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E82F7AB0; Tue, 7 Oct 2014 22:33:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97MXTui059883; Tue, 7 Oct 2014 22:33:29 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97MXTUr059882; Tue, 7 Oct 2014 22:33:29 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410072233.s97MXTUr059882@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 7 Oct 2014 22:33:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370405 - head/www/py-django-crispy-forms X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 22:33:30 -0000 Author: antoine Date: Tue Oct 7 22:33:29 2014 New Revision: 370405 URL: https://svnweb.freebsd.org/changeset/ports/370405 QAT: https://qat.redports.org/buildarchive/r370405/ Log: This may be closer to what was intended Modified: head/www/py-django-crispy-forms/Makefile Modified: head/www/py-django-crispy-forms/Makefile ============================================================================== --- head/www/py-django-crispy-forms/Makefile Tue Oct 7 22:30:36 2014 (r370404) +++ head/www/py-django-crispy-forms/Makefile Tue Oct 7 22:33:29 2014 (r370405) @@ -1,13 +1,13 @@ # Created by: Johannes Meixner # $FreeBSD$ -PORTNAME= crispy-forms +PORTNAME= django-crispy-forms PORTVERSION= 1.4.0 PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= django-${PORTNAME}-${PORTVERSION} +DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= xmj@chaot.net COMMENT= The best way to have Django DRY forms From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 23:00:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 74BE4629; Tue, 7 Oct 2014 23:00:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 493A3D1D; Tue, 7 Oct 2014 23:00:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97N0qKX073385; Tue, 7 Oct 2014 23:00:52 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97N0pxB073383; Tue, 7 Oct 2014 23:00:51 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410072300.s97N0pxB073383@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 23:00:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370406 - head/news/noffle X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:00:52 -0000 Author: bapt Date: Tue Oct 7 23:00:51 2014 New Revision: 370406 URL: https://svnweb.freebsd.org/changeset/ports/370406 QAT: https://qat.redports.org/buildarchive/r370406/ Log: Simplify plist Modified: head/news/noffle/Makefile head/news/noffle/pkg-plist Modified: head/news/noffle/Makefile ============================================================================== --- head/news/noffle/Makefile Tue Oct 7 22:33:29 2014 (r370405) +++ head/news/noffle/Makefile Tue Oct 7 23:00:51 2014 (r370406) @@ -3,7 +3,7 @@ PORTNAME= noffle PORTVERSION= 1.1.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= news MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20%28devel%29/${PORTVERSION} @@ -44,6 +44,12 @@ do-install: ${STAGEDIR}${PREFIX}/etc/noffle.conf.sample @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} + @${MKDIR} ${STAGEDIR}${SPOOL_DIR}/data \ + ${STAGEDIR}${SPOOL_DIR}/lock \ + ${STAGEDIR}${SPOOL_DIR}/outgoing \ + ${STAGEDIR}${SPOOL_DIR}/overview \ + ${STAGEDIR}${SPOOL_DIR}/requested + post-install: ${SED} -e "s:/usr/local:${PREFIX}:g" ${PKGMESSAGE} Modified: head/news/noffle/pkg-plist ============================================================================== --- head/news/noffle/pkg-plist Tue Oct 7 22:33:29 2014 (r370405) +++ head/news/noffle/pkg-plist Tue Oct 7 23:00:51 2014 (r370406) @@ -9,12 +9,9 @@ man/man5/noffle.conf.5.gz %%PORTDOCS%%%%DOCSDIR%%/noffle.lsm %%PORTDOCS%%%%DOCSDIR%%/testing.txt etc/noffle.conf.sample -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@cwd / -@exec mkdir -p %%SPOOL_DIR%% -@exec mkdir -p %%SPOOL_DIR%%/data -@exec mkdir -p %%SPOOL_DIR%%/lock -@exec mkdir -p %%SPOOL_DIR%%/outgoing -@exec mkdir -p %%SPOOL_DIR%%/overview -@exec mkdir -p %%SPOOL_DIR%%/requested -@unexec rm -rf %%SPOOL_DIR%% +@dir %%SPOOL_DIR%%/data +@dir %%SPOOL_DIR%%/lock +@dir %%SPOOL_DIR%%/outgoing +@dir %%SPOOL_DIR%%/overview +@dir %%SPOOL_DIR%%/requested +@dir %%SPOOL_DIR%% From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 23:06:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3D9B7D9; Tue, 7 Oct 2014 23:06:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A09DDDE5; Tue, 7 Oct 2014 23:06:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97N6SAA074643; Tue, 7 Oct 2014 23:06:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97N6S3s074642; Tue, 7 Oct 2014 23:06:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410072306.s97N6S3s074642@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 23:06:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370407 - head/net/bwn-firmware-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:06:28 -0000 Author: bapt Date: Tue Oct 7 23:06:27 2014 New Revision: 370407 URL: https://svnweb.freebsd.org/changeset/ports/370407 QAT: https://qat.redports.org/buildarchive/r370407/ Log: Avoid useless @cwd Modified: head/net/bwn-firmware-kmod/pkg-plist Modified: head/net/bwn-firmware-kmod/pkg-plist ============================================================================== --- head/net/bwn-firmware-kmod/pkg-plist Tue Oct 7 23:00:51 2014 (r370406) +++ head/net/bwn-firmware-kmod/pkg-plist Tue Oct 7 23:06:27 2014 (r370407) @@ -1,3 +1,2 @@ -@cwd /%%KMODDIR%% -%%KMODNAME%%.ko -%%KMODNAME_LP%%.ko +/%%KMODDIR%%/%%KMODNAME%%.ko +/%%KMODDIR%%/%%KMODNAME_LP%%.ko From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 23:07:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4AF08BF; Tue, 7 Oct 2014 23:07:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1362DEE; Tue, 7 Oct 2014 23:07:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97N7APG074830; Tue, 7 Oct 2014 23:07:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97N7ADg074829; Tue, 7 Oct 2014 23:07:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410072307.s97N7ADg074829@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 23:07:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370408 - head/net/bwi-firmware-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:07:11 -0000 Author: bapt Date: Tue Oct 7 23:07:10 2014 New Revision: 370408 URL: https://svnweb.freebsd.org/changeset/ports/370408 QAT: https://qat.redports.org/buildarchive/r370408/ Log: Avoid useless @cwd Modified: head/net/bwi-firmware-kmod/pkg-plist Modified: head/net/bwi-firmware-kmod/pkg-plist ============================================================================== --- head/net/bwi-firmware-kmod/pkg-plist Tue Oct 7 23:06:27 2014 (r370407) +++ head/net/bwi-firmware-kmod/pkg-plist Tue Oct 7 23:07:10 2014 (r370408) @@ -1,2 +1 @@ -@cwd /%%KMODDIR%% -%%KMODNAME%%.ko +/%%KMODDIR%%/%%KMODNAME%%.ko From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 23:26:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9C75C55; Tue, 7 Oct 2014 23:26:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB053FBC; Tue, 7 Oct 2014 23:26:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97NQCQX084287; Tue, 7 Oct 2014 23:26:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97NQClo084284; Tue, 7 Oct 2014 23:26:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410072326.s97NQClo084284@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 7 Oct 2014 23:26:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370409 - in head/games/sokoban: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:26:13 -0000 Author: amdmi3 Date: Tue Oct 7 23:26:11 2014 New Revision: 370409 URL: https://svnweb.freebsd.org/changeset/ports/370409 QAT: https://qat.redports.org/buildarchive/r370409/ Log: - Use new pkg plist-related features - Move highscore file into /var/games PR: 193852 Submitted by: lifanov@mail.lifanov.com (maintainer) Modified: head/games/sokoban/Makefile head/games/sokoban/files/patch-sokoban.h head/games/sokoban/pkg-plist Modified: head/games/sokoban/Makefile ============================================================================== --- head/games/sokoban/Makefile Tue Oct 7 23:07:10 2014 (r370408) +++ head/games/sokoban/Makefile Tue Oct 7 23:26:11 2014 (r370409) @@ -3,7 +3,7 @@ PORTNAME= sokoban PORTVERSION= 1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= games/strategy @@ -20,4 +20,8 @@ do-install: @${MKDIR} ${STAGEDIR}${DATADIR}/screens @${INSTALL_DATA} ${WRKSRC}/screens/* ${STAGEDIR}${DATADIR}/screens +post-install: + @${MKDIR} ${STAGEDIR}/var/games/sokoban + @truncate -s 512 ${STAGEDIR}/var/games/sokoban/scores.sample + .include Modified: head/games/sokoban/files/patch-sokoban.h ============================================================================== --- head/games/sokoban/files/patch-sokoban.h Tue Oct 7 23:07:10 2014 (r370408) +++ head/games/sokoban/files/patch-sokoban.h Tue Oct 7 23:26:11 2014 (r370409) @@ -1,5 +1,5 @@ ---- ./sokoban.h.orig 1992-05-15 01:15:26.000000000 -0400 -+++ ./sokoban.h 2014-03-11 22:16:45.005739636 -0400 +--- sokoban.h.orig 1992-05-15 05:15:26 UTC ++++ sokoban.h @@ -1,6 +1,14 @@ /*********************************************************************** You may wish to alter the following directory paths @@ -7,9 +7,9 @@ + +#ifdef PREFIX +#define SCREENPATH PREFIX "/share/sokoban/screens" -+#define SAVEPATH PREFIX "/share/sokoban" ++#define SAVEPATH "/var/games/sokoban" +#define LOCKFILE "/tmp/sok.tmp" -+#define SCOREFILE "/var/games/sokoban" ++#define SCOREFILE "/var/games/sokoban/scores" +#else + /**/ Modified: head/games/sokoban/pkg-plist ============================================================================== --- head/games/sokoban/pkg-plist Tue Oct 7 23:07:10 2014 (r370408) +++ head/games/sokoban/pkg-plist Tue Oct 7 23:26:11 2014 (r370409) @@ -1,11 +1,6 @@ -@group games -@mode 2555 -bin/sokoban -@group -@mode -@exec truncate -s 512B /var/games/sokoban -@exec chgrp games /var/games/sokoban -@exec chmod 0664 /var/games/sokoban +@(root,games,2555) bin/sokoban +@dir(root,games,0775) /var/games/sokoban +@sample(root,games,0664) /var/games/sokoban/scores.sample %%DATADIR%%/screens/sokoban.help %%DATADIR%%/screens/screen.1 %%DATADIR%%/screens/screen.2 @@ -57,6 +52,3 @@ bin/sokoban %%DATADIR%%/screens/screen.48 %%DATADIR%%/screens/screen.49 %%DATADIR%%/screens/screen.50 -@dirrm %%DATADIR%%/screens -@dirrm %%DATADIR%% -@unexec rm -f /var/games/sokoban From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 23:26:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0A87D67; Tue, 7 Oct 2014 23:26:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD748FC8; Tue, 7 Oct 2014 23:26:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97NQS26084430; Tue, 7 Oct 2014 23:26:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97NQSC3084429; Tue, 7 Oct 2014 23:26:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410072326.s97NQSC3084429@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Tue, 7 Oct 2014 23:26:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370410 - head/Keywords X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:26:29 -0000 Author: bapt Date: Tue Oct 7 23:26:28 2014 New Revision: 370410 URL: https://svnweb.freebsd.org/changeset/ports/370410 QAT: https://qat.redports.org/buildarchive/r370410/ Log: Accept absolute path for @info keyword Modified: head/Keywords/info.ucl Modified: head/Keywords/info.ucl ============================================================================== --- head/Keywords/info.ucl Tue Oct 7 23:26:11 2014 (r370409) +++ head/Keywords/info.ucl Tue Oct 7 23:26:28 2014 (r370410) @@ -4,10 +4,16 @@ actions: [file] post-install: < Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E7E46B1; Tue, 7 Oct 2014 23:43:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E4F44282; Tue, 7 Oct 2014 23:43:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s97NhkVu093414; Tue, 7 Oct 2014 23:43:46 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s97Nhkgo093413; Tue, 7 Oct 2014 23:43:46 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410072343.s97Nhkgo093413@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Tue, 7 Oct 2014 23:43:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370411 - head/sysutils/e2fsprogs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:43:47 -0000 Author: mandree Date: Tue Oct 7 23:43:46 2014 New Revision: 370411 URL: https://svnweb.freebsd.org/changeset/ports/370411 QAT: https://qat.redports.org/buildarchive/r370411/ Log: Mark broken everywhere, upstream bug (already reported). To avoid PORTEPOCH/rollback-and-forth-again, let's give upstream a few days for a fix before rolling back to 1.42.10. Added a comment to Makefile: # Regression that apparently causes use-after-free in· # http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=maint&id=47fee2ef6a23ae06f680336ffde57caa64604a4c # and can be reproduced under MALLOC_OPTIONS=J regime on 9.3-amd64, or # alternatively confirmed with valgrind, was reported upstream. # # Let's wait until 2014-10-15 whether upstream provides a fix, # else we'll bump PORTEPOCH and roll back to 1.42.10; # 1.42.11 is also faulty. Modified: head/sysutils/e2fsprogs/Makefile Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Tue Oct 7 23:26:28 2014 (r370410) +++ head/sysutils/e2fsprogs/Makefile Tue Oct 7 23:43:46 2014 (r370411) @@ -53,10 +53,6 @@ USES+= gettext iconv:build .include -.if ${OSVERSION} >= 1100000 -BROKEN= Segfaults and miscalculations observed on redports -.endif - .if ${PORT_OPTIONS:MNLS} PLIST_SUB= NLS="" . if empty(ICONV_LIB) @@ -84,6 +80,16 @@ post-patch:: .endfor .if ${MASTERDIR} == ${.CURDIR} +# Regression that apparently causes use-after-free in +# http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=maint&id=47fee2ef6a23ae06f680336ffde57caa64604a4c +# and can be reproduced under MALLOC_OPTIONS=J regime on 9.3-amd64, or +# alternatively confirmed with valgrind, was reported upstream. +# +# Let's wait until 2014-10-15 whether upstream provides a fix, +# else we'll bump PORTEPOCH and roll back to 1.42.10; +# 1.42.11 is also faulty. +BROKEN= Use-after-free bug, see ${.CURDIR}/Makefile comments for details + pre-build: # fix up Makefile ordering for parallel builds cd ${WRKSRC}/lib/et && ${DO_MAKE_BUILD} compile_et From owner-svn-ports-head@FreeBSD.ORG Tue Oct 7 23:52:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 717B783C; Tue, 7 Oct 2014 23:52:28 +0000 (UTC) Received: from [IPv6:::1] (localhost6.localdomain6 [IPv6:::1]) by apollo.emma.line.org (Postfix) with ESMTP id 0747523CEED; Wed, 8 Oct 2014 01:52:26 +0200 (CEST) Message-ID: <54347CBA.1050206@FreeBSD.org> Date: Wed, 08 Oct 2014 01:52:26 +0200 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370388 - in head: devel/e2fsprogs-libss misc/e2fsprogs-libblkid misc/e2fsprogs-libuuid sysutils/e2fsprogs sysutils/e2fsprogs/files References: <201410071915.s97JFrQo061043@svn.freebsd.org> <54344848.1040707@FreeBSD.org> In-Reply-To: <54344848.1040707@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 23:52:28 -0000 Am 07.10.2014 um 22:08 schrieb Bryan Drewery: > On 10/7/2014 2:15 PM, Matthias Andree wrote: >> Author: mandree >> Date: Tue Oct 7 19:15:52 2014 >> New Revision: 370388 >> URL: https://svnweb.freebsd.org/changeset/ports/370388 >> QAT: https://qat.redports.org/buildarchive/r370388/ >> >> Log: >> Update to new upstream release 1.42.12. >> Changelog: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.42.12 >> >> Reset PORTREVISION on slaves. >> Remove @dirrm* from master's + slaves' pkg-plist. >> Remove patches overcome by upstream events. >> Ignore PORTSCOUT - it can't figure out the directory structure. >> No longer run self-test in parallel - exhausts redports directory. >> >> Mark BROKEN on 11-CURRENT - causes miscompilation (bogus numbers in >> output, SIGSEGV/SIGBUS): >> https://redports.org/~mandree/20141007190638-31576-251231/e2fsprogs-1.42.12.log >> https://redports.org/~mandree/20141007185700-4151-251228/e2fsprogs-1.42.12.log > > It says a lot about ports that we can't update something without > breaking it on a release where it was working fine before. I am not sure I got what you're trying to convey. You may be overestimating the scope of the issue, given the findings after the commit. I do not consider 11-CURRENT a reference, nor is 11 a "RELEASE". That aside, the port itself has a subtle but nasty and stubborn use-after-free issue that does not show in uninstrumented self-tests, and reverting the failure-inducing commit (URL/Id below) does not cure in my testing. Long story: It turns out that the memory poisoning that 11 inflicts on its user-space unveiled a regression between 1.42.10 and 1.42.11 that I bisected identifying as the first faulty upstream commit, details on the hunt were reported on the -toolchain and -current lists. I believed 1.42.12 safe because only 11 was failing and I wasn't aware that the malloc.conf "Junk" feature is enabled on 11, and committed the upgrade. Short-term action: I want to avoid a rollback entailing PORTEPOCH bump. I've marked e2fsprogs (only the master port) BROKEN everywhere for now (r370411), reported the thing upstream (antoine@ was in cc:), and I have given upstream a few days to come up with a fix. Failing that, we'll bump PORTEPOCH to 1 and roll back to 1.42.10. (1.42.11 also has the bug). Note that this needs a bit of attention because we have three slave ports, devel/e2fsprogs-libss, misc/e2fsprogs-libblkid, misc/e2fsprogs-libuuid. From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 00:33:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24804DD3 for ; Wed, 8 Oct 2014 00:33:29 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE9E695C for ; Wed, 8 Oct 2014 00:33:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s980XScd057310 for ; Wed, 8 Oct 2014 00:33:28 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s980XSbc057309 for svn-ports-head@freebsd.org; Wed, 8 Oct 2014 00:33:28 GMT (envelope-from bdrewery) Received: (qmail 46003 invoked from network); 7 Oct 2014 19:33:23 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 19:33:23 -0500 Message-ID: <5434864D.7000204@FreeBSD.org> Date: Tue, 07 Oct 2014 19:33:17 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Matthias Andree , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370388 - in head: devel/e2fsprogs-libss misc/e2fsprogs-libblkid misc/e2fsprogs-libuuid sysutils/e2fsprogs sysutils/e2fsprogs/files References: <201410071915.s97JFrQo061043@svn.freebsd.org> <54344848.1040707@FreeBSD.org> <54347CBA.1050206@FreeBSD.org> In-Reply-To: <54347CBA.1050206@FreeBSD.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fi0fxirCQJ0qe0Adf9QTGiOJhSgJI9cWD" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 00:33:29 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --fi0fxirCQJ0qe0Adf9QTGiOJhSgJI9cWD Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 6:52 PM, Matthias Andree wrote: > I am not sure I got what you're trying to convey. You may be > overestimating the scope of the issue, given the findings after the com= mit. >=20 > I do not consider 11-CURRENT a reference, nor is 11 a "RELEASE". I knew you would get tripped up on the word 'release'. It still does not change my point. The port was working, and now is not. Now we provide no package for head users because of an upgrade. It's really an unacceptable situation to me. My private mail to you was implying that if ports could support multiple versions per origin (like gentoo portage), then you could mark the default version was your updated one on all branches/releases except head, where it could remain the working version. --=20 Regards, Bryan Drewery --fi0fxirCQJ0qe0Adf9QTGiOJhSgJI9cWD Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNIZNAAoJEDXXcbtuRpfPbjAIAIQmD3mQKsGx+rMBbFUo8Dh2 5vsa8nbc1xRF7wh6LwfrpLpQhJAMJCVv0vRX1owVeaGy8khrBb6juo+JMAwdiiRN oM6pMyGX5TCERWTW4hv4sfjvz27rwiiGbcU1MbrUsU72KlkEamxTcyqgkZcFFhKW 9U3bhZYQu7+kYg9SVYazOw0XExnDTMJJcwJ3P5IFCyEDuz29trFNX6hHQ0tp9Bxm jd3f2Dup2CQuBtBWISBkoUB0WISScS4NrC5HW3dDNbrZ57KRDdIdMRTXlkWRXxEf ODKlleIPAtTYoQetjbmOy0Zwq+E4S10c+iBswhGaGNSCSMgboZk0/Qq9lqQLHqU= =YRz5 -----END PGP SIGNATURE----- --fi0fxirCQJ0qe0Adf9QTGiOJhSgJI9cWD-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 00:37:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5A586ED for ; Wed, 8 Oct 2014 00:37:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC35994 for ; Wed, 8 Oct 2014 00:37:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s980b3ew057649 for ; Wed, 8 Oct 2014 00:37:03 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s980b3Rc057646 for svn-ports-head@freebsd.org; Wed, 8 Oct 2014 00:37:03 GMT (envelope-from bdrewery) Received: (qmail 87019 invoked from network); 7 Oct 2014 19:37:01 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 19:37:01 -0500 Message-ID: <54348726.1080004@FreeBSD.org> Date: Tue, 07 Oct 2014 19:36:54 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Matthias Andree , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370411 - head/sysutils/e2fsprogs References: <201410072343.s97Nhkgo093413@svn.freebsd.org> In-Reply-To: <201410072343.s97Nhkgo093413@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AAuoC2GxPpP8HsI9I4GjdgM75gkbiIgvQ" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 00:37:03 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --AAuoC2GxPpP8HsI9I4GjdgM75gkbiIgvQ Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 6:43 PM, Matthias Andree wrote: > Author: mandree > Date: Tue Oct 7 23:43:46 2014 > New Revision: 370411 > URL: https://svnweb.freebsd.org/changeset/ports/370411 > QAT: https://qat.redports.org/buildarchive/r370411/ >=20 > Log: > Mark broken everywhere, upstream bug (already reported). > To avoid PORTEPOCH/rollback-and-forth-again, let's give upstream a fe= w > days for a fix before rolling back to 1.42.10. This is horrible. We're providing no packages for any branch now to avoid bumping a metadata counter? > =20 > Added a comment to Makefile: > =20 > # Regression that apparently causes use-after-free in=C2=B7 > # http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=3Dmaint&= id=3D47fee2ef6a23ae06f680336ffde57caa64604a4c > # and can be reproduced under MALLOC_OPTIONS=3DJ regime on 9.3-amd64,= or > # alternatively confirmed with valgrind, was reported upstream. > # > # Let's wait until 2014-10-15 whether upstream provides a fix, > # else we'll bump PORTEPOCH and roll back to 1.42.10; > # 1.42.11 is also faulty. >=20 > Modified: > head/sysutils/e2fsprogs/Makefile >=20 > Modified: head/sysutils/e2fsprogs/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/sysutils/e2fsprogs/Makefile Tue Oct 7 23:26:28 2014 (r370410)= > +++ head/sysutils/e2fsprogs/Makefile Tue Oct 7 23:43:46 2014 (r370411)= > @@ -53,10 +53,6 @@ USES+=3D gettext iconv:build > =20 > .include > =20 > -.if ${OSVERSION} >=3D 1100000 > -BROKEN=3D Segfaults and miscalculations observed on redports > -.endif > - > .if ${PORT_OPTIONS:MNLS} > PLIST_SUB=3D NLS=3D"" > . if empty(ICONV_LIB) > @@ -84,6 +80,16 @@ post-patch:: > .endfor > =20 > .if ${MASTERDIR} =3D=3D ${.CURDIR} > +# Regression that apparently causes use-after-free in=20 > +# http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=3Dmaint&i= d=3D47fee2ef6a23ae06f680336ffde57caa64604a4c > +# and can be reproduced under MALLOC_OPTIONS=3DJ regime on 9.3-amd64, = or > +# alternatively confirmed with valgrind, was reported upstream. > +# > +# Let's wait until 2014-10-15 whether upstream provides a fix, > +# else we'll bump PORTEPOCH and roll back to 1.42.10; > +# 1.42.11 is also faulty. > +BROKEN=3D Use-after-free bug, see ${.CURDIR}/Makefile comments for de= tails > + > pre-build: > # fix up Makefile ordering for parallel builds > cd ${WRKSRC}/lib/et && ${DO_MAKE_BUILD} compile_et >=20 --=20 Regards, Bryan Drewery --AAuoC2GxPpP8HsI9I4GjdgM75gkbiIgvQ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNIcnAAoJEDXXcbtuRpfPXrUIAIFCN4lYjlSns9lhY9FRqJlf SX/O2nVG/BKoQKJZzRLIB3PF+V/8LRlb7AGaVCou9A3q8zEnRjfIcLQmxfNDlRbs +IaByF++/sJKwYbqtBdheecm8gliTJBJdohbV+APL6DmAt9ODwNCOt4BFUWRV23u HbvIvIuJ2AXQR+/8ByRlV2ZbVhSCGaVjPH7r9DrehRLkaglNoghBrkSBW2UOG71E 3pY/PBHDichK4CsEURoRqpZjt2hdBg9MdSCEOfGqZnhuRG8JgiisaV4Joge/S84Q 5g4Wfg2ed2I0SZdwSRW1zGMddvUaX6LpD15N+7LQZhw9v4KPDI0NvooO7ZZkkOE= =VUMW -----END PGP SIGNATURE----- --AAuoC2GxPpP8HsI9I4GjdgM75gkbiIgvQ-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 01:03:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 217A94DD for ; Wed, 8 Oct 2014 01:03:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02961C0B for ; Wed, 8 Oct 2014 01:03:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s98130dP067851 for ; Wed, 8 Oct 2014 01:03:00 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s98130ul067844 for svn-ports-head@freebsd.org; Wed, 8 Oct 2014 01:03:00 GMT (envelope-from bdrewery) Received: (qmail 16485 invoked from network); 7 Oct 2014 20:02:59 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 7 Oct 2014 20:02:59 -0500 Message-ID: <54348D3C.6080600@FreeBSD.org> Date: Tue, 07 Oct 2014 20:02:52 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Matthias Andree , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370411 - head/sysutils/e2fsprogs References: <201410072343.s97Nhkgo093413@svn.freebsd.org> <54348726.1080004@FreeBSD.org> In-Reply-To: <54348726.1080004@FreeBSD.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KMkS2UgVxHlI1seFeP5UcH7i0aI9IW4hg" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 01:03:01 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --KMkS2UgVxHlI1seFeP5UcH7i0aI9IW4hg Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/7/2014 7:36 PM, Bryan Drewery wrote: > On 10/7/2014 6:43 PM, Matthias Andree wrote: >> Author: mandree >> Date: Tue Oct 7 23:43:46 2014 >> New Revision: 370411 >> URL: https://svnweb.freebsd.org/changeset/ports/370411 >> QAT: https://qat.redports.org/buildarchive/r370411/ >> >> Log: >> Mark broken everywhere, upstream bug (already reported). >> To avoid PORTEPOCH/rollback-and-forth-again, let's give upstream a f= ew >> days for a fix before rolling back to 1.42.10. >=20 > This is horrible. We're providing no packages for any branch now to > avoid bumping a metadata counter? >=20 >=20 Unfortunately poudriere does not care that this is BROKEN. It reads PKGVERSION, sees it is newer, deletes the old package, then finally finds it should IGNORE it. A bug in poudriere sure. >=20 >> =20 >> Added a comment to Makefile: >> =20 >> # Regression that apparently causes use-after-free in=C2=B7 >> # http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=3Dmaint= &id=3D47fee2ef6a23ae06f680336ffde57caa64604a4c >> # and can be reproduced under MALLOC_OPTIONS=3DJ regime on 9.3-amd64= , or >> # alternatively confirmed with valgrind, was reported upstream. >> # >> # Let's wait until 2014-10-15 whether upstream provides a fix, >> # else we'll bump PORTEPOCH and roll back to 1.42.10; >> # 1.42.11 is also faulty. >> >> Modified: >> head/sysutils/e2fsprogs/Makefile >> >> Modified: head/sysutils/e2fsprogs/Makefile >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >> --- head/sysutils/e2fsprogs/Makefile Tue Oct 7 23:26:28 2014 (r370410= ) >> +++ head/sysutils/e2fsprogs/Makefile Tue Oct 7 23:43:46 2014 (r370411= ) >> @@ -53,10 +53,6 @@ USES+=3D gettext iconv:build >> =20 >> .include >> =20 >> -.if ${OSVERSION} >=3D 1100000 >> -BROKEN=3D Segfaults and miscalculations observed on redports >> -.endif >> - >> .if ${PORT_OPTIONS:MNLS} >> PLIST_SUB=3D NLS=3D"" >> . if empty(ICONV_LIB) >> @@ -84,6 +80,16 @@ post-patch:: >> .endfor >> =20 >> .if ${MASTERDIR} =3D=3D ${.CURDIR} >> +# Regression that apparently causes use-after-free in=20 >> +# http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=3Dmaint&= id=3D47fee2ef6a23ae06f680336ffde57caa64604a4c >> +# and can be reproduced under MALLOC_OPTIONS=3DJ regime on 9.3-amd64,= or >> +# alternatively confirmed with valgrind, was reported upstream. >> +# >> +# Let's wait until 2014-10-15 whether upstream provides a fix, >> +# else we'll bump PORTEPOCH and roll back to 1.42.10; >> +# 1.42.11 is also faulty. >> +BROKEN=3D Use-after-free bug, see ${.CURDIR}/Makefile comments for d= etails >> + >> pre-build: >> # fix up Makefile ordering for parallel builds >> cd ${WRKSRC}/lib/et && ${DO_MAKE_BUILD} compile_et >> >=20 >=20 --=20 Regards, Bryan Drewery --KMkS2UgVxHlI1seFeP5UcH7i0aI9IW4hg Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNI08AAoJEDXXcbtuRpfPaskIALnAA19giIS846zisyYKIDwt OLb8h76kpNyG2TbNJMpVRZsFzJ7QkecssAg//mHD4GL+tTqtAFC6mXaG3YZUTcXg qpUC/1Cgb6O44OT2UjE0MFbh7T+VVrMfW+xER1QnkfTEAqDpXLsCAURRaOijCVor eCTAP+/TljiQQtyKUXMCtNhTxjoKqZ2rwZYHtqcInLzfUeKSFIHaUAm3miH3F3Z0 8F9AR+QBm2TRiqaKBEBv5gFWqgBRafRo0E9PG28zAV+f9TT2rS0Sw9Xg97DvkYpX hYaAY1X6T6nMwBbR/bNDulPnCnsqqPkpA1pd0sAu+8H79gmWIIvjOaXADGKJR3s= =+rtO -----END PGP SIGNATURE----- --KMkS2UgVxHlI1seFeP5UcH7i0aI9IW4hg-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 05:52:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45A7E5A5; Wed, 8 Oct 2014 05:52:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32173A6B; Wed, 8 Oct 2014 05:52:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s985qI2W067509; Wed, 8 Oct 2014 05:52:18 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s985qIr8067508; Wed, 8 Oct 2014 05:52:18 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080552.s985qIr8067508@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 05:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370412 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 05:52:18 -0000 Author: bapt Date: Wed Oct 8 05:52:17 2014 New Revision: 370412 URL: https://svnweb.freebsd.org/changeset/ports/370412 QAT: https://qat.redports.org/buildarchive/r370412/ Log: Make info files absolute patch in plist That makes them more @cwd safe while simplifying the infra Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Tue Oct 7 23:43:46 2014 (r370411) +++ head/Mk/bsd.port.mk Wed Oct 8 05:52:17 2014 (r370412) @@ -5227,20 +5227,9 @@ add-plist-buildinfo: .if !target(add-plist-info) .if defined(INFO) add-plist-info: - @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \ - [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \ - ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ - fi -# Process GNU INFO files at package install/deinstall time .for i in ${INFO} - @${LS} ${STAGEDIR}${PREFIX}/${INFO_PATH}/$i.info* | ${SED} -e s:${STAGEDIR}${PREFIX}/:@info\ :g >> ${TMPPLIST} + @${LS} ${STAGEDIR}${PREFIX}/${INFO_PATH}/$i.info* | ${SED} -e s:${STAGEDIR}:@info\ :g >> ${TMPPLIST} .endfor -.if (${PREFIX} != "/usr") - @${ECHO_CMD} "@unexec indexinfo %D/${INFO_PATH}" >> ${TMPPLIST} -.if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE}) - @${ECHO_CMD} "@dir ${INFO_PATH}" >> ${TMPPLIST} -.endif -.endif .endif .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 05:54:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DB7F7F4; Wed, 8 Oct 2014 05:54:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A354A84; Wed, 8 Oct 2014 05:54:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s985sYsi067910; Wed, 8 Oct 2014 05:54:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s985sYVY067909; Wed, 8 Oct 2014 05:54:34 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080554.s985sYVY067909@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 05:54:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370413 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 05:54:34 -0000 Author: bapt Date: Wed Oct 8 05:54:33 2014 New Revision: 370413 URL: https://svnweb.freebsd.org/changeset/ports/370413 QAT: https://qat.redports.org/buildarchive/r370413/ Log: Use absolute patch for rc scripts in plist That avoids playing with @cwd Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 8 05:52:17 2014 (r370412) +++ head/Mk/bsd.port.mk Wed Oct 8 05:54:33 2014 (r370413) @@ -5248,19 +5248,16 @@ add-plist-post: install-rc-script: .if defined(USE_RCORDER) @${ECHO_MSG} "===> Staging early rc.d startup script(s)" - @${ECHO_CMD} "@cwd /" >> ${TMPPLIST} @for i in ${USE_RCORDER}; do \ ${INSTALL_SCRIPT} ${WRKDIR}/$${i} ${STAGEDIR}/etc/rc.d/$${i%.sh}; \ - ${ECHO_CMD} "etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \ + ${ECHO_CMD} "/etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \ done - @${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST} .endif .if defined(USE_RC_SUBR) && ${USE_RC_SUBR:tu} != "YES" @${ECHO_MSG} "===> Staging rc.d startup script(s)" - @${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST} @for i in ${USE_RC_SUBR}; do \ ${INSTALL_SCRIPT} ${WRKDIR}/$${i} ${STAGEDIR}${PREFIX}/etc/rc.d/$${i%.sh}; \ - ${ECHO_CMD} "etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \ + ${ECHO_CMD} "${PREFIX}/etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \ done .endif .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 06:06:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E15BBF0; Wed, 8 Oct 2014 06:06:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E3484B85; Wed, 8 Oct 2014 06:06:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9866YIN072993; Wed, 8 Oct 2014 06:06:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9866YAW072992; Wed, 8 Oct 2014 06:06:34 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080606.s9866YAW072992@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 06:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370414 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 06:06:35 -0000 Author: bapt Date: Wed Oct 8 06:06:34 2014 New Revision: 370414 URL: https://svnweb.freebsd.org/changeset/ports/370414 QAT: https://qat.redports.org/buildarchive/r370414/ Log: Use absolute path for PORTDATA PORTDOCS and PORTEXAMPLES That makes them @cwd safe Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 8 05:54:33 2014 (r370413) +++ head/Mk/bsd.port.mk Wed Oct 8 06:06:34 2014 (r370414) @@ -5164,56 +5164,42 @@ ${TMPPLIST_SORT}: ${TMPPLIST} .if !target(add-plist-docs) .if defined(PORTDOCS) && !defined(NOPORTDOCS) add-plist-docs: - @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \ - [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \ - ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ - fi .for x in ${PORTDOCS} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${DOCSDIR}/${x} ]; then \ - ${ECHO_CMD} ${DOCSDIR_REL}/${x} >> ${TMPPLIST}; \ + ${ECHO_CMD} ${DOCSDIR}/${x} >> ${TMPPLIST}; \ fi;fi .endfor @${FIND} -P ${PORTDOCS:S/^/${STAGEDIR}${DOCSDIR}\//} ! -type d 2>/dev/null | \ - ${SED} -ne 's,^${STAGEDIR}${PREFIX}/,,p' >> ${TMPPLIST} + ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} .endif .endif .if !target(add-plist-examples) .if defined(PORTEXAMPLES) && !defined(NOPORTEXAMPLES) add-plist-examples: - @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \ - [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \ - ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ - fi .for x in ${PORTEXAMPLES} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${EXAMPLESDIR}/${x} ]; then \ - ${ECHO_CMD} ${EXAMPLESDIR}/${x} | \ - ${SED} -e 's,^${PREFIX}/,,' >> ${TMPPLIST}; \ + ${ECHO_CMD} ${EXAMPLESDIR}/${x} >> ${TMPPLIST}; \ fi;fi .endfor @${FIND} -P ${PORTEXAMPLES:S/^/${STAGEDIR}${EXAMPLESDIR}\//} ! -type d 2>/dev/null | \ - ${SED} -ne 's,^${STAGEDIR}${PREFIX}/,,p' >> ${TMPPLIST} + ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} .endif .endif .if !target(add-plist-data) .if defined(PORTDATA) add-plist-data: - @if ${EGREP} -qe '^@cw?d' ${TMPPLIST} && \ - [ "`${SED} -En -e '/^@cw?d[ ]*/s,,,p' ${TMPPLIST} | ${TAIL} -n 1`" != "${PREFIX}" ]; then \ - ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ - fi .for x in ${PORTDATA} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${DATADIR}/${x} ]; then \ - ${ECHO_CMD} ${DATADIR}/${x} | \ - ${SED} -e 's,^${PREFIX}/,,' >> ${TMPPLIST}; \ + ${ECHO_CMD} ${DATADIR}/${x} >> ${TMPPLIST}; \ fi;fi .endfor @${FIND} -P ${PORTDATA:S/^/${STAGEDIR}${DATADIR}\//} ! -type d 2>/dev/null | \ - ${SED} -ne 's,^${STAGEDIR}${PREFIX}/,,p' >> ${TMPPLIST} + ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} .endif .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 06:13:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE5BDD4C; Wed, 8 Oct 2014 06:13:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C07C0C4B; Wed, 8 Oct 2014 06:13:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s986DhBj077679; Wed, 8 Oct 2014 06:13:43 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s986Dhs5077678; Wed, 8 Oct 2014 06:13:43 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080613.s986Dhs5077678@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 06:13:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370415 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 06:13:44 -0000 Author: bapt Date: Wed Oct 8 06:13:43 2014 New Revision: 370415 URL: https://svnweb.freebsd.org/changeset/ports/370415 QAT: https://qat.redports.org/buildarchive/r370415/ Log: Get rid of _DESKTOPDIR_REL and use DESKTOPDIR everywhere That avoids playing with @cwd Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 8 06:06:34 2014 (r370414) +++ head/Mk/bsd.port.mk Wed Oct 8 06:13:43 2014 (r370415) @@ -2821,12 +2821,6 @@ PLIST_SUB+= DOCSDIR="${DOCSDIR_REL}" \ ETCDIR="${ETCDIR_REL}" DESKTOPDIR?= ${PREFIX}/share/applications -_DESKTOPDIR_REL= ${DESKTOPDIR:S,^${PREFIX}/,,}/ - -.if ${_DESKTOPDIR_REL} == ${DESKTOPDIR}/ -# DESKTOPDIR is not beneath PREFIX -_DESKTOPDIR_REL= -.endif .MAIN: all @@ -5857,9 +5851,6 @@ check-desktop-entries: .if defined(DESKTOP_ENTRIES) install-desktop-entries: @set -- ${DESKTOP_ENTRIES} XXX; \ - if [ -z "${_DESKTOPDIR_REL}" ]; then \ - ${ECHO_CMD} "@cwd ${DESKTOPDIR}" >> ${TMPPLIST}; \ - fi; \ while [ $$# -gt 6 ]; do \ filename="`${ECHO_CMD} "$$4" | ${SED} -e 's,^/,,g;s,[/ ],_,g;s,[^_[:alnum:]],,g'`.desktop"; \ pathname="${STAGEDIR}${DESKTOPDIR}/$$filename"; \ @@ -5867,7 +5858,7 @@ install-desktop-entries: if [ -z "$$categories" ]; then \ categories="`cd ${.CURDIR} && ${MAKE} desktop-categories`"; \ fi; \ - ${ECHO_CMD} "${_DESKTOPDIR_REL}$$filename" >> ${TMPPLIST}; \ + ${ECHO_CMD} "${DESKTOPDIR}/$$filename" >> ${TMPPLIST}; \ ${ECHO_CMD} "[Desktop Entry]" > $$pathname; \ ${ECHO_CMD} "Type=Application" >> $$pathname; \ ${ECHO_CMD} "Version=1.0" >> $$pathname; \ @@ -5887,10 +5878,7 @@ install-desktop-entries: ${ECHO_CMD} "StartupNotify=$$6" >> $$pathname; \ fi; \ shift 6; \ - done; \ - if [ -z "${_DESKTOPDIR_REL}" ]; then \ - ${ECHO_CMD} "@cwd ${PREFIX}" >> ${TMPPLIST}; \ - fi + done .endif .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 06:19:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3ACAE92; Wed, 8 Oct 2014 06:19:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFE12C6E; Wed, 8 Oct 2014 06:19:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s986JsHd079393; Wed, 8 Oct 2014 06:19:54 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s986JsUh079392; Wed, 8 Oct 2014 06:19:54 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410080619.s986JsUh079392@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 8 Oct 2014 06:19:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370416 - head/Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 06:19:54 -0000 Author: antoine Date: Wed Oct 8 06:19:54 2014 New Revision: 370416 URL: https://svnweb.freebsd.org/changeset/ports/370416 QAT: https://qat.redports.org/buildarchive/r370416/ Log: info keyword now handles full paths With hat: portmgr Modified: head/Mk/Scripts/check-stagedir.sh Modified: head/Mk/Scripts/check-stagedir.sh ============================================================================== --- head/Mk/Scripts/check-stagedir.sh Wed Oct 8 06:13:43 2014 (r370415) +++ head/Mk/Scripts/check-stagedir.sh Wed Oct 8 06:19:54 2014 (r370416) @@ -71,7 +71,10 @@ parse_plist() { @info\ *|@shell\ *) set -- $line shift - echo "${comment}${cwd}/$@" + case "$@" in + /*) echo "${comment}$@" ;; + *) echo "${comment}${cwd}/$@" ;; + esac ;; @sample\ *) set -- $line From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 06:40:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57E3D2D7; Wed, 8 Oct 2014 06:40:02 +0000 (UTC) Received: from [IPv6:::1] (localhost6.localdomain6 [IPv6:::1]) by apollo.emma.line.org (Postfix) with ESMTP id BBAB823CEED; Wed, 8 Oct 2014 08:40:00 +0200 (CEST) Message-ID: <5434DC40.7050807@FreeBSD.org> Date: Wed, 08 Oct 2014 08:40:00 +0200 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370388 - in head: devel/e2fsprogs-libss misc/e2fsprogs-libblkid misc/e2fsprogs-libuuid sysutils/e2fsprogs sysutils/e2fsprogs/files References: <201410071915.s97JFrQo061043@svn.freebsd.org> <54344848.1040707@FreeBSD.org> <54347CBA.1050206@FreeBSD.org> <5434864D.7000204@FreeBSD.org> In-Reply-To: <5434864D.7000204@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 06:40:02 -0000 Am 08.10.2014 um 02:33 schrieb Bryan Drewery: > On 10/7/2014 6:52 PM, Matthias Andree wrote: >> I am not sure I got what you're trying to convey. You may be >> overestimating the scope of the issue, given the findings after the commit. >> >> I do not consider 11-CURRENT a reference, nor is 11 a "RELEASE". > > I knew you would get tripped up on the word 'release'. It still does not > change my point. The port was working, and now is not. Now we provide no > package for head users because of an upgrade. It's really an > unacceptable situation to me. > > My private mail to you was implying that if ports could support multiple > versions per origin (like gentoo portage), then you could mark the > default version was your updated one on all branches/releases except > head, where it could remain the working version. Hi Bryan, Ah that's whence your "one version" came. General statements: I don't object to supporting OSVERSION-dependent port versions, and time lines permitting, I'd be happy to review concepts and specifications (i. e. documents) how we want to do that in ports, rather than see people rush forward with code without a sound concept, but I don't think it will buy us much. Arguably poudriere as the builder infrastructure might want to do atomic port replacements in its repository, i. e. only replace the port and its Latest/ link in particular if it could build successfully and is not marked BROKEN/FORBIDDEN/... Regarding metadata on the rollback, I am trying to avoid PORTEPOCH because it is an abomination (also because the epoch is being postfixed with comma, although it is the most significant component in the version designation and hence should be prefixed), we would have to lug this around forever for what I believe will be a temporary situation. I'd rather call the portversion 1.42.12.0.1.42.10_rolledback or something because that is then temporary and I can roll forward to 1.42.12.1 (instead of 1.42.12_1) or 1.42.13. Further e2fsprogs-1.42.12-specific statements: It all wouldn't really save the packages this time though since it turns out that 11-CURRENT uncovered bugs present on all systems but not normally exposed by the self-test suite. export MALLOC_OPTIONS=J and see the port fail on FreeBSD 9, for instance, too. So we don't have the package at all for now, unless someone reverts the port back to 1.42.10, but I propose to wait for upstream's response (none yet) for a few days. Anyone who needs the package and wants to risk its misprocessing can build it with "TRYBROKEN=23" or downgrade the port. I still hope upstream can come up with a patch shortly so we can just move forward to 1.42.12_1 and go on with life. I think we have bigger fish to fry than wasting time on 100% availability of a low-profile package. Let's wait what we get before the weekend and then decide if we go forward with a yet-to-come upstream patch or new release, or if we go backward to the previous version. If someone thinks e2fsprogs is a high-profile port (FreeNAS or PCBSD default install, whichever), please fill me in. Cheers, Matthias From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 06:45:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6934A404; Wed, 8 Oct 2014 06:45:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5542AEDB; Wed, 8 Oct 2014 06:45:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s986jOWx092998; Wed, 8 Oct 2014 06:45:24 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s986jO7p092997; Wed, 8 Oct 2014 06:45:24 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080645.s986jO7p092997@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 06:45:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370418 - head/graphics/lensfun X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 06:45:24 -0000 Author: bapt Date: Wed Oct 8 06:45:23 2014 New Revision: 370418 URL: https://svnweb.freebsd.org/changeset/ports/370418 QAT: https://qat.redports.org/buildarchive/r370418/ Log: Stop checking make version to allow building with gmake 4.1 Modified: head/graphics/lensfun/Makefile Modified: head/graphics/lensfun/Makefile ============================================================================== --- head/graphics/lensfun/Makefile Wed Oct 8 06:27:29 2014 (r370417) +++ head/graphics/lensfun/Makefile Wed Oct 8 06:45:23 2014 (r370418) @@ -13,10 +13,9 @@ LICENSE= LGPL3 LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png -USES= gmake pkgconfig tar:bzip2 +USES= gmake pkgconfig python:build tar:bzip2 USE_GNOME= glib20 USE_LDCONFIG= yes -USE_PYTHON_BUILD= yes HAS_CONFIGURE= yes CONFIGURE_ENV= LD="${CXX}" AR="${AR}" @@ -29,7 +28,8 @@ PLIST_SUB+= LIBVERSION=${LIBVERSION} post-patch: .SILENT ${REINPLACE_CMD} -e '1s|#!/usr/bin/python|#!${PYTHON_CMD}|' \ - -e 's|make --version|g&|' -e '/DOXYGEN/d' ${WRKSRC}/configure + -e 's|make --version|g&|' -e '/DOXYGEN/d' \ + -e '/GNU Make/d' ${WRKSRC}/configure ${REINPLACE_CMD} -e \ 's|CONF_LIBDIR)pkgconfig|CONF_LIBDIR)../libdata/pkgconfig|' \ ${WRKSRC}/build/tibs/compiler/pkgconfig.mak From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 06:47:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mandree.no-ip.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DB8C523; Wed, 8 Oct 2014 06:47:47 +0000 (UTC) Received: from [IPv6:::1] (localhost6.localdomain6 [IPv6:::1]) by apollo.emma.line.org (Postfix) with ESMTP id A605B23CEED; Wed, 8 Oct 2014 08:47:45 +0200 (CEST) Message-ID: <5434DE11.3030205@FreeBSD.org> Date: Wed, 08 Oct 2014 08:47:45 +0200 From: Matthias Andree User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Bryan Drewery , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370411 - head/sysutils/e2fsprogs References: <201410072343.s97Nhkgo093413@svn.freebsd.org> <54348726.1080004@FreeBSD.org> <54348D3C.6080600@FreeBSD.org> In-Reply-To: <54348D3C.6080600@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 06:47:47 -0000 Am 08.10.2014 um 03:02 schrieb Bryan Drewery: > On 10/7/2014 7:36 PM, Bryan Drewery wrote: >> On 10/7/2014 6:43 PM, Matthias Andree wrote: >>> Author: mandree >>> Date: Tue Oct 7 23:43:46 2014 >>> New Revision: 370411 >>> URL: https://svnweb.freebsd.org/changeset/ports/370411 >>> QAT: https://qat.redports.org/buildarchive/r370411/ >>> >>> Log: >>> Mark broken everywhere, upstream bug (already reported). >>> To avoid PORTEPOCH/rollback-and-forth-again, let's give upstream a few >>> days for a fix before rolling back to 1.42.10. >> >> This is horrible. We're providing no packages for any branch now to >> avoid bumping a metadata counter? >> >> > > Unfortunately poudriere does not care that this is BROKEN. It reads > PKGVERSION, sees it is newer, deletes the old package, then finally > finds it should IGNORE it. > > A bug in poudriere sure. Not so fast. This is not something that poudriere could "decide" on its own. Actually, there is a matter of context and perhaps policy. Consider: is the port broken but the old version is fine and the solver of pkg finds it sufficient to go with all other packages, then leaving the old package in place would work. If, however, the old version of some port were to be vulnerable, and the current version were known to not fix the vuln', then poudriere would have done the right thing by removing the BROKEN/FORBIDDEN/... package. From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 07:14:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36081CB3; Wed, 8 Oct 2014 07:14:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 220AE213; Wed, 8 Oct 2014 07:14:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s987Et7O007311; Wed, 8 Oct 2014 07:14:55 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s987Es9j007310; Wed, 8 Oct 2014 07:14:54 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080714.s987Es9j007310@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 07:14:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370419 - head/comms/smstools3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 07:14:55 -0000 Author: bapt Date: Wed Oct 8 07:14:54 2014 New Revision: 370419 URL: https://svnweb.freebsd.org/changeset/ports/370419 QAT: https://qat.redports.org/buildarchive/r370419/ Log: Fix build with gmake 4.1 Modified: head/comms/smstools3/Makefile Modified: head/comms/smstools3/Makefile ============================================================================== --- head/comms/smstools3/Makefile Wed Oct 8 06:45:23 2014 (r370418) +++ head/comms/smstools3/Makefile Wed Oct 8 07:14:54 2014 (r370419) @@ -56,6 +56,7 @@ post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%STAGEDIR%%|${STAGEDIR}|g' \ ${WRKSRC}/Makefile ${WRKSRC}/install.sh ${WRKSRC}/src/smsd_cfg.h + @${REINPLACE_CMD} -e 's,^override,\toverride,g' ${WRKSRC}/src/Makefile @${REINPLACE_CMD} -e 's|/dev/ttyS0|${SMSTOOLS_DEFAULT_COMPORT}|g' \ -e 's|%%SMSD_USER%%|${SMSD_USER}|' \ -e 's|%%SMSD_GROUP%%|${SMSD_GROUP}|' \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 07:25:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4ACFE63; Wed, 8 Oct 2014 07:25:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90A8631E; Wed, 8 Oct 2014 07:25:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s987PJh9012098; Wed, 8 Oct 2014 07:25:19 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s987PJdL012097; Wed, 8 Oct 2014 07:25:19 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410080725.s987PJdL012097@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 07:25:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370420 - head/java/openjdk8/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 07:25:19 -0000 Author: bapt Date: Wed Oct 8 07:25:18 2014 New Revision: 370420 URL: https://svnweb.freebsd.org/changeset/ports/370420 QAT: https://qat.redports.org/buildarchive/r370420/ Log: Fix build with gmake 4.1 Added: head/java/openjdk8/files/patch-hotspot__make__bsd__makefiles__adjust-mflags.sh (contents, props changed) Added: head/java/openjdk8/files/patch-hotspot__make__bsd__makefiles__adjust-mflags.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/openjdk8/files/patch-hotspot__make__bsd__makefiles__adjust-mflags.sh Wed Oct 8 07:25:18 2014 (r370420) @@ -0,0 +1,11 @@ +--- hotspot/make/bsd/makefiles/adjust-mflags.sh.orig 2014-03-04 02:52:06 UTC ++++ hotspot/make/bsd/makefiles/adjust-mflags.sh +@@ -64,7 +64,7 @@ + echo "$MFLAGS" \ + | sed ' + s/^-/ -/ +- s/ -\([^ ][^ ]*\)j/ -\1 -j/ ++ s/ -\([^ I][^ I]*\)j/ -\1 -j/ + s/ -j[0-9][0-9]*/ -j/ + s/ -j\([^ ]\)/ -j -\1/ + s/ -j/ -j'${HOTSPOT_BUILD_JOBS:-${default_build_jobs}}'/ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 07:56:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 569B3531; Wed, 8 Oct 2014 07:56:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2906C82D; Wed, 8 Oct 2014 07:56:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s987u6Jn026315; Wed, 8 Oct 2014 07:56:06 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s987u585026309; Wed, 8 Oct 2014 07:56:05 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201410080756.s987u585026309@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Wed, 8 Oct 2014 07:56:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370421 - head/lang/php56 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 07:56:06 -0000 Author: ale Date: Wed Oct 8 07:56:04 2014 New Revision: 370421 URL: https://svnweb.freebsd.org/changeset/ports/370421 QAT: https://qat.redports.org/buildarchive/r370421/ Log: Update to 5.6.1 release. Modified: head/lang/php56/Makefile head/lang/php56/distinfo head/lang/php56/pkg-plist Modified: head/lang/php56/Makefile ============================================================================== --- head/lang/php56/Makefile Wed Oct 8 07:25:18 2014 (r370420) +++ head/lang/php56/Makefile Wed Oct 8 07:56:04 2014 (r370421) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= php56 -PORTVERSION= 5.6.0 -PORTREVISION?= 1 +PORTVERSION= 5.6.1 +PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions Modified: head/lang/php56/distinfo ============================================================================== --- head/lang/php56/distinfo Wed Oct 8 07:25:18 2014 (r370420) +++ head/lang/php56/distinfo Wed Oct 8 07:56:04 2014 (r370421) @@ -1,4 +1,4 @@ -SHA256 (php-5.6.0.tar.bz2) = 097af1be34fc73965e6f8401fd10e73eb56e1969ed4ffd691fb7e91606d0fc09 -SIZE (php-5.6.0.tar.bz2) = 13547979 +SHA256 (php-5.6.1.tar.bz2) = 82c1ccd17830d697d7a4d75bb60ea12be58fa80b4dba101e97db1a6372ca45f0 +SIZE (php-5.6.1.tar.bz2) = 13455884 SHA256 (php-5.5.x-mail-header.patch) = b0b5a7c961b2052eb14d9528e76155cbeaa881fb9b4a49f452f9dab07b6fb1c4 SIZE (php-5.5.x-mail-header.patch) = 3379 Modified: head/lang/php56/pkg-plist ============================================================================== --- head/lang/php56/pkg-plist Wed Oct 8 07:25:18 2014 (r370420) +++ head/lang/php56/pkg-plist Wed Oct 8 07:56:04 2014 (r370421) @@ -244,25 +244,3 @@ man/man1/php-config.1.gz man/man1/phpize.1.gz %%FPM%%man/man8/php-fpm.8.gz %%FPM%%share/php/fpm/status.html -@dirrm include/php/TSRM -@dirrm include/php/Zend -@dirrm include/php/ext/date/lib -@dirrm include/php/ext/date -@dirrm include/php/ext/ereg/regex -@dirrm include/php/ext/ereg -@dirrm include/php/ext/libxml -@dirrm include/php/ext/mysqlnd -@dirrm include/php/ext/pcre -@dirrm include/php/ext/spl -@dirrm include/php/ext/standard -@dirrmtry include/php/ext -@dirrm include/php/main/streams -@dirrm include/php/main -%%CLI%%@dirrm include/php/sapi/cli -%%EMBED%%@dirrm include/php/sapi/embed -%%SAPI_INC%%@dirrm include/php/sapi -@dirrmtry include/php -@dirrm lib/php/build -@dirrmtry lib/php -%%FPM%%@dirrm share/php/fpm -%%FPM%%@dirrm share/php From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 08:32:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 750B8D13; Wed, 8 Oct 2014 08:32:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 608CBBA3; Wed, 8 Oct 2014 08:32:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s988W5PI044534; Wed, 8 Oct 2014 08:32:05 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s988W5lU044533; Wed, 8 Oct 2014 08:32:05 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410080832.s988W5lU044533@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 08:32:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370422 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 08:32:05 -0000 Author: rene Date: Wed Oct 8 08:32:04 2014 New Revision: 370422 URL: https://svnweb.freebsd.org/changeset/ports/370422 QAT: https://qat.redports.org/buildarchive/r370422/ Log: Document new vulnerabilities in www/chromium < 38.0.2125.101 Obtained from: http://googlechromereleases.blogspot.nl/2014/10/stable-channel-update.html MFH: 2014Q4 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Oct 8 07:56:04 2014 (r370421) +++ head/security/vuxml/vuln.xml Wed Oct 8 08:32:04 2014 (r370422) @@ -57,6 +57,77 @@ Notes: --> + + chromium -- multiple vulnerabilities + + + chromium + chromium-pulse + 38.0.2125.101 + + + + +

Google Chrome Releases reports:

+
+

159 security fixes in this release, including 113 found using + MemorySanitizer:

+
    +
  • [416449] Critical CVE-2014-3188: A special thanks to Jüri Aedla + for a combination of V8 and IPC bugs that can lead to remote code + execution outside of the sandbox.
  • +
  • [398384] High CVE-2014-3189: Out-of-bounds read in PDFium. + Credit to cloudfuzzer.
  • +
  • [400476] High CVE-2014-3190: Use-after-free in Events. Credit + to cloudfuzzer.
  • +
  • [402407] High CVE-2014-3191: Use-after-free in Rendering. + Credit to cloudfuzzer.
  • +
  • [403276] High CVE-2014-3192: Use-after-free in DOM. Credit to + cloudfuzzer.
  • +
  • [399655] High CVE-2014-3193: Type confusion in Session Management. + Credit to miaubiz.
  • +
  • [401115] High CVE-2014-3194: Use-after-free in Web Workers. + Credit to Collin Payne.
  • +
  • [403409] Medium CVE-2014-3195: Information Leak in V8. Credit + to Jüri Aedla.
  • +
  • [338538] Medium CVE-2014-3196: Permissions bypass in Windows + Sandbox. Credit to James Forshaw.
  • +
  • [396544] Medium CVE-2014-3197: Information Leak in XSS Auditor. + Credit to Takeshi Terada.
  • +
  • [415307] Medium CVE-2014-3198: Out-of-bounds read in PDFium. + Credit to Atte Kettunen of OUSPG.
  • +
  • [395411] Low CVE-2014-3199: Release Assert in V8 bindings. + Credit to Collin Payne.
  • +
  • [420899] CVE-2014-3200: Various fixes from internal audits, + fuzzing and other initiatives (Chrome 38).
  • +
  • Multiple vulnerabilities in V8 fixed at the tip of the 3.28 + branch (currently 3.28.71.15).
  • +
+
+ +
+ + CVE-2014-3188 + CVE-2014-3189 + CVE-2014-3190 + CVE-2014-3191 + CVE-2014-3192 + CVE-2014-3193 + CVE-2014-3194 + CVE-2014-3195 + CVE-2014-3196 + CVE-2014-3197 + CVE-2014-3198 + CVE-2014-3199 + CVE-2014-3200 + http://googlechromereleases.blogspot.nl/2014/10/stable-channel-update.html + + + 2014-10-07 + 2014-10-08 + +
+ Bugzilla multiple security issues From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 08:42:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 610EC18F; Wed, 8 Oct 2014 08:42:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A76CCD1; Wed, 8 Oct 2014 08:42:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s988g3bb052658; Wed, 8 Oct 2014 08:42:03 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s988fq88052585; Wed, 8 Oct 2014 08:41:52 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410080841.s988fq88052585@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 08:41:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370423 - in head/www/chromium: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 08:42:03 -0000 Author: rene Date: Wed Oct 8 08:41:51 2014 New Revision: 370423 URL: https://svnweb.freebsd.org/changeset/ports/370423 QAT: https://qat.redports.org/buildarchive/r370423/ Log: www/chromium: Update to 38.0.2125.101 and clean up pkg-plist Thanks to all contributors: "tomek", "pavoropaev", Carlos Medina Obtained from: https://github.com/gliaskos/freebsd-chromium/ MFH: 2014Q4 Security: http://www.vuxml.org/freebsd/d2bbcc01-4ec3-11e4-ab3f-00262d5ed8ee.html Added: head/www/chromium/files/patch-chrome__browser__safe_browsing__incident_reporting__incident_handler_util.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ssl__ssl_blocking_page.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__browser_view_prefs.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__views__apps__chrome_native_app_window_views.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__views__chrome_views_delegate.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__views__chrome_views_delegate.h (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__views__frame__opaque_browser_frame_view.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__views__frame__opaque_browser_frame_view_layout.cc (contents, props changed) head/www/chromium/files/patch-chrome__browser__ui__views__tabs__tab_strip.cc (contents, props changed) head/www/chromium/files/patch-chrome__renderer__pepper__pepper_flash_font_file_host.h (contents, props changed) head/www/chromium/files/patch-components__omaha_query_params__omaha_query_params.cc (contents, props changed) head/www/chromium/files/patch-content__browser__gpu__gpu_data_manager_impl_private.cc (contents, props changed) head/www/chromium/files/patch-content__browser__tracing__tracing_ui.cc (contents, props changed) head/www/chromium/files/patch-content__gpu__gpu_child_thread.cc (contents, props changed) head/www/chromium/files/patch-content__gpu__gpu_main.cc (contents, props changed) head/www/chromium/files/patch-content__public__common__content_switches.cc (contents, props changed) head/www/chromium/files/patch-content__public__common__content_switches.h (contents, props changed) head/www/chromium/files/patch-device__serial__serial_io_handler_posix.cc (contents, props changed) head/www/chromium/files/patch-extensions__browser__api__serial__serial_api.cc (contents, props changed) head/www/chromium/files/patch-gpu__config__gpu_info_collector.cc (contents, props changed) head/www/chromium/files/patch-gpu__config__gpu_util.cc (contents, props changed) head/www/chromium/files/patch-net__http__http_auth_gssapi_posix.h (contents, props changed) head/www/chromium/files/patch-net__http__mock_gssapi_library_posix.h (contents, props changed) head/www/chromium/files/patch-third_party__pdfium__third_party__logging.h (contents, props changed) head/www/chromium/files/patch-third_party__webrtc__base__cpumonitor.cc (contents, props changed) head/www/chromium/files/patch-third_party__webrtc__base__ipaddress.h (contents, props changed) head/www/chromium/files/patch-third_party__webrtc__base__linux.cc (contents, props changed) head/www/chromium/files/patch-third_party__webrtc__base__linux.h (contents, props changed) head/www/chromium/files/patch-third_party__webrtc__base__network.h (contents, props changed) head/www/chromium/files/patch-third_party__webrtc__base__systeminfo.cc (contents, props changed) head/www/chromium/files/patch-ui__views__window__custom_frame_view.cc (contents, props changed) head/www/chromium/files/patch-v8__src__base__platform__platform-freebsd.cc (contents, props changed) head/www/chromium/files/patch-v8__src__base__platform__platform-posix.cc (contents, props changed) head/www/chromium/files/patch-v8__src__preparser.h (contents, props changed) Deleted: head/www/chromium/files/extra-patch-fixup-execinfo head/www/chromium/files/patch-chrome__browser__browser_process_impl.cc head/www/chromium/files/patch-chrome__browser__extensions__api__serial__serial_api.cc head/www/chromium/files/patch-chrome__browser__extensions__api__serial__serial_connection_posix.cc head/www/chromium/files/patch-chrome__browser__notifications__message_center_notification_manager.cc head/www/chromium/files/patch-chrome__browser__omaha_query_params__omaha_query_params.cc head/www/chromium/files/patch-content__renderer__media__webrtc_audio_renderer.cc head/www/chromium/files/patch-third_party__WebKit__Source__config.h head/www/chromium/files/patch-third_party__WebKit__Source__web__linux__WebFontRendering.cpp head/www/chromium/files/patch-third_party__WebKit__Source__wtf__Assertions.cpp head/www/chromium/files/patch-third_party__WebKit__Source__wtf__DateMath.cpp head/www/chromium/files/patch-third_party__libjingle__source__talk__base__cpumonitor.cc head/www/chromium/files/patch-third_party__libjingle__source__talk__base__ipaddress.h head/www/chromium/files/patch-third_party__libjingle__source__talk__base__linux.cc head/www/chromium/files/patch-third_party__libjingle__source__talk__base__linux.h head/www/chromium/files/patch-third_party__libjingle__source__talk__base__network.h head/www/chromium/files/patch-third_party__libjingle__source__talk__base__systeminfo.cc head/www/chromium/files/patch-ui__resources__ui_resources.grd head/www/chromium/files/patch-v8__src__platform-freebsd.cc Modified: head/www/chromium/Makefile head/www/chromium/distinfo head/www/chromium/files/chromium-browser.desktop.in head/www/chromium/files/extra-patch-clang head/www/chromium/files/extra-patch-gcc head/www/chromium/files/patch-base__base.gyp head/www/chromium/files/patch-base__base.gypi head/www/chromium/files/patch-base__debug__stack_trace_posix.cc head/www/chromium/files/patch-base__files__file_path_watcher_kqueue.h head/www/chromium/files/patch-base__posix__unix_domain_socket_linux.cc head/www/chromium/files/patch-base__posix__unix_domain_socket_linux_unittest.cc head/www/chromium/files/patch-base__process__internal_linux.h head/www/chromium/files/patch-base__process__launch.cc head/www/chromium/files/patch-base__process__launch.h head/www/chromium/files/patch-base__process__memory_unittest.cc head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc head/www/chromium/files/patch-base__process__process_metrics.h head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc head/www/chromium/files/patch-base__security_unittest.cc head/www/chromium/files/patch-base__strings__safe_sprintf.cc head/www/chromium/files/patch-base__sys_info_freebsd.cc head/www/chromium/files/patch-base__sys_info_posix.cc head/www/chromium/files/patch-base__test__expectations__expectation.cc head/www/chromium/files/patch-base__test__launcher__test_launcher.cc head/www/chromium/files/patch-base__threading__platform_thread_linux.cc head/www/chromium/files/patch-breakpad__breakpad.gyp head/www/chromium/files/patch-build__common.gypi head/www/chromium/files/patch-build__filename_rules.gypi head/www/chromium/files/patch-build__linux__system.gyp head/www/chromium/files/patch-build__linux__unbundle__libwebp.gyp head/www/chromium/files/patch-build__linux__unbundle__openssl.gyp head/www/chromium/files/patch-cc__layers__layer_impl.cc head/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc head/www/chromium/files/patch-chrome__app__chrome_main_delegate.h head/www/chromium/files/patch-chrome__app__chromium_strings.grd head/www/chromium/files/patch-chrome__app__resources__locale_settings.grd head/www/chromium/files/patch-chrome__browser__about_flags.cc head/www/chromium/files/patch-chrome__browser__chrome_browser_main.cc head/www/chromium/files/patch-chrome__browser__chrome_browser_main_posix.cc head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.cc head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.h head/www/chromium/files/patch-chrome__browser__diagnostics__diagnostics_writer.cc head/www/chromium/files/patch-chrome__browser__diagnostics__diagnostics_writer.h head/www/chromium/files/patch-chrome__browser__extensions__api__image_writer_private__image_writer_private_api.cc head/www/chromium/files/patch-chrome__browser__extensions__api__music_manager_private__device_id_linux.cc head/www/chromium/files/patch-chrome__browser__gpu__gl_string_manager.cc head/www/chromium/files/patch-chrome__browser__gpu__gpu_feature_checker.cc head/www/chromium/files/patch-chrome__browser__media__webrtc_log_uploader.cc head/www/chromium/files/patch-chrome__browser__media_galleries__fileapi__mtp_device_map_service.cc head/www/chromium/files/patch-chrome__browser__media_galleries__media_file_system_registry.cc head/www/chromium/files/patch-chrome__browser__media_galleries__media_folder_finder.cc head/www/chromium/files/patch-chrome__browser__memory_details.cc head/www/chromium/files/patch-chrome__browser__net__connection_tester.cc head/www/chromium/files/patch-chrome__browser__plugins__plugins_resource_service.cc head/www/chromium/files/patch-chrome__browser__policy__policy_prefs_browsertest.cc head/www/chromium/files/patch-chrome__browser__ui__startup__startup_browser_creator.cc head/www/chromium/files/patch-chrome__browser__ui__views__first_run_dialog.cc head/www/chromium/files/patch-chrome__browser__ui__views__frame__browser_frame.cc head/www/chromium/files/patch-chrome__browser__ui__webui__about_ui.cc head/www/chromium/files/patch-chrome__browser__ui__webui__chrome_web_ui_controller_factory.cc head/www/chromium/files/patch-chrome__browser__ui__webui__options__browser_options_handler.cc head/www/chromium/files/patch-chrome__browser__ui__webui__options__browser_options_handler.h head/www/chromium/files/patch-chrome__browser__web_applications__web_app.cc head/www/chromium/files/patch-chrome__browser__web_applications__web_app.h head/www/chromium/files/patch-chrome__chrome_browser.gypi head/www/chromium/files/patch-chrome__chrome_browser_extensions.gypi head/www/chromium/files/patch-chrome__chrome_browser_ui.gypi head/www/chromium/files/patch-chrome__common__chrome_paths.cc head/www/chromium/files/patch-chrome__common__chrome_paths.h head/www/chromium/files/patch-chrome__common__chrome_switches.cc head/www/chromium/files/patch-chrome__common__chrome_switches.h head/www/chromium/files/patch-chrome__common__pref_names.cc head/www/chromium/files/patch-chrome__common__pref_names.h head/www/chromium/files/patch-chrome__renderer__pepper__pepper_flash_font_file_host.cc head/www/chromium/files/patch-chrome__renderer__printing__print_web_view_helper.h head/www/chromium/files/patch-chrome__test__base__in_process_browser_test.cc head/www/chromium/files/patch-chrome__test__base__testing_browser_process.h head/www/chromium/files/patch-chrome__test__chromedriver__chrome__chrome_finder.cc head/www/chromium/files/patch-chrome__test__perf__perf_test.cc head/www/chromium/files/patch-chrome__tools__build__linux__sed.sh head/www/chromium/files/patch-components__policy__resources__policy_templates.json head/www/chromium/files/patch-components__policy__tools__generate_policy_source.py head/www/chromium/files/patch-components__storage_monitor.gypi head/www/chromium/files/patch-components__storage_monitor__storage_monitor.cc head/www/chromium/files/patch-components__storage_monitor__storage_monitor_freebsd.cc head/www/chromium/files/patch-components__storage_monitor__storage_monitor_freebsd.h head/www/chromium/files/patch-components__usb_service.gypi head/www/chromium/files/patch-components__usb_service__usb_context.cc head/www/chromium/files/patch-components__usb_service__usb_context_unittest.cc head/www/chromium/files/patch-components__usb_service__usb_device_handle_impl.cc head/www/chromium/files/patch-components__usb_service__usb_device_impl.cc head/www/chromium/files/patch-components__usb_service__usb_error.cc head/www/chromium/files/patch-components__usb_service__usb_interface_impl.cc head/www/chromium/files/patch-components__usb_service__usb_service_impl.cc head/www/chromium/files/patch-content__app__content_main_runner.cc head/www/chromium/files/patch-content__browser__browser_main_loop.cc head/www/chromium/files/patch-content__browser__child_process_launcher.cc head/www/chromium/files/patch-content__browser__download__base_file.cc head/www/chromium/files/patch-content__browser__download__base_file_linux.cc head/www/chromium/files/patch-content__browser__geolocation__location_arbitrator_impl.cc head/www/chromium/files/patch-content__browser__geolocation__wifi_data_provider_freebsd.cc head/www/chromium/files/patch-content__browser__geolocation__wifi_data_provider_freebsd.h head/www/chromium/files/patch-content__browser__indexed_db__indexed_db_backing_store.cc head/www/chromium/files/patch-content__browser__renderer_host__render_widget_host_view_aura.cc head/www/chromium/files/patch-content__common__set_process_title_linux.cc head/www/chromium/files/patch-content__common__set_process_title_linux.h head/www/chromium/files/patch-content__content_browser.gypi head/www/chromium/files/patch-content__content_common.gypi head/www/chromium/files/patch-content__content_tests.gypi head/www/chromium/files/patch-content__public__test__browser_test_base.cc head/www/chromium/files/patch-content__renderer__accessibility__blink_ax_tree_source.cc head/www/chromium/files/patch-content__renderer__media__webrtc_audio_capturer.cc head/www/chromium/files/patch-content__renderer__pepper__usb_key_code_conversion.cc head/www/chromium/files/patch-content__renderer__renderer_main_platform_delegate_linux.cc head/www/chromium/files/patch-content__renderer__renderer_webkitplatformsupport_impl.cc head/www/chromium/files/patch-crypto__nss_util.cc head/www/chromium/files/patch-device__hid__hid.gyp head/www/chromium/files/patch-device__serial__serial.gyp head/www/chromium/files/patch-gpu__config__gpu_control_list.cc head/www/chromium/files/patch-gpu__config__gpu_control_list_unittest.cc head/www/chromium/files/patch-gpu__config__gpu_test_config.cc head/www/chromium/files/patch-gpu__gpu_config.gypi head/www/chromium/files/patch-media__audio__audio_input_volume_unittest.cc head/www/chromium/files/patch-media__base__audio_splicer.cc head/www/chromium/files/patch-media__filters__decrypting_audio_decoder.cc head/www/chromium/files/patch-media__media.gyp head/www/chromium/files/patch-media__video__capture__video_capture_device_factory.cc head/www/chromium/files/patch-native_client__build__common.gypi head/www/chromium/files/patch-native_client__src__shared__platform__platform.gyp head/www/chromium/files/patch-net__base__address_tracker_linux.h head/www/chromium/files/patch-net__base__address_tracker_linux_unittest.cc head/www/chromium/files/patch-net__base__dns_reloader.cc head/www/chromium/files/patch-net__base__mime_util_unittest.cc head/www/chromium/files/patch-net__base__net_util.h head/www/chromium/files/patch-net__base__network_change_notifier.cc head/www/chromium/files/patch-net__dns__address_sorter_posix.cc head/www/chromium/files/patch-net__dns__dns_config_service_posix_unittest.cc head/www/chromium/files/patch-net__dns__dns_session.cc head/www/chromium/files/patch-net__http__http_auth_gssapi_posix.cc head/www/chromium/files/patch-net__net.gyp head/www/chromium/files/patch-net__net.gypi head/www/chromium/files/patch-net__proxy__proxy_config_service_linux.cc head/www/chromium/files/patch-net__proxy__proxy_service.cc head/www/chromium/files/patch-net__quic__congestion_control__rtt_stats.cc head/www/chromium/files/patch-net__socket__socks5_client_socket.cc head/www/chromium/files/patch-net__socket__tcp_listen_socket_unittest.h head/www/chromium/files/patch-net__udp__udp_socket_unittest.cc head/www/chromium/files/patch-ppapi__proxy__file_io_resource.cc head/www/chromium/files/patch-ppapi__shared_impl__private__net_address_private_impl.cc head/www/chromium/files/patch-printing__printing.gyp head/www/chromium/files/patch-remoting__remoting_host.gypi head/www/chromium/files/patch-skia__skia_chrome.gypi head/www/chromium/files/patch-skia__skia_common.gypi head/www/chromium/files/patch-sync__util__get_session_name.cc head/www/chromium/files/patch-sync__util__get_session_name_linux.cc head/www/chromium/files/patch-testing__gtest__include__gtest__internal__gtest-port.h head/www/chromium/files/patch-testing__gtest__src__gtest.cc head/www/chromium/files/patch-third_party__WebKit__Source__core__core.gyp head/www/chromium/files/patch-third_party__WebKit__Source__platform__blink_platform.gyp head/www/chromium/files/patch-third_party__WebKit__Source__platform__heap__ThreadState.cpp head/www/chromium/files/patch-third_party__WebKit__Source__web__web.gyp head/www/chromium/files/patch-third_party__WebKit__Source__wtf__ByteSwap.h head/www/chromium/files/patch-third_party__WebKit__Source__wtf__wtf.gyp head/www/chromium/files/patch-third_party__ffmpeg__chromium__config__Chromium__linux__ia32__config.h head/www/chromium/files/patch-third_party__ffmpeg__libavutil__mem.c head/www/chromium/files/patch-third_party__khronos__khronos.gyp head/www/chromium/files/patch-third_party__libXNVCtrl__libXNVCtrl.gyp head/www/chromium/files/patch-third_party__libexif__libexif.gyp head/www/chromium/files/patch-third_party__libjingle__libjingle.gyp head/www/chromium/files/patch-third_party__libjpeg_turbo__libjpeg.gyp head/www/chromium/files/patch-third_party__libphonenumber__libphonenumber.gyp head/www/chromium/files/patch-third_party__libvpx__unpack_lib_posix.sh head/www/chromium/files/patch-third_party__ots__include__opentype-sanitiser.h head/www/chromium/files/patch-third_party__pdfium__build__standalone.gypi head/www/chromium/files/patch-third_party__pdfium__core__include__fxcrt__fx_system.h head/www/chromium/files/patch-third_party__pdfium__fpdfsdk__src__javascript__PublicMethods.cpp head/www/chromium/files/patch-third_party__pdfium__fpdfsdk__src__jsapi__fxjs_v8.cpp head/www/chromium/files/patch-third_party__pdfium__pdfium.gyp head/www/chromium/files/patch-third_party__sfntly__sfntly.gyp head/www/chromium/files/patch-third_party__sqlite__sqlite.gyp head/www/chromium/files/patch-third_party__webrtc__base__httpcommon.cc head/www/chromium/files/patch-third_party__webrtc__base__network.cc head/www/chromium/files/patch-third_party__webrtc__base__physicalsocketserver.cc head/www/chromium/files/patch-third_party__webrtc__base__stringutils.h head/www/chromium/files/patch-third_party__webrtc__build__common.gypi head/www/chromium/files/patch-third_party__webrtc__modules__audio_device__audio_device.gypi head/www/chromium/files/patch-third_party__webrtc__modules__desktop_capture__desktop_capture.gypi head/www/chromium/files/patch-third_party__webrtc__modules__rtp_rtcp__source__forward_error_correction.cc head/www/chromium/files/patch-third_party__webrtc__modules__video_coding__main__source__receiver.cc head/www/chromium/files/patch-third_party__webrtc__system_wrappers__source__atomic32_posix.cc head/www/chromium/files/patch-third_party__webrtc__system_wrappers__source__cpu_info.cc head/www/chromium/files/patch-third_party__webrtc__system_wrappers__source__thread_posix.cc head/www/chromium/files/patch-third_party__webrtc__voice_engine__voice_engine_defines.h head/www/chromium/files/patch-tools__gyp__pylib__gyp__generator__make.py head/www/chromium/files/patch-tools__gyp__test__additional-targets__src__dir1__actions.gyp head/www/chromium/files/patch-tools__gyp__test__library__src__library.gyp head/www/chromium/files/patch-ui__app_list__app_list_constants.cc head/www/chromium/files/patch-ui__app_list__app_list_constants.h head/www/chromium/files/patch-ui__base__ui_base.gyp head/www/chromium/files/patch-ui__events__event_switches.cc head/www/chromium/files/patch-ui__events__event_switches.h head/www/chromium/files/patch-ui__gl__gl.gyp head/www/chromium/files/patch-ui__shell_dialogs__select_file_dialog.cc head/www/chromium/files/patch-ui__views__views.gyp head/www/chromium/files/patch-ui__views__views_delegate.cc head/www/chromium/files/patch-ui__views__views_delegate.h head/www/chromium/pkg-plist Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/Makefile Wed Oct 8 08:41:51 2014 (r370423) @@ -2,14 +2,13 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 37.0.2062.124 -PORTREVISION= 1 +PORTVERSION= 38.0.2125.101 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= chromium@FreeBSD.org -COMMENT= Mostly BSD-licensed web browser based on WebKit and Gtk+ +COMMENT= Google web browser based on WebKit LICENSE= BSD3CLAUSE LGPL21 MPL LICENSE_COMB= multi @@ -41,7 +40,6 @@ LIB_DEPENDS= libcairo.so:${PORTSDIR}/gra libicuuc.so:${PORTSDIR}/devel/icu \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ libjsoncpp.so:${PORTSDIR}/devel/jsoncpp \ - libminizip.so:${PORTSDIR}/archivers/minizip \ libnspr4.so:${PORTSDIR}/devel/nspr \ libprotobuf.so:${PORTSDIR}/devel/protobuf \ libpng.so:${PORTSDIR}/graphics/png \ @@ -64,7 +62,6 @@ CPE_PRODUCT= chrome USE_PERL5= build USE_XORG= scrnsaverproto x11 xproto xscrnsaver xtst USE_GNOME= glib20 gtk20 dconf libxslt -USE_OPENSSL= yes # must be from base to prevent a link failure against cups SHEBANG_FILES= chrome/tools/build/linux/chrome-wrapper ALL_TARGET= chrome INSTALLS_ICONS= yes @@ -77,6 +74,7 @@ GYP_DEFINES+= \ linux_strip_binary=1 \ test_isolation_mode=noop \ disable_nacl=1 \ + enable_extensions=1 \ enable_one_click_signin=1 \ enable_openmax=1 \ enable_webrtc=1 \ @@ -106,16 +104,13 @@ GYP_DEFINES+= \ use_system_libwebp=1 \ use_system_libxml=1 \ use_system_libxslt=1 \ - use_system_minizip=1 \ use_system_nspr=1 \ - use_system_openssl=1 \ use_system_protobuf=1 \ use_system_re2=1 \ use_system_snappy=1 \ use_system_speex=1 \ use_system_xdg_utils=1 \ - use_system_yasm=1 \ - use_system_zlib=1 + use_system_yasm=1 # allow removal of third_party/adobe GYP_DEFINES+= flapper_version_h_file='${WRKSRC}/flapper_version.h' @@ -169,9 +164,6 @@ GYP_DEFINES+= disable_sse2=1 .if !exists(/usr/libdata/pkgconfig/libusb-1.0.pc) EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libusb-pc .endif -.if ${OSVERSION} >= 1000052 && !exists(${LOCALBASE}/include/execinfo.h) -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-fixup-execinfo -.endif .if ${PORT_OPTIONS:MTEST} .include "Makefile.tests" @@ -191,13 +183,10 @@ CONFIGURE_ENV+= CC="${CC}" \ GYP_DEFINES="${GYP_DEFINES}" MAKE_ENV+= BUILDTYPE=${BUILDTYPE} \ GPERF="${LOCALBASE}/bin/gperf" +MAKE_ARGS= -C out/${BUILDTYPE} .include -#XXX redefine MAKE_ARGS after bsd.port.pre.mk to avoid OPENSSL flags -# leaking in which confuses ninja -MAKE_ARGS= -C out/${BUILDTYPE} - .if ${CHOSEN_COMPILER_TYPE} == gcc GYP_DEFINES+= gcc_version=${CXX:S/g++//} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-gcc @@ -235,11 +224,6 @@ post-patch: @${REINPLACE_CMD} -e "s|/usr/local|${PREFIX}|" \ ${WRKSRC}/chrome/common/chrome_paths.cc \ ${WRKSRC}/base/base.gyp - @${REINPLACE_CMD} -e "s|/usr/bin/gcc|${CC}|" \ - ${WRKSRC}/third_party/WebKit/Source/build/scripts/preprocessor.pm \ - ${WRKSRC}/third_party/WebKit/Source/build/scripts/scripts.gypi - @${REINPLACE_CMD} -e "s|g++|${CXX}|" \ - ${WRKSRC}/tools/compile_test/compile_test.py pre-configure: # phajdan-jr: list of things *not* to remove, so maybe the script @@ -256,6 +240,7 @@ pre-configure: 'base/third_party/xdg_mime' \ 'base/third_party/xdg_user_dirs' \ 'breakpad/src/third_party/curl' \ + 'chrome/third_party/mock4js' \ 'chrome/third_party/mozilla_security_manager' \ 'courgette/third_party' \ 'crypto/third_party/nss' \ @@ -263,11 +248,15 @@ pre-configure: 'net/third_party/nss' \ 'third_party/WebKit' \ 'third_party/angle' \ + 'third_party/angle/src/third_party' \ + 'third_party/blanketjs' \ 'third_party/brotli' \ + 'third_party/boringssl' \ 'third_party/cacheinvalidation' \ 'third_party/cld' \ 'third_party/cros_system_api' \ 'third_party/dom_distiller_js' \ + 'third_party/dom_distiller_js/package/proto_gen/third_party/dom_distiller_js' \ 'third_party/ffmpeg' \ 'third_party/fips181' \ 'third_party/flot' \ @@ -283,6 +272,7 @@ pre-configure: 'third_party/libphonenumber' \ 'third_party/libsrtp' \ 'third_party/libvpx' \ + 'third_party/libvpx/source/libvpx/third_party/x86inc' \ 'third_party/libwebm' \ 'third_party/libxml/chromium' \ 'third_party/libXNVCtrl' \ @@ -297,27 +287,34 @@ pre-configure: 'third_party/opus' \ 'third_party/ots' \ 'third_party/pdfium' \ + 'third_party/pdfium/third_party' \ 'third_party/ply' \ 'third_party/polymer' \ 'third_party/pywebsocket' \ 'third_party/qcms' \ + 'third_party/qunit' \ 'third_party/readability' \ 'third_party/sfntly' \ + 'third_party/sinonjs' \ 'third_party/skia' \ 'third_party/smhasher' \ 'third_party/sqlite' \ 'third_party/tcmalloc' \ 'third_party/tlslite' \ 'third_party/trace-viewer' \ + 'third_party/trace-viewer/third_party' \ + 'third_party/trace-viewer/third_party/tvcm/third_party' \ 'third_party/undoview' \ 'third_party/usrsctp' \ 'third_party/webdriver' \ 'third_party/webrtc' \ 'third_party/widevine' \ 'third_party/x86inc' \ - 'third_party/zlib/google' \ + 'third_party/yasm' \ + 'third_party/zlib' \ 'url/third_party/mozilla' \ 'v8/src/third_party/valgrind' \ + 'v8/third_party/fdlibm' \ --do-remove || ${FALSE} cd ${WRKSRC} && ${PYTHON_CMD} \ ./build/linux/unbundle/replace_gyp_files.py \ Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/distinfo Wed Oct 8 08:41:51 2014 (r370423) @@ -1,4 +1,4 @@ -SHA256 (chromium-37.0.2062.124.tar.xz) = 5a7ca0b1e9b4c51555cf82d8bebf5a8cc5b5810ccacd1087ba82a17b8ac830d8 -SIZE (chromium-37.0.2062.124.tar.xz) = 223325856 -SHA256 (chromium-37.0.2062.124-testdata.tar.xz) = 08a9febabe4995b88ccb99203057fac2056615e35fe5e8907604a1e07e1a9794 -SIZE (chromium-37.0.2062.124-testdata.tar.xz) = 114485636 +SHA256 (chromium-38.0.2125.101.tar.xz) = d3303519ab471a3bc831e9b366e64dc2fe651894e52ae5d1e74de60ee2a1198a +SIZE (chromium-38.0.2125.101.tar.xz) = 248192100 +SHA256 (chromium-38.0.2125.101-testdata.tar.xz) = aca97e1f3d1e4018ef24d7f53c9273b5efde4496f73dc82622184409e9b3076e +SIZE (chromium-38.0.2125.101-testdata.tar.xz) = 115331828 Modified: head/www/chromium/files/chromium-browser.desktop.in ============================================================================== --- head/www/chromium/files/chromium-browser.desktop.in Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/chromium-browser.desktop.in Wed Oct 8 08:41:51 2014 (r370423) @@ -4,7 +4,7 @@ Version=1.0 Encoding=UTF-8 Name=Chromium Comment=%%COMMENT%% -Icon=chrome +Icon=%%DATADIR%%/product_logo_48.png Exec=chrome %U Categories=Application;Network;WebBrowser; MimeType=text/html;text/xml;application/xhtml+xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp; Modified: head/www/chromium/files/extra-patch-clang ============================================================================== --- head/www/chromium/files/extra-patch-clang Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/extra-patch-clang Wed Oct 8 08:41:51 2014 (r370423) @@ -89,17 +89,6 @@ const TrackedTime kTimePosted = TrackedTime() + Duration::FromMilliseconds(1); const TrackedTime kStartOfRun = TrackedTime() + ---- chrome/browser/metrics/thread_watcher.cc 2013-07-03 23:45:55.000000000 -0400 -+++ chrome/browser/metrics/thread_watcher.cc 2013-07-19 01:38:45.000000000 -0400 -@@ -41,7 +41,7 @@ - MSVC_PUSH_DISABLE_WARNING(4748) - - int* NullPointer() { -- return reinterpret_cast(NULL); -+ return static_cast(NULL); - } - - void NullPointerCrash(int line_number) { --- chrome/browser/sync/glue/synced_session_tracker.cc 2013-07-03 23:46:07.000000000 -0400 +++ chrome/browser/sync/glue/synced_session_tracker.cc 2013-07-19 01:50:13.000000000 -0400 @@ -260,7 +260,7 @@ @@ -122,17 +111,17 @@ EXPECT_CALL(callback_, OnError(_)) .Times(2); ---- media/filters/decrypting_video_decoder_unittest.cc.orig 2013-08-30 23:27:39.000000000 +0300 -+++ media/filters/decrypting_video_decoder_unittest.cc 2013-08-30 23:28:27.000000000 +0300 -@@ -417,7 +417,7 @@ - // callback to cancel the |decryptor_ready_cb|. - EXPECT_CALL(*this, RequestDecryptorNotification(IsNullCallback())) - .WillOnce(ResetAndRunCallback(&decryptor_ready_cb, -- reinterpret_cast(NULL))); -+ static_cast(NULL))); - Stop(); - } - +--- media/filters/decrypting_video_decoder_unittest.cc.orig 2014-09-04 02:04:17.000000000 +0200 ++++ media/filters/decrypting_video_decoder_unittest.cc 2014-09-08 20:51:21.000000000 +0200 +@@ -420,7 +420,7 @@ + // NULL callback to cancel the |decryptor_ready_cb|. + EXPECT_CALL(*this, RequestDecryptorNotification(IsNullCallback())).WillOnce( + ResetAndRunCallback(&decryptor_ready_cb, +- reinterpret_cast(NULL), ++ static_cast(NULL), + base::Bind(&DecryptingVideoDecoderTest::DecryptorSet, + base::Unretained(this)))); + EXPECT_CALL(*this, DecryptorSet(_)).Times(0); --- third_party/hunspell/src/hunspell/affentry.hxx 2013-07-03 23:52:32.000000000 -0400 +++ third_party/hunspell/src/hunspell/affentry.hxx 2013-07-19 01:31:57.000000000 -0400 @@ -27,7 +27,7 @@ @@ -153,17 +142,6 @@ char * check_twosfx_morph(const char * word, int len, int optflags, PfxEntry* ppfx, const FLAG needflag = FLAG_NULL); ---- third_party/libjingle/source/talk/base/taskrunner.cc 2013-07-03 23:54:05.000000000 -0400 -+++ third_party/libjingle/source/talk/base/taskrunner.cc 2013-07-19 00:46:25.000000000 -0400 -@@ -119,7 +119,7 @@ - std::vector::iterator it; - it = std::remove(tasks_.begin(), - tasks_.end(), -- reinterpret_cast(NULL)); -+ static_cast(NULL)); - - tasks_.erase(it, tasks_.end()); - --- third_party/sfntly/cpp/src/sfntly/table/core/cmap_table.cc 2013-07-03 23:54:15.000000000 -0400 +++ third_party/sfntly/cpp/src/sfntly/table/core/cmap_table.cc 2013-07-19 00:44:09.000000000 -0400 @@ -439,7 +439,7 @@ @@ -278,3 +256,14 @@ tasks_.erase(it, tasks_.end()); +--- v8/src/unique.h.orig 2014-09-04 02:30:24.000000000 +0200 ++++ v8/src/unique.h 2014-09-10 16:19:37.000000000 +0200 +@@ -167,7 +167,7 @@ + + // TODO(titzer): this is a hack to migrate to Unique incrementally. + static PrintableUnique CreateUninitialized(Zone* zone, Handle handle) { +- return PrintableUnique(zone, reinterpret_cast
(NULL), handle); ++ return PrintableUnique(zone, static_cast
(NULL), handle); + } + + static PrintableUnique CreateImmovable(Zone* zone, Handle handle) { Modified: head/www/chromium/files/extra-patch-gcc ============================================================================== --- head/www/chromium/files/extra-patch-gcc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/extra-patch-gcc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,23 +1,3 @@ ---- base/memory/shared_memory.h.orig 2011-04-01 21:54:26.066717848 +0300 -+++ base/memory/shared_memory.h 2011-04-01 21:55:14.292717813 +0300 -@@ -12,6 +12,7 @@ - - #if defined(OS_POSIX) - #include -+#include - #include - #include "base/file_descriptor_posix.h" - #endif ---- third_party/libjingle/source/talk/base/stream.h.orig 2011-04-01 22:16:30.129717654 +0300 -+++ third_party/libjingle/source/talk/base/stream.h 2011-04-01 22:16:48.245715495 +0300 -@@ -30,6 +30,7 @@ - #ifndef TALK_BASE_STREAM_H__ - #define TALK_BASE_STREAM_H__ - -+#include - #include "talk/base/basictypes.h" - #include "talk/base/criticalsection.h" - #include "talk/base/logging.h" --- media/filters/file_data_source.h.orig 2011-09-14 10:01:06.000000000 +0200 +++ media/filters/file_data_source.h 2011-09-26 19:08:17.000000000 +0200 @@ -5,6 +5,7 @@ @@ -27,7 +7,7 @@ +#include #include - #include "base/gtest_prod_util.h" + #include "base/files/file.h" --- content/public/common/child_process_sandbox_support_linux.h.orig 2013-10-11 19:30:28.000000000 +0200 +++ content/public/common/child_process_sandbox_support_linux.h 2013-10-16 15:29:00.000000000 +0200 @@ -7,6 +7,7 @@ @@ -76,18 +56,8 @@ #include "base/logging.h" #include "base/strings/string_number_conversions.h" #include "base/strings/stringprintf.h" ---- ui/gfx/codec/jpeg_codec.cc.orig 2014-02-20 15:27:56.000000000 -0500 -+++ ui/gfx/codec/jpeg_codec.cc 2014-03-03 14:33:42.000000000 -0500 -@@ -15,6 +15,7 @@ - #if defined(USE_SYSTEM_LIBJPEG) - #include - #elif defined(USE_LIBJPEG_TURBO) -+#include - #include "third_party/libjpeg_turbo/jpeglib.h" - #else - #include "third_party/libjpeg/jpeglib.h" ---- ui/gfx/codec/jpeg_codec.cc.orig 2014-08-12 21:02:29.000000000 +0200 -+++ ui/gfx/codec/jpeg_codec.cc 2014-08-17 19:32:18.000000000 +0200 +--- ui/gfx/codec/jpeg_codec.cc.orig 2014-10-02 19:19:03.000000000 +0200 ++++ ui/gfx/codec/jpeg_codec.cc 2014-10-05 22:38:28.000000000 +0200 @@ -13,6 +13,7 @@ extern "C" { @@ -106,4 +76,3 @@ #include #include - Modified: head/www/chromium/files/patch-base__base.gyp ============================================================================== --- head/www/chromium/files/patch-base__base.gyp Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__base.gyp Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/base.gyp.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/base.gyp 2014-08-22 15:06:27.000000000 +0200 +--- base/base.gyp.orig 2014-10-02 21:05:31 UTC ++++ base/base.gyp @@ -129,7 +129,7 @@ ], 'link_settings': { @@ -9,3 +9,15 @@ ], }, }], +@@ -784,6 +784,11 @@ + ['include', '^debug/proc_maps_linux_unittest\\.cc$'], + ], + }], ++ ['OS == "freebsd"', { ++ 'sources!': [ ++ 'debug/proc_maps_linux_unittest.cc', ++ ], ++ }], + ], # target_conditions + }, + { Modified: head/www/chromium/files/patch-base__base.gypi ============================================================================== --- head/www/chromium/files/patch-base__base.gypi Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__base.gypi Wed Oct 8 08:41:51 2014 (r370423) @@ -1,13 +1,13 @@ ---- ./base/base.gypi.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/base.gypi 2014-08-22 18:33:25.000000000 +0200 -@@ -942,11 +942,16 @@ +--- base/base.gypi.orig 2014-10-02 17:39:45 UTC ++++ base/base.gypi +@@ -945,11 +945,16 @@ 'process/memory_stubs.cc', ], 'sources/': [ + ['exclude', '^debug/proc_maps_linux\\.cc$'], ['exclude', '^files/file_path_watcher_linux\\.cc$'], - ['exclude', '^files/file_path_watcher_stub\\.cc$'], - ['exclude', '^file_util_linux\\.cc$'], + ['exclude', '^files/file_util_linux\\.cc$'], + ['exclude', '^process/memory_linux\\.cc$'], ['exclude', '^process/process_linux\\.cc$'], ['exclude', '^sys_info_linux\\.cc$'], Modified: head/www/chromium/files/patch-base__debug__stack_trace_posix.cc ============================================================================== --- head/www/chromium/files/patch-base__debug__stack_trace_posix.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__debug__stack_trace_posix.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./base/debug/stack_trace_posix.cc.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/debug/stack_trace_posix.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -590,6 +590,10 @@ +--- base/debug/stack_trace_posix.cc.orig 2014-10-02 17:18:52 UTC ++++ base/debug/stack_trace_posix.cc +@@ -588,6 +588,10 @@ // for the modules that are loaded in the current process. // Returns true on success. bool CacheMemoryRegions() { @@ -11,7 +11,7 @@ // Reads /proc/self/maps. std::string contents; if (!ReadProcMaps(&contents)) { -@@ -605,6 +609,7 @@ +@@ -603,6 +607,7 @@ is_initialized_ = true; return true; Modified: head/www/chromium/files/patch-base__files__file_path_watcher_kqueue.h ============================================================================== --- head/www/chromium/files/patch-base__files__file_path_watcher_kqueue.h Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__files__file_path_watcher_kqueue.h Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/files/file_path_watcher_kqueue.h.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/files/file_path_watcher_kqueue.h 2014-08-23 19:32:36.000000000 +0200 +--- base/files/file_path_watcher_kqueue.h.orig 2014-10-02 17:18:52 UTC ++++ base/files/file_path_watcher_kqueue.h @@ -5,6 +5,10 @@ #ifndef BASE_FILES_FILE_PATH_WATCHER_KQUEUE_H_ #define BASE_FILES_FILE_PATH_WATCHER_KQUEUE_H_ Modified: head/www/chromium/files/patch-base__posix__unix_domain_socket_linux.cc ============================================================================== --- head/www/chromium/files/patch-base__posix__unix_domain_socket_linux.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__posix__unix_domain_socket_linux.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/posix/unix_domain_socket_linux.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/posix/unix_domain_socket_linux.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/posix/unix_domain_socket_linux.cc.orig 2014-10-02 17:18:52 UTC ++++ base/posix/unix_domain_socket_linux.cc @@ -18,6 +18,15 @@ #include "base/posix/eintr_wrapper.h" #include "base/stl_util.h" Modified: head/www/chromium/files/patch-base__posix__unix_domain_socket_linux_unittest.cc ============================================================================== --- head/www/chromium/files/patch-base__posix__unix_domain_socket_linux_unittest.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__posix__unix_domain_socket_linux_unittest.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/posix/unix_domain_socket_linux_unittest.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/posix/unix_domain_socket_linux_unittest.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/posix/unix_domain_socket_linux_unittest.cc.orig 2014-10-02 17:18:52 UTC ++++ base/posix/unix_domain_socket_linux_unittest.cc @@ -2,8 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. Modified: head/www/chromium/files/patch-base__process__internal_linux.h ============================================================================== --- head/www/chromium/files/patch-base__process__internal_linux.h Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__internal_linux.h Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/process/internal_linux.h.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/internal_linux.h 2014-08-22 15:06:24.000000000 +0200 +--- base/process/internal_linux.h.orig 2014-10-02 17:18:52 UTC ++++ base/process/internal_linux.h @@ -12,6 +12,8 @@ #include "base/files/file_path.h" Modified: head/www/chromium/files/patch-base__process__launch.cc ============================================================================== --- head/www/chromium/files/patch-base__process__launch.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__launch.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/process/launch.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/launch.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/process/launch.cc.orig 2014-10-02 17:18:52 UTC ++++ base/process/launch.cc @@ -24,10 +24,10 @@ fds_to_remap(NULL), maximize_rlimits(NULL), Modified: head/www/chromium/files/patch-base__process__launch.h ============================================================================== --- head/www/chromium/files/patch-base__process__launch.h Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__launch.h Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/process/launch.h.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/launch.h 2014-08-22 15:06:24.000000000 +0200 +--- base/process/launch.h.orig 2014-10-02 17:18:52 UTC ++++ base/process/launch.h @@ -113,14 +113,14 @@ // will be the same as its pid. bool new_process_group; Modified: head/www/chromium/files/patch-base__process__memory_unittest.cc ============================================================================== --- head/www/chromium/files/patch-base__process__memory_unittest.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__memory_unittest.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./base/process/memory_unittest.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/memory_unittest.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -151,9 +151,9 @@ +--- base/process/memory_unittest.cc.orig 2014-10-02 17:18:52 UTC ++++ base/process/memory_unittest.cc +@@ -160,9 +160,9 @@ // Android doesn't implement set_new_handler, so we can't use the // OutOfMemoryTest cases. @@ -12,7 +12,7 @@ !defined(OS_WIN) #if defined(USE_TCMALLOC) -@@ -425,4 +425,4 @@ +@@ -448,4 +448,4 @@ EXPECT_TRUE(value_ == NULL); } #endif // !defined(MEMORY_TOOL_REPLACES_ALLOCATOR) Modified: head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc ============================================================================== --- head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__process_iterator_freebsd.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/process/process_iterator_freebsd.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/process_iterator_freebsd.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/process/process_iterator_freebsd.cc.orig 2014-10-02 17:18:52 UTC ++++ base/process/process_iterator_freebsd.cc @@ -8,6 +8,10 @@ #include #include Modified: head/www/chromium/files/patch-base__process__process_metrics.h ============================================================================== --- head/www/chromium/files/patch-base__process__process_metrics.h Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__process_metrics.h Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/process/process_metrics.h.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/process_metrics.h 2014-08-22 15:06:24.000000000 +0200 +--- base/process/process_metrics.h.orig 2014-10-02 17:39:45 UTC ++++ base/process/process_metrics.h @@ -17,6 +17,13 @@ #include "base/time/time.h" #include "base/values.h" @@ -14,7 +14,7 @@ #if defined(OS_MACOSX) #include #endif -@@ -246,13 +253,17 @@ +@@ -240,13 +247,17 @@ // CPU-related ticks. Returns -1 on parse error. // Exposed for testing. BASE_EXPORT int ParseProcStatCPU(const std::string& input); Modified: head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc ============================================================================== --- head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__process__process_metrics_freebsd.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/process/process_metrics_freebsd.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/process/process_metrics_freebsd.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/process/process_metrics_freebsd.cc.orig 2014-10-02 17:18:52 UTC ++++ base/process/process_metrics_freebsd.cc @@ -10,6 +10,9 @@ #include "base/sys_info.h" Modified: head/www/chromium/files/patch-base__security_unittest.cc ============================================================================== --- head/www/chromium/files/patch-base__security_unittest.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__security_unittest.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/security_unittest.cc.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/security_unittest.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/security_unittest.cc.orig 2014-10-02 17:18:52 UTC ++++ base/security_unittest.cc @@ -160,7 +160,7 @@ // FAILS_ is too clunky. void OverflowTestsSoftExpectTrue(bool overflow_detected) { Modified: head/www/chromium/files/patch-base__strings__safe_sprintf.cc ============================================================================== --- head/www/chromium/files/patch-base__strings__safe_sprintf.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__strings__safe_sprintf.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,19 +1,26 @@ ---- ./base/strings/safe_sprintf.cc.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/strings/safe_sprintf.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -107,11 +107,11 @@ +--- base/strings/safe_sprintf.cc.orig 2014-10-02 17:18:52 UTC ++++ base/strings/safe_sprintf.cc +@@ -107,15 +107,16 @@ : buffer_(buffer), size_(size - 1), // Account for trailing NUL byte count_(0) { -// The following assertion does not build on Mac and Android. This is because -// static_assert only works with compile-time constants, but mac uses -// libstdc++4.2 and android uses stlport, which both don't mark --// numeric_limits::max() as constexp. --#if __cplusplus >= 201103 && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_IOS) +-// numeric_limits::max() as constexp. Likewise, MSVS2013's standard library +-// also doesn't mark max() as constexpr yet. cl.exe supports static_cast but +-// doesn't really implement constexpr yet so it doesn't complain, but clang +// The following assertion does not build on Mac and Android and older FreeBSD. +// This is because static_assert only works with compile-time constants, but +// mac and FreeBSD < 10 use libstdc++4.2 and android uses stlport, which both -+// don't mark numeric_limits::max() as constexp. -+#if __cplusplus >= 201103 && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_IOS) && !(defined(OS_FREEBSD) && __FreeBSD_version > 1000054) ++// don't mark numeric_limits::max() as constexp. Likewise, MSVS2013's standard ++// library also doesn't mark max() as constexpr yet. cl.exe supports static_cast ++// but doesn't really implement constexpr yet so it doesn't complain, but clang + // does. + #if __cplusplus >= 201103 && !defined(OS_ANDROID) && !defined(OS_MACOSX) && \ +- !defined(OS_IOS) && !(defined(__clang__) && defined(OS_WIN)) ++ !defined(OS_IOS) && !(defined(OS_FREEBSD) && __FreeBSD_version > 1000054) \ ++ && !(defined(__clang__) && defined(OS_WIN)) COMPILE_ASSERT(kSSizeMaxConst == \ static_cast(std::numeric_limits::max()), kSSizeMax_is_the_max_value_of_an_ssize_t); Modified: head/www/chromium/files/patch-base__sys_info_freebsd.cc ============================================================================== --- head/www/chromium/files/patch-base__sys_info_freebsd.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__sys_info_freebsd.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/sys_info_freebsd.cc.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/sys_info_freebsd.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/sys_info_freebsd.cc.orig 2014-10-02 17:18:52 UTC ++++ base/sys_info_freebsd.cc @@ -4,6 +4,7 @@ #include "base/sys_info.h" Modified: head/www/chromium/files/patch-base__sys_info_posix.cc ============================================================================== --- head/www/chromium/files/patch-base__sys_info_posix.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__sys_info_posix.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/sys_info_posix.cc.orig 2014-08-20 21:02:42.000000000 +0200 -+++ ./base/sys_info_posix.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/sys_info_posix.cc.orig 2014-10-02 17:39:45 UTC ++++ base/sys_info_posix.cc @@ -64,7 +64,7 @@ namespace base { Modified: head/www/chromium/files/patch-base__test__expectations__expectation.cc ============================================================================== --- head/www/chromium/files/patch-base__test__expectations__expectation.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__test__expectations__expectation.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/test/expectations/expectation.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/test/expectations/expectation.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/test/expectations/expectation.cc.orig 2014-10-02 17:18:52 UTC ++++ base/test/expectations/expectation.cc @@ -60,6 +60,7 @@ variant != "64") { return false; Modified: head/www/chromium/files/patch-base__test__launcher__test_launcher.cc ============================================================================== --- head/www/chromium/files/patch-base__test__launcher__test_launcher.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__test__launcher__test_launcher.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,7 +1,7 @@ ---- ./base/test/launcher/test_launcher.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/test/launcher/test_launcher.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -41,6 +41,10 @@ - #include "base/mac/scoped_nsautorelease_pool.h" +--- base/test/launcher/test_launcher.cc.orig 2014-10-02 17:39:45 UTC ++++ base/test/launcher/test_launcher.cc +@@ -45,6 +45,10 @@ + #include "base/win/windows_version.h" #endif +#if defined(OS_FREEBSD) Modified: head/www/chromium/files/patch-base__threading__platform_thread_linux.cc ============================================================================== --- head/www/chromium/files/patch-base__threading__platform_thread_linux.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-base__threading__platform_thread_linux.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./base/threading/platform_thread_linux.cc.orig 2014-08-20 21:02:41.000000000 +0200 -+++ ./base/threading/platform_thread_linux.cc 2014-08-22 15:06:24.000000000 +0200 +--- base/threading/platform_thread_linux.cc.orig 2014-10-02 17:39:45 UTC ++++ base/threading/platform_thread_linux.cc @@ -16,7 +16,9 @@ #include "base/tracked_objects.h" Modified: head/www/chromium/files/patch-breakpad__breakpad.gyp ============================================================================== --- head/www/chromium/files/patch-breakpad__breakpad.gyp Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-breakpad__breakpad.gyp Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./breakpad/breakpad.gyp.orig 2014-08-20 21:02:30.000000000 +0200 -+++ ./breakpad/breakpad.gyp 2014-08-22 15:06:24.000000000 +0200 -@@ -340,7 +340,7 @@ +--- breakpad/breakpad.gyp.orig 2014-10-02 17:39:45 UTC ++++ breakpad/breakpad.gyp +@@ -349,7 +349,7 @@ }, ], }], Modified: head/www/chromium/files/patch-build__common.gypi ============================================================================== --- head/www/chromium/files/patch-build__common.gypi Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-build__common.gypi Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./build/common.gypi.orig 2014-08-20 21:02:29.000000000 +0200 -+++ ./build/common.gypi 2014-08-22 15:06:24.000000000 +0200 -@@ -87,7 +87,7 @@ +--- build/common.gypi.orig 2014-10-02 17:39:45 UTC ++++ build/common.gypi +@@ -91,7 +91,7 @@ 'conditions': [ # ChromeOS and Windows use Aura and Ash. @@ -9,7 +9,7 @@ 'use_ash%': 1, 'use_aura%': 1, }], -@@ -645,7 +645,7 @@ +@@ -676,7 +676,7 @@ }], # DBus usage. @@ -18,27 +18,36 @@ 'use_dbus%': 1, }, { 'use_dbus%': 0, -@@ -926,7 +926,7 @@ - # except when building Android WebView. +@@ -931,7 +931,7 @@ + }, { + 'use_openmax_dl_fft%': 0, + }], +- ['OS=="win" or OS=="linux"', { ++ ['OS=="win" or OS=="linux" or OS=="freebsd"', { + 'enable_mdns%' : 1, + }], + +@@ -954,7 +954,7 @@ + # except when building Android WebView or Chromecast. # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). # Set the data reduction proxy origin for Android Webview. -- ['android_webview_build==0', { -+ ['android_webview_build==0 and OS!="freebsd" and OS!="openbsd"', { +- ['android_webview_build==0 and android_webview_telemetry_build==0 and chromecast==0', { ++ ['android_webview_build==0 and OS!="freebsd" and OS!="openbsd" and android_webview_telemetry_build==0 and chromecast==0', { 'icu_use_data_file_flag%' : 1, 'spdy_proxy_auth_origin%': '', 'data_reduction_proxy_probe_url%': '', -@@ -1153,6 +1153,10 @@ +@@ -1193,6 +1193,10 @@ # able to turn it off for various reasons. 'linux_disable_pie%': 0, + # XXX(rene) More options, keep them? + 'os_ver%': 0, -+ 'use_system_libjpeg%': 0, ++ 'use_system_libjpeg%': 0, + # The release channel that this build targets. This is used to restrict # channel-specific build options, like which installer packages to create. # The default is 'all', which does no channel-specific filtering. -@@ -4150,6 +4154,13 @@ +@@ -4280,6 +4284,13 @@ 'ldflags': [ '-Wl,--no-keep-memory', ], Modified: head/www/chromium/files/patch-build__filename_rules.gypi ============================================================================== --- head/www/chromium/files/patch-build__filename_rules.gypi Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-build__filename_rules.gypi Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./build/filename_rules.gypi.orig 2014-08-20 21:02:29.000000000 +0200 -+++ ./build/filename_rules.gypi 2014-08-22 15:06:24.000000000 +0200 +--- build/filename_rules.gypi.orig 2014-10-02 17:18:52 UTC ++++ build/filename_rules.gypi @@ -85,7 +85,7 @@ ['<(use_aura)==0 or OS!="win" or >(nacl_untrusted_build)==1', { 'sources/': [ ['exclude', '_aurawin\\.(h|cc)$'] ] Modified: head/www/chromium/files/patch-build__linux__system.gyp ============================================================================== --- head/www/chromium/files/patch-build__linux__system.gyp Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-build__linux__system.gyp Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./build/linux/system.gyp.orig 2014-08-20 21:02:29.000000000 +0200 -+++ ./build/linux/system.gyp 2014-08-22 15:06:24.000000000 +0200 -@@ -881,6 +881,13 @@ +--- build/linux/system.gyp.orig 2014-10-02 17:39:45 UTC ++++ build/linux/system.gyp +@@ -890,6 +890,13 @@ 'include_dirs': [ '../..', ], Modified: head/www/chromium/files/patch-build__linux__unbundle__libwebp.gyp ============================================================================== --- head/www/chromium/files/patch-build__linux__unbundle__libwebp.gyp Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-build__linux__unbundle__libwebp.gyp Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./build/linux/unbundle/libwebp.gyp.orig 2014-08-20 21:02:29.000000000 +0200 -+++ ./build/linux/unbundle/libwebp.gyp 2014-08-22 15:06:24.000000000 +0200 +--- build/linux/unbundle/libwebp.gyp.orig 2014-10-02 17:18:52 UTC ++++ build/linux/unbundle/libwebp.gyp @@ -14,13 +14,7 @@ }, 'link_settings': { Modified: head/www/chromium/files/patch-build__linux__unbundle__openssl.gyp ============================================================================== --- head/www/chromium/files/patch-build__linux__unbundle__openssl.gyp Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-build__linux__unbundle__openssl.gyp Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./build/linux/unbundle/openssl.gyp.orig 2014-08-20 21:02:29.000000000 +0200 -+++ ./build/linux/unbundle/openssl.gyp 2014-08-22 15:06:24.000000000 +0200 +--- build/linux/unbundle/openssl.gyp.orig 2014-10-02 17:18:52 UTC ++++ build/linux/unbundle/openssl.gyp @@ -9,15 +9,15 @@ 'type': 'none', 'direct_dependent_settings': { Modified: head/www/chromium/files/patch-cc__layers__layer_impl.cc ============================================================================== --- head/www/chromium/files/patch-cc__layers__layer_impl.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-cc__layers__layer_impl.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./cc/layers/layer_impl.cc.orig 2014-08-20 21:02:36.000000000 +0200 -+++ ./cc/layers/layer_impl.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -1190,21 +1190,23 @@ +--- cc/layers/layer_impl.cc.orig 2014-10-02 17:39:45 UTC ++++ cc/layers/layer_impl.cc +@@ -1201,21 +1201,23 @@ scale_factor * scaled_scroll_bounds.height()); scaled_scroll_bounds = gfx::ToFlooredSize(scaled_scroll_bounds); Modified: head/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc ============================================================================== --- head/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./chrome/app/chrome_main_delegate.cc.orig 2014-08-20 21:01:26.000000000 +0200 -+++ ./chrome/app/chrome_main_delegate.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -96,7 +96,7 @@ +--- chrome/app/chrome_main_delegate.cc.orig 2014-10-02 17:39:45 UTC ++++ chrome/app/chrome_main_delegate.cc +@@ -94,7 +94,7 @@ #include "ui/base/x/x11_util.h" #endif @@ -9,7 +9,7 @@ #include "components/breakpad/app/breakpad_linux.h" #endif -@@ -122,7 +122,7 @@ +@@ -124,7 +124,7 @@ g_chrome_content_plugin_client = LAZY_INSTANCE_INITIALIZER; #endif @@ -18,16 +18,16 @@ base::LazyInstance::Leaky g_chrome_breakpad_client = LAZY_INSTANCE_INITIALIZER; #endif -@@ -226,7 +226,7 @@ - // Needed for scrollbar related images. - process_type == switches::kWorkerProcess || +@@ -225,7 +225,7 @@ + // Mac needs them for the plugin process name. + process_type == switches::kPluginProcess || #endif -#if defined(OS_POSIX) && !defined(OS_MACOSX) +#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_BSD) // The zygote process opens the resources for the renderers. process_type == switches::kZygoteProcess || #endif -@@ -440,7 +440,7 @@ +@@ -441,7 +441,7 @@ std::string format_str = command_line.GetSwitchValueASCII(switches::kDiagnosticsFormat); if (format_str == "machine") { @@ -36,7 +36,7 @@ } else if (format_str == "log") { format = diagnostics::DiagnosticsWriter::LOG; } else { -@@ -491,7 +491,7 @@ +@@ -492,7 +492,7 @@ std::string format_str = command_line.GetSwitchValueASCII(switches::kDiagnosticsFormat); if (format_str == "machine") { @@ -45,7 +45,7 @@ } else if (format_str == "human") { format = diagnostics::DiagnosticsWriter::HUMAN; } else { -@@ -621,7 +621,7 @@ +@@ -632,7 +632,7 @@ std::string process_type = command_line.GetSwitchValueASCII(switches::kProcessType); @@ -54,7 +54,7 @@ breakpad::SetBreakpadClient(g_chrome_breakpad_client.Pointer()); #endif -@@ -743,7 +743,7 @@ +@@ -759,7 +759,7 @@ #endif } @@ -63,7 +63,7 @@ // Zygote needs to call InitCrashReporter() in RunZygote(). if (process_type != switches::kZygoteProcess) { #if defined(OS_ANDROID) -@@ -755,7 +755,7 @@ +@@ -771,7 +771,7 @@ breakpad::InitCrashReporter(process_type); #endif // defined(OS_ANDROID) } @@ -72,9 +72,9 @@ // After all the platform Breakpads have been initialized, store the command // line for crash reporting. -@@ -840,7 +840,7 @@ - return process_type == switches::kNaClLoaderProcess || - process_type == switches::kRelauncherProcess; +@@ -863,7 +863,7 @@ + #endif + return process_type == switches::kRelauncherProcess; } -#elif defined(OS_POSIX) && !defined(OS_ANDROID) +#elif defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_BSD) Modified: head/www/chromium/files/patch-chrome__app__chrome_main_delegate.h ============================================================================== --- head/www/chromium/files/patch-chrome__app__chrome_main_delegate.h Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__app__chrome_main_delegate.h Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./chrome/app/chrome_main_delegate.h.orig 2014-08-20 21:01:26.000000000 +0200 -+++ ./chrome/app/chrome_main_delegate.h 2014-08-22 15:06:24.000000000 +0200 +--- chrome/app/chrome_main_delegate.h.orig 2014-10-02 17:18:53 UTC ++++ chrome/app/chrome_main_delegate.h @@ -38,7 +38,7 @@ virtual bool ShouldSendMachPort(const std::string& process_type) OVERRIDE; virtual bool DelaySandboxInitialization( Modified: head/www/chromium/files/patch-chrome__app__chromium_strings.grd ============================================================================== --- head/www/chromium/files/patch-chrome__app__chromium_strings.grd Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__app__chromium_strings.grd Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./chrome/app/chromium_strings.grd.orig 2014-08-20 21:01:26.000000000 +0200 -+++ ./chrome/app/chromium_strings.grd 2014-08-22 15:06:24.000000000 +0200 -@@ -1102,7 +1102,7 @@ +--- chrome/app/chromium_strings.grd.orig 2014-10-02 17:39:45 UTC ++++ chrome/app/chromium_strings.grd +@@ -1115,7 +1115,7 @@ Modified: head/www/chromium/files/patch-chrome__app__resources__locale_settings.grd ============================================================================== --- head/www/chromium/files/patch-chrome__app__resources__locale_settings.grd Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__app__resources__locale_settings.grd Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./chrome/app/resources/locale_settings.grd.orig 2014-08-20 21:01:26.000000000 +0200 -+++ ./chrome/app/resources/locale_settings.grd 2014-08-23 15:49:37.000000000 +0200 +--- chrome/app/resources/locale_settings.grd.orig 2014-10-02 17:39:45 UTC ++++ chrome/app/resources/locale_settings.grd @@ -264,7 +264,7 @@ 55 Modified: head/www/chromium/files/patch-chrome__browser__about_flags.cc ============================================================================== --- head/www/chromium/files/patch-chrome__browser__about_flags.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__browser__about_flags.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./chrome/browser/about_flags.cc.orig 2014-08-20 21:02:13.000000000 +0200 -+++ ./chrome/browser/about_flags.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -2263,7 +2263,7 @@ +--- chrome/browser/about_flags.cc.orig 2014-10-02 17:39:45 UTC ++++ chrome/browser/about_flags.cc +@@ -2278,7 +2278,7 @@ return kOsWin; #elif defined(OS_CHROMEOS) // Needs to be before the OS_LINUX check. return kOsCrOS; Modified: head/www/chromium/files/patch-chrome__browser__chrome_browser_main.cc ============================================================================== --- head/www/chromium/files/patch-chrome__browser__chrome_browser_main.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__browser__chrome_browser_main.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./chrome/browser/chrome_browser_main.cc.orig 2014-08-20 21:02:13.000000000 +0200 -+++ ./chrome/browser/chrome_browser_main.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -925,7 +925,7 @@ +--- chrome/browser/chrome_browser_main.cc.orig 2014-10-02 17:39:45 UTC ++++ chrome/browser/chrome_browser_main.cc +@@ -947,7 +947,7 @@ } #endif Modified: head/www/chromium/files/patch-chrome__browser__chrome_browser_main_posix.cc ============================================================================== --- head/www/chromium/files/patch-chrome__browser__chrome_browser_main_posix.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__browser__chrome_browser_main_posix.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,5 +1,5 @@ ---- ./chrome/browser/chrome_browser_main_posix.cc.orig 2014-08-20 21:02:13.000000000 +0200 -+++ ./chrome/browser/chrome_browser_main_posix.cc 2014-08-22 15:06:24.000000000 +0200 +--- chrome/browser/chrome_browser_main_posix.cc.orig 2014-10-02 17:18:53 UTC ++++ chrome/browser/chrome_browser_main_posix.cc @@ -270,6 +270,11 @@ g_pipe_pid = getpid(); g_shutdown_pipe_read_fd = pipefd[0]; Modified: head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.cc ============================================================================== --- head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,34 +1,43 @@ ---- ./chrome/browser/chrome_content_browser_client.cc.orig 2014-08-20 21:02:13.000000000 +0200 -+++ ./chrome/browser/chrome_content_browser_client.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -509,7 +509,7 @@ - } +--- chrome/browser/chrome_content_browser_client.cc.orig 2014-10-02 17:39:45 UTC ++++ chrome/browser/chrome_content_browser_client.cc +@@ -430,7 +430,7 @@ + return false; } --#if defined(OS_POSIX) && !defined(OS_MACOSX) -+#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_BSD) +-#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) ++#if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_BSD) breakpad::CrashHandlerHostLinux* CreateCrashHandlerHost( const std::string& process_type) { base::FilePath dumps_path; -@@ -566,7 +566,7 @@ +@@ -487,7 +487,7 @@ return -1; } --#endif // defined(OS_POSIX) && !defined(OS_MACOSX) -+#endif // defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_BSD) - #endif // !defined(OS_ANDROID) +-#endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) ++#endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) && !defined(OS_BSD) #if !defined(OS_CHROMEOS) -@@ -1533,7 +1533,7 @@ + GURL GetEffectiveURLForSignin(const GURL& url) { +@@ -1196,7 +1196,7 @@ void ChromeContentBrowserClient::AppendExtraCommandLineSwitches( CommandLine* command_line, int child_process_id) { -#if defined(OS_POSIX) +#if defined(OS_POSIX) && !defined(OS_BSD) if (breakpad::IsCrashReporterEnabled()) { - std::string enable_crash_reporter; - GoogleUpdateSettings::GetMetricsId(&enable_crash_reporter); -@@ -2683,7 +2683,7 @@ - #endif + scoped_ptr client_info = + GoogleUpdateSettings::LoadMetricsClientInfo(); +@@ -1204,7 +1204,7 @@ + client_info ? client_info->client_id + : std::string()); + } +-#endif // defined(OS_POSIX) ++#endif // defined(OS_POSIX) && !defined(OS_BSD) + + if (logging::DialogsAreSuppressed()) + command_line->AppendSwitch(switches::kNoErrorDialogs); +@@ -2447,7 +2447,7 @@ + } } -#if defined(OS_POSIX) && !defined(OS_MACOSX) @@ -36,7 +45,7 @@ void ChromeContentBrowserClient::GetAdditionalMappedFilesForChildProcess( const CommandLine& command_line, int child_process_id, -@@ -2749,7 +2749,7 @@ +@@ -2513,7 +2513,7 @@ } #endif // defined(OS_ANDROID) } Modified: head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.h ============================================================================== --- head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.h Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__browser__chrome_content_browser_client.h Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./chrome/browser/chrome_content_browser_client.h.orig 2014-08-20 21:02:13.000000000 +0200 -+++ ./chrome/browser/chrome_content_browser_client.h 2014-08-22 15:06:24.000000000 +0200 -@@ -288,7 +288,7 @@ +--- chrome/browser/chrome_content_browser_client.h.orig 2014-10-02 17:39:45 UTC ++++ chrome/browser/chrome_content_browser_client.h +@@ -287,7 +287,7 @@ virtual net::CookieStore* OverrideCookieStoreForRenderProcess( int render_process_id) OVERRIDE; Modified: head/www/chromium/files/patch-chrome__browser__diagnostics__diagnostics_writer.cc ============================================================================== --- head/www/chromium/files/patch-chrome__browser__diagnostics__diagnostics_writer.cc Wed Oct 8 08:32:04 2014 (r370422) +++ head/www/chromium/files/patch-chrome__browser__diagnostics__diagnostics_writer.cc Wed Oct 8 08:41:51 2014 (r370423) @@ -1,6 +1,6 @@ ---- ./chrome/browser/diagnostics/diagnostics_writer.cc.orig 2014-08-20 21:02:00.000000000 +0200 -+++ ./chrome/browser/diagnostics/diagnostics_writer.cc 2014-08-22 15:06:24.000000000 +0200 -@@ -268,7 +268,7 @@ +--- chrome/browser/diagnostics/diagnostics_writer.cc.orig 2014-10-02 17:18:53 UTC ++++ chrome/browser/diagnostics/diagnostics_writer.cc +@@ -266,7 +266,7 @@ console_->SetColor(color); console_->Write(base::ASCIIToUTF16(result)); } *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 08:43:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AA872AB; Wed, 8 Oct 2014 08:43:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76FD9CF4; Wed, 8 Oct 2014 08:43:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s988hRwC052921; Wed, 8 Oct 2014 08:43:27 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s988hRsI052920; Wed, 8 Oct 2014 08:43:27 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410080843.s988hRsI052920@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 08:43:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370424 - head/net/boinc-client X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 08:43:27 -0000 Author: rene Date: Wed Oct 8 08:43:26 2014 New Revision: 370424 URL: https://svnweb.freebsd.org/changeset/ports/370424 QAT: https://qat.redports.org/buildarchive/r370424/ Log: Clean up pkg-plist Requested by: bapt Modified: head/net/boinc-client/pkg-plist Modified: head/net/boinc-client/pkg-plist ============================================================================== --- head/net/boinc-client/pkg-plist Wed Oct 8 08:41:51 2014 (r370423) +++ head/net/boinc-client/pkg-plist Wed Oct 8 08:43:26 2014 (r370424) @@ -292,18 +292,3 @@ lib/libboinc_opencl.so.7.2.33 %%MANAGER%%share/pixmaps/boincmgr.16x16.png %%MANAGER%%share/pixmaps/boincmgr.32x32.png %%MANAGER%%share/pixmaps/boincmgr.48x48.png -@dirrm include/boinc -%%SKINS%%@dirrm share/boinc/skins/Charity Engine -%%MANAGER%%@dirrm share/boinc/skins/Default -%%SKINS%%@dirrm share/boinc/skins/GridRepublic -%%SKINS%%@dirrm share/boinc/skins/People for a Smarter Planet/graphic -%%SKINS%%@dirrm share/boinc/skins/People for a Smarter Planet -%%SKINS%%@dirrm share/boinc/skins/ProgressThruProcessors -%%SKINS%%@dirrm share/boinc/skins/World Community Grid/Old/graphic -%%SKINS%%@dirrm share/boinc/skins/World Community Grid/Old -%%SKINS%%@dirrm share/boinc/skins/World Community Grid -%%MANAGER%%@dirrm share/boinc/skins -%%X11%%@dirrm share/boinc/ttf -%%X11%%@dirrm share/boinc -%%MANAGER%%%%NLS%%@dirrmtry share/locale/sv_SE/LC_MESSAGES -%%MANAGER%%%%NLS%%@dirrmtry share/locale/sv_SE From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 09:19:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6A6CA8A; Wed, 8 Oct 2014 09:19:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 77782CC; Wed, 8 Oct 2014 09:19:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s989J5W5068064; Wed, 8 Oct 2014 09:19:05 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s989J5eb068062; Wed, 8 Oct 2014 09:19:05 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201410080919.s989J5eb068062@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Wed, 8 Oct 2014 09:19:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370425 - head/print/pdfbox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 09:19:05 -0000 Author: ale Date: Wed Oct 8 09:19:04 2014 New Revision: 370425 URL: https://svnweb.freebsd.org/changeset/ports/370425 QAT: https://qat.redports.org/buildarchive/r370425/ Log: Update to 1.8.7 release. Modified: head/print/pdfbox/Makefile head/print/pdfbox/distinfo Modified: head/print/pdfbox/Makefile ============================================================================== --- head/print/pdfbox/Makefile Wed Oct 8 08:43:26 2014 (r370424) +++ head/print/pdfbox/Makefile Wed Oct 8 09:19:04 2014 (r370425) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pdfbox -PORTVERSION= 1.8.6 +PORTVERSION= 1.8.7 CATEGORIES= print textproc java MASTER_SITES= ${MASTER_SITE_APACHE:S,%SUBDIR%,pdfbox/${PORTVERSION},} MASTER_SITE_SUBDIR= ${PORTNAME} Modified: head/print/pdfbox/distinfo ============================================================================== --- head/print/pdfbox/distinfo Wed Oct 8 08:43:26 2014 (r370424) +++ head/print/pdfbox/distinfo Wed Oct 8 09:19:04 2014 (r370425) @@ -1,10 +1,10 @@ -SHA256 (pdfbox-1.8.6.jar) = 9ba245284017ec45c1a73f9e8f5d9cd3b658dc22b402c15c17b5e091bdcda06c -SIZE (pdfbox-1.8.6.jar) = 4040495 -SHA256 (fontbox-1.8.6.jar) = 85be3e6b35d9fd9af772716d11d2197afcf8e65e404f781a0ec266bae61d65dc -SIZE (fontbox-1.8.6.jar) = 218560 -SHA256 (jempbox-1.8.6.jar) = 2bbd766cf5f4f6e1abb4d0fc912eca7a14a81834e99e860c5e32da96acf46937 -SIZE (jempbox-1.8.6.jar) = 50982 -SHA256 (preflight-1.8.6.jar) = f512feecbf83ace7ca0c8cbdcdbb8288bb48e0dcdcdbd2a949d28d5e4ac1efb9 -SIZE (preflight-1.8.6.jar) = 297339 -SHA256 (xmpbox-1.8.6.jar) = 1e3aac9d6d3b8f6b008ac04378d5f536ce3631618c5d7b8c5ae0dee2a7a84633 -SIZE (xmpbox-1.8.6.jar) = 114572 +SHA256 (pdfbox-1.8.7.jar) = de766058cb60184bceae5a9e1f2812bb7d4169af8e592159c9511240c0f62062 +SIZE (pdfbox-1.8.7.jar) = 4071607 +SHA256 (fontbox-1.8.7.jar) = 1eea9446f81559fa166255f47613d6d9b77c85aef8d47f11b17123aebaf847b6 +SIZE (fontbox-1.8.7.jar) = 218444 +SHA256 (jempbox-1.8.7.jar) = 77750a7c1509afb0556277bc1c3a867d3c6c45d4b96edc6d7422fef317020d7c +SIZE (jempbox-1.8.7.jar) = 50978 +SHA256 (preflight-1.8.7.jar) = 3cef84769b2ba8389e2e573553b0c42fa4df4e63fad2027332a830b653674465 +SIZE (preflight-1.8.7.jar) = 297504 +SHA256 (xmpbox-1.8.7.jar) = 852c677c2f5b780d59988cb9d3f1212d407cdb63cbf0419ef0c047dfbf32ff04 +SIZE (xmpbox-1.8.7.jar) = 114560 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 09:24:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15BCED8C; Wed, 8 Oct 2014 09:24:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01F1D1AC; Wed, 8 Oct 2014 09:24:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s989ORWb072279; Wed, 8 Oct 2014 09:24:27 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s989ORNZ072278; Wed, 8 Oct 2014 09:24:27 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410080924.s989ORNZ072278@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 09:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370426 - head/astro/boinc-astropulse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 09:24:28 -0000 Author: rene Date: Wed Oct 8 09:24:27 2014 New Revision: 370426 URL: https://svnweb.freebsd.org/changeset/ports/370426 QAT: https://qat.redports.org/buildarchive/r370426/ Log: astro/boinc-astropulse: clean up pkg-plist Requested by: bapt Modified: head/astro/boinc-astropulse/pkg-plist Modified: head/astro/boinc-astropulse/pkg-plist ============================================================================== --- head/astro/boinc-astropulse/pkg-plist Wed Oct 8 09:19:04 2014 (r370425) +++ head/astro/boinc-astropulse/pkg-plist Wed Oct 8 09:24:27 2014 (r370426) @@ -1,10 +1,6 @@ @owner %%BOINC_CLIENT_USER%% @group %%BOINC_CLIENT_GROUP%% -@cwd %%BOINC_CLIENT_HOME%% -projects/%%SETI_SITE%%/%%AP_BINARY%% -%%X11%%projects/%%SETI_SITE%%/ap_graphics -@dirrmtry projects/%%SETI_SITE%% -@dirrmtry projects +%%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/%%AP_BINARY%% +%%X11%%%%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/ap_graphics @owner root @group wheel -@cwd From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 09:25:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 89774E9F; Wed, 8 Oct 2014 09:25:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 761A01B6; Wed, 8 Oct 2014 09:25:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s989P596072496; Wed, 8 Oct 2014 09:25:05 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s989P5K2072495; Wed, 8 Oct 2014 09:25:05 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410080925.s989P5K2072495@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 09:25:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370427 - head/astro/boinc-setiathome-v7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 09:25:05 -0000 Author: rene Date: Wed Oct 8 09:25:04 2014 New Revision: 370427 URL: https://svnweb.freebsd.org/changeset/ports/370427 QAT: https://qat.redports.org/buildarchive/r370427/ Log: astro/boinc-setiathome-v7: clean up pkg-plist Requested by: bapt Modified: head/astro/boinc-setiathome-v7/pkg-plist Modified: head/astro/boinc-setiathome-v7/pkg-plist ============================================================================== --- head/astro/boinc-setiathome-v7/pkg-plist Wed Oct 8 09:24:27 2014 (r370426) +++ head/astro/boinc-setiathome-v7/pkg-plist Wed Oct 8 09:25:04 2014 (r370427) @@ -1,8 +1,6 @@ @owner %%BOINC_CLIENT_USER%% @group %%BOINC_CLIENT_GROUP%% -@cwd %%BOINC_CLIENT_HOME%% -projects/%%SETI_SITE%%/%%SETI_BINARY%% -%%X11%%projects/%%SETI_SITE%%/seti_graphics -@dirrmtry projects/%%SETI_SITE%% -@dirrmtry projects -@exec chown -R %%BOINC_CLIENT_USER%%:%%BOINC_CLIENT_GROUP%% projects/ +%%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/%%SETI_BINARY%% +%%X11%%%%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/seti_graphics +@owner root +@group wheel From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 09:25:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 94359F94; Wed, 8 Oct 2014 09:25:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80CC21C2; Wed, 8 Oct 2014 09:25:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s989PYAQ072641; Wed, 8 Oct 2014 09:25:34 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s989PY8K072640; Wed, 8 Oct 2014 09:25:34 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410080925.s989PY8K072640@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 09:25:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370428 - head/biology/boinc-simap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 09:25:34 -0000 Author: rene Date: Wed Oct 8 09:25:33 2014 New Revision: 370428 URL: https://svnweb.freebsd.org/changeset/ports/370428 QAT: https://qat.redports.org/buildarchive/r370428/ Log: biology/boinc-simap: clean up pkg-plist Requested by: bapt Modified: head/biology/boinc-simap/pkg-plist Modified: head/biology/boinc-simap/pkg-plist ============================================================================== --- head/biology/boinc-simap/pkg-plist Wed Oct 8 09:25:04 2014 (r370427) +++ head/biology/boinc-simap/pkg-plist Wed Oct 8 09:25:33 2014 (r370428) @@ -1,9 +1,7 @@ @owner %%BOINC_CLIENT_USER%% @group %%BOINC_CLIENT_GROUP%% -@cwd %%BOINC_CLIENT_HOME%% -projects/%%SIMAP_SITE%%/app_info.xml -projects/%%SIMAP_SITE%%/%%SIMAP_BINARY%% -projects/%%SIMAP_SITE%%/%%HMMER_BINARY%% -@dirrmtry projects/%%SIMAP_SITE%% -@dirrmtry projects -@exec chown -R %%BOINC_CLIENT_USER%%:%%BOINC_CLIENT_GROUP%% projects/ +%%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%%/app_info.xml +%%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%%/%%SIMAP_BINARY%% +%%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%%/%%HMMER_BINARY%% +@owner root +@group wheel From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:06:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9741AFFC; Wed, 8 Oct 2014 10:06:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 838C0857; Wed, 8 Oct 2014 10:06:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98A647A091609; Wed, 8 Oct 2014 10:06:04 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98A64IA091608; Wed, 8 Oct 2014 10:06:04 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410081006.s98A64IA091608@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 10:06:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370429 - head/biology/boinc-simap X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:06:04 -0000 Author: rene Date: Wed Oct 8 10:06:03 2014 New Revision: 370429 URL: https://svnweb.freebsd.org/changeset/ports/370429 QAT: https://qat.redports.org/buildarchive/r370429/ Log: Fix pkg-plist Submitted by: bapt Modified: head/biology/boinc-simap/pkg-plist Modified: head/biology/boinc-simap/pkg-plist ============================================================================== --- head/biology/boinc-simap/pkg-plist Wed Oct 8 09:25:33 2014 (r370428) +++ head/biology/boinc-simap/pkg-plist Wed Oct 8 10:06:03 2014 (r370429) @@ -1,5 +1,8 @@ @owner %%BOINC_CLIENT_USER%% @group %%BOINC_CLIENT_GROUP%% +@dir %%BOINC_CLIENT_HOME%% +@dir %%BOINC_CLIENT_HOME%%/projects +@dir %%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%% %%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%%/app_info.xml %%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%%/%%SIMAP_BINARY%% %%BOINC_CLIENT_HOME%%/projects/%%SIMAP_SITE%%/%%HMMER_BINARY%% From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:08:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B480F18B; Wed, 8 Oct 2014 10:08:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A14C386B; Wed, 8 Oct 2014 10:08:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98A80nD091917; Wed, 8 Oct 2014 10:08:00 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98A80c9091916; Wed, 8 Oct 2014 10:08:00 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410081008.s98A80c9091916@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 10:08:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370430 - head/astro/boinc-astropulse X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:08:00 -0000 Author: rene Date: Wed Oct 8 10:07:59 2014 New Revision: 370430 URL: https://svnweb.freebsd.org/changeset/ports/370430 QAT: https://qat.redports.org/buildarchive/r370430/ Log: Fix pkg-plist Submitted by: bapt Modified: head/astro/boinc-astropulse/pkg-plist Modified: head/astro/boinc-astropulse/pkg-plist ============================================================================== --- head/astro/boinc-astropulse/pkg-plist Wed Oct 8 10:06:03 2014 (r370429) +++ head/astro/boinc-astropulse/pkg-plist Wed Oct 8 10:07:59 2014 (r370430) @@ -1,5 +1,8 @@ @owner %%BOINC_CLIENT_USER%% @group %%BOINC_CLIENT_GROUP%% +@dir %%BOINC_CLIENT_HOME%% +@dir %%BOINC_CLIENT_HOME%%/projects/ +@dir %%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%% %%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/%%AP_BINARY%% %%X11%%%%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/ap_graphics @owner root From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:08:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34F7A26B; Wed, 8 Oct 2014 10:08:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08BF4870; Wed, 8 Oct 2014 10:08:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98A8OqP092082; Wed, 8 Oct 2014 10:08:24 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98A8OYC092080; Wed, 8 Oct 2014 10:08:24 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081008.s98A8OYC092080@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 10:08:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370431 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:08:25 -0000 Author: bapt Date: Wed Oct 8 10:08:24 2014 New Revision: 370431 URL: https://svnweb.freebsd.org/changeset/ports/370431 QAT: https://qat.redports.org/buildarchive/r370431/ Log: Use bsd.sanity.mk to check for INSTALLS_SHLIB Modified: head/Mk/bsd.port.mk head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed Oct 8 10:07:59 2014 (r370430) +++ head/Mk/bsd.port.mk Wed Oct 8 10:08:24 2014 (r370431) @@ -3733,9 +3733,6 @@ install-ldconfig-file: @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG32_DIR}/${UNIQUENAME} >> ${TMPPLIST} .endif .endif -.if defined(INSTALLS_SHLIB) - @${ECHO_MSG} "INSTALLS_SHLIB is deprecated. Use USE_LDCONFIG instead." -.endif .endif .endif Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Wed Oct 8 10:07:59 2014 (r370430) +++ head/Mk/bsd.sanity.mk Wed Oct 8 10:08:24 2014 (r370431) @@ -140,7 +140,8 @@ DEV_ERROR+= "INSTALLS_EGGINFO is no long SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \ USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \ USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \ - USE_GETTEXT USE_GMAKE USE_SCONS USE_DRUPAL NO_INSTALL_MANPAGES + USE_GETTEXT USE_GMAKE USE_SCONS USE_DRUPAL NO_INSTALL_MANPAGES \ + INSTALLS_SHLIB SANITY_DEPRECATED= USE_XZ USE_BZIP2 USE_PYDISTUTILS PYTHON_CONCURRENT_INSTALL \ PYDISTUTILS_AUTOPLIST PYTHON_PY3K_PLIST_HACK PYDISTUTILS_NOEGGINFO \ USE_PYTHON_PREFIX PYTHON_PKGNAMESUFFIX @@ -166,6 +167,7 @@ USE_GETTEXT_ALT= USES=gettext USE_SCONS_ALT= USES=scons USE_DRUPAL_ALT= USES=drupal USE_PYDISTUTILS_ALT= USE_PYTHON=distutils +INSTALLS_SHLIB_ALT= USE_LDCONFIG PYTHON_CONCURRENT_INSTALL_ALT= USE_PYTHON=concurrent PYDISTUTILS_AUTOPLIST_ALT= USE_PYTHON=autoplist PYTHON_PY3K_PLIST_HACK_ALT= USE_PYTHON=py3kplist From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:08:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C083134C; Wed, 8 Oct 2014 10:08:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD00B876; Wed, 8 Oct 2014 10:08:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98A8sBP092229; Wed, 8 Oct 2014 10:08:54 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98A8suN092228; Wed, 8 Oct 2014 10:08:54 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410081008.s98A8suN092228@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Wed, 8 Oct 2014 10:08:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370432 - head/astro/boinc-setiathome-v7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:08:54 -0000 Author: rene Date: Wed Oct 8 10:08:53 2014 New Revision: 370432 URL: https://svnweb.freebsd.org/changeset/ports/370432 QAT: https://qat.redports.org/buildarchive/r370432/ Log: Fix pkg-plist Submitted by: bapt Modified: head/astro/boinc-setiathome-v7/pkg-plist Modified: head/astro/boinc-setiathome-v7/pkg-plist ============================================================================== --- head/astro/boinc-setiathome-v7/pkg-plist Wed Oct 8 10:08:24 2014 (r370431) +++ head/astro/boinc-setiathome-v7/pkg-plist Wed Oct 8 10:08:53 2014 (r370432) @@ -1,5 +1,8 @@ @owner %%BOINC_CLIENT_USER%% @group %%BOINC_CLIENT_GROUP%% +@dir %%BOINC_CLIENT_HOME%% +@dir %%BOINC_CLIENT_HOME%%/projects/ +@dir %%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%% %%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/%%SETI_BINARY%% %%X11%%%%BOINC_CLIENT_HOME%%/projects/%%SETI_SITE%%/seti_graphics @owner root From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:14:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BC6524CF; Wed, 8 Oct 2014 10:14:35 +0000 (UTC) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B2A8293D; Wed, 8 Oct 2014 10:14:34 +0000 (UTC) Received: by mail-wi0-f181.google.com with SMTP id hi2so10244837wib.14 for ; Wed, 08 Oct 2014 03:14:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=VsCZXYGSUFbNisVs0uiA6kuaNSN4f7izFxmV3dFZR4k=; b=tZaXt1WQz4W5A/KXoNV/KhSqIrGEYsJdzVLx5JS+hou0NmO2GJE4kmdWpLS8UFvyoM 9serxDr+SFVBCsLz31wXb6kQAuLRvsiRPaZET6IE00DyStl3h7TvYFs8Pw+wsu5oaJaj /RMCYUT2txI8VLf4KY635FLaVnR5VGASwc8g2KuW4eJLvo11tnUCUTQuvLDwdulsiPyd qEnbzMHcWw5GwjD6Uw9PZLevmjCRI5laSztFJver4O+6q6AJd6JRBZIpTIq2hcdR6vZ0 s+d1q//P4Y//nV4zDL+9W5g0UK+bGyF456jajsRQ8xVX5peNonov2SV8C7ufvH+xsAVG WJAA== X-Received: by 10.194.242.33 with SMTP id wn1mr1185494wjc.110.1412763273012; Wed, 08 Oct 2014 03:14:33 -0700 (PDT) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by mx.google.com with ESMTPSA id q5sm9411271wiy.16.2014.10.08.03.14.31 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 08 Oct 2014 03:14:32 -0700 (PDT) Sender: Baptiste Daroussin Date: Wed, 8 Oct 2014 12:14:30 +0200 From: Baptiste Daroussin To: Bryan Drewery Subject: Re: svn commit: r370411 - head/sysutils/e2fsprogs Message-ID: <20141008101429.GX37670@ivaldir.etoilebsd.net> References: <201410072343.s97Nhkgo093413@svn.freebsd.org> <54348726.1080004@FreeBSD.org> <54348D3C.6080600@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XiX5sJQOWZsNRXst" Content-Disposition: inline In-Reply-To: <54348D3C.6080600@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, Matthias Andree , ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:14:35 -0000 --XiX5sJQOWZsNRXst Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 07, 2014 at 08:02:52PM -0500, Bryan Drewery wrote: > On 10/7/2014 7:36 PM, Bryan Drewery wrote: > > On 10/7/2014 6:43 PM, Matthias Andree wrote: > >> Author: mandree > >> Date: Tue Oct 7 23:43:46 2014 > >> New Revision: 370411 > >> URL: https://svnweb.freebsd.org/changeset/ports/370411 > >> QAT: https://qat.redports.org/buildarchive/r370411/ > >> > >> Log: > >> Mark broken everywhere, upstream bug (already reported). > >> To avoid PORTEPOCH/rollback-and-forth-again, let's give upstream a f= ew > >> days for a fix before rolling back to 1.42.10. > >=20 > > This is horrible. We're providing no packages for any branch now to > > avoid bumping a metadata counter? > >=20 > >=20 >=20 > Unfortunately poudriere does not care that this is BROKEN. It reads > PKGVERSION, sees it is newer, deletes the old package, then finally > finds it should IGNORE it. >=20 > A bug in poudriere sure. >=20 No! That is how building binary packages as always worked on FreeBSD since = the very beginning ! regards, Bapt --XiX5sJQOWZsNRXst Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlQ1DoUACgkQ8kTtMUmk6EwTUQCfTf9/7j9hQ9HY1ErGIRj5rTK7 9K8AoKhdEYbFwVZrgFrZfzNyS7c/jI+H =wPFN -----END PGP SIGNATURE----- --XiX5sJQOWZsNRXst-- From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:18:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFA6F72D; Wed, 8 Oct 2014 10:18:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC3F396E; Wed, 8 Oct 2014 10:18:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98AIpwG097309; Wed, 8 Oct 2014 10:18:51 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98AIpHI097308; Wed, 8 Oct 2014 10:18:51 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081018.s98AIpHI097308@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 10:18:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370433 - head/emulators/kqemu-kmod X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:18:51 -0000 Author: bapt Date: Wed Oct 8 10:18:51 2014 New Revision: 370433 URL: https://svnweb.freebsd.org/changeset/ports/370433 QAT: https://qat.redports.org/buildarchive/r370433/ Log: Cleanup plist Modified: head/emulators/kqemu-kmod/Makefile Modified: head/emulators/kqemu-kmod/Makefile ============================================================================== --- head/emulators/kqemu-kmod/Makefile Wed Oct 8 10:08:53 2014 (r370432) +++ head/emulators/kqemu-kmod/Makefile Wed Oct 8 10:18:51 2014 (r370433) @@ -34,11 +34,8 @@ OPTIONS_DEFINE= DOCS .include PORTDOCS= kqemu-doc.html kqemu-tech.html -PLIST_FILES= "include/kqemu/kqemu.h" -PLIST_FILES+= "@dirrm include/kqemu" -PLIST_FILES+= "@cwd /" -PLIST_FILES+= ${KMODDIR:C,^/,,}/kqemu.ko -PLIST_FILES+= "@cwd ${PREFIX}" +PLIST_FILES= include/kqemu/kqemu.h +PLIST_FILES+= ${KMODDIR}/kqemu.ko MAKEFILE= Makefile.freebsd From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 10:41:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 951CBD21; Wed, 8 Oct 2014 10:41:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FDCEB53; Wed, 8 Oct 2014 10:41:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Af0Jo008454; Wed, 8 Oct 2014 10:41:00 GMT (envelope-from rm@FreeBSD.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98AexvJ008442; Wed, 8 Oct 2014 10:40:59 GMT (envelope-from rm@FreeBSD.org) Message-Id: <201410081040.s98AexvJ008442@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rm set sender to rm@FreeBSD.org using -f From: Ruslan Makhmatkhanov Date: Wed, 8 Oct 2014 10:40:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370434 - head/multimedia/gpodder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 10:41:00 -0000 Author: rm Date: Wed Oct 8 10:40:59 2014 New Revision: 370434 URL: https://svnweb.freebsd.org/changeset/ports/370434 QAT: https://qat.redports.org/buildarchive/r370434/ Log: multimedia/gpodder: update to 3.8.1 Modified: head/multimedia/gpodder/Makefile head/multimedia/gpodder/distinfo head/multimedia/gpodder/pkg-plist Modified: head/multimedia/gpodder/Makefile ============================================================================== --- head/multimedia/gpodder/Makefile Wed Oct 8 10:18:51 2014 (r370433) +++ head/multimedia/gpodder/Makefile Wed Oct 8 10:40:59 2014 (r370434) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpodder -PORTVERSION= 3.6.1 +PORTVERSION= 3.8.1 CATEGORIES= multimedia python MASTER_SITES= http://gpodder.org/src/ @@ -10,6 +10,7 @@ MAINTAINER= rm@FreeBSD.org COMMENT= Media aggregator and podcast client LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= intltool-extract:${PORTSDIR}/textproc/intltool \ help2man:${PORTSDIR}/misc/help2man @@ -21,6 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqli OPTIONS_DEFINE= GTK2 NOTIFY MUTAGEN OGG2MP3 OPTIONS_DEFAULT= GTK2 +OPTIONS_SUB= yes MUTAGEN_DESC= Allow metadata manipulation OGG2MP3_DESC= Ogg Vorbis conversion to MP3 support OPTIONS_EXCLUDE= NLS @@ -32,8 +34,7 @@ OGG2MP3_RUN_DEPENDS= lame:${PORTSDIR}/au ALL_TARGET= messages MAKE_ENV= GPODDER_MANPATH_NO_SHARE="yes" MAKEFILE= makefile -USES= gettext gmake shebangfix -USE_PYTHON= 2 +USES= gettext gmake python:2 shebangfix SHEBANG_FILES= src/gpodder/*.py share/gpodder/examples/*.py share/gpodder/extensions/*.py WANT_GNOME= yes INSTALLS_ICONS= yes @@ -43,13 +44,11 @@ PORTDOCS= PKG-INFO README .if ${PORT_OPTIONS:MGTK2} MAKE_ENV+= GPODDER_INSTALL_UIS="cli gtk" -PLIST_SUB+= GTK="" RUN_DEPENDS+= gnome-icon-theme>=0:${PORTSDIR}/misc/gnome-icon-theme \ xdg-open:${PORTSDIR}/devel/xdg-utils USE_GNOME= pygtk2 .else MAKE_ENV+= GPODDER_INSTALL_UIS="cli" -PLIST_SUB+= GTK="@comment " .endif post-install: Modified: head/multimedia/gpodder/distinfo ============================================================================== --- head/multimedia/gpodder/distinfo Wed Oct 8 10:18:51 2014 (r370433) +++ head/multimedia/gpodder/distinfo Wed Oct 8 10:40:59 2014 (r370434) @@ -1,2 +1,2 @@ -SHA256 (gpodder-3.6.1.tar.gz) = badfbb448cea4f0cb9da4868adeaf60e10ae35d0aede001ffa7416739ae32961 -SIZE (gpodder-3.6.1.tar.gz) = 1552690 +SHA256 (gpodder-3.8.1.tar.gz) = a2d80c0a2fe243153960bcddc33a9ac1ec4a6de46f12a554e215b16e667c254f +SIZE (gpodder-3.8.1.tar.gz) = 1646430 Modified: head/multimedia/gpodder/pkg-plist ============================================================================== --- head/multimedia/gpodder/pkg-plist Wed Oct 8 10:18:51 2014 (r370433) +++ head/multimedia/gpodder/pkg-plist Wed Oct 8 10:40:59 2014 (r370434) @@ -1,8 +1,10 @@ bin/gpo man/man1/gpo.1.gz -%%GTK%%man/man1/gpodder.1.gz -%%GTK%%bin/gpodder +man/man1/gpodder-migrate2tres.1.gz +%%GTK2%%man/man1/gpodder.1.gz +%%GTK2%%bin/gpodder bin/gpodder-migrate2tres +%%PYTHON_SITELIBDIR%%/gpodder-3.8.1-py%%PYTHON_VER%%.egg-info %%PYTHON_SITELIBDIR%%/gpodder/__init__.py %%PYTHON_SITELIBDIR%%/gpodder/__init__.pyc %%PYTHON_SITELIBDIR%%/gpodder/__init__.pyo @@ -39,87 +41,87 @@ bin/gpodder-migrate2tres %%PYTHON_SITELIBDIR%%/gpodder/flattr.py %%PYTHON_SITELIBDIR%%/gpodder/flattr.pyc %%PYTHON_SITELIBDIR%%/gpodder/flattr.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/__init__.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/__init__.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/__init__.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/base.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/base.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/base.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/config.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/config.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/config.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/__init__.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/__init__.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/__init__.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/channel.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/channel.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/channel.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/deviceplaylist.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/deviceplaylist.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/deviceplaylist.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/episodeselector.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/episodeselector.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/episodeselector.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/podcastdirectory.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/podcastdirectory.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/podcastdirectory.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/preferences.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/preferences.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/preferences.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/sync.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/sync.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/sync.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/welcome.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/welcome.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/welcome.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktopfile.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktopfile.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktopfile.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/download.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/download.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/download.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/draw.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/draw.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/draw.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/flattr.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/flattr.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/flattr.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/__init__.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/__init__.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/__init__.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/addpodcast.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/addpodcast.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/addpodcast.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/common.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/common.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/common.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/configeditor.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/configeditor.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/configeditor.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/progress.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/progress.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/progress.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/macosx.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/macosx.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/macosx.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/main.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/main.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/main.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/model.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/model.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/model.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/opml.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/opml.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/opml.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/services.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/services.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/services.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/shownotes.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/shownotes.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/shownotes.pyo -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/widgets.py -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/widgets.pyc -%%GTK%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/widgets.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/__init__.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/__init__.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/__init__.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/base.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/base.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/base.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/config.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/config.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/config.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/__init__.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/__init__.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/__init__.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/channel.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/channel.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/channel.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/deviceplaylist.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/deviceplaylist.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/deviceplaylist.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/episodeselector.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/episodeselector.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/episodeselector.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/podcastdirectory.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/podcastdirectory.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/podcastdirectory.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/preferences.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/preferences.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/preferences.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/sync.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/sync.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/sync.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/welcome.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/welcome.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop/welcome.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktopfile.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktopfile.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktopfile.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/download.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/download.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/download.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/draw.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/draw.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/draw.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/flattr.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/flattr.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/flattr.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/__init__.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/__init__.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/__init__.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/addpodcast.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/addpodcast.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/addpodcast.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/common.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/common.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/common.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/configeditor.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/configeditor.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/configeditor.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/progress.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/progress.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface/progress.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/macosx.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/macosx.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/macosx.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/main.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/main.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/main.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/model.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/model.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/model.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/opml.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/opml.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/opml.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/services.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/services.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/services.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/shownotes.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/shownotes.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/shownotes.pyo +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/widgets.py +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/widgets.pyc +%%GTK2%%%%PYTHON_SITELIBDIR%%/gpodder/gtkui/widgets.pyo %%PYTHON_SITELIBDIR%%/gpodder/jsonconfig.py %%PYTHON_SITELIBDIR%%/gpodder/jsonconfig.pyc %%PYTHON_SITELIBDIR%%/gpodder/jsonconfig.pyo @@ -150,9 +152,6 @@ bin/gpodder-migrate2tres %%PYTHON_SITELIBDIR%%/gpodder/plugins/soundcloud.py %%PYTHON_SITELIBDIR%%/gpodder/plugins/soundcloud.pyc %%PYTHON_SITELIBDIR%%/gpodder/plugins/soundcloud.pyo -%%PYTHON_SITELIBDIR%%/gpodder/plugins/xspf.py -%%PYTHON_SITELIBDIR%%/gpodder/plugins/xspf.pyc -%%PYTHON_SITELIBDIR%%/gpodder/plugins/xspf.pyo %%PYTHON_SITELIBDIR%%/gpodder/query.py %%PYTHON_SITELIBDIR%%/gpodder/query.pyc %%PYTHON_SITELIBDIR%%/gpodder/query.pyo @@ -186,21 +185,24 @@ bin/gpodder-migrate2tres %%PYTHON_SITELIBDIR%%/gpodder/youtube.py %%PYTHON_SITELIBDIR%%/gpodder/youtube.pyc %%PYTHON_SITELIBDIR%%/gpodder/youtube.pyo -%%GTK%%share/applications/gpodder.desktop -%%GTK%%share/dbus-1/services/org.gpodder.service +%%GTK2%%share/applications/gpodder.desktop +%%GTK2%%share/dbus-1/services/org.gpodder.service %%DATADIR%%/credits.txt %%DATADIR%%/examples/gpodder_mark_played.py %%DATADIR%%/examples/hello_world.py %%DATADIR%%/extensions/audio_converter.py +%%DATADIR%%/extensions/concatenate_videos.py %%DATADIR%%/extensions/enqueue_in_mediaplayer.py %%DATADIR%%/extensions/gtk_statusicon.py %%DATADIR%%/extensions/minimize_on_start.py +%%DATADIR%%/extensions/mpris-listener.py %%DATADIR%%/extensions/normalize_audio.py %%DATADIR%%/extensions/notification-win32.py %%DATADIR%%/extensions/notification.py %%DATADIR%%/extensions/rename_download.py %%DATADIR%%/extensions/rm_ogg_cover.py %%DATADIR%%/extensions/rockbox_convert2mp4.py +%%DATADIR%%/extensions/rockbox_coverart.py %%DATADIR%%/extensions/sonos.py %%DATADIR%%/extensions/tagging.py %%DATADIR%%/extensions/taskbar_progress.py @@ -218,30 +220,30 @@ bin/gpodder-migrate2tres %%DATADIR%%/images/podcast-3.png %%DATADIR%%/images/podcast-4.png %%DATADIR%%/images/podcast-all.png -%%GTK%%%%DATADIR%%/ui/gtk/gpodder.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderaddpodcast.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderchannel.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderconfigeditor.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderepisodeselector.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderflattrsignin.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderpodcastdirectory.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderpreferences.ui -%%GTK%%%%DATADIR%%/ui/gtk/gpodderwelcome.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodder.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderaddpodcast.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderchannel.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderconfigeditor.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderepisodeselector.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderflattrsignin.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderpodcastdirectory.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderpreferences.ui +%%GTK2%%%%DATADIR%%/ui/gtk/gpodderwelcome.ui %%DATADIR%%/ui/web/gpodder.js %%DATADIR%%/ui/web/images/audio.png %%DATADIR%%/ui/web/images/video.png %%DATADIR%%/ui/web/index.html %%DATADIR%%/ui/web/style.css -%%GTK%%share/icons/hicolor/16x16/apps/gpodder.ico -%%GTK%%share/icons/hicolor/16x16/apps/gpodder.png -%%GTK%%share/icons/hicolor/22x22/apps/gpodder.png -%%GTK%%share/icons/hicolor/24x24/apps/gpodder.png -%%GTK%%share/icons/hicolor/26x26/apps/gpodder.png -%%GTK%%share/icons/hicolor/32x32/apps/gpodder.png -%%GTK%%share/icons/hicolor/40x40/apps/gpodder.png -%%GTK%%share/icons/hicolor/48x48/apps/gpodder.png -%%GTK%%share/icons/hicolor/64x64/apps/gpodder.png -%%GTK%%share/icons/hicolor/scalable/apps/gpodder.svg +%%GTK2%%share/icons/hicolor/16x16/apps/gpodder.ico +%%GTK2%%share/icons/hicolor/16x16/apps/gpodder.png +%%GTK2%%share/icons/hicolor/22x22/apps/gpodder.png +%%GTK2%%share/icons/hicolor/24x24/apps/gpodder.png +%%GTK2%%share/icons/hicolor/26x26/apps/gpodder.png +%%GTK2%%share/icons/hicolor/32x32/apps/gpodder.png +%%GTK2%%share/icons/hicolor/40x40/apps/gpodder.png +%%GTK2%%share/icons/hicolor/48x48/apps/gpodder.png +%%GTK2%%share/icons/hicolor/64x64/apps/gpodder.png +%%GTK2%%share/icons/hicolor/scalable/apps/gpodder.svg share/locale/ca/LC_MESSAGES/gpodder.mo share/locale/cs/LC_MESSAGES/gpodder.mo share/locale/cs_CZ/LC_MESSAGES/gpodder.mo @@ -273,47 +275,3 @@ share/locale/tr/LC_MESSAGES/gpodder.mo share/locale/tr_TR/LC_MESSAGES/gpodder.mo share/locale/uk/LC_MESSAGES/gpodder.mo share/locale/zh_CN/LC_MESSAGES/gpodder.mo -@dirrmtry share/locale/tr_TR/LC_MESSAGES -@dirrmtry share/locale/tr_TR -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/id_ID/LC_MESSAGES -@dirrmtry share/locale/id_ID -@dirrmtry share/locale/cs_CZ/LC_MESSAGES -@dirrmtry share/locale/cs_CZ -%%GTK%%@dirrmtry share/icons/hicolor/scalable/apps -%%GTK%%@dirrmtry share/icons/hicolor/scalable -%%GTK%%@dirrmtry share/icons/hicolor/64x64/apps -%%GTK%%@dirrmtry share/icons/hicolor/64x64 -%%GTK%%@dirrmtry share/icons/hicolor/48x48/apps -%%GTK%%@dirrmtry share/icons/hicolor/48x48 -%%GTK%%@dirrmtry share/icons/hicolor/40x40/apps -%%GTK%%@dirrmtry share/icons/hicolor/40x40 -%%GTK%%@dirrmtry share/icons/hicolor/32x32/apps -%%GTK%%@dirrmtry share/icons/hicolor/32x32 -%%GTK%%@dirrmtry share/icons/hicolor/26x26/apps -%%GTK%%@dirrmtry share/icons/hicolor/26x26 -%%GTK%%@dirrmtry share/icons/hicolor/24x24/apps -%%GTK%%@dirrmtry share/icons/hicolor/24x24 -%%GTK%%@dirrmtry share/icons/hicolor/22x22/apps -%%GTK%%@dirrmtry share/icons/hicolor/22x22 -%%GTK%%@dirrmtry share/icons/hicolor/16x16/apps -%%GTK%%@dirrmtry share/icons/hicolor/16x16 -%%GTK%%@dirrmtry share/icons/hicolor -%%GTK%%@dirrmtry share/icons -@dirrm %%DATADIR%%/ui/web/images -@dirrm %%DATADIR%%/ui/web -%%GTK%%@dirrm %%DATADIR%%/ui/gtk -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/extensions -@dirrm %%DATADIR%%/examples -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/gpodder/webui -@dirrm %%PYTHON_SITELIBDIR%%/gpodder/test -@dirrm %%PYTHON_SITELIBDIR%%/gpodder/plugins -@dirrm %%PYTHON_SITELIBDIR%%/gpodder/pipe -%%GTK%%@dirrm %%PYTHON_SITELIBDIR%%/gpodder/gtkui/interface -%%GTK%%@dirrm %%PYTHON_SITELIBDIR%%/gpodder/gtkui/desktop -%%GTK%%@dirrm %%PYTHON_SITELIBDIR%%/gpodder/gtkui -@dirrm %%PYTHON_SITELIBDIR%%/gpodder From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 12:06:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A4BAC57; Wed, 8 Oct 2014 12:06:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6DE57640; Wed, 8 Oct 2014 12:06:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98C655e048674; Wed, 8 Oct 2014 12:06:05 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98C643x048671; Wed, 8 Oct 2014 12:06:04 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201410081206.s98C643x048671@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 8 Oct 2014 12:06:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370435 - head/devel/p5-Test-Spelling X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 12:06:05 -0000 Author: ehaupt Date: Wed Oct 8 12:06:04 2014 New Revision: 370435 URL: https://svnweb.freebsd.org/changeset/ports/370435 QAT: https://qat.redports.org/buildarchive/r370435/ Log: Update to 0.20 Modified: head/devel/p5-Test-Spelling/Makefile head/devel/p5-Test-Spelling/distinfo head/devel/p5-Test-Spelling/pkg-plist Modified: head/devel/p5-Test-Spelling/Makefile ============================================================================== --- head/devel/p5-Test-Spelling/Makefile Wed Oct 8 10:40:59 2014 (r370434) +++ head/devel/p5-Test-Spelling/Makefile Wed Oct 8 12:06:04 2014 (r370435) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Spelling -PORTVERSION= 0.19 +PORTVERSION= 0.20 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Spelling/distinfo ============================================================================== --- head/devel/p5-Test-Spelling/distinfo Wed Oct 8 10:40:59 2014 (r370434) +++ head/devel/p5-Test-Spelling/distinfo Wed Oct 8 12:06:04 2014 (r370435) @@ -1,2 +1,2 @@ -SHA256 (Test-Spelling-0.19.tar.gz) = 9d9f86ca6f9e9748c7102b9f1d5b60d3161315a0041250dc819db03d0c676b59 -SIZE (Test-Spelling-0.19.tar.gz) = 26866 +SHA256 (Test-Spelling-0.20.tar.gz) = c32b97c8b746f3697fbd4c2783bd91e24d0f742661b9a5ab49610deb9d78e74a +SIZE (Test-Spelling-0.20.tar.gz) = 26839 Modified: head/devel/p5-Test-Spelling/pkg-plist ============================================================================== --- head/devel/p5-Test-Spelling/pkg-plist Wed Oct 8 10:40:59 2014 (r370434) +++ head/devel/p5-Test-Spelling/pkg-plist Wed Oct 8 12:06:04 2014 (r370435) @@ -1,6 +1,6 @@ %%SITE_PERL%%/Test/Spelling.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Spelling/.packlist %%PERL5_MAN3%%/Test::Spelling.3.gz -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Spelling -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test -@dirrmtry %%SITE_PERL%%/Test +@dir %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Spelling +@dir %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test +@dir %%SITE_PERL%%/Test From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 12:44:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B01429DE; Wed, 8 Oct 2014 12:44:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C575A8B; Wed, 8 Oct 2014 12:44:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98CiT2A070372; Wed, 8 Oct 2014 12:44:29 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98CiTsw070370; Wed, 8 Oct 2014 12:44:29 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410081244.s98CiTsw070370@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Wed, 8 Oct 2014 12:44:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370438 - head/www/coppermine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 12:44:29 -0000 Author: danilo Date: Wed Oct 8 12:44:28 2014 New Revision: 370438 URL: https://svnweb.freebsd.org/changeset/ports/370438 QAT: https://qat.redports.org/buildarchive/r370438/ Log: - Update from 1.5.30 to 1.5.32 Modified: head/www/coppermine/Makefile head/www/coppermine/distinfo Modified: head/www/coppermine/Makefile ============================================================================== --- head/www/coppermine/Makefile Wed Oct 8 12:16:37 2014 (r370437) +++ head/www/coppermine/Makefile Wed Oct 8 12:44:28 2014 (r370438) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= coppermine -PORTVERSION= 1.5.30 +PORTVERSION= 1.5.32 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/Coppermine/1.5.x/ DISTNAME= cpg${PORTVERSION} Modified: head/www/coppermine/distinfo ============================================================================== --- head/www/coppermine/distinfo Wed Oct 8 12:16:37 2014 (r370437) +++ head/www/coppermine/distinfo Wed Oct 8 12:44:28 2014 (r370438) @@ -1,2 +1,2 @@ -SHA256 (cpg1.5.30.zip) = e4717b9a8c0d0983ba32aacdb9fd77e21d5c0a3fb9831a1f2d0c07dbae13e162 -SIZE (cpg1.5.30.zip) = 18995407 +SHA256 (cpg1.5.32.zip) = 63292b72967d2160c2f5a812cc2c395e936f92b2ca2ea3fb4325e06bdeecd5f6 +SIZE (cpg1.5.32.zip) = 18996848 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 12:55:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EE7ECC8; Wed, 8 Oct 2014 12:55:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 304B0B81; Wed, 8 Oct 2014 12:55:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98CtfSa075396; Wed, 8 Oct 2014 12:55:41 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98Ctdqv075389; Wed, 8 Oct 2014 12:55:39 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410081255.s98Ctdqv075389@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 8 Oct 2014 12:55:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370439 - in head/x11-toolkits/fltk-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 12:55:41 -0000 Author: gahr Date: Wed Oct 8 12:55:38 2014 New Revision: 370439 URL: https://svnweb.freebsd.org/changeset/ports/370439 QAT: https://qat.redports.org/buildarchive/r370439/ Log: - Update to snapshot 10350 * Release notes: http://www.fltk.org/articles.php?L1387 Added: head/x11-toolkits/fltk-devel/files/patch-CMake_macros.cmake (contents, props changed) head/x11-toolkits/fltk-devel/files/patch-fluid_CMakeLists.txt (contents, props changed) Modified: head/x11-toolkits/fltk-devel/Makefile head/x11-toolkits/fltk-devel/distinfo head/x11-toolkits/fltk-devel/files/patch-CMake_install.cmake head/x11-toolkits/fltk-devel/files/patch-CMake_setup.cmake head/x11-toolkits/fltk-devel/pkg-plist Modified: head/x11-toolkits/fltk-devel/Makefile ============================================================================== --- head/x11-toolkits/fltk-devel/Makefile Wed Oct 8 12:44:28 2014 (r370438) +++ head/x11-toolkits/fltk-devel/Makefile Wed Oct 8 12:55:38 2014 (r370439) @@ -27,20 +27,21 @@ USE_LDCONFIG= ${PREFIX}/lib/fltk-devel USES+= cmake:outsource LDFLAGS+= -L${LOCALBASE}/lib CMAKE_ARGS+= -DOPTION_BUILD_SHARED_LIBS:BOOL=ON \ - -DOPTION_PREFIX_BIN:PATH=${PREFIX}/bin/fltk-devel \ - -DOPTION_PREFIX_DATA:PATH=${PREFIX}/share/fltk-devel \ - -DOPTION_PREFIX_DOC:PATH=${PREFIX}/share/examples/fltk-devel \ - -DOPTION_PREFIX_INCLUDE:PATH=${PREFIX}/include/fltk-devel \ - -DOPTION_PREFIX_LIB:PATH=${PREFIX}/lib/fltk-devel + -DPREFIX_BIN:PATH=${PREFIX}/bin/fltk-devel \ + -DPREFIX_DATA:PATH=${PREFIX}/share/fltk-devel \ + -DPREFIX_DOC:PATH=${PREFIX}/share/examples/fltk-devel \ + -DPREFIX_INCLUDE:PATH=${PREFIX}/include/fltk-devel \ + -DPREFIX_LIB:PATH=${PREFIX}/lib/fltk-devel -SNAPSHOT_VERS= 10337 +SNAPSHOT_VERS= 10350 PORTEXAMPLES= * EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}${PKGNAMESUFFIX} PORTSCOUT= limit:1.3.* post-install: + ${INSTALL_SCRIPT} ${INSTALL_WRKSRC}/fltk-config ${STAGEDIR}${PREFIX}/bin/fltk-devel ${LN} -sf fltk-devel/libfltk.so ${STAGEDIR}${PREFIX}/lib/libfltk-devel.so .include Modified: head/x11-toolkits/fltk-devel/distinfo ============================================================================== --- head/x11-toolkits/fltk-devel/distinfo Wed Oct 8 12:44:28 2014 (r370438) +++ head/x11-toolkits/fltk-devel/distinfo Wed Oct 8 12:55:38 2014 (r370439) @@ -1,2 +1,2 @@ -SHA256 (fltk-1.3.x-r10337.tar.gz) = 83a4a5898ce65538c300f31188bc4186b2da10c275ec155b37fe52789553d355 -SIZE (fltk-1.3.x-r10337.tar.gz) = 4929799 +SHA256 (fltk-1.3.x-r10350.tar.gz) = 534551d7b849f497a1bc6349c19ea12f91d9b1a966c372e0f2c8093151462f76 +SIZE (fltk-1.3.x-r10350.tar.gz) = 4937077 Modified: head/x11-toolkits/fltk-devel/files/patch-CMake_install.cmake ============================================================================== --- head/x11-toolkits/fltk-devel/files/patch-CMake_install.cmake Wed Oct 8 12:44:28 2014 (r370438) +++ head/x11-toolkits/fltk-devel/files/patch-CMake_install.cmake Wed Oct 8 12:55:38 2014 (r370439) @@ -1,9 +1,18 @@ ---- CMake/install.cmake.orig 2014-02-14 15:10:59.000000000 +0100 -+++ CMake/install.cmake 2014-02-14 15:11:07.000000000 +0100 -@@ -63,7 +63,7 @@ +--- CMake/install.cmake.orig 2014-09-27 02:41:06.000000000 +0200 ++++ CMake/install.cmake 2014-10-08 14:32:55.000000000 +0200 +@@ -32,7 +32,7 @@ + ) + + install(DIRECTORY ${FLTK_SOURCE_DIR}/FL +- DESTINATION include USE_SOURCE_PERMISSIONS ++ DESTINATION include/fltk-devel USE_SOURCE_PERMISSIONS + PATTERN ".svn" EXCLUDE + ) + +@@ -75,7 +75,7 @@ install(FILES ${FLTK_SOURCE_DIR}/documentation/src/${FILE}.man - DESTINATION ${PREFIX_MAN}/man${LEVEL} + DESTINATION man/man${LEVEL} - RENAME ${FILE}.${LEVEL} + RENAME ${FILE}-devel.${LEVEL} ) Added: head/x11-toolkits/fltk-devel/files/patch-CMake_macros.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/fltk-devel/files/patch-CMake_macros.cmake Wed Oct 8 12:55:38 2014 (r370439) @@ -0,0 +1,15 @@ +--- CMake/macros.cmake.orig 2014-10-08 14:15:49.000000000 +0200 ++++ CMake/macros.cmake 2014-10-08 14:17:23.000000000 +0200 +@@ -65,9 +65,9 @@ + + install(TARGETS ${LIBRARY_NAME} + EXPORT FLTK-Targets +- RUNTIME DESTINATION bin +- LIBRARY DESTINATION lib +- ARCHIVE DESTINATION lib ++ RUNTIME DESTINATION bin/fltk-devel ++ LIBRARY DESTINATION lib/fltk-devel ++ ARCHIVE DESTINATION lib/fltk-devel + ) + + list(APPEND FLTK_LIBRARIES "${LIBRARY_NAME}") Modified: head/x11-toolkits/fltk-devel/files/patch-CMake_setup.cmake ============================================================================== --- head/x11-toolkits/fltk-devel/files/patch-CMake_setup.cmake Wed Oct 8 12:44:28 2014 (r370438) +++ head/x11-toolkits/fltk-devel/files/patch-CMake_setup.cmake Wed Oct 8 12:55:38 2014 (r370439) @@ -1,15 +1,13 @@ ---- CMake/setup.cmake.orig 2014-02-14 15:09:21.000000000 +0100 -+++ CMake/setup.cmake 2014-02-14 15:10:00.000000000 +0100 -@@ -56,6 +56,12 @@ - set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -framework Cocoa") - endif(APPLE) +--- CMake/setup.cmake.orig 2014-10-08 14:16:19.000000000 +0200 ++++ CMake/setup.cmake 2014-10-08 14:16:59.000000000 +0200 +@@ -58,8 +58,8 @@ + set(FLTK_CONFIG_PATH FLTK/.framework/Resources/CMake) + set(FLTK_EXAMPLES_PATH share/fltk-examples) + else() +- set(FLTK_CONFIG_PATH lib/fltk) +- set(FLTK_EXAMPLES_PATH share/fltk-examples) ++ set(FLTK_CONFIG_PATH lib/fltk-devel) ++ set(FLTK_EXAMPLES_PATH share/examples/fltk-devel) + endif(WIN32 AND NOT CYGWIN) -+if(${CMAKE_SYSTEM_NAME} STREQUAL FreeBSD) -+ set(HAVE_STRTOL 1) -+ set(HAVE_STRCASECMP 1) -+ set(HAVE_DIRENT_H 1) -+endif() -+ - if(WIN32) - if(MSVC) - add_definitions(-DWIN32_LEAN_AND_MEAN) + include(TestBigEndian) Added: head/x11-toolkits/fltk-devel/files/patch-fluid_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/fltk-devel/files/patch-fluid_CMakeLists.txt Wed Oct 8 12:55:38 2014 (r370439) @@ -0,0 +1,11 @@ +--- fluid/CMakeLists.txt.orig 2014-10-08 14:22:45.000000000 +0200 ++++ fluid/CMakeLists.txt 2014-10-08 14:23:33.000000000 +0200 +@@ -35,7 +35,7 @@ + + install(TARGETS fluid + EXPORT FLTK-Targets +- RUNTIME DESTINATION bin ++ RUNTIME DESTINATION bin/fltk-devel + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + ) Modified: head/x11-toolkits/fltk-devel/pkg-plist ============================================================================== --- head/x11-toolkits/fltk-devel/pkg-plist Wed Oct 8 12:44:28 2014 (r370438) +++ head/x11-toolkits/fltk-devel/pkg-plist Wed Oct 8 12:55:38 2014 (r370439) @@ -145,26 +145,26 @@ include/fltk-devel/FL/math.h include/fltk-devel/FL/names.h include/fltk-devel/FL/win32.H include/fltk-devel/FL/x.H -lib/FLTK-1.3/FLTKConfig.cmake -lib/FLTK-1.3/FLTKLibraries-%%CMAKE_BUILD_TYPE%%.cmake -lib/FLTK-1.3/FLTKLibraries.cmake -lib/FLTK-1.3/UseFLTK.cmake +lib/fltk-devel/FLTK-Targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/fltk-devel/FLTK-Targets.cmake +lib/fltk-devel/FLTKConfig.cmake +lib/fltk-devel/UseFLTK.cmake lib/fltk-devel/libfltk.a lib/fltk-devel/libfltk.so lib/fltk-devel/libfltk.so.1.3 -lib/fltk-devel/libfltk.so.2 +lib/fltk-devel/libfltk.so.1.3.2 lib/fltk-devel/libfltk_forms.a lib/fltk-devel/libfltk_forms.so lib/fltk-devel/libfltk_forms.so.1.3 -lib/fltk-devel/libfltk_forms.so.2 +lib/fltk-devel/libfltk_forms.so.1.3.2 lib/fltk-devel/libfltk_gl.a lib/fltk-devel/libfltk_gl.so lib/fltk-devel/libfltk_gl.so.1.3 -lib/fltk-devel/libfltk_gl.so.2 +lib/fltk-devel/libfltk_gl.so.1.3.2 lib/fltk-devel/libfltk_images.a lib/fltk-devel/libfltk_images.so lib/fltk-devel/libfltk_images.so.1.3 -lib/fltk-devel/libfltk_images.so.2 +lib/fltk-devel/libfltk_images.so.1.3.2 lib/libfltk-devel.so man/man1/fltk-config-devel.1.gz man/man1/fluid-devel.1.gz @@ -172,8 +172,3 @@ man/man3/fltk-devel.3.gz man/man6/blocks-devel.6.gz man/man6/checkers-devel.6.gz man/man6/sudoku-devel.6.gz -@dirrm lib/fltk-devel -@dirrm lib/FLTK-1.3 -@dirrm include/fltk-devel/FL -@dirrm include/fltk-devel -@dirrm bin/fltk-devel From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 12:56:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 838B9F6B; Wed, 8 Oct 2014 12:56:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70346B8B; Wed, 8 Oct 2014 12:56:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98CuFBI075582; Wed, 8 Oct 2014 12:56:15 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98CuFbA075581; Wed, 8 Oct 2014 12:56:15 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410081256.s98CuFbA075581@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Wed, 8 Oct 2014 12:56:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370440 - head/x11-wm/flwm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 12:56:15 -0000 Author: gahr Date: Wed Oct 8 12:56:14 2014 New Revision: 370440 URL: https://svnweb.freebsd.org/changeset/ports/370440 QAT: https://qat.redports.org/buildarchive/r370440/ Log: - Chase x11-toolkits/fltk-devel shlib version bump Modified: head/x11-wm/flwm/Makefile Modified: head/x11-wm/flwm/Makefile ============================================================================== --- head/x11-wm/flwm/Makefile Wed Oct 8 12:55:38 2014 (r370439) +++ head/x11-wm/flwm/Makefile Wed Oct 8 12:56:14 2014 (r370440) @@ -3,7 +3,7 @@ PORTNAME= flwm PORTVERSION= 1.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-wm MAINTAINER= gahr@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 12:59:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9655545E; Wed, 8 Oct 2014 12:59:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82B53BC0; Wed, 8 Oct 2014 12:59:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98CxTwu076062; Wed, 8 Oct 2014 12:59:29 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98CxTLM076057; Wed, 8 Oct 2014 12:59:29 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201410081259.s98CxTLM076057@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Wed, 8 Oct 2014 12:59:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370441 - head/net/haproxy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 12:59:29 -0000 Author: demon Date: Wed Oct 8 12:59:28 2014 New Revision: 370441 URL: https://svnweb.freebsd.org/changeset/ports/370441 QAT: https://qat.redports.org/buildarchive/r370441/ Log: Update to version 1.5.5. Modified: head/net/haproxy/Makefile head/net/haproxy/distinfo Modified: head/net/haproxy/Makefile ============================================================================== --- head/net/haproxy/Makefile Wed Oct 8 12:56:14 2014 (r370440) +++ head/net/haproxy/Makefile Wed Oct 8 12:59:28 2014 (r370441) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= haproxy -PORTVERSION= 1.5.4 +PORTVERSION= 1.5.5 CATEGORIES= net www MASTER_SITES= http://www.haproxy.org/download/1.5/src/ Modified: head/net/haproxy/distinfo ============================================================================== --- head/net/haproxy/distinfo Wed Oct 8 12:56:14 2014 (r370440) +++ head/net/haproxy/distinfo Wed Oct 8 12:59:28 2014 (r370441) @@ -1,2 +1,2 @@ -SHA256 (haproxy-1.5.4.tar.gz) = 75056ca5b9121b193d383ba4ebc6e5a3782c537a7499db80fce8d6d5fd265e10 -SIZE (haproxy-1.5.4.tar.gz) = 1336140 +SHA256 (haproxy-1.5.5.tar.gz) = e8d014e99a025e7d7878d402d30e03666c6d205c630a0b3c25f53a09fff4827c +SIZE (haproxy-1.5.5.tar.gz) = 1337461 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 13:19:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B94F8951; Wed, 8 Oct 2014 13:19:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A592DD97; Wed, 8 Oct 2014 13:19:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98DJR0f085667; Wed, 8 Oct 2014 13:19:27 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98DJRRV085665; Wed, 8 Oct 2014 13:19:27 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201410081319.s98DJRRV085665@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 8 Oct 2014 13:19:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370442 - in head: devel/pecl-parsekit lang/pecl-perl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 13:19:27 -0000 Author: mat Date: Wed Oct 8 13:19:26 2014 New Revision: 370442 URL: https://svnweb.freebsd.org/changeset/ports/370442 QAT: https://qat.redports.org/buildarchive/r370442/ Log: Those two do not build with php 5.3. Sponsored by: Absolight Modified: head/devel/pecl-parsekit/Makefile head/lang/pecl-perl/Makefile Modified: head/devel/pecl-parsekit/Makefile ============================================================================== --- head/devel/pecl-parsekit/Makefile Wed Oct 8 12:59:28 2014 (r370441) +++ head/devel/pecl-parsekit/Makefile Wed Oct 8 13:19:26 2014 (r370442) @@ -17,6 +17,7 @@ LICENSE= PHP301 USE_PHP= yes USE_PHP_BUILD= yes USE_PHPEXT= yes +IGNORE_WITH_PHP= 53 CONFIGURE_ARGS= --enable-parsekit CFLAGS+= -I${LOCALBASE}/include Modified: head/lang/pecl-perl/Makefile ============================================================================== --- head/lang/pecl-perl/Makefile Wed Oct 8 12:59:28 2014 (r370441) +++ head/lang/pecl-perl/Makefile Wed Oct 8 13:19:26 2014 (r370442) @@ -17,6 +17,7 @@ USE_PHP= yes USE_PHPIZE= yes USE_PHPEXT= yes USE_PHP_BUILD= yes +IGNORE_WITH_PHP= 53 USES= perl5 tar:tgz From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 14:05:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE581A5F; Wed, 8 Oct 2014 14:05:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9DE1337; Wed, 8 Oct 2014 14:05:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98E5CHP008646; Wed, 8 Oct 2014 14:05:12 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98E5BND008641; Wed, 8 Oct 2014 14:05:11 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201410081405.s98E5BND008641@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Wed, 8 Oct 2014 14:05:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370443 - head/devel/meck X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 14:05:12 -0000 Author: olgeni Date: Wed Oct 8 14:05:11 2014 New Revision: 370443 URL: https://svnweb.freebsd.org/changeset/ports/370443 QAT: https://qat.redports.org/buildarchive/r370443/ Log: Upgrade to version 0.8.2. - Cleanup pkg-plist - Remove @dirrm entries Modified: head/devel/meck/Makefile head/devel/meck/distinfo (contents, props changed) head/devel/meck/pkg-plist (contents, props changed) Modified: head/devel/meck/Makefile ============================================================================== --- head/devel/meck/Makefile Wed Oct 8 13:19:26 2014 (r370442) +++ head/devel/meck/Makefile Wed Oct 8 14:05:11 2014 (r370443) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= meck -PORTVERSION= 0.8.1 +PORTVERSION= 0.8.2 CATEGORIES= devel MASTER_SITES= GH @@ -20,7 +20,7 @@ USES= gmake USE_GITHUB= yes GH_ACCOUNT= eproxus GH_PROJECT= meck -GH_COMMIT= 1286aba +GH_COMMIT= 3599670 GH_TAGNAME= ${PORTVERSION} PORTDOCS= * Modified: head/devel/meck/distinfo ============================================================================== --- head/devel/meck/distinfo Wed Oct 8 13:19:26 2014 (r370442) +++ head/devel/meck/distinfo Wed Oct 8 14:05:11 2014 (r370443) @@ -1,2 +1,2 @@ -SHA256 (meck-0.8.1.tar.gz) = 35d6e5913425b80f9a534b98c7fa690a8541eecd391e75638cfb04bbefd23131 -SIZE (meck-0.8.1.tar.gz) = 170632 +SHA256 (meck-0.8.2.tar.gz) = da60ea2cc50cb329983dd9b432749996287123775b48311ee63e62cd58b420b2 +SIZE (meck-0.8.2.tar.gz) = 208719 Modified: head/devel/meck/pkg-plist ============================================================================== --- head/devel/meck/pkg-plist Wed Oct 8 13:19:26 2014 (r370442) +++ head/devel/meck/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) @@ -1,27 +1,24 @@ -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck.app -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_args_matcher.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_code.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_code_gen.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_cover.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_expect.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_history.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_matcher.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_proc.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_ret_spec.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin/meck_util.beam -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck.app.src -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_args_matcher.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_code.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_code_gen.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_cover.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_expect.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_history.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_matcher.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_proc.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_ret_spec.erl -%%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src/meck_util.erl -@dirrm %%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/src -@dirrm %%LIB32DIR%%/erlang/lib/meck-%%VERSION%%/ebin -@dirrm %%LIB32DIR%%/erlang/lib/meck-%%VERSION%% +lib/erlang/lib/meck-%%VERSION%%/ebin/meck.app +lib/erlang/lib/meck-%%VERSION%%/ebin/meck.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_args_matcher.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_code.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_code_gen.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_cover.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_expect.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_history.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_matcher.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_proc.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_ret_spec.beam +lib/erlang/lib/meck-%%VERSION%%/ebin/meck_util.beam +lib/erlang/lib/meck-%%VERSION%%/src/meck.app.src +lib/erlang/lib/meck-%%VERSION%%/src/meck.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_args_matcher.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_code.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_code_gen.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_cover.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_expect.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_history.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_matcher.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_proc.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_ret_spec.erl +lib/erlang/lib/meck-%%VERSION%%/src/meck_util.erl From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 14:26:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1628640D; Wed, 8 Oct 2014 14:26:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F360A7E8; Wed, 8 Oct 2014 14:26:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98EQe2O019291; Wed, 8 Oct 2014 14:26:40 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98EQQ39019161; Wed, 8 Oct 2014 14:26:26 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201410081426.s98EQQ39019161@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 8 Oct 2014 14:26:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370444 - in head: astro/p5-GPS audio/audacious-dumb audio/gbsplay audio/libadplug audio/libmodplug audio/ocp audio/resid audio/uade audio/xmp deskutils/notify-osd deskutils/xfce4-gener... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 14:26:41 -0000 Author: ehaupt Date: Wed Oct 8 14:26:25 2014 New Revision: 370444 URL: https://svnweb.freebsd.org/changeset/ports/370444 QAT: https://qat.redports.org/buildarchive/r370444/ Log: Remove @dirrm, @dirrmtry Modified: head/astro/p5-GPS/pkg-plist head/audio/audacious-dumb/pkg-plist head/audio/gbsplay/pkg-plist head/audio/libadplug/pkg-plist head/audio/libmodplug/pkg-plist head/audio/ocp/pkg-plist head/audio/resid/pkg-plist head/audio/uade/pkg-plist head/audio/xmp/pkg-plist head/deskutils/notify-osd/pkg-plist head/deskutils/xfce4-generic-slider/pkg-plist head/deskutils/xfce4-notification-daemon/pkg-plist head/deskutils/xfce4-notifyd/pkg-plist head/devel/cvsspam/pkg-plist head/devel/libbinio/pkg-plist head/devel/p5-Data-TreeDumper-Renderer-GTK/pkg-plist head/devel/p5-Eval-Context/pkg-plist head/devel/p5-Package-Generator/pkg-plist head/devel/p5-Perl-Unsafe-Signals/pkg-plist head/devel/p5-Sort-Array/pkg-plist head/devel/p5-Term-EditLine/pkg-plist head/devel/p5-Uniq/pkg-plist head/ftp/weex/pkg-plist head/games/bloboats/pkg-plist head/graphics/asciio/pkg-plist head/graphics/grafx2/pkg-plist head/graphics/iec16022/pkg-plist head/irc/netwalker-ircc/pkg-plist head/mail/isync/pkg-plist head/mail/milter-callback/pkg-plist head/mail/p5-Sendmail-AccessDB/pkg-plist head/mail/sylpheed/pkg-plist head/net-mgmt/nagstamon/pkg-plist head/net/rsync/pkg-plist head/ports-mgmt/distilator/pkg-plist head/security/idea/pkg-plist head/security/op/pkg-plist head/sysutils/areca-cli/pkg-plist head/sysutils/hploscripts/pkg-plist head/sysutils/logstalgia/pkg-plist head/sysutils/magicrescue/pkg-plist head/sysutils/p5-Dir-Purge/pkg-plist head/textproc/p5-Text-vCard/pkg-plist head/www/httest/pkg-plist head/www/p5-Catalyst-View-XML-Feed/pkg-plist head/www/p5-Google-Search/pkg-plist head/www/p5-HTML-DOM/pkg-plist head/www/p5-JE/pkg-plist head/www/p5-Reddit/pkg-plist head/www/p5-WWW-Scripter-Plugin-Ajax/pkg-plist head/www/p5-WWW-Scripter-Plugin-JavaScript/pkg-plist head/www/p5-WWW-Scripter/pkg-plist head/x11-themes/audacious-skins/pkg-plist Modified: head/astro/p5-GPS/pkg-plist ============================================================================== --- head/astro/p5-GPS/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/astro/p5-GPS/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -11,8 +11,3 @@ %%PERL5_MAN3%%/GPS::NMEA::Handler.3.gz %%PERL5_MAN3%%/GPS::Garmin.3.gz %%PERL5_MAN3%%/GPS::Garmin::Handler.3.gz -@dirrm %%SITE_PERL%%/mach/auto/GPS/Garmin -@dirrmtry %%SITE_PERL%%/mach/auto/GPS -@dirrm %%SITE_PERL%%/GPS/NMEA -@dirrm %%SITE_PERL%%/GPS/Garmin -@dirrmtry %%SITE_PERL%%/GPS Modified: head/audio/audacious-dumb/pkg-plist ============================================================================== --- head/audio/audacious-dumb/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/audacious-dumb/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,3 +1 @@ lib/audacious/Input/dumb.so -@dirrmtry lib/audacious/Input -@dirrmtry lib/audacious Modified: head/audio/gbsplay/pkg-plist ============================================================================== --- head/audio/gbsplay/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/gbsplay/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -7,4 +7,3 @@ man/man1/gbsinfo.1.gz man/man1/gbsplay.1.gz man/man5/gbsplayrc.5.gz %%EXAMPLESDIR%%/nightmode.gbs -@dirrm %%EXAMPLESDIR%% Modified: head/audio/libadplug/pkg-plist ============================================================================== --- head/audio/libadplug/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/libadplug/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -63,4 +63,3 @@ lib/libadplug.a lib/libadplug.so libdata/pkgconfig/adplug.pc man/man1/adplugdb.1.gz -@dirrm include/adplug Modified: head/audio/libmodplug/pkg-plist ============================================================================== --- head/audio/libmodplug/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/libmodplug/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -7,4 +7,3 @@ include/libmodplug/stdafx.h include/libmodplug/sndfile.h include/libmodplug/it_defs.h include/libmodplug/modplug.h -@dirrm include/libmodplug Modified: head/audio/ocp/pkg-plist ============================================================================== --- head/audio/ocp/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/ocp/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -82,10 +82,6 @@ lib/ocp/playxm.so %%DESKTOP%%share/applications/cubic.org-opencubicplayer.desktop %%DATADIR%%/data/ocp.hlp %%DATADIR%%/etc/ocp.ini -@dirrm share/ocp/ultradir -@dirrm share/ocp/etc -@dirrm share/ocp/data -@dirrm share/ocp %%XORG%%@dirrmtry share/icons/hicolor/48x48/apps %%XORG%%@dirrmtry share/icons/hicolor/48x48 %%XORG%%@dirrmtry share/icons/hicolor/16x16/apps @@ -94,5 +90,3 @@ lib/ocp/playxm.so %%XORG%%@dirrmtry share/icons %%PORTDOCS%%@dirrm %%DOCSDIR%%/html %%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm lib/ocp/autoload -@dirrm lib/ocp Modified: head/audio/resid/pkg-plist ============================================================================== --- head/audio/resid/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/resid/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -11,4 +11,3 @@ lib/libresid.a lib/libresid.so lib/libresid.so.5 lib/libresid.so.5.0.0 -@dirrm include/resid Modified: head/audio/uade/pkg-plist ============================================================================== --- head/audio/uade/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/uade/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -177,8 +177,3 @@ libdata/pkgconfig/uade.pc %%DATADIR%%/score %%DATADIR%%/uade.conf %%DATADIR%%/uaerc -@dirrm lib/uade2 -@dirrm %%DATADIR%%/players/ENV/EaglePlayer -@dirrm %%DATADIR%%/players/ENV -@dirrm %%DATADIR%%/players -@dirrm %%DATADIR%% Modified: head/audio/xmp/pkg-plist ============================================================================== --- head/audio/xmp/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/audio/xmp/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -2,4 +2,3 @@ bin/xmp man/man1/xmp.1.gz @sample %%ETCDIR%%/xmp.conf.sample @sample %%ETCDIR%%/modules.conf.sample -@dirrmtry %%ETCDIR%% Modified: head/deskutils/notify-osd/pkg-plist ============================================================================== --- head/deskutils/notify-osd/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/deskutils/notify-osd/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -20,8 +20,3 @@ share/dbus-1/services/org.freedesktop.No %%DATADIR%%/icons/hicolor/scalable/status/notification-network-ethernet-diconnected.svg %%DATADIR%%/icons/hicolor/scalable/status/notification-network-wireless.svg %%DATADIR%%/icons/hicolor/scalable/status/notification-power.svg -@dirrm %%DATADIR%%/icons/hicolor/scalable/status -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% Modified: head/deskutils/xfce4-generic-slider/pkg-plist ============================================================================== --- head/deskutils/xfce4-generic-slider/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/deskutils/xfce4-generic-slider/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,7 +1,2 @@ lib/xfce4/xfce4/panel-plugins/xfce4-generic-slider-plugin share/xfce4/panel-plugins/generic-slider.desktop -@dirrmtry lib/xfce4/xfce4/panel-plugins -@dirrmtry lib/xfce4/xfce4 -@dirrmtry lib/xfce4 -@dirrmtry share/xfce4/panel-plugins -@dirrmtry share/xfce4 Modified: head/deskutils/xfce4-notification-daemon/pkg-plist ============================================================================== --- head/deskutils/xfce4-notification-daemon/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/deskutils/xfce4-notification-daemon/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -13,7 +13,3 @@ share/icons/hicolor/48x48/apps/notificat %%NLS%%share/locale/nl/LC_MESSAGES/notification-daemon-xfce.mo %%NLS%%share/locale/pl/LC_MESSAGES/notification-daemon-xfce.mo %%NLS%%share/locale/uk/LC_MESSAGES/notification-daemon-xfce.mo -@dirrm lib/xfce4/notification-daemon-xfce/engines -@dirrm lib/xfce4/notification-daemon-xfce -@dirrmtry libexec/xfce4 -@dirrmtry lib/xfce4 Modified: head/deskutils/xfce4-notifyd/pkg-plist ============================================================================== --- head/deskutils/xfce4-notifyd/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/deskutils/xfce4-notifyd/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -50,12 +50,6 @@ share/icons/hicolor/48x48/apps/xfce4-not share/themes/Default/xfce-notify-4.0/gtkrc share/themes/Smoke/xfce-notify-4.0/gtkrc share/themes/ZOMG-PONIES!/xfce-notify-4.0/gtkrc -@dirrm share/themes/ZOMG-PONIES!/xfce-notify-4.0 -@dirrmtry share/themes/ZOMG-PONIES! -@dirrm share/themes/Smoke/xfce-notify-4.0 -@dirrmtry share/themes/Smoke -@dirrm share/themes/Default/xfce-notify-4.0 -@dirrmtry share/themes/Default %%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES %%NLS%%@dirrmtry share/locale/ug %%NLS%%@dirrmtry share/locale/si/LC_MESSAGES @@ -64,5 +58,3 @@ share/themes/ZOMG-PONIES!/xfce-notify-4. %%NLS%%@dirrmtry share/locale/kk %%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES %%NLS%%@dirrmtry share/locale/ast -@dirrm lib/xfce4/notifyd -@dirrmtry lib/xfce4 Modified: head/devel/cvsspam/pkg-plist ============================================================================== --- head/devel/cvsspam/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/cvsspam/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -2,4 +2,3 @@ libexec/cvsspam/collect_diffs.rb libexec/cvsspam/cvsspam.rb libexec/cvsspam/record_lastdir.rb -@dirrm libexec/cvsspam Modified: head/devel/libbinio/pkg-plist ============================================================================== --- head/devel/libbinio/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/libbinio/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -2,7 +2,6 @@ include/libbinio/binfile.h include/libbinio/binio.h include/libbinio/binstr.h include/libbinio/binwrap.h -@dirrm include/libbinio lib/libbinio.a lib/libbinio.so lib/libbinio.so.1 Modified: head/devel/p5-Data-TreeDumper-Renderer-GTK/pkg-plist ============================================================================== --- head/devel/p5-Data-TreeDumper-Renderer-GTK/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Data-TreeDumper-Renderer-GTK/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -3,11 +3,3 @@ %%SITE_PERL%%/auto/Data/TreeDumper/Renderer/GTK/autosplit.ix %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/TreeDumper/Renderer/GTK/.packlist %%PERL5_MAN3%%/Data::TreeDumper::Renderer::GTK.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/TreeDumper/Renderer/GTK -@dirrm %%SITE_PERL%%/auto/Data/TreeDumper/Renderer/GTK -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Data/TreeDumper/Renderer -@dirrmtry %%SITE_PERL%%/auto/Data/TreeDumper/Renderer -@dirrmtry %%SITE_PERL%%/auto/Data/TreeDumper -@dirrmtry %%SITE_PERL%%/auto/Data -@dirrmtry %%SITE_PERL%%/Data/TreeDumper/Renderer -@dirrmtry %%SITE_PERL%%/Data/TreeDumper Modified: head/devel/p5-Eval-Context/pkg-plist ============================================================================== --- head/devel/p5-Eval-Context/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Eval-Context/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,3 +1,2 @@ %%SITE_PERL%%/Eval/Context.pm %%PERL5_MAN3%%/Eval::Context.3.gz -@dirrmtry %%SITE_PERL%%/Eval Modified: head/devel/p5-Package-Generator/pkg-plist ============================================================================== --- head/devel/p5-Package-Generator/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Package-Generator/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -3,6 +3,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Package/Generator/.packlist %%PERL5_MAN3%%/Package::Reaper.3.gz %%PERL5_MAN3%%/Package::Generator.3.gz -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Package/Generator -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Package -@dirrmtry %%SITE_PERL%%/Package Modified: head/devel/p5-Perl-Unsafe-Signals/pkg-plist ============================================================================== --- head/devel/p5-Perl-Unsafe-Signals/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Perl-Unsafe-Signals/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -2,8 +2,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl/Unsafe/Signals/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/Perl/Unsafe/Signals.pm %%PERL5_MAN3%%/Perl::Unsafe::Signals.3.gz -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl/Unsafe/Signals -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl/Unsafe -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Perl -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Perl/Unsafe -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Perl Modified: head/devel/p5-Sort-Array/pkg-plist ============================================================================== --- head/devel/p5-Sort-Array/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Sort-Array/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,6 +1,3 @@ %%SITE_PERL%%/Sort/Array.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/Array/.packlist %%PERL5_MAN3%%/Sort::Array.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort/Array -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sort -@dirrmtry %%SITE_PERL%%/Sort Modified: head/devel/p5-Term-EditLine/pkg-plist ============================================================================== --- head/devel/p5-Term-EditLine/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Term-EditLine/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -4,6 +4,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Term/EditLine/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Term/EditLine/EditLine.so %%SITE_PERL%%/%%PERL_ARCH%%/auto/Term/EditLine/autosplit.ix -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Term -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Term/EditLine -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Term Modified: head/devel/p5-Uniq/pkg-plist ============================================================================== --- head/devel/p5-Uniq/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/devel/p5-Uniq/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,4 +1,3 @@ %%SITE_PERL%%/Uniq.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Uniq/.packlist %%PERL5_MAN3%%/Uniq.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Uniq Modified: head/ftp/weex/pkg-plist ============================================================================== --- head/ftp/weex/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/ftp/weex/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -6,4 +6,3 @@ man/man1/weex.1.gz %%NLS%%share/locale/ja/LC_MESSAGES/weex.mo %%NLS%%share/locale/nl/LC_MESSAGES/weex.mo %%EXAMPLESDIR%%/sample.weexrc -@dirrm %%EXAMPLESDIR%% Modified: head/games/bloboats/pkg-plist ============================================================================== --- head/games/bloboats/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/games/bloboats/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -113,13 +113,3 @@ etc/bloboats.dirs %%DATADIR%%/defaults/private/ghost/ghost.txt %%DATADIR%%/defaults/private/records/records.txt %%DATADIR%%/defaults/private/levels.dat -@dirrm %%DATADIR%%/defaults/private/records -@dirrm %%DATADIR%%/defaults/private/ghost -@dirrm %%DATADIR%%/defaults/private -@dirrm %%DATADIR%%/defaults -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/levels -@dirrm %%DATADIR%%/models -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%% Modified: head/graphics/asciio/pkg-plist ============================================================================== --- head/graphics/asciio/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/graphics/asciio/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -46,12 +46,3 @@ bin/asciio %%PERL5_MAN3%%/App::Asciio.3.gz %%PERL5_MAN3%%/App::Asciio::setup::hooks::canonize_connections.3.gz %%PERL5_MAN3%%/App::Asciio::Undo.3.gz -@dirrm %%SITE_PERL%%/App/Asciio/stripes -@dirrm %%SITE_PERL%%/App/Asciio/setup/stencils -@dirrm %%SITE_PERL%%/App/Asciio/setup/import_export -@dirrm %%SITE_PERL%%/App/Asciio/setup/hooks -@dirrm %%SITE_PERL%%/App/Asciio/setup/asciio_object -@dirrm %%SITE_PERL%%/App/Asciio/setup/actions -@dirrm %%SITE_PERL%%/App/Asciio/setup -@dirrm %%SITE_PERL%%/App/Asciio -@dirrmtry %%SITE_PERL%%/App Modified: head/graphics/grafx2/pkg-plist ============================================================================== --- head/graphics/grafx2/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/graphics/grafx2/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -70,15 +70,3 @@ share/grafx2/skins/skin_modern.png share/grafx2/skins/skin_scenish.png share/icons/grafx2.svg share/icons/grafx2.xpm -@dirrm share/icons -@dirrm share/grafx2/skins -@dirrm share/grafx2/scripts/samples_2.4/picture -@dirrm share/grafx2/scripts/samples_2.4/palette -@dirrm share/grafx2/scripts/samples_2.4/libs -@dirrm share/grafx2/scripts/samples_2.4/demo/brush -@dirrm share/grafx2/scripts/samples_2.4/demo -@dirrm share/grafx2/scripts/samples_2.4/brush -@dirrm share/grafx2/scripts/samples_2.4 -@dirrm share/grafx2/scripts -@dirrm share/grafx2/fonts -@dirrm share/grafx2 Modified: head/graphics/iec16022/pkg-plist ============================================================================== --- head/graphics/iec16022/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/graphics/iec16022/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -8,4 +8,3 @@ lib/libiec16022.so lib/libiec16022.a libdata/pkgconfig/libiec16022.pc man/man1/iec16022.1.gz -@dirrm include/iec16022 Modified: head/irc/netwalker-ircc/pkg-plist ============================================================================== --- head/irc/netwalker-ircc/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/irc/netwalker-ircc/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -15,4 +15,3 @@ man/man1/netwalker.1.gz %%DATADIR%%/help_topic.asc %%DATADIR%%/help_who.asc %%DATADIR%%/helpindex.asc -@dirrm %%DATADIR%% Modified: head/mail/isync/pkg-plist ============================================================================== --- head/mail/isync/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/mail/isync/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -7,5 +7,3 @@ man/man1/mbsync.1.gz man/man1/mdconvert.1.gz %%DOCSDIR%%/examples/isyncrc.sample %%DOCSDIR%%/examples/mbsyncrc.sample -@dirrm %%DOCSDIR%%/examples -@dirrm %%DOCSDIR%% Modified: head/mail/milter-callback/pkg-plist ============================================================================== --- head/mail/milter-callback/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/mail/milter-callback/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,4 +1,3 @@ libexec/milter-callback etc/mail/milter-callback.conf.sample man/man8/milter-callback.8.gz -@dirrmtry etc/mail Modified: head/mail/p5-Sendmail-AccessDB/pkg-plist ============================================================================== --- head/mail/p5-Sendmail-AccessDB/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/mail/p5-Sendmail-AccessDB/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,6 +1,3 @@ %%SITE_PERL%%/Sendmail/AccessDB.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sendmail/AccessDB/.packlist %%PERL5_MAN3%%/Sendmail::AccessDB.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sendmail/AccessDB -@dirrmtry %%SITE_PERL%%/Sendmail -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Sendmail Modified: head/mail/sylpheed/pkg-plist ============================================================================== --- head/mail/sylpheed/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/mail/sylpheed/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -169,5 +169,3 @@ share/pixmaps/sylpheed.png %%PORTDOCS%%@dirrm %%DOCSDIR%%/faq/de %%PORTDOCS%%@dirrm %%DOCSDIR%%/faq %%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/sylpheed/sylph -@dirrm include/sylpheed Modified: head/net-mgmt/nagstamon/pkg-plist ============================================================================== --- head/net-mgmt/nagstamon/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/net-mgmt/nagstamon/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -127,7 +127,3 @@ bin/nagstamon.py %%PYTHON_SITELIBDIR%%/Nagstamon/thirdparty/zabbix_api.pyc %%PYTHON_SITELIBDIR%%/Nagstamon/thirdparty/zabbix_api.pyo man/man1/nagstamon.1.gz -@dirrmtry %%PYTHON_SITELIBDIR%%/Nagstamon/Server -@dirrmtry %%PYTHON_SITELIBDIR%%/Nagstamon/resources -@dirrmtry %%PYTHON_SITELIBDIR%%/Nagstamon/thirdparty -@dirrmtry %%PYTHON_SITELIBDIR%%/Nagstamon Modified: head/net/rsync/pkg-plist ============================================================================== --- head/net/rsync/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/net/rsync/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -2,4 +2,3 @@ bin/rsync man/man1/rsync.1.gz man/man5/rsyncd.conf.5.gz @sample %%ETCDIR%%/rsyncd.conf.sample -@dirrmtry %%ETCDIR%% Modified: head/ports-mgmt/distilator/pkg-plist ============================================================================== --- head/ports-mgmt/distilator/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/ports-mgmt/distilator/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -4,8 +4,3 @@ bin/distilator %%SITE_PERL%%/FreeBSD/Ports/DistilatorSingle.pm %%SITE_PERL%%/FreeBSD/Ports/DistilatorThreaded.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD/Ports/Distilator/.packlist -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD/Ports/Distilator -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD/Ports -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/FreeBSD -@dirrmtry %%SITE_PERL%%/FreeBSD/Ports -@dirrmtry %%SITE_PERL%%/FreeBSD Modified: head/security/idea/pkg-plist ============================================================================== --- head/security/idea/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/security/idea/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -4,4 +4,3 @@ man/manl/idea.l.gz %%PORTDOCS%%%%DOCSDIR%%/byte_ord.ps %%EXAMPLESDIR%%/Examples %%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%EXAMPLESDIR%% Modified: head/security/op/pkg-plist ============================================================================== --- head/security/op/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/security/op/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,4 +1,3 @@ man/man1/op.1.gz @sample etc/op.conf.sample bin/op -@dirrmtry etc/op.d Modified: head/sysutils/areca-cli/pkg-plist ============================================================================== --- head/sysutils/areca-cli/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/sysutils/areca-cli/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,4 +1,2 @@ etc/periodic/daily/407.status-areca-raid sbin/areca-cli -@dirrmtry etc/periodic/daily -@dirrmtry etc/periodic Modified: head/sysutils/hploscripts/pkg-plist ============================================================================== --- head/sysutils/hploscripts/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/sysutils/hploscripts/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -80,4 +80,3 @@ bin/locfg %%EXAMPLESDIR%%/delete_sso_rec.xml %%EXAMPLESDIR%%/hponcfg_reformat.xsl %%EXAMPLESDIR%%/hponcfgcap.xml -@dirrm %%EXAMPLESDIR%% Modified: head/sysutils/logstalgia/pkg-plist ============================================================================== --- head/sysutils/logstalgia/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/sysutils/logstalgia/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -6,5 +6,3 @@ man/man1/logstalgia.1.gz %%DATADIR%%/ball.tga %%DATADIR%%/example.log %%DATADIR%%/glow.tga -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%% Modified: head/sysutils/magicrescue/pkg-plist ============================================================================== --- head/sysutils/magicrescue/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/sysutils/magicrescue/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -39,7 +39,4 @@ man/man1/magicsort.1.gz %%DATADIR%%/tools/textextract %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README -@dirrm %%DATADIR%%/tools -@dirrm %%DATADIR%%/recipes -@dirrm %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/sysutils/p5-Dir-Purge/pkg-plist ============================================================================== --- head/sysutils/p5-Dir-Purge/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/sysutils/p5-Dir-Purge/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,6 +1,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dir/Purge/.packlist %%SITE_PERL%%/Dir/Purge.pm %%PERL5_MAN3%%/Dir::Purge.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dir/Purge -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dir -@dirrmtry %%SITE_PERL%%/Dir Modified: head/textproc/p5-Text-vCard/pkg-plist ============================================================================== --- head/textproc/p5-Text-vCard/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/textproc/p5-Text-vCard/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -10,7 +10,3 @@ %%SITE_PERL%%/Text/vCard/Node.pm %%SITE_PERL%%/mach/auto/Text/vCard/.packlist %%SITE_PERL%%/vCard/AddressBook.pm -@dirrmtry %%SITE_PERL%%/vCard/Role -@dirrmtry %%SITE_PERL%%/vCard -@dirrmtry %%SITE_PERL%%/mach/auto/Text/vCard -@dirrmtry %%SITE_PERL%%/Text/vCard Modified: head/www/httest/pkg-plist ============================================================================== --- head/www/httest/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/httest/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -11,4 +11,3 @@ man/man1/htntlm.1.gz man/man1/htproxy.1.gz man/man1/htremote.1.gz man/man1/httest.1.gz -@dirrm include/htt Modified: head/www/p5-Catalyst-View-XML-Feed/pkg-plist ============================================================================== --- head/www/p5-Catalyst-View-XML-Feed/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-Catalyst-View-XML-Feed/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -1,10 +1,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Catalyst/View/XML/Feed/.packlist %%SITE_PERL%%/Catalyst/View/XML/Feed.pm %%PERL5_MAN3%%/Catalyst::View::XML::Feed.3.gz -@dirrmtry %%SITE_PERL%%/Catalyst/View/XML -@dirrmtry %%SITE_PERL%%/Catalyst/View -@dirrmtry %%SITE_PERL%%/Catalyst -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Catalyst/View/XML/Feed -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Catalyst/View/XML -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Catalyst/View -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Catalyst Modified: head/www/p5-Google-Search/pkg-plist ============================================================================== --- head/www/p5-Google-Search/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-Google-Search/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -7,7 +7,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Google/Search/.packlist %%PERL5_MAN3%%/Google::Search.3.gz %%PERL5_MAN3%%/Google::Search::Result.3.gz -@dirrmtry %%SITE_PERL%%/Google/Search -@dirrmtry %%SITE_PERL%%/Google -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Google/Search -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Google Modified: head/www/p5-HTML-DOM/pkg-plist ============================================================================== --- head/www/p5-HTML-DOM/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-HTML-DOM/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -150,11 +150,3 @@ %%PERL5_MAN3%%/HTML::DOM::Text.3.gz %%PERL5_MAN3%%/HTML::DOM::View.3.gz %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/DOM/.packlist -@dirrm %%SITE_PERL%%/HTML/DOM/NodeList -@dirrm %%SITE_PERL%%/HTML/DOM/Event -@dirrm %%SITE_PERL%%/HTML/DOM/Element -@dirrm %%SITE_PERL%%/HTML/DOM/Collection -@dirrm %%SITE_PERL%%/HTML/DOM -@dirrmtry %%SITE_PERL%%/HTML -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML/DOM -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTML Modified: head/www/p5-JE/pkg-plist ============================================================================== --- head/www/p5-JE/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-JE/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -62,9 +62,3 @@ %%PERL5_MAN3%%/JE::Object::Function.3.gz %%PERL5_MAN3%%/JE.3.gz %%PERL5_MAN3%%/JE::Destroyer.3.gz -@dirrmtry %%SITE_PERL%%/JE/Object/Error -@dirrmtry %%SITE_PERL%%/JE/Object/Number -@dirrmtry %%SITE_PERL%%/JE/Object -@dirrmtry %%SITE_PERL%%/JE -@dirrmtry %%SITE_PERL%%/JavaScript -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/JE Modified: head/www/p5-Reddit/pkg-plist ============================================================================== --- head/www/p5-Reddit/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-Reddit/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -3,6 +3,3 @@ %%SITE_PERL%%/Reddit/Type/Subreddit.pm %%SITE_PERL%%/mach/auto/Reddit/.packlist %%PERL5_MAN3%%/Reddit.3.gz -@dirrm %%SITE_PERL%%/mach/auto/Reddit -@dirrm %%SITE_PERL%%/Reddit/Type -@dirrm %%SITE_PERL%%/Reddit Modified: head/www/p5-WWW-Scripter-Plugin-Ajax/pkg-plist ============================================================================== --- head/www/p5-WWW-Scripter-Plugin-Ajax/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-WWW-Scripter-Plugin-Ajax/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -2,11 +2,3 @@ %%SITE_PERL%%/WWW/Scripter/Plugin/Ajax.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter/Plugin/Ajax/.packlist %%PERL5_MAN3%%/WWW::Scripter::Plugin::Ajax.3.gz -@dirrmtry %%SITE_PERL%%/WWW/Scripter/Plugin/Ajax -@dirrmtry %%SITE_PERL%%/WWW/Scripter/Plugin -@dirrmtry %%SITE_PERL%%/WWW/Scripter -@dirrmtry %%SITE_PERL%%/WWW -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter/Plugin/Ajax -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter/Plugin -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW Modified: head/www/p5-WWW-Scripter-Plugin-JavaScript/pkg-plist ============================================================================== --- head/www/p5-WWW-Scripter-Plugin-JavaScript/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-WWW-Scripter-Plugin-JavaScript/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -3,11 +3,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter/Plugin/JavaScript/.packlist %%PERL5_MAN3%%/WWW::Scripter::Plugin::JavaScript.3.gz %%PERL5_MAN3%%/WWW::Scripter::Plugin::JavaScript::JE.3.gz -@dirrm %%SITE_PERL%%/WWW/Scripter/Plugin/JavaScript -@dirrmtry %%SITE_PERL%%/WWW/Scripter/Plugin -@dirrmtry %%SITE_PERL%%/WWW/Scripter -@dirrmtry %%SITE_PERL%%/WWW -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter/Plugin/JavaScript -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter/Plugin -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW Modified: head/www/p5-WWW-Scripter/pkg-plist ============================================================================== --- head/www/p5-WWW-Scripter/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/www/p5-WWW-Scripter/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -8,7 +8,3 @@ %%PERL5_MAN3%%/WWW::Scripter.3.gz %%PERL5_MAN3%%/WWW::Scripter::History.3.gz %%PERL5_MAN3%%/WWW::Scripter::WindowGroup.3.gz -@dirrmtry %%SITE_PERL%%/WWW/Scripter -@dirrmtry %%SITE_PERL%%/WWW -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Scripter -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW Modified: head/x11-themes/audacious-skins/pkg-plist ============================================================================== --- head/x11-themes/audacious-skins/pkg-plist Wed Oct 8 14:05:11 2014 (r370443) +++ head/x11-themes/audacious-skins/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) @@ -93,5 +93,3 @@ %%DATADIR%%/Skins/titanium.wsz %%DATADIR%%/Skins/xmmearth.wsz %%DATADIR%%/Skins/xmms-256.wsz -@dirrmtry %%DATADIR%%/Skins -@dirrmtry %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 15:11:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57470F7; Wed, 8 Oct 2014 15:11:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 38296C83; Wed, 8 Oct 2014 15:11:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98FBIW4042181; Wed, 8 Oct 2014 15:11:18 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98FBHgk042175; Wed, 8 Oct 2014 15:11:17 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201410081511.s98FBHgk042175@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 8 Oct 2014 15:11:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370445 - in head/archivers/dpkg: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 15:11:18 -0000 Author: pawel Date: Wed Oct 8 15:11:16 2014 New Revision: 370445 URL: https://svnweb.freebsd.org/changeset/ports/370445 QAT: https://qat.redports.org/buildarchive/r370445/ Log: - Update to version 1.17.16 - Convert to USES=libtool - Clean pkg-plist Deleted: head/archivers/dpkg/files/patch-dselect_Makefile.in Modified: head/archivers/dpkg/Makefile head/archivers/dpkg/distinfo head/archivers/dpkg/pkg-plist Modified: head/archivers/dpkg/Makefile ============================================================================== --- head/archivers/dpkg/Makefile Wed Oct 8 14:26:25 2014 (r370444) +++ head/archivers/dpkg/Makefile Wed Oct 8 15:11:16 2014 (r370445) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dpkg -PORTVERSION= 1.17.9 +PORTVERSION= 1.17.16 CATEGORIES= archivers sysutils MASTER_SITES= ${MASTER_SITE_DEBIAN_POOL} DISTNAME= dpkg_${PORTVERSION} @@ -18,13 +18,13 @@ RUN_DEPENDS= gtar:${PORTSDIR}/archivers/ gmd5sum:${PORTSDIR}/sysutils/coreutils GNU_CONFIGURE= yes -USES= gmake iconv perl5 pkgconfig tar:xz shebangfix +USES= gmake iconv libtool perl5 pkgconfig tar:xz shebangfix WRKSRC= ${WRKDIR}/dpkg-${PORTVERSION} SHEBANG_FILES= dselect/methods/ftp/update dselect/methods/ftp/install \ dselect/methods/ftp/setup DPKGDIR?= /var/db/dpkg -PLIST_SUB+= DPKGDIR=${DPKGDIR:C,^/,,} +PLIST_SUB+= DPKGDIR=${DPKGDIR} SUB_FILES= pkg-install pkg-deinstall SUB_LIST+= DPKGDIR=${DPKGDIR} @@ -48,5 +48,10 @@ post-patch: @${REINPLACE_CMD} -e 's/cp -p $$(DEST/mv $$(DEST/g; s/rm $$(/rm -f $$(/g' \ ${WRKSRC}/scripts/mk/Makefile.in \ ${WRKSRC}/scripts/Makefile.in + @${REINPLACE_CMD} 's/{^MATCH}/\&/' ${WRKSRC}/dselect/mkcurkeys.pl + +post-install: + (cd ${STAGEDIR}${DPKGDIR} && ${MKDIR} available diversions \ + statoverride status) .include Modified: head/archivers/dpkg/distinfo ============================================================================== --- head/archivers/dpkg/distinfo Wed Oct 8 14:26:25 2014 (r370444) +++ head/archivers/dpkg/distinfo Wed Oct 8 15:11:16 2014 (r370445) @@ -1,2 +1,2 @@ -SHA256 (dpkg_1.17.9.tar.xz) = da58389a80a3515ea12aaf10c9e48f84ee6c08d2fe2c9e1450f4df49ffeeb6aa -SIZE (dpkg_1.17.9.tar.xz) = 4051292 +SHA256 (dpkg_1.17.16.tar.xz) = 3bb58a197ad6e8fe80a2063de70ec737a486b1f6cafd9a481a92ce5411c90fe0 +SIZE (dpkg_1.17.16.tar.xz) = 4299248 Modified: head/archivers/dpkg/pkg-plist ============================================================================== --- head/archivers/dpkg/pkg-plist Wed Oct 8 14:26:25 2014 (r370444) +++ head/archivers/dpkg/pkg-plist Wed Oct 8 15:11:16 2014 (r370445) @@ -154,7 +154,6 @@ libexec/dpkg/methods/multicd/update libexec/dpkg/parsechangelog/debian libexec/libdpkg.a libexec/pkgconfig/libdpkg.pc -%%NLS%%man/de/man1/dpkg-architecture.1.gz %%NLS%%man/de/man1/dpkg-buildflags.1.gz %%NLS%%man/de/man1/dpkg-buildpackage.1.gz %%NLS%%man/de/man1/dpkg-checkbuilddeps.1.gz @@ -204,7 +203,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/es/man1/dpkg-mergechangelogs.1.gz %%NLS%%man/es/man1/dpkg-name.1.gz %%NLS%%man/es/man1/dpkg-parsechangelog.1.gz -%%NLS%%man/es/man1/dpkg-query.1.gz %%NLS%%man/es/man1/dpkg-scanpackages.1.gz %%NLS%%man/es/man1/dpkg-scansources.1.gz %%NLS%%man/es/man1/dpkg-shlibdeps.1.gz @@ -226,17 +224,20 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/es/man5/deb-symbols.5.gz %%NLS%%man/es/man5/deb-triggers.5.gz %%NLS%%man/es/man5/deb-version.5.gz -%%NLS%%man/es/man5/deb.5.gz %%NLS%%man/es/man5/dpkg.cfg.5.gz %%NLS%%man/es/man5/dselect.cfg.5.gz %%NLS%%man/es/man8/dpkg-divert.8.gz %%NLS%%man/es/man8/start-stop-daemon.8.gz %%NLS%%man/es/man8/update-alternatives.8.gz +%%NLS%%man/fr/man1/dpkg-buildflags.1.gz +%%NLS%%man/fr/man1/dpkg-buildpackage.1.gz +%%NLS%%man/fr/man1/dpkg-checkbuilddeps.1.gz %%NLS%%man/fr/man1/dpkg-deb.1.gz %%NLS%%man/fr/man1/dpkg-distaddfile.1.gz %%NLS%%man/fr/man1/dpkg-genchanges.1.gz %%NLS%%man/fr/man1/dpkg-gencontrol.1.gz %%NLS%%man/fr/man1/dpkg-gensymbols.1.gz +%%NLS%%man/fr/man1/dpkg-maintscript-helper.1.gz %%NLS%%man/fr/man1/dpkg-mergechangelogs.1.gz %%NLS%%man/fr/man1/dpkg-name.1.gz %%NLS%%man/fr/man1/dpkg-parsechangelog.1.gz @@ -266,6 +267,7 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/fr/man5/dpkg.cfg.5.gz %%NLS%%man/fr/man5/dselect.cfg.5.gz %%NLS%%man/fr/man8/dpkg-divert.8.gz +%%NLS%%man/fr/man8/dpkg-statoverride.8.gz %%NLS%%man/fr/man8/start-stop-daemon.8.gz %%NLS%%man/fr/man8/update-alternatives.8.gz %%NLS%%man/hu/man5/dpkg.cfg.5.gz @@ -276,7 +278,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/it/man1/dpkg-distaddfile.1.gz %%NLS%%man/it/man1/dpkg-name.1.gz %%NLS%%man/it/man1/dpkg-parsechangelog.1.gz -%%NLS%%man/it/man1/dpkg-query.1.gz %%NLS%%man/it/man1/dpkg-scanpackages.1.gz %%NLS%%man/it/man1/dpkg-scansources.1.gz %%NLS%%man/it/man1/dpkg-split.1.gz @@ -293,7 +294,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/it/man5/deb-src-control.5.gz %%NLS%%man/it/man5/deb-substvars.5.gz %%NLS%%man/it/man5/deb-version.5.gz -%%NLS%%man/it/man5/deb.5.gz %%NLS%%man/it/man5/dpkg.cfg.5.gz %%NLS%%man/it/man5/dselect.cfg.5.gz %%NLS%%man/it/man8/dpkg-statoverride.8.gz @@ -307,7 +307,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/ja/man1/dpkg-mergechangelogs.1.gz %%NLS%%man/ja/man1/dpkg-name.1.gz %%NLS%%man/ja/man1/dpkg-parsechangelog.1.gz -%%NLS%%man/ja/man1/dpkg-query.1.gz %%NLS%%man/ja/man1/dpkg-scanpackages.1.gz %%NLS%%man/ja/man1/dpkg-scansources.1.gz %%NLS%%man/ja/man1/dpkg-shlibdeps.1.gz @@ -329,7 +328,6 @@ libexec/pkgconfig/libdpkg.pc %%NLS%%man/ja/man5/deb-symbols.5.gz %%NLS%%man/ja/man5/deb-triggers.5.gz %%NLS%%man/ja/man5/deb-version.5.gz -%%NLS%%man/ja/man5/deb.5.gz %%NLS%%man/ja/man5/dpkg.cfg.5.gz %%NLS%%man/ja/man5/dselect.cfg.5.gz %%NLS%%man/ja/man8/dpkg-divert.8.gz @@ -420,7 +418,6 @@ man/man8/update-alternatives.8.gz %%NLS%%man/pl/man1/dpkg-mergechangelogs.1.gz %%NLS%%man/pl/man1/dpkg-name.1.gz %%NLS%%man/pl/man1/dpkg-parsechangelog.1.gz -%%NLS%%man/pl/man1/dpkg-query.1.gz %%NLS%%man/pl/man1/dpkg-scanpackages.1.gz %%NLS%%man/pl/man1/dpkg-scansources.1.gz %%NLS%%man/pl/man1/dpkg-shlibdeps.1.gz @@ -442,13 +439,11 @@ man/man8/update-alternatives.8.gz %%NLS%%man/pl/man5/deb-symbols.5.gz %%NLS%%man/pl/man5/deb-triggers.5.gz %%NLS%%man/pl/man5/deb-version.5.gz -%%NLS%%man/pl/man5/deb.5.gz %%NLS%%man/pl/man5/dpkg.cfg.5.gz %%NLS%%man/pl/man5/dselect.cfg.5.gz %%NLS%%man/pl/man8/dpkg-divert.8.gz %%NLS%%man/pl/man8/start-stop-daemon.8.gz %%NLS%%man/pl/man8/update-alternatives.8.gz -%%NLS%%man/sv/man1/dpkg-architecture.1.gz %%NLS%%man/sv/man1/dpkg-buildflags.1.gz %%NLS%%man/sv/man1/dpkg-buildpackage.1.gz %%NLS%%man/sv/man1/dpkg-checkbuilddeps.1.gz @@ -571,91 +566,25 @@ sbin/start-stop-daemon %%NLS%%share/locale/th/LC_MESSAGES/dpkg.mo %%NLS%%share/locale/tl/LC_MESSAGES/dpkg.mo %%NLS%%share/locale/tl/LC_MESSAGES/dselect.mo +%%NLS%%share/locale/tr/LC_MESSAGES/dpkg.mo %%NLS%%share/locale/vi/LC_MESSAGES/dpkg.mo %%NLS%%share/locale/vi/LC_MESSAGES/dselect.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/dpkg.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/dselect.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/dpkg.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/dselect.mo -%%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/tl -%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/mr -%%NLS%%@dirrmtry share/locale/ku/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ku -%%NLS%%@dirrmtry share/locale/km/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/km -%%NLS%%@dirrmtry share/locale/dz/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/dz -%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ast -@dirrm %%DATADIR%% -@dirrm libexec/pkgconfig -@dirrm libexec/dpkg/parsechangelog -@dirrm libexec/dpkg/methods/multicd -@dirrm libexec/dpkg/methods/ftp -@dirrm libexec/dpkg/methods/floppy -@dirrm libexec/dpkg/methods/disk -@dirrm libexec/dpkg/methods -@dirrm libexec/dpkg -@dirrm %%SITE_PERL%%/Dselect -@dirrm %%SITE_PERL%%/Dpkg/Vendor -@dirrm %%SITE_PERL%%/Dpkg/Source/Package/V3 -@dirrm %%SITE_PERL%%/Dpkg/Source/Package -@dirrm %%SITE_PERL%%/Dpkg/Source -@dirrm %%SITE_PERL%%/Dpkg/Shlibs -@dirrm %%SITE_PERL%%/Dpkg/Interface -@dirrm %%SITE_PERL%%/Dpkg/Dist -@dirrm %%SITE_PERL%%/Dpkg/Control -@dirrm %%SITE_PERL%%/Dpkg/Compression -@dirrm %%SITE_PERL%%/Dpkg/Changelog/Entry -@dirrm %%SITE_PERL%%/Dpkg/Changelog -@dirrm %%SITE_PERL%%/Dpkg -@dirrm include/dpkg -@dirrmtry etc/dpkg/dselect.cfg.d -@dirrmtry etc/dpkg/dpkg.cfg.d -@dirrmtry etc/dpkg -@dirrmtry etc/alternatives -%%NLS%%@dirrmtry man/sv/man8 -%%NLS%%@dirrmtry man/sv/man5 -%%NLS%%@dirrmtry man/sv/man1 -%%NLS%%@dirrmtry man/sv -%%NLS%%@dirrmtry man/pl/man8 -%%NLS%%@dirrmtry man/pl/man5 -%%NLS%%@dirrmtry man/pl/man1 -%%NLS%%@dirrmtry man/pl -%%NLS%%@dirrmtry man/it/man8 -%%NLS%%@dirrmtry man/it/man5 -%%NLS%%@dirrmtry man/it/man1 -%%NLS%%@dirrmtry man/it -%%NLS%%@dirrmtry man/hu/man8 -%%NLS%%@dirrmtry man/hu/man5 -%%NLS%%@dirrmtry man/hu/man1 -%%NLS%%@dirrmtry man/hu -%%NLS%%@dirrmtry man/fr/man8 -%%NLS%%@dirrmtry man/fr/man5 -%%NLS%%@dirrmtry man/fr/man1 -%%NLS%%@dirrmtry man/fr -%%NLS%%@dirrmtry man/es/man8 -%%NLS%%@dirrmtry man/es/man5 -%%NLS%%@dirrmtry man/es/man1 -%%NLS%%@dirrmtry man/es -%%NLS%%@dirrmtry man/de/man8 -%%NLS%%@dirrmtry man/de/man5 -%%NLS%%@dirrmtry man/de/man1 -%%NLS%%@dirrmtry man/de -@exec [ -e /%%DPKGDIR%%/available ] || touch /%%DPKGDIR%%/available -@exec [ -e /%%DPKGDIR%%/diversions ] || touch /%%DPKGDIR%%/diversions -@exec [ -e /%%DPKGDIR%%/statoverride ] || touch /%%DPKGDIR%%/statoverride -@exec [ -e /%%DPKGDIR%%/status ] || touch /%%DPKGDIR%%/status -@dirrmtry /%%DPKGDIR%%/updates -@dirrmtry /%%DPKGDIR%%/parts -@dirrmtry /%%DPKGDIR%%/methods/multicd -@dirrmtry /%%DPKGDIR%%/methods/mnt -@dirrmtry /%%DPKGDIR%%/methods/ftp -@dirrmtry /%%DPKGDIR%%/methods/floppy -@dirrmtry /%%DPKGDIR%%/methods/disk -@dirrmtry /%%DPKGDIR%%/methods -@dirrmtry /%%DPKGDIR%%/info -@dirrmtry /%%DPKGDIR%%/alternatives -@dirrmtry /%%DPKGDIR%% +@dir %%DPKGDIR%%/alternatives +@dir %%DPKGDIR%%/available +@dir %%DPKGDIR%%/diversions +@dir %%DPKGDIR%%/info +@dir %%DPKGDIR%%/methods/disk +@dir %%DPKGDIR%%/methods/floppy +@dir %%DPKGDIR%%/methods/ftp +@dir %%DPKGDIR%%/methods/mnt +@dir %%DPKGDIR%%/methods/multicd +@dir %%DPKGDIR%%/methods +@dir %%DPKGDIR%%/parts +@dir %%DPKGDIR%%/statoverride +@dir %%DPKGDIR%%/status +@dir %%DPKGDIR%%/updates +@dir %%DPKGDIR%% From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 15:24:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A729C66C; Wed, 8 Oct 2014 15:24:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 93AECE51; Wed, 8 Oct 2014 15:24:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98FOLPt047249; Wed, 8 Oct 2014 15:24:21 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98FOLs9047248; Wed, 8 Oct 2014 15:24:21 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201410081524.s98FOLs9047248@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Wed, 8 Oct 2014 15:24:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370446 - head/lang/php56 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 15:24:21 -0000 Author: ale Date: Wed Oct 8 15:24:20 2014 New Revision: 370446 URL: https://svnweb.freebsd.org/changeset/ports/370446 QAT: https://qat.redports.org/buildarchive/r370446/ Log: Fix build on 8.x and 9.x. Modified: head/lang/php56/Makefile Modified: head/lang/php56/Makefile ============================================================================== --- head/lang/php56/Makefile Wed Oct 8 15:11:16 2014 (r370445) +++ head/lang/php56/Makefile Wed Oct 8 15:24:20 2014 (r370446) @@ -145,6 +145,7 @@ CONFIGURE_ARGS+=--with-zend-vm=GOTO CONFIGURE_ENV+= ac_cv_pthreads_lib="" \ ac_cv_pthreads_cflags="" \ + ac_cv_decimal_fp_supported="no" \ pthreads_working="yes" \ lt_cv_path_SED="sed" From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 15:38:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0737DE0; Wed, 8 Oct 2014 15:38:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A26A0FA8; Wed, 8 Oct 2014 15:38:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Fcs9S052719; Wed, 8 Oct 2014 15:38:54 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98FcsO2052717; Wed, 8 Oct 2014 15:38:54 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410081538.s98FcsO2052717@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 8 Oct 2014 15:38:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370447 - in head/games/pysolfc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 15:38:54 -0000 Author: wg Date: Wed Oct 8 15:38:53 2014 New Revision: 370447 URL: https://svnweb.freebsd.org/changeset/ports/370447 QAT: https://qat.redports.org/buildarchive/r370447/ Log: games/pysolfc: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Added: head/games/pysolfc/files/patch-pysollib__mfxutil.py (contents, props changed) Modified: head/games/pysolfc/Makefile Modified: head/games/pysolfc/Makefile ============================================================================== --- head/games/pysolfc/Makefile Wed Oct 8 15:24:20 2014 (r370446) +++ head/games/pysolfc/Makefile Wed Oct 8 15:38:53 2014 (r370447) @@ -2,7 +2,7 @@ PORTNAME= pysolfc PORTVERSION= 2.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games python MASTER_SITES= SF/${PORTNAME}/PySolFC/PySolFC-${PORTVERSION} \ SF/${PORTNAME}/PySolFC-Cardsets/PySolFC-Cardsets-${PORTVERSION}:cardsets @@ -15,7 +15,7 @@ COMMENT= Solitaire game, written in Pyth LICENSE= GPLv3 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \ - ${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow USES= python tar:bzip2 USE_PYTHON= autoplist distutils Added: head/games/pysolfc/files/patch-pysollib__mfxutil.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/pysolfc/files/patch-pysollib__mfxutil.py Wed Oct 8 15:38:53 2014 (r370447) @@ -0,0 +1,29 @@ +--- pysollib/mfxutil.py.orig 2014-10-08 15:37:56 UTC ++++ pysollib/mfxutil.py +@@ -41,18 +41,18 @@ + Image = ImageTk = ImageOps = None + if TOOLKIT == 'tk': + try: # PIL +- import Image +- import ImageTk +- import ImageOps ++ from PIL import Image ++ from PIL import ImageTk ++ from PIL import ImageOps + except ImportError: + Image = None + else: + # for py2exe +- import GifImagePlugin +- import PngImagePlugin +- import JpegImagePlugin +- import BmpImagePlugin +- import PpmImagePlugin ++ from PIL import GifImagePlugin ++ from PIL import PngImagePlugin ++ from PIL import JpegImagePlugin ++ from PIL import BmpImagePlugin ++ from PIL import PpmImagePlugin + Image._initialized = 2 + + From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 15:41:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6AFF6259; Wed, 8 Oct 2014 15:41:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D005F0; Wed, 8 Oct 2014 15:41:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98FfJfI056183; Wed, 8 Oct 2014 15:41:19 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98FfIRv056180; Wed, 8 Oct 2014 15:41:18 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410081541.s98FfIRv056180@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 8 Oct 2014 15:41:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370448 - head/mail/rainloop X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 15:41:19 -0000 Author: feld Date: Wed Oct 8 15:41:18 2014 New Revision: 370448 URL: https://svnweb.freebsd.org/changeset/ports/370448 QAT: https://qat.redports.org/buildarchive/r370448/ Log: Update to 1.6.10 Define LICENSE PR: 194181 Modified: head/mail/rainloop/Makefile head/mail/rainloop/distinfo head/mail/rainloop/pkg-plist Modified: head/mail/rainloop/Makefile ============================================================================== --- head/mail/rainloop/Makefile Wed Oct 8 15:38:53 2014 (r370447) +++ head/mail/rainloop/Makefile Wed Oct 8 15:41:18 2014 (r370448) @@ -1,19 +1,24 @@ # $FreeBSD$ PORTNAME= rainloop -PORTVERSION= 1.6.9 +PORTVERSION= 1.6.10 CATEGORIES?= mail www MASTER_SITES= SF/${PORTNAME}-webmail/ MAINTAINER= loic.blot@unix-experience.fr COMMENT= Modern and interactive webmail +LICENSE= CCbyNCSA3 +LICENSE_NAME= Attribution-NonCommercial-ShareAlike 3.0 Unported +LICENSE_TEXT= License can be found at: https://github.com/RainLoop/rainloop-webmail/blob/master/LICENSE +LICENSE_PERMS= dist-mirror pkg-mirror auto-accept + USES= zip NO_BUILD= yes NO_WRKSUBDIR= yes WANT_PHP_WEB= yes USE_PHP= curl iconv json xml dom openssl pcre spl zlib -RVER= 1.6.9.164 +RVER= 1.6.10.182 PLIST_SUB= VER="${RVER}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" # @TODO: PDO also for different backends Modified: head/mail/rainloop/distinfo ============================================================================== --- head/mail/rainloop/distinfo Wed Oct 8 15:38:53 2014 (r370447) +++ head/mail/rainloop/distinfo Wed Oct 8 15:41:18 2014 (r370448) @@ -1,2 +1,2 @@ -SHA256 (rainloop-1.6.9.zip) = c6f14be0fafec801109fefe79b085ca8cf49ffdac6bcb0b7eecdb505d438befe -SIZE (rainloop-1.6.9.zip) = 4723573 +SHA256 (rainloop-1.6.10.zip) = 6274baaf7581f24ddbfb3228b9f551a78f7409c286f51bc17f58266077e93e1e +SIZE (rainloop-1.6.10.zip) = 4754136 Modified: head/mail/rainloop/pkg-plist ============================================================================== --- head/mail/rainloop/pkg-plist Wed Oct 8 15:38:53 2014 (r370447) +++ head/mail/rainloop/pkg-plist Wed Oct 8 15:41:18 2014 (r370448) @@ -788,6 +788,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/langs/it.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/ja-jp.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/ko-kr.ini +%%WWWDIR%%/rainloop/v/%%VER%%/langs/lt.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/lv.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/nl.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/no.ini @@ -797,6 +798,7 @@ %%WWWDIR%%/rainloop/v/%%VER%%/langs/ro.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/ru.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/sk.ini +%%WWWDIR%%/rainloop/v/%%VER%%/langs/sv.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/tr.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/ua.ini %%WWWDIR%%/rainloop/v/%%VER%%/langs/zh-cn.ini From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:00:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7A0BDBAE; Wed, 8 Oct 2014 16:00:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 665C72DD; Wed, 8 Oct 2014 16:00:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98G0FDZ063674; Wed, 8 Oct 2014 16:00:15 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98G0FWN063673; Wed, 8 Oct 2014 16:00:15 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410081600.s98G0FWN063673@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 8 Oct 2014 16:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370449 - head/net-im/pwytter X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:00:15 -0000 Author: wg Date: Wed Oct 8 16:00:14 2014 New Revision: 370449 URL: https://svnweb.freebsd.org/changeset/ports/370449 QAT: https://qat.redports.org/buildarchive/r370449/ Log: net-im/pwytter: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/net-im/pwytter/Makefile Modified: head/net-im/pwytter/Makefile ============================================================================== --- head/net-im/pwytter/Makefile Wed Oct 8 15:41:18 2014 (r370448) +++ head/net-im/pwytter/Makefile Wed Oct 8 16:00:14 2014 (r370449) @@ -3,7 +3,7 @@ PORTNAME= pwytter PORTVERSION= 0.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-im www python MASTER_SITES= GOOGLE_CODE DISTNAME= ${PORTNAME}-${PORTVERSION}-src @@ -14,15 +14,13 @@ COMMENT= Free multi-platform Twitter cli LICENSE= GPLv2 BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \ - ${PYTHON_SITELIBDIR}/PIL/_imaging.so:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}simplejson>=1.7.1:${PORTSDIR}/devel/py-simplejson RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= gettext zip dos2unix -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= dos2unix gettext python:2 zip +USE_PYTHON= autoplist distutils WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} DOS2UNIX_GLOB= *.py From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:14:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A004FFBC; Wed, 8 Oct 2014 16:14:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C1B56A6; Wed, 8 Oct 2014 16:14:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98GESgq071777; Wed, 8 Oct 2014 16:14:28 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98GESJ8071776; Wed, 8 Oct 2014 16:14:28 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410081614.s98GESJ8071776@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 8 Oct 2014 16:14:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370450 - head/math/asymptote X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:14:28 -0000 Author: wg Date: Wed Oct 8 16:14:27 2014 New Revision: 370450 URL: https://svnweb.freebsd.org/changeset/ports/370450 QAT: https://qat.redports.org/buildarchive/r370450/ Log: math/asymptote: switch from py-imaging to py-pillow - USES python With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/math/asymptote/Makefile Modified: head/math/asymptote/Makefile ============================================================================== --- head/math/asymptote/Makefile Wed Oct 8 16:00:14 2014 (r370449) +++ head/math/asymptote/Makefile Wed Oct 8 16:14:27 2014 (r370450) @@ -3,7 +3,7 @@ PORTNAME= asymptote PORTVERSION= 2.32 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION} @@ -18,7 +18,7 @@ LICENSE_COMB= dual LIB_DEPENDS= libgc-threaded.so:${PORTSDIR}/devel/boehm-gc-threaded RUN_DEPENDS= animate:${PORTSDIR}/graphics/ImageMagick \ gv:${PORTSDIR}/print/gv \ - ${PYTHON_PKGNAMEPREFIX}imaging>=1.1.6_3:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter ALL_TARGET= asy asy-keywords.el @@ -35,12 +35,11 @@ MAKE_JOBS_UNSAFE= yes ONLY_FOR_ARCHS= i386 amd64 -USES= gmake perl5 tar:tgz +USES= gmake perl5 python tar:tgz USE_AUTOTOOLS= autoconf aclocal USE_GHOSTSCRIPT=yes USE_GL= glut USE_PERL5= build -USE_PYTHON= yes USE_TEX= dvipsk formats WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:23:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFFF44C1; Wed, 8 Oct 2014 16:23:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BC33E7E7; Wed, 8 Oct 2014 16:23:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98GNjsE076566; Wed, 8 Oct 2014 16:23:45 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98GNjjr076565; Wed, 8 Oct 2014 16:23:45 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410081623.s98GNjjr076565@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 8 Oct 2014 16:23:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370451 - head/comms/wsjt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:23:45 -0000 Author: wg Date: Wed Oct 8 16:23:45 2014 New Revision: 370451 URL: https://svnweb.freebsd.org/changeset/ports/370451 QAT: https://qat.redports.org/buildarchive/r370451/ Log: comms/wsjt: switch from py-imaging to py-pillow With hat: python Approved by: portmgr (bdrewery, implicit) Modified: head/comms/wsjt/Makefile Modified: head/comms/wsjt/Makefile ============================================================================== --- head/comms/wsjt/Makefile Wed Oct 8 16:14:27 2014 (r370450) +++ head/comms/wsjt/Makefile Wed Oct 8 16:23:45 2014 (r370451) @@ -2,7 +2,7 @@ PORTNAME= wsjt VERSION= 9.1 -PORTREVISION= 5 +PORTREVISION= 6 DISTVERSION= ${VERSION}.r${SVN_REV} CATEGORIES= comms hamradio MASTER_SITES= ${MASTER_SITE_LOCAL} @@ -13,7 +13,7 @@ MAINTAINER= hamradio@FreeBSD.org COMMENT= Weak signal ham radio communication package RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging + ${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow LIB_DEPENDS= libfftw3f.so:${PORTSDIR}/math/fftw3-float \ libsamplerate.so:${PORTSDIR}/audio/libsamplerate BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/scipy:${PORTSDIR}/science/py-scipy \ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:39:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB617DF3; Wed, 8 Oct 2014 16:39:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A71D493B; Wed, 8 Oct 2014 16:39:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Gdi9W082787; Wed, 8 Oct 2014 16:39:44 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98GdiHh082781; Wed, 8 Oct 2014 16:39:44 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410081639.s98GdiHh082781@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Wed, 8 Oct 2014 16:39:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370455 - head/math/armadillo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:39:44 -0000 Author: danilo Date: Wed Oct 8 16:39:43 2014 New Revision: 370455 URL: https://svnweb.freebsd.org/changeset/ports/370455 QAT: https://qat.redports.org/buildarchive/r370455/ Log: - Update from 4.450.2 to 4.450.3 Modified: head/math/armadillo/Makefile head/math/armadillo/distinfo head/math/armadillo/pkg-plist Modified: head/math/armadillo/Makefile ============================================================================== --- head/math/armadillo/Makefile Wed Oct 8 16:36:14 2014 (r370454) +++ head/math/armadillo/Makefile Wed Oct 8 16:39:43 2014 (r370455) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= armadillo -PORTVERSION= 4.450.2 +PORTVERSION= 4.450.3 CATEGORIES= math MASTER_SITES= SF/arma Modified: head/math/armadillo/distinfo ============================================================================== --- head/math/armadillo/distinfo Wed Oct 8 16:36:14 2014 (r370454) +++ head/math/armadillo/distinfo Wed Oct 8 16:39:43 2014 (r370455) @@ -1,2 +1,2 @@ -SHA256 (armadillo-4.450.2.tar.gz) = 0e454e5a6b8eee320e2347a7f0b920f43dcf59afd90760d5709093aab925c1d0 -SIZE (armadillo-4.450.2.tar.gz) = 5342251 +SHA256 (armadillo-4.450.3.tar.gz) = c1b73943eb2adbad7a88c4eb491336bd9094bf4e41be2e5baa0db3f14b7cc4aa +SIZE (armadillo-4.450.3.tar.gz) = 5342468 Modified: head/math/armadillo/pkg-plist ============================================================================== --- head/math/armadillo/pkg-plist Wed Oct 8 16:36:14 2014 (r370454) +++ head/math/armadillo/pkg-plist Wed Oct 8 16:39:43 2014 (r370455) @@ -403,7 +403,7 @@ include/armadillo_bits/xvec_htrans_bones include/armadillo_bits/xvec_htrans_meat.hpp lib/libarmadillo.so lib/libarmadillo.so.4 -lib/libarmadillo.so.4.450.2 +lib/libarmadillo.so.4.450.3 share/Armadillo/CMake/ArmadilloConfig.cmake share/Armadillo/CMake/ArmadilloConfigVersion.cmake share/Armadillo/CMake/ArmadilloLibraryDepends-release.cmake From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:46:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E1C53AA; Wed, 8 Oct 2014 16:46:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5813DA1C; Wed, 8 Oct 2014 16:46:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98GkPqA087129; Wed, 8 Oct 2014 16:46:25 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98GkPuv087128; Wed, 8 Oct 2014 16:46:25 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410081646.s98GkPuv087128@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 8 Oct 2014 16:46:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370456 - head/devel/py-mccabe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:46:25 -0000 Author: wg Date: Wed Oct 8 16:46:24 2014 New Revision: 370456 URL: https://svnweb.freebsd.org/changeset/ports/370456 QAT: https://qat.redports.org/buildarchive/r370456/ Log: devel/py-mccabe: remove setuptools hack and use newer python knob Modified: head/devel/py-mccabe/Makefile Modified: head/devel/py-mccabe/Makefile ============================================================================== --- head/devel/py-mccabe/Makefile Wed Oct 8 16:39:43 2014 (r370455) +++ head/devel/py-mccabe/Makefile Wed Oct 8 16:46:24 2014 (r370456) @@ -10,11 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= wg@FreeBSD.org COMMENT= Ned's script to check McCabe complexity -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYTHON_PY3K_PLIST_HACK= yes - -post-patch: - @${REINPLACE_CMD} -e 's|setuptools|distutils.core|' ${WRKSRC}/${PYSETUP} +USES= python +USE_PYTHON= autoplist distutils .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:49:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB358716; Wed, 8 Oct 2014 16:49:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D54D2A4D; Wed, 8 Oct 2014 16:49:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98GnerT087708; Wed, 8 Oct 2014 16:49:40 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98GneNU087706; Wed, 8 Oct 2014 16:49:40 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410081649.s98GneNU087706@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 8 Oct 2014 16:49:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370457 - head/www/zend-framework X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:49:41 -0000 Author: wg Date: Wed Oct 8 16:49:39 2014 New Revision: 370457 URL: https://svnweb.freebsd.org/changeset/ports/370457 QAT: https://qat.redports.org/buildarchive/r370457/ Log: www/zend-framework: update to 2.3.3 Modified: head/www/zend-framework/Makefile head/www/zend-framework/distinfo head/www/zend-framework/pkg-plist Modified: head/www/zend-framework/Makefile ============================================================================== --- head/www/zend-framework/Makefile Wed Oct 8 16:46:24 2014 (r370456) +++ head/www/zend-framework/Makefile Wed Oct 8 16:49:39 2014 (r370457) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ZendFramework -PORTVERSION= 2.3.1 +PORTVERSION= 2.3.3 CATEGORIES= www MASTER_SITES= https://packages.zendframework.com/releases/${DISTNAME}/ Modified: head/www/zend-framework/distinfo ============================================================================== --- head/www/zend-framework/distinfo Wed Oct 8 16:46:24 2014 (r370456) +++ head/www/zend-framework/distinfo Wed Oct 8 16:49:39 2014 (r370457) @@ -1,2 +1,2 @@ -SHA256 (ZendFramework-2.3.1.tgz) = b121e3240c9c6cdb19c6c9921928f054c08a8a906052b9044ccfff8f544b56a7 -SIZE (ZendFramework-2.3.1.tgz) = 1588314 +SHA256 (ZendFramework-2.3.3.tgz) = fe3ab70c48fcd9752f99cc9c3d41b2055834b42a67d2f4247f60f261c04f292c +SIZE (ZendFramework-2.3.3.tgz) = 1603098 Modified: head/www/zend-framework/pkg-plist ============================================================================== --- head/www/zend-framework/pkg-plist Wed Oct 8 16:46:24 2014 (r370456) +++ head/www/zend-framework/pkg-plist Wed Oct 8 16:49:39 2014 (r370457) @@ -29,6 +29,7 @@ %%DATADIR%%/library/Zend/Authentication/Adapter/ValidatableAdapterInterface.php %%DATADIR%%/library/Zend/Authentication/AuthenticationService.php %%DATADIR%%/library/Zend/Authentication/AuthenticationServiceInterface.php +%%DATADIR%%/library/Zend/Authentication/CONTRIBUTING.md %%DATADIR%%/library/Zend/Authentication/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Authentication/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Authentication/Exception/RuntimeException.php @@ -42,6 +43,7 @@ %%DATADIR%%/library/Zend/Authentication/Validator/Authentication.php %%DATADIR%%/library/Zend/Authentication/composer.json %%DATADIR%%/library/Zend/Barcode/Barcode.php +%%DATADIR%%/library/Zend/Barcode/CONTRIBUTING.md %%DATADIR%%/library/Zend/Barcode/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Barcode/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Barcode/Exception/OutOfRangeException.php @@ -88,6 +90,7 @@ %%DATADIR%%/library/Zend/Barcode/Renderer/Svg.php %%DATADIR%%/library/Zend/Barcode/RendererPluginManager.php %%DATADIR%%/library/Zend/Barcode/composer.json +%%DATADIR%%/library/Zend/Cache/CONTRIBUTING.md %%DATADIR%%/library/Zend/Cache/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/Cache/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Cache/Exception/ExtensionNotLoadedException.php @@ -175,6 +178,7 @@ %%DATADIR%%/library/Zend/Captcha/AbstractAdapter.php %%DATADIR%%/library/Zend/Captcha/AbstractWord.php %%DATADIR%%/library/Zend/Captcha/AdapterInterface.php +%%DATADIR%%/library/Zend/Captcha/CONTRIBUTING.md %%DATADIR%%/library/Zend/Captcha/Dumb.php %%DATADIR%%/library/Zend/Captcha/Exception/DomainException.php %%DATADIR%%/library/Zend/Captcha/Exception/ExceptionInterface.php @@ -195,6 +199,7 @@ %%DATADIR%%/library/Zend/Code/Annotation/Parser/DoctrineAnnotationParser.php %%DATADIR%%/library/Zend/Code/Annotation/Parser/GenericAnnotationParser.php %%DATADIR%%/library/Zend/Code/Annotation/Parser/ParserInterface.php +%%DATADIR%%/library/Zend/Code/CONTRIBUTING.md %%DATADIR%%/library/Zend/Code/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/Code/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Code/Exception/InvalidArgumentException.php @@ -274,6 +279,7 @@ %%DATADIR%%/library/Zend/Code/Scanner/ValueScanner.php %%DATADIR%%/library/Zend/Code/composer.json %%DATADIR%%/library/Zend/Config/AbstractConfigFactory.php +%%DATADIR%%/library/Zend/Config/CONTRIBUTING.md %%DATADIR%%/library/Zend/Config/Config.php %%DATADIR%%/library/Zend/Config/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Config/Exception/InvalidArgumentException.php @@ -308,6 +314,7 @@ %%DATADIR%%/library/Zend/Console/Adapter/Virtual.php %%DATADIR%%/library/Zend/Console/Adapter/Windows.php %%DATADIR%%/library/Zend/Console/Adapter/WindowsAnsicon.php +%%DATADIR%%/library/Zend/Console/CONTRIBUTING.md %%DATADIR%%/library/Zend/Console/Charset/Ascii.php %%DATADIR%%/library/Zend/Console/Charset/AsciiExtended.php %%DATADIR%%/library/Zend/Console/Charset/CharsetInterface.php @@ -336,6 +343,7 @@ %%DATADIR%%/library/Zend/Console/RouteMatcher/RouteMatcherInterface.php %%DATADIR%%/library/Zend/Console/composer.json %%DATADIR%%/library/Zend/Crypt/BlockCipher.php +%%DATADIR%%/library/Zend/Crypt/CONTRIBUTING.md %%DATADIR%%/library/Zend/Crypt/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Crypt/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Crypt/Exception/RuntimeException.php @@ -435,6 +443,7 @@ %%DATADIR%%/library/Zend/Db/Adapter/Profiler/ProfilerInterface.php %%DATADIR%%/library/Zend/Db/Adapter/StatementContainer.php %%DATADIR%%/library/Zend/Db/Adapter/StatementContainerInterface.php +%%DATADIR%%/library/Zend/Db/CONTRIBUTING.md %%DATADIR%%/library/Zend/Db/Exception/ErrorException.php %%DATADIR%%/library/Zend/Db/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Db/Exception/InvalidArgumentException.php @@ -505,6 +514,8 @@ %%DATADIR%%/library/Zend/Db/Sql/Insert.php %%DATADIR%%/library/Zend/Db/Sql/Literal.php %%DATADIR%%/library/Zend/Db/Sql/Platform/AbstractPlatform.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/IbmDb2/IbmDb2.php +%%DATADIR%%/library/Zend/Db/Sql/Platform/IbmDb2/SelectDecorator.php %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/Ddl/CreateTableDecorator.php %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/Mysql.php %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/SelectDecorator.php @@ -551,9 +562,11 @@ %%DATADIR%%/library/Zend/Db/TableGateway/TableGateway.php %%DATADIR%%/library/Zend/Db/TableGateway/TableGatewayInterface.php %%DATADIR%%/library/Zend/Db/composer.json +%%DATADIR%%/library/Zend/Debug/CONTRIBUTING.md %%DATADIR%%/library/Zend/Debug/Debug.php %%DATADIR%%/library/Zend/Debug/README.md %%DATADIR%%/library/Zend/Debug/composer.json +%%DATADIR%%/library/Zend/Di/CONTRIBUTING.md %%DATADIR%%/library/Zend/Di/Config.php %%DATADIR%%/library/Zend/Di/Definition/Annotation/Inject.php %%DATADIR%%/library/Zend/Di/Definition/Annotation/Instantiator.php @@ -591,6 +604,7 @@ %%DATADIR%%/library/Zend/Di/ServiceLocatorInterface.php %%DATADIR%%/library/Zend/Di/TODO %%DATADIR%%/library/Zend/Di/composer.json +%%DATADIR%%/library/Zend/Dom/CONTRIBUTING.md %%DATADIR%%/library/Zend/Dom/Css2Xpath.php %%DATADIR%%/library/Zend/Dom/DOMXPath.php %%DATADIR%%/library/Zend/Dom/Document.php @@ -603,6 +617,7 @@ %%DATADIR%%/library/Zend/Dom/Query.php %%DATADIR%%/library/Zend/Dom/README.md %%DATADIR%%/library/Zend/Dom/composer.json +%%DATADIR%%/library/Zend/Escaper/CONTRIBUTING.md %%DATADIR%%/library/Zend/Escaper/Escaper.php %%DATADIR%%/library/Zend/Escaper/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Escaper/Exception/InvalidArgumentException.php @@ -610,6 +625,7 @@ %%DATADIR%%/library/Zend/Escaper/README.md %%DATADIR%%/library/Zend/Escaper/composer.json %%DATADIR%%/library/Zend/EventManager/AbstractListenerAggregate.php +%%DATADIR%%/library/Zend/EventManager/CONTRIBUTING.md %%DATADIR%%/library/Zend/EventManager/Event.php %%DATADIR%%/library/Zend/EventManager/EventInterface.php %%DATADIR%%/library/Zend/EventManager/EventManager.php @@ -637,6 +653,7 @@ %%DATADIR%%/library/Zend/EventManager/SharedListenerAggregateInterface.php %%DATADIR%%/library/Zend/EventManager/StaticEventManager.php %%DATADIR%%/library/Zend/EventManager/composer.json +%%DATADIR%%/library/Zend/Feed/CONTRIBUTING.md %%DATADIR%%/library/Zend/Feed/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/Feed/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Feed/Exception/InvalidArgumentException.php @@ -740,6 +757,7 @@ %%DATADIR%%/library/Zend/Feed/Writer/Version.php %%DATADIR%%/library/Zend/Feed/Writer/Writer.php %%DATADIR%%/library/Zend/Feed/composer.json +%%DATADIR%%/library/Zend/File/CONTRIBUTING.md %%DATADIR%%/library/Zend/File/ClassFileLocator.php %%DATADIR%%/library/Zend/File/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/File/Exception/ExceptionInterface.php @@ -762,6 +780,7 @@ %%DATADIR%%/library/Zend/Filter/AbstractUnicode.php %%DATADIR%%/library/Zend/Filter/BaseName.php %%DATADIR%%/library/Zend/Filter/Boolean.php +%%DATADIR%%/library/Zend/Filter/CONTRIBUTING.md %%DATADIR%%/library/Zend/Filter/Callback.php %%DATADIR%%/library/Zend/Filter/Compress.php %%DATADIR%%/library/Zend/Filter/Compress/AbstractCompressionAlgorithm.php @@ -849,6 +868,7 @@ %%DATADIR%%/library/Zend/Form/Annotation/Type.php %%DATADIR%%/library/Zend/Form/Annotation/ValidationGroup.php %%DATADIR%%/library/Zend/Form/Annotation/Validator.php +%%DATADIR%%/library/Zend/Form/CONTRIBUTING.md %%DATADIR%%/library/Zend/Form/Element.php %%DATADIR%%/library/Zend/Form/Element/Button.php %%DATADIR%%/library/Zend/Form/Element/Captcha.php @@ -952,6 +972,7 @@ %%DATADIR%%/library/Zend/Form/View/HelperConfig.php %%DATADIR%%/library/Zend/Form/composer.json %%DATADIR%%/library/Zend/Http/AbstractMessage.php +%%DATADIR%%/library/Zend/Http/CONTRIBUTING.md %%DATADIR%%/library/Zend/Http/Client.php %%DATADIR%%/library/Zend/Http/Client/Adapter/AdapterInterface.php %%DATADIR%%/library/Zend/Http/Client/Adapter/Curl.php @@ -1057,6 +1078,7 @@ %%DATADIR%%/library/Zend/Http/Response.php %%DATADIR%%/library/Zend/Http/Response/Stream.php %%DATADIR%%/library/Zend/Http/composer.json +%%DATADIR%%/library/Zend/I18n/CONTRIBUTING.md %%DATADIR%%/library/Zend/I18n/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/I18n/Exception/ExtensionNotLoadedException.php %%DATADIR%%/library/Zend/I18n/Exception/InvalidArgumentException.php @@ -1348,6 +1370,7 @@ %%DATADIR%%/library/Zend/I18n/composer.json %%DATADIR%%/library/Zend/InputFilter/ArrayInput.php %%DATADIR%%/library/Zend/InputFilter/BaseInputFilter.php +%%DATADIR%%/library/Zend/InputFilter/CONTRIBUTING.md %%DATADIR%%/library/Zend/InputFilter/CollectionInputFilter.php %%DATADIR%%/library/Zend/InputFilter/EmptyContextInterface.php %%DATADIR%%/library/Zend/InputFilter/Exception/ExceptionInterface.php @@ -1368,6 +1391,7 @@ %%DATADIR%%/library/Zend/InputFilter/ReplaceableInputInterface.php %%DATADIR%%/library/Zend/InputFilter/UnknownInputsCapableInterface.php %%DATADIR%%/library/Zend/InputFilter/composer.json +%%DATADIR%%/library/Zend/Json/CONTRIBUTING.md %%DATADIR%%/library/Zend/Json/Decoder.php %%DATADIR%%/library/Zend/Json/Encoder.php %%DATADIR%%/library/Zend/Json/Exception/BadMethodCallException.php @@ -1395,6 +1419,7 @@ %%DATADIR%%/library/Zend/Json/Server/Smd/Service.php %%DATADIR%%/library/Zend/Json/composer.json %%DATADIR%%/library/Zend/Ldap/Attribute.php +%%DATADIR%%/library/Zend/Ldap/CONTRIBUTING.md %%DATADIR%%/library/Zend/Ldap/Collection.php %%DATADIR%%/library/Zend/Ldap/Collection/DefaultIterator.php %%DATADIR%%/library/Zend/Ldap/Converter/Converter.php @@ -1440,6 +1465,7 @@ %%DATADIR%%/library/Zend/Ldap/README.md %%DATADIR%%/library/Zend/Ldap/composer.json %%DATADIR%%/library/Zend/Loader/AutoloaderFactory.php +%%DATADIR%%/library/Zend/Loader/CONTRIBUTING.md %%DATADIR%%/library/Zend/Loader/ClassMapAutoloader.php %%DATADIR%%/library/Zend/Loader/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/Loader/Exception/DomainException.php @@ -1458,6 +1484,7 @@ %%DATADIR%%/library/Zend/Loader/SplAutoloader.php %%DATADIR%%/library/Zend/Loader/StandardAutoloader.php %%DATADIR%%/library/Zend/Loader/composer.json +%%DATADIR%%/library/Zend/Log/CONTRIBUTING.md %%DATADIR%%/library/Zend/Log/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Log/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Log/Exception/RuntimeException.php @@ -1512,6 +1539,7 @@ %%DATADIR%%/library/Zend/Mail/Address.php %%DATADIR%%/library/Zend/Mail/Address/AddressInterface.php %%DATADIR%%/library/Zend/Mail/AddressList.php +%%DATADIR%%/library/Zend/Mail/CONTRIBUTING.md %%DATADIR%%/library/Zend/Mail/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/Mail/Exception/DomainException.php %%DATADIR%%/library/Zend/Mail/Exception/ExceptionInterface.php @@ -1605,6 +1633,7 @@ %%DATADIR%%/library/Zend/Math/BigInteger/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Math/BigInteger/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Math/BigInteger/Exception/RuntimeException.php +%%DATADIR%%/library/Zend/Math/CONTRIBUTING.md %%DATADIR%%/library/Zend/Math/Exception/DomainException.php %%DATADIR%%/library/Zend/Math/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Math/Exception/InvalidArgumentException.php @@ -1613,6 +1642,7 @@ %%DATADIR%%/library/Zend/Math/Rand.php %%DATADIR%%/library/Zend/Math/Source/HashTiming.php %%DATADIR%%/library/Zend/Math/composer.json +%%DATADIR%%/library/Zend/Memory/CONTRIBUTING.md %%DATADIR%%/library/Zend/Memory/Container/AbstractContainer.php %%DATADIR%%/library/Zend/Memory/Container/AccessController.php %%DATADIR%%/library/Zend/Memory/Container/ContainerInterface.php @@ -1625,6 +1655,7 @@ %%DATADIR%%/library/Zend/Memory/README.md %%DATADIR%%/library/Zend/Memory/Value.php %%DATADIR%%/library/Zend/Memory/composer.json +%%DATADIR%%/library/Zend/Mime/CONTRIBUTING.md %%DATADIR%%/library/Zend/Mime/Decode.php %%DATADIR%%/library/Zend/Mime/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Mime/Exception/RuntimeException.php @@ -1633,6 +1664,7 @@ %%DATADIR%%/library/Zend/Mime/Part.php %%DATADIR%%/library/Zend/Mime/README.md %%DATADIR%%/library/Zend/Mime/composer.json +%%DATADIR%%/library/Zend/ModuleManager/CONTRIBUTING.md %%DATADIR%%/library/Zend/ModuleManager/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/ModuleManager/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/ModuleManager/Exception/MissingDependencyModuleException.php @@ -1682,6 +1714,7 @@ %%DATADIR%%/library/Zend/ModuleManager/composer.json %%DATADIR%%/library/Zend/Mvc/Application.php %%DATADIR%%/library/Zend/Mvc/ApplicationInterface.php +%%DATADIR%%/library/Zend/Mvc/CONTRIBUTING.md %%DATADIR%%/library/Zend/Mvc/Controller/AbstractActionController.php %%DATADIR%%/library/Zend/Mvc/Controller/AbstractConsoleController.php %%DATADIR%%/library/Zend/Mvc/Controller/AbstractController.php @@ -1812,6 +1845,7 @@ %%DATADIR%%/library/Zend/Mvc/View/SendResponseListener.php %%DATADIR%%/library/Zend/Mvc/composer.json %%DATADIR%%/library/Zend/Navigation/AbstractContainer.php +%%DATADIR%%/library/Zend/Navigation/CONTRIBUTING.md %%DATADIR%%/library/Zend/Navigation/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/Navigation/Exception/DomainException.php %%DATADIR%%/library/Zend/Navigation/Exception/ExceptionInterface.php @@ -1841,6 +1875,7 @@ %%DATADIR%%/library/Zend/Paginator/Adapter/Service/DbSelectFactory.php %%DATADIR%%/library/Zend/Paginator/AdapterAggregateInterface.php %%DATADIR%%/library/Zend/Paginator/AdapterPluginManager.php +%%DATADIR%%/library/Zend/Paginator/CONTRIBUTING.md %%DATADIR%%/library/Zend/Paginator/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Paginator/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Paginator/Exception/RuntimeException.php @@ -1862,6 +1897,7 @@ %%DATADIR%%/library/Zend/Permissions/Acl/Assertion/AssertionInterface.php %%DATADIR%%/library/Zend/Permissions/Acl/Assertion/AssertionManager.php %%DATADIR%%/library/Zend/Permissions/Acl/Assertion/Exception/InvalidAssertionException.php +%%DATADIR%%/library/Zend/Permissions/Acl/CONTRIBUTING.md %%DATADIR%%/library/Zend/Permissions/Acl/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Permissions/Acl/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Permissions/Acl/Exception/RuntimeException.php @@ -1875,6 +1911,7 @@ %%DATADIR%%/library/Zend/Permissions/Rbac/AbstractIterator.php %%DATADIR%%/library/Zend/Permissions/Rbac/AbstractRole.php %%DATADIR%%/library/Zend/Permissions/Rbac/AssertionInterface.php +%%DATADIR%%/library/Zend/Permissions/Rbac/CONTRIBUTING.md %%DATADIR%%/library/Zend/Permissions/Rbac/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Permissions/Rbac/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Permissions/Rbac/README.md @@ -1889,6 +1926,7 @@ %%DATADIR%%/library/Zend/ProgressBar/Adapter/Exception/RuntimeException.php %%DATADIR%%/library/Zend/ProgressBar/Adapter/JsPull.php %%DATADIR%%/library/Zend/ProgressBar/Adapter/JsPush.php +%%DATADIR%%/library/Zend/ProgressBar/CONTRIBUTING.md %%DATADIR%%/library/Zend/ProgressBar/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/ProgressBar/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/ProgressBar/Exception/OutOfRangeException.php @@ -1916,6 +1954,7 @@ %%DATADIR%%/library/Zend/Serializer/Adapter/Wddx.php %%DATADIR%%/library/Zend/Serializer/Adapter/WddxOptions.php %%DATADIR%%/library/Zend/Serializer/AdapterPluginManager.php +%%DATADIR%%/library/Zend/Serializer/CONTRIBUTING.md %%DATADIR%%/library/Zend/Serializer/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Serializer/Exception/ExtensionNotLoadedException.php %%DATADIR%%/library/Zend/Serializer/Exception/InvalidArgumentException.php @@ -1924,6 +1963,7 @@ %%DATADIR%%/library/Zend/Serializer/Serializer.php %%DATADIR%%/library/Zend/Serializer/composer.json %%DATADIR%%/library/Zend/Server/AbstractServer.php +%%DATADIR%%/library/Zend/Server/CONTRIBUTING.md %%DATADIR%%/library/Zend/Server/Cache.php %%DATADIR%%/library/Zend/Server/Client.php %%DATADIR%%/library/Zend/Server/Definition.php @@ -1953,6 +1993,7 @@ %%DATADIR%%/library/Zend/Server/composer.json %%DATADIR%%/library/Zend/ServiceManager/AbstractFactoryInterface.php %%DATADIR%%/library/Zend/ServiceManager/AbstractPluginManager.php +%%DATADIR%%/library/Zend/ServiceManager/CONTRIBUTING.md %%DATADIR%%/library/Zend/ServiceManager/Config.php %%DATADIR%%/library/Zend/ServiceManager/ConfigInterface.php %%DATADIR%%/library/Zend/ServiceManager/DelegatorFactoryInterface.php @@ -1982,6 +2023,7 @@ %%DATADIR%%/library/Zend/ServiceManager/composer.json %%DATADIR%%/library/Zend/Session/AbstractContainer.php %%DATADIR%%/library/Zend/Session/AbstractManager.php +%%DATADIR%%/library/Zend/Session/CONTRIBUTING.md %%DATADIR%%/library/Zend/Session/Config/ConfigInterface.php %%DATADIR%%/library/Zend/Session/Config/SessionConfig.php %%DATADIR%%/library/Zend/Session/Config/StandardConfig.php @@ -2019,6 +2061,7 @@ %%DATADIR%%/library/Zend/Soap/AutoDiscover.php %%DATADIR%%/library/Zend/Soap/AutoDiscover/DiscoveryStrategy/DiscoveryStrategyInterface.php %%DATADIR%%/library/Zend/Soap/AutoDiscover/DiscoveryStrategy/ReflectionDiscovery.php +%%DATADIR%%/library/Zend/Soap/CONTRIBUTING.md %%DATADIR%%/library/Zend/Soap/Client.php %%DATADIR%%/library/Zend/Soap/Client/Common.php %%DATADIR%%/library/Zend/Soap/Client/DotNet.php @@ -2046,6 +2089,7 @@ %%DATADIR%%/library/Zend/Stdlib/ArraySerializableInterface.php %%DATADIR%%/library/Zend/Stdlib/ArrayStack.php %%DATADIR%%/library/Zend/Stdlib/ArrayUtils.php +%%DATADIR%%/library/Zend/Stdlib/CONTRIBUTING.md %%DATADIR%%/library/Zend/Stdlib/CallbackHandler.php %%DATADIR%%/library/Zend/Stdlib/DateTime.php %%DATADIR%%/library/Zend/Stdlib/DispatchableInterface.php @@ -2125,6 +2169,7 @@ %%DATADIR%%/library/Zend/Stdlib/StringWrapper/StringWrapperInterface.php %%DATADIR%%/library/Zend/Stdlib/compatibility/autoload.php %%DATADIR%%/library/Zend/Stdlib/composer.json +%%DATADIR%%/library/Zend/Tag/CONTRIBUTING.md %%DATADIR%%/library/Zend/Tag/Cloud.php %%DATADIR%%/library/Zend/Tag/Cloud/Decorator/AbstractCloud.php %%DATADIR%%/library/Zend/Tag/Cloud/Decorator/AbstractDecorator.php @@ -2145,12 +2190,14 @@ %%DATADIR%%/library/Zend/Tag/README.md %%DATADIR%%/library/Zend/Tag/TaggableInterface.php %%DATADIR%%/library/Zend/Tag/composer.json +%%DATADIR%%/library/Zend/Test/CONTRIBUTING.md %%DATADIR%%/library/Zend/Test/PHPUnit/Controller/AbstractConsoleControllerTestCase.php %%DATADIR%%/library/Zend/Test/PHPUnit/Controller/AbstractControllerTestCase.php %%DATADIR%%/library/Zend/Test/PHPUnit/Controller/AbstractHttpControllerTestCase.php %%DATADIR%%/library/Zend/Test/README.md %%DATADIR%%/library/Zend/Test/Util/ModuleLoader.php %%DATADIR%%/library/Zend/Test/composer.json +%%DATADIR%%/library/Zend/Text/CONTRIBUTING.md %%DATADIR%%/library/Zend/Text/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Text/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Text/Exception/OutOfBoundsException.php @@ -2180,6 +2227,7 @@ %%DATADIR%%/library/Zend/Text/Table/Row.php %%DATADIR%%/library/Zend/Text/Table/Table.php %%DATADIR%%/library/Zend/Text/composer.json +%%DATADIR%%/library/Zend/Uri/CONTRIBUTING.md %%DATADIR%%/library/Zend/Uri/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/Uri/Exception/InvalidArgumentException.php %%DATADIR%%/library/Zend/Uri/Exception/InvalidUriException.php @@ -2227,6 +2275,7 @@ %%DATADIR%%/library/Zend/Validator/Barcode/Upce.php %%DATADIR%%/library/Zend/Validator/Between.php %%DATADIR%%/library/Zend/Validator/Bitwise.php +%%DATADIR%%/library/Zend/Validator/CONTRIBUTING.md %%DATADIR%%/library/Zend/Validator/Callback.php %%DATADIR%%/library/Zend/Validator/CreditCard.php %%DATADIR%%/library/Zend/Validator/Csrf.php @@ -2295,9 +2344,11 @@ %%DATADIR%%/library/Zend/Validator/ValidatorPluginManager.php %%DATADIR%%/library/Zend/Validator/ValidatorPluginManagerAwareInterface.php %%DATADIR%%/library/Zend/Validator/composer.json +%%DATADIR%%/library/Zend/Version/CONTRIBUTING.md %%DATADIR%%/library/Zend/Version/README.md %%DATADIR%%/library/Zend/Version/Version.php %%DATADIR%%/library/Zend/Version/composer.json +%%DATADIR%%/library/Zend/View/CONTRIBUTING.md %%DATADIR%%/library/Zend/View/Exception/BadMethodCallException.php %%DATADIR%%/library/Zend/View/Exception/DomainException.php %%DATADIR%%/library/Zend/View/Exception/ExceptionInterface.php @@ -2386,6 +2437,7 @@ %%DATADIR%%/library/Zend/View/ViewEvent.php %%DATADIR%%/library/Zend/View/composer.json %%DATADIR%%/library/Zend/XmlRpc/AbstractValue.php +%%DATADIR%%/library/Zend/XmlRpc/CONTRIBUTING.md %%DATADIR%%/library/Zend/XmlRpc/Client.php %%DATADIR%%/library/Zend/XmlRpc/Client/Exception/ExceptionInterface.php %%DATADIR%%/library/Zend/XmlRpc/Client/Exception/FaultException.php @@ -2469,6 +2521,7 @@ %%DATADIR%%/resources/languages/pl/Zend_Validate.php %%DATADIR%%/resources/languages/pt_BR/Zend_Captcha.php %%DATADIR%%/resources/languages/pt_BR/Zend_Validate.php +%%DATADIR%%/resources/languages/ru/Zend_Captcha.php %%DATADIR%%/resources/languages/ru/Zend_Validate.php %%DATADIR%%/resources/languages/se/Zend_Captcha.php %%DATADIR%%/resources/languages/se/Zend_Validate.php @@ -2578,6 +2631,7 @@ @dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Ddl/Constraint @dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Ddl @dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Exception +@dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Platform/IbmDb2 @dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql/Ddl @dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Platform/Mysql @dirrmtry %%DATADIR%%/library/Zend/Db/Sql/Platform/Oracle From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 16:59:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8931499F; Wed, 8 Oct 2014 16:59:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75380B55; Wed, 8 Oct 2014 16:59:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98GxvOF092421; Wed, 8 Oct 2014 16:59:57 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98GxvIY092420; Wed, 8 Oct 2014 16:59:57 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081659.s98GxvIY092420@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 16:59:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370458 - head/databases/pgpool-II-22 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 16:59:57 -0000 Author: bapt Date: Wed Oct 8 16:59:56 2014 New Revision: 370458 URL: https://svnweb.freebsd.org/changeset/ports/370458 QAT: https://qat.redports.org/buildarchive/r370458/ Log: Convert to USES=pgsql Strip binaries Modified: head/databases/pgpool-II-22/Makefile Modified: head/databases/pgpool-II-22/Makefile ============================================================================== --- head/databases/pgpool-II-22/Makefile Wed Oct 8 16:49:39 2014 (r370457) +++ head/databases/pgpool-II-22/Makefile Wed Oct 8 16:59:56 2014 (r370458) @@ -11,10 +11,10 @@ PKGNAMESUFFIX= 22 MAINTAINER= kuriyama@FreeBSD.org COMMENT= Connection pool server for PostgreSQL -USES= gmake libtool +USES= gmake pgsql libtool GNU_CONFIGURE= yes -USE_PGSQL= yes USE_LDCONFIG= yes +INSTALL_TARGET= install-strip CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-23-* pgpool-II-30-* USE_RC_SUBR= pgpool From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:01:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87C80AA1; Wed, 8 Oct 2014 17:01:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7368DBF3; Wed, 8 Oct 2014 17:01:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98H1TkY095826; Wed, 8 Oct 2014 17:01:29 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98H1TJ4095824; Wed, 8 Oct 2014 17:01:29 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081701.s98H1TJ4095824@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:01:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370459 - in head/databases: pgpool-II-23 pgpool-II-30 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:01:29 -0000 Author: bapt Date: Wed Oct 8 17:01:28 2014 New Revision: 370459 URL: https://svnweb.freebsd.org/changeset/ports/370459 QAT: https://qat.redports.org/buildarchive/r370459/ Log: Convert to USES=pgsql Strip binaries Modified: head/databases/pgpool-II-23/Makefile head/databases/pgpool-II-30/Makefile Modified: head/databases/pgpool-II-23/Makefile ============================================================================== --- head/databases/pgpool-II-23/Makefile Wed Oct 8 16:59:56 2014 (r370458) +++ head/databases/pgpool-II-23/Makefile Wed Oct 8 17:01:28 2014 (r370459) @@ -11,10 +11,10 @@ PKGNAMESUFFIX= 23 MAINTAINER= kuriyama@FreeBSD.org COMMENT= Connection pool server for PostgreSQL -USES= gmake libtool +USES= gmake pgsql libtool GNU_CONFIGURE= yes -USE_PGSQL= yes USE_LDCONFIG= yes +INSTALL_TARGET= install-strip CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-22-* pgpool-II-30-* USE_RC_SUBR= pgpool Modified: head/databases/pgpool-II-30/Makefile ============================================================================== --- head/databases/pgpool-II-30/Makefile Wed Oct 8 16:59:56 2014 (r370458) +++ head/databases/pgpool-II-30/Makefile Wed Oct 8 17:01:28 2014 (r370459) @@ -15,8 +15,7 @@ LICENSE= BSD GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= gmake libtool -USE_PGSQL= yes +USES= gmake pgsql libtool USE_LDCONFIG= yes CONFLICTS= pgpool-3.* pgpool-II-3.* pgpool-II-22-* pgpool-II-23-* From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:02:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6AC4C6C; Wed, 8 Oct 2014 17:02:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2DC9C06; Wed, 8 Oct 2014 17:02:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98H2IRv096471; Wed, 8 Oct 2014 17:02:18 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98H2ILW096470; Wed, 8 Oct 2014 17:02:18 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081702.s98H2ILW096470@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:02:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370460 - head/databases/pgpool-II X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:02:19 -0000 Author: bapt Date: Wed Oct 8 17:02:18 2014 New Revision: 370460 URL: https://svnweb.freebsd.org/changeset/ports/370460 QAT: https://qat.redports.org/buildarchive/r370460/ Log: Convert to USES=pgsql Modified: head/databases/pgpool-II/Makefile Modified: head/databases/pgpool-II/Makefile ============================================================================== --- head/databases/pgpool-II/Makefile Wed Oct 8 17:01:28 2014 (r370459) +++ head/databases/pgpool-II/Makefile Wed Oct 8 17:02:18 2014 (r370460) @@ -15,8 +15,7 @@ LICENSE= BSD GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= gmake libtool -USE_PGSQL= yes +USES= gmake pgsql libtool USE_LDCONFIG= yes USE_OPENSSL= yes CONFIGURE_ARGS= --with-openssl From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:05:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 247F1E78; Wed, 8 Oct 2014 17:05:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 11164C4D; Wed, 8 Oct 2014 17:05:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98H5aGK096980; Wed, 8 Oct 2014 17:05:36 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98H5aYS096979; Wed, 8 Oct 2014 17:05:36 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081705.s98H5aYS096979@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:05:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370461 - head/databases/nagios-check_postgres_replication X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:05:37 -0000 Author: bapt Date: Wed Oct 8 17:05:36 2014 New Revision: 370461 URL: https://svnweb.freebsd.org/changeset/ports/370461 QAT: https://qat.redports.org/buildarchive/r370461/ Log: Convert to USES=pgsql and USES=python Modified: head/databases/nagios-check_postgres_replication/Makefile Modified: head/databases/nagios-check_postgres_replication/Makefile ============================================================================== --- head/databases/nagios-check_postgres_replication/Makefile Wed Oct 8 17:02:18 2014 (r370460) +++ head/databases/nagios-check_postgres_replication/Makefile Wed Oct 8 17:05:36 2014 (r370461) @@ -16,8 +16,7 @@ COMMENT= Nagios plugin to check the lag RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nagiosplugin>=0:${PORTSDIR}/sysutils/py-nagiosplugin \ ${PYTHON_PKGNAMEPREFIX}psycopg2>=0:${PORTSDIR}/databases/py-psycopg2 -USE_PYTHON= yes -USE_PGSQL= yes +USES= pgsql python NO_WRKSUBDIR= yes NO_BUILD= yes From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:07:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8259EFD7; Wed, 8 Oct 2014 17:07:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6EA95C99; Wed, 8 Oct 2014 17:07:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98H7Au3097270; Wed, 8 Oct 2014 17:07:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98H7ALx097269; Wed, 8 Oct 2014 17:07:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081707.s98H7ALx097269@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:07:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370462 - head/ftp/proftpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:07:10 -0000 Author: bapt Date: Wed Oct 8 17:07:09 2014 New Revision: 370462 URL: https://svnweb.freebsd.org/changeset/ports/370462 QAT: https://qat.redports.org/buildarchive/r370462/ Log: Do not overwrite USES from slave ports Modified: head/ftp/proftpd/Makefile Modified: head/ftp/proftpd/Makefile ============================================================================== --- head/ftp/proftpd/Makefile Wed Oct 8 17:05:36 2014 (r370461) +++ head/ftp/proftpd/Makefile Wed Oct 8 17:07:09 2014 (r370462) @@ -48,7 +48,7 @@ PORTDOCS= * .endif MAKE_JOBS_UNSAFE= yes -USES= gmake libtool +USES+= gmake libtool USE_AUTOTOOLS= autoconf GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:09:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF72E17A; Wed, 8 Oct 2014 17:09:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B80ACC9; Wed, 8 Oct 2014 17:09:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98H9e9Z097838; Wed, 8 Oct 2014 17:09:40 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98H9ewx097837; Wed, 8 Oct 2014 17:09:40 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081709.s98H9ewx097837@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:09:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370463 - head/databases/proftpd-mod_sql_postgres X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:09:40 -0000 Author: bapt Date: Wed Oct 8 17:09:39 2014 New Revision: 370463 URL: https://svnweb.freebsd.org/changeset/ports/370463 QAT: https://qat.redports.org/buildarchive/r370463/ Log: Convert to USES=pgsql Modified: head/databases/proftpd-mod_sql_postgres/Makefile Modified: head/databases/proftpd-mod_sql_postgres/Makefile ============================================================================== --- head/databases/proftpd-mod_sql_postgres/Makefile Wed Oct 8 17:07:09 2014 (r370462) +++ head/databases/proftpd-mod_sql_postgres/Makefile Wed Oct 8 17:09:39 2014 (r370463) @@ -12,10 +12,9 @@ LICENSE= GPLv2 DESCR= ${.CURDIR}/pkg-descr -LATEST_LINK= ${PKGNAMEPREFIX}-${PORTNAME} MASTERDIR= ${.CURDIR}/../../ftp/proftpd -USE_PGSQL= yes +USES= pgsql INCLUDEDIRS= ${LOCALBASE}/include LIBDIRS= ${LOCALBASE}/lib From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:11:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84497271; Wed, 8 Oct 2014 17:11:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 70730D63; Wed, 8 Oct 2014 17:11:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HBrvc001487; Wed, 8 Oct 2014 17:11:53 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HBrRM001486; Wed, 8 Oct 2014 17:11:53 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081711.s98HBrRM001486@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:11:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370464 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:11:53 -0000 Author: bapt Date: Wed Oct 8 17:11:52 2014 New Revision: 370464 URL: https://svnweb.freebsd.org/changeset/ports/370464 QAT: https://qat.redports.org/buildarchive/r370464/ Log: Check CATEGORIES sanity directly from bsd.sanity.mk Differential Revision: https://reviews.freebsd.org/D917 Reviewed by: bdrewery Modified: head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Wed Oct 8 17:09:39 2014 (r370463) +++ head/Mk/bsd.sanity.mk Wed Oct 8 17:11:52 2014 (r370464) @@ -7,6 +7,15 @@ WARNING+= "WITHOUT_NLS is deprecated use OPTIONS_UNSET=NLS instead" .endif +.if defined(PKGORIGIN) +.for _c in ${CATEGORIES} +_CAT?= ${_c} +.endfor +.if ${.CURDIR:H:T} != ${_CAT} +DEV_ERROR+= "The first entry in CATEGORIES should be the directory where the port lives" +.endif +.endif + #.if defined(WITHOUT_X11) #WARNING+= "WITHOUT_X11 is deprecated use X11 option instead" #.endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:13:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E30936F; Wed, 8 Oct 2014 17:13:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A2D4D7A; Wed, 8 Oct 2014 17:13:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HDIhn002063; Wed, 8 Oct 2014 17:13:18 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HDIQu002062; Wed, 8 Oct 2014 17:13:18 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081713.s98HDIQu002062@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:13:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370465 - head/databases/py-PyGreSQL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:13:18 -0000 Author: bapt Date: Wed Oct 8 17:13:17 2014 New Revision: 370465 URL: https://svnweb.freebsd.org/changeset/ports/370465 QAT: https://qat.redports.org/buildarchive/r370465/ Log: Convert to USES=pgsql and USES=python Modified: head/databases/py-PyGreSQL/Makefile Modified: head/databases/py-PyGreSQL/Makefile ============================================================================== --- head/databases/py-PyGreSQL/Makefile Wed Oct 8 17:11:52 2014 (r370464) +++ head/databases/py-PyGreSQL/Makefile Wed Oct 8 17:13:17 2014 (r370465) @@ -13,10 +13,8 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to PostgreSQL, both classic and DP-API 2.0 -USE_PGSQL= yes -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 pgsql +USE_PYTHON= distutils autoplist PORTDOCS= * From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:14:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 50350462; Wed, 8 Oct 2014 17:14:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C280D86; Wed, 8 Oct 2014 17:14:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HEqmU002340; Wed, 8 Oct 2014 17:14:52 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HEqda002339; Wed, 8 Oct 2014 17:14:52 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081714.s98HEqda002339@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:14:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370466 - head/databases/py-postgresql X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:14:52 -0000 Author: bapt Date: Wed Oct 8 17:14:51 2014 New Revision: 370466 URL: https://svnweb.freebsd.org/changeset/ports/370466 QAT: https://qat.redports.org/buildarchive/r370466/ Log: Convert USES=pgsql and USES=python:3 Modified: head/databases/py-postgresql/Makefile Modified: head/databases/py-postgresql/Makefile ============================================================================== --- head/databases/py-postgresql/Makefile Wed Oct 8 17:13:17 2014 (r370465) +++ head/databases/py-postgresql/Makefile Wed Oct 8 17:14:51 2014 (r370466) @@ -15,10 +15,7 @@ COMMENT= Python 3 compatible PostgreSQL LICENSE= BSD3CLAUSE -USES= zip -USE_PGSQL= yes -USE_PYTHON= 3 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= zip pgsql python:3 +USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:15:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9EA2547; Wed, 8 Oct 2014 17:15:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D653DD8E; Wed, 8 Oct 2014 17:15:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HFbdt002583; Wed, 8 Oct 2014 17:15:37 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HFbF4002582; Wed, 8 Oct 2014 17:15:37 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081715.s98HFbF4002582@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:15:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370467 - head/databases/py-psycopg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:15:38 -0000 Author: bapt Date: Wed Oct 8 17:15:37 2014 New Revision: 370467 URL: https://svnweb.freebsd.org/changeset/ports/370467 QAT: https://qat.redports.org/buildarchive/r370467/ Log: Convert to USES=pgsql USES=python Modified: head/databases/py-psycopg/Makefile Modified: head/databases/py-psycopg/Makefile ============================================================================== --- head/databases/py-psycopg/Makefile Wed Oct 8 17:14:51 2014 (r370466) +++ head/databases/py-psycopg/Makefile Wed Oct 8 17:15:37 2014 (r370467) @@ -15,9 +15,7 @@ COMMENT= High performance Python adapter RUN_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base BUILD_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base -USE_PGSQL= yes -USES= gmake -USE_PYTHON= yes +USES= gmake pgsql python GNU_CONFIGURE= yes ALL_TARGET= sharedmods From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:16:34 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC29862F; Wed, 8 Oct 2014 17:16:34 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98186D9C; Wed, 8 Oct 2014 17:16:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HGYRV002793; Wed, 8 Oct 2014 17:16:34 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HGY62002792; Wed, 8 Oct 2014 17:16:34 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081716.s98HGY62002792@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:16:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370468 - head/databases/py-pyPgSQL X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:16:34 -0000 Author: bapt Date: Wed Oct 8 17:16:33 2014 New Revision: 370468 URL: https://svnweb.freebsd.org/changeset/ports/370468 QAT: https://qat.redports.org/buildarchive/r370468/ Log: Convert to USES=pgsql and USES=python Modified: head/databases/py-pyPgSQL/Makefile Modified: head/databases/py-pyPgSQL/Makefile ============================================================================== --- head/databases/py-pyPgSQL/Makefile Wed Oct 8 17:15:37 2014 (r370467) +++ head/databases/py-pyPgSQL/Makefile Wed Oct 8 17:16:33 2014 (r370468) @@ -13,9 +13,8 @@ COMMENT= Python DB-API 2 compliant libra RUN_DEPENDS= ${DATETIME_DEP}:${PORTSDIR}/lang/py-mx-base -USE_PGSQL= yes -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= pgsql python +USE_PYTHON= distutils DOCS= Announce ChangeLog README README.html EXAMPLES= examples/*.py From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:19:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B195279B; Wed, 8 Oct 2014 17:19:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DA95DC6; Wed, 8 Oct 2014 17:19:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HJAPg003187; Wed, 8 Oct 2014 17:19:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HJABH003186; Wed, 8 Oct 2014 17:19:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081719.s98HJABH003186@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 17:19:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370469 - head/devel/gearmand X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:19:10 -0000 Author: bapt Date: Wed Oct 8 17:19:09 2014 New Revision: 370469 URL: https://svnweb.freebsd.org/changeset/ports/370469 QAT: https://qat.redports.org/buildarchive/r370469/ Log: Convert to USES=pgsql and USES=python Modified: head/devel/gearmand/Makefile Modified: head/devel/gearmand/Makefile ============================================================================== --- head/devel/gearmand/Makefile Wed Oct 8 17:16:33 2014 (r370468) +++ head/devel/gearmand/Makefile Wed Oct 8 17:19:09 2014 (r370469) @@ -22,9 +22,8 @@ GROUPS= gearmand USE_PERL5= build GNU_CONFIGURE= yes -USES= pathfix gmake perl5 libtool execinfo +USES= pathfix gmake perl5 python:build libtool execinfo USE_LDCONFIG= yes -USE_PYTHON_BUILD=yes USE_RC_SUBR= gearmand SUB_LIST+= USERS=${USERS} GROUPS=${GROUPS} @@ -87,7 +86,7 @@ CONFIGURE_ARGS+= --with-mysql=no .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes +USES+= pgsql CONFIGURE_ARGS+= --enable-libpq .else CONFIGURE_ARGS+= --disable-libpq From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:33:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F32EC2F; Wed, 8 Oct 2014 17:33:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ED431F97; Wed, 8 Oct 2014 17:33:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HXSsR012256; Wed, 8 Oct 2014 17:33:28 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HXQkf012239; Wed, 8 Oct 2014 17:33:26 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410081733.s98HXQkf012239@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Wed, 8 Oct 2014 17:33:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370472 - in head/sysutils/e2fsprogs: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:33:29 -0000 Author: mandree Date: Wed Oct 8 17:33:25 2014 New Revision: 370472 URL: https://svnweb.freebsd.org/changeset/ports/370472 QAT: https://qat.redports.org/buildarchive/r370472/ Log: Unbreak port: - Refresh old patches to avoid fuzz. - Add two upstream patches to fix the use-after-free() issue. - There seem to be double-free() issues left but these do not show during self-test, only under valgrind instrumentation so we'll move the port ahead and get packages while working with upstream to debug this through the end. - Bump PORTREVISION to 1. Added: head/sysutils/e2fsprogs/files/patch-zzz-f38676c3e4001359b96576204e9024557ef5fd1b (contents, props changed) head/sysutils/e2fsprogs/files/patch-zzz-f8d3d1661885a07ac9ef639dda0ce23d181a2c73 (contents, props changed) Modified: head/sysutils/e2fsprogs/Makefile head/sysutils/e2fsprogs/files/patch-e2fsck__unix.c head/sysutils/e2fsprogs/files/patch-lib__ext2fs__ext2_fs.h head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tdb.c head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c head/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c head/sysutils/e2fsprogs/files/patch-misc__Makefile.in head/sysutils/e2fsprogs/files/patch-misc__tune2fs.c Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/Makefile Wed Oct 8 17:33:25 2014 (r370472) @@ -3,7 +3,7 @@ PORTNAME= e2fsprogs PORTVERSION= 1.42.12 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= sysutils MASTER_SITES= KERNEL_ORG/linux/kernel/people/tytso/${PORTNAME}/v${PORTVERSION} @@ -14,7 +14,6 @@ LICENSE= GPLv2 PORTSCOUT= ignore # cannot handle the version in the directory -PATCH_STRIP= -p1 USES= gmake pkgconfig tar:xz USE_CSTD= gnu99 USE_LDCONFIG= yes @@ -80,16 +79,6 @@ post-patch:: .endfor .if ${MASTERDIR} == ${.CURDIR} -# Regression that apparently causes use-after-free in -# http://git.kernel.org/cgit/fs/ext2/e2fsprogs.git/commit/?h=maint&id=47fee2ef6a23ae06f680336ffde57caa64604a4c -# and can be reproduced under MALLOC_OPTIONS=J regime on 9.3-amd64, or -# alternatively confirmed with valgrind, was reported upstream. -# -# Let's wait until 2014-10-15 whether upstream provides a fix, -# else we'll bump PORTEPOCH and roll back to 1.42.10; -# 1.42.11 is also faulty. -BROKEN= Use-after-free bug, see ${.CURDIR}/Makefile comments for details - pre-build: # fix up Makefile ordering for parallel builds cd ${WRKSRC}/lib/et && ${DO_MAKE_BUILD} compile_et Modified: head/sysutils/e2fsprogs/files/patch-e2fsck__unix.c ============================================================================== --- head/sysutils/e2fsprogs/files/patch-e2fsck__unix.c Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-e2fsck__unix.c Wed Oct 8 17:33:25 2014 (r370472) @@ -1,5 +1,5 @@ ---- ./e2fsck/unix.c.orig 2013-12-29 05:18:02.000000000 +0100 -+++ ./e2fsck/unix.c 2014-01-06 23:26:48.000000000 +0100 +--- e2fsck/unix.c.orig 2014-08-12 18:19:37 UTC ++++ e2fsck/unix.c @@ -9,8 +9,6 @@ * %End-Header% */ @@ -18,7 +18,7 @@ #endif #ifdef HAVE_SYS_TYPES_H #include -@@ -584,6 +582,24 @@ +@@ -590,6 +588,24 @@ return 0; } @@ -43,7 +43,7 @@ #define PATH_SET "PATH=/sbin" /* -@@ -616,6 +632,17 @@ +@@ -622,6 +638,17 @@ ctx->progress = e2fsck_update_progress; } @@ -61,7 +61,7 @@ static void signal_progress_off(int sig EXT2FS_ATTR((unused))) { e2fsck_t ctx = e2fsck_global_ctx; -@@ -995,6 +1022,8 @@ +@@ -1001,6 +1028,8 @@ sigaction(SIGUSR1, &sa, 0); sa.sa_handler = signal_progress_off; sigaction(SIGUSR2, &sa, 0); Modified: head/sysutils/e2fsprogs/files/patch-lib__ext2fs__ext2_fs.h ============================================================================== --- head/sysutils/e2fsprogs/files/patch-lib__ext2fs__ext2_fs.h Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-lib__ext2fs__ext2_fs.h Wed Oct 8 17:33:25 2014 (r370472) @@ -1,6 +1,6 @@ ---- ./lib/ext2fs/ext2_fs.h.orig 2013-12-29 05:18:02.000000000 +0100 -+++ ./lib/ext2fs/ext2_fs.h 2014-01-06 23:26:48.000000000 +0100 -@@ -456,7 +456,7 @@ +--- lib/ext2fs/ext2_fs.h.orig 2014-08-02 20:26:22 UTC ++++ lib/ext2fs/ext2_fs.h +@@ -461,7 +461,7 @@ #define i_dir_acl i_size_high Modified: head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tdb.c ============================================================================== --- head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tdb.c Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tdb.c Wed Oct 8 17:33:25 2014 (r370472) @@ -1,5 +1,5 @@ ---- ./lib/ext2fs/tdb.c.orig 2012-07-06 15:37:27.000000000 +0200 -+++ ./lib/ext2fs/tdb.c 2014-01-06 23:26:48.000000000 +0100 +--- lib/ext2fs/tdb.c.orig 2014-06-25 19:19:40 UTC ++++ lib/ext2fs/tdb.c @@ -36,7 +36,6 @@ #define HAVE_UTIME_H #define HAVE_UTIME Modified: head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c ============================================================================== --- head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-lib__ext2fs__tst_bitops.c Wed Oct 8 17:33:25 2014 (r370472) @@ -1,5 +1,5 @@ ---- ./lib/ext2fs/tst_bitops.c.orig 2012-07-06 15:37:27.000000000 +0200 -+++ ./lib/ext2fs/tst_bitops.c 2014-01-06 23:26:48.000000000 +0100 +--- lib/ext2fs/tst_bitops.c.orig 2014-06-25 19:19:15 UTC ++++ lib/ext2fs/tst_bitops.c @@ -104,7 +104,7 @@ bigarray = malloc(1 << 29); if (!bigarray) { Modified: head/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c ============================================================================== --- head/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-lib__uuid__gen_uuid.c Wed Oct 8 17:33:25 2014 (r370472) @@ -1,5 +1,5 @@ ---- ./lib/uuid/gen_uuid.c.orig 2013-12-16 07:32:00.000000000 +0100 -+++ ./lib/uuid/gen_uuid.c 2014-01-06 23:26:48.000000000 +0100 +--- lib/uuid/gen_uuid.c.orig 2014-07-03 14:33:48 UTC ++++ lib/uuid/gen_uuid.c @@ -91,6 +91,7 @@ #ifdef HAVE_SYS_RESOURCE_H #include Modified: head/sysutils/e2fsprogs/files/patch-misc__Makefile.in ============================================================================== --- head/sysutils/e2fsprogs/files/patch-misc__Makefile.in Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-misc__Makefile.in Wed Oct 8 17:33:25 2014 (r370472) @@ -1,5 +1,5 @@ ---- ./misc/Makefile.in.orig 2013-12-26 06:26:22.000000000 +0100 -+++ ./misc/Makefile.in 2014-01-06 23:26:48.000000000 +0100 +--- misc/Makefile.in.orig 2014-08-02 23:41:18 UTC ++++ misc/Makefile.in @@ -28,15 +28,15 @@ SPROGS= mke2fs badblocks tune2fs dumpe2fs $(BLKID_PROG) logsave \ @@ -21,7 +21,7 @@ LPROGS= @E2INITRD_PROG@ -@@ -125,14 +125,14 @@ +@@ -127,14 +127,14 @@ mke2fs.conf: $(srcdir)/mke2fs.conf.in if test -f $(srcdir)/mke2fs.conf.custom.in ; then \ @@ -39,7 +39,7 @@ > default_profile.c profile.o: $(E) " CC $<" -@@ -498,34 +498,9 @@ +@@ -515,34 +515,9 @@ (cd $(DESTDIR)$(man5dir); \ $(LN) $(LINK_INSTALL_FLAGS) ext4.5 $$i.5); \ done Modified: head/sysutils/e2fsprogs/files/patch-misc__tune2fs.c ============================================================================== --- head/sysutils/e2fsprogs/files/patch-misc__tune2fs.c Wed Oct 8 17:24:36 2014 (r370471) +++ head/sysutils/e2fsprogs/files/patch-misc__tune2fs.c Wed Oct 8 17:33:25 2014 (r370472) @@ -1,5 +1,5 @@ ---- ./misc/tune2fs.c.orig 2013-12-29 05:18:02.000000000 +0100 -+++ ./misc/tune2fs.c 2014-01-06 23:43:47.000000000 +0100 +--- misc/tune2fs.c.orig 2014-08-02 20:26:22 UTC ++++ misc/tune2fs.c @@ -25,7 +25,6 @@ * 94/03/06 - Added the checks interval from Uwe Ohse (uwe@tirka.gun.de) */ Added: head/sysutils/e2fsprogs/files/patch-zzz-f38676c3e4001359b96576204e9024557ef5fd1b ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/e2fsprogs/files/patch-zzz-f38676c3e4001359b96576204e9024557ef5fd1b Wed Oct 8 17:33:25 2014 (r370472) @@ -0,0 +1,64 @@ +commit f38676c3e4001359b96576204e9024557ef5fd1b +Author: Theodore Ts'o +Date: Wed Oct 8 11:47:00 2014 -0400 + + e2fsprogs: 1.42.11 regression in memory handling: use-after-free since commit 47fee2e "e2fsprogs: introduce ext2fs_close_free() helper" + + Hi Matthias, + + Thanks for reporting this. I'm not 100% sure this will fix your + problem, since your specific valgrind failures aren't reproducing for + me. That being said, I was able to find a valgrind failure, and after + looking closely at the commit that you bisected things to, I found a + bug which was introduced by commit 47fee2ef6a23a. + + Could you check and see if this fixes the problems you are seeing? + + Many thanks!! + + - Ted + + commit ebdf895b43a1ce499e4d2556a201e2a753fc422f + Author: Theodore Ts'o + Date: Wed Oct 8 11:18:41 2014 -0400 + + e2fsck: fix free pointer dereferences + + Commit 47fee2ef6a23a introduces some free pointer dereference bugs by + not clearing ctx->fs after calling ext2fs_close_free(). + + Reported-by: Matthias Andree + Cc: Lukas Czerner + Signed-off-by: Theodore Ts'o + +diff --git a/e2fsck/unix.c b/e2fsck/unix.c +index 66debcd..10036e7 100644 +--- ./e2fsck/unix.c ++++ ./e2fsck/unix.c +@@ -458,7 +458,7 @@ static void check_if_skip(e2fsck_t ctx) + } + log_out(ctx, "\n"); + skip: +- ext2fs_close_free(&fs); ++ ext2fs_close_free(&ctx->fs); + e2fsck_free_context(ctx); + exit(FSCK_OK); + } +@@ -1462,7 +1462,7 @@ failure: + /* + * Restart in order to reopen fs but this time start mmp. + */ +- ext2fs_close_free(&fs); ++ ext2fs_close_free(&ctx->fs); + flags &= ~EXT2_FLAG_SKIP_MMP; + goto restart; + } +@@ -1692,7 +1692,7 @@ no_journal: + _("while resetting context")); + fatal_error(ctx, 0); + } +- ext2fs_close_free(&fs); ++ ext2fs_close_free(&ctx->fs); + goto restart; + } + if (run_result & E2F_FLAG_ABORT) Added: head/sysutils/e2fsprogs/files/patch-zzz-f8d3d1661885a07ac9ef639dda0ce23d181a2c73 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/e2fsprogs/files/patch-zzz-f8d3d1661885a07ac9ef639dda0ce23d181a2c73 Wed Oct 8 17:33:25 2014 (r370472) @@ -0,0 +1,90 @@ +commit f8d3d1661885a07ac9ef639dda0ce23d181a2c73 +Author: Theodore Ts'o +Date: Wed Oct 8 12:18:32 2014 -0400 + + resize2fs: fix fs->blocksize dereference after fs has been freed] + + FYI, you'll probably want this patch too, since it's applicable to 1.42.12. + + - Ted + + Commit 77255cf36944b introduced a use after free bug. + + Signed-off-by: Theodore Ts'o + +diff --git a/resize/main.c b/resize/main.c +index c107028..983d8c2 100644 +--- ./resize/main.c ++++ ./resize/main.c +@@ -181,6 +181,7 @@ int main (int argc, char ** argv) + ext2fs_struct_stat st_buf; + __s64 new_file_size; + unsigned int sys_page_size = 4096; ++ unsigned int blocksize; + long sysval; + int len, mount_flags; + char *mtpt; +@@ -366,7 +367,8 @@ int main (int argc, char ** argv) + * defaults and for making sure the new filesystem doesn't + * exceed the partition size. + */ +- retval = ext2fs_get_device_size2(device_name, fs->blocksize, ++ blocksize = fs->blocksize; ++ retval = ext2fs_get_device_size2(device_name, blocksize, + &max_size); + if (retval) { + com_err(program_name, retval, "%s", +@@ -386,8 +388,8 @@ int main (int argc, char ** argv) + } else { + new_size = max_size; + /* Round down to an even multiple of a pagesize */ +- if (sys_page_size > fs->blocksize) +- new_size &= ~((sys_page_size / fs->blocksize)-1); ++ if (sys_page_size > blocksize) ++ new_size &= ~((sys_page_size / blocksize)-1); + } + if (!EXT2_HAS_INCOMPAT_FEATURE(fs->super, + EXT4_FEATURE_INCOMPAT_64BIT)) { +@@ -423,7 +425,7 @@ int main (int argc, char ** argv) + * automatically extend it in a sparse fashion by writing the + * last requested block. + */ +- new_file_size = ((__u64) new_size) * fs->blocksize; ++ new_file_size = ((__u64) new_size) * blocksize; + if ((__u64) new_file_size > + (((__u64) 1) << (sizeof(st_buf.st_size)*8 - 1)) - 1) + fd = -1; +@@ -437,13 +439,13 @@ int main (int argc, char ** argv) + fprintf(stderr, _("The containing partition (or device)" + " is only %llu (%dk) blocks.\nYou requested a new size" + " of %llu blocks.\n\n"), max_size, +- fs->blocksize / 1024, new_size); ++ blocksize / 1024, new_size); + exit(1); + } + if (new_size == ext2fs_blocks_count(fs->super)) { + fprintf(stderr, _("The filesystem is already %llu (%dk) " + "blocks long. Nothing to do!\n\n"), new_size, +- fs->blocksize / 1024); ++ blocksize / 1024); + exit(0); + } + if (mount_flags & EXT2_MF_MOUNTED) { +@@ -453,7 +455,7 @@ int main (int argc, char ** argv) + bigalloc_check(fs, force); + printf(_("Resizing the filesystem on " + "%s to %llu (%dk) blocks.\n"), +- device_name, new_size, fs->blocksize / 1024); ++ device_name, new_size, blocksize / 1024); + retval = resize_fs(fs, &new_size, flags, + ((flags & RESIZE_PERCENT_COMPLETE) ? + resize_progress_func : 0)); +@@ -470,7 +472,7 @@ int main (int argc, char ** argv) + exit(1); + } + printf(_("The filesystem on %s is now %llu (%dk) blocks long.\n\n"), +- device_name, new_size, fs->blocksize / 1024); ++ device_name, new_size, blocksize / 1024); + + if ((st_buf.st_size > new_file_size) && + (fd > 0)) { From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 17:42:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EFF75FC9; Wed, 8 Oct 2014 17:42:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DB404115; Wed, 8 Oct 2014 17:42:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98HgDYX016887; Wed, 8 Oct 2014 17:42:13 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98HgDVx016882; Wed, 8 Oct 2014 17:42:13 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201410081742.s98HgDVx016882@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Wed, 8 Oct 2014 17:42:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370473 - in head/net/zebra: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 17:42:14 -0000 Author: bdrewery Date: Wed Oct 8 17:42:12 2014 New Revision: 370473 URL: https://svnweb.freebsd.org/changeset/ports/370473 QAT: https://qat.redports.org/buildarchive/r370473/ Log: - Fix raw sockets for FreeBSD 11 PR: 193249 Submitted by: olivier@cochard.me Added: head/net/zebra/files/patch-ospfd_ospf_dump.c (contents, props changed) head/net/zebra/files/patch-ospfd_ospf_packet.c (contents, props changed) Modified: head/net/zebra/Makefile Modified: head/net/zebra/Makefile ============================================================================== --- head/net/zebra/Makefile Wed Oct 8 17:33:25 2014 (r370472) +++ head/net/zebra/Makefile Wed Oct 8 17:42:12 2014 (r370473) @@ -3,7 +3,7 @@ PORTNAME= zebra PORTVERSION= 0.95a -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.pop-pr.rnp.br/pub/GNU/ftp.zebra.org/zebra/ \ ftp://ftp.ripe.net/mirrors/sites/ftp.zebra.org/pub/zebra/ \ @@ -74,10 +74,10 @@ ZEBRAARGS?= -d .include .if !${PORT_OPTIONS:MIPV6} && ${PORT_OPTIONS:MOSPF6D} -IGNORE= OSPF6D requires IPV6 option. +IGNORE= OSPF6D requires IPV6 option .endif .if !${PORT_OPTIONS:MIPV6} && ${PORT_OPTIONS:MRIPNGD} -IGNORE= RIPNGD requires IPV6 option. +IGNORE= RIPNGD requires IPV6 option .endif post-install: Added: head/net/zebra/files/patch-ospfd_ospf_dump.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zebra/files/patch-ospfd_ospf_dump.c Wed Oct 8 17:42:12 2014 (r370473) @@ -0,0 +1,11 @@ +--- ospfd/ospf_dump.c.orig 2003-11-04 20:10:17.000000000 +0100 ++++ ospfd/ospf_dump.c 2014-03-18 14:22:06.123332679 +0100 +@@ -607,7 +607,7 @@ + + iph = (struct ip *) STREAM_PNT (s); + +-#ifdef GNU_LINUX ++#ifdef GNU_LINUX || ((defined(__FreeBSD__) && (__FreeBSD_version >= 1100030)) + length = ntohs (iph->ip_len); + #else /* GNU_LINUX */ + length = iph->ip_len; Added: head/net/zebra/files/patch-ospfd_ospf_packet.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/zebra/files/patch-ospfd_ospf_packet.c Wed Oct 8 17:42:12 2014 (r370473) @@ -0,0 +1,30 @@ +--- ospfd/ospf_packet.c.orig 2005-06-21 02:58:24.000000000 +0200 ++++ ospfd/ospf_packet.c 2014-03-18 14:22:06.129332906 +0100 +@@ -528,7 +528,8 @@ + iph.ip_hl = sizeof (struct ip) >> 2; + iph.ip_v = IPVERSION; + iph.ip_tos = IPTOS_PREC_INTERNETCONTROL; +-#if defined(__NetBSD__) || defined(__FreeBSD__) ++#if defined(__NetBSD__) \ ++ || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) + iph.ip_len = iph.ip_hl*4 + op->length; + #else + iph.ip_len = htons (iph.ip_hl*4 + op->length); +@@ -1893,13 +1894,15 @@ + return NULL; + } + +-#if defined(__NetBSD__) || defined(__FreeBSD__) || defined(OpenBSD_IP_LEN) ++#if defined(__NetBSD__) \ ++ || (defined(__FreeBSD__) && (__FreeBSD_version < 1100030)) \ ++ || defined(OpenBSD_IP_LEN) + ip_len = iph.ip_len; + #else + ip_len = ntohs (iph.ip_len); + #endif + +-#if !defined(GNU_LINUX) && !defined(OpenBSD_IP_LEN) ++#if !defined(GNU_LINUX) && !defined(OpenBSD_IP_LEN) && (__FreeBSD_version < 1000000) + /* + * Kernel network code touches incoming IP header parameters, + * before protocol specific processing. From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 18:28:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9EB23EAD; Wed, 8 Oct 2014 18:28:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8ADE886F; Wed, 8 Oct 2014 18:28:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98ISSi4036827; Wed, 8 Oct 2014 18:28:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98ISSHs036825; Wed, 8 Oct 2014 18:28:28 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410081828.s98ISSHs036825@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 18:28:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370475 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 18:28:28 -0000 Author: bapt Date: Wed Oct 8 18:28:27 2014 New Revision: 370475 URL: https://svnweb.freebsd.org/changeset/ports/370475 QAT: https://qat.redports.org/buildarchive/r370475/ Log: Comment out, it is not ready for prime Modified: head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Wed Oct 8 17:42:36 2014 (r370474) +++ head/Mk/bsd.sanity.mk Wed Oct 8 18:28:27 2014 (r370475) @@ -7,14 +7,14 @@ WARNING+= "WITHOUT_NLS is deprecated use OPTIONS_UNSET=NLS instead" .endif -.if defined(PKGORIGIN) -.for _c in ${CATEGORIES} -_CAT?= ${_c} -.endfor -.if ${.CURDIR:H:T} != ${_CAT} -DEV_ERROR+= "The first entry in CATEGORIES should be the directory where the port lives" -.endif -.endif +#.if defined(PKGORIGIN) +#.for _c in ${CATEGORIES} +#_CAT?= ${_c} +#.endfor +#.if ${.CURDIR:H:T} != ${_CAT} +#DEV_ERROR+= "The first entry in CATEGORIES should be the directory where the port lives" +#.endif +#.endif #.if defined(WITHOUT_X11) #WARNING+= "WITHOUT_X11 is deprecated use X11 option instead" From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 19:04:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC9E47E3; Wed, 8 Oct 2014 19:04:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD903C33; Wed, 8 Oct 2014 19:04:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98J4ftA054988; Wed, 8 Oct 2014 19:04:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98J4fMr054986; Wed, 8 Oct 2014 19:04:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410081904.s98J4fMr054986@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 8 Oct 2014 19:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370476 - head/finance/ledgersmb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 19:04:42 -0000 Author: antoine Date: Wed Oct 8 19:04:40 2014 New Revision: 370476 URL: https://svnweb.freebsd.org/changeset/ports/370476 QAT: https://qat.redports.org/buildarchive/r370476/ Log: - Allow staging as a regular user - Bump portrevision as files were not packaged with intended owner Modified: head/finance/ledgersmb/Makefile head/finance/ledgersmb/pkg-plist Modified: head/finance/ledgersmb/Makefile ============================================================================== --- head/finance/ledgersmb/Makefile Wed Oct 8 18:28:27 2014 (r370475) +++ head/finance/ledgersmb/Makefile Wed Oct 8 19:04:40 2014 (r370476) @@ -3,7 +3,7 @@ PORTNAME= ledger-smb PORTVERSION= 1.1.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance perl5 MASTER_SITES= SF/${PORTNAME}/ledgersmb/${PORTVERSION} @@ -18,13 +18,13 @@ WRKSRC= ${WRKDIR}/${PORTNAME} PKGMESSAGE= ${WRKDIR}/pkg-message USES= shebangfix perl5 SHEBANG_FILES= *.pl locale/*/*.pl bin/*/*.pl utils/*/*.pl +PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" SUB_FILES= ${PORTNAME}-httpd.conf pkg-message do-install: @cd ${WRKDIR} ; \ ${TAR} -cf - ${PORTNAME} | ( cd ${STAGEDIR}${PREFIX} ; ${TAR} xf - ) @cd ${STAGEDIR}${PREFIX}/${PORTNAME} ; \ - ${CHOWN} -hR ${WWWOWN}:${WWWGRP} * ; \ ${CHMOD} 711 users templates css spool @${INSTALL_DATA} ${WRKDIR}/${PORTNAME}-httpd.conf ${STAGEDIR}${PREFIX}/etc/ Modified: head/finance/ledgersmb/pkg-plist ============================================================================== --- head/finance/ledgersmb/pkg-plist Wed Oct 8 18:28:27 2014 (r370475) +++ head/finance/ledgersmb/pkg-plist Wed Oct 8 19:04:40 2014 (r370476) @@ -1,4 +1,6 @@ etc/ledger-smb-httpd.conf +@owner %%WWWOWN%% +@group %%WWWGRP%% ledger-smb/.swp ledger-smb/CONTRIBUTORS ledger-smb/COPYRIGHT @@ -2482,73 +2484,74 @@ ledger-smb/utils/notify_short/README ledger-smb/utils/notify_short/config.pl ledger-smb/utils/notify_short/listener.pl ledger-smb/winprint.bat -@dirrm ledger-smb/utils/notify_short -@dirrm ledger-smb/utils/fixme -@dirrm ledger-smb/utils/custom_fields -@dirrm ledger-smb/utils -@dirrm ledger-smb/users -@dirrm ledger-smb/templates/demo -@dirrm ledger-smb/templates -@dirrm ledger-smb/sql -@dirrm ledger-smb/spool -@dirrm ledger-smb/locale/ve -@dirrm ledger-smb/locale/ua_utf -@dirrm ledger-smb/locale/ua -@dirrm ledger-smb/locale/tw_utf -@dirrm ledger-smb/locale/tw_big5 -@dirrm ledger-smb/locale/tr -@dirrm ledger-smb/locale/sv -@dirrm ledger-smb/locale/se -@dirrm ledger-smb/locale/ru_utf -@dirrm ledger-smb/locale/ru -@dirrm ledger-smb/locale/py -@dirrm ledger-smb/locale/pt -@dirrm ledger-smb/locale/pl -@dirrm ledger-smb/locale/pa -@dirrm ledger-smb/locale/nl -@dirrm ledger-smb/locale/nb -@dirrm ledger-smb/locale/mx -@dirrm ledger-smb/locale/lv -@dirrm ledger-smb/locale/lt -@dirrm ledger-smb/locale/it -@dirrm ledger-smb/locale/is -@dirrm ledger-smb/locale/id -@dirrm ledger-smb/locale/hu -@dirrm ledger-smb/locale/gr -@dirrm ledger-smb/locale/fr -@dirrm ledger-smb/locale/fi_utf -@dirrm ledger-smb/locale/fi -@dirrm ledger-smb/locale/es_utf -@dirrm ledger-smb/locale/es -@dirrm ledger-smb/locale/en_GB -@dirrm ledger-smb/locale/eg_utf -@dirrm ledger-smb/locale/ee_utf -@dirrm ledger-smb/locale/ee -@dirrm ledger-smb/locale/ec -@dirrm ledger-smb/locale/dk -@dirrm ledger-smb/locale/de_utf -@dirrm ledger-smb/locale/de -@dirrm ledger-smb/locale/cz -@dirrm ledger-smb/locale/ct -@dirrm ledger-smb/locale/co_utf -@dirrm ledger-smb/locale/co -@dirrm ledger-smb/locale/cn_utf -@dirrm ledger-smb/locale/ch_utf -@dirrm ledger-smb/locale/ch -@dirrm ledger-smb/locale/ca_fr -@dirrm ledger-smb/locale/ca_en -@dirrm ledger-smb/locale/br -@dirrm ledger-smb/locale/bg_utf -@dirrm ledger-smb/locale/be_nl -@dirrm ledger-smb/locale/be_fr -@dirrm ledger-smb/locale -@dirrm ledger-smb/doc/manual -@dirrm ledger-smb/doc -@dirrm ledger-smb/dists/gentoo -@dirrm ledger-smb/dists -@dirrm ledger-smb/css -@dirrm ledger-smb/bin/mozilla -@dirrm ledger-smb/bin/lynx -@dirrm ledger-smb/bin -@dirrm ledger-smb/LedgerSMB -@dirrm ledger-smb +@dir ledger-smb/utils/notify_short +@dir ledger-smb/utils/fixme +@dir ledger-smb/utils/custom_fields +@dir ledger-smb/utils +@dir ledger-smb/users +@dir ledger-smb/templates/demo +@dir ledger-smb/templates +@dir ledger-smb/sql +@dir ledger-smb/spool +@dir ledger-smb/locale/ve +@dir ledger-smb/locale/ua_utf +@dir ledger-smb/locale/ua +@dir ledger-smb/locale/tw_utf +@dir ledger-smb/locale/tw_big5 +@dir ledger-smb/locale/tr +@dir ledger-smb/locale/sv +@dir ledger-smb/locale/se +@dir ledger-smb/locale/ru_utf +@dir ledger-smb/locale/ru +@dir ledger-smb/locale/py +@dir ledger-smb/locale/pt +@dir ledger-smb/locale/pl +@dir ledger-smb/locale/pa +@dir ledger-smb/locale/nl +@dir ledger-smb/locale/nb +@dir ledger-smb/locale/mx +@dir ledger-smb/locale/lv +@dir ledger-smb/locale/lt +@dir ledger-smb/locale/it +@dir ledger-smb/locale/is +@dir ledger-smb/locale/id +@dir ledger-smb/locale/hu +@dir ledger-smb/locale/gr +@dir ledger-smb/locale/fr +@dir ledger-smb/locale/fi_utf +@dir ledger-smb/locale/fi +@dir ledger-smb/locale/es_utf +@dir ledger-smb/locale/es +@dir ledger-smb/locale/en_GB +@dir ledger-smb/locale/eg_utf +@dir ledger-smb/locale/ee_utf +@dir ledger-smb/locale/ee +@dir ledger-smb/locale/ec +@dir ledger-smb/locale/dk +@dir ledger-smb/locale/de_utf +@dir ledger-smb/locale/de +@dir ledger-smb/locale/cz +@dir ledger-smb/locale/ct +@dir ledger-smb/locale/co_utf +@dir ledger-smb/locale/co +@dir ledger-smb/locale/cn_utf +@dir ledger-smb/locale/ch_utf +@dir ledger-smb/locale/ch +@dir ledger-smb/locale/ca_fr +@dir ledger-smb/locale/ca_en +@dir ledger-smb/locale/br +@dir ledger-smb/locale/bg_utf +@dir ledger-smb/locale/be_nl +@dir ledger-smb/locale/be_fr +@dir ledger-smb/locale +@dir ledger-smb/doc/manual +@dir ledger-smb/doc +@dir ledger-smb/dists/gentoo +@dir ledger-smb/dists +@dir ledger-smb/css +@dir ledger-smb/bin/mozilla +@dir ledger-smb/bin/lynx +@dir ledger-smb/bin +@dir ledger-smb/LedgerSMB +@owner +@group From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 19:25:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1BE7F1D; Wed, 8 Oct 2014 19:25:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CE039E45; Wed, 8 Oct 2014 19:25:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98JPlvS064520; Wed, 8 Oct 2014 19:25:47 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98JPlGW064519; Wed, 8 Oct 2014 19:25:47 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410081925.s98JPlGW064519@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 8 Oct 2014 19:25:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370477 - head/sysutils/wmmemfree X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 19:25:48 -0000 Author: antoine Date: Wed Oct 8 19:25:47 2014 New Revision: 370477 URL: https://svnweb.freebsd.org/changeset/ports/370477 QAT: https://qat.redports.org/buildarchive/r370477/ Log: - Allow staging as a regular user - Bump portrevision as setgid file was not packaged with intended group Modified: head/sysutils/wmmemfree/Makefile Modified: head/sysutils/wmmemfree/Makefile ============================================================================== --- head/sysutils/wmmemfree/Makefile Wed Oct 8 19:04:40 2014 (r370476) +++ head/sysutils/wmmemfree/Makefile Wed Oct 8 19:25:47 2014 (r370477) @@ -3,7 +3,7 @@ PORTNAME= wmmemfree PORTVERSION= 0.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils windowmaker MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= X11/xutils @@ -11,18 +11,16 @@ MASTER_SITE_SUBDIR= X11/xutils MAINTAINER= ports@FreeBSD.org COMMENT= Memory and swap monitoring dockapp -USES= tar:bzip2 +USES= tar:bzip2 USE_XORG= xpm -PLIST_FILES= bin/wmmemfree man/man1/${PORTNAME}.1.gz +PLIST_FILES= "@(,kmem,2555) bin/wmmemfree" man/man1/${PORTNAME}.1.gz post-patch: @${CP} ${FILESDIR}/mem_freebsd.* ${WRKSRC} do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - @${CHMOD} g+s ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - @${CHOWN} root:kmem ${STAGEDIR}${PREFIX}/bin/${PORTNAME} - @${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 19:36:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 653BF1CE; Wed, 8 Oct 2014 19:36:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51779D8; Wed, 8 Oct 2014 19:36:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98JaWGQ069330; Wed, 8 Oct 2014 19:36:32 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98JaVKj069328; Wed, 8 Oct 2014 19:36:31 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410081936.s98JaVKj069328@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 8 Oct 2014 19:36:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370478 - head/net/vncreflector X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 19:36:32 -0000 Author: antoine Date: Wed Oct 8 19:36:31 2014 New Revision: 370478 URL: https://svnweb.freebsd.org/changeset/ports/370478 QAT: https://qat.redports.org/buildarchive/r370478/ Log: - Allow staging as a regular user - Bump portrevision as configuration directory was not packaged Modified: head/net/vncreflector/Makefile head/net/vncreflector/pkg-plist Modified: head/net/vncreflector/Makefile ============================================================================== --- head/net/vncreflector/Makefile Wed Oct 8 19:25:47 2014 (r370477) +++ head/net/vncreflector/Makefile Wed Oct 8 19:36:31 2014 (r370478) @@ -2,7 +2,7 @@ PORTNAME= vncreflector PORTVERSION= 1.2.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= SF/vnc-reflector/vnc-reflector/${PORTVERSION} DISTNAME= vnc_reflector-${PORTVERSION} @@ -26,7 +26,6 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin @${MKDIR} -m0750 ${STAGEDIR}${PREFIX}/etc/${PORTNAME} - @${CHOWN} root:wheel ${STAGEDIR}${PREFIX}/etc/${PORTNAME} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} Modified: head/net/vncreflector/pkg-plist ============================================================================== --- head/net/vncreflector/pkg-plist Wed Oct 8 19:25:47 2014 (r370477) +++ head/net/vncreflector/pkg-plist Wed Oct 8 19:36:31 2014 (r370478) @@ -1,4 +1,3 @@ bin/vncreflector +@dir etc/vncreflector %%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@unexec rmdir %D/etc/vncreflector 2>/dev/null || ( echo "Configuration information saved. If you will *NOT* use this package anymore," && echo "please remove %D/etc/vncreflector and its contents manually.") From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 19:49:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A6C6A22; Wed, 8 Oct 2014 19:49:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D67C272; Wed, 8 Oct 2014 19:49:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Jnond074416; Wed, 8 Oct 2014 19:49:50 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98JnneI074414; Wed, 8 Oct 2014 19:49:49 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410081949.s98JnneI074414@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 8 Oct 2014 19:49:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370479 - head/german/tipp10 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 19:49:50 -0000 Author: antoine Date: Wed Oct 8 19:49:49 2014 New Revision: 370479 URL: https://svnweb.freebsd.org/changeset/ports/370479 QAT: https://qat.redports.org/buildarchive/r370479/ Log: - Allow staging as a regular user - Bump portrevision as directories were unsearchable Modified: head/german/tipp10/Makefile head/german/tipp10/pkg-plist Modified: head/german/tipp10/Makefile ============================================================================== --- head/german/tipp10/Makefile Wed Oct 8 19:36:31 2014 (r370478) +++ head/german/tipp10/Makefile Wed Oct 8 19:49:49 2014 (r370479) @@ -3,7 +3,7 @@ PORTNAME= tipp10 PORTVERSION= 2.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= german MASTER_SITES= http://www.tipp10.com/en/download/ DISTNAME= tipp10_source_v2-1-0 @@ -28,10 +28,10 @@ pre-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tipp10 ${STAGEDIR}${PREFIX}/bin - ${INSTALL_DATA} -d ${STAGEDIR}${DATADIR}/help/de/img - ${INSTALL_DATA} -d ${STAGEDIR}${DATADIR}/help/de/content - ${INSTALL_DATA} -d ${STAGEDIR}${DATADIR}/help/en/img - ${INSTALL_DATA} -d ${STAGEDIR}${DATADIR}/help/en/content + ${MKDIR} ${STAGEDIR}${DATADIR}/help/de/img + ${MKDIR} ${STAGEDIR}${DATADIR}/help/de/content + ${MKDIR} ${STAGEDIR}${DATADIR}/help/en/img + ${MKDIR} ${STAGEDIR}${DATADIR}/help/en/content ${INSTALL_DATA} ${WRKSRC}/release/tipp10v2.template ${WRKSRC}/metronome.wav ${WRKSRC}/error.wav ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/release/help/de/index.html ${STAGEDIR}${DATADIR}/help/de ${INSTALL_DATA} ${WRKSRC}/release/help/de/content/* ${STAGEDIR}${DATADIR}/help/de/content Modified: head/german/tipp10/pkg-plist ============================================================================== --- head/german/tipp10/pkg-plist Wed Oct 8 19:36:31 2014 (r370478) +++ head/german/tipp10/pkg-plist Wed Oct 8 19:49:49 2014 (r370479) @@ -101,11 +101,3 @@ share/tipp10/help/en/index.html share/tipp10/tipp10v2.template share/tipp10/metronome.wav share/tipp10/error.wav -@dirrm share/tipp10/help/de/img -@dirrm share/tipp10/help/de/content -@dirrm share/tipp10/help/de -@dirrm share/tipp10/help/en/img -@dirrm share/tipp10/help/en/content -@dirrm share/tipp10/help/en -@dirrm share/tipp10/help -@dirrm share/tipp10 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 20:25:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFE6A3CB; Wed, 8 Oct 2014 20:25:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AC56F8E4; Wed, 8 Oct 2014 20:25:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98KPoNe092907; Wed, 8 Oct 2014 20:25:50 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98KPoMb092905; Wed, 8 Oct 2014 20:25:50 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410082025.s98KPoMb092905@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Wed, 8 Oct 2014 20:25:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370480 - head/net-p2p/twister X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 20:25:50 -0000 Author: thierry Date: Wed Oct 8 20:25:49 2014 New Revision: 370480 URL: https://svnweb.freebsd.org/changeset/ports/370480 QAT: https://qat.redports.org/buildarchive/r370480/ Log: Refresh. Modified: head/net-p2p/twister/Makefile head/net-p2p/twister/distinfo Modified: head/net-p2p/twister/Makefile ============================================================================== --- head/net-p2p/twister/Makefile Wed Oct 8 19:49:49 2014 (r370479) +++ head/net-p2p/twister/Makefile Wed Oct 8 20:25:49 2014 (r370480) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= twister-core -PORTVERSION= 0.140815 -PORTREVISION= 1 +PORTVERSION= 0.141008 CATEGORIES= net-p2p MAINTAINER= thierry@FreeBSD.org @@ -17,13 +16,13 @@ LIB_DEPENDS= libboost_system.so:${PORTSD libleveldb.so:${PORTSDIR}/databases/leveldb \ libicui18n.so:${PORTSDIR}/devel/icu -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS USE_GITHUB= yes GH_ACCOUNT= miguelfreitas GH_PROJECT= ${PORTNAME} GH_TAGNAME= ${GH_COMMIT} -GH_COMMIT= 5acee89 +GH_COMMIT= 377870f USE_BDB= yes WANT_BDB_VER= 48 Modified: head/net-p2p/twister/distinfo ============================================================================== --- head/net-p2p/twister/distinfo Wed Oct 8 19:49:49 2014 (r370479) +++ head/net-p2p/twister/distinfo Wed Oct 8 20:25:49 2014 (r370480) @@ -1,2 +1,2 @@ -SHA256 (twister-core-0.140815.tar.gz) = f95de23edeb687c6d66f1fa529e4cada2ebc0427db6130e0f09df16b7d23a5ec -SIZE (twister-core-0.140815.tar.gz) = 6281751 +SHA256 (twister-core-0.141008.tar.gz) = ee0811018c91d3aad9e29e11b49ef710268dd4bcef10c06e8bf7c6e8b6d60674 +SIZE (twister-core-0.141008.tar.gz) = 6289680 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 20:52:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99A1AD12; Wed, 8 Oct 2014 20:52:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C7B9BBF; Wed, 8 Oct 2014 20:52:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Kqd7R006956; Wed, 8 Oct 2014 20:52:39 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98KqcYR006953; Wed, 8 Oct 2014 20:52:38 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410082052.s98KqcYR006953@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 20:52:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370481 - in head/devel/gmake: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 20:52:39 -0000 Author: bapt Date: Wed Oct 8 20:52:38 2014 New Revision: 370481 URL: https://svnweb.freebsd.org/changeset/ports/370481 QAT: https://qat.redports.org/buildarchive/r370481/ Log: Update to 4.1 Exp-run by: antoine Deleted: head/devel/gmake/files/patch-default.c head/devel/gmake/files/patch-main.c head/devel/gmake/files/patch-read.c head/devel/gmake/files/patch-remake.c Modified: head/devel/gmake/Makefile head/devel/gmake/distinfo head/devel/gmake/pkg-plist Modified: head/devel/gmake/Makefile ============================================================================== --- head/devel/gmake/Makefile Wed Oct 8 20:25:49 2014 (r370480) +++ head/devel/gmake/Makefile Wed Oct 8 20:52:38 2014 (r370481) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gmake -PORTVERSION= 3.82 -PORTREVISION= 2 +PORTVERSION= 4.1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= make @@ -34,9 +33,4 @@ CONFIGURE_ENV+= MAKEINFO="makeinfo --no- INFO= make -post-patch: - @${REINPLACE_CMD} -e '/no-print-dir/s/@itemx/@item/' \ - ${WRKSRC}/doc/make.texi - @${RM} ${WRKSRC}/doc/make.info* - .include Modified: head/devel/gmake/distinfo ============================================================================== --- head/devel/gmake/distinfo Wed Oct 8 20:25:49 2014 (r370480) +++ head/devel/gmake/distinfo Wed Oct 8 20:52:38 2014 (r370481) @@ -1,2 +1,2 @@ -SHA256 (make-3.82.tar.bz2) = e2c1a73f179c40c71e2fe8abf8a8a0688b8499538512984da4a76958d0402966 -SIZE (make-3.82.tar.bz2) = 1242186 +SHA256 (make-4.1.tar.bz2) = 0bc7613389650ee6a24554b52572a272f7356164fd2c4132b0bcf13123e4fca5 +SIZE (make-4.1.tar.bz2) = 1327342 Modified: head/devel/gmake/pkg-plist ============================================================================== --- head/devel/gmake/pkg-plist Wed Oct 8 20:25:49 2014 (r370480) +++ head/devel/gmake/pkg-plist Wed Oct 8 20:52:38 2014 (r370481) @@ -1,5 +1,7 @@ bin/gmake +include/gnumake.h %%NLS%%share/locale/be/LC_MESSAGES/make.mo +%%NLS%%share/locale/cs/LC_MESSAGES/make.mo %%NLS%%share/locale/da/LC_MESSAGES/make.mo %%NLS%%share/locale/de/LC_MESSAGES/make.mo %%NLS%%share/locale/es/LC_MESSAGES/make.mo From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 20:55:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6367EE52; Wed, 8 Oct 2014 20:55:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 50134BEE; Wed, 8 Oct 2014 20:55:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98KtuDi007468; Wed, 8 Oct 2014 20:55:56 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98Ktute007467; Wed, 8 Oct 2014 20:55:56 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410082055.s98Ktute007467@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 20:55:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370482 - head/mail/anubis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 20:55:56 -0000 Author: bapt Date: Wed Oct 8 20:55:55 2014 New Revision: 370482 URL: https://svnweb.freebsd.org/changeset/ports/370482 QAT: https://qat.redports.org/buildarchive/r370482/ Log: Convert to USES=pgsql Modified: head/mail/anubis/Makefile Modified: head/mail/anubis/Makefile ============================================================================== --- head/mail/anubis/Makefile Wed Oct 8 20:52:38 2014 (r370481) +++ head/mail/anubis/Makefile Wed Oct 8 20:55:55 2014 (r370482) @@ -92,7 +92,7 @@ _REQUIRE+= mysql .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes +USES+= pgsql CONFIGURE_ARGS+=--with-postgres _REQUIRE+= postgresql .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 20:57:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EBB8F48; Wed, 8 Oct 2014 20:57:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BE66C09; Wed, 8 Oct 2014 20:57:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98KvXnO007761; Wed, 8 Oct 2014 20:57:33 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98KvXGT007760; Wed, 8 Oct 2014 20:57:33 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410082057.s98KvXGT007760@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 20:57:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370483 - head/mail/vpopmail X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 20:57:33 -0000 Author: bapt Date: Wed Oct 8 20:57:32 2014 New Revision: 370483 URL: https://svnweb.freebsd.org/changeset/ports/370483 QAT: https://qat.redports.org/buildarchive/r370483/ Log: Convert to USES=pgsql Modified: head/mail/vpopmail/Makefile Modified: head/mail/vpopmail/Makefile ============================================================================== --- head/mail/vpopmail/Makefile Wed Oct 8 20:55:55 2014 (r370482) +++ head/mail/vpopmail/Makefile Wed Oct 8 20:57:32 2014 (r370483) @@ -292,7 +292,7 @@ BROKEN= The WITH_APOP option is depreca .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes +USES= pgsql .endif .if ${PORT_OPTIONS:MSQL_LOG_TRIM} From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 20:58:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1DBEB6; Wed, 8 Oct 2014 20:58:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9F4B8C10; Wed, 8 Oct 2014 20:58:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98KwXtw007975; Wed, 8 Oct 2014 20:58:33 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98KwXar007974; Wed, 8 Oct 2014 20:58:33 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410082058.s98KwXar007974@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 20:58:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370484 - head/mail/vexim X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 20:58:33 -0000 Author: bapt Date: Wed Oct 8 20:58:32 2014 New Revision: 370484 URL: https://svnweb.freebsd.org/changeset/ports/370484 QAT: https://qat.redports.org/buildarchive/r370484/ Log: Convert to USES=pgsql Modified: head/mail/vexim/Makefile Modified: head/mail/vexim/Makefile ============================================================================== --- head/mail/vexim/Makefile Wed Oct 8 20:57:32 2014 (r370483) +++ head/mail/vexim/Makefile Wed Oct 8 20:58:32 2014 (r370484) @@ -37,7 +37,7 @@ USE_PHP+= mysql .endif .if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes +USES+= pgsql USE_PHP+= pgsql .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 21:10:22 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E31F3A1; Wed, 8 Oct 2014 21:10:22 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A9D7D0C; Wed, 8 Oct 2014 21:10:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98LAMre015471; Wed, 8 Oct 2014 21:10:22 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98LALfR015467; Wed, 8 Oct 2014 21:10:21 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410082110.s98LALfR015467@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 8 Oct 2014 21:10:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370485 - head/textproc/sphinxsearch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 21:10:22 -0000 Author: matthew Date: Wed Oct 8 21:10:21 2014 New Revision: 370485 URL: https://svnweb.freebsd.org/changeset/ports/370485 QAT: https://qat.redports.org/buildarchive/r370485/ Log: Update to 2.2.5 Change log: http://sphinxsearch.com/blog/2014/10/08/sphinx-2-2-5-release/ Modified: head/textproc/sphinxsearch/Makefile head/textproc/sphinxsearch/distinfo Modified: head/textproc/sphinxsearch/Makefile ============================================================================== --- head/textproc/sphinxsearch/Makefile Wed Oct 8 20:58:32 2014 (r370484) +++ head/textproc/sphinxsearch/Makefile Wed Oct 8 21:10:21 2014 (r370485) @@ -6,7 +6,7 @@ # See http://www.infracaninophile.co.uk/articles/sphinxse.html PORTNAME= sphinxsearch -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.5 CATEGORIES= textproc databases MASTER_SITES= http://sphinxsearch.com/files/ \ http://snowball.tartarus.org/dist/:libstemmer Modified: head/textproc/sphinxsearch/distinfo ============================================================================== --- head/textproc/sphinxsearch/distinfo Wed Oct 8 20:58:32 2014 (r370484) +++ head/textproc/sphinxsearch/distinfo Wed Oct 8 21:10:21 2014 (r370485) @@ -1,4 +1,4 @@ -SHA256 (sphinx-2.2.4-release.tar.gz) = c76a88789ca1d7d86df9869718ad217ae8a72740b9e84f2b98b61fa47feb64ef -SIZE (sphinx-2.2.4-release.tar.gz) = 2948063 +SHA256 (sphinx-2.2.5-release.tar.gz) = 4acf40e477d47079aa2462cefa8ce5ce48b6b5a641f04b0430b4fcc5d9d5742c +SIZE (sphinx-2.2.5-release.tar.gz) = 2953899 SHA256 (libstemmer_c.tgz) = 469f5d16e23437c313541a579b1cdfb10dcd75a32b589edb283b3d1ecbe7e098 SIZE (libstemmer_c.tgz) = 129592 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 21:13:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 918C44B9; Wed, 8 Oct 2014 21:13:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E154DB9; Wed, 8 Oct 2014 21:13:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98LDm2l017056; Wed, 8 Oct 2014 21:13:48 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98LDmq0017054; Wed, 8 Oct 2014 21:13:48 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410082113.s98LDmq0017054@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 8 Oct 2014 21:13:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370486 - head/mail/p5-Email-Address-List X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 21:13:48 -0000 Author: matthew Date: Wed Oct 8 21:13:47 2014 New Revision: 370486 URL: https://svnweb.freebsd.org/changeset/ports/370486 QAT: https://qat.redports.org/buildarchive/r370486/ Log: Update to 0.05 Change log: http://cpansearch.perl.org/src/ALEXMV/Email-Address-List-0.05/Changes Modified: head/mail/p5-Email-Address-List/Makefile head/mail/p5-Email-Address-List/distinfo Modified: head/mail/p5-Email-Address-List/Makefile ============================================================================== --- head/mail/p5-Email-Address-List/Makefile Wed Oct 8 21:10:21 2014 (r370485) +++ head/mail/p5-Email-Address-List/Makefile Wed Oct 8 21:13:47 2014 (r370486) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Email-Address-List -PORTVERSION= 0.03 +PORTVERSION= 0.05 CATEGORIES= mail perl5 MASTER_SITES= http://download.bestpractical.com/mirror/ \ CPAN Modified: head/mail/p5-Email-Address-List/distinfo ============================================================================== --- head/mail/p5-Email-Address-List/distinfo Wed Oct 8 21:10:21 2014 (r370485) +++ head/mail/p5-Email-Address-List/distinfo Wed Oct 8 21:13:47 2014 (r370486) @@ -1,2 +1,2 @@ -SHA256 (Email-Address-List-0.03.tar.gz) = 3cd0e92e5233178263f632e9c5d1fbfddfe09503baa251174aca4ee2fa5f87fe -SIZE (Email-Address-List-0.03.tar.gz) = 29318 +SHA256 (Email-Address-List-0.05.tar.gz) = 705c23fc2163c2347ba0aea998450259f7b10577a368c6d310bd4e98b427a033 +SIZE (Email-Address-List-0.05.tar.gz) = 29394 From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 21:17:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1748E5F1; Wed, 8 Oct 2014 21:17:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03EFEDE9; Wed, 8 Oct 2014 21:17:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98LHD7W017612; Wed, 8 Oct 2014 21:17:13 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98LHDIe017611; Wed, 8 Oct 2014 21:17:13 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410082117.s98LHDIe017611@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 8 Oct 2014 21:17:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370487 - head/mail/p5-Email-Address-List X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 21:17:14 -0000 Author: matthew Date: Wed Oct 8 21:17:13 2014 New Revision: 370487 URL: https://svnweb.freebsd.org/changeset/ports/370487 QAT: https://qat.redports.org/buildarchive/r370487/ Log: Ooops. Forgot to strip the @dirrm stuff out of the plist. Modified: head/mail/p5-Email-Address-List/pkg-plist Modified: head/mail/p5-Email-Address-List/pkg-plist ============================================================================== --- head/mail/p5-Email-Address-List/pkg-plist Wed Oct 8 21:13:47 2014 (r370486) +++ head/mail/p5-Email-Address-List/pkg-plist Wed Oct 8 21:17:13 2014 (r370487) @@ -1,9 +1,5 @@ %%PERL5_MAN3%%/Email::Address::List.3.gz %%SITE_PERL%%/Email/Address/List.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Address/List/.packlist -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Address/List -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Address -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email -@dirrmtry %%SITE_PERL%%/Email/Address -@dirrmtry %%SITE_PERL%%/Email + From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 21:21:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6C752721; Wed, 8 Oct 2014 21:21:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 58F51E8C; Wed, 8 Oct 2014 21:21:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98LL87Q020071; Wed, 8 Oct 2014 21:21:08 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98LL8Kc020070; Wed, 8 Oct 2014 21:21:08 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410082121.s98LL8Kc020070@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 8 Oct 2014 21:21:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370488 - head/textproc/sphinxsearch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 21:21:08 -0000 Author: matthew Date: Wed Oct 8 21:21:07 2014 New Revision: 370488 URL: https://svnweb.freebsd.org/changeset/ports/370488 QAT: https://qat.redports.org/buildarchive/r370488/ Log: Another plist I should have modernized just now. - drop @dirrm stuff - use @sample Modified: head/textproc/sphinxsearch/pkg-plist Modified: head/textproc/sphinxsearch/pkg-plist ============================================================================== --- head/textproc/sphinxsearch/pkg-plist Wed Oct 8 21:17:13 2014 (r370487) +++ head/textproc/sphinxsearch/pkg-plist Wed Oct 8 21:21:07 2014 (r370488) @@ -2,9 +2,7 @@ bin/indexer bin/indextool bin/spelldump sbin/searchd -@unexec if cmp -s %D/etc/sphinx.conf.sample %D/etc/sphinx.conf; then rm -f %D/etc/sphinx.conf; fi -etc/sphinx.conf.sample -@exec if [ ! -f %D/etc/sphinx.conf ] ; then cp -p %D/%F %B/sphinx.conf; fi +@sample etc/sphinx.conf.sample %%PORTDOCS%%man/man1/indexer.1.gz %%PORTDOCS%%man/man1/indextool.1.gz %%PORTDOCS%%man/man1/spelldump.1.gz @@ -133,15 +131,3 @@ etc/sphinx.conf.sample %%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/test2.php %%PORTEXAMPLES%%%%EXAMPLESDIR%%/api/test2.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.sql -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby/tasks -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby/spec/sphinx -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby/spec/fixtures -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby/spec -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby/lib/sphinx -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby/lib -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/ruby -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/libsphinxclient -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api/java -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/api -%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 21:28:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AC5BDACE; Wed, 8 Oct 2014 21:28:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8DF84F21; Wed, 8 Oct 2014 21:28:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98LSoCB022797; Wed, 8 Oct 2014 21:28:50 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98LSnMM022793; Wed, 8 Oct 2014 21:28:49 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410082128.s98LSnMM022793@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Wed, 8 Oct 2014 21:28:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370489 - in head/www/p5-RT-Extension-MandatoryOnTransition: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 21:28:50 -0000 Author: matthew Date: Wed Oct 8 21:28:48 2014 New Revision: 370489 URL: https://svnweb.freebsd.org/changeset/ports/370489 QAT: https://qat.redports.org/buildarchive/r370489/ Log: Update to 0.09 - drop @dirrm stuff from plist - use the patch filename as produced by 'make makepatch' Added: head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc__Module__Install__RTx.pm (contents, props changed) - copied, changed from r370475, head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm Deleted: head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm Modified: head/www/p5-RT-Extension-MandatoryOnTransition/Makefile head/www/p5-RT-Extension-MandatoryOnTransition/distinfo head/www/p5-RT-Extension-MandatoryOnTransition/pkg-plist Modified: head/www/p5-RT-Extension-MandatoryOnTransition/Makefile ============================================================================== --- head/www/p5-RT-Extension-MandatoryOnTransition/Makefile Wed Oct 8 21:21:07 2014 (r370488) +++ head/www/p5-RT-Extension-MandatoryOnTransition/Makefile Wed Oct 8 21:28:48 2014 (r370489) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= RT-Extension-MandatoryOnTransition -DISTVERSION= 0.06 +DISTVERSION= 0.09 CATEGORIES= www net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-RT-Extension-MandatoryOnTransition/distinfo ============================================================================== --- head/www/p5-RT-Extension-MandatoryOnTransition/distinfo Wed Oct 8 21:21:07 2014 (r370488) +++ head/www/p5-RT-Extension-MandatoryOnTransition/distinfo Wed Oct 8 21:28:48 2014 (r370489) @@ -1,2 +1,2 @@ -SHA256 (RT-Extension-MandatoryOnTransition-0.06.tar.gz) = 29bcfc788ef46975cf7460c78ea05ec17b20bd345c7d55ad494865449fce522d -SIZE (RT-Extension-MandatoryOnTransition-0.06.tar.gz) = 36236 +SHA256 (RT-Extension-MandatoryOnTransition-0.09.tar.gz) = 7986d16300b4233636f3a4bdeb4e211d291ce77a6793c30ab999fd8e6cd7ab53 +SIZE (RT-Extension-MandatoryOnTransition-0.09.tar.gz) = 46906 Copied and modified: head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc__Module__Install__RTx.pm (from r370475, head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm) ============================================================================== --- head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc_Module_Install_RTx.pm Wed Oct 8 18:28:27 2014 (r370475, copy source) +++ head/www/p5-RT-Extension-MandatoryOnTransition/files/patch-inc__Module__Install__RTx.pm Wed Oct 8 21:28:48 2014 (r370489) @@ -1,14 +1,11 @@ - -$FreeBSD$ - ---- inc/Module/Install/RTx.pm.orig +--- inc/Module/Install/RTx.pm.orig 2014-09-30 22:25:05 UTC +++ inc/Module/Install/RTx.pm -@@ -101,7 +101,7 @@ +@@ -85,7 +85,7 @@ my %index = map { $_ => 1 } @INDEX_DIRS; $self->no_index( directory => $_ ) foreach grep !$index{$_}, @DIRS; - my $args = join ', ', map "q($_)", map { ($_, $path{$_}) } + my $args = join ', ', map "q($_)", map { ($_, "\${DESTDIR}$path{$_}") } - grep $subdirs{$_}, keys %path; + sort keys %path; - print "./$_\t=> $path{$_}\n" for sort keys %subdirs; + printf "%-10s => %s\n", $_, $path{$_} for sort keys %path; Modified: head/www/p5-RT-Extension-MandatoryOnTransition/pkg-plist ============================================================================== --- head/www/p5-RT-Extension-MandatoryOnTransition/pkg-plist Wed Oct 8 21:21:07 2014 (r370488) +++ head/www/p5-RT-Extension-MandatoryOnTransition/pkg-plist Wed Oct 8 21:28:48 2014 (r370489) @@ -10,24 +10,3 @@ share/rt%%RT_VER%%/plugins/RT-Extension- share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib/RT/Extension/MandatoryOnTransition.pm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib/RT/Extension/MandatoryOnTransition/Test.pm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib/RT/Extension/MandatoryOnTransition/Test.pm.in -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib/RT/Extension/MandatoryOnTransition -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib/RT/Extension -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib/RT -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/lib -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/m/ticket/reply -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/m/ticket/create -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/m/ticket -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/m -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Update.html -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Elements/EditCustomFields -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Elements -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket/Create.html -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition/Ticket -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks/RT-Extension-MandatoryOnTransition -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html/Callbacks -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition/html -@dirrm share/rt%%RT_VER%%/plugins/RT-Extension-MandatoryOnTransition -@dirrmtry man/auto/RT/Extension/MandatoryOnTransition -@dirrmtry man/auto/RT/Extension -@dirrmtry man/auto/RT -@dirrmtry man/auto From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 21:39:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 82E36C97; Wed, 8 Oct 2014 21:39:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 65F6B79; Wed, 8 Oct 2014 21:39:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98LdnrY027677; Wed, 8 Oct 2014 21:39:49 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98Ldmhp027672; Wed, 8 Oct 2014 21:39:48 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201410082139.s98Ldmhp027672@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Wed, 8 Oct 2014 21:39:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370490 - in head: Keywords Mk/Scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 21:39:49 -0000 Author: ak Date: Wed Oct 8 21:39:47 2014 New Revision: 370490 URL: https://svnweb.freebsd.org/changeset/ports/370490 QAT: https://qat.redports.org/buildarchive/r370490/ Log: - Accept absolute path for @fc, @fontsdir, @fcfontsdir, @shell keywords Approved by: portmgr (antoine, bapt) Differential Revision: https://reviews.freebsd.org/D721 Modified: head/Keywords/fc.ucl head/Keywords/fcfontsdir.ucl head/Keywords/fontsdir.ucl head/Keywords/shell.ucl head/Mk/Scripts/check-stagedir.sh Modified: head/Keywords/fc.ucl ============================================================================== --- head/Keywords/fc.ucl Wed Oct 8 21:28:48 2014 (r370489) +++ head/Keywords/fc.ucl Wed Oct 8 21:39:47 2014 (r370490) @@ -4,8 +4,16 @@ actions: [dir] post-install: </dev/null || true + case "%@" in + /*) fontsdir="%@" ;; + *) fontsdir="%D/%@" ;; + esac + fc-cache -s ${fontsdir} 2>/dev/null || true EOD post-deinstall: </dev/null || true + case "%@" in + /*) fontsdir="%@" ;; + *) fontsdir="%D/%@" ;; + esac + fc-cache -s ${fontsdir} 2>/dev/null || true EOD Modified: head/Keywords/fcfontsdir.ucl ============================================================================== --- head/Keywords/fcfontsdir.ucl Wed Oct 8 21:28:48 2014 (r370489) +++ head/Keywords/fcfontsdir.ucl Wed Oct 8 21:39:47 2014 (r370490) @@ -4,18 +4,26 @@ actions: [dir] post-install: </dev/null || true - mkfontscale %D/%@ 2>/dev/null || true - mkfontdir %D/%@ 2>/dev/null || true + case "%@" in + /*) fontsdir="%@" ;; + *) fontsdir="%D/%@" ;; + esac + fc-cache -s ${fontsdir} 2>/dev/null || true + mkfontscale ${fontsdir} 2>/dev/null || true + mkfontdir ${fontsdir} 2>/dev/null || true EOD post-deinstall: </dev/null || true - mkfontscale %D/%@ 2>/dev/null || true - if [ -e %D/%@/fonts.scale -a "`stat -f '%%z' %D/%@/fonts.scale 2>/dev/null`" = '2' ]; then - rm %D/%@/fonts.scale + case "%@" in + /*) fontsdir="%@" ;; + *) fontsdir="%D/%@" ;; + esac + fc-cache -s ${fontsdir} 2>/dev/null || true + mkfontscale ${fontsdir} 2>/dev/null || true + if [ -e ${fontsdir}/fonts.scale -a "`stat -f '%%z' ${fontsdir}/fonts.scale 2>/dev/null`" = '2' ]; then + rm ${fontsdir}/fonts.scale fi - mkfontdir %D/%@ 2>/dev/null || true - if [ -e %D/%@/fonts.dir -a "`stat -f '%%z' %D/%@/fonts.dir 2>/dev/null`" = '2' ]; then - rm %D/%@/fonts.dir + mkfontdir ${fontsdir} 2>/dev/null || true + if [ -e ${fontsdir}/fonts.dir -a "`stat -f '%%z' ${fontsdir}/fonts.dir 2>/dev/null`" = '2' ]; then + rm ${fontsdir}/fonts.dir fi EOD Modified: head/Keywords/fontsdir.ucl ============================================================================== --- head/Keywords/fontsdir.ucl Wed Oct 8 21:28:48 2014 (r370489) +++ head/Keywords/fontsdir.ucl Wed Oct 8 21:39:47 2014 (r370490) @@ -4,16 +4,24 @@ actions: [dir] post-install: </dev/null || true - mkfontdir %D/%@ 2>/dev/null || true + case "%@" in + /*) fontsdir="%@" ;; + *) fontsdir="%D/%@" ;; + esac + mkfontscale ${fontsdir} 2>/dev/null || true + mkfontdir ${fontsdir} 2>/dev/null || true EOD post-deinstall: </dev/null || true - if [ -e %D/%@/fonts.scale -a "`stat -f '%%z' %D/%@/fonts.scale 2>/dev/null`" = '2' ]; then - rm %D/%@/fonts.scale + case "%@" in + /*) fontsdir="%@" ;; + *) fontsdir="%D/%@" ;; + esac + mkfontscale ${fontsdir} 2>/dev/null || true + if [ -e ${fontsdir}/fonts.scale -a "`stat -f '%%z' ${fontsdir}/fonts.scale 2>/dev/null`" = '2' ]; then + rm ${fontsdir}/fonts.scale fi - mkfontdir %D/%@ 2>/dev/null || true - if [ -e %D/%@/fonts.dir -a "`stat -f '%%z' %D/%@/fonts.dir 2>/dev/null`" = '2' ]; then - rm %D/%@/fonts.dir + mkfontdir ${fontsdir} 2>/dev/null || true + if [ -e ${fontsdir}/fonts.dir -a "`stat -f '%%z' ${fontsdir}/fonts.dir 2>/dev/null`" = '2' ]; then + rm ${fontsdir}/fonts.dir fi EOD Modified: head/Keywords/shell.ucl ============================================================================== --- head/Keywords/shell.ucl Wed Oct 8 21:28:48 2014 (r370489) +++ head/Keywords/shell.ucl Wed Oct 8 21:39:47 2014 (r370490) @@ -13,12 +13,20 @@ actions: [file] post-install: < /etc/shells + (grep -v ${file} /etc/shells.bak; echo ${file}) > /etc/shells rm -f /etc/shells.bak EOD pre-deinstall: < /etc/shells + grep -v ${file} /etc/shells.bak > /etc/shells rm -f /etc/shells.bak EOD Modified: head/Mk/Scripts/check-stagedir.sh ============================================================================== --- head/Mk/Scripts/check-stagedir.sh Wed Oct 8 21:28:48 2014 (r370489) +++ head/Mk/Scripts/check-stagedir.sh Wed Oct 8 21:39:47 2014 (r370490) @@ -95,7 +95,14 @@ parse_plist() { @fc\ *|@fcfontsdir\ *|@fontsdir\ *) set -- $line shift + case "$@" in + /*) + echo >&3 "${comment}$@" + ;; + *) echo >&3 "${comment}${cwd}/$@" + ;; + esac ;; # order matters here - we must check @cwd first because From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 22:03:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B558F6C4; Wed, 8 Oct 2014 22:03:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 881253EF; Wed, 8 Oct 2014 22:03:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98M3keC041196; Wed, 8 Oct 2014 22:03:46 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98M3jSd041190; Wed, 8 Oct 2014 22:03:45 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201410082203.s98M3jSd041190@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 8 Oct 2014 22:03:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370491 - head/databases/R-cran-RSQLite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 22:03:46 -0000 Author: robak Date: Wed Oct 8 22:03:45 2014 New Revision: 370491 URL: https://svnweb.freebsd.org/changeset/ports/370491 QAT: https://qat.redports.org/buildarchive/r370491/ Log: databases/R-cran-RSQLite: update 0.11.2 -> 0.11.4 - Fix RUN_DEPENDS variable assignment - Pet portlint - Maintainer's timeout PR: 190803 Submitted by: Bartek Rutkowski Approved by: mentors (implicit) Modified: head/databases/R-cran-RSQLite/Makefile head/databases/R-cran-RSQLite/distinfo head/databases/R-cran-RSQLite/pkg-descr Modified: head/databases/R-cran-RSQLite/Makefile ============================================================================== --- head/databases/R-cran-RSQLite/Makefile Wed Oct 8 21:39:47 2014 (r370490) +++ head/databases/R-cran-RSQLite/Makefile Wed Oct 8 22:03:45 2014 (r370491) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= RSQLite -PORTVERSION= 0.11.2 -PORTREVISION= 7 +PORTVERSION= 0.11.4 CATEGORIES= databases DISTNAME= ${PORTNAME}_${PORTVERSION} @@ -13,7 +12,7 @@ COMMENT= Database Interface R driver for LICENSE= LGPL20 BUILD_DEPENDS= R-cran-DBI>=0.2.5:${PORTSDIR}/databases/R-cran-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} +RUN_DEPENDS= R-cran-DBI>=0.2.5:${PORTSDIR}/databases/R-cran-DBI USES= cran:auto-plist Modified: head/databases/R-cran-RSQLite/distinfo ============================================================================== --- head/databases/R-cran-RSQLite/distinfo Wed Oct 8 21:39:47 2014 (r370490) +++ head/databases/R-cran-RSQLite/distinfo Wed Oct 8 22:03:45 2014 (r370491) @@ -1,2 +1,2 @@ -SHA256 (RSQLite_0.11.2.tar.gz) = 53d3a522be5cb939e27985181394adafe5c8905d70d0a3342edb284fa1f72479 -SIZE (RSQLite_0.11.2.tar.gz) = 1556989 +SHA256 (RSQLite_0.11.4.tar.gz) = bba0cbf2a1a3120d667a731da1ca5b9bd4db23b813e1abf6f51fb01540c2000c +SIZE (RSQLite_0.11.4.tar.gz) = 1599919 Modified: head/databases/R-cran-RSQLite/pkg-descr ============================================================================== --- head/databases/R-cran-RSQLite/pkg-descr Wed Oct 8 21:39:47 2014 (r370490) +++ head/databases/R-cran-RSQLite/pkg-descr Wed Oct 8 22:03:45 2014 (r370491) @@ -1,4 +1,4 @@ Database Interface R driver for SQLite. This package embeds the SQLite database engine in R and provides an interface compliant with the DBI package. -WWW: http://cran.r-project.org/web/packages/RSQLite/ +WWW: http://cran.r-project.org/web/packages/RSQLite/ From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 22:31:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2C01BEBB; Wed, 8 Oct 2014 22:31:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F32268FA; Wed, 8 Oct 2014 22:31:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98MVeCR055322; Wed, 8 Oct 2014 22:31:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98MVenn055321; Wed, 8 Oct 2014 22:31:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410082231.s98MVenn055321@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Wed, 8 Oct 2014 22:31:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370492 - head/math/octave-forge X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 22:31:41 -0000 Author: antoine Date: Wed Oct 8 22:31:40 2014 New Revision: 370492 URL: https://svnweb.freebsd.org/changeset/ports/370492 QAT: https://qat.redports.org/buildarchive/r370492/ Log: Remove LTFAT option from octave-forge, the package builders are getting crazy with this several things like this in the log + installing takes hours: load-octave-pkg: octave is installing ltfat-2.0.0.tar.gz. panic: Segmentation fault: 11 -- stopping myself... With hat: portmgr Modified: head/math/octave-forge/Makefile Modified: head/math/octave-forge/Makefile ============================================================================== --- head/math/octave-forge/Makefile Wed Oct 8 22:03:45 2014 (r370491) +++ head/math/octave-forge/Makefile Wed Oct 8 22:31:40 2014 (r370492) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge -PORTVERSION= 20141004 +PORTVERSION= 20141008 CATEGORIES= math MASTER_SITES= #none DISTFILES= #none @@ -21,7 +21,7 @@ OPTIONS_DEFINE= ACTUARIAL AD AUDIO BENCH FINANCIAL FL_CORE FPL FUZZY_LOGIC_TOOLKIT GA GEOMETRY GENERAL \ GENERATE_HTML GNUPLOT GSL IDENT IMAGE \ INFORMATIONTHEORY INTEGRATION IO IRSA LINEAR_ALGEBRA LSSA \ - LTFAT MAPPING MECHANICS MISCELLANEOUS MISSING_FUNCTIONS MSH \ + MAPPING MECHANICS MISCELLANEOUS MISSING_FUNCTIONS MSH \ MULTICORE MVN NAN NCARRAY NETCDF NLWING2 NNET NURBS OCS \ OCT2MAT OCTCDF OCTCLIP OCTGPR OCTPROJ ODEBVP ODEPKG OPTIM \ OPTIMINTERP OUTLIERS PARALLEL PDB PLOT PT_BR QUATERNION \ @@ -66,7 +66,8 @@ IO_DESC= Install package: io IRSA_DESC= Install package: irsa LINEAR_ALGEBRA_DESC= Install package: linear-algebra LSSA_DESC= Install package: lssa -LTFAT_DESC= Install package: ltfat +# Do not reenable without testing first +#LTFAT_DESC= Install package: ltfat MAPPING_DESC= Install package: mapping MECHANICS_DESC= Install package: mechanics MISCELLANEOUS_DESC= Install package: miscellaneous @@ -234,9 +235,9 @@ RUN_DEPENDS+= ${TARBALLS_DIR}/linear-alg .if ${PORT_OPTIONS:MLSSA} RUN_DEPENDS+= ${TARBALLS_DIR}/lssa.tar.gz:${PORTSDIR}/math/octave-forge-lssa .endif -.if ${PORT_OPTIONS:MLTFAT} -RUN_DEPENDS+= ${TARBALLS_DIR}/ltfat.tar.gz:${PORTSDIR}/math/octave-forge-ltfat -.endif +#.if ${PORT_OPTIONS:MLTFAT} +#RUN_DEPENDS+= ${TARBALLS_DIR}/ltfat.tar.gz:${PORTSDIR}/math/octave-forge-ltfat +#.endif .if ${PORT_OPTIONS:MMAPPING} RUN_DEPENDS+= ${TARBALLS_DIR}/mapping.tar.gz:${PORTSDIR}/math/octave-forge-mapping .endif From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 22:42:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C87FF1C1; Wed, 8 Oct 2014 22:42:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA2069EF; Wed, 8 Oct 2014 22:42:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Mg0IX060212; Wed, 8 Oct 2014 22:42:00 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98MfxtP060198; Wed, 8 Oct 2014 22:41:59 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410082241.s98MfxtP060198@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 8 Oct 2014 22:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370493 - in head/devel: . powerpc64-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 22:42:00 -0000 Author: bapt Date: Wed Oct 8 22:41:59 2014 New Revision: 370493 URL: https://svnweb.freebsd.org/changeset/ports/370493 QAT: https://qat.redports.org/buildarchive/r370493/ Log: Add a cross binutils for powerpc64 Added: head/devel/powerpc64-binutils/ head/devel/powerpc64-binutils/Makefile (contents, props changed) head/devel/powerpc64-binutils/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Oct 8 22:31:40 2014 (r370492) +++ head/devel/Makefile Wed Oct 8 22:41:59 2014 (r370493) @@ -3485,6 +3485,7 @@ SUBDIR += poco-ssl SUBDIR += popt SUBDIR += poslib + SUBDIR += powerpc64-binutils SUBDIR += poxml SUBDIR += ppl SUBDIR += premake Added: head/devel/powerpc64-binutils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-binutils/Makefile Wed Oct 8 22:41:59 2014 (r370493) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +PORTREVISION= 1 +COMMENT= GNU binutils for powerpc64 cross-development +PKGNAMEPREFIX= powerpc64- +PLIST= ${.CURDIR}/pkg-plist + +MASTERDIR= ${.CURDIR}/../binutils/ + +.include "${MASTERDIR}/Makefile" Added: head/devel/powerpc64-binutils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-binutils/pkg-plist Wed Oct 8 22:41:59 2014 (r370493) @@ -0,0 +1,96 @@ +bin/powerpc64-freebsd-addr2line +bin/powerpc64-freebsd-ar +bin/powerpc64-freebsd-as +bin/powerpc64-freebsd-c++filt +bin/powerpc64-freebsd-elfedit +bin/powerpc64-freebsd-gprof +bin/powerpc64-freebsd-ld +bin/powerpc64-freebsd-ld.bfd +bin/powerpc64-freebsd-nm +bin/powerpc64-freebsd-objcopy +bin/powerpc64-freebsd-objdump +bin/powerpc64-freebsd-ranlib +bin/powerpc64-freebsd-readelf +bin/powerpc64-freebsd-size +bin/powerpc64-freebsd-strings +bin/powerpc64-freebsd-strip +man/man1/powerpc64-freebsd-addr2line.1.gz +man/man1/powerpc64-freebsd-ar.1.gz +man/man1/powerpc64-freebsd-as.1.gz +man/man1/powerpc64-freebsd-c++filt.1.gz +man/man1/powerpc64-freebsd-dlltool.1.gz +man/man1/powerpc64-freebsd-elfedit.1.gz +man/man1/powerpc64-freebsd-gprof.1.gz +man/man1/powerpc64-freebsd-ld.1.gz +man/man1/powerpc64-freebsd-nlmconv.1.gz +man/man1/powerpc64-freebsd-nm.1.gz +man/man1/powerpc64-freebsd-objcopy.1.gz +man/man1/powerpc64-freebsd-objdump.1.gz +man/man1/powerpc64-freebsd-ranlib.1.gz +man/man1/powerpc64-freebsd-readelf.1.gz +man/man1/powerpc64-freebsd-size.1.gz +man/man1/powerpc64-freebsd-strings.1.gz +man/man1/powerpc64-freebsd-strip.1.gz +man/man1/powerpc64-freebsd-windmc.1.gz +man/man1/powerpc64-freebsd-windres.1.gz +powerpc64-freebsd/bin/ar +powerpc64-freebsd/bin/as +powerpc64-freebsd/bin/ld +powerpc64-freebsd/bin/ld.bfd +powerpc64-freebsd/bin/nm +powerpc64-freebsd/bin/objcopy +powerpc64-freebsd/bin/objdump +powerpc64-freebsd/bin/ranlib +powerpc64-freebsd/bin/strip +powerpc64-freebsd/lib/ldscripts/elf32ppc.x +powerpc64-freebsd/lib/ldscripts/elf32ppc.xbn +powerpc64-freebsd/lib/ldscripts/elf32ppc.xc +powerpc64-freebsd/lib/ldscripts/elf32ppc.xd +powerpc64-freebsd/lib/ldscripts/elf32ppc.xdc +powerpc64-freebsd/lib/ldscripts/elf32ppc.xdw +powerpc64-freebsd/lib/ldscripts/elf32ppc.xn +powerpc64-freebsd/lib/ldscripts/elf32ppc.xr +powerpc64-freebsd/lib/ldscripts/elf32ppc.xs +powerpc64-freebsd/lib/ldscripts/elf32ppc.xsc +powerpc64-freebsd/lib/ldscripts/elf32ppc.xsw +powerpc64-freebsd/lib/ldscripts/elf32ppc.xu +powerpc64-freebsd/lib/ldscripts/elf32ppc.xw +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.x +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xbn +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xc +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xd +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xdc +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xdw +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xn +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xr +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xs +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xsc +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xsw +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xu +powerpc64-freebsd/lib/ldscripts/elf32ppc_fbsd.xw +powerpc64-freebsd/lib/ldscripts/elf64ppc.x +powerpc64-freebsd/lib/ldscripts/elf64ppc.xbn +powerpc64-freebsd/lib/ldscripts/elf64ppc.xc +powerpc64-freebsd/lib/ldscripts/elf64ppc.xd +powerpc64-freebsd/lib/ldscripts/elf64ppc.xdc +powerpc64-freebsd/lib/ldscripts/elf64ppc.xdw +powerpc64-freebsd/lib/ldscripts/elf64ppc.xn +powerpc64-freebsd/lib/ldscripts/elf64ppc.xr +powerpc64-freebsd/lib/ldscripts/elf64ppc.xs +powerpc64-freebsd/lib/ldscripts/elf64ppc.xsc +powerpc64-freebsd/lib/ldscripts/elf64ppc.xsw +powerpc64-freebsd/lib/ldscripts/elf64ppc.xu +powerpc64-freebsd/lib/ldscripts/elf64ppc.xw +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.x +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xbn +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xc +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xd +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xdc +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xdw +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xn +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xr +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xs +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xsc +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xsw +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xu +powerpc64-freebsd/lib/ldscripts/elf64ppc_fbsd.xw From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 23:40:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 332B6A40; Wed, 8 Oct 2014 23:40:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14853E91; Wed, 8 Oct 2014 23:40:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Ne3nW085223; Wed, 8 Oct 2014 23:40:03 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s98Ne3CW085218; Wed, 8 Oct 2014 23:40:03 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201410082340.s98Ne3CW085218@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Wed, 8 Oct 2014 23:40:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370494 - in head/ports-mgmt/portlint: . src X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 23:40:04 -0000 Author: marcus Date: Wed Oct 8 23:40:03 2014 New Revision: 370494 URL: https://svnweb.freebsd.org/changeset/ports/370494 QAT: https://qat.redports.org/buildarchive/r370494/ Log: Update to 2.15.5. * Do not report on DEBUG as an OPTION. [1] * Check for use of muted INSTALL_foo commands. * Warn on use of @dirrm[try]. * Check to make sure rc.d scripts contain a '# PROVIDE:' line. [2] * Check to see that the options provided to USES are sorted. [3] * Fix an errant "direct use of command" warning. [4] * Remove the check to see if StartupNotify is the empty string in DESKTOP_ENTRIES. This is allowed per the spec and per the porter's handbook. [5] * Check for empty lines in plist. [6] * Check for direct command use in SHEBANG_FILES. [7] PR: 192525 [1] 193464 [2] 193792 [3] 193793 [4] 193456 [5] 193794 [6] 193795 [7] Modified: head/ports-mgmt/portlint/Makefile head/ports-mgmt/portlint/src/portlint.pl Modified: head/ports-mgmt/portlint/Makefile ============================================================================== --- head/ports-mgmt/portlint/Makefile Wed Oct 8 22:41:59 2014 (r370493) +++ head/ports-mgmt/portlint/Makefile Wed Oct 8 23:40:03 2014 (r370494) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= portlint -PORTVERSION= 2.15.4 +PORTVERSION= 2.15.5 CATEGORIES= ports-mgmt MASTER_SITES= # none DISTFILES= # none Modified: head/ports-mgmt/portlint/src/portlint.pl ============================================================================== --- head/ports-mgmt/portlint/src/portlint.pl Wed Oct 8 22:41:59 2014 (r370493) +++ head/ports-mgmt/portlint/src/portlint.pl Wed Oct 8 23:40:03 2014 (r370494) @@ -15,7 +15,7 @@ # was removed. # # $FreeBSD$ -# $MCom: portlint/portlint.pl,v 1.327 2014/07/28 13:15:56 marcus Exp $ +# $MCom: portlint/portlint.pl,v 1.338 2014/10/08 23:35:33 marcus Exp $ # use strict; @@ -51,7 +51,7 @@ $portdir = '.'; # version variables my $major = 2; my $minor = 15; -my $micro = 4; +my $micro = 5; sub l { '[{(]'; } sub r { '[)}]'; } @@ -600,6 +600,10 @@ sub checkplist { $_ =~ s/\s+$//; $_ =~ s/\n$//; + if ($_ eq "") { + &perror("WARN", $file, $., "empty line found in plist."); + } + # store possible OPTIONS knobs for OPTIONS_SUB if ($makevar{OPTIONS_SUB}) { while (/\%\%([^%]+)\%\%/g) { @@ -634,6 +638,12 @@ sub checkplist { "removed. It is listed in BSD.local.dist."); } + if (m'\@dirrm(try)?\s') { + &perror("WARN", $file, $., "\@dirrm[try] is deprecated. If you ". + "require special directory handling, use \@dir instead and ". + "consult the porter's handbook."); + } + $seen_special++ if /[\%\@]/; $seen_dirrm_docsdir++ if /^(\%\%PORTDOCS\%\%)?\@dirrm\s+\%\%DOCSDIR\%\%/ || /^(\%\%PORTDOCS\%\%)?\@unexec\s+(\/bin\/)?rmdir\s+\%D\/\%\%DOCSDIR\%\%\s+2\>\s*\/dev\/null\s+\|\|\s+(\/usr\/bin\/)?true/; if ($_ =~ /^\@/) { @@ -1387,8 +1397,19 @@ sub checkmakefile { print "OK: checking for use of .elseif.\n" if ($verbose); if ($whole =~ /^\.\s*else\s*if/m) { my $lineno = &linenumber($`); - &perror("FATAL", $file, $lineno, "use of .elseif (or .else if) is not - supported in all versions of FreeBSD. Use .elif instead."); + &perror("FATAL", $file, $lineno, "use of .elseif (or .else if) is not ". + "supported in all versions of FreeBSD. Use .elif instead."); + } + + # + # whole file: use of @${INSTALL_foo} + # + print "OK: checking for use of muted INSTALL_ commands.\n" if ($verbose); + if ($whole =~ /^\s+\@\$\{INSTALL_/m) { + my $lineno = &linenumber($`); + &perror("WARN", $file, $lineno, "do not use muted INSTALL_foo ". + "commands (i.e., those that start with '\@'). These should be ". + "printed."); } # @@ -1580,7 +1601,7 @@ sub checkmakefile { } foreach my $i ((@opt, @aopt)) { # skip global options - next if ($i eq 'DOCS' or $i eq 'NLS' or $i eq 'EXAMPLES' or $i eq 'IPV6' or $i eq 'X11'); + next if ($i eq 'DOCS' or $i eq 'NLS' or $i eq 'EXAMPLES' or $i eq 'IPV6' or $i eq 'X11' or $i eq 'DEBUG'); if (!grep(/^$i$/, (@mopt, @popt))) { if ($whole !~ /\n${i}_($m)(.)?=[^\n]+/) { &perror("WARN", $file, -1, "$i is listed in ". @@ -1608,25 +1629,6 @@ sub checkmakefile { &perror("FATAL", $file, -1, "Use true/false (without quotes) instead of \${TRUE}/\${FALSE} in DESKTOP_ENTRIES."); } - my @dte_parts = split(/\s+/, $desktop_entries); - my $dtc = 0; - my $dte_quote = 0; - foreach my $dte_part (@dte_parts) { - if ($dtc % 5 == 0 && $dte_part eq '""') { - &perror("FATAL", $file, -1, "Use true/false (without quotes) instead of \${TRUE}/\${FALSE} in DESKTOP_ENTRIES."); - } - if ($dte_quote == 1 && $dte_part =~ /"$/) { - $dte_quote = 0; - } - if ($dte_part =~ /^"[^"]+$/) { - $dte_quote = 1; - next; - } - if (!$dte_quote) { - $dtc++; - } - } - # # whole file: USE_* as a user-settable option # @@ -1700,6 +1702,11 @@ sub checkmakefile { } } + if ($makevar{COMMENT} =~ /^An? / || $makevar{COMMENT} =~ /^The /) { + &perror("WARN", $file, -1, "COMMENT is not supposed to begin with ". + "'A ', 'An ', or 'The '."); + } + if ($whole =~ /\nIGNORE[+?]?=[ \t]+[^a-z \t]/ || $whole =~ /^IGNORE[+?]?=[ \t]+.*\.$/m) { my $lineno = &linenumber($`); @@ -1732,6 +1739,18 @@ sub checkmakefile { } # + # whole file: Check if USES is sorted + # + print "OK: checking to see if USES is sorted.\n" if ($verbose); + if ($makevar{USES} ne '') { + my @suses = sort(split / /, $makevar{USES}); + if (join(" ", @suses) ne $makevar{USES}) { + &perror("WARN", $file, -1, "the options to USES are not sorted. ". + "Please consider sorting them."); + } + } + + # # whole file: USE_GNOME=pkgconfig # print "OK: checking for USE_GNOME=pkgconfig.\n" if ($verbose); @@ -1909,6 +1928,7 @@ ruby sed sdl-config sh sort sysctl touch && $curline !~ /^WX_COMPS(.)?=[^\n]+$i/m && $curline !~ /^ONLY_FOR_ARCHS_REASON(.)?=[^\n]+$i/m && $curline !~ /^NOT_FOR_ARCHS_REASON(.)?=[^\n]+$i/m + && $curline !~ /^SHEBANG_FILES(.)?=[^\n]+$i/m && $curline !~ /^[A-Z0-9_]+_DESC=[^\n]+$i/m && $curline !~ /^\s*#.+$/m && $curline !~ /\-\-$i/m @@ -1936,6 +1956,8 @@ ruby sed sdl-config sh sort sysctl touch && $lm !~ /^MAINTAINER(.)?=[^\n]+($i\d*)/m && $lm !~ /^CATEGORIES(.)?=[^\n]+($i\d*)/m && $lm !~ /^USES(.)?=[^\n]+$i/m + && $lm !~ /^[A-Z0-9_]+_DESC=[^\n]+($i\d*)/m + && $lm !~ /^SHEBANG_FILES(.)?=[^\n]+($i\d*)/m && $lm !~ /^USE_AUTOTOOLS(.)?=[^\n]+($i\d*)/m && $lm !~ /^\s*#.+$/m && $lm !~ /^COMMENT(.)?=[^\n]+($i\d*)/m) { @@ -3227,7 +3249,26 @@ TEST_DEPENDS FETCH_DEPENDS DEPENDS_TARGE } elsif ($i eq '' && $mvar && $mvar ne '') { &perror("WARN", $file, -1, "possible undefined make variable ". "$mvar used as the value for USE_RC_SUBR."); + } elsif ($i ne '' && -f "files/$i.in") { + if (open(RCIN, "< files/$i.in")) { + my @rccontents = ; + my $found_provide = 0; + foreach my $line (@rccontents) { + if ($line =~ /^# PROVIDE:/) { + $found_provide = 1; + last; + } + } + if (!$found_provide) { + &perror("FATAL", "files/$i.in", -1, "rc.d script ". + "$i.in must contain a '# PROVIDE:' line in ". + "order to be started at boot time."); + } + + close(RCIN); + } } + } } } @@ -3435,7 +3476,21 @@ work \${WRKDIR} instead EOF foreach my $i (keys %cmdnames) { # use (?![\w-]) instead of \b to exclude pkg-* - if ($s =~ /^[^#]*(\.\/|\$[\{\(]\.CURDIR[\}\)]\/|[ \t])(\b$i)(?![\w-])/) { + if ($s =~ /^[^#]*(\.\/|\$[\{\(]\.CURDIR[\}\)]\/|[ \t])(\b$i)(?![\w-])/ + && $s !~ /^COMMENT(.)?=[^\n]+$i/m + && $s !~ /^IGNORE(.)?=[^\n]+$i/m + && $s !~ /^BROKEN(.)?=[^\n]+$i/m + && $s !~ /^RESTRICTED(.)?=[^\n]+$i/m + && $s !~ /^NO_PACKAGE(.)?=[^\n]+$i/m + && $s !~ /^NO_CDROM(.)?=[^\n]+$i/m + && $s !~ /^MAINTAINER(.)?=[^\n]+$i/m + && $s !~ /^CATEGORIES(.)?=[^\n]+$i/m + && $s !~ /^USES(.)?=[^\n]+$i/m + && $s !~ /^WX_COMPS(.)?=[^\n]+$i/m + && $s !~ /^SHEBANG_FILES(.)?=[^\n]+$i/m + && $s !~ /^[A-Z0-9_]+_DESC=[^\n]+$i/m + && $s !~ /^ONLY_FOR_ARCHS_REASON(.)?=[^\n]+$i/m + && $s !~ /^NOT_FOR_ARCHS_REASON(.)?=[^\n]+$i/m) { &perror("WARN", $file, -1, "possible direct use of \"$i\" \"$s\" ". "found. if so, use $cmdnames{$i}."); } From owner-svn-ports-head@FreeBSD.ORG Wed Oct 8 23:57:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C7FAF0E for ; Wed, 8 Oct 2014 23:57:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1CB2C11C for ; Wed, 8 Oct 2014 23:57:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s98Nvowr023367 for ; Wed, 8 Oct 2014 23:57:50 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s98Nvopa023364 for svn-ports-head@freebsd.org; Wed, 8 Oct 2014 23:57:50 GMT (envelope-from bdrewery) Received: (qmail 7416 invoked from network); 8 Oct 2014 18:57:48 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 8 Oct 2014 18:57:48 -0500 Message-ID: <5435CF71.3060406@FreeBSD.org> Date: Wed, 08 Oct 2014 18:57:37 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Joe Marcus Clarke , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r370494 - in head/ports-mgmt/portlint: . src References: <201410082340.s98Ne3CW085218@svn.freebsd.org> In-Reply-To: <201410082340.s98Ne3CW085218@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tUfcuc5LNRosp6tbafLNkALSEr5PM9d3S" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Oct 2014 23:57:51 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --tUfcuc5LNRosp6tbafLNkALSEr5PM9d3S Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 10/8/2014 6:40 PM, Joe Marcus Clarke wrote: > Author: marcus > Date: Wed Oct 8 23:40:03 2014 > New Revision: 370494 > URL: https://svnweb.freebsd.org/changeset/ports/370494 > QAT: https://qat.redports.org/buildarchive/r370494/ >=20 > Log: > Update to 2.15.5. Thanks! > =20 > * Do not report on DEBUG as an OPTION. [1] > * Check for use of muted INSTALL_foo commands. > * Warn on use of @dirrm[try]. > * Check to make sure rc.d scripts contain a '# PROVIDE:' line. [2] > * Check to see that the options provided to USES are sorted. [3] > * Fix an errant "direct use of command" warning. [4] > * Remove the check to see if StartupNotify is the empty string in > DESKTOP_ENTRIES. This is allowed per the spec and per the porter's= > handbook. [5] > * Check for empty lines in plist. [6] > * Check for direct command use in SHEBANG_FILES. [7] > =20 > PR: 192525 [1] > 193464 [2] > 193792 [3] > 193793 [4] > 193456 [5] > 193794 [6] > 193795 [7] >=20 > Modified: > head/ports-mgmt/portlint/Makefile > head/ports-mgmt/portlint/src/portlint.pl >=20 > Modified: head/ports-mgmt/portlint/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/ports-mgmt/portlint/Makefile Wed Oct 8 22:41:59 2014 (r370493= ) > +++ head/ports-mgmt/portlint/Makefile Wed Oct 8 23:40:03 2014 (r370494= ) > @@ -2,7 +2,7 @@ > # $FreeBSD$ > =20 > PORTNAME=3D portlint > -PORTVERSION=3D 2.15.4 > +PORTVERSION=3D 2.15.5 > CATEGORIES=3D ports-mgmt > MASTER_SITES=3D # none > DISTFILES=3D # none >=20 > Modified: head/ports-mgmt/portlint/src/portlint.pl > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/ports-mgmt/portlint/src/portlint.pl Wed Oct 8 22:41:59 2014 (= r370493) > +++ head/ports-mgmt/portlint/src/portlint.pl Wed Oct 8 23:40:03 2014 (= r370494) > @@ -15,7 +15,7 @@ > # was removed. > # > # $FreeBSD$ > -# $MCom: portlint/portlint.pl,v 1.327 2014/07/28 13:15:56 marcus Exp $= > +# $MCom: portlint/portlint.pl,v 1.338 2014/10/08 23:35:33 marcus Exp $= > # > =20 > use strict; > @@ -51,7 +51,7 @@ $portdir =3D '.'; > # version variables > my $major =3D 2; > my $minor =3D 15; > -my $micro =3D 4; > +my $micro =3D 5; > =20 > sub l { '[{(]'; } > sub r { '[)}]'; } > @@ -600,6 +600,10 @@ sub checkplist { > $_ =3D~ s/\s+$//; > $_ =3D~ s/\n$//; > =20 > + if ($_ eq "") { > + &perror("WARN", $file, $., "empty line found in plist."); > + } > + > # store possible OPTIONS knobs for OPTIONS_SUB > if ($makevar{OPTIONS_SUB}) { > while (/\%\%([^%]+)\%\%/g) { > @@ -634,6 +638,12 @@ sub checkplist { > "removed. It is listed in BSD.local.dist."); > } > =20 > + if (m'\@dirrm(try)?\s') { > + &perror("WARN", $file, $., "\@dirrm[try] is deprecated. If you ". > + "require special directory handling, use \@dir instead and ". > + "consult the porter's handbook."); > + } > + > $seen_special++ if /[\%\@]/; > $seen_dirrm_docsdir++ if /^(\%\%PORTDOCS\%\%)?\@dirrm\s+\%\%DOCSDIR\= %\%/ || /^(\%\%PORTDOCS\%\%)?\@unexec\s+(\/bin\/)?rmdir\s+\%D\/\%\%DOCSDI= R\%\%\s+2\>\s*\/dev\/null\s+\|\|\s+(\/usr\/bin\/)?true/; > if ($_ =3D~ /^\@/) { > @@ -1387,8 +1397,19 @@ sub checkmakefile { > print "OK: checking for use of .elseif.\n" if ($verbose); > if ($whole =3D~ /^\.\s*else\s*if/m) { > my $lineno =3D &linenumber($`); > - &perror("FATAL", $file, $lineno, "use of .elseif (or .else if) is no= t > - supported in all versions of FreeBSD. Use .elif instead."); > + &perror("FATAL", $file, $lineno, "use of .elseif (or .else if) is no= t ". > + "supported in all versions of FreeBSD. Use .elif instead."); > + } > + > + # > + # whole file: use of @${INSTALL_foo} > + # > + print "OK: checking for use of muted INSTALL_ commands.\n" if ($verbo= se); > + if ($whole =3D~ /^\s+\@\$\{INSTALL_/m) { > + my $lineno =3D &linenumber($`); > + &perror("WARN", $file, $lineno, "do not use muted INSTALL_foo ". > + "commands (i.e., those that start with '\@'). These should be ". > + "printed."); > } > =20 > # > @@ -1580,7 +1601,7 @@ sub checkmakefile { > } > foreach my $i ((@opt, @aopt)) { > # skip global options > - next if ($i eq 'DOCS' or $i eq 'NLS' or $i eq 'EXAMPLES' or $i eq 'I= PV6' or $i eq 'X11'); > + next if ($i eq 'DOCS' or $i eq 'NLS' or $i eq 'EXAMPLES' or $i eq 'I= PV6' or $i eq 'X11' or $i eq 'DEBUG'); > if (!grep(/^$i$/, (@mopt, @popt))) { > if ($whole !~ /\n${i}_($m)(.)?=3D[^\n]+/) { > &perror("WARN", $file, -1, "$i is listed in ". > @@ -1608,25 +1629,6 @@ sub checkmakefile { > &perror("FATAL", $file, -1, "Use true/false (without quotes) instead= of \${TRUE}/\${FALSE} in DESKTOP_ENTRIES."); > } > =20 > - my @dte_parts =3D split(/\s+/, $desktop_entries); > - my $dtc =3D 0; > - my $dte_quote =3D 0; > - foreach my $dte_part (@dte_parts) { > - if ($dtc % 5 =3D=3D 0 && $dte_part eq '""') { > - &perror("FATAL", $file, -1, "Use true/false (without quotes) instea= d of \${TRUE}/\${FALSE} in DESKTOP_ENTRIES."); > - } > - if ($dte_quote =3D=3D 1 && $dte_part =3D~ /"$/) { > - $dte_quote =3D 0; > - } > - if ($dte_part =3D~ /^"[^"]+$/) { > - $dte_quote =3D 1; > - next; > - } > - if (!$dte_quote) { > - $dtc++; > - } > - } > - > # > # whole file: USE_* as a user-settable option > # > @@ -1700,6 +1702,11 @@ sub checkmakefile { > } > } > =20 > + if ($makevar{COMMENT} =3D~ /^An? / || $makevar{COMMENT} =3D~ /^The /)= { > + &perror("WARN", $file, -1, "COMMENT is not supposed to begin with ".= > + "'A ', 'An ', or 'The '."); > + } > + > if ($whole =3D~ /\nIGNORE[+?]?=3D[ \t]+[^a-z \t]/ || > $whole =3D~ /^IGNORE[+?]?=3D[ \t]+.*\.$/m) { > my $lineno =3D &linenumber($`); > @@ -1732,6 +1739,18 @@ sub checkmakefile { > } > =20 > # > + # whole file: Check if USES is sorted > + # > + print "OK: checking to see if USES is sorted.\n" if ($verbose); > + if ($makevar{USES} ne '') { > + my @suses =3D sort(split / /, $makevar{USES}); > + if (join(" ", @suses) ne $makevar{USES}) { > + &perror("WARN", $file, -1, "the options to USES are not sorted. ". > + "Please consider sorting them."); > + } > + } > + > + # > # whole file: USE_GNOME=3Dpkgconfig > # > print "OK: checking for USE_GNOME=3Dpkgconfig.\n" if ($verbose); > @@ -1909,6 +1928,7 @@ ruby sed sdl-config sh sort sysctl touch > && $curline !~ /^WX_COMPS(.)?=3D[^\n]+$i/m > && $curline !~ /^ONLY_FOR_ARCHS_REASON(.)?=3D[^\n]+$i/m > && $curline !~ /^NOT_FOR_ARCHS_REASON(.)?=3D[^\n]+$i/m > + && $curline !~ /^SHEBANG_FILES(.)?=3D[^\n]+$i/m > && $curline !~ /^[A-Z0-9_]+_DESC=3D[^\n]+$i/m > && $curline !~ /^\s*#.+$/m > && $curline !~ /\-\-$i/m > @@ -1936,6 +1956,8 @@ ruby sed sdl-config sh sort sysctl touch > && $lm !~ /^MAINTAINER(.)?=3D[^\n]+($i\d*)/m > && $lm !~ /^CATEGORIES(.)?=3D[^\n]+($i\d*)/m > && $lm !~ /^USES(.)?=3D[^\n]+$i/m > + && $lm !~ /^[A-Z0-9_]+_DESC=3D[^\n]+($i\d*)/m > + && $lm !~ /^SHEBANG_FILES(.)?=3D[^\n]+($i\d*)/m > && $lm !~ /^USE_AUTOTOOLS(.)?=3D[^\n]+($i\d*)/m > && $lm !~ /^\s*#.+$/m > && $lm !~ /^COMMENT(.)?=3D[^\n]+($i\d*)/m) { > @@ -3227,7 +3249,26 @@ TEST_DEPENDS FETCH_DEPENDS DEPENDS_TARGE > } elsif ($i eq '' && $mvar && $mvar ne '') { > &perror("WARN", $file, -1, "possible undefined make variable ". > "$mvar used as the value for USE_RC_SUBR."); > + } elsif ($i ne '' && -f "files/$i.in") { > + if (open(RCIN, "< files/$i.in")) { > + my @rccontents =3D ; > + my $found_provide =3D 0; > + foreach my $line (@rccontents) { > + if ($line =3D~ /^# PROVIDE:/) { > + $found_provide =3D 1; > + last; > + } > + } > + if (!$found_provide) { > + &perror("FATAL", "files/$i.in", -1, "rc.d script ". > + "$i.in must contain a '# PROVIDE:' line in ". > + "order to be started at boot time."); > + } > + > + close(RCIN); > + } > } > + > } > } > } > @@ -3435,7 +3476,21 @@ work \${WRKDIR} instead > EOF > foreach my $i (keys %cmdnames) { > # use (?![\w-]) instead of \b to exclude pkg-* > - if ($s =3D~ /^[^#]*(\.\/|\$[\{\(]\.CURDIR[\}\)]\/|[ \t])(\b$i)(?![\= w-])/) { > + if ($s =3D~ /^[^#]*(\.\/|\$[\{\(]\.CURDIR[\}\)]\/|[ \t])(\b$i)(?![\= w-])/ > + && $s !~ /^COMMENT(.)?=3D[^\n]+$i/m > + && $s !~ /^IGNORE(.)?=3D[^\n]+$i/m > + && $s !~ /^BROKEN(.)?=3D[^\n]+$i/m > + && $s !~ /^RESTRICTED(.)?=3D[^\n]+$i/m > + && $s !~ /^NO_PACKAGE(.)?=3D[^\n]+$i/m > + && $s !~ /^NO_CDROM(.)?=3D[^\n]+$i/m > + && $s !~ /^MAINTAINER(.)?=3D[^\n]+$i/m > + && $s !~ /^CATEGORIES(.)?=3D[^\n]+$i/m > + && $s !~ /^USES(.)?=3D[^\n]+$i/m > + && $s !~ /^WX_COMPS(.)?=3D[^\n]+$i/m > + && $s !~ /^SHEBANG_FILES(.)?=3D[^\n]+$i/m > + && $s !~ /^[A-Z0-9_]+_DESC=3D[^\n]+$i/m > + && $s !~ /^ONLY_FOR_ARCHS_REASON(.)?=3D[^\n]+$i/m > + && $s !~ /^NOT_FOR_ARCHS_REASON(.)?=3D[^\n]+$i/m) { > &perror("WARN", $file, -1, "possible direct use of \"$i\" \"$s\" "= =2E > "found. if so, use $cmdnames{$i}."); > } >=20 --=20 Regards, Bryan Drewery --tUfcuc5LNRosp6tbafLNkALSEr5PM9d3S Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUNc90AAoJEDXXcbtuRpfPJ/4H/2LKO6Wvw14JJBZmygPUzHco 9Vuo46bquwX3wcTyw9xY2rY+MhONg29OytmLMUsy6sxbTMmcS7KQipQ0tA1/2/YO yWM5UVufMz9Ivguqo7uhYEd5Fj+DswLPXuh4FaHnKm44POaJofcHy5q3TZlG+nRL wlsLsL9sOuufB8OWLyH1EdU1P1Yxtsj5X2waK6Yv6LJxJG0nR2NDbEQcpDfp9hf+ bycvE5n5bo05gsm2cDpihyfH+segC2CuYSjDQ9aTHBwChajjO3qKXKjuSyoaaDTN oiJAoUEejxDU3NMSCDBiBczi2d+rARzIbb11po/g3W3kFnzf47KZBeDv0mvZbAc= =H2i7 -----END PGP SIGNATURE----- --tUfcuc5LNRosp6tbafLNkALSEr5PM9d3S-- From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 01:08:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A6E4DC8; Thu, 9 Oct 2014 01:08:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C8529BC; Thu, 9 Oct 2014 01:08:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9918THp028152; Thu, 9 Oct 2014 01:08:29 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9918S6X028150; Thu, 9 Oct 2014 01:08:29 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410090108.s9918S6X028150@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 01:08:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370495 - in head: . Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 01:08:29 -0000 Author: swills Date: Thu Oct 9 01:08:28 2014 New Revision: 370495 URL: https://svnweb.freebsd.org/changeset/ports/370495 QAT: https://qat.redports.org/buildarchive/r370495/ Log: Switch default Ruby to 2.0 Modified: head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Wed Oct 8 23:40:03 2014 (r370494) +++ head/Mk/bsd.default-versions.mk Thu Oct 9 01:08:28 2014 (r370495) @@ -29,7 +29,7 @@ PHP_DEFAULT?= 5.4 PYTHON_DEFAULT?= 2.7 PYTHON2_DEFAULT?= 2.7 PYTHON3_DEFAULT?= 3.3 -RUBY_DEFAULT?= 1.9 +RUBY_DEFAULT?= 2.0 TCLTK_DEFAULT?= 8.6 FIREBIRD_DEFAULT?= 2.5 Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Oct 8 23:40:03 2014 (r370494) +++ head/UPDATING Thu Oct 9 01:08:28 2014 (r370495) @@ -5,6 +5,39 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20141008: + AFFECTS: users of lang/ruby19 + AUTHOR: swills@FreeBSD.org + + The default ruby version has been updated from 1.9 to 2.0. + + If you compile your own ports you may keep 1.9 as the default version by + adding the following lines to your /etc/make.conf file: + + # + # Keep ruby 1.9 as default version + # + DEFAULT_VERSIONS+=ruby=1.9 + + If you wish to update to the new default version, you need to first stop any + software that uses ruby. Then, you will need to follow these steps, depending + upon how you manage your system. + + If you use pkgng, simply upgrade: + # pkg upgrade + + If you use portmaster, install new ruby, then rebuild all ports that depend + on ruby: + # portmaster -o lang/ruby20 lang/ruby19 + # portmaster -R -r ruby-2.0 + + If you use portupgrade, install new ruby, then rebuild all ports that depend + on ruby: + + # pkg delete -f ruby portupgrade + # make -C /usr/ports/ports-mgmt/portupgrade install clean + # portupgrade -x ruby-2.0.\* -fr lang/ruby20 + 20141003: AFFECTS: xorg users AUTHOR: bapt@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 01:37:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB24B2C4; Thu, 9 Oct 2014 01:37:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B5465C19; Thu, 9 Oct 2014 01:37:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s991bxm9042216; Thu, 9 Oct 2014 01:37:59 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s991bx9C042211; Thu, 9 Oct 2014 01:37:59 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410090137.s991bx9C042211@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 01:37:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370496 - head/java/visualvm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 01:37:59 -0000 Author: swills Date: Thu Oct 9 01:37:58 2014 New Revision: 370496 URL: https://svnweb.freebsd.org/changeset/ports/370496 QAT: https://qat.redports.org/buildarchive/r370496/ Log: java/visualvm: update to 1.3.8 PR: 194229 Submitted by: Jean-Francois BOEUF Modified: head/java/visualvm/Makefile head/java/visualvm/distinfo head/java/visualvm/pkg-plist Modified: head/java/visualvm/Makefile ============================================================================== --- head/java/visualvm/Makefile Thu Oct 9 01:08:28 2014 (r370495) +++ head/java/visualvm/Makefile Thu Oct 9 01:37:58 2014 (r370496) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= visualvm -PORTVERSION= 1.3.7 +PORTVERSION= 1.3.8 CATEGORIES= java devel MASTER_SITES= https://java.net/downloads/visualvm/release${PORTVERSION:S/.//g}/ DISTNAME= visualvm_${PORTVERSION:S/.//g}-ml @@ -37,7 +37,7 @@ do-install: @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${i} ${STAGEDIR}${PREFIX}/share/visualvm/) .endfor .for i in visualvm.conf visualvm.clusters visualvm.icns - @${INSTALL_DATA} ${WRKSRC}/etc/${i} ${STAGEDIR}${PREFIX}/etc/${i}-dist + @${INSTALL_DATA} ${WRKSRC}/etc/${i} ${STAGEDIR}${PREFIX}/etc/${i}.sample .endfor @${UNZIP_CMD} -q -j -d ${STAGEDIR}${DATADIR} ${WRKSRC}/visualvm/modules/com-sun-tools-visualvm-application.jar com/sun/tools/visualvm/application/resources/visualvm.png @${INSTALL_DATA} ${WRKDIR}/*.desktop ${STAGEDIR}${PREFIX}/share/applications/ Modified: head/java/visualvm/distinfo ============================================================================== --- head/java/visualvm/distinfo Thu Oct 9 01:08:28 2014 (r370495) +++ head/java/visualvm/distinfo Thu Oct 9 01:37:58 2014 (r370496) @@ -1,2 +1,2 @@ -SHA256 (visualvm_137-ml.zip) = 1d8fbb69199f0a75419bca367a50c01f0c12509caa5468957838999d3a4440fc -SIZE (visualvm_137-ml.zip) = 19240203 +SHA256 (visualvm_138-ml.zip) = b8758a35096f7000b63485492ddc20b15c441fbe59fd8ecee7e91ba9f0d67be2 +SIZE (visualvm_138-ml.zip) = 19428862 Modified: head/java/visualvm/pkg-plist ============================================================================== --- head/java/visualvm/pkg-plist Thu Oct 9 01:08:28 2014 (r370495) +++ head/java/visualvm/pkg-plist Thu Oct 9 01:37:58 2014 (r370496) @@ -1,6 +1,5 @@ bin/visualvm share/applications/visualvm.desktop -%%DATADIR%%/visualvm.png %%DATADIR%%/platform/.lastModified %%DATADIR%%/platform/VERSION.txt %%DATADIR%%/platform/config/ModuleAutoDeps/org-netbeans-core.xml @@ -33,6 +32,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/config/Modules/org-netbeans-core.xml %%DATADIR%%/platform/config/Modules/org-netbeans-lib-uihandler.xml %%DATADIR%%/platform/config/Modules/org-netbeans-libs-felix.xml +%%DATADIR%%/platform/config/Modules/org-netbeans-libs-javafx.xml %%DATADIR%%/platform/config/Modules/org-netbeans-libs-jna-platform.xml %%DATADIR%%/platform/config/Modules/org-netbeans-libs-jna.xml %%DATADIR%%/platform/config/Modules/org-netbeans-libs-jsr223.xml @@ -52,7 +52,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/config/Modules/org-netbeans-modules-keyring.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-masterfs-linux.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-masterfs-macosx.xml -%%DATADIR%%/platform/config/Modules/org-netbeans-modules-masterfs-solaris.xml +%%DATADIR%%/platform/config/Modules/org-netbeans-modules-masterfs-nio2.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-masterfs-windows.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-masterfs.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-netbinox.xml @@ -65,6 +65,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/config/Modules/org-netbeans-modules-sendopts.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-settings.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-spi-actions.xml +%%DATADIR%%/platform/config/Modules/org-netbeans-modules-templates.xml %%DATADIR%%/platform/config/Modules/org-netbeans-modules-uihandler.xml %%DATADIR%%/platform/config/Modules/org-netbeans-spi-quicksearch.xml %%DATADIR%%/platform/config/Modules/org-netbeans-swing-outline.xml @@ -105,7 +106,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/lib/org-openide-modules.jar %%DATADIR%%/platform/lib/org-openide-util-lookup.jar %%DATADIR%%/platform/lib/org-openide-util.jar -%%DATADIR%%/platform/modules/ext/felix-4.0.2.jar +%%DATADIR%%/platform/modules/ext/felix-4.2.1.jar %%DATADIR%%/platform/modules/ext/jhall-2.0_05.jar %%DATADIR%%/platform/modules/ext/jna-3.4.0.jar %%DATADIR%%/platform/modules/ext/locale/updater_ja.jar @@ -159,6 +160,8 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/modules/locale/org-netbeans-lib-uihandler_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-libs-felix_ja.jar %%DATADIR%%/platform/modules/locale/org-netbeans-libs-felix_zh_CN.jar +%%DATADIR%%/platform/modules/locale/org-netbeans-libs-javafx_ja.jar +%%DATADIR%%/platform/modules/locale/org-netbeans-libs-javafx_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-libs-jna-platform_ja.jar %%DATADIR%%/platform/modules/locale/org-netbeans-libs-jna-platform_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-libs-jna_ja.jar @@ -197,8 +200,8 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-linux_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-macosx_ja.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-macosx_zh_CN.jar -%%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-solaris_ja.jar -%%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-solaris_zh_CN.jar +%%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-nio2_ja.jar +%%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-nio2_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-windows_ja.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs-windows_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-masterfs_ja.jar @@ -223,6 +226,8 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/modules/locale/org-netbeans-modules-settings_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-spi-actions_ja.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-spi-actions_zh_CN.jar +%%DATADIR%%/platform/modules/locale/org-netbeans-modules-templates_ja.jar +%%DATADIR%%/platform/modules/locale/org-netbeans-modules-templates_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-uihandler_ja.jar %%DATADIR%%/platform/modules/locale/org-netbeans-modules-uihandler_zh_CN.jar %%DATADIR%%/platform/modules/locale/org-netbeans-spi-quicksearch_ja.jar @@ -278,6 +283,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/modules/org-netbeans-core.jar %%DATADIR%%/platform/modules/org-netbeans-lib-uihandler.jar %%DATADIR%%/platform/modules/org-netbeans-libs-felix.jar +%%DATADIR%%/platform/modules/org-netbeans-libs-javafx.jar %%DATADIR%%/platform/modules/org-netbeans-libs-jna-platform.jar %%DATADIR%%/platform/modules/org-netbeans-libs-jna.jar %%DATADIR%%/platform/modules/org-netbeans-libs-jsr223.jar @@ -297,7 +303,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/modules/org-netbeans-modules-keyring.jar %%DATADIR%%/platform/modules/org-netbeans-modules-masterfs-linux.jar %%DATADIR%%/platform/modules/org-netbeans-modules-masterfs-macosx.jar -%%DATADIR%%/platform/modules/org-netbeans-modules-masterfs-solaris.jar +%%DATADIR%%/platform/modules/org-netbeans-modules-masterfs-nio2.jar %%DATADIR%%/platform/modules/org-netbeans-modules-masterfs-windows.jar %%DATADIR%%/platform/modules/org-netbeans-modules-masterfs.jar %%DATADIR%%/platform/modules/org-netbeans-modules-netbinox.jar @@ -310,6 +316,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/modules/org-netbeans-modules-sendopts.jar %%DATADIR%%/platform/modules/org-netbeans-modules-settings.jar %%DATADIR%%/platform/modules/org-netbeans-modules-spi-actions.jar +%%DATADIR%%/platform/modules/org-netbeans-modules-templates.jar %%DATADIR%%/platform/modules/org-netbeans-modules-uihandler.jar %%DATADIR%%/platform/modules/org-netbeans-spi-quicksearch.jar %%DATADIR%%/platform/modules/org-netbeans-swing-outline.jar @@ -349,6 +356,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/update_tracking/org-netbeans-core.xml %%DATADIR%%/platform/update_tracking/org-netbeans-lib-uihandler.xml %%DATADIR%%/platform/update_tracking/org-netbeans-libs-felix.xml +%%DATADIR%%/platform/update_tracking/org-netbeans-libs-javafx.xml %%DATADIR%%/platform/update_tracking/org-netbeans-libs-jna-platform.xml %%DATADIR%%/platform/update_tracking/org-netbeans-libs-jna.xml %%DATADIR%%/platform/update_tracking/org-netbeans-libs-jsr223.xml @@ -368,7 +376,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/update_tracking/org-netbeans-modules-keyring.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-masterfs-linux.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-masterfs-macosx.xml -%%DATADIR%%/platform/update_tracking/org-netbeans-modules-masterfs-solaris.xml +%%DATADIR%%/platform/update_tracking/org-netbeans-modules-masterfs-nio2.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-masterfs-windows.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-masterfs.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-netbinox.xml @@ -381,6 +389,7 @@ share/applications/visualvm.desktop %%DATADIR%%/platform/update_tracking/org-netbeans-modules-sendopts.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-settings.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-spi-actions.xml +%%DATADIR%%/platform/update_tracking/org-netbeans-modules-templates.xml %%DATADIR%%/platform/update_tracking/org-netbeans-modules-uihandler.xml %%DATADIR%%/platform/update_tracking/org-netbeans-spi-quicksearch.xml %%DATADIR%%/platform/update_tracking/org-netbeans-swing-outline.xml @@ -473,6 +482,7 @@ share/applications/visualvm.desktop %%DATADIR%%/profiler/update_tracking/org-netbeans-modules-profiler-snaptracer.xml %%DATADIR%%/profiler/update_tracking/org-netbeans-modules-profiler-utilities.xml %%DATADIR%%/profiler/update_tracking/org-netbeans-modules-profiler.xml +%%DATADIR%%/visualvm.png %%DATADIR%%/visualvm/.lastModified %%DATADIR%%/visualvm/config/Modules/com-sun-tools-visualvm-api-caching.xml %%DATADIR%%/visualvm/config/Modules/com-sun-tools-visualvm-application-views.xml @@ -514,6 +524,7 @@ share/applications/visualvm.desktop %%DATADIR%%/visualvm/config/Modules/org-netbeans-modules-options-keymap.xml_hidden %%DATADIR%%/visualvm/config/Modules/org-netbeans-modules-print.xml_hidden %%DATADIR%%/visualvm/config/Modules/org-netbeans-modules-spi-actions.xml_hidden +%%DATADIR%%/visualvm/config/Modules/org-netbeans-modules-templates.xml_hidden %%DATADIR%%/visualvm/config/Modules/org-netbeans-modules-uihandler.xml_hidden %%DATADIR%%/visualvm/config/Modules/org-openide-compat.xml_hidden %%DATADIR%%/visualvm/config/Modules/org-openide-execution.xml_hidden @@ -615,15 +626,9 @@ share/applications/visualvm.desktop %%DATADIR%%/visualvm/update_tracking/com-sun-tools-visualvm-threaddump.xml %%DATADIR%%/visualvm/update_tracking/com-sun-tools-visualvm-tools.xml %%DATADIR%%/visualvm/update_tracking/com-sun-tools-visualvm-uisupport.xml -@unexec if cmp -s %D/etc/visualvm.conf %D/etc/visualvm.conf-dist ; then rm -f %D/etc/visualvm.conf ; fi -etc/visualvm.conf-dist -@exec if [ ! -f %D/etc/visualvm.conf ]; then cp -p %D/%F %B/visualvm.conf; fi -@unexec if cmp -s %D/etc/visualvm.clusters %D/etc/visualvm.clusters-dist; then rm -f %D/etc/visualvm.clusters; fi -etc/visualvm.clusters-dist -@exec [ ! -f %B/visualvm.clusters ] && cp %B/visualvm.clusters-dist %B/visualvm.clusters -@unexec if cmp -s %D/etc/visualvm.icns %D/etc/visualvm.icns-dist; then rm -f %D/etc/visualvm.icns; fi -etc/visualvm.icns-dist -@exec [ ! -f %B/visualvm.icns ] && cp %B/visualvm.icns-dist %B/visualvm.icns +@sample etc/visualvm.conf.sample +@sample etc/visualvm.clusters.sample +@sample etc/visualvm.icns.sample @dirrm %%DATADIR%%/platform/config/ModuleAutoDeps @dirrm %%DATADIR%%/platform/config/Modules @dirrm %%DATADIR%%/platform/config @@ -634,12 +639,12 @@ etc/visualvm.icns-dist @dirrm %%DATADIR%%/platform/lib @dirrm %%DATADIR%%/platform/modules/ext/locale @dirrm %%DATADIR%%/platform/modules/ext -@dirrm %%DATADIR%%/platform/modules/lib @dirrm %%DATADIR%%/platform/modules/lib/amd64/linux @dirrm %%DATADIR%%/platform/modules/lib/amd64 @dirrm %%DATADIR%%/platform/modules/lib/i386/linux @dirrm %%DATADIR%%/platform/modules/lib/i386 @dirrm %%DATADIR%%/platform/modules/lib/x86 +@dirrm %%DATADIR%%/platform/modules/lib @dirrm %%DATADIR%%/platform/modules/locale @dirrm %%DATADIR%%/platform/modules @dirrm %%DATADIR%%/platform/update_tracking From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 02:45:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47DD246C; Thu, 9 Oct 2014 02:45:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2882E259; Thu, 9 Oct 2014 02:45:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s992jIMN075496; Thu, 9 Oct 2014 02:45:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s992jHYE075493; Thu, 9 Oct 2014 02:45:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410090245.s992jHYE075493@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 02:45:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370497 - head/devel/p5-Module-Install X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 02:45:18 -0000 Author: swills Date: Thu Oct 9 02:45:16 2014 New Revision: 370497 URL: https://svnweb.freebsd.org/changeset/ports/370497 QAT: https://qat.redports.org/buildarchive/r370497/ Log: devel/p5-Module-Install: update to to 1.12 PR: 193498 Submitted by: Sergei Vyshenski Modified: head/devel/p5-Module-Install/Makefile head/devel/p5-Module-Install/distinfo head/devel/p5-Module-Install/pkg-plist Modified: head/devel/p5-Module-Install/Makefile ============================================================================== --- head/devel/p5-Module-Install/Makefile Thu Oct 9 01:37:58 2014 (r370496) +++ head/devel/p5-Module-Install/Makefile Thu Oct 9 02:45:16 2014 (r370497) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-Install -PORTVERSION= 1.08 +PORTVERSION= 1.12 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -10,6 +10,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= swills@FreeBSD.org COMMENT= Standalone, extensible Perl module installer +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + BUILD_DEPENDS= p5-File-Remove>=1.42:${PORTSDIR}/devel/p5-File-Remove \ p5-JSON>=2.14:${PORTSDIR}/converters/p5-JSON \ p5-Module-ScanDeps>=1.09:${PORTSDIR}/devel/p5-Module-ScanDeps \ Modified: head/devel/p5-Module-Install/distinfo ============================================================================== --- head/devel/p5-Module-Install/distinfo Thu Oct 9 01:37:58 2014 (r370496) +++ head/devel/p5-Module-Install/distinfo Thu Oct 9 02:45:16 2014 (r370497) @@ -1,2 +1,2 @@ -SHA256 (Module-Install-1.08.tar.gz) = ed86782929208e63a35709ad6f53edd39e105fc1bcb7dcfc3fb7362af67bb514 -SIZE (Module-Install-1.08.tar.gz) = 126800 +SHA256 (Module-Install-1.12.tar.gz) = 3ba58f4ab7dea442501550372dfa1a72f6a6652af6fbea8a04b31adb181d5503 +SIZE (Module-Install-1.12.tar.gz) = 128175 Modified: head/devel/p5-Module-Install/pkg-plist ============================================================================== --- head/devel/p5-Module-Install/pkg-plist Thu Oct 9 01:37:58 2014 (r370496) +++ head/devel/p5-Module-Install/pkg-plist Thu Oct 9 02:45:16 2014 (r370497) @@ -1,6 +1,27 @@ +%%PERL5_MAN3%%/Module::AutoInstall.3.gz +%%PERL5_MAN3%%/Module::Install.3.gz +%%PERL5_MAN3%%/Module::Install::API.3.gz +%%PERL5_MAN3%%/Module::Install::Admin.3.gz +%%PERL5_MAN3%%/Module::Install::Admin::Include.3.gz +%%PERL5_MAN3%%/Module::Install::Admin::Manifest.3.gz +%%PERL5_MAN3%%/Module::Install::Base.3.gz +%%PERL5_MAN3%%/Module::Install::Bundle.3.gz +%%PERL5_MAN3%%/Module::Install::Can.3.gz +%%PERL5_MAN3%%/Module::Install::Compiler.3.gz +%%PERL5_MAN3%%/Module::Install::Deprecated.3.gz +%%PERL5_MAN3%%/Module::Install::External.3.gz +%%PERL5_MAN3%%/Module::Install::FAQ.3.gz +%%PERL5_MAN3%%/Module::Install::Makefile.3.gz +%%PERL5_MAN3%%/Module::Install::PAR.3.gz +%%PERL5_MAN3%%/Module::Install::Philosophy.3.gz +%%PERL5_MAN3%%/Module::Install::Share.3.gz +%%PERL5_MAN3%%/Module::Install::With.3.gz +%%PERL5_MAN3%%/inc::Module::Install.3.gz +%%PERL5_MAN3%%/inc::Module::Install::DSL.3.gz %%SITE_PERL%%/Module/AutoInstall.pm %%SITE_PERL%%/Module/Install.pm %%SITE_PERL%%/Module/Install.pod +%%SITE_PERL%%/Module/Install/API.pod %%SITE_PERL%%/Module/Install/Admin.pm %%SITE_PERL%%/Module/Install/Admin/Bundle.pm %%SITE_PERL%%/Module/Install/Admin/Compiler.pm @@ -12,7 +33,6 @@ %%SITE_PERL%%/Module/Install/Admin/ScanDeps.pm %%SITE_PERL%%/Module/Install/Admin/WriteAll.pm %%SITE_PERL%%/Module/Install/AutoInstall.pm -%%SITE_PERL%%/Module/Install/API.pod %%SITE_PERL%%/Module/Install/Base.pm %%SITE_PERL%%/Module/Install/Bundle.pm %%SITE_PERL%%/Module/Install/Can.pm @@ -38,29 +58,9 @@ %%SITE_PERL%%/inc/Module/Install.pm %%SITE_PERL%%/inc/Module/Install/DSL.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Module/Install/.packlist -%%PERL5_MAN3%%/inc::Module::Install.3.gz -%%PERL5_MAN3%%/inc::Module::Install::DSL.3.gz -%%PERL5_MAN3%%/Module::AutoInstall.3.gz -%%PERL5_MAN3%%/Module::Install.3.gz -%%PERL5_MAN3%%/Module::Install::Admin.3.gz -%%PERL5_MAN3%%/Module::Install::API.3.gz -%%PERL5_MAN3%%/Module::Install::Admin::Include.3.gz -%%PERL5_MAN3%%/Module::Install::Admin::Manifest.3.gz -%%PERL5_MAN3%%/Module::Install::Base.3.gz -%%PERL5_MAN3%%/Module::Install::Bundle.3.gz -%%PERL5_MAN3%%/Module::Install::Can.3.gz -%%PERL5_MAN3%%/Module::Install::Compiler.3.gz -%%PERL5_MAN3%%/Module::Install::Deprecated.3.gz -%%PERL5_MAN3%%/Module::Install::External.3.gz -%%PERL5_MAN3%%/Module::Install::FAQ.3.gz -%%PERL5_MAN3%%/Module::Install::Makefile.3.gz -%%PERL5_MAN3%%/Module::Install::PAR.3.gz -%%PERL5_MAN3%%/Module::Install::Philosophy.3.gz -%%PERL5_MAN3%%/Module::Install::Share.3.gz -%%PERL5_MAN3%%/Module::Install::With.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Module/Install -@dirrm %%SITE_PERL%%/Module/Install/Admin -@dirrm %%SITE_PERL%%/inc/Module/Install -@dirrm %%SITE_PERL%%/inc/Module -@dirrmtry %%SITE_PERL%%/inc +@dirrmtry %%SITE_PERL%%/Module/Install/Admin @dirrmtry %%SITE_PERL%%/Module/Install +@dirrmtry %%SITE_PERL%%/inc/Module/Install +@dirrmtry %%SITE_PERL%%/inc/Module +@dirrmtry %%SITE_PERL%%/inc +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Module/Install From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 03:07:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D469C10; Thu, 9 Oct 2014 03:07:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4976275E; Thu, 9 Oct 2014 03:07:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9937tCQ086589; Thu, 9 Oct 2014 03:07:55 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9937s8D086587; Thu, 9 Oct 2014 03:07:54 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410090307.s9937s8D086587@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 03:07:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370498 - head/databases/jasperreports X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 03:07:55 -0000 Author: swills Date: Thu Oct 9 03:07:54 2014 New Revision: 370498 URL: https://svnweb.freebsd.org/changeset/ports/370498 QAT: https://qat.redports.org/buildarchive/r370498/ Log: databases/jasperreports: update to 5.5.2 PR: 189123 Submitted by: Joe Benden Modified: head/databases/jasperreports/Makefile head/databases/jasperreports/distinfo Modified: head/databases/jasperreports/Makefile ============================================================================== --- head/databases/jasperreports/Makefile Thu Oct 9 02:45:16 2014 (r370497) +++ head/databases/jasperreports/Makefile Thu Oct 9 03:07:54 2014 (r370498) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jasperreports -PORTVERSION= 5.1.2 +PORTVERSION= 5.5.2 CATEGORIES= databases print java MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/JasperReports%20${PORTVERSION} DISTFILES= ${PORTNAME}-${PORTVERSION}.jar ${PORTNAME}-applet-${PORTVERSION}.jar Modified: head/databases/jasperreports/distinfo ============================================================================== --- head/databases/jasperreports/distinfo Thu Oct 9 02:45:16 2014 (r370497) +++ head/databases/jasperreports/distinfo Thu Oct 9 03:07:54 2014 (r370498) @@ -1,4 +1,4 @@ -SHA256 (jasperreports-5.1.2.jar) = fd349ecd5e21547491e865042ac3277de1e550c3b6946c2d87d71a125d87477e -SIZE (jasperreports-5.1.2.jar) = 4530683 -SHA256 (jasperreports-applet-5.1.2.jar) = e31dc3ce36a37ef9692394030cf8f4831aba363c780cf30f3232f3f6046ae954 -SIZE (jasperreports-applet-5.1.2.jar) = 513918 +SHA256 (jasperreports-5.5.2.jar) = 2373ea494b9260e54ac4c0c9434226f1439662152e67fa435691e1e54a21c7ac +SIZE (jasperreports-5.5.2.jar) = 4961703 +SHA256 (jasperreports-applet-5.5.2.jar) = 3b65af419fb91b17ae4e5095da0e47f9e2f1b9c6f855d9522935bee443442d77 +SIZE (jasperreports-applet-5.5.2.jar) = 548467 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 03:27:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C87A9FB8; Thu, 9 Oct 2014 03:27:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9699922; Thu, 9 Oct 2014 03:27:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s993Rn9A096243; Thu, 9 Oct 2014 03:27:49 GMT (envelope-from xmj@FreeBSD.org) Received: (from xmj@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s993RmAY096240; Thu, 9 Oct 2014 03:27:49 GMT (envelope-from xmj@FreeBSD.org) Message-Id: <201410090327.s993RmAY096240@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: xmj set sender to xmj@FreeBSD.org using -f From: Johannes Jost Meixner Date: Thu, 9 Oct 2014 03:27:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370499 - head/www/hiawatha X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 03:27:50 -0000 Author: xmj Date: Thu Oct 9 03:27:48 2014 New Revision: 370499 URL: https://svnweb.freebsd.org/changeset/ports/370499 QAT: https://qat.redports.org/buildarchive/r370499/ Log: www/hiawatha: update to 9.7 - Update to 9.7 Changelog: hiawatha (9.7) stable; urgency=low •UseToolkit now possible in .hiawatha file at root of website. •Method option added to URL Toolkit. •SetResourceLimit option added. •ThreadKillRate option added. •Improved SQL injection detection. •Default value for DHsize set to 2048. •PolarSSL updated to version 1.3.8. •Memory allocation debugger module added. •Small bugfixes and improvements. •Bugfix: incorrect file hash printing by wigwam with directory as symlink While there: - clean up portlint errors - rename @dirrmtry to @dir PR: 193257 Differential Revision: https://reviews.freebsd.org/D915 Submitted by: chris@bsdjunk.com Approved by: swills (mentor) Modified: head/www/hiawatha/Makefile head/www/hiawatha/distinfo head/www/hiawatha/pkg-plist Modified: head/www/hiawatha/Makefile ============================================================================== --- head/www/hiawatha/Makefile Thu Oct 9 03:07:54 2014 (r370498) +++ head/www/hiawatha/Makefile Thu Oct 9 03:27:48 2014 (r370499) @@ -2,12 +2,9 @@ # $FreeBSD$ PORTNAME= hiawatha -PORTVERSION= 9.6 -PORTREVISION= 1 +PORTVERSION= 9.7 CATEGORIES= www -MASTER_SITES= SF/fbsdports/hiawatha/ \ - http://www.hiawatha-webserver.org/files/:monitor -DISTFILES= ${PORTNAME}-${PORTVERSION}.tar.gz +MASTER_SITES= SF/fbsdports/hiawatha/ MAINTAINER= chris@bsdjunk.com COMMENT= Advanced and secure webserver for Unix Modified: head/www/hiawatha/distinfo ============================================================================== --- head/www/hiawatha/distinfo Thu Oct 9 03:07:54 2014 (r370498) +++ head/www/hiawatha/distinfo Thu Oct 9 03:27:48 2014 (r370499) @@ -1,2 +1,2 @@ -SHA256 (hiawatha-9.6.tar.gz) = 13132fdb322a8d222f7fa25fa19b5485fcdf7a9568fbe4a52c99905571a75a45 -SIZE (hiawatha-9.6.tar.gz) = 862173 +SHA256 (hiawatha-9.7.tar.gz) = e8581336883b7b963f38572f6396f8c47b43e5bedd3147d052fa3652e6c0ed86 +SIZE (hiawatha-9.7.tar.gz) = 885325 Modified: head/www/hiawatha/pkg-plist ============================================================================== --- head/www/hiawatha/pkg-plist Thu Oct 9 03:07:54 2014 (r370498) +++ head/www/hiawatha/pkg-plist Thu Oct 9 03:27:48 2014 (r370499) @@ -9,16 +9,16 @@ sbin/cgi-wrapper sbin/hiawatha sbin/wigwam lib/hiawatha/libpolarssl.so -lib/hiawatha/libpolarssl.so.1.3.7 -lib/hiawatha/libpolarssl.so.6 +lib/hiawatha/libpolarssl.so.1.3.8 +lib/hiawatha/libpolarssl.so.7 man/man1/cgi-wrapper.1.gz man/man1/hiawatha.1.gz man/man1/ssi-cgi.1.gz man/man1/wigwam.1.gz @sample %%WWWDIR%%/index.html.sample -@dirrmtry %%WWWDIR%% -@dirrmtry lib/hiawatha -@dirrmtry %%ETCDIR%% -@dirrmtry /var/log/hiawatha -@dirrmtry /var/lib/hiawatha -@dirrmtry /var/lib +@dir %%WWWDIR%% +@dir lib/hiawatha +@dir %%ETCDIR%% +@dir /var/log/hiawatha +@dir /var/lib/hiawatha +@dir /var/lib From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 04:18:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7359AABD; Thu, 9 Oct 2014 04:18:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5F512D61; Thu, 9 Oct 2014 04:18:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s994Itsl020210; Thu, 9 Oct 2014 04:18:55 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s994Itgh020209; Thu, 9 Oct 2014 04:18:55 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410090418.s994Itgh020209@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 9 Oct 2014 04:18:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370500 - head/emulators/wine-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 04:18:55 -0000 Author: gerald Date: Thu Oct 9 04:18:54 2014 New Revision: 370500 URL: https://svnweb.freebsd.org/changeset/ports/370500 QAT: https://qat.redports.org/buildarchive/r370500/ Log: The Compholio patchset has been rerolled upstream. No actual changes except for a renaming of the top-level directory from wine-compholio-1.7.28 to wine-staging-1.7.28. Modified: head/emulators/wine-devel/distinfo Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Thu Oct 9 03:27:48 2014 (r370499) +++ head/emulators/wine-devel/distinfo Thu Oct 9 04:18:54 2014 (r370500) @@ -1,4 +1,4 @@ SHA256 (wine-1.7.28.tar.bz2) = 67c3f157b9e720971d1f7dc582e9f0b16879ef660b5ba284a77f8bdfc6fc2313 SIZE (wine-1.7.28.tar.bz2) = 21811422 -SHA256 (v1.7.28.tar.gz) = 40eabfddd2bf76a3a9498348a7655f6265ab18141be7b21ad4e7be69058eac0e -SIZE (v1.7.28.tar.gz) = 8388708 +SHA256 (v1.7.28.tar.gz) = 2ce3f4329befb33fec80f856105ea9ada7ba3f4bdf6d07edca485d15b55fff34 +SIZE (v1.7.28.tar.gz) = 8388699 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 05:42:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71FC0BE5; Thu, 9 Oct 2014 05:42:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 444FA7B2; Thu, 9 Oct 2014 05:42:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s995gxnp061849; Thu, 9 Oct 2014 05:42:59 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s995gwFL061846; Thu, 9 Oct 2014 05:42:58 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410090542.s995gwFL061846@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Thu, 9 Oct 2014 05:42:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370501 - head/lang/gcc48 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 05:42:59 -0000 Author: gerald Date: Thu Oct 9 05:42:58 2014 New Revision: 370501 URL: https://svnweb.freebsd.org/changeset/ports/370501 QAT: https://qat.redports.org/buildarchive/r370501/ Log: Update to the 20141002 snapshot of GCC 4.8.4. Remove all instances of @dirrm from pkg-plist. Modified: head/lang/gcc48/Makefile head/lang/gcc48/distinfo head/lang/gcc48/pkg-plist Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Thu Oct 9 04:18:54 2014 (r370500) +++ head/lang/gcc48/Makefile Thu Oct 9 05:42:58 2014 (r370501) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= gcc48 -PORTVERSION= 4.8.4.s20140918 -PORTREVISION= 1 +PORTVERSION= 4.8.4.s20141002 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc48/distinfo ============================================================================== --- head/lang/gcc48/distinfo Thu Oct 9 04:18:54 2014 (r370500) +++ head/lang/gcc48/distinfo Thu Oct 9 05:42:58 2014 (r370501) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.8-20140918.tar.bz2) = a3dca3a506f6e9f1b5c12a8813aa7695448145ed252631a0789ce7f67ace228a -SIZE (gcc-4.8-20140918.tar.bz2) = 82005022 +SHA256 (gcc-4.8-20141002.tar.bz2) = 6ccccf1c94541e6fa604656f1a1d755f5eef8f137f46135afbf4b9c1fa7b67e0 +SIZE (gcc-4.8-20141002.tar.bz2) = 82025319 Modified: head/lang/gcc48/pkg-plist ============================================================================== --- head/lang/gcc48/pkg-plist Thu Oct 9 04:18:54 2014 (r370500) +++ head/lang/gcc48/pkg-plist Thu Oct 9 05:42:58 2014 (r370501) @@ -23,14 +23,9 @@ man/man1/gcov%%SUFFIX%%.1.gz man/man1/gfortran%%SUFFIX%%.1.gz %%JAVA%%share/gcc-%%GCC_VERSION%%/python/libjava/aotcompile.py %%JAVA%%share/gcc-%%GCC_VERSION%%/python/libjava/classfile.py -%%JAVA%%@dirrm share/gcc-%%GCC_VERSION%%/python/libjava share/gcc-%%GCC_VERSION%%/python/libstdcxx/__init__.py share/gcc-%%GCC_VERSION%%/python/libstdcxx/v6/__init__.py share/gcc-%%GCC_VERSION%%/python/libstdcxx/v6/printers.py -@dirrm share/gcc-%%GCC_VERSION%%/python/libstdcxx/v6 -@dirrm share/gcc-%%GCC_VERSION%%/python/libstdcxx -@dirrm share/gcc-%%GCC_VERSION%%/python -@dirrm share/gcc-%%GCC_VERSION%% %%JAVA%%bin/%%GNU_HOST%%-gcj%%SUFFIX%% %%JAVA%%bin/aot-compile%%SUFFIX%% %%JAVA%%bin/gappletviewer%%SUFFIX%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 05:55:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A06664A9; Thu, 9 Oct 2014 05:55:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 814DA8AF; Thu, 9 Oct 2014 05:55:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s995txTs067249; Thu, 9 Oct 2014 05:55:59 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s995tw6X067245; Thu, 9 Oct 2014 05:55:58 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410090555.s995tw6X067245@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 9 Oct 2014 05:55:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370502 - in head: security/linux-c6-libtasn1 security/linux-f10-libtasn1 textproc/mdocml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 05:55:59 -0000 Author: antoine Date: Thu Oct 9 05:55:58 2014 New Revision: 370502 URL: https://svnweb.freebsd.org/changeset/ports/370502 QAT: https://qat.redports.org/buildarchive/r370502/ Log: Fix packaging for linux-c6-libtasn1 and linux-f10-libtasn1 Prevent future issues for mdocml Modified: head/security/linux-c6-libtasn1/Makefile head/security/linux-f10-libtasn1/Makefile head/textproc/mdocml/Makefile head/textproc/mdocml/pkg-plist Modified: head/security/linux-c6-libtasn1/Makefile ============================================================================== --- head/security/linux-c6-libtasn1/Makefile Thu Oct 9 05:42:58 2014 (r370501) +++ head/security/linux-c6-libtasn1/Makefile Thu Oct 9 05:55:58 2014 (r370502) @@ -15,7 +15,7 @@ RPMVERSION= 3.el6_2.1 USE_LDCONFIG= yes PLIST_FILES= usr/lib/libtasn1.so.3 usr/lib/libtasn1.so.3.1.6 -DOCSDIR_REL= usr/share/doc/${PORTNAME}-${PORTVERSION} +DOCSDIR= ${PREFIX}/usr/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= AUTHORS COPYING COPYING.LIB ChangeLog NEWS README THANKS TODO libtasn1.pdf DESCR= ${.CURDIR}/../libtasn1/pkg-descr Modified: head/security/linux-f10-libtasn1/Makefile ============================================================================== --- head/security/linux-f10-libtasn1/Makefile Thu Oct 9 05:42:58 2014 (r370501) +++ head/security/linux-f10-libtasn1/Makefile Thu Oct 9 05:55:58 2014 (r370502) @@ -16,7 +16,7 @@ RPMVERSION= 1.fc10 USE_LDCONFIG= yes PLIST_FILES= usr/lib/libtasn1.so.3 usr/lib/libtasn1.so.3.0.16 -DOCSDIR_REL= usr/share/doc/${PORTNAME}-${PORTVERSION} +DOCSDIR= ${PREFIX}/usr/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= AUTHORS COPYING COPYING.LIB ChangeLog NEWS README THANKS TODO libtasn1.pdf DESCR= ${.CURDIR}/../libtasn1/pkg-descr Modified: head/textproc/mdocml/Makefile ============================================================================== --- head/textproc/mdocml/Makefile Thu Oct 9 05:42:58 2014 (r370501) +++ head/textproc/mdocml/Makefile Thu Oct 9 05:55:58 2014 (r370502) @@ -13,7 +13,7 @@ COMMENT= mdoc macro compiler LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 -EXAMPLESDIR_REL=share/examples/mandoc +EXAMPLESDIR= ${PREFIX}/share/examples/mandoc CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib Modified: head/textproc/mdocml/pkg-plist ============================================================================== --- head/textproc/mdocml/pkg-plist Thu Oct 9 05:42:58 2014 (r370501) +++ head/textproc/mdocml/pkg-plist Thu Oct 9 05:55:58 2014 (r370502) @@ -3,6 +3,11 @@ bin/demandoc bin/mandoc @comment bin/preconv bin/whatis +@comment include/mandoc/man.h +@comment include/mandoc/mandoc.h +@comment include/mandoc/mandoc_aux.h +@comment include/mandoc/mdoc.h +@comment lib/mandoc/libmandoc.a man/man1/apropos.1.gz man/man1/demandoc.1.gz man/man1/mandoc.1.gz From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 06:23:59 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9F33C68; Thu, 9 Oct 2014 06:23:59 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D42EEB3E; Thu, 9 Oct 2014 06:23:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s996Nxpq081390; Thu, 9 Oct 2014 06:23:59 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s996Nwvf081385; Thu, 9 Oct 2014 06:23:58 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410090623.s996Nwvf081385@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 06:23:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370503 - in head/devel: . mips-binutils sparc64-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 06:24:00 -0000 Author: bapt Date: Thu Oct 9 06:23:57 2014 New Revision: 370503 URL: https://svnweb.freebsd.org/changeset/ports/370503 QAT: https://qat.redports.org/buildarchive/r370503/ Log: Add cross binutils for mips and sparc64 Added: head/devel/mips-binutils/ - copied from r370488, head/devel/mips64-binutils/ head/devel/sparc64-binutils/ - copied from r370488, head/devel/mips64-binutils/ Modified: head/devel/Makefile head/devel/mips-binutils/Makefile head/devel/mips-binutils/pkg-plist head/devel/sparc64-binutils/Makefile head/devel/sparc64-binutils/pkg-plist Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 9 05:55:58 2014 (r370502) +++ head/devel/Makefile Thu Oct 9 06:23:57 2014 (r370503) @@ -1281,6 +1281,7 @@ SUBDIR += mingw32-zlib SUBDIR += mingw64-binutils SUBDIR += mips64-binutils + SUBDIR += mips-binutils SUBDIR += mk SUBDIR += mk-configure SUBDIR += mkcmd @@ -4644,6 +4645,7 @@ SUBDIR += smv SUBDIR += soapui SUBDIR += sourcenav + SUBDIR += sparc64-binutils SUBDIR += spatialindex SUBDIR += spdict SUBDIR += spin Modified: head/devel/mips-binutils/Makefile ============================================================================== --- head/devel/mips64-binutils/Makefile Wed Oct 8 21:21:07 2014 (r370488) +++ head/devel/mips-binutils/Makefile Thu Oct 9 06:23:57 2014 (r370503) @@ -2,7 +2,7 @@ PORTREVISION= 1 COMMENT= GNU binutils for mips64 cross-development -PKGNAMEPREFIX= mips64- +PKGNAMEPREFIX= mips- PLIST= ${.CURDIR}/pkg-plist MASTERDIR= ${.CURDIR}/../binutils/ Modified: head/devel/mips-binutils/pkg-plist ============================================================================== --- head/devel/mips64-binutils/pkg-plist Wed Oct 8 21:21:07 2014 (r370488) +++ head/devel/mips-binutils/pkg-plist Thu Oct 9 06:23:57 2014 (r370503) @@ -1,200 +1,200 @@ -bin/mips64-freebsd-addr2line -bin/mips64-freebsd-ar -bin/mips64-freebsd-as -bin/mips64-freebsd-c++filt -bin/mips64-freebsd-elfedit -bin/mips64-freebsd-gprof -bin/mips64-freebsd-ld -bin/mips64-freebsd-ld.bfd -bin/mips64-freebsd-nm -bin/mips64-freebsd-objcopy -bin/mips64-freebsd-objdump -bin/mips64-freebsd-ranlib -bin/mips64-freebsd-readelf -bin/mips64-freebsd-size -bin/mips64-freebsd-strings -bin/mips64-freebsd-strip -man/man1/mips64-freebsd-addr2line.1.gz -man/man1/mips64-freebsd-ar.1.gz -man/man1/mips64-freebsd-as.1.gz -man/man1/mips64-freebsd-c++filt.1.gz -man/man1/mips64-freebsd-dlltool.1.gz -man/man1/mips64-freebsd-elfedit.1.gz -man/man1/mips64-freebsd-gprof.1.gz -man/man1/mips64-freebsd-ld.1.gz -man/man1/mips64-freebsd-nlmconv.1.gz -man/man1/mips64-freebsd-nm.1.gz -man/man1/mips64-freebsd-objcopy.1.gz -man/man1/mips64-freebsd-objdump.1.gz -man/man1/mips64-freebsd-ranlib.1.gz -man/man1/mips64-freebsd-readelf.1.gz -man/man1/mips64-freebsd-size.1.gz -man/man1/mips64-freebsd-strings.1.gz -man/man1/mips64-freebsd-strip.1.gz -man/man1/mips64-freebsd-windmc.1.gz -man/man1/mips64-freebsd-windres.1.gz -mips64-freebsd/bin/ar -mips64-freebsd/bin/as -mips64-freebsd/bin/ld -mips64-freebsd/bin/ld.bfd -mips64-freebsd/bin/nm -mips64-freebsd/bin/objcopy -mips64-freebsd/bin/objdump -mips64-freebsd/bin/ranlib -mips64-freebsd/bin/strip -mips64-freebsd/lib/ldscripts/elf32btsmip.x -mips64-freebsd/lib/ldscripts/elf32btsmip.xbn -mips64-freebsd/lib/ldscripts/elf32btsmip.xc -mips64-freebsd/lib/ldscripts/elf32btsmip.xd -mips64-freebsd/lib/ldscripts/elf32btsmip.xdc -mips64-freebsd/lib/ldscripts/elf32btsmip.xdw -mips64-freebsd/lib/ldscripts/elf32btsmip.xn -mips64-freebsd/lib/ldscripts/elf32btsmip.xr -mips64-freebsd/lib/ldscripts/elf32btsmip.xs -mips64-freebsd/lib/ldscripts/elf32btsmip.xsc -mips64-freebsd/lib/ldscripts/elf32btsmip.xsw -mips64-freebsd/lib/ldscripts/elf32btsmip.xu -mips64-freebsd/lib/ldscripts/elf32btsmip.xw -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xw -mips64-freebsd/lib/ldscripts/elf32btsmipn32.x -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xbn -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xc -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xd -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xdc -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xdw -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xn -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xr -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xs -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xsc -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xsw -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xu -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xw -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.x -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xw -mips64-freebsd/lib/ldscripts/elf32ltsmip.x -mips64-freebsd/lib/ldscripts/elf32ltsmip.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmip.xc -mips64-freebsd/lib/ldscripts/elf32ltsmip.xd -mips64-freebsd/lib/ldscripts/elf32ltsmip.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmip.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmip.xn -mips64-freebsd/lib/ldscripts/elf32ltsmip.xr -mips64-freebsd/lib/ldscripts/elf32ltsmip.xs -mips64-freebsd/lib/ldscripts/elf32ltsmip.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmip.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmip.xu -mips64-freebsd/lib/ldscripts/elf32ltsmip.xw -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.x -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xd -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xr -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xs -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xu -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.x -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xw -mips64-freebsd/lib/ldscripts/elf64btsmip.x -mips64-freebsd/lib/ldscripts/elf64btsmip.xbn -mips64-freebsd/lib/ldscripts/elf64btsmip.xc -mips64-freebsd/lib/ldscripts/elf64btsmip.xd -mips64-freebsd/lib/ldscripts/elf64btsmip.xdc -mips64-freebsd/lib/ldscripts/elf64btsmip.xdw -mips64-freebsd/lib/ldscripts/elf64btsmip.xn -mips64-freebsd/lib/ldscripts/elf64btsmip.xr -mips64-freebsd/lib/ldscripts/elf64btsmip.xs -mips64-freebsd/lib/ldscripts/elf64btsmip.xsc -mips64-freebsd/lib/ldscripts/elf64btsmip.xsw -mips64-freebsd/lib/ldscripts/elf64btsmip.xu -mips64-freebsd/lib/ldscripts/elf64btsmip.xw -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xw -mips64-freebsd/lib/ldscripts/elf64ltsmip.x -mips64-freebsd/lib/ldscripts/elf64ltsmip.xbn -mips64-freebsd/lib/ldscripts/elf64ltsmip.xc -mips64-freebsd/lib/ldscripts/elf64ltsmip.xd -mips64-freebsd/lib/ldscripts/elf64ltsmip.xdc -mips64-freebsd/lib/ldscripts/elf64ltsmip.xdw -mips64-freebsd/lib/ldscripts/elf64ltsmip.xn -mips64-freebsd/lib/ldscripts/elf64ltsmip.xr -mips64-freebsd/lib/ldscripts/elf64ltsmip.xs -mips64-freebsd/lib/ldscripts/elf64ltsmip.xsc -mips64-freebsd/lib/ldscripts/elf64ltsmip.xsw -mips64-freebsd/lib/ldscripts/elf64ltsmip.xu -mips64-freebsd/lib/ldscripts/elf64ltsmip.xw -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xw +bin/mips-freebsd-addr2line +bin/mips-freebsd-ar +bin/mips-freebsd-as +bin/mips-freebsd-c++filt +bin/mips-freebsd-elfedit +bin/mips-freebsd-gprof +bin/mips-freebsd-ld +bin/mips-freebsd-ld.bfd +bin/mips-freebsd-nm +bin/mips-freebsd-objcopy +bin/mips-freebsd-objdump +bin/mips-freebsd-ranlib +bin/mips-freebsd-readelf +bin/mips-freebsd-size +bin/mips-freebsd-strings +bin/mips-freebsd-strip +man/man1/mips-freebsd-addr2line.1.gz +man/man1/mips-freebsd-ar.1.gz +man/man1/mips-freebsd-as.1.gz +man/man1/mips-freebsd-c++filt.1.gz +man/man1/mips-freebsd-dlltool.1.gz +man/man1/mips-freebsd-elfedit.1.gz +man/man1/mips-freebsd-gprof.1.gz +man/man1/mips-freebsd-ld.1.gz +man/man1/mips-freebsd-nlmconv.1.gz +man/man1/mips-freebsd-nm.1.gz +man/man1/mips-freebsd-objcopy.1.gz +man/man1/mips-freebsd-objdump.1.gz +man/man1/mips-freebsd-ranlib.1.gz +man/man1/mips-freebsd-readelf.1.gz +man/man1/mips-freebsd-size.1.gz +man/man1/mips-freebsd-strings.1.gz +man/man1/mips-freebsd-strip.1.gz +man/man1/mips-freebsd-windmc.1.gz +man/man1/mips-freebsd-windres.1.gz +mips-freebsd/bin/ar +mips-freebsd/bin/as +mips-freebsd/bin/ld +mips-freebsd/bin/ld.bfd +mips-freebsd/bin/nm +mips-freebsd/bin/objcopy +mips-freebsd/bin/objdump +mips-freebsd/bin/ranlib +mips-freebsd/bin/strip +mips-freebsd/lib/ldscripts/elf32btsmip.x +mips-freebsd/lib/ldscripts/elf32btsmip.xbn +mips-freebsd/lib/ldscripts/elf32btsmip.xc +mips-freebsd/lib/ldscripts/elf32btsmip.xd +mips-freebsd/lib/ldscripts/elf32btsmip.xdc +mips-freebsd/lib/ldscripts/elf32btsmip.xdw +mips-freebsd/lib/ldscripts/elf32btsmip.xn +mips-freebsd/lib/ldscripts/elf32btsmip.xr +mips-freebsd/lib/ldscripts/elf32btsmip.xs +mips-freebsd/lib/ldscripts/elf32btsmip.xsc +mips-freebsd/lib/ldscripts/elf32btsmip.xsw +mips-freebsd/lib/ldscripts/elf32btsmip.xu +mips-freebsd/lib/ldscripts/elf32btsmip.xw +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.x +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xbn +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xc +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xd +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xdc +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xdw +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xn +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xr +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xs +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xsc +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xsw +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xu +mips-freebsd/lib/ldscripts/elf32btsmip_fbsd.xw +mips-freebsd/lib/ldscripts/elf32btsmipn32.x +mips-freebsd/lib/ldscripts/elf32btsmipn32.xbn +mips-freebsd/lib/ldscripts/elf32btsmipn32.xc +mips-freebsd/lib/ldscripts/elf32btsmipn32.xd +mips-freebsd/lib/ldscripts/elf32btsmipn32.xdc +mips-freebsd/lib/ldscripts/elf32btsmipn32.xdw +mips-freebsd/lib/ldscripts/elf32btsmipn32.xn +mips-freebsd/lib/ldscripts/elf32btsmipn32.xr +mips-freebsd/lib/ldscripts/elf32btsmipn32.xs +mips-freebsd/lib/ldscripts/elf32btsmipn32.xsc +mips-freebsd/lib/ldscripts/elf32btsmipn32.xsw +mips-freebsd/lib/ldscripts/elf32btsmipn32.xu +mips-freebsd/lib/ldscripts/elf32btsmipn32.xw +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.x +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xbn +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xc +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xd +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xdc +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xdw +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xn +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xr +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xs +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xsc +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xsw +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xu +mips-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xw +mips-freebsd/lib/ldscripts/elf32ltsmip.x +mips-freebsd/lib/ldscripts/elf32ltsmip.xbn +mips-freebsd/lib/ldscripts/elf32ltsmip.xc +mips-freebsd/lib/ldscripts/elf32ltsmip.xd +mips-freebsd/lib/ldscripts/elf32ltsmip.xdc +mips-freebsd/lib/ldscripts/elf32ltsmip.xdw +mips-freebsd/lib/ldscripts/elf32ltsmip.xn +mips-freebsd/lib/ldscripts/elf32ltsmip.xr +mips-freebsd/lib/ldscripts/elf32ltsmip.xs +mips-freebsd/lib/ldscripts/elf32ltsmip.xsc +mips-freebsd/lib/ldscripts/elf32ltsmip.xsw +mips-freebsd/lib/ldscripts/elf32ltsmip.xu +mips-freebsd/lib/ldscripts/elf32ltsmip.xw +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.x +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xbn +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xc +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xd +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xdc +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xdw +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xn +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xr +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xs +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xsc +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xsw +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xu +mips-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xw +mips-freebsd/lib/ldscripts/elf32ltsmipn32.x +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xbn +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xc +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xd +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xdc +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xdw +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xn +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xr +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xs +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xsc +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xsw +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xu +mips-freebsd/lib/ldscripts/elf32ltsmipn32.xw +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.x +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xbn +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xc +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xd +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xdc +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xdw +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xn +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xr +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xs +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xsc +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xsw +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xu +mips-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xw +mips-freebsd/lib/ldscripts/elf64btsmip.x +mips-freebsd/lib/ldscripts/elf64btsmip.xbn +mips-freebsd/lib/ldscripts/elf64btsmip.xc +mips-freebsd/lib/ldscripts/elf64btsmip.xd +mips-freebsd/lib/ldscripts/elf64btsmip.xdc +mips-freebsd/lib/ldscripts/elf64btsmip.xdw +mips-freebsd/lib/ldscripts/elf64btsmip.xn +mips-freebsd/lib/ldscripts/elf64btsmip.xr +mips-freebsd/lib/ldscripts/elf64btsmip.xs +mips-freebsd/lib/ldscripts/elf64btsmip.xsc +mips-freebsd/lib/ldscripts/elf64btsmip.xsw +mips-freebsd/lib/ldscripts/elf64btsmip.xu +mips-freebsd/lib/ldscripts/elf64btsmip.xw +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.x +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xbn +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xc +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xd +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xdc +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xdw +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xn +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xr +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xs +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xsc +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xsw +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xu +mips-freebsd/lib/ldscripts/elf64btsmip_fbsd.xw +mips-freebsd/lib/ldscripts/elf64ltsmip.x +mips-freebsd/lib/ldscripts/elf64ltsmip.xbn +mips-freebsd/lib/ldscripts/elf64ltsmip.xc +mips-freebsd/lib/ldscripts/elf64ltsmip.xd +mips-freebsd/lib/ldscripts/elf64ltsmip.xdc +mips-freebsd/lib/ldscripts/elf64ltsmip.xdw +mips-freebsd/lib/ldscripts/elf64ltsmip.xn +mips-freebsd/lib/ldscripts/elf64ltsmip.xr +mips-freebsd/lib/ldscripts/elf64ltsmip.xs +mips-freebsd/lib/ldscripts/elf64ltsmip.xsc +mips-freebsd/lib/ldscripts/elf64ltsmip.xsw +mips-freebsd/lib/ldscripts/elf64ltsmip.xu +mips-freebsd/lib/ldscripts/elf64ltsmip.xw +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.x +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xbn +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xc +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xd +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xdc +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xdw +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xn +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xr +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xs +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xsc +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xsw +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xu +mips-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xw Modified: head/devel/sparc64-binutils/Makefile ============================================================================== --- head/devel/mips64-binutils/Makefile Wed Oct 8 21:21:07 2014 (r370488) +++ head/devel/sparc64-binutils/Makefile Thu Oct 9 06:23:57 2014 (r370503) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTREVISION= 1 -COMMENT= GNU binutils for mips64 cross-development -PKGNAMEPREFIX= mips64- +COMMENT= GNU binutils for sparc64 cross-development +PKGNAMEPREFIX= sparc64- PLIST= ${.CURDIR}/pkg-plist MASTERDIR= ${.CURDIR}/../binutils/ Modified: head/devel/sparc64-binutils/pkg-plist ============================================================================== --- head/devel/mips64-binutils/pkg-plist Wed Oct 8 21:21:07 2014 (r370488) +++ head/devel/sparc64-binutils/pkg-plist Thu Oct 9 06:23:57 2014 (r370503) @@ -1,200 +1,83 @@ -bin/mips64-freebsd-addr2line -bin/mips64-freebsd-ar -bin/mips64-freebsd-as -bin/mips64-freebsd-c++filt -bin/mips64-freebsd-elfedit -bin/mips64-freebsd-gprof -bin/mips64-freebsd-ld -bin/mips64-freebsd-ld.bfd -bin/mips64-freebsd-nm -bin/mips64-freebsd-objcopy -bin/mips64-freebsd-objdump -bin/mips64-freebsd-ranlib -bin/mips64-freebsd-readelf -bin/mips64-freebsd-size -bin/mips64-freebsd-strings -bin/mips64-freebsd-strip -man/man1/mips64-freebsd-addr2line.1.gz -man/man1/mips64-freebsd-ar.1.gz -man/man1/mips64-freebsd-as.1.gz -man/man1/mips64-freebsd-c++filt.1.gz -man/man1/mips64-freebsd-dlltool.1.gz -man/man1/mips64-freebsd-elfedit.1.gz -man/man1/mips64-freebsd-gprof.1.gz -man/man1/mips64-freebsd-ld.1.gz -man/man1/mips64-freebsd-nlmconv.1.gz -man/man1/mips64-freebsd-nm.1.gz -man/man1/mips64-freebsd-objcopy.1.gz -man/man1/mips64-freebsd-objdump.1.gz -man/man1/mips64-freebsd-ranlib.1.gz -man/man1/mips64-freebsd-readelf.1.gz -man/man1/mips64-freebsd-size.1.gz -man/man1/mips64-freebsd-strings.1.gz -man/man1/mips64-freebsd-strip.1.gz -man/man1/mips64-freebsd-windmc.1.gz -man/man1/mips64-freebsd-windres.1.gz -mips64-freebsd/bin/ar -mips64-freebsd/bin/as -mips64-freebsd/bin/ld -mips64-freebsd/bin/ld.bfd -mips64-freebsd/bin/nm -mips64-freebsd/bin/objcopy -mips64-freebsd/bin/objdump -mips64-freebsd/bin/ranlib -mips64-freebsd/bin/strip -mips64-freebsd/lib/ldscripts/elf32btsmip.x -mips64-freebsd/lib/ldscripts/elf32btsmip.xbn -mips64-freebsd/lib/ldscripts/elf32btsmip.xc -mips64-freebsd/lib/ldscripts/elf32btsmip.xd -mips64-freebsd/lib/ldscripts/elf32btsmip.xdc -mips64-freebsd/lib/ldscripts/elf32btsmip.xdw -mips64-freebsd/lib/ldscripts/elf32btsmip.xn -mips64-freebsd/lib/ldscripts/elf32btsmip.xr -mips64-freebsd/lib/ldscripts/elf32btsmip.xs -mips64-freebsd/lib/ldscripts/elf32btsmip.xsc -mips64-freebsd/lib/ldscripts/elf32btsmip.xsw -mips64-freebsd/lib/ldscripts/elf32btsmip.xu -mips64-freebsd/lib/ldscripts/elf32btsmip.xw -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32btsmip_fbsd.xw -mips64-freebsd/lib/ldscripts/elf32btsmipn32.x -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xbn -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xc -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xd -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xdc -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xdw -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xn -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xr -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xs -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xsc -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xsw -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xu -mips64-freebsd/lib/ldscripts/elf32btsmipn32.xw -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.x -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32btsmipn32_fbsd.xw -mips64-freebsd/lib/ldscripts/elf32ltsmip.x -mips64-freebsd/lib/ldscripts/elf32ltsmip.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmip.xc -mips64-freebsd/lib/ldscripts/elf32ltsmip.xd -mips64-freebsd/lib/ldscripts/elf32ltsmip.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmip.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmip.xn -mips64-freebsd/lib/ldscripts/elf32ltsmip.xr -mips64-freebsd/lib/ldscripts/elf32ltsmip.xs -mips64-freebsd/lib/ldscripts/elf32ltsmip.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmip.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmip.xu -mips64-freebsd/lib/ldscripts/elf32ltsmip.xw -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32ltsmip_fbsd.xw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.x -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xd -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xr -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xs -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xu -mips64-freebsd/lib/ldscripts/elf32ltsmipn32.xw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.x -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xd -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xn -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xr -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xs -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xu -mips64-freebsd/lib/ldscripts/elf32ltsmipn32_fbsd.xw -mips64-freebsd/lib/ldscripts/elf64btsmip.x -mips64-freebsd/lib/ldscripts/elf64btsmip.xbn -mips64-freebsd/lib/ldscripts/elf64btsmip.xc -mips64-freebsd/lib/ldscripts/elf64btsmip.xd -mips64-freebsd/lib/ldscripts/elf64btsmip.xdc -mips64-freebsd/lib/ldscripts/elf64btsmip.xdw -mips64-freebsd/lib/ldscripts/elf64btsmip.xn -mips64-freebsd/lib/ldscripts/elf64btsmip.xr -mips64-freebsd/lib/ldscripts/elf64btsmip.xs -mips64-freebsd/lib/ldscripts/elf64btsmip.xsc -mips64-freebsd/lib/ldscripts/elf64btsmip.xsw -mips64-freebsd/lib/ldscripts/elf64btsmip.xu -mips64-freebsd/lib/ldscripts/elf64btsmip.xw -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf64btsmip_fbsd.xw -mips64-freebsd/lib/ldscripts/elf64ltsmip.x -mips64-freebsd/lib/ldscripts/elf64ltsmip.xbn -mips64-freebsd/lib/ldscripts/elf64ltsmip.xc -mips64-freebsd/lib/ldscripts/elf64ltsmip.xd -mips64-freebsd/lib/ldscripts/elf64ltsmip.xdc -mips64-freebsd/lib/ldscripts/elf64ltsmip.xdw -mips64-freebsd/lib/ldscripts/elf64ltsmip.xn -mips64-freebsd/lib/ldscripts/elf64ltsmip.xr -mips64-freebsd/lib/ldscripts/elf64ltsmip.xs -mips64-freebsd/lib/ldscripts/elf64ltsmip.xsc -mips64-freebsd/lib/ldscripts/elf64ltsmip.xsw -mips64-freebsd/lib/ldscripts/elf64ltsmip.xu -mips64-freebsd/lib/ldscripts/elf64ltsmip.xw -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.x -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xbn -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xc -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xd -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xdc -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xdw -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xn -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xr -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xs -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xsc -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xsw -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xu -mips64-freebsd/lib/ldscripts/elf64ltsmip_fbsd.xw +bin/sparc64-freebsd-addr2line +bin/sparc64-freebsd-ar +bin/sparc64-freebsd-as +bin/sparc64-freebsd-c++filt +bin/sparc64-freebsd-elfedit +bin/sparc64-freebsd-gprof +bin/sparc64-freebsd-ld +bin/sparc64-freebsd-ld.bfd +bin/sparc64-freebsd-nm +bin/sparc64-freebsd-objcopy +bin/sparc64-freebsd-objdump +bin/sparc64-freebsd-ranlib +bin/sparc64-freebsd-readelf +bin/sparc64-freebsd-size +bin/sparc64-freebsd-strings +bin/sparc64-freebsd-strip +man/man1/sparc64-freebsd-addr2line.1.gz +man/man1/sparc64-freebsd-ar.1.gz +man/man1/sparc64-freebsd-as.1.gz +man/man1/sparc64-freebsd-c++filt.1.gz +man/man1/sparc64-freebsd-dlltool.1.gz +man/man1/sparc64-freebsd-elfedit.1.gz +man/man1/sparc64-freebsd-gprof.1.gz +man/man1/sparc64-freebsd-ld.1.gz +man/man1/sparc64-freebsd-nlmconv.1.gz +man/man1/sparc64-freebsd-nm.1.gz +man/man1/sparc64-freebsd-objcopy.1.gz +man/man1/sparc64-freebsd-objdump.1.gz +man/man1/sparc64-freebsd-ranlib.1.gz +man/man1/sparc64-freebsd-readelf.1.gz +man/man1/sparc64-freebsd-size.1.gz +man/man1/sparc64-freebsd-strings.1.gz +man/man1/sparc64-freebsd-strip.1.gz +man/man1/sparc64-freebsd-windmc.1.gz +man/man1/sparc64-freebsd-windres.1.gz +sparc64-freebsd/bin/ar +sparc64-freebsd/bin/as +sparc64-freebsd/bin/ld +sparc64-freebsd/bin/ld.bfd +sparc64-freebsd/bin/nm +sparc64-freebsd/bin/objcopy +sparc64-freebsd/bin/objdump +sparc64-freebsd/bin/ranlib +sparc64-freebsd/bin/strip +sparc64-freebsd/lib/ldscripts/elf32_sparc.x +sparc64-freebsd/lib/ldscripts/elf32_sparc.xbn +sparc64-freebsd/lib/ldscripts/elf32_sparc.xc +sparc64-freebsd/lib/ldscripts/elf32_sparc.xd +sparc64-freebsd/lib/ldscripts/elf32_sparc.xdc +sparc64-freebsd/lib/ldscripts/elf32_sparc.xdw +sparc64-freebsd/lib/ldscripts/elf32_sparc.xn +sparc64-freebsd/lib/ldscripts/elf32_sparc.xr +sparc64-freebsd/lib/ldscripts/elf32_sparc.xs +sparc64-freebsd/lib/ldscripts/elf32_sparc.xsc +sparc64-freebsd/lib/ldscripts/elf32_sparc.xsw +sparc64-freebsd/lib/ldscripts/elf32_sparc.xu +sparc64-freebsd/lib/ldscripts/elf32_sparc.xw +sparc64-freebsd/lib/ldscripts/elf64_sparc.x +sparc64-freebsd/lib/ldscripts/elf64_sparc.xbn +sparc64-freebsd/lib/ldscripts/elf64_sparc.xc +sparc64-freebsd/lib/ldscripts/elf64_sparc.xd +sparc64-freebsd/lib/ldscripts/elf64_sparc.xdc +sparc64-freebsd/lib/ldscripts/elf64_sparc.xdw +sparc64-freebsd/lib/ldscripts/elf64_sparc.xn +sparc64-freebsd/lib/ldscripts/elf64_sparc.xr +sparc64-freebsd/lib/ldscripts/elf64_sparc.xs +sparc64-freebsd/lib/ldscripts/elf64_sparc.xsc +sparc64-freebsd/lib/ldscripts/elf64_sparc.xsw +sparc64-freebsd/lib/ldscripts/elf64_sparc.xu +sparc64-freebsd/lib/ldscripts/elf64_sparc.xw +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.x +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xbn +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xc +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xd +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xdc +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xdw +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xn +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xr +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xs +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xsc +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xsw +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xu +sparc64-freebsd/lib/ldscripts/elf64_sparc_fbsd.xw From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 06:28:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 48E14F21; Thu, 9 Oct 2014 06:28:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34956B79; Thu, 9 Oct 2014 06:28:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s996SG9w082120; Thu, 9 Oct 2014 06:28:16 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s996SFCb082114; Thu, 9 Oct 2014 06:28:15 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410090628.s996SFCb082114@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 06:28:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370504 - in head/shells/zsh: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 06:28:16 -0000 Author: bapt Date: Thu Oct 9 06:28:14 2014 New Revision: 370504 URL: https://svnweb.freebsd.org/changeset/ports/370504 QAT: https://qat.redports.org/buildarchive/r370504/ Log: Update to 5.0.7 Note from upstream release note: Note in particular there is a security fix to disallow evaluation of the initial values of integer variables imported from the environment (they are instead treated as literal numbers). That could allow local privilege escalation, under some specific and atypical conditions where zsh is being invoked in privilege elevation contexts when the environment has not been properly sanitized, such as when zsh is invoked by sudo on systems where "env_reset" has been disabled. Modified: head/shells/zsh/Makefile head/shells/zsh/distinfo head/shells/zsh/files/patch-Completion-Unix-Command-_sysctl head/shells/zsh/pkg-plist Modified: head/shells/zsh/Makefile ============================================================================== --- head/shells/zsh/Makefile Thu Oct 9 06:23:57 2014 (r370503) +++ head/shells/zsh/Makefile Thu Oct 9 06:28:14 2014 (r370504) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= zsh -PORTVERSION= 5.0.6 -PORTREVISION= 2 +PORTVERSION= 5.0.7 CATEGORIES= shells MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ SF/${PORTNAME}/${PORTNAME}-doc/${PORTVERSION}:doc Modified: head/shells/zsh/distinfo ============================================================================== --- head/shells/zsh/distinfo Thu Oct 9 06:23:57 2014 (r370503) +++ head/shells/zsh/distinfo Thu Oct 9 06:28:14 2014 (r370504) @@ -1,4 +1,4 @@ -SHA256 (zsh-5.0.6.tar.bz2) = 84ca509b141533a3b695e314fbce1200b86ff337ab7dd9e3414da05d86378845 -SIZE (zsh-5.0.6.tar.bz2) = 3174858 -SHA256 (zsh-5.0.6-doc.tar.bz2) = b273a568682682cc1f00885aba118c7400cacfdbc0ecdf32fd5f9b820b8acfd6 -SIZE (zsh-5.0.6-doc.tar.bz2) = 2999237 +SHA256 (zsh-5.0.7.tar.bz2) = 544e27de81740286b916d1d77c9f48ad7c26ad7943ed96d278abee67cf6704b3 +SIZE (zsh-5.0.7.tar.bz2) = 3181030 +SHA256 (zsh-5.0.7-doc.tar.bz2) = 43e8665ba9d9eca8370c64e2d4846e84f9111c628e5792f2aa639a7fb209fcf1 +SIZE (zsh-5.0.7-doc.tar.bz2) = 3005587 Modified: head/shells/zsh/files/patch-Completion-Unix-Command-_sysctl ============================================================================== --- head/shells/zsh/files/patch-Completion-Unix-Command-_sysctl Thu Oct 9 06:23:57 2014 (r370503) +++ head/shells/zsh/files/patch-Completion-Unix-Command-_sysctl Thu Oct 9 06:28:14 2014 (r370504) @@ -1,11 +1,11 @@ ---- Completion/Unix/Command/_sysctl.orig 2005-12-05 15:22:54.000000000 +0100 -+++ Completion/Unix/Command/_sysctl 2012-05-11 18:24:24.679714541 +0200 +--- Completion/Unix/Command/_sysctl.orig 2014-10-02 21:28:23.000000000 +0200 ++++ Completion/Unix/Command/_sysctl 2014-10-09 07:57:47.570857223 +0200 @@ -1,7 +1,7 @@ #compdef sysctl case $OSTYPE in -- *freebsd[5-9].*|freebsd4.[4-9]*) -+ *freebsd[5-9].*|freebsd4.[4-9]*|*freebsd[0-9][0-9]*) +- *freebsd<5->.*|freebsd4.[4-9]*) ++ *freebsd<5->.*|freebsd4.[4-9]*|*freebsd[0-9][0-9].*) local -a sysctlvars - sysctlvars=( $(sysctl -aN) ) + sysctlvars=( $(_call_program sysctl-variables sysctl -aN) ) _arguments -s -A "-*" \ Modified: head/shells/zsh/pkg-plist ============================================================================== --- head/shells/zsh/pkg-plist Thu Oct 9 06:23:57 2014 (r370503) +++ head/shells/zsh/pkg-plist Thu Oct 9 06:28:14 2014 (r370504) @@ -312,6 +312,7 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_arping %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_at %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_attr +%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_augeas %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_awk %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_baz %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Unix/_bind_addresses @@ -755,7 +756,6 @@ bin/zsh-%%ZSH_VER%% %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_typeset %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_ulimit %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_unhash -%%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_unsetopt %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_user_math_func %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_value %%DATADIR%%/%%ZSH_VER%%/functions/Completion/Zsh/_vared From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 06:42:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF7E11E2; Thu, 9 Oct 2014 06:42:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB5E4CFB; Thu, 9 Oct 2014 06:42:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s996g2nZ090673; Thu, 9 Oct 2014 06:42:02 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s996g2i5090670; Thu, 9 Oct 2014 06:42:02 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201410090642.s996g2i5090670@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Thu, 9 Oct 2014 06:42:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370505 - head/devel/tbb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 06:42:02 -0000 Author: martymac Date: Thu Oct 9 06:42:01 2014 New Revision: 370505 URL: https://svnweb.freebsd.org/changeset/ports/370505 QAT: https://qat.redports.org/buildarchive/r370505/ Log: - Add a DOCS option to install documentation [1] - Remove deprecated @dirrm PR: 194216 [1] Submitted by: gahr [1] Modified: head/devel/tbb/Makefile head/devel/tbb/pkg-plist Modified: head/devel/tbb/Makefile ============================================================================== --- head/devel/tbb/Makefile Thu Oct 9 06:28:14 2014 (r370504) +++ head/devel/tbb/Makefile Thu Oct 9 06:42:01 2014 (r370505) @@ -3,6 +3,7 @@ PORTNAME= tbb PORTVERSION= 4.3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://threadingbuildingblocks.org/sites/default/files/software_releases/source/ \ LOCAL/martymac @@ -13,6 +14,9 @@ COMMENT= Library that provides thread bu LICENSE= GPLv2 +OPTIONS_DEFINE= DOCS +PORTDOCS= * + ONLY_FOR_ARCHS= amd64 i386 ia64 ONLY_FOR_ARCHS_REASON= has not been ported to this platform @@ -50,5 +54,7 @@ do-install: ${STAGEDIR}${PREFIX}/lib/libtbbmalloc.so; \ ${MKDIR} ${STAGEDIR}${PREFIX}/include/tbb/; \ cd include/tbb/ && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/tbb/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}/doc/html && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include Modified: head/devel/tbb/pkg-plist ============================================================================== --- head/devel/tbb/pkg-plist Thu Oct 9 06:28:14 2014 (r370504) +++ head/devel/tbb/pkg-plist Thu Oct 9 06:42:01 2014 (r370505) @@ -99,7 +99,3 @@ lib/libtbb.so lib/libtbb.so.4 lib/libtbbmalloc.so lib/libtbbmalloc.so.4 -@dirrm include/tbb/internal -@dirrm include/tbb/machine -@dirrm include/tbb/compat -@dirrm include/tbb From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 06:54:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 699C33CC; Thu, 9 Oct 2014 06:54:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53B01DDB; Thu, 9 Oct 2014 06:54:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s996sk3l095829; Thu, 9 Oct 2014 06:54:46 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s996si3f095816; Thu, 9 Oct 2014 06:54:44 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410090654.s996si3f095816@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 06:54:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370506 - in head/devel: . powerpc64-gcc sparc64-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 06:54:46 -0000 Author: bapt Date: Thu Oct 9 06:54:43 2014 New Revision: 370506 URL: https://svnweb.freebsd.org/changeset/ports/370506 QAT: https://qat.redports.org/buildarchive/r370506/ Log: Add a cross version of gcc minimalistic and suitable enough to cross build world Current targets: powerpc64 sparc64 Note that gcc 4.9.1 never heard of mips on freebsd neither of arm on freebsd Note that this does not yet includes the freebsd extensions meaning it cannot cross build the kernel yet Added: head/devel/powerpc64-gcc/ head/devel/powerpc64-gcc/Makefile (contents, props changed) head/devel/powerpc64-gcc/distinfo (contents, props changed) head/devel/powerpc64-gcc/pkg-descr (contents, props changed) head/devel/powerpc64-gcc/pkg-plist (contents, props changed) head/devel/sparc64-gcc/ head/devel/sparc64-gcc/Makefile (contents, props changed) head/devel/sparc64-gcc/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 9 06:42:01 2014 (r370505) +++ head/devel/Makefile Thu Oct 9 06:54:43 2014 (r370506) @@ -3487,6 +3487,7 @@ SUBDIR += popt SUBDIR += poslib SUBDIR += powerpc64-binutils + SUBDIR += powerpc64-gcc SUBDIR += poxml SUBDIR += ppl SUBDIR += premake @@ -4646,6 +4647,7 @@ SUBDIR += soapui SUBDIR += sourcenav SUBDIR += sparc64-binutils + SUBDIR += sparc64-gcc SUBDIR += spatialindex SUBDIR += spdict SUBDIR += spin Added: head/devel/powerpc64-gcc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-gcc/Makefile Thu Oct 9 06:54:43 2014 (r370506) @@ -0,0 +1,52 @@ +# $FreeBSD$ + +PORTNAME= gcc +PORTVERSION= 4.9.1 +CATEGORIES= devel +MASTER_SITES= GCC \ + GNU/gmp:gmp \ + http://www.mpfr.org/mpfr-current/:mpfr \ + http://www.multiprecision.org/mpc/download/:mpc +MASTER_SITE_SUBDIR= releases/gcc-${DISTVERSION} +PKGNAMEPREFIX?= powerpc64- + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Cross GNU Compiler Collection for ${PKGNAMEPREFIX:C/-//g} + +LICENSE= GPLv3 GPLv3RLE +LICENSE_COMB= multi + +USES= gmake iconv libtool tar:bzip2 + +DISTFILES+= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} + +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libmpfr.so:${PORTSDIR}/math/mpfr \ + libmpc.so:${PORTSDIR}/math/mpc +BUILD_DEPENDS= ${PKGNAMEPREFIX}${OPSYS:tl}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils +RUN_DEPENDS= ${PKGNAMEPREFIX}${OPSYS:tl}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils + +WRKSRC= ${WRKDIR}/build-gcc + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --target=${PKGNAMEPREFIX}portbld-${OPSYS:tl}${OSREL} --disable-nls --enable-languages=c,c++ \ + --without-headers --disable-shared \ + --with-gmp=${LOCALBASE} \ + --with-pkgversion="FreeBSD Ports Collection for ${PKGNAMEPREFIX:C/-//g}" \ + --with-system-zlib \ + --with-as=${LOCALBASE}/bin/${PKGNAMEPREFIX}${OPSYS:tl}-as \ + --with-ld=${LOCALBASE}/bin/${PKGNAMEPREFIX}${OPSYS:tl}-ld + +CONFIGURE_SCRIPT= ../${PORTNAME}-${PORTVERSION}/configure + +ALL_TARGET= all-gcc +INSTALL_TARGET= install-gcc + +post-extract: + @${MKDIR} ${WRKSRC} + +post-stage: + @${RM} ${STAGEDIR}${PREFIX}/info/* + @${RM} ${STAGEDIR}${PREFIX}/man/man7/* + +.include Added: head/devel/powerpc64-gcc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-gcc/distinfo Thu Oct 9 06:54:43 2014 (r370506) @@ -0,0 +1,8 @@ +SHA256 (gcc-4.9.1.tar.bz2) = d334781a124ada6f38e63b545e2a3b8c2183049515a1abab6d513f109f1d717e +SIZE (gcc-4.9.1.tar.bz2) = 89854120 +SHA256 (gmp-6.0.0a.tar.xz) = 9156d32edac6955bc53b0218f5f3763facb890b73a835d5e1b901dcf8eb8b764 +SIZE (gmp-6.0.0a.tar.xz) = 1904112 +SHA256 (mpfr-3.1.2.tar.xz) = 399d0f47ef6608cc01d29ed1b99c7faff36d9994c45f36f41ba250147100453b +SIZE (mpfr-3.1.2.tar.xz) = 1074388 +SHA256 (mpc-1.0.2.tar.gz) = b561f54d8a479cee3bc891ee52735f18ff86712ba30f036f8b8537bae380c488 +SIZE (mpc-1.0.2.tar.gz) = 633173 Added: head/devel/powerpc64-gcc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-gcc/pkg-descr Thu Oct 9 06:54:43 2014 (r370506) @@ -0,0 +1,3 @@ +GCC, the GNU Compiler Collection supporting C and C++ for targetting crossbuilding. + +WWW: http://gcc.gnu.org/ Added: head/devel/powerpc64-gcc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-gcc/pkg-plist Thu Oct 9 06:54:43 2014 (r370506) @@ -0,0 +1,262 @@ +bin/powerpc64-portbld-freebsd10.0-c++ +bin/powerpc64-portbld-freebsd10.0-cpp +bin/powerpc64-portbld-freebsd10.0-g++ +bin/powerpc64-portbld-freebsd10.0-gcc +bin/powerpc64-portbld-freebsd10.0-gcc-4.9.1 +bin/powerpc64-portbld-freebsd10.0-gcc-ar +bin/powerpc64-portbld-freebsd10.0-gcc-nm +bin/powerpc64-portbld-freebsd10.0-gcc-ranlib +bin/powerpc64-portbld-freebsd10.0-gcov +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include-fixed/README +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include-fixed/limits.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include-fixed/syslimits.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/altivec.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/float.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/htmintrin.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/htmxlintrin.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/iso646.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/paired.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/ppc-asm.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/ppu_intrinsics.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/si2vmx.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/spe.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/spu2vmx.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdalign.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdarg.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdatomic.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdbool.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stddef.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdfix.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdint-gcc.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdint.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdnoreturn.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/tgmath.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/varargs.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/vec_types.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc_list +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/gsyslimits.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/include/README +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/include/limits.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/macro_list +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders.conf +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/gtype.state +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/alias.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/all-tree.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/alloc-pool.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ansidecl.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/attribs.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/auto-host.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/b-header-vars +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/basic-block.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/bitmap.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/builtins.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/bversion.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-objc.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pragma.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pretty-print.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-tree.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/calls.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfg-flags.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgexpand.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfghooks.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgloop.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cgraph.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cif-code.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cilk-builtins.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cilkplus.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/dbxelf.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/elfos.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-spec.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-stdint.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/initfini-array.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/default64.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/freebsd64.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/option-defaults.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000-builtin.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000-opts.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000-protos.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/sysv4.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/configargs.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/context.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/coretypes.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cxx-pretty-print.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/name-lookup.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/type-utils.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cppdefault.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cpplib.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/debug.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/defaults.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/df.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-color.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-core.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/double-int.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/dumpfile.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/emit-rtl.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/except.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/filenames.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/fixed-value.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/flag-types.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/flags.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/fold-const.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/function.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-plugin.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-symtab.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/genrtl.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ggc.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-builder.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-expr.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-fold.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-iterator.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-low.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-pretty-print.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-ssa.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-walk.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify-me.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gsstruct.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gtm-builtins.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gtype-desc.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hard-reg-set.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hash-table.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hashtab.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/highlev-plugin-common.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hwint.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/incpath.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/input.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-codes.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-constants.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-flags.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-modes.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-notes.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/intl.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-prop.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref-inline.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-reference.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-utils.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/is-a.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/java/java-tree.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/langhooks.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/libiberty.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/line-map.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/machmode.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/md5.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/mode-classes.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/objc/objc-tree.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/obstack.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/omp-builtins.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/options.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/opts.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/output.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/params.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/params.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/pass_manager.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-api.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-version.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/pointer-set.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/prefix.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/pretty-print.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/print-rtl.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/print-tree.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/real.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/realmpfr.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/reg-notes.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/regset.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/resource.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/safe-ctype.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/sanitizer.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/sbitmap.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/splay-tree.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ssa-iterators.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/statistics.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/stmt.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/stor-layout.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/stringpool.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/symtab.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/sync-builtins.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/system.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/target-hooks-macros.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/target.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/target.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tm-preds.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tm.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tm_p.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/toplev.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfg.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfgcleanup.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-check.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-core.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dfa.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dump.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-eh.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-hasher.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-inline.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-into-ssa.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-iterator.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-nested.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-object-size.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-outof-ssa.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-parloops.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pass.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-phinodes.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pretty-print.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-address.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-alias.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-coalesce.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-dom.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-ivopts.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-manip.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-niter.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-operands.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-sccvn.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-ter.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadedge.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadupdate.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssanames.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/treestruct.def +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/varasm.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/vec.h +lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/version.h +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/cc1 +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/cc1plus +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/collect2 +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc.sh +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/fixincl +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/mkinstalldirs +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0 +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0.0.0 +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/lto-wrapper +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/lto1 +libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/gengtype +man/man1/powerpc64-portbld-freebsd10.0-cpp.1.gz +man/man1/powerpc64-portbld-freebsd10.0-g++.1.gz +man/man1/powerpc64-portbld-freebsd10.0-gcc.1.gz +man/man1/powerpc64-portbld-freebsd10.0-gcov.1.gz Added: head/devel/sparc64-gcc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sparc64-gcc/Makefile Thu Oct 9 06:54:43 2014 (r370506) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +PKGNAMEPREFIX= sparc64- +PLIST= ${.CURDIR}/pkg-plist + +MASTERDIR= ${.CURDIR}/../powerpc64-gcc/ + +.include "${MASTERDIR}/Makefile" Added: head/devel/sparc64-gcc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sparc64-gcc/pkg-plist Thu Oct 9 06:54:43 2014 (r370506) @@ -0,0 +1,251 @@ +bin/sparc64-portbld-freebsd10.0-c++ +bin/sparc64-portbld-freebsd10.0-cpp +bin/sparc64-portbld-freebsd10.0-g++ +bin/sparc64-portbld-freebsd10.0-gcc +bin/sparc64-portbld-freebsd10.0-gcc-4.9.1 +bin/sparc64-portbld-freebsd10.0-gcc-ar +bin/sparc64-portbld-freebsd10.0-gcc-nm +bin/sparc64-portbld-freebsd10.0-gcc-ranlib +bin/sparc64-portbld-freebsd10.0-gcov +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include-fixed/README +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include-fixed/limits.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include-fixed/syslimits.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/float.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/iso646.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdalign.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdarg.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdatomic.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdbool.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stddef.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdfix.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdint-gcc.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdint.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdnoreturn.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/tgmath.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/varargs.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/visintrin.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc_list +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/gsyslimits.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/include/README +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/include/limits.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/macro_list +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders.conf +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/gtype.state +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/alias.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/all-tree.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/alloc-pool.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ansidecl.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/attribs.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/auto-host.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/b-header-vars +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/basic-block.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/bitmap.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/builtins.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/bversion.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-objc.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pragma.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pretty-print.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-tree.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/calls.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfg-flags.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgexpand.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfghooks.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgloop.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cgraph.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cif-code.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cilk-builtins.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cilkplus.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/dbxelf.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/elfos.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-spec.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-stdint.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/initfini-array.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/freebsd.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sparc-opts.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sparc-protos.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sparc.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sysv4.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/vxworks-dummy.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/configargs.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/context.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/coretypes.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cxx-pretty-print.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/name-lookup.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/type-utils.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cppdefault.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cpplib.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/debug.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/defaults.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/df.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-color.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-core.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/double-int.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/dumpfile.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/emit-rtl.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/except.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/filenames.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/fixed-value.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/flag-types.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/flags.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/fold-const.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/function.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-plugin.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-symtab.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/genrtl.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ggc.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-builder.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-expr.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-fold.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-iterator.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-low.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-pretty-print.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-ssa.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-walk.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify-me.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gsstruct.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gtm-builtins.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gtype-desc.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hard-reg-set.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hash-table.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hashtab.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/highlev-plugin-common.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hwint.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/incpath.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/input.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-codes.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-constants.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-flags.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-modes.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-notes.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/intl.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-prop.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref-inline.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-reference.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-utils.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/is-a.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/java/java-tree.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/langhooks.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/libiberty.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/line-map.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/machmode.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/md5.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/mode-classes.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/objc/objc-tree.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/obstack.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/omp-builtins.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/options.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/opts.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/output.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/params.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/params.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/pass_manager.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-api.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-version.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/pointer-set.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/prefix.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/pretty-print.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/print-rtl.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/print-tree.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/real.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/realmpfr.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/reg-notes.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/regset.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/resource.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/safe-ctype.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/sanitizer.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/sbitmap.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/splay-tree.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ssa-iterators.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/statistics.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/stmt.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/stor-layout.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/stringpool.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/symtab.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/sync-builtins.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/system.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/target-hooks-macros.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/target.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/target.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tm-preds.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tm.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tm_p.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/toplev.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfg.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfgcleanup.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-check.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-core.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dfa.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dump.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-eh.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-hasher.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-inline.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-into-ssa.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-iterator.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-nested.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-object-size.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-outof-ssa.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-parloops.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pass.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-phinodes.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pretty-print.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-address.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-alias.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-coalesce.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-dom.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-ivopts.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-manip.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-niter.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-operands.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-sccvn.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-ter.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadedge.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadupdate.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssanames.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/treestruct.def +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/varasm.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/vec.h +lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/version.h +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/cc1 +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/cc1plus +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/collect2 +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc.sh +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/fixincl +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/mkinstalldirs +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0 +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0.0.0 +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/lto-wrapper +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/lto1 +libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/gengtype +man/man1/sparc64-portbld-freebsd10.0-cpp.1.gz +man/man1/sparc64-portbld-freebsd10.0-g++.1.gz +man/man1/sparc64-portbld-freebsd10.0-gcc.1.gz +man/man1/sparc64-portbld-freebsd10.0-gcov.1.gz From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 07:16:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06EAE7CD; Thu, 9 Oct 2014 07:16:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E6205F9C; Thu, 9 Oct 2014 07:16:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s997GHTi005750; Thu, 9 Oct 2014 07:16:17 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s997GH4V005745; Thu, 9 Oct 2014 07:16:17 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201410090716.s997GH4V005745@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Thu, 9 Oct 2014 07:16:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370507 - in head/www/dokuwiki: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 07:16:18 -0000 Author: delphij Date: Thu Oct 9 07:16:16 2014 New Revision: 370507 URL: https://svnweb.freebsd.org/changeset/ports/370507 QAT: https://qat.redports.org/buildarchive/r370507/ Log: Update to 2014-09-29a. Added: head/www/dokuwiki/files/patch-2014-09-29-to-2014-09-29a (contents, props changed) Modified: head/www/dokuwiki/Makefile head/www/dokuwiki/pkg-plist Modified: head/www/dokuwiki/Makefile ============================================================================== --- head/www/dokuwiki/Makefile Thu Oct 9 06:54:43 2014 (r370506) +++ head/www/dokuwiki/Makefile Thu Oct 9 07:16:16 2014 (r370507) @@ -3,6 +3,7 @@ PORTNAME= dokuwiki PORTVERSION= ${DIST_VER:S/${PORTNAME}//:S/-//g} +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://download.dokuwiki.org/src/dokuwiki/ DISTNAME= ${DIST_VER} Added: head/www/dokuwiki/files/patch-2014-09-29-to-2014-09-29a ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/dokuwiki/files/patch-2014-09-29-to-2014-09-29a Thu Oct 9 07:16:16 2014 (r370507) @@ -0,0 +1,101 @@ +--- VERSION.orig 2014-09-29 18:20:01 UTC ++++ VERSION +@@ -1 +1 @@ +-2014-09-29 "Hrun" ++2014-09-29a "Hrun" +--- doku.php.orig 2014-09-29 18:20:01 UTC ++++ doku.php +@@ -9,7 +9,7 @@ + */ + + // update message version +-$updateVersion = 46; ++$updateVersion = 46.1; + + // xdebug_start_profiling(); + +--- inc/auth.php.orig 2014-09-29 18:20:01 UTC ++++ inc/auth.php +@@ -335,7 +335,6 @@ + $ip = clientIP(true); + $uid = ''; + $uid .= $INPUT->server->str('HTTP_USER_AGENT'); +- $uid .= $INPUT->server->str('HTTP_ACCEPT_ENCODING'); + $uid .= $INPUT->server->str('HTTP_ACCEPT_CHARSET'); + $uid .= substr($ip, 0, strpos($ip, '.')); + $uid = strtolower($uid); +--- inc/lang/no/lang.php.orig 2014-09-29 18:20:01 UTC ++++ inc/lang/no/lang.php +@@ -116,7 +116,7 @@ + $lang['txt_upload'] = 'Velg fil som skal lastes opp:'; + $lang['txt_filename'] = 'Skriv inn wikinavn (alternativt):'; + $lang['txt_overwrt'] = 'Overskriv eksisterende fil'; +-$lang['maxuploadsize'] = 'Opplast maks % per fil.'; ++$lang['maxuploadsize'] = 'Opplast maks %s per fil.'; + $lang['lockedby'] = 'Låst av:'; + $lang['lockexpire'] = 'Låsingen utløper:'; + $lang['js']['willexpire'] = 'Din redigeringslås for dette dokumentet kommer snart til å utløpe.\nFor å unngå versjonskonflikter bør du forhåndsvise dokumentet ditt for å forlenge redigeringslåsen.'; +--- lib/plugins/authplain/auth.php.orig 2014-09-29 18:20:01 UTC ++++ lib/plugins/authplain/auth.php +@@ -17,6 +17,9 @@ + /** @var array filter pattern */ + protected $_pattern = array(); + ++ /** @var bool safe version of preg_split */ ++ protected $_pregsplit_safe = false; ++ + /** + * Constructor + * +@@ -44,6 +47,8 @@ + $this->cando['getUsers'] = true; + $this->cando['getUserCount'] = true; + } ++ ++ $this->_pregsplit_safe = version_compare(PCRE_VERSION,'6.7','>='); + } + + /** +@@ -329,7 +334,7 @@ + if(empty($line)) continue; + + /* NB: preg_split can be deprecated/replaced with str_getcsv once dokuwiki is min php 5.3 */ +- $row = preg_split('/(?_splitUserData($line); + $row = str_replace('\\:', ':', $row); + $row = str_replace('\\\\', '\\', $row); + +@@ -342,6 +347,33 @@ + } + } + ++ protected function _splitUserData($line){ ++ // due to a bug in PCRE 6.6, preg_split will fail with the regex we use here ++ // refer github issues 877 & 885 ++ if ($this->_pregsplit_safe){ ++ return preg_split('/(?=$len) break; ++ } else if ($line[$i]==':'){ ++ $row[] = $piece; ++ $piece = ''; ++ continue; ++ } ++ $piece .= $line[$i]; ++ } ++ $row[] = $piece; ++ ++ return $row; ++ } ++ + /** + * return true if $user + $info match $filter criteria, false otherwise + * Modified: head/www/dokuwiki/pkg-plist ============================================================================== --- head/www/dokuwiki/pkg-plist Thu Oct 9 06:54:43 2014 (r370506) +++ head/www/dokuwiki/pkg-plist Thu Oct 9 07:16:16 2014 (r370507) @@ -3753,542 +3753,542 @@ %%WWWDIR%%/lib/tpl/dokuwiki/tpl_footer.php %%WWWDIR%%/lib/tpl/dokuwiki/tpl_header.php %%WWWDIR%%/lib/tpl/index.php -@dirrm %%WWWDIR%%/lib/tpl/dokuwiki/images/pagetools -@dirrm %%WWWDIR%%/lib/tpl/dokuwiki/images -@dirrm %%WWWDIR%%/lib/tpl/dokuwiki/css -@dirrm %%WWWDIR%%/lib/tpl/dokuwiki -@dirrm %%WWWDIR%%/lib/tpl -@dirrm %%WWWDIR%%/lib/styles -@dirrm %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images -@dirrm %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme -@dirrm %%WWWDIR%%/lib/scripts/jquery -@dirrm %%WWWDIR%%/lib/scripts -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/uk -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/th -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/sr -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/sq -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ro -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/no -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ne -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/mr -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/mk -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/lt -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/lb -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/la -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/kk -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/it -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/is -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/id -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ia -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/he -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/gl -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/eu -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/et -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/es -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/en -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/el -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/de -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/da -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ca-valencia -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ca -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang/af -@dirrm %%WWWDIR%%/lib/plugins/usermanager/lang -@dirrm %%WWWDIR%%/lib/plugins/usermanager/images -@dirrm %%WWWDIR%%/lib/plugins/usermanager -@dirrm %%WWWDIR%%/lib/plugins/safefnrecode -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/uk -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/th -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/sr -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/sq -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ro -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/no -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ne -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/mr -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/lb -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/la -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/it -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/is -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ia -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/he -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/gl -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/eu -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/et -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/es -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/en -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/el -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/de -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/da -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ca-valencia -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ca -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/revert/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/revert/lang -@dirrm %%WWWDIR%%/lib/plugins/revert -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/uk -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/th -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/sr -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/sq -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ro -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/no -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ne -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/mr -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/lt -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/la -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/it -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/is -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/id-ni -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ia -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/hi -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/he -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/gl -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/eu -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/es -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/en -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/el -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/de -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/da -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ca-valencia -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ca -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang/af -@dirrm %%WWWDIR%%/lib/plugins/popularity/lang -@dirrm %%WWWDIR%%/lib/plugins/popularity -@dirrm %%WWWDIR%%/lib/plugins/info -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/it -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/es -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/en -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/de -@dirrm %%WWWDIR%%/lib/plugins/extension/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/extension/lang -@dirrm %%WWWDIR%%/lib/plugins/extension/images -@dirrm %%WWWDIR%%/lib/plugins/extension/helper -@dirrm %%WWWDIR%%/lib/plugins/extension -@dirrm %%WWWDIR%%/lib/plugins/config/settings -@dirrm %%WWWDIR%%/lib/plugins/config/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/config/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/config/lang/uk -@dirrm %%WWWDIR%%/lib/plugins/config/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/config/lang/th -@dirrm %%WWWDIR%%/lib/plugins/config/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/config/lang/sr -@dirrm %%WWWDIR%%/lib/plugins/config/lang/sq -@dirrm %%WWWDIR%%/lib/plugins/config/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/config/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ro -@dirrm %%WWWDIR%%/lib/plugins/config/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/config/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/config/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/config/lang/no -@dirrm %%WWWDIR%%/lib/plugins/config/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ne -@dirrm %%WWWDIR%%/lib/plugins/config/lang/mr -@dirrm %%WWWDIR%%/lib/plugins/config/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/config/lang/lt -@dirrm %%WWWDIR%%/lib/plugins/config/lang/lb -@dirrm %%WWWDIR%%/lib/plugins/config/lang/la -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/config/lang/it -@dirrm %%WWWDIR%%/lib/plugins/config/lang/is -@dirrm %%WWWDIR%%/lib/plugins/config/lang/id-ni -@dirrm %%WWWDIR%%/lib/plugins/config/lang/id -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ia -@dirrm %%WWWDIR%%/lib/plugins/config/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/config/lang/hi -@dirrm %%WWWDIR%%/lib/plugins/config/lang/he -@dirrm %%WWWDIR%%/lib/plugins/config/lang/gl -@dirrm %%WWWDIR%%/lib/plugins/config/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/config/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/config/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/config/lang/eu -@dirrm %%WWWDIR%%/lib/plugins/config/lang/et -@dirrm %%WWWDIR%%/lib/plugins/config/lang/es -@dirrm %%WWWDIR%%/lib/plugins/config/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/config/lang/en -@dirrm %%WWWDIR%%/lib/plugins/config/lang/el -@dirrm %%WWWDIR%%/lib/plugins/config/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/config/lang/de -@dirrm %%WWWDIR%%/lib/plugins/config/lang/da -@dirrm %%WWWDIR%%/lib/plugins/config/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ca-valencia -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ca -@dirrm %%WWWDIR%%/lib/plugins/config/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/config/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/config/lang/af -@dirrm %%WWWDIR%%/lib/plugins/config/lang -@dirrm %%WWWDIR%%/lib/plugins/config/images -@dirrm %%WWWDIR%%/lib/plugins/config -@dirrm %%WWWDIR%%/lib/plugins/authplain -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/it -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/es -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/en -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/de -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/da -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/lang -@dirrm %%WWWDIR%%/lib/plugins/authpgsql/conf -@dirrm %%WWWDIR%%/lib/plugins/authpgsql -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/it -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/es -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/en -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/de -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/da -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/authmysql/lang -@dirrm %%WWWDIR%%/lib/plugins/authmysql/conf -@dirrm %%WWWDIR%%/lib/plugins/authmysql -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/no -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/it -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/he -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/et -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/es -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/en -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/de -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/da -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/authldap/lang -@dirrm %%WWWDIR%%/lib/plugins/authldap/conf -@dirrm %%WWWDIR%%/lib/plugins/authldap -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/no -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/it -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/es -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/en -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/el -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/de -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/da -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/authad/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/authad/lang -@dirrm %%WWWDIR%%/lib/plugins/authad/conf -@dirrm %%WWWDIR%%/lib/plugins/authad/adLDAP/collections -@dirrm %%WWWDIR%%/lib/plugins/authad/adLDAP/classes -@dirrm %%WWWDIR%%/lib/plugins/authad/adLDAP -@dirrm %%WWWDIR%%/lib/plugins/authad -@dirrm %%WWWDIR%%/lib/plugins/acl/pix -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/zh-tw -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/zh -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/vi -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/uk -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/tr -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/th -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/sv -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/sr -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/sq -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/sl -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/sk -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ru -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ro -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/pt-br -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/pt -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/pl -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/no -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/nl -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ne -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/mr -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/mk -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/lv -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/lt -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/lb -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/la -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ko -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/kk -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ja -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/it -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/is -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/id -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ia -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/hu -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/hr -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/he -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/gl -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/fr -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/fi -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/fa -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/eu -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/et -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/es -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/eo -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/en -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/el -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/de-informal -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/de -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/da -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/cs -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ca-valencia -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ca -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/bg -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/ar -@dirrm %%WWWDIR%%/lib/plugins/acl/lang/af -@dirrm %%WWWDIR%%/lib/plugins/acl/lang -@dirrm %%WWWDIR%%/lib/plugins/acl -@dirrm %%WWWDIR%%/lib/plugins -@dirrm %%WWWDIR%%/lib/images/toolbar -@dirrm %%WWWDIR%%/lib/images/smileys -@dirrm %%WWWDIR%%/lib/images/license/button -@dirrm %%WWWDIR%%/lib/images/license/badge -@dirrm %%WWWDIR%%/lib/images/license -@dirrm %%WWWDIR%%/lib/images/interwiki -@dirrm %%WWWDIR%%/lib/images/fileicons/32x32 -@dirrm %%WWWDIR%%/lib/images/fileicons -@dirrm %%WWWDIR%%/lib/images/admin -@dirrm %%WWWDIR%%/lib/images -@dirrm %%WWWDIR%%/lib/exe -@dirrm %%WWWDIR%%/lib -@dirrm %%WWWDIR%%/inc/phpseclib -@dirrm %%WWWDIR%%/inc/parser -@dirrm %%WWWDIR%%/inc/lang/zh-tw -@dirrm %%WWWDIR%%/inc/lang/zh -@dirrm %%WWWDIR%%/inc/lang/vi -@dirrm %%WWWDIR%%/inc/lang/uk -@dirrm %%WWWDIR%%/inc/lang/tr -@dirrm %%WWWDIR%%/inc/lang/th -@dirrm %%WWWDIR%%/inc/lang/ta -@dirrm %%WWWDIR%%/inc/lang/sv -@dirrm %%WWWDIR%%/inc/lang/sr -@dirrm %%WWWDIR%%/inc/lang/sq -@dirrm %%WWWDIR%%/inc/lang/sl -@dirrm %%WWWDIR%%/inc/lang/sk -@dirrm %%WWWDIR%%/inc/lang/ru -@dirrm %%WWWDIR%%/inc/lang/ro -@dirrm %%WWWDIR%%/inc/lang/pt-br -@dirrm %%WWWDIR%%/inc/lang/pt -@dirrm %%WWWDIR%%/inc/lang/pl -@dirrm %%WWWDIR%%/inc/lang/no -@dirrm %%WWWDIR%%/inc/lang/nl -@dirrm %%WWWDIR%%/inc/lang/ne -@dirrm %%WWWDIR%%/inc/lang/ms -@dirrm %%WWWDIR%%/inc/lang/mr -@dirrm %%WWWDIR%%/inc/lang/mk -@dirrm %%WWWDIR%%/inc/lang/mg -@dirrm %%WWWDIR%%/inc/lang/lv -@dirrm %%WWWDIR%%/inc/lang/lt -@dirrm %%WWWDIR%%/inc/lang/lb -@dirrm %%WWWDIR%%/inc/lang/la -@dirrm %%WWWDIR%%/inc/lang/ku -@dirrm %%WWWDIR%%/inc/lang/ko -@dirrm %%WWWDIR%%/inc/lang/km -@dirrm %%WWWDIR%%/inc/lang/kk -@dirrm %%WWWDIR%%/inc/lang/ka -@dirrm %%WWWDIR%%/inc/lang/ja -@dirrm %%WWWDIR%%/inc/lang/it -@dirrm %%WWWDIR%%/inc/lang/is -@dirrm %%WWWDIR%%/inc/lang/id-ni -@dirrm %%WWWDIR%%/inc/lang/id -@dirrm %%WWWDIR%%/inc/lang/ia -@dirrm %%WWWDIR%%/inc/lang/hu-formal -@dirrm %%WWWDIR%%/inc/lang/hu -@dirrm %%WWWDIR%%/inc/lang/hr -@dirrm %%WWWDIR%%/inc/lang/hi -@dirrm %%WWWDIR%%/inc/lang/he -@dirrm %%WWWDIR%%/inc/lang/gl -@dirrm %%WWWDIR%%/inc/lang/fr -@dirrm %%WWWDIR%%/inc/lang/fo -@dirrm %%WWWDIR%%/inc/lang/fi -@dirrm %%WWWDIR%%/inc/lang/fa -@dirrm %%WWWDIR%%/inc/lang/eu -@dirrm %%WWWDIR%%/inc/lang/et -@dirrm %%WWWDIR%%/inc/lang/es -@dirrm %%WWWDIR%%/inc/lang/eo -@dirrm %%WWWDIR%%/inc/lang/en -@dirrm %%WWWDIR%%/inc/lang/el -@dirrm %%WWWDIR%%/inc/lang/de-informal -@dirrm %%WWWDIR%%/inc/lang/de -@dirrm %%WWWDIR%%/inc/lang/da -@dirrm %%WWWDIR%%/inc/lang/cs -@dirrm %%WWWDIR%%/inc/lang/ca-valencia -@dirrm %%WWWDIR%%/inc/lang/ca -@dirrm %%WWWDIR%%/inc/lang/bn -@dirrm %%WWWDIR%%/inc/lang/bg -@dirrm %%WWWDIR%%/inc/lang/az -@dirrm %%WWWDIR%%/inc/lang/ar -@dirrm %%WWWDIR%%/inc/lang/af -@dirrm %%WWWDIR%%/inc/lang -@dirrm %%WWWDIR%%/inc/geshi -@dirrm %%WWWDIR%%/inc -@dirrm %%WWWDIR%%/data/tmp -@dirrm %%WWWDIR%%/data/pages/wiki -@dirrm %%WWWDIR%%/data/pages -@dirrm %%WWWDIR%%/data/meta -@dirrm %%WWWDIR%%/data/media_meta -@dirrm %%WWWDIR%%/data/media_attic -@dirrm %%WWWDIR%%/data/media/wiki -@dirrm %%WWWDIR%%/data/media -@dirrm %%WWWDIR%%/data/locks -@dirrm %%WWWDIR%%/data/index -@dirrm %%WWWDIR%%/data/cache -@dirrm %%WWWDIR%%/data/attic -@dirrm %%WWWDIR%%/data -@dirrm %%WWWDIR%%/conf -@dirrm %%WWWDIR%%/bin -@dirrmtry %%WWWDIR%% +@dir %%WWWDIR%%/lib/tpl/dokuwiki/images/pagetools +@dir %%WWWDIR%%/lib/tpl/dokuwiki/images +@dir %%WWWDIR%%/lib/tpl/dokuwiki/css +@dir %%WWWDIR%%/lib/tpl/dokuwiki +@dir %%WWWDIR%%/lib/tpl +@dir %%WWWDIR%%/lib/styles +@dir %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme/images +@dir %%WWWDIR%%/lib/scripts/jquery/jquery-ui-theme +@dir %%WWWDIR%%/lib/scripts/jquery +@dir %%WWWDIR%%/lib/scripts +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/zh +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/uk +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/tr +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/th +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/sv +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/sr +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/sq +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/sl +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/sk +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ru +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ro +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/pt +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/pl +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/no +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/nl +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ne +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/mr +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/mk +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/lv +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/lt +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/lb +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/la +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ko +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/kk +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ja +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/it +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/is +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/id +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ia +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/hu +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/hr +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/he +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/gl +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/fr +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/fi +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/fa +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/eu +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/et +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/es +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/eo +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/en +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/el +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/de +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/da +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/cs +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ca-valencia +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ca +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/bg +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/ar +@dir %%WWWDIR%%/lib/plugins/usermanager/lang/af +@dir %%WWWDIR%%/lib/plugins/usermanager/lang +@dir %%WWWDIR%%/lib/plugins/usermanager/images +@dir %%WWWDIR%%/lib/plugins/usermanager +@dir %%WWWDIR%%/lib/plugins/safefnrecode +@dir %%WWWDIR%%/lib/plugins/revert/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/revert/lang/zh +@dir %%WWWDIR%%/lib/plugins/revert/lang/uk +@dir %%WWWDIR%%/lib/plugins/revert/lang/tr +@dir %%WWWDIR%%/lib/plugins/revert/lang/th +@dir %%WWWDIR%%/lib/plugins/revert/lang/sv +@dir %%WWWDIR%%/lib/plugins/revert/lang/sr +@dir %%WWWDIR%%/lib/plugins/revert/lang/sq +@dir %%WWWDIR%%/lib/plugins/revert/lang/sl +@dir %%WWWDIR%%/lib/plugins/revert/lang/sk +@dir %%WWWDIR%%/lib/plugins/revert/lang/ru +@dir %%WWWDIR%%/lib/plugins/revert/lang/ro +@dir %%WWWDIR%%/lib/plugins/revert/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/revert/lang/pt +@dir %%WWWDIR%%/lib/plugins/revert/lang/pl +@dir %%WWWDIR%%/lib/plugins/revert/lang/no +@dir %%WWWDIR%%/lib/plugins/revert/lang/nl +@dir %%WWWDIR%%/lib/plugins/revert/lang/ne +@dir %%WWWDIR%%/lib/plugins/revert/lang/mr +@dir %%WWWDIR%%/lib/plugins/revert/lang/lv +@dir %%WWWDIR%%/lib/plugins/revert/lang/lb +@dir %%WWWDIR%%/lib/plugins/revert/lang/la +@dir %%WWWDIR%%/lib/plugins/revert/lang/ko +@dir %%WWWDIR%%/lib/plugins/revert/lang/ja +@dir %%WWWDIR%%/lib/plugins/revert/lang/it +@dir %%WWWDIR%%/lib/plugins/revert/lang/is +@dir %%WWWDIR%%/lib/plugins/revert/lang/ia +@dir %%WWWDIR%%/lib/plugins/revert/lang/hu +@dir %%WWWDIR%%/lib/plugins/revert/lang/hr +@dir %%WWWDIR%%/lib/plugins/revert/lang/he +@dir %%WWWDIR%%/lib/plugins/revert/lang/gl +@dir %%WWWDIR%%/lib/plugins/revert/lang/fr +@dir %%WWWDIR%%/lib/plugins/revert/lang/fi +@dir %%WWWDIR%%/lib/plugins/revert/lang/fa +@dir %%WWWDIR%%/lib/plugins/revert/lang/eu +@dir %%WWWDIR%%/lib/plugins/revert/lang/et +@dir %%WWWDIR%%/lib/plugins/revert/lang/es +@dir %%WWWDIR%%/lib/plugins/revert/lang/eo +@dir %%WWWDIR%%/lib/plugins/revert/lang/en +@dir %%WWWDIR%%/lib/plugins/revert/lang/el +@dir %%WWWDIR%%/lib/plugins/revert/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/revert/lang/de +@dir %%WWWDIR%%/lib/plugins/revert/lang/da +@dir %%WWWDIR%%/lib/plugins/revert/lang/cs +@dir %%WWWDIR%%/lib/plugins/revert/lang/ca-valencia +@dir %%WWWDIR%%/lib/plugins/revert/lang/ca +@dir %%WWWDIR%%/lib/plugins/revert/lang/bg +@dir %%WWWDIR%%/lib/plugins/revert/lang/ar +@dir %%WWWDIR%%/lib/plugins/revert/lang +@dir %%WWWDIR%%/lib/plugins/revert +@dir %%WWWDIR%%/lib/plugins/popularity/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/popularity/lang/zh +@dir %%WWWDIR%%/lib/plugins/popularity/lang/uk +@dir %%WWWDIR%%/lib/plugins/popularity/lang/tr +@dir %%WWWDIR%%/lib/plugins/popularity/lang/th +@dir %%WWWDIR%%/lib/plugins/popularity/lang/sv +@dir %%WWWDIR%%/lib/plugins/popularity/lang/sr +@dir %%WWWDIR%%/lib/plugins/popularity/lang/sq +@dir %%WWWDIR%%/lib/plugins/popularity/lang/sl +@dir %%WWWDIR%%/lib/plugins/popularity/lang/sk +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ru +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ro +@dir %%WWWDIR%%/lib/plugins/popularity/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/popularity/lang/pt +@dir %%WWWDIR%%/lib/plugins/popularity/lang/pl +@dir %%WWWDIR%%/lib/plugins/popularity/lang/no +@dir %%WWWDIR%%/lib/plugins/popularity/lang/nl +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ne +@dir %%WWWDIR%%/lib/plugins/popularity/lang/mr +@dir %%WWWDIR%%/lib/plugins/popularity/lang/lv +@dir %%WWWDIR%%/lib/plugins/popularity/lang/lt +@dir %%WWWDIR%%/lib/plugins/popularity/lang/la +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ko +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ja +@dir %%WWWDIR%%/lib/plugins/popularity/lang/it +@dir %%WWWDIR%%/lib/plugins/popularity/lang/is +@dir %%WWWDIR%%/lib/plugins/popularity/lang/id-ni +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ia +@dir %%WWWDIR%%/lib/plugins/popularity/lang/hu +@dir %%WWWDIR%%/lib/plugins/popularity/lang/hr +@dir %%WWWDIR%%/lib/plugins/popularity/lang/hi +@dir %%WWWDIR%%/lib/plugins/popularity/lang/he +@dir %%WWWDIR%%/lib/plugins/popularity/lang/gl +@dir %%WWWDIR%%/lib/plugins/popularity/lang/fr +@dir %%WWWDIR%%/lib/plugins/popularity/lang/fi +@dir %%WWWDIR%%/lib/plugins/popularity/lang/fa +@dir %%WWWDIR%%/lib/plugins/popularity/lang/eu +@dir %%WWWDIR%%/lib/plugins/popularity/lang/es +@dir %%WWWDIR%%/lib/plugins/popularity/lang/eo +@dir %%WWWDIR%%/lib/plugins/popularity/lang/en +@dir %%WWWDIR%%/lib/plugins/popularity/lang/el +@dir %%WWWDIR%%/lib/plugins/popularity/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/popularity/lang/de +@dir %%WWWDIR%%/lib/plugins/popularity/lang/da +@dir %%WWWDIR%%/lib/plugins/popularity/lang/cs +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ca-valencia +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ca +@dir %%WWWDIR%%/lib/plugins/popularity/lang/bg +@dir %%WWWDIR%%/lib/plugins/popularity/lang/ar +@dir %%WWWDIR%%/lib/plugins/popularity/lang/af +@dir %%WWWDIR%%/lib/plugins/popularity/lang +@dir %%WWWDIR%%/lib/plugins/popularity +@dir %%WWWDIR%%/lib/plugins/info +@dir %%WWWDIR%%/lib/plugins/extension/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/extension/lang/zh +@dir %%WWWDIR%%/lib/plugins/extension/lang/tr +@dir %%WWWDIR%%/lib/plugins/extension/lang/sk +@dir %%WWWDIR%%/lib/plugins/extension/lang/ru +@dir %%WWWDIR%%/lib/plugins/extension/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/extension/lang/pl +@dir %%WWWDIR%%/lib/plugins/extension/lang/nl +@dir %%WWWDIR%%/lib/plugins/extension/lang/lv +@dir %%WWWDIR%%/lib/plugins/extension/lang/ko +@dir %%WWWDIR%%/lib/plugins/extension/lang/ja +@dir %%WWWDIR%%/lib/plugins/extension/lang/it +@dir %%WWWDIR%%/lib/plugins/extension/lang/hu +@dir %%WWWDIR%%/lib/plugins/extension/lang/hr +@dir %%WWWDIR%%/lib/plugins/extension/lang/fr +@dir %%WWWDIR%%/lib/plugins/extension/lang/fa +@dir %%WWWDIR%%/lib/plugins/extension/lang/es +@dir %%WWWDIR%%/lib/plugins/extension/lang/eo +@dir %%WWWDIR%%/lib/plugins/extension/lang/en +@dir %%WWWDIR%%/lib/plugins/extension/lang/de +@dir %%WWWDIR%%/lib/plugins/extension/lang/cs +@dir %%WWWDIR%%/lib/plugins/extension/lang +@dir %%WWWDIR%%/lib/plugins/extension/images +@dir %%WWWDIR%%/lib/plugins/extension/helper +@dir %%WWWDIR%%/lib/plugins/extension +@dir %%WWWDIR%%/lib/plugins/config/settings +@dir %%WWWDIR%%/lib/plugins/config/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/config/lang/zh +@dir %%WWWDIR%%/lib/plugins/config/lang/uk +@dir %%WWWDIR%%/lib/plugins/config/lang/tr +@dir %%WWWDIR%%/lib/plugins/config/lang/th +@dir %%WWWDIR%%/lib/plugins/config/lang/sv +@dir %%WWWDIR%%/lib/plugins/config/lang/sr +@dir %%WWWDIR%%/lib/plugins/config/lang/sq +@dir %%WWWDIR%%/lib/plugins/config/lang/sl +@dir %%WWWDIR%%/lib/plugins/config/lang/sk +@dir %%WWWDIR%%/lib/plugins/config/lang/ru +@dir %%WWWDIR%%/lib/plugins/config/lang/ro +@dir %%WWWDIR%%/lib/plugins/config/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/config/lang/pt +@dir %%WWWDIR%%/lib/plugins/config/lang/pl +@dir %%WWWDIR%%/lib/plugins/config/lang/no +@dir %%WWWDIR%%/lib/plugins/config/lang/nl +@dir %%WWWDIR%%/lib/plugins/config/lang/ne +@dir %%WWWDIR%%/lib/plugins/config/lang/mr +@dir %%WWWDIR%%/lib/plugins/config/lang/lv +@dir %%WWWDIR%%/lib/plugins/config/lang/lt +@dir %%WWWDIR%%/lib/plugins/config/lang/lb +@dir %%WWWDIR%%/lib/plugins/config/lang/la +@dir %%WWWDIR%%/lib/plugins/config/lang/ko +@dir %%WWWDIR%%/lib/plugins/config/lang/ja +@dir %%WWWDIR%%/lib/plugins/config/lang/it +@dir %%WWWDIR%%/lib/plugins/config/lang/is +@dir %%WWWDIR%%/lib/plugins/config/lang/id-ni +@dir %%WWWDIR%%/lib/plugins/config/lang/id +@dir %%WWWDIR%%/lib/plugins/config/lang/ia +@dir %%WWWDIR%%/lib/plugins/config/lang/hu +@dir %%WWWDIR%%/lib/plugins/config/lang/hi +@dir %%WWWDIR%%/lib/plugins/config/lang/he +@dir %%WWWDIR%%/lib/plugins/config/lang/gl +@dir %%WWWDIR%%/lib/plugins/config/lang/fr +@dir %%WWWDIR%%/lib/plugins/config/lang/fi +@dir %%WWWDIR%%/lib/plugins/config/lang/fa +@dir %%WWWDIR%%/lib/plugins/config/lang/eu +@dir %%WWWDIR%%/lib/plugins/config/lang/et +@dir %%WWWDIR%%/lib/plugins/config/lang/es +@dir %%WWWDIR%%/lib/plugins/config/lang/eo +@dir %%WWWDIR%%/lib/plugins/config/lang/en +@dir %%WWWDIR%%/lib/plugins/config/lang/el +@dir %%WWWDIR%%/lib/plugins/config/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/config/lang/de +@dir %%WWWDIR%%/lib/plugins/config/lang/da +@dir %%WWWDIR%%/lib/plugins/config/lang/cs +@dir %%WWWDIR%%/lib/plugins/config/lang/ca-valencia +@dir %%WWWDIR%%/lib/plugins/config/lang/ca +@dir %%WWWDIR%%/lib/plugins/config/lang/bg +@dir %%WWWDIR%%/lib/plugins/config/lang/ar +@dir %%WWWDIR%%/lib/plugins/config/lang/af +@dir %%WWWDIR%%/lib/plugins/config/lang +@dir %%WWWDIR%%/lib/plugins/config/images +@dir %%WWWDIR%%/lib/plugins/config +@dir %%WWWDIR%%/lib/plugins/authplain +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/zh +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/tr +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/sv +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/sl +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/sk +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/ru +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/pt +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/pl +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/nl +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/lv +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/ko +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/ja +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/it +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/hu +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/hr +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/fr +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/fa +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/es +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/eo +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/en +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/de +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/da +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/cs +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang/bg +@dir %%WWWDIR%%/lib/plugins/authpgsql/lang +@dir %%WWWDIR%%/lib/plugins/authpgsql/conf +@dir %%WWWDIR%%/lib/plugins/authpgsql +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/zh +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/tr +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/sv +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/sl +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/sk +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/ru +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/pt +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/pl +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/nl +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/lv +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/ko +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/ja +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/it +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/hu +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/hr +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/fr +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/fa +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/es +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/eo +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/en +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/de +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/da +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/cs +@dir %%WWWDIR%%/lib/plugins/authmysql/lang/bg +@dir %%WWWDIR%%/lib/plugins/authmysql/lang +@dir %%WWWDIR%%/lib/plugins/authmysql/conf +@dir %%WWWDIR%%/lib/plugins/authmysql +@dir %%WWWDIR%%/lib/plugins/authldap/lang/zh-tw +@dir %%WWWDIR%%/lib/plugins/authldap/lang/zh +@dir %%WWWDIR%%/lib/plugins/authldap/lang/tr +@dir %%WWWDIR%%/lib/plugins/authldap/lang/sv +@dir %%WWWDIR%%/lib/plugins/authldap/lang/sl +@dir %%WWWDIR%%/lib/plugins/authldap/lang/sk +@dir %%WWWDIR%%/lib/plugins/authldap/lang/ru +@dir %%WWWDIR%%/lib/plugins/authldap/lang/pt-br +@dir %%WWWDIR%%/lib/plugins/authldap/lang/pt +@dir %%WWWDIR%%/lib/plugins/authldap/lang/pl +@dir %%WWWDIR%%/lib/plugins/authldap/lang/no +@dir %%WWWDIR%%/lib/plugins/authldap/lang/nl +@dir %%WWWDIR%%/lib/plugins/authldap/lang/lv +@dir %%WWWDIR%%/lib/plugins/authldap/lang/ko +@dir %%WWWDIR%%/lib/plugins/authldap/lang/ja +@dir %%WWWDIR%%/lib/plugins/authldap/lang/it +@dir %%WWWDIR%%/lib/plugins/authldap/lang/hu +@dir %%WWWDIR%%/lib/plugins/authldap/lang/hr +@dir %%WWWDIR%%/lib/plugins/authldap/lang/he +@dir %%WWWDIR%%/lib/plugins/authldap/lang/fr +@dir %%WWWDIR%%/lib/plugins/authldap/lang/fi +@dir %%WWWDIR%%/lib/plugins/authldap/lang/et +@dir %%WWWDIR%%/lib/plugins/authldap/lang/es +@dir %%WWWDIR%%/lib/plugins/authldap/lang/eo +@dir %%WWWDIR%%/lib/plugins/authldap/lang/en +@dir %%WWWDIR%%/lib/plugins/authldap/lang/de-informal +@dir %%WWWDIR%%/lib/plugins/authldap/lang/de +@dir %%WWWDIR%%/lib/plugins/authldap/lang/da +@dir %%WWWDIR%%/lib/plugins/authldap/lang/cs *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 09:13:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 22C28F3D; Thu, 9 Oct 2014 09:13:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C0AADB1; Thu, 9 Oct 2014 09:13:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s999DQ8G063209; Thu, 9 Oct 2014 09:13:26 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s999DPg1063205; Thu, 9 Oct 2014 09:13:25 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410090913.s999DPg1063205@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 09:13:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370509 - in head/devel: powerpc64-gcc sparc64-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 09:13:26 -0000 Author: bapt Date: Thu Oct 9 09:13:24 2014 New Revision: 370509 URL: https://svnweb.freebsd.org/changeset/ports/370509 QAT: https://qat.redports.org/buildarchive/r370509/ Log: Make the plist a bit more generic Remove garbage from distinfo Modified: head/devel/powerpc64-gcc/Makefile head/devel/powerpc64-gcc/distinfo head/devel/powerpc64-gcc/pkg-plist head/devel/sparc64-gcc/pkg-plist Modified: head/devel/powerpc64-gcc/Makefile ============================================================================== --- head/devel/powerpc64-gcc/Makefile Thu Oct 9 08:13:18 2014 (r370508) +++ head/devel/powerpc64-gcc/Makefile Thu Oct 9 09:13:24 2014 (r370509) @@ -16,7 +16,9 @@ COMMENT= Cross GNU Compiler Collection f LICENSE= GPLv3 GPLv3RLE LICENSE_COMB= multi -USES= gmake iconv libtool tar:bzip2 +USES= gmake iconv libtool tar:bzip2 makeinfo +PLIST_SUB= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ + OPSYS=${OPSYS:tl} DISTFILES+= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} Modified: head/devel/powerpc64-gcc/distinfo ============================================================================== --- head/devel/powerpc64-gcc/distinfo Thu Oct 9 08:13:18 2014 (r370508) +++ head/devel/powerpc64-gcc/distinfo Thu Oct 9 09:13:24 2014 (r370509) @@ -1,8 +1,2 @@ SHA256 (gcc-4.9.1.tar.bz2) = d334781a124ada6f38e63b545e2a3b8c2183049515a1abab6d513f109f1d717e SIZE (gcc-4.9.1.tar.bz2) = 89854120 -SHA256 (gmp-6.0.0a.tar.xz) = 9156d32edac6955bc53b0218f5f3763facb890b73a835d5e1b901dcf8eb8b764 -SIZE (gmp-6.0.0a.tar.xz) = 1904112 -SHA256 (mpfr-3.1.2.tar.xz) = 399d0f47ef6608cc01d29ed1b99c7faff36d9994c45f36f41ba250147100453b -SIZE (mpfr-3.1.2.tar.xz) = 1074388 -SHA256 (mpc-1.0.2.tar.gz) = b561f54d8a479cee3bc891ee52735f18ff86712ba30f036f8b8537bae380c488 -SIZE (mpc-1.0.2.tar.gz) = 633173 Modified: head/devel/powerpc64-gcc/pkg-plist ============================================================================== --- head/devel/powerpc64-gcc/pkg-plist Thu Oct 9 08:13:18 2014 (r370508) +++ head/devel/powerpc64-gcc/pkg-plist Thu Oct 9 09:13:24 2014 (r370509) @@ -1,262 +1,262 @@ -bin/powerpc64-portbld-freebsd10.0-c++ -bin/powerpc64-portbld-freebsd10.0-cpp -bin/powerpc64-portbld-freebsd10.0-g++ -bin/powerpc64-portbld-freebsd10.0-gcc -bin/powerpc64-portbld-freebsd10.0-gcc-4.9.1 -bin/powerpc64-portbld-freebsd10.0-gcc-ar -bin/powerpc64-portbld-freebsd10.0-gcc-nm -bin/powerpc64-portbld-freebsd10.0-gcc-ranlib -bin/powerpc64-portbld-freebsd10.0-gcov -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include-fixed/README -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include-fixed/limits.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include-fixed/syslimits.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/altivec.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/float.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/htmintrin.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/htmxlintrin.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/iso646.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/paired.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/ppc-asm.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/ppu_intrinsics.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/si2vmx.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/spe.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/spu2vmx.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdalign.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdarg.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdatomic.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdbool.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stddef.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdfix.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdint-gcc.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdint.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/stdnoreturn.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/tgmath.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/varargs.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/include/vec_types.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc_list -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/gsyslimits.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/include/README -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/include/limits.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/macro_list -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders.conf -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/gtype.state -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/alias.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/all-tree.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/alloc-pool.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ansidecl.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/attribs.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/auto-host.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/b-header-vars -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/basic-block.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/bitmap.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/builtins.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/bversion.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-objc.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pragma.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pretty-print.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/c-tree.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/calls.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfg-flags.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgexpand.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfghooks.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgloop.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cgraph.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cif-code.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cilk-builtins.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cilkplus.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/dbxelf.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/elfos.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-spec.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-stdint.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/initfini-array.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/default64.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/freebsd64.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/option-defaults.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000-builtin.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000-opts.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000-protos.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/rs6000.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/config/rs6000/sysv4.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/configargs.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/context.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/coretypes.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cxx-pretty-print.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/name-lookup.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/type-utils.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cppdefault.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/cpplib.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/debug.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/defaults.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/df.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-color.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-core.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/double-int.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/dumpfile.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/emit-rtl.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/except.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/filenames.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/fixed-value.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/flag-types.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/flags.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/fold-const.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/function.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-plugin.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-symtab.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/genrtl.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ggc.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-builder.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-expr.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-fold.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-iterator.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-low.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-pretty-print.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-ssa.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-walk.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify-me.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gsstruct.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gtm-builtins.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/gtype-desc.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hard-reg-set.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hash-table.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hashtab.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/highlev-plugin-common.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/hwint.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/incpath.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/input.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-codes.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-constants.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-flags.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-modes.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-notes.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/intl.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-prop.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref-inline.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-reference.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-utils.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/is-a.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/java/java-tree.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/langhooks.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/libiberty.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/line-map.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/machmode.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/md5.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/mode-classes.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/objc/objc-tree.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/obstack.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/omp-builtins.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/options.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/opts.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/output.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/params.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/params.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/pass_manager.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-api.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-version.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/pointer-set.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/prefix.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/pretty-print.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/print-rtl.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/print-tree.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/real.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/realmpfr.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/reg-notes.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/regset.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/resource.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/safe-ctype.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/sanitizer.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/sbitmap.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/splay-tree.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/ssa-iterators.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/statistics.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/stmt.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/stor-layout.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/stringpool.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/symtab.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/sync-builtins.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/system.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/target-hooks-macros.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/target.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/target.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tm-preds.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tm.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tm_p.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/toplev.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfg.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfgcleanup.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-check.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-core.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dfa.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dump.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-eh.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-hasher.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-inline.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-into-ssa.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-iterator.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-nested.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-object-size.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-outof-ssa.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-parloops.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pass.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-phinodes.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pretty-print.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-address.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-alias.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-coalesce.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-dom.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-ivopts.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-manip.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-niter.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-operands.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-sccvn.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-ter.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadedge.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadupdate.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssanames.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/treestruct.def -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/varasm.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/vec.h -lib/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/include/version.h -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/cc1 -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/cc1plus -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/collect2 -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc.sh -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/fixincl -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/install-tools/mkinstalldirs -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0 -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0.0.0 -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/lto-wrapper -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/lto1 -libexec/gcc/powerpc64-portbld-freebsd10.0/4.9.1/plugin/gengtype -man/man1/powerpc64-portbld-freebsd10.0-cpp.1.gz -man/man1/powerpc64-portbld-freebsd10.0-g++.1.gz -man/man1/powerpc64-portbld-freebsd10.0-gcc.1.gz -man/man1/powerpc64-portbld-freebsd10.0-gcov.1.gz +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-c++ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-cpp +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-g++ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-4.9.1 +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-ar +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-nm +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-ranlib +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcov +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/README +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/limits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/syslimits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/altivec.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/float.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/htmintrin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/htmxlintrin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/iso646.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/paired.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/ppc-asm.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/ppu_intrinsics.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/si2vmx.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/spe.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/spu2vmx.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdalign.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdarg.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdatomic.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdbool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stddef.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdfix.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdint-gcc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdnoreturn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/tgmath.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/varargs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/vec_types.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixinc_list +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/gsyslimits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/include/README +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/include/limits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/macro_list +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkheaders.conf +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/gtype.state +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/alias.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/all-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/alloc-pool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ansidecl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/attribs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/auto-host.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/b-header-vars +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/basic-block.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/bitmap.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/bversion.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-common.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-common.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-objc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-pragma.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/calls.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfg-flags.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfgexpand.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfghooks.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfgloop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cgraph.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cif-code.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cilk-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cilkplus.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/dbxelf.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/elfos.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%-spec.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%-stdint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/initfini-array.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/default64.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/%%OPSYS%%64.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/option-defaults.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/rs6000-builtin.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/rs6000-opts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/rs6000-protos.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/rs6000.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/rs6000/sysv4.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/configargs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/context.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/coretypes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cp-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cp-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cxx-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/name-lookup.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/type-utils.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cppdefault.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cpplib.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/debug.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/defaults.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/df.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic-color.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic-core.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/double-int.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/dumpfile.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/emit-rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/except.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/filenames.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/fixed-value.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/flag-types.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/flags.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/fold-const.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/function.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gcc-plugin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gcc-symtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/genrtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ggc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-builder.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-expr.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-fold.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-iterator.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-low.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-walk.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimplify-me.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimplify.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gsstruct.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gtm-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gtype-desc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hard-reg-set.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hash-table.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hashtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/highlev-plugin-common.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hwint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/incpath.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/input.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-codes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-constants.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-flags.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-modes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-notes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/internal-fn.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/internal-fn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/intl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-prop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-ref-inline.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-ref.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-reference.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-utils.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/is-a.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/java/java-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/langhooks.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/libiberty.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/line-map.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/machmode.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/md5.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/mode-classes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/objc/objc-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/obstack.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/omp-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/options.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/opts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/output.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/params.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/params.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pass_manager.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin-api.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin-version.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pointer-set.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/predict.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/predict.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/prefix.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/print-rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/print-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/real.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/realmpfr.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/reg-notes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/regset.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/resource.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/rtl.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/safe-ctype.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sanitizer.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sbitmap.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/splay-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ssa-iterators.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/statistics.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stmt.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stor-layout.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stringpool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/symtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sync-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/system.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target-hooks-macros.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/timevar.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/timevar.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm-preds.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm_p.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/toplev.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-cfg.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-cfgcleanup.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-check.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-core.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-dfa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-dump.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-eh.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-hasher.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-inline.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-into-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-iterator.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-nested.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-object-size.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-outof-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-parloops.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-pass.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-phinodes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-address.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-alias.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-coalesce.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-dom.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop-ivopts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop-manip.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop-niter.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-operands.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-sccvn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-ter.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-threadedge.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-threadupdate.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssanames.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/treestruct.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/varasm.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/vec.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/version.h +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/cc1 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/cc1plus +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/collect2 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixinc.sh +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixincl +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkheaders +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkinstalldirs +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/liblto_plugin.so +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/liblto_plugin.so.0 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/liblto_plugin.so.0.0.0 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/lto-wrapper +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/lto1 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/gengtype +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-cpp.1.gz +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-g++.1.gz +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc.1.gz +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcov.1.gz Modified: head/devel/sparc64-gcc/pkg-plist ============================================================================== --- head/devel/sparc64-gcc/pkg-plist Thu Oct 9 08:13:18 2014 (r370508) +++ head/devel/sparc64-gcc/pkg-plist Thu Oct 9 09:13:24 2014 (r370509) @@ -1,251 +1,251 @@ -bin/sparc64-portbld-freebsd10.0-c++ -bin/sparc64-portbld-freebsd10.0-cpp -bin/sparc64-portbld-freebsd10.0-g++ -bin/sparc64-portbld-freebsd10.0-gcc -bin/sparc64-portbld-freebsd10.0-gcc-4.9.1 -bin/sparc64-portbld-freebsd10.0-gcc-ar -bin/sparc64-portbld-freebsd10.0-gcc-nm -bin/sparc64-portbld-freebsd10.0-gcc-ranlib -bin/sparc64-portbld-freebsd10.0-gcov -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include-fixed/README -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include-fixed/limits.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include-fixed/syslimits.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/float.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/iso646.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdalign.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdarg.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdatomic.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdbool.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stddef.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdfix.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdint-gcc.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdint.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/stdnoreturn.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/tgmath.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/varargs.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/include/visintrin.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc_list -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/gsyslimits.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/include/README -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/include/limits.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/macro_list -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders.conf -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/gtype.state -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/alias.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/all-tree.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/alloc-pool.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ansidecl.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/attribs.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/auto-host.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/b-header-vars -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/basic-block.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/bitmap.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/builtins.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/bversion.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-common.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-objc.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pragma.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-family/c-pretty-print.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/c-tree.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/calls.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfg-flags.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgexpand.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfghooks.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cfgloop.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cgraph.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cif-code.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cilk-builtins.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cilkplus.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/dbxelf.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/elfos.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-spec.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd-stdint.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/freebsd.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/initfini-array.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/freebsd.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sparc-opts.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sparc-protos.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sparc.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/sparc/sysv4.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/config/vxworks-dummy.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/configargs.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/context.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/coretypes.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cp-tree.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/cxx-pretty-print.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/name-lookup.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cp/type-utils.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cppdefault.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/cpplib.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/debug.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/defaults.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/df.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-color.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic-core.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/diagnostic.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/double-int.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/dumpfile.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/emit-rtl.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/except.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/filenames.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/fixed-value.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/flag-types.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/flags.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/fold-const.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/function.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-plugin.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gcc-symtab.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/genrtl.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ggc.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-builder.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-expr.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-fold.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-iterator.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-low.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-pretty-print.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-ssa.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple-walk.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimple.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify-me.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gimplify.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gsstruct.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gtm-builtins.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/gtype-desc.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hard-reg-set.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hash-table.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hashtab.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/highlev-plugin-common.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/hwint.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/incpath.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/input.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-codes.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-constants.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-flags.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-modes.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/insn-notes.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/internal-fn.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/intl.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-prop.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref-inline.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-ref.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-reference.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ipa-utils.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/is-a.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/java/java-tree.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/langhooks.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/libiberty.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/line-map.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/machmode.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/md5.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/mode-classes.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/objc/objc-tree.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/obstack.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/omp-builtins.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/options.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/opts.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/output.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/params.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/params.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/pass_manager.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-api.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin-version.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/plugin.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/pointer-set.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/predict.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/prefix.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/pretty-print.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/print-rtl.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/print-tree.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/real.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/realmpfr.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/reg-notes.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/regset.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/resource.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/rtl.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/safe-ctype.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/sanitizer.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/sbitmap.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/splay-tree.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/ssa-iterators.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/statistics.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/stmt.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/stor-layout.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/stringpool.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/symtab.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/sync-builtins.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/system.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/target-hooks-macros.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/target.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/target.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/timevar.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tm-preds.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tm.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tm_p.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/toplev.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfg.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-cfgcleanup.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-check.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-core.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dfa.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-dump.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-eh.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-hasher.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-inline.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-into-ssa.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-iterator.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-nested.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-object-size.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-outof-ssa.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-parloops.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pass.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-phinodes.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-pretty-print.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-address.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-alias.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-coalesce.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-dom.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-ivopts.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-manip.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop-niter.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-loop.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-operands.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-sccvn.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-ter.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadedge.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa-threadupdate.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssa.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree-ssanames.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/tree.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/treestruct.def -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/varasm.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/vec.h -lib/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/include/version.h -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/cc1 -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/cc1plus -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/collect2 -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/fixinc.sh -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/fixincl -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/mkheaders -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/install-tools/mkinstalldirs -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0 -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/liblto_plugin.so.0.0.0 -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/lto-wrapper -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/lto1 -libexec/gcc/sparc64-portbld-freebsd10.0/4.9.1/plugin/gengtype -man/man1/sparc64-portbld-freebsd10.0-cpp.1.gz -man/man1/sparc64-portbld-freebsd10.0-g++.1.gz -man/man1/sparc64-portbld-freebsd10.0-gcc.1.gz -man/man1/sparc64-portbld-freebsd10.0-gcov.1.gz +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-c++ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-cpp +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-g++ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-4.9.1 +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-ar +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-nm +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-ranlib +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcov +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/README +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/limits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/syslimits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/float.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/iso646.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdalign.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdarg.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdatomic.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdbool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stddef.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdfix.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdint-gcc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdnoreturn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/tgmath.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/varargs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/visintrin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixinc_list +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/gsyslimits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/include/README +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/include/limits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/macro_list +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkheaders.conf +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/gtype.state +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/alias.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/all-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/alloc-pool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ansidecl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/attribs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/auto-host.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/b-header-vars +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/basic-block.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/bitmap.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/bversion.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-common.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-common.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-objc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-pragma.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/calls.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfg-flags.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfgexpand.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfghooks.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfgloop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cgraph.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cif-code.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cilk-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cilkplus.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/dbxelf.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/elfos.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%-spec.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%-stdint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/initfini-array.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/%%OPSYS%%.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sparc-opts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sparc-protos.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sparc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sysv4.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/vxworks-dummy.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/configargs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/context.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/coretypes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cp-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cp-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cxx-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/name-lookup.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/type-utils.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cppdefault.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cpplib.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/debug.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/defaults.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/df.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic-color.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic-core.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/double-int.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/dumpfile.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/emit-rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/except.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/filenames.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/fixed-value.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/flag-types.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/flags.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/fold-const.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/function.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gcc-plugin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gcc-symtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/genrtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ggc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-builder.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-expr.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-fold.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-iterator.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-low.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-walk.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimplify-me.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimplify.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gsstruct.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gtm-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gtype-desc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hard-reg-set.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hash-table.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hashtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/highlev-plugin-common.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hwint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/incpath.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/input.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-codes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-constants.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-flags.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-modes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-notes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/internal-fn.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/internal-fn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/intl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-prop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-ref-inline.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-ref.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-reference.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-utils.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/is-a.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/java/java-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/langhooks.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/libiberty.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/line-map.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/machmode.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/md5.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/mode-classes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/objc/objc-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/obstack.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/omp-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/options.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/opts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/output.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/params.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/params.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pass_manager.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin-api.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin-version.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pointer-set.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/predict.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/predict.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/prefix.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/print-rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/print-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/real.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/realmpfr.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/reg-notes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/regset.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/resource.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/rtl.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/safe-ctype.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sanitizer.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sbitmap.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/splay-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ssa-iterators.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/statistics.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stmt.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stor-layout.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stringpool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/symtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sync-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/system.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target-hooks-macros.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/timevar.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/timevar.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm-preds.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm_p.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/toplev.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 09:20:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40805204; Thu, 9 Oct 2014 09:20:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2CA93E5C; Thu, 9 Oct 2014 09:20:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s999KAIX064244; Thu, 9 Oct 2014 09:20:10 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s999KAHu064243; Thu, 9 Oct 2014 09:20:10 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410090920.s999KAHu064243@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 09:20:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370510 - head/devel/powerpc64-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 09:20:10 -0000 Author: bapt Date: Thu Oct 9 09:20:09 2014 New Revision: 370510 URL: https://svnweb.freebsd.org/changeset/ports/370510 QAT: https://qat.redports.org/buildarchive/r370510/ Log: Cleanup garbage Modified: head/devel/powerpc64-gcc/Makefile Modified: head/devel/powerpc64-gcc/Makefile ============================================================================== --- head/devel/powerpc64-gcc/Makefile Thu Oct 9 09:13:24 2014 (r370509) +++ head/devel/powerpc64-gcc/Makefile Thu Oct 9 09:20:09 2014 (r370510) @@ -3,10 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.9.1 CATEGORIES= devel -MASTER_SITES= GCC \ - GNU/gmp:gmp \ - http://www.mpfr.org/mpfr-current/:mpfr \ - http://www.multiprecision.org/mpc/download/:mpc +MASTER_SITES= GCC MASTER_SITE_SUBDIR= releases/gcc-${DISTVERSION} PKGNAMEPREFIX?= powerpc64- @@ -20,8 +17,6 @@ USES= gmake iconv libtool tar:bzip2 make PLIST_SUB= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ OPSYS=${OPSYS:tl} -DISTFILES+= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} - LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ libmpfr.so:${PORTSDIR}/math/mpfr \ libmpc.so:${PORTSDIR}/math/mpc From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 09:42:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E01B75D; Thu, 9 Oct 2014 09:42:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17805140; Thu, 9 Oct 2014 09:42:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s999gKfL077362; Thu, 9 Oct 2014 09:42:20 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s999gImV077353; Thu, 9 Oct 2014 09:42:18 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410090942.s999gImV077353@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 09:42:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370511 - in head/devel: . powerpc64-xtoolchain-gcc powerpc64-xtoolchain-gcc/files sparc64-xtoolchain-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 09:42:20 -0000 Author: bapt Date: Thu Oct 9 09:42:18 2014 New Revision: 370511 URL: https://svnweb.freebsd.org/changeset/ports/370511 QAT: https://qat.redports.org/buildarchive/r370511/ Log: Add pre seeded toolchain configuration for powerpc64 and sparc64 Added: head/devel/powerpc64-xtoolchain-gcc/ head/devel/powerpc64-xtoolchain-gcc/Makefile (contents, props changed) head/devel/powerpc64-xtoolchain-gcc/files/ head/devel/powerpc64-xtoolchain-gcc/files/xtoolchain.mk.in (contents, props changed) head/devel/powerpc64-xtoolchain-gcc/pkg-descr (contents, props changed) head/devel/sparc64-xtoolchain-gcc/ head/devel/sparc64-xtoolchain-gcc/Makefile (contents, props changed) head/devel/sparc64-xtoolchain-gcc/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 9 09:20:09 2014 (r370510) +++ head/devel/Makefile Thu Oct 9 09:42:18 2014 (r370511) @@ -3488,6 +3488,7 @@ SUBDIR += poslib SUBDIR += powerpc64-binutils SUBDIR += powerpc64-gcc + SUBDIR += powerpc64-xtoolchain-gcc SUBDIR += poxml SUBDIR += ppl SUBDIR += premake @@ -4648,6 +4649,7 @@ SUBDIR += sourcenav SUBDIR += sparc64-binutils SUBDIR += sparc64-gcc + SUBDIR += sparc64-xtoolchain-gcc SUBDIR += spatialindex SUBDIR += spdict SUBDIR += spin Added: head/devel/powerpc64-xtoolchain-gcc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-xtoolchain-gcc/Makefile Thu Oct 9 09:42:18 2014 (r370511) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= xtoolchain +PORTVERSION= 0.1 +CATEGORIES= devel +MASTER_SITES= # none +DISTFILES= # none +PKGNAMEPREFIX?= powerpc64- +PKGNAMESUFFIX?= -gcc + +MAINTAINER?= bapt@FreeBSD.org +COMMENT= Pre seeded toolchain to cross build FreeBSD base + +NO_BUILD= yes + +XCC?= ${PKGNAMEPREFIX}portbld-${OPSYS:tl}${OSREL}-gcc +XCXX?= ${PKGNAMEPREFIX}portbld-${OPSYS:tl}${OSREL}-g++ +XCPP?= ${PKGNAMEPREFIX}portbld-${OPSYS:tl}${OSREL}-cpp +X_COMPILER_TYPE?= ${PKGNAMESUFFIX:C/-//g} + +RUN_DEPENDS?= ${XCC}:${PORTSDIR}/devel/${PKGNAMEPREFIX}${X_COMPILER_TYPE} + +SUB_FILES= xtoolchain.mk +SUB_LIST= TARGETARCH=${PKGNAMEPREFIX:C/-//g} \ + OPSYS=${OPSYS:tl} \ + XCC=${XCC} \ + XCXX=${XCXX} \ + XCPP=${XCPP} \ + X_COMPILER_TYPE=${X_COMPILER_TYPE} + +PLIST_FILES= share/toolchains/${PKGNAMEPREFIX}${X_COMPILER_TYPE}.mk + +do-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/share/toolchains/ + @${INSTALL_DATA} ${WRKDIR}/xtoolchain.mk \ + ${STAGEDIR}${PREFIX}/share/toolchains/${PKGNAMEPREFIX}${X_COMPILER_TYPE}.mk + +.include Added: head/devel/powerpc64-xtoolchain-gcc/files/xtoolchain.mk.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-xtoolchain-gcc/files/xtoolchain.mk.in Thu Oct 9 09:42:18 2014 (r370511) @@ -0,0 +1,5 @@ +XCC=%%LOCALBASE%%/bin/%%XCC%% +XCXX=%%LOCALBASE%%/bin/%%XCXX%% +XCPP=%%LOCALBASE%%/bin/%%XCPP%% +CROSS_BINUTILS_PREFIX=%%LOCALBASE%%/%%TARGETARCH%%-%%OPSYS%%/bin/ +X_COMPILER_TYPE=%%X_COMPILER_TYPE%% Added: head/devel/powerpc64-xtoolchain-gcc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-xtoolchain-gcc/pkg-descr Thu Oct 9 09:42:18 2014 (r370511) @@ -0,0 +1 @@ +Pre seeded cross toolchain definition to cross build FreeBSD base Added: head/devel/sparc64-xtoolchain-gcc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sparc64-xtoolchain-gcc/Makefile Thu Oct 9 09:42:18 2014 (r370511) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +PKGNAMEPREFIX= sparc64- +PLIST= ${.CURDIR}/pkg-plist + +MASTERDIR= ${.CURDIR}/../powerpc64-xtoolchain-gcc/ + +.include "${MASTERDIR}/Makefile" Added: head/devel/sparc64-xtoolchain-gcc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/sparc64-xtoolchain-gcc/pkg-plist Thu Oct 9 09:42:18 2014 (r370511) @@ -0,0 +1,251 @@ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-c++ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-cpp +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-g++ +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-4.9.1 +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-ar +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-nm +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc-ranlib +bin/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcov +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/README +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/limits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include-fixed/syslimits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/float.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/iso646.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdalign.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdarg.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdatomic.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdbool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stddef.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdfix.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdint-gcc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/stdnoreturn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/tgmath.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/varargs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/include/visintrin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixinc_list +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/gsyslimits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/include/README +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/include/limits.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/macro_list +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkheaders.conf +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/gtype.state +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ada/gcc-interface/ada-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/alias.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/all-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/alloc-pool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ansidecl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/attribs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/auto-host.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/b-header-vars +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/basic-block.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/bitmap.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/bversion.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-common.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-common.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-objc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-pragma.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-family/c-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/c-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/calls.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfg-flags.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfgexpand.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfghooks.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cfgloop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cgraph.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cif-code.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cilk-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cilkplus.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/dbxelf.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/elfos.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%-spec.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%-stdint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/%%OPSYS%%.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/initfini-array.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/%%OPSYS%%.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sparc-opts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sparc-protos.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sparc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/sparc/sysv4.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/config/vxworks-dummy.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/configargs.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/context.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/coretypes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cp-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cp-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/cxx-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/name-lookup.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cp/type-utils.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cppdefault.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/cpplib.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/debug.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/defaults.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/df.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic-color.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic-core.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/diagnostic.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/double-int.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/dumpfile.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/emit-rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/except.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/filenames.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/fixed-value.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/flag-types.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/flags.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/fold-const.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/function.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gcc-plugin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gcc-symtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/genrtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ggc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-builder.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-expr.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-fold.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-iterator.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-low.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple-walk.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimple.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimplify-me.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gimplify.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gsstruct.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gtm-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/gtype-desc.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hard-reg-set.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hash-table.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hashtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/highlev-plugin-common.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/hwint.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/incpath.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/input.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-codes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-constants.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-flags.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-modes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/insn-notes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/internal-fn.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/internal-fn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/intl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-prop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-ref-inline.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-ref.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-reference.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ipa-utils.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/is-a.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/java/java-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/langhooks.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/libiberty.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/line-map.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/machmode.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/md5.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/mode-classes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/objc/objc-tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/obstack.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/omp-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/options.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/opts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/output.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/params.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/params.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pass_manager.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin-api.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin-version.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/plugin.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pointer-set.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/predict.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/predict.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/prefix.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/print-rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/print-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/real.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/realmpfr.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/reg-notes.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/regset.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/resource.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/rtl.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/rtl.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/safe-ctype.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sanitizer.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sbitmap.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/splay-tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/ssa-iterators.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/statistics.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stmt.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stor-layout.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/stringpool.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/symtab.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/sync-builtins.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/system.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target-hooks-macros.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/target.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/timevar.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/timevar.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm-preds.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tm_p.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/toplev.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-cfg.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-cfgcleanup.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-check.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-core.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-dfa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-dump.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-eh.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-hasher.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-inline.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-into-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-iterator.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-nested.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-object-size.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-outof-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-parloops.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-pass.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-phinodes.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-pretty-print.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-address.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-alias.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-coalesce.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-dom.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop-ivopts.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop-manip.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop-niter.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-loop.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-operands.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-sccvn.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-ter.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-threadedge.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa-threadupdate.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssa.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree-ssanames.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/tree.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/treestruct.def +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/varasm.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/vec.h +lib/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/include/version.h +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/cc1 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/cc1plus +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/collect2 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixinc.sh +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/fixincl +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkheaders +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/install-tools/mkinstalldirs +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/liblto_plugin.so +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/liblto_plugin.so.0 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/liblto_plugin.so.0.0.0 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/lto-wrapper +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/lto1 +libexec/gcc/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%/4.9.1/plugin/gengtype +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-cpp.1.gz +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-g++.1.gz +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcc.1.gz +man/man1/%%TARGETARCH%%-portbld-%%OPSYS%%%%OSREL%%-gcov.1.gz From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 10:24:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5AE7125; Thu, 9 Oct 2014 10:24:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C081E7DE; Thu, 9 Oct 2014 10:24:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99AOm8U096583; Thu, 9 Oct 2014 10:24:48 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99AOmb9096580; Thu, 9 Oct 2014 10:24:48 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410091024.s99AOmb9096580@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Thu, 9 Oct 2014 10:24:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370512 - in head/www/chromium: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 10:24:49 -0000 Author: rene Date: Thu Oct 9 10:24:47 2014 New Revision: 370512 URL: https://svnweb.freebsd.org/changeset/ports/370512 QAT: https://qat.redports.org/buildarchive/r370512/ Log: www/chromium: Add back some patches lost in the 37 -> 38 update. Bump PORTREVISION Submitted by: tomek@apostata.org MFH: 2014Q4 Added: head/www/chromium/files/patch-chrome__browser__notifications__message_center_notification_manager.cc (contents, props changed) head/www/chromium/files/patch-ui__resources__ui_resources.grd (contents, props changed) Modified: head/www/chromium/Makefile Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Thu Oct 9 09:42:18 2014 (r370511) +++ head/www/chromium/Makefile Thu Oct 9 10:24:47 2014 (r370512) @@ -3,6 +3,7 @@ PORTNAME= chromium PORTVERSION= 38.0.2125.101 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://commondatastorage.googleapis.com/chromium-browser-official/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} Added: head/www/chromium/files/patch-chrome__browser__notifications__message_center_notification_manager.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-chrome__browser__notifications__message_center_notification_manager.cc Thu Oct 9 10:24:47 2014 (r370512) @@ -0,0 +1,11 @@ +--- chrome/browser/notifications/message_center_notification_manager.cc.orig 2014-09-10 01:47:12.000000000 +0200 ++++ chrome/browser/notifications/message_center_notification_manager.cc 2014-09-18 14:21:16.000000000 +0200 +@@ -84,7 +84,7 @@ + blockers_.push_back(new FullscreenNotificationBlocker(message_center)); + + #if defined(OS_WIN) || defined(OS_MACOSX) \ +- || (defined(OS_LINUX) && !defined(OS_CHROMEOS)) ++ || (defined(OS_LINUX) && !defined(OS_CHROMEOS)) || defined(OS_BSD) + // On Windows, Linux and Mac, the notification manager owns the tray icon and + // views.Other platforms have global ownership and Create will return NULL. + tray_.reset(message_center::CreateMessageCenterTray()); Added: head/www/chromium/files/patch-ui__resources__ui_resources.grd ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/chromium/files/patch-ui__resources__ui_resources.grd Thu Oct 9 10:24:47 2014 (r370512) @@ -0,0 +1,11 @@ +--- ui/resources/ui_resources.grd.orig 2014-09-10 01:47:14.000000000 +0200 ++++ ui/resources/ui_resources.grd 2014-09-17 13:51:43.000000000 +0200 +@@ -39,7 +39,7 @@ + + + +- ++ + + + From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 10:39:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8700D37B; Thu, 9 Oct 2014 10:39:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 72B1B915; Thu, 9 Oct 2014 10:39:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99Ad34f002099; Thu, 9 Oct 2014 10:39:03 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99Ad3Ih002097; Thu, 9 Oct 2014 10:39:03 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410091039.s99Ad3Ih002097@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 10:39:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370513 - in head/devel/powerpc64-gcc: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 10:39:03 -0000 Author: bapt Date: Thu Oct 9 10:39:02 2014 New Revision: 370513 URL: https://svnweb.freebsd.org/changeset/ports/370513 QAT: https://qat.redports.org/buildarchive/r370513/ Log: Add support for -fformat-extensions meaning we can now build the kernel Submitted by: kan Added: head/devel/powerpc64-gcc/files/ head/devel/powerpc64-gcc/files/patch-format-extensions (contents, props changed) Modified: head/devel/powerpc64-gcc/Makefile Modified: head/devel/powerpc64-gcc/Makefile ============================================================================== --- head/devel/powerpc64-gcc/Makefile Thu Oct 9 10:24:47 2014 (r370512) +++ head/devel/powerpc64-gcc/Makefile Thu Oct 9 10:39:02 2014 (r370513) @@ -23,6 +23,7 @@ LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/ BUILD_DEPENDS= ${PKGNAMEPREFIX}${OPSYS:tl}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils RUN_DEPENDS= ${PKGNAMEPREFIX}${OPSYS:tl}-as:${PORTSDIR}/devel/${PKGNAMEPREFIX}binutils +PATCH_WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} WRKSRC= ${WRKDIR}/build-gcc GNU_CONFIGURE= yes Added: head/devel/powerpc64-gcc/files/patch-format-extensions ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/powerpc64-gcc/files/patch-format-extensions Thu Oct 9 10:39:02 2014 (r370513) @@ -0,0 +1,117 @@ +Index: gcc/c-family/c-format.c +=================================================================== +--- gcc/c-family/c-format.c (revision 216017) ++++ gcc/c-family/c-format.c (working copy) +@@ -622,6 +622,26 @@ + { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL } + }; + ++static const format_char_info fbsd_ext_char_info = ++{ NULL, 1, STD_EXT, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "", "cR", NULL }; ++ ++static const format_char_info fbsd_print_char_table[] = ++{ ++ /* BSD conversion specifiers. */ ++ /* FreeBSD kernel extensions (src/sys/kern/subr_prf.c). ++ The format %b is supported to decode error registers. ++ Its usage is: printf("reg=%b\n", regval, "*"); ++ which produces: reg=3 ++ The format %D provides a hexdump given a pointer and separator string: ++ ("%6D", ptr, ":") -> XX:XX:XX:XX:XX:XX ++ ("%*D", len, ptr, " ") -> XX XX XX XX ... ++ */ ++ { "D", 1, STD_EXT, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "-wp", "cR", &fbsd_ext_char_info }, ++ { "b", 0, STD_EXT, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "-wp", "", &fbsd_ext_char_info }, ++ { "ry", 0, STD_EXT, { T89_I, BADLEN, BADLEN, T89_L, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "-wp0 +#", "i", NULL }, ++ { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL } ++}; ++ + static const format_char_info asm_fprintf_char_table[] = + { + /* C89 conversion specifiers. */ +@@ -872,6 +892,12 @@ + strfmon_flag_specs, strfmon_flag_pairs, + FMT_FLAG_ARG_CONVERT, 'w', '#', 'p', 0, 'L', 0, + NULL, NULL ++ }, ++ { "printf0", printf_length_specs, print_char_table, " +#0-'I", NULL, ++ printf_flag_specs, printf_flag_pairs, ++ FMT_FLAG_ARG_CONVERT|FMT_FLAG_DOLLAR_MULTIPLE|FMT_FLAG_USE_DOLLAR|FMT_FLAG_EMPTY_PREC_OK|FMT_FLAG_NULL_FORMAT_OK, ++ 'w', 0, 'p', 0, 'L', 0, ++ &integer_type_node, &integer_type_node + } + }; + +@@ -1426,6 +1452,9 @@ + + if (integer_zerop (format_tree)) + { ++ if (!(format_types[info->format_type].flags & FMT_FLAG_NULL_FORMAT_OK)) ++ warning (OPT_Wformat_, "null format string"); ++ + /* Skip to first argument to check, so we can see if this format + has any arguments (it shouldn't). */ + while (arg_num + 1 < info->first_arg_num) +@@ -1926,6 +1955,14 @@ + while (fli->name != 0 + && strncmp (fli->name, format_chars, strlen (fli->name))) + fli++; ++ /* ++ * Make sure FreeBSD's D format char takes preference ++ * over new DD length specifier if FreeBSD format ++ * extensions are requested. ++ */ ++ if (fli->index == FMT_LEN_D && flag_format_extensions ++ && fki->conversion_specs == print_char_table) ++ while (fli->name != 0) fli++; + if (fli->name != 0) + { + format_chars += strlen (fli->name); +@@ -1993,6 +2030,14 @@ + while (fci->format_chars != 0 + && strchr (fci->format_chars, format_char) == 0) + ++fci; ++ if (fci->format_chars == 0 && flag_format_extensions ++ && fki->conversion_specs == print_char_table) ++ { ++ fci = fbsd_print_char_table; ++ while (fci->format_chars != 0 ++ && strchr (fci->format_chars, format_char) == 0) ++ ++fci; ++ } + if (fci->format_chars == 0) + { + if (ISGRAPH (format_char)) +Index: gcc/c-family/c-format.h +=================================================================== +--- gcc/c-family/c-format.h (revision 216017) ++++ gcc/c-family/c-format.h (working copy) +@@ -75,11 +75,12 @@ + FMT_FLAG_DOLLAR_GAP_POINTER_OK = 128, + /* The format arg is an opaque object that will be parsed by an external + facility. */ +- FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL = 256 ++ FMT_FLAG_PARSE_ARG_CONVERT_EXTERNAL = 256, + /* Not included here: details of whether width or precision may occur + (controlled by width_char and precision_char); details of whether + '*' can be used for these (width_type and precision_type); details + of whether length modifiers can occur (length_char_specs). */ ++ FMT_FLAG_NULL_FORMAT_OK = 512 + }; + + /* Structure describing a length modifier supported in format checking, and +Index: gcc/config/freebsd.opt +=================================================================== +--- gcc/config/freebsd.opt (revision 216017) ++++ gcc/config/freebsd.opt (working copy) +@@ -34,6 +34,10 @@ + defsym= + Driver JoinedOrMissing + ++fformat-extensions ++Common Report Var(flag_format_extensions) Init(0) ++Allow FreeBSD kernel-specific printf format specifiers. ++ + posix + Driver + From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 11:21:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78E50E56; Thu, 9 Oct 2014 11:21:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59F9ADB1; Thu, 9 Oct 2014 11:21:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99BLUiN022203; Thu, 9 Oct 2014 11:21:30 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99BLTF3022200; Thu, 9 Oct 2014 11:21:29 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410091121.s99BLTF3022200@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 9 Oct 2014 11:21:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370515 - head/net/mpich X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 11:21:30 -0000 Author: tijl Date: Thu Oct 9 11:21:29 2014 New Revision: 370515 URL: https://svnweb.freebsd.org/changeset/ports/370515 QAT: https://qat.redports.org/buildarchive/r370515/ Log: Update to MPICH 3.1.3 From the announcement: This release adds several enhancements to Portals4 support, PAMI, RMA, and ROMIO. It also contains a large number of bug fixes. Modified: head/net/mpich/Makefile head/net/mpich/distinfo head/net/mpich/pkg-plist Modified: head/net/mpich/Makefile ============================================================================== --- head/net/mpich/Makefile Thu Oct 9 10:58:41 2014 (r370514) +++ head/net/mpich/Makefile Thu Oct 9 11:21:29 2014 (r370515) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mpich -PORTVERSION= 3.1.2 +PORTVERSION= 3.1.3 CATEGORIES= net parallel MASTER_SITES= http://www.mpich.org/static/downloads/${DISTVERSION}/ Modified: head/net/mpich/distinfo ============================================================================== --- head/net/mpich/distinfo Thu Oct 9 10:58:41 2014 (r370514) +++ head/net/mpich/distinfo Thu Oct 9 11:21:29 2014 (r370515) @@ -1,2 +1,2 @@ -SHA256 (mpich-3.1.2.tar.gz) = 37c3ba2d3cd3f4ea239497d9d34bd57a663a34e2ea25099c2cbef118c9156587 -SIZE (mpich-3.1.2.tar.gz) = 10954345 +SHA256 (mpich-3.1.3.tar.gz) = afb690aa828467721e9d9ab233fe00c68cae2b7b930d744cb5f7f3eb08c8602c +SIZE (mpich-3.1.3.tar.gz) = 11487313 Modified: head/net/mpich/pkg-plist ============================================================================== --- head/net/mpich/pkg-plist Thu Oct 9 10:58:41 2014 (r370514) +++ head/net/mpich/pkg-plist Thu Oct 9 11:21:29 2014 (r370515) @@ -45,18 +45,18 @@ include/primitives/opa_unsafe.h lib/libmpi.a lib/libmpi.so lib/libmpi.so.12 -lib/libmpi.so.12.0.2 +lib/libmpi.so.12.0.4 lib/libmpich.so lib/libmpichcxx.so %%FORTRAN%%lib/libmpichf90.so lib/libmpicxx.a lib/libmpicxx.so lib/libmpicxx.so.12 -lib/libmpicxx.so.12.0.2 +lib/libmpicxx.so.12.0.4 %%FORTRAN%%lib/libmpifort.a %%FORTRAN%%lib/libmpifort.so %%FORTRAN%%lib/libmpifort.so.12 -%%FORTRAN%%lib/libmpifort.so.12.0.2 +%%FORTRAN%%lib/libmpifort.so.12.0.4 lib/libmpl.so lib/libopa.so libdata/pkgconfig/mpich.pc @@ -69,9 +69,11 @@ man/man1/mpicxx.1.gz man/man1/mpiexec.1.gz man/man1/mpif77.1.gz man/man1/mpifort.1.gz -man/man3/MPIX_Comm_group_failed.3.gz -man/man3/MPIX_Comm_reenable_anysource.3.gz -man/man3/MPIX_Comm_remote_group_failed.3.gz +man/man3/MPIX_Comm_agree.3.gz +man/man3/MPIX_Comm_failure_ack.3.gz +man/man3/MPIX_Comm_failure_get_acked.3.gz +man/man3/MPIX_Comm_revoke.3.gz +man/man3/MPIX_Comm_shrink.3.gz man/man3/MPI_Abort.3.gz man/man3/MPI_Accumulate.3.gz man/man3/MPI_Add_error_class.3.gz @@ -460,5 +462,3 @@ man/man3/MPI_Wtime.3.gz %%PORTDOCS%%%%DOCSDIR%%/install.pdf %%PORTDOCS%%%%DOCSDIR%%/logging.pdf %%PORTDOCS%%%%DOCSDIR%%/user.pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm include/primitives From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 11:35:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6E03219; Thu, 9 Oct 2014 11:35:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A1FDEEDB; Thu, 9 Oct 2014 11:35:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99BZEt1030213; Thu, 9 Oct 2014 11:35:14 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99BZDjQ030206; Thu, 9 Oct 2014 11:35:13 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201410091135.s99BZDjQ030206@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Thu, 9 Oct 2014 11:35:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370516 - in head: comms/dcf77pi emulators/fuse emulators/fuse-utils emulators/libspectrum games/torcs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 11:35:14 -0000 Author: rene Date: Thu Oct 9 11:35:12 2014 New Revision: 370516 URL: https://svnweb.freebsd.org/changeset/ports/370516 QAT: https://qat.redports.org/buildarchive/r370516/ Log: Clean up pkg-plist of my ports. Modified: head/comms/dcf77pi/pkg-plist head/emulators/fuse-utils/pkg-plist head/emulators/fuse/pkg-plist head/emulators/libspectrum/pkg-plist head/games/torcs/pkg-plist Modified: head/comms/dcf77pi/pkg-plist ============================================================================== --- head/comms/dcf77pi/pkg-plist Thu Oct 9 11:21:29 2014 (r370515) +++ head/comms/dcf77pi/pkg-plist Thu Oct 9 11:35:12 2014 (r370516) @@ -10,5 +10,3 @@ include/dcf77pi/input.h include/dcf77pi/mainloop.h include/dcf77pi/setclock.h lib/libdcf77.so -@dirrmtry %%ETCDIR%% -@dirrmtry include/dcf77pi Modified: head/emulators/fuse-utils/pkg-plist ============================================================================== --- head/emulators/fuse-utils/pkg-plist Thu Oct 9 11:21:29 2014 (r370515) +++ head/emulators/fuse-utils/pkg-plist Thu Oct 9 11:35:12 2014 (r370516) @@ -32,4 +32,3 @@ man/man1/profile2map.1.gz %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/emulators/fuse/pkg-plist ============================================================================== --- head/emulators/fuse/pkg-plist Thu Oct 9 11:21:29 2014 (r370515) +++ head/emulators/fuse/pkg-plist Thu Oct 9 11:35:12 2014 (r370516) @@ -58,26 +58,3 @@ man/man1/fuse.1.gz %%ICONS%%share/icons/hicolor/64x64/apps/fuse.png %%ICONS%%share/icons/hicolor/64x64/mimetypes/application-x-spectrum.png %%ICONS%%share/mime/packages/fuse.xml -%%ICONS%%@dirrmtry share/mime/packages -%%ICONS%%@dirrmtry share/mime -%%ICONS%%@dirrmtry share/icons/hicolor/64x64/mimetypes -%%ICONS%%@dirrmtry share/icons/hicolor/64x64/apps -%%ICONS%%@dirrmtry share/icons/hicolor/64x64 -%%ICONS%%@dirrmtry share/icons/hicolor/48x48/mimetypes -%%ICONS%%@dirrmtry share/icons/hicolor/48x48/apps -%%ICONS%%@dirrmtry share/icons/hicolor/48x48 -%%ICONS%%@dirrmtry share/icons/hicolor/32x32/mimetypes -%%ICONS%%@dirrmtry share/icons/hicolor/32x32/apps -%%ICONS%%@dirrmtry share/icons/hicolor/32x32 -%%ICONS%%@dirrmtry share/icons/hicolor/256x256/mimetypes -%%ICONS%%@dirrmtry share/icons/hicolor/256x256/apps -%%ICONS%%@dirrmtry share/icons/hicolor/256x256 -%%ICONS%%@dirrmtry share/icons/hicolor/16x16/mimetypes -%%ICONS%%@dirrmtry share/icons/hicolor/16x16/apps -%%ICONS%%@dirrmtry share/icons/hicolor/16x16 -%%ICONS%%@dirrmtry share/icons/hicolor/128x128/mimetypes -%%ICONS%%@dirrmtry share/icons/hicolor/128x128/apps -%%ICONS%%@dirrmtry share/icons/hicolor/128x128 -%%ICONS%%@dirrmtry share/icons/hicolor -%%ICONS%%@dirrmtry share/icons -@dirrmtry %%DATADIR%% Modified: head/emulators/libspectrum/pkg-plist ============================================================================== --- head/emulators/libspectrum/pkg-plist Thu Oct 9 11:21:29 2014 (r370515) +++ head/emulators/libspectrum/pkg-plist Thu Oct 9 11:35:12 2014 (r370516) @@ -9,4 +9,3 @@ man/man3/libspectrum.3.gz %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/THANKS %%PORTDOCS%%%%DOCSDIR%%/libspectrum.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% Modified: head/games/torcs/pkg-plist ============================================================================== --- head/games/torcs/pkg-plist Thu Oct 9 11:21:29 2014 (r370515) +++ head/games/torcs/pkg-plist Thu Oct 9 11:35:12 2014 (r370516) @@ -2776,263 +2776,3 @@ share/games/torcs/wheels/trb1-6/wheel1.a share/games/torcs/wheels/trb1-6/wheel2.acc share/games/torcs/wheels/trb1-6/wheel3.acc share/games/torcs/wheels/trb1-6/wheel3d.png -@dirrm share/games/torcs/wheels/trb1-6 -@dirrm share/games/torcs/wheels/trb1-5 -@dirrm share/games/torcs/wheels/trb1-4 -@dirrm share/games/torcs/wheels/trb1-3 -@dirrm share/games/torcs/wheels/trb1-2 -@dirrm share/games/torcs/wheels/trb1-1 -@dirrm share/games/torcs/wheels/stock1-3 -@dirrm share/games/torcs/wheels/stock1-2 -@dirrm share/games/torcs/wheels/stock1-1 -@dirrm share/games/torcs/wheels/openwheel1-1 -@dirrm share/games/torcs/wheels -@dirrm share/games/torcs/tracks/road/wheel-2 -@dirrm share/games/torcs/tracks/road/wheel-1 -@dirrm share/games/torcs/tracks/road/street-1 -@dirrm share/games/torcs/tracks/road/spring -@dirrm share/games/torcs/tracks/road/ruudskogen -@dirrm share/games/torcs/tracks/road/ole-road-1 -@dirrm share/games/torcs/tracks/road/g-track-3 -@dirrm share/games/torcs/tracks/road/g-track-2 -@dirrm share/games/torcs/tracks/road/g-track-1 -@dirrm share/games/torcs/tracks/road/forza -@dirrm share/games/torcs/tracks/road/eroad -@dirrm share/games/torcs/tracks/road/e-track-6 -@dirrm share/games/torcs/tracks/road/e-track-4 -@dirrm share/games/torcs/tracks/road/e-track-3 -@dirrm share/games/torcs/tracks/road/e-track-2 -@dirrm share/games/torcs/tracks/road/e-track-1 -@dirrm share/games/torcs/tracks/road/corkscrew -@dirrm share/games/torcs/tracks/road/brondehach -@dirrm share/games/torcs/tracks/road/alpine-2 -@dirrm share/games/torcs/tracks/road/alpine-1 -@dirrm share/games/torcs/tracks/road/aalborg -@dirrm share/games/torcs/tracks/road -@dirrm share/games/torcs/tracks/oval/michigan -@dirrm share/games/torcs/tracks/oval/g-speedway -@dirrm share/games/torcs/tracks/oval/f-speedway -@dirrm share/games/torcs/tracks/oval/e-track-5 -@dirrm share/games/torcs/tracks/oval/e-speedway -@dirrm share/games/torcs/tracks/oval/d-speedway -@dirrm share/games/torcs/tracks/oval/c-speedway -@dirrm share/games/torcs/tracks/oval/b-speedway -@dirrm share/games/torcs/tracks/oval/a-speedway -@dirrm share/games/torcs/tracks/oval -@dirrm share/games/torcs/tracks/dirt/mixed-2 -@dirrm share/games/torcs/tracks/dirt/mixed-1 -@dirrm share/games/torcs/tracks/dirt/dirt-6 -@dirrm share/games/torcs/tracks/dirt/dirt-5 -@dirrm share/games/torcs/tracks/dirt/dirt-4 -@dirrm share/games/torcs/tracks/dirt/dirt-3 -@dirrm share/games/torcs/tracks/dirt/dirt-2 -@dirrm share/games/torcs/tracks/dirt/dirt-1 -@dirrm share/games/torcs/tracks/dirt -@dirrm share/games/torcs/tracks -@dirrm share/games/torcs/telemetry -@dirrm share/games/torcs/results/quickrace -@dirrm share/games/torcs/results/practice -@dirrm share/games/torcs/results/ncrace -@dirrm share/games/torcs/results/endrace -@dirrm share/games/torcs/results/dtmrace -@dirrm share/games/torcs/results/champ -@dirrm share/games/torcs/results -@dirrm share/games/torcs/menu -@dirrm share/games/torcs/drivers/tita/9 -@dirrm share/games/torcs/drivers/tita/8 -@dirrm share/games/torcs/drivers/tita/7 -@dirrm share/games/torcs/drivers/tita/6 -@dirrm share/games/torcs/drivers/tita/5 -@dirrm share/games/torcs/drivers/tita/4 -@dirrm share/games/torcs/drivers/tita/3 -@dirrm share/games/torcs/drivers/tita/2 -@dirrm share/games/torcs/drivers/tita/10 -@dirrm share/games/torcs/drivers/tita/1 -@dirrm share/games/torcs/drivers/tita -@dirrm share/games/torcs/drivers/sparkle/0 -@dirrm share/games/torcs/drivers/sparkle -@dirrm share/games/torcs/drivers/olethros/9 -@dirrm share/games/torcs/drivers/olethros/8 -@dirrm share/games/torcs/drivers/olethros/7 -@dirrm share/games/torcs/drivers/olethros/6 -@dirrm share/games/torcs/drivers/olethros/5 -@dirrm share/games/torcs/drivers/olethros/4 -@dirrm share/games/torcs/drivers/olethros/3 -@dirrm share/games/torcs/drivers/olethros/2 -@dirrm share/games/torcs/drivers/olethros/1 -@dirrm share/games/torcs/drivers/olethros/0 -@dirrm share/games/torcs/drivers/olethros -@dirrm share/games/torcs/drivers/lliaw/9 -@dirrm share/games/torcs/drivers/lliaw/8 -@dirrm share/games/torcs/drivers/lliaw/7 -@dirrm share/games/torcs/drivers/lliaw/6 -@dirrm share/games/torcs/drivers/lliaw/5 -@dirrm share/games/torcs/drivers/lliaw/4 -@dirrm share/games/torcs/drivers/lliaw/3 -@dirrm share/games/torcs/drivers/lliaw/2 -@dirrm share/games/torcs/drivers/lliaw/10 -@dirrm share/games/torcs/drivers/lliaw/1 -@dirrm share/games/torcs/drivers/lliaw -@dirrm share/games/torcs/drivers/inferno2/9 -@dirrm share/games/torcs/drivers/inferno2/8 -@dirrm share/games/torcs/drivers/inferno2/7 -@dirrm share/games/torcs/drivers/inferno2/6 -@dirrm share/games/torcs/drivers/inferno2/5 -@dirrm share/games/torcs/drivers/inferno2/4 -@dirrm share/games/torcs/drivers/inferno2/3 -@dirrm share/games/torcs/drivers/inferno2/2 -@dirrm share/games/torcs/drivers/inferno2/10 -@dirrm share/games/torcs/drivers/inferno2/1 -@dirrm share/games/torcs/drivers/inferno2 -@dirrm share/games/torcs/drivers/inferno/9 -@dirrm share/games/torcs/drivers/inferno/8 -@dirrm share/games/torcs/drivers/inferno/7 -@dirrm share/games/torcs/drivers/inferno/6 -@dirrm share/games/torcs/drivers/inferno/5 -@dirrm share/games/torcs/drivers/inferno/4 -@dirrm share/games/torcs/drivers/inferno/3 -@dirrm share/games/torcs/drivers/inferno/2 -@dirrm share/games/torcs/drivers/inferno/10 -@dirrm share/games/torcs/drivers/inferno/1 -@dirrm share/games/torcs/drivers/inferno -@dirrm share/games/torcs/drivers/human/tracks/dirt-2 -@dirrm share/games/torcs/drivers/human/tracks -@dirrm share/games/torcs/drivers/human -@dirrm share/games/torcs/drivers/damned/9 -@dirrm share/games/torcs/drivers/damned/8 -@dirrm share/games/torcs/drivers/damned/7 -@dirrm share/games/torcs/drivers/damned/6 -@dirrm share/games/torcs/drivers/damned/5 -@dirrm share/games/torcs/drivers/damned/4 -@dirrm share/games/torcs/drivers/damned/3 -@dirrm share/games/torcs/drivers/damned/2 -@dirrm share/games/torcs/drivers/damned/1 -@dirrm share/games/torcs/drivers/damned/0 -@dirrm share/games/torcs/drivers/damned -@dirrm share/games/torcs/drivers/bt/9 -@dirrm share/games/torcs/drivers/bt/8 -@dirrm share/games/torcs/drivers/bt/7 -@dirrm share/games/torcs/drivers/bt/6 -@dirrm share/games/torcs/drivers/bt/5 -@dirrm share/games/torcs/drivers/bt/4 -@dirrm share/games/torcs/drivers/bt/3 -@dirrm share/games/torcs/drivers/bt/2 -@dirrm share/games/torcs/drivers/bt/1/race -@dirrm share/games/torcs/drivers/bt/1/qualifying -@dirrm share/games/torcs/drivers/bt/1/practice -@dirrm share/games/torcs/drivers/bt/1 -@dirrm share/games/torcs/drivers/bt/0/race -@dirrm share/games/torcs/drivers/bt/0/qualifying -@dirrm share/games/torcs/drivers/bt/0/practice -@dirrm share/games/torcs/drivers/bt/0 -@dirrm share/games/torcs/drivers/bt -@dirrm share/games/torcs/drivers/berniw3/9 -@dirrm share/games/torcs/drivers/berniw3/8 -@dirrm share/games/torcs/drivers/berniw3/7 -@dirrm share/games/torcs/drivers/berniw3/6 -@dirrm share/games/torcs/drivers/berniw3/5 -@dirrm share/games/torcs/drivers/berniw3/4 -@dirrm share/games/torcs/drivers/berniw3/3 -@dirrm share/games/torcs/drivers/berniw3/2 -@dirrm share/games/torcs/drivers/berniw3/10 -@dirrm share/games/torcs/drivers/berniw3/1 -@dirrm share/games/torcs/drivers/berniw3 -@dirrm share/games/torcs/drivers/berniw2/9 -@dirrm share/games/torcs/drivers/berniw2/8 -@dirrm share/games/torcs/drivers/berniw2/7 -@dirrm share/games/torcs/drivers/berniw2/6 -@dirrm share/games/torcs/drivers/berniw2/5 -@dirrm share/games/torcs/drivers/berniw2/4 -@dirrm share/games/torcs/drivers/berniw2/3 -@dirrm share/games/torcs/drivers/berniw2/2 -@dirrm share/games/torcs/drivers/berniw2/10 -@dirrm share/games/torcs/drivers/berniw2/1 -@dirrm share/games/torcs/drivers/berniw2 -@dirrm share/games/torcs/drivers/berniw/9 -@dirrm share/games/torcs/drivers/berniw/8 -@dirrm share/games/torcs/drivers/berniw/7 -@dirrm share/games/torcs/drivers/berniw/6 -@dirrm share/games/torcs/drivers/berniw/5 -@dirrm share/games/torcs/drivers/berniw/4 -@dirrm share/games/torcs/drivers/berniw/3 -@dirrm share/games/torcs/drivers/berniw/2 -@dirrm share/games/torcs/drivers/berniw/10 -@dirrm share/games/torcs/drivers/berniw/1 -@dirrm share/games/torcs/drivers/berniw -@dirrm share/games/torcs/drivers -@dirrm share/games/torcs/data/tracks -@dirrm share/games/torcs/data/textures -@dirrm share/games/torcs/data/sound -@dirrm share/games/torcs/data/objects -@dirrm share/games/torcs/data/music -@dirrm share/games/torcs/data/img -@dirrm share/games/torcs/data/fonts -@dirrm share/games/torcs/data -@dirrm share/games/torcs/config/raceman -@dirrm share/games/torcs/config -@dirrm share/games/torcs/categories -@dirrm share/games/torcs/cars/pw-imprezawrc -@dirrm share/games/torcs/cars/pw-focuswrc -@dirrm share/games/torcs/cars/pw-evoviwrc -@dirrm share/games/torcs/cars/pw-corollawrc -@dirrm share/games/torcs/cars/pw-306wrc -@dirrm share/games/torcs/cars/pw-206wrc -@dirrm share/games/torcs/cars/p406 -@dirrm share/games/torcs/cars/kc-p4 -@dirrm share/games/torcs/cars/kc-gto -@dirrm share/games/torcs/cars/kc-gt40 -@dirrm share/games/torcs/cars/kc-grifo -@dirrm share/games/torcs/cars/kc-giulietta -@dirrm share/games/torcs/cars/kc-ghibli -@dirrm share/games/torcs/cars/kc-dino -@dirrm share/games/torcs/cars/kc-dbs -@dirrm share/games/torcs/cars/kc-db4z -@dirrm share/games/torcs/cars/kc-daytona -@dirrm share/games/torcs/cars/kc-corvette-ttop -@dirrm share/games/torcs/cars/kc-conrero -@dirrm share/games/torcs/cars/kc-coda -@dirrm share/games/torcs/cars/kc-cobra -@dirrm share/games/torcs/cars/kc-bigh -@dirrm share/games/torcs/cars/kc-alfatz2 -@dirrm share/games/torcs/cars/kc-a110 -@dirrm share/games/torcs/cars/kc-5300gt -@dirrm share/games/torcs/cars/kc-2000gt -@dirrm share/games/torcs/cars/car8-trb1 -@dirrm share/games/torcs/cars/car7-trb1 -@dirrm share/games/torcs/cars/car6-trb1 -@dirrm share/games/torcs/cars/car5-trb1 -@dirrm share/games/torcs/cars/car4-trb1 -@dirrm share/games/torcs/cars/car3-trb1 -@dirrm share/games/torcs/cars/car2-trb1 -@dirrm share/games/torcs/cars/car1-trb3 -@dirrm share/games/torcs/cars/car1-trb1 -@dirrm share/games/torcs/cars/car1-stock2 -@dirrm share/games/torcs/cars/car1-stock1 -@dirrm share/games/torcs/cars/car1-ow1 -@dirrm share/games/torcs/cars/buggy -@dirrm share/games/torcs/cars/baja-bug -@dirrm share/games/torcs/cars/acura-nsx-sz -@dirrm share/games/torcs/cars/155-DTM -@dirrm share/games/torcs/cars -@dirrm share/games/torcs -@dirrmtry share/games -@dirrm lib/torcs/modules/track -@dirrm lib/torcs/modules/telemetry -@dirrm lib/torcs/modules/simu -@dirrm lib/torcs/modules/graphic -@dirrm lib/torcs/modules -@dirrm lib/torcs/lib -@dirrm lib/torcs/drivers/tita -@dirrm lib/torcs/drivers/sparkle -@dirrm lib/torcs/drivers/olethros -@dirrm lib/torcs/drivers/lliaw -@dirrm lib/torcs/drivers/inferno2 -@dirrm lib/torcs/drivers/inferno -@dirrm lib/torcs/drivers/human -@dirrm lib/torcs/drivers/damned -@dirrm lib/torcs/drivers/bt -@dirrm lib/torcs/drivers/berniw3 -@dirrm lib/torcs/drivers/berniw2 -@dirrm lib/torcs/drivers/berniw -@dirrm lib/torcs/drivers -@dirrm lib/torcs From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 11:53:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE7BB486; Thu, 9 Oct 2014 11:53:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA99910B; Thu, 9 Oct 2014 11:53:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99BrNLn039205; Thu, 9 Oct 2014 11:53:23 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99BrNI9039203; Thu, 9 Oct 2014 11:53:23 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201410091153.s99BrNI9039203@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Thu, 9 Oct 2014 11:53:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370517 - head/devel/pecl-event X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 11:53:23 -0000 Author: robak Date: Thu Oct 9 11:53:22 2014 New Revision: 370517 URL: https://svnweb.freebsd.org/changeset/ports/370517 QAT: https://qat.redports.org/buildarchive/r370517/ Log: devel/pecl-event: update 1.9.0 -> 1.10.3 PR: 194159 Submitted by: John Chen Approved by: mentors (implicit) Modified: head/devel/pecl-event/Makefile head/devel/pecl-event/distinfo Modified: head/devel/pecl-event/Makefile ============================================================================== --- head/devel/pecl-event/Makefile Thu Oct 9 11:35:12 2014 (r370516) +++ head/devel/pecl-event/Makefile Thu Oct 9 11:53:22 2014 (r370517) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= event -PORTVERSION= 1.9.0 -PORTREVISION= 1 +PORTVERSION= 1.10.3 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/devel/pecl-event/distinfo ============================================================================== --- head/devel/pecl-event/distinfo Thu Oct 9 11:35:12 2014 (r370516) +++ head/devel/pecl-event/distinfo Thu Oct 9 11:53:22 2014 (r370517) @@ -1,2 +1,2 @@ -SHA256 (PECL/event-1.9.0.tgz) = 590009f64402a510603039dc076f1f8aaa17b7cadfa694475a2a8802d58e5881 -SIZE (PECL/event-1.9.0.tgz) = 75516 +SHA256 (PECL/event-1.10.3.tgz) = f1955c7f470829024e2f816a2a4c5201bbef3c673e49e7d25a24e248011225be +SIZE (PECL/event-1.10.3.tgz) = 77532 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:35:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98F2EE60; Thu, 9 Oct 2014 12:35:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AEC1798; Thu, 9 Oct 2014 12:35:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99CZSA1058232; Thu, 9 Oct 2014 12:35:28 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CZRMX058228; Thu, 9 Oct 2014 12:35:27 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201410091235.s99CZRMX058228@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Thu, 9 Oct 2014 12:35:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370518 - in head/www: . py-http-parser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 12:35:28 -0000 Author: vg Date: Thu Oct 9 12:35:26 2014 New Revision: 370518 URL: https://svnweb.freebsd.org/changeset/ports/370518 QAT: https://qat.redports.org/buildarchive/r370518/ Log: HTTP request/response parser for Python compatible with Python 2.x (>=2.6), Python 3 and Pypy. If possible a C parser based on http-parser from Ryan Dahl will be used. WWW: https://github.com/benoitc/http-parser/ Added: head/www/py-http-parser/ head/www/py-http-parser/Makefile (contents, props changed) head/www/py-http-parser/distinfo (contents, props changed) head/www/py-http-parser/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Oct 9 11:53:22 2014 (r370517) +++ head/www/Makefile Thu Oct 9 12:35:26 2014 (r370518) @@ -1542,6 +1542,7 @@ SUBDIR += py-grequests SUBDIR += py-gunicorn SUBDIR += py-html5lib + SUBDIR += py-http-parser SUBDIR += py-httplib2 SUBDIR += py-imdbpy SUBDIR += py-jonpy Added: head/www/py-http-parser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-http-parser/Makefile Thu Oct 9 12:35:26 2014 (r370518) @@ -0,0 +1,21 @@ +# Created by: Veniamin Gvozdikov +# $FreeBSD$ + +PORTNAME= http-parser +PORTVERSION= 0.8.3 +CATEGORIES= www +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vg@FreeBSD.org +COMMENT= HTTP request/response parser for python in C + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +post-build: + @${STRIP_CMD} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/http_parser/parser.so + +.include Added: head/www/py-http-parser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-http-parser/distinfo Thu Oct 9 12:35:26 2014 (r370518) @@ -0,0 +1,2 @@ +SHA256 (http-parser-0.8.3.tar.gz) = e2aff90a60def3e476bd71694d8757c0f95ebf2fedf0a8ae34ee306e0b20db83 +SIZE (http-parser-0.8.3.tar.gz) = 83040 Added: head/www/py-http-parser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-http-parser/pkg-descr Thu Oct 9 12:35:26 2014 (r370518) @@ -0,0 +1,5 @@ +HTTP request/response parser for Python compatible with Python 2.x (>=2.6), +Python 3 and Pypy. If possible a C parser based on http-parser +from Ryan Dahl will be used. + +WWW: https://github.com/benoitc/http-parser/ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:38:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92CB11CD; Thu, 9 Oct 2014 12:38:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6584D810; Thu, 9 Oct 2014 12:38:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99Cct2k058777; Thu, 9 Oct 2014 12:38:55 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CctFN058776; Thu, 9 Oct 2014 12:38:55 GMT (envelope-from db@FreeBSD.org) Message-Id: <201410091238.s99CctFN058776@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Thu, 9 Oct 2014 12:38:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370519 - head/comms/wspr/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 12:38:55 -0000 Author: db Date: Thu Oct 9 12:38:54 2014 New Revision: 370519 URL: https://svnweb.freebsd.org/changeset/ports/370519 QAT: https://qat.redports.org/buildarchive/r370519/ Log: - delete bogus old patch Deleted: head/comms/wspr/files/patch-wspr.py From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:48:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F31149C; Thu, 9 Oct 2014 12:48:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5FFE4915; Thu, 9 Oct 2014 12:48:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99CmWJx063532; Thu, 9 Oct 2014 12:48:32 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CmVWn063529; Thu, 9 Oct 2014 12:48:31 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201410091248.s99CmVWn063529@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 9 Oct 2014 12:48:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370520 - in head/lang/erlang-runtime17: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 12:48:32 -0000 Author: olgeni Date: Thu Oct 9 12:48:31 2014 New Revision: 370520 URL: https://svnweb.freebsd.org/changeset/ports/370520 QAT: https://qat.redports.org/buildarchive/r370520/ Log: Fix SSL handshake when SNI-extension is empty. While I'm here: - Reduce diff with the main Erlang port - Do not mute install commands PR: 194214 Submitted by: Dave Cottlehuber Added: head/lang/erlang-runtime17/files/patch-lib_ssl_src_ssl__handshake.erl (contents, props changed) head/lang/erlang-runtime17/files/patch-lib_ssl_test_ssl__handshake__SUITE.erl (contents, props changed) Modified: head/lang/erlang-runtime17/Makefile Modified: head/lang/erlang-runtime17/Makefile ============================================================================== --- head/lang/erlang-runtime17/Makefile Thu Oct 9 12:38:54 2014 (r370519) +++ head/lang/erlang-runtime17/Makefile Thu Oct 9 12:48:31 2014 (r370520) @@ -3,6 +3,7 @@ PORTNAME= erlang PORTVERSION= 17.3 +PORTREVISION= 1 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ http://erlang.stacken.kth.se/download/:erlangorg \ @@ -37,7 +38,7 @@ SCTP_DESC= Enable SCTP support SMP_DESC= Enable SMP support WX_DESC= Enable WX application GS_DESC= Enable GS application (deprecated) -DTRACE_DESC= Enable DTrace support (experimental) +DTRACE_DESC= Enable DTrace support OPTIONS_DEFAULT=SMP OPENSSL THREADS SCTP KQUEUE @@ -62,9 +63,11 @@ DISTFILES+= ${ERLANG_DOCS}:erlangorg # probes fixed does not match the number of defined probes (54 != 132, # respectively)" you probably misconfigured DTrace in some way. +.if ${OSVERSION} < 1000000 .if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} && ! ${PORT_OPTIONS:MGCC} IGNORE= DTRACE support on amd64 requires GCC option .endif +.endif .if ${PORT_OPTIONS:MGCC} USE_GCC?= yes @@ -165,12 +168,12 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} \ "man/man$${SECTION}/*.$${SECTION}" || ${TRUE}; \ done - @${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? + ${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? .if ${PORT_OPTIONS:MDOCS} - @${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ + ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} - @${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ + ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ .endif Added: head/lang/erlang-runtime17/files/patch-lib_ssl_src_ssl__handshake.erl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/erlang-runtime17/files/patch-lib_ssl_src_ssl__handshake.erl Thu Oct 9 12:48:31 2014 (r370520) @@ -0,0 +1,15 @@ + +$FreeBSD$ + +--- lib/ssl/src/ssl_handshake.erl.orig ++++ lib/ssl/src/ssl_handshake.erl +@@ -1732,6 +1732,9 @@ + #ec_point_formats{ec_point_format_list = + ECPointFormats}}); + ++dec_hello_extensions(<>, Acc) when Len == 0 -> ++ dec_hello_extensions(Rest, Acc#hello_extensions{sni = ""}); %% Server may send an empy SNI ++ + dec_hello_extensions(<>, Acc) -> + <> = ExtData, Added: head/lang/erlang-runtime17/files/patch-lib_ssl_test_ssl__handshake__SUITE.erl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/erlang-runtime17/files/patch-lib_ssl_test_ssl__handshake__SUITE.erl Thu Oct 9 12:48:31 2014 (r370520) @@ -0,0 +1,27 @@ + +$FreeBSD$ + +--- lib/ssl/test/ssl_handshake_SUITE.erl.orig ++++ lib/ssl/test/ssl_handshake_SUITE.erl +@@ -39,6 +39,7 @@ + decode_unknown_hello_extension_correctly, + encode_single_hello_sni_extension_correctly, + decode_single_hello_sni_extension_correctly, ++ decode_empty_server_sni_correctly, + select_proper_tls_1_2_rsa_default_hashsign]. + + %%-------------------------------------------------------------------- +@@ -106,6 +107,13 @@ + Decoded = ssl_handshake:decode_hello_extensions(SNI), + Exts = Decoded. + ++decode_empty_server_sni_correctly(_Config) -> ++ Exts = #hello_extensions{sni = ""}, ++ SNI = <>, ++ Decoded = ssl_handshake:decode_hello_extensions(SNI), ++ Exts = Decoded. ++ ++ + select_proper_tls_1_2_rsa_default_hashsign(_Config) -> + % RFC 5246 section 7.4.1.4.1 tells to use {sha1,rsa} as default signature_algorithm for RSA key exchanges + {sha, rsa} = ssl_handshake:select_hashsign_algs(undefined, ?rsaEncryption, {3,3}), From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:50:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D7985A7; Thu, 9 Oct 2014 12:50:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F2D399B8; Thu, 9 Oct 2014 12:50:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99CotK4066331; Thu, 9 Oct 2014 12:50:55 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CotAe066327; Thu, 9 Oct 2014 12:50:55 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201410091250.s99CotAe066327@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 9 Oct 2014 12:50:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370521 - in head/lang/erlang: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 12:50:56 -0000 Author: olgeni Date: Thu Oct 9 12:50:54 2014 New Revision: 370521 URL: https://svnweb.freebsd.org/changeset/ports/370521 QAT: https://qat.redports.org/buildarchive/r370521/ Log: Fix SSL handshake when SNI-extension is empty. While I'm here: - Cleanup plist - Unmute an install command PR: 194214 Submitted by: Dave Cottlehuber Added: head/lang/erlang/files/patch-lib_ssl_src_ssl__handshake.erl (contents, props changed) head/lang/erlang/files/patch-lib_ssl_test_ssl__handshake__SUITE.erl (contents, props changed) Modified: head/lang/erlang/Makefile head/lang/erlang/pkg-plist (contents, props changed) Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Thu Oct 9 12:48:31 2014 (r370520) +++ head/lang/erlang/Makefile Thu Oct 9 12:50:54 2014 (r370521) @@ -3,6 +3,7 @@ PORTNAME= erlang PORTVERSION= 17.3 +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= lang parallel java MASTER_SITES= http://www.erlang.org/download/:erlangorg \ @@ -140,7 +141,6 @@ CONFIGURE_ARGS+=--without-odbc ERLANG_MAN= otp_doc_man_${ERL_RELEASE}.tar.gz ERLANG_DOCS= otp_doc_html_${ERL_RELEASE}.tar.gz -ERLANG_PLIST= ${WRKDIR}/pkg-plist .if ${PORT_OPTIONS:MTHREADS} CONFIGURE_ARGS+=--enable-threads @@ -188,7 +188,7 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} \ "man/man$${SECTION}/*.$${SECTION}" || ${TRUE}; \ done - @${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? + ${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? .if ${PORT_OPTIONS:MDOCS} ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ @@ -203,23 +203,11 @@ post-install: @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type d -empty \ | ${SORT} \ - | ${SED} -e 's#^#@exec ${MKDIR} %D/#g' \ - > ${ERLANG_PLIST} + | ${SED} -e 's#^#@dir #g' \ + >> ${TMPPLIST} @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type f -o -type l \ | ${SORT} \ - >> ${ERLANG_PLIST} - - @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/${ERLANG_LIB}/* -type d \ - | ${SORT} -r \ - | ${SED} -e 's/^/@dirrm /g' \ - >> ${ERLANG_PLIST} - - @${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script - @${ECHO_CMD} "/Insert PLIST here" >> ${WRKDIR}/ex.script - @${ECHO_CMD} "d" >> ${WRKDIR}/ex.script - @${ECHO_CMD} "r ${ERLANG_PLIST}" >> ${WRKDIR}/ex.script - @${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script - @cd ${WRKDIR}; ex < ex.script + >> ${TMPPLIST} .include Added: head/lang/erlang/files/patch-lib_ssl_src_ssl__handshake.erl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/erlang/files/patch-lib_ssl_src_ssl__handshake.erl Thu Oct 9 12:50:54 2014 (r370521) @@ -0,0 +1,15 @@ + +$FreeBSD$ + +--- lib/ssl/src/ssl_handshake.erl.orig ++++ lib/ssl/src/ssl_handshake.erl +@@ -1732,6 +1732,9 @@ + #ec_point_formats{ec_point_format_list = + ECPointFormats}}); + ++dec_hello_extensions(<>, Acc) when Len == 0 -> ++ dec_hello_extensions(Rest, Acc#hello_extensions{sni = ""}); %% Server may send an empy SNI ++ + dec_hello_extensions(<>, Acc) -> + <> = ExtData, Added: head/lang/erlang/files/patch-lib_ssl_test_ssl__handshake__SUITE.erl ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/erlang/files/patch-lib_ssl_test_ssl__handshake__SUITE.erl Thu Oct 9 12:50:54 2014 (r370521) @@ -0,0 +1,27 @@ + +$FreeBSD$ + +--- lib/ssl/test/ssl_handshake_SUITE.erl.orig ++++ lib/ssl/test/ssl_handshake_SUITE.erl +@@ -39,6 +39,7 @@ + decode_unknown_hello_extension_correctly, + encode_single_hello_sni_extension_correctly, + decode_single_hello_sni_extension_correctly, ++ decode_empty_server_sni_correctly, + select_proper_tls_1_2_rsa_default_hashsign]. + + %%-------------------------------------------------------------------- +@@ -106,6 +107,13 @@ + Decoded = ssl_handshake:decode_hello_extensions(SNI), + Exts = Decoded. + ++decode_empty_server_sni_correctly(_Config) -> ++ Exts = #hello_extensions{sni = ""}, ++ SNI = <>, ++ Decoded = ssl_handshake:decode_hello_extensions(SNI), ++ Exts = Decoded. ++ ++ + select_proper_tls_1_2_rsa_default_hashsign(_Config) -> + % RFC 5246 section 7.4.1.4.1 tells to use {sha1,rsa} as default signature_algorithm for RSA key exchanges + {sha, rsa} = ssl_handshake:select_hashsign_algs(undefined, ?rsaEncryption, {3,3}), Modified: head/lang/erlang/pkg-plist ============================================================================== --- head/lang/erlang/pkg-plist Thu Oct 9 12:48:31 2014 (r370520) +++ head/lang/erlang/pkg-plist Thu Oct 9 12:50:54 2014 (r370521) @@ -9,14 +9,9 @@ bin/run_erl bin/to_erl bin/typer etc/man.d/erlang.conf -@comment Insert PLIST here -@comment -=[ begin PLIST.lib-erlang ]=- -@comment -=[ end PLIST.lib-erlang ]=- -@dirrmtry lib/%%ERLANG_LIB%% %%PORTDOCS%%%%DOCSDIR%%/armstrong_thesis_2003.pdf %%PORTDOCS%%%%DOCSDIR%%/bjarnelic.pdf %%PORTDOCS%%%%DOCSDIR%%/erlang-book-part1.pdf %%PORTDOCS%%%%DOCSDIR%%/master_thesis_patterns.pdf %%PORTDOCS%%%%DOCSDIR%%/mnesia_overview.pdf %%PORTDOCS%%%%DOCSDIR%%/programming_rules.pdf -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:53:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 94CD86E3; Thu, 9 Oct 2014 12:53:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 806BE9E3; Thu, 9 Oct 2014 12:53:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99CrhPs067869; Thu, 9 Oct 2014 12:53:43 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CrhMZ067867; Thu, 9 Oct 2014 12:53:43 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201410091253.s99CrhMZ067867@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Thu, 9 Oct 2014 12:53:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370522 - in head/lang: erlang-runtime15 erlang-runtime16 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 12:53:43 -0000 Author: olgeni Date: Thu Oct 9 12:53:42 2014 New Revision: 370522 URL: https://svnweb.freebsd.org/changeset/ports/370522 QAT: https://qat.redports.org/buildarchive/r370522/ Log: Reduce diff with the main Erlang port and unmute install commands. Modified: head/lang/erlang-runtime15/Makefile head/lang/erlang-runtime16/Makefile Modified: head/lang/erlang-runtime15/Makefile ============================================================================== --- head/lang/erlang-runtime15/Makefile Thu Oct 9 12:50:54 2014 (r370521) +++ head/lang/erlang-runtime15/Makefile Thu Oct 9 12:53:42 2014 (r370522) @@ -38,13 +38,14 @@ SCTP_DESC= Enable SCTP support SMP_DESC= Enable SMP support WX_DESC= Enable WX application GS_DESC= Enable GS application (deprecated) -DTRACE_DESC= Enable DTrace support (experimental) +DTRACE_DESC= Enable DTrace support OPTIONS_DEFAULT=SMP OPENSSL THREADS SCTP KQUEUE ERL_RELEASE= R${PORTVERSION:S/.//g:tu:S/1$/-1/} USES= gmake perl5 +USE_AUTOTOOLS= autoconf:env GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib @@ -62,9 +63,11 @@ DISTFILES+= ${ERLANG_DOCS}:erlangorg # probes fixed does not match the number of defined probes (54 != 132, # respectively)" you probably misconfigured DTrace in some way. +.if ${OSVERSION} < 1000000 .if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} && ! ${PORT_OPTIONS:MGCC} IGNORE= DTRACE support on amd64 requires GCC option .endif +.endif .if ${PORT_OPTIONS:MGCC} USE_GCC?= yes @@ -160,17 +163,17 @@ MAKE_ARGS+= ARCH=x86 # links in the documentation. post-install: - @for SECTION in 1 3 4 6; do \ + for SECTION in 1 3 4 6; do \ ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_MAN} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} \ "man/man$${SECTION}/*.$${SECTION}" || ${TRUE}; \ done - @${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? + ${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? .if ${PORT_OPTIONS:MDOCS} - @${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ + ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} - @${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ + ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ .endif Modified: head/lang/erlang-runtime16/Makefile ============================================================================== --- head/lang/erlang-runtime16/Makefile Thu Oct 9 12:50:54 2014 (r370521) +++ head/lang/erlang-runtime16/Makefile Thu Oct 9 12:53:42 2014 (r370522) @@ -38,13 +38,14 @@ SCTP_DESC= Enable SCTP support SMP_DESC= Enable SMP support WX_DESC= Enable WX application GS_DESC= Enable GS application (deprecated) -DTRACE_DESC= Enable DTrace support (experimental) +DTRACE_DESC= Enable DTrace support OPTIONS_DEFAULT=SMP OPENSSL THREADS SCTP KQUEUE ERL_RELEASE= R${PORTVERSION:S/.//g:tu:S/1$/-1/} USES= gmake perl5 +USE_AUTOTOOLS= autoconf:env GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib @@ -62,9 +63,11 @@ DISTFILES+= ${ERLANG_DOCS}:erlangorg # probes fixed does not match the number of defined probes (54 != 132, # respectively)" you probably misconfigured DTrace in some way. +.if ${OSVERSION} < 1000000 .if ${ARCH} == "amd64" && ${PORT_OPTIONS:MDTRACE} && ! ${PORT_OPTIONS:MGCC} IGNORE= DTRACE support on amd64 requires GCC option .endif +.endif .if ${PORT_OPTIONS:MGCC} USE_GCC?= yes @@ -165,12 +168,12 @@ post-install: -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} \ "man/man$${SECTION}/*.$${SECTION}" || ${TRUE}; \ done - @${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? + ${RM} -rf ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/man/cat? .if ${PORT_OPTIONS:MDOCS} - @${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ + ${TAR} --unlink -xzpf ${DISTDIR}/${DIST_SUBDIR}/${ERLANG_DOCS} \ -C ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB} - @${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ + ${INSTALL_DATA} ${WRKSRC}/lib/dialyzer/doc/*.txt \ ${STAGEDIR}${PREFIX}/lib/${ERLANG_LIB}/lib/dialyzer-*/doc/ .endif From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 12:58:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28A50916; Thu, 9 Oct 2014 12:58:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0B1F9A15; Thu, 9 Oct 2014 12:58:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99Cwua9068728; Thu, 9 Oct 2014 12:58:56 GMT (envelope-from vg@FreeBSD.org) Received: (from vg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99CwuFa068722; Thu, 9 Oct 2014 12:58:56 GMT (envelope-from vg@FreeBSD.org) Message-Id: <201410091258.s99CwuFa068722@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vg set sender to vg@FreeBSD.org using -f From: Veniamin Gvozdikov Date: Thu, 9 Oct 2014 12:58:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370523 - in head/devel: . py-palm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 12:58:57 -0000 Author: vg Date: Thu Oct 9 12:58:55 2014 New Revision: 370523 URL: https://svnweb.freebsd.org/changeset/ports/370523 QAT: https://qat.redports.org/buildarchive/r370523/ Log: PALM is a library for using Google's protocol buffers in Python. It has a fast core written in C with a thin Cython binding to Python. The goal of palm was to make improvements to the Google reference implementation, namely: * Make the library significantly faster * Clean up the API WWW: https://github.com/bumptech/palm/ Added: head/devel/py-palm/ head/devel/py-palm/Makefile (contents, props changed) head/devel/py-palm/distinfo (contents, props changed) head/devel/py-palm/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 9 12:53:42 2014 (r370522) +++ head/devel/Makefile Thu Oct 9 12:58:55 2014 (r370523) @@ -3815,6 +3815,7 @@ SUBDIR += py-optik SUBDIR += py-orbit SUBDIR += py-ordereddict + SUBDIR += py-palm SUBDIR += py-parsedatetime SUBDIR += py-parsing SUBDIR += py-path.py Added: head/devel/py-palm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-palm/Makefile Thu Oct 9 12:58:55 2014 (r370523) @@ -0,0 +1,21 @@ +# Created by: Veniamin Gvozdikov +# $FreeBSD$ + +PORTNAME= palm +PORTVERSION= 0.1.7 +CATEGORIES= devel +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= vg@FreeBSD.org +COMMENT= Protobufs Are Lightweight Messages + +LICENSE= BSD2CLAUSE + +USES= python +USE_PYTHON= autoplist distutils + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_LIBDIR}/site-packages/${PORTNAME}/${PORTNAME}.so + +.include Added: head/devel/py-palm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-palm/distinfo Thu Oct 9 12:58:55 2014 (r370523) @@ -0,0 +1,2 @@ +SHA256 (palm-0.1.7.tar.gz) = 4d6f4cb18ae861ac99c27abb454fdce06a627aa326fb6d8e81ce2c5d0f483ac7 +SIZE (palm-0.1.7.tar.gz) = 97062 Added: head/devel/py-palm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-palm/pkg-descr Thu Oct 9 12:58:55 2014 (r370523) @@ -0,0 +1,8 @@ +PALM is a library for using Google's protocol buffers in Python. It has +a fast core written in C with a thin Cython binding to Python. The goal +of palm was to make improvements to the Google reference implementation, +namely: + * Make the library significantly faster + * Clean up the API + +WWW: https://github.com/bumptech/palm/ From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 13:09:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55B1DAFE; Thu, 9 Oct 2014 13:09:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42864B0D; Thu, 9 Oct 2014 13:09:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99D9rTW073803; Thu, 9 Oct 2014 13:09:53 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99D9qGv073802; Thu, 9 Oct 2014 13:09:52 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410091309.s99D9qGv073802@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 9 Oct 2014 13:09:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370524 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 13:09:53 -0000 Author: feld Date: Thu Oct 9 13:09:52 2014 New Revision: 370524 URL: https://svnweb.freebsd.org/changeset/ports/370524 QAT: https://qat.redports.org/buildarchive/r370524/ Log: Add entry for foreman-proxy Obtained from: mmoll Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Oct 9 12:58:55 2014 (r370523) +++ head/security/vuxml/vuln.xml Thu Oct 9 13:09:52 2014 (r370524) @@ -57,6 +57,36 @@ Notes: --> + + foreman-proxy SSL verification issue + + + foreman-proxy + 1.6.2 + + + + +

Foreman Security reports:

+
+

The smart proxy when running in an SSL-secured mode permits incoming + API calls to any endpoint without requiring, or performing any + verification of an SSL client certificate. This permits any client + with access to the API to make requests and perform actions + permitting control of Puppet CA, DHCP, DNS etc.)

+
+ +
+ + CVE-2014-3691 + https://groups.google.com/forum/#!topic/foreman-announce/LcjZx25Bl7U + + + 2014-05-09 + 2014-10-09 + +
+ chromium -- multiple vulnerabilities From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 13:17:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20CD6C7D; Thu, 9 Oct 2014 13:17:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0CE69BEC; Thu, 9 Oct 2014 13:17:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99DHQEZ078252; Thu, 9 Oct 2014 13:17:26 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99DHQB4078251; Thu, 9 Oct 2014 13:17:26 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410091317.s99DHQB4078251@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 9 Oct 2014 13:17:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370525 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 13:17:27 -0000 Author: feld Date: Thu Oct 9 13:17:26 2014 New Revision: 370525 URL: https://svnweb.freebsd.org/changeset/ports/370525 QAT: https://qat.redports.org/buildarchive/r370525/ Log: Convert USE_PYTHON_RUN to new USES syntax; Appease the angry DEVELOPER=YES god Approved by: mat Modified: head/security/vuxml/Makefile Modified: head/security/vuxml/Makefile ============================================================================== --- head/security/vuxml/Makefile Thu Oct 9 13:09:52 2014 (r370524) +++ head/security/vuxml/Makefile Thu Oct 9 13:17:26 2014 (r370525) @@ -20,7 +20,7 @@ RUN_DEPENDS= ${XMLCATMGR}:${PORTSDIR}/te ${LOCALBASE}/share/xml/dtd/xhtml-modularization/VERSION:${PORTSDIR}/textproc/xhtml-modularization \ ${LOCALBASE}/share/xml/dtd/xhtml-basic/xhtml-basic10.dtd:${PORTSDIR}/textproc/xhtml-basic -USE_PYTHON_RUN= yes +USES= python:run NO_MTREE= YES NO_BUILD= YES From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 13:18:29 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18B58D73; Thu, 9 Oct 2014 13:18:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04C90BFB; Thu, 9 Oct 2014 13:18:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99DISTm078487; Thu, 9 Oct 2014 13:18:28 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99DISxR078486; Thu, 9 Oct 2014 13:18:28 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201410091318.s99DISxR078486@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Thu, 9 Oct 2014 13:18:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370526 - head/security/cyrus-sasl2-gssapi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 13:18:29 -0000 Author: ume Date: Thu Oct 9 13:18:28 2014 New Revision: 370526 URL: https://svnweb.freebsd.org/changeset/ports/370526 QAT: https://qat.redports.org/buildarchive/r370526/ Log: Include RPATH in the libs, again. It seems that USES=libtool doesn't rewrite ${LIBTOOL} in a configure script to use ${LOCALBASE}/bin/libtool like bsd.autotools.mk did. So, rewrite it explicitly for workaround. PR: 194176 Submitted by: jhujhiti__at__adjectivism.org Modified: head/security/cyrus-sasl2-gssapi/Makefile Modified: head/security/cyrus-sasl2-gssapi/Makefile ============================================================================== --- head/security/cyrus-sasl2-gssapi/Makefile Thu Oct 9 13:17:26 2014 (r370525) +++ head/security/cyrus-sasl2-gssapi/Makefile Thu Oct 9 13:18:28 2014 (r370526) @@ -2,7 +2,7 @@ PORTNAME= gssapi PORTVERSION= 2.1.26 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security ipv6 MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-sasl/ \ http://cyrusimap.org/releases/ @@ -89,6 +89,13 @@ CONFIGURE_ARGS+=--with-openssl=yes CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} .endif +LIBTOOL= ${LOCALBASE}/bin/libtool + +post-patch: + @${REINPLACE_CMD} \ + -e "/^LIBTOOL=/s|\$$(top_builddir)/libtool|${LIBTOOL}|g" \ + ${WRKSRC}/configure + do-build: cd ${WRKSRC}/include && ${MAKE} cd ${WRKSRC}/plugins && ${MAKE} From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED250BE0; Thu, 9 Oct 2014 14:00:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9882BE; Thu, 9 Oct 2014 14:00:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0FpL097777; Thu, 9 Oct 2014 14:00:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0FVb097775; Thu, 9 Oct 2014 14:00:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0FVb097775@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370528 - head/games/pythonchess X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:16 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:14 2014 New Revision: 370528 URL: https://svnweb.freebsd.org/changeset/ports/370528 QAT: https://qat.redports.org/buildarchive/r370528/ Log: - Add LICENSE_FILE - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/pythonchess/Makefile head/games/pythonchess/pkg-plist Modified: head/games/pythonchess/Makefile ============================================================================== --- head/games/pythonchess/Makefile Thu Oct 9 13:32:45 2014 (r370527) +++ head/games/pythonchess/Makefile Thu Oct 9 14:00:14 2014 (r370528) @@ -15,14 +15,14 @@ MAINTAINER= games@FreeBSD.org COMMENT= Small program for playing chess against the computer LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/gpl.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter WRKSRC= ${WRKDIR}/${PORTNAME:S/p/P/:S/c/C/} -USES= dos2unix zip +USES= dos2unix python:2 zip DOS2UNIX_REGEX= .*.[^p][^n][^g]$ -USE_PYTHON= 2 SUB_FILES= ${PORTNAME} Modified: head/games/pythonchess/pkg-plist ============================================================================== --- head/games/pythonchess/pkg-plist Thu Oct 9 13:32:45 2014 (r370527) +++ head/games/pythonchess/pkg-plist Thu Oct 9 14:00:14 2014 (r370528) @@ -50,5 +50,3 @@ share/pixmaps/pythonchess.png %%DATADIR%%/images/whiteQueen.png %%DATADIR%%/images/whiteRook.png %%DATADIR%%/images/white_square.png -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41A63CA9; Thu, 9 Oct 2014 14:00:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DD02C1; Thu, 9 Oct 2014 14:00:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0L4N097904; Thu, 9 Oct 2014 14:00:21 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0K4J097902; Thu, 9 Oct 2014 14:00:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0K4J097902@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370529 - head/games/gnomebreakout X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:21 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:20 2014 New Revision: 370529 URL: https://svnweb.freebsd.org/changeset/ports/370529 QAT: https://qat.redports.org/buildarchive/r370529/ Log: - Add LICENSE - Drop @dirrm* from plist Modified: head/games/gnomebreakout/Makefile head/games/gnomebreakout/pkg-plist Modified: head/games/gnomebreakout/Makefile ============================================================================== --- head/games/gnomebreakout/Makefile Thu Oct 9 14:00:14 2014 (r370528) +++ head/games/gnomebreakout/Makefile Thu Oct 9 14:00:20 2014 (r370529) @@ -9,6 +9,9 @@ MASTER_SITES= SF/${PORTNAME:S/eb/e-b/}/$ http://www.users.on.net/~mipearson/ DISTNAME= gnome-breakout-${PORTVERSION} +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + MAINTAINER= games@FreeBSD.org COMMENT= GNOME version of the classic breakout game Modified: head/games/gnomebreakout/pkg-plist ============================================================================== --- head/games/gnomebreakout/pkg-plist Thu Oct 9 14:00:14 2014 (r370528) +++ head/games/gnomebreakout/pkg-plist Thu Oct 9 14:00:20 2014 (r370529) @@ -71,6 +71,3 @@ share/pixmaps/gnome-breakout.png %%NLS%%share/locale/ru/LC_MESSAGES/gnome-breakout.mo %%NLS%%share/locale/sv/LC_MESSAGES/gnome-breakout.mo %%NLS%%share/locale/tr/LC_MESSAGES/gnome-breakout.mo -@dirrm share/gnome-breakout/pixmaps -@dirrm share/gnome-breakout/levels -@dirrm share/gnome-breakout From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5517DD88; Thu, 9 Oct 2014 14:00:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39398C5; Thu, 9 Oct 2014 14:00:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0QUh098031; Thu, 9 Oct 2014 14:00:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0Pnw098029; Thu, 9 Oct 2014 14:00:25 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0Pnw098029@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370530 - head/games/puckman X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:26 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:25 2014 New Revision: 370530 URL: https://svnweb.freebsd.org/changeset/ports/370530 QAT: https://qat.redports.org/buildarchive/r370530/ Log: - Clarify LICENSE - Add LICENSE_FILE - No need to set GH_PROJECT - Drop @dirrm* from plist Modified: head/games/puckman/Makefile head/games/puckman/pkg-plist Modified: head/games/puckman/Makefile ============================================================================== --- head/games/puckman/Makefile Thu Oct 9 14:00:20 2014 (r370529) +++ head/games/puckman/Makefile Thu Oct 9 14:00:25 2014 (r370530) @@ -13,11 +13,11 @@ EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Unofficial clone of the original Pac-Man game -LICENSE= GPLv3 +LICENSE= GPLv3 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes GH_ACCOUNT= patapizza -GH_PROJECT= puckman GH_TAGNAME= ${GH_COMMIT} GH_COMMIT= f5b809c Modified: head/games/puckman/pkg-plist ============================================================================== --- head/games/puckman/pkg-plist Thu Oct 9 14:00:20 2014 (r370529) +++ head/games/puckman/pkg-plist Thu Oct 9 14:00:25 2014 (r370530) @@ -190,5 +190,3 @@ share/pixmaps/puckman.png %%DATADIR%%/images/scared16.gif %%DATADIR%%/images/scared17.gif %%DATADIR%%/images/score.png -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9EE2E50; Thu, 9 Oct 2014 14:00:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6361C9; Thu, 9 Oct 2014 14:00:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0Ujh098144; Thu, 9 Oct 2014 14:00:30 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0UUR098143; Thu, 9 Oct 2014 14:00:30 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0UUR098143@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370531 - head/games/golddig X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:31 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:30 2014 New Revision: 370531 URL: https://svnweb.freebsd.org/changeset/ports/370531 QAT: https://qat.redports.org/buildarchive/r370531/ Log: - Simplify plist Modified: head/games/golddig/pkg-plist Modified: head/games/golddig/pkg-plist ============================================================================== --- head/games/golddig/pkg-plist Thu Oct 9 14:00:25 2014 (r370530) +++ head/games/golddig/pkg-plist Thu Oct 9 14:00:30 2014 (r370531) @@ -1,9 +1,5 @@ bin/gdedit -@group games -@mode 2555 -bin/golddig -@mode -@group +@(root,games,2555) bin/golddig man/man6/gdedit.6.gz man/man6/golddig.6.gz %%DATADIR%%/default @@ -33,4 +29,3 @@ man/man6/golddig.6.gz %%DATADIR%%/goldlev024 %%DATADIR%%/goldlev025 %%DATADIR%%/goldlev026 -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1FE5AF35; Thu, 9 Oct 2014 14:00:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C3AFCE; Thu, 9 Oct 2014 14:00:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0Zdc098272; Thu, 9 Oct 2014 14:00:35 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0ZcT098270; Thu, 9 Oct 2014 14:00:35 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0ZcT098270@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370532 - head/games/schwarzweiss X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:36 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:34 2014 New Revision: 370532 URL: https://svnweb.freebsd.org/changeset/ports/370532 QAT: https://qat.redports.org/buildarchive/r370532/ Log: - Clarify LICENSE - Add LICENSE_FILE - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/schwarzweiss/Makefile head/games/schwarzweiss/pkg-plist Modified: head/games/schwarzweiss/Makefile ============================================================================== --- head/games/schwarzweiss/Makefile Thu Oct 9 14:00:30 2014 (r370531) +++ head/games/schwarzweiss/Makefile Thu Oct 9 14:00:34 2014 (r370532) @@ -14,7 +14,8 @@ EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Tank game for 2 players -LICENSE= GPLv3 +LICENSE= GPLv3 # or later +LICENSE_FILE= ${WRKSRC}/gpl.txt RUN_DEPENDS= ${PYGAME} @@ -24,11 +25,10 @@ GH_PROJECT= schwarzweiss GH_TAGNAME= ${GH_COMMIT} GH_COMMIT= d95263f -USES= shebangfix +USES= python:2 shebangfix SHEBANG_FILES= schwarzweiss_start.py data/*.py -python_OLD_CMD?= /usr/bin/env python -python_CMD?= ${PYTHON_CMD} -USE_PYTHON= 2 +python_OLD_CMD= /usr/bin/env python +python_CMD?= ${PYTHON_CMD} PORTDOCS= readme.txt OPTIONS_DEFINE= DOCS Modified: head/games/schwarzweiss/pkg-plist ============================================================================== --- head/games/schwarzweiss/pkg-plist Thu Oct 9 14:00:30 2014 (r370531) +++ head/games/schwarzweiss/pkg-plist Thu Oct 9 14:00:34 2014 (r370532) @@ -29,5 +29,3 @@ share/pixmaps/schwarzweiss.png %%DATADIR%%/schwarzweiss_start.py %%DATADIR%%/schwarzweiss_start.pyc %%DATADIR%%/schwarzweiss_start.pyo -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5728BA2; Thu, 9 Oct 2014 14:00:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23F02D4; Thu, 9 Oct 2014 14:00:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0fLH098864; Thu, 9 Oct 2014 14:00:41 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0evr098861; Thu, 9 Oct 2014 14:00:40 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0evr098861@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370533 - head/games/anki X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:41 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:40 2014 New Revision: 370533 URL: https://svnweb.freebsd.org/changeset/ports/370533 QAT: https://qat.redports.org/buildarchive/r370533/ Log: - Drop @dirrm* from plist - Convert to USES=python - Add LICENSE_FILE Modified: head/games/anki/Makefile head/games/anki/pkg-plist Modified: head/games/anki/Makefile ============================================================================== --- head/games/anki/Makefile Thu Oct 9 14:00:34 2014 (r370532) +++ head/games/anki/Makefile Thu Oct 9 14:00:40 2014 (r370533) @@ -12,6 +12,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= Flashcard trainer with spaced repetition LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= lame:${PORTSDIR}/audio/lame \ mplayer:${PORTSDIR}/multimedia/mplayer \ @@ -24,9 +25,8 @@ RUN_DEPENDS= lame:${PORTSDIR}/audio/lame ${PYTHON_PKGNAMEPREFIX}qt4-webkit>=4.4:${PORTSDIR}/www/py-qt4-webkit \ ${PYTHON_PKGNAMEPREFIX}send2trash>0:${PORTSDIR}/deskutils/py-send2trash -USES= desktop-file-utils shared-mime-info shebangfix tar:tgz +USES= desktop-file-utils python:2 shared-mime-info shebangfix tar:tgz SHEBANG_FILES= tools/build_ui.sh tools/tests.sh -USE_PYTHON= 2 USE_QT4= network_run webkit_run OPTIONS_DEFINE= NLS Modified: head/games/anki/pkg-plist ============================================================================== --- head/games/anki/pkg-plist Thu Oct 9 14:00:34 2014 (r370532) +++ head/games/anki/pkg-plist Thu Oct 9 14:00:40 2014 (r370533) @@ -743,21 +743,3 @@ share/applications/anki.desktop share/mime/packages/anki.xml share/pixmaps/anki.png share/pixmaps/anki.xpm -@dirrm %%DATADIR%%/anki/importing -@dirrm %%DATADIR%%/anki/template -@dirrm %%DATADIR%%/anki -@dirrm %%DATADIR%%/aqt/forms -@dirrm %%DATADIR%%/aqt -@dirrm %%DATADIR%%/designer/icons -@dirrm %%DATADIR%%/designer -@dirrm %%DATADIR%%/locale -@dirrm %%DATADIR%%/oldanki/template -@dirrm %%DATADIR%%/oldanki -@dirrm %%DATADIR%%/tests/support -@dirrm %%DATADIR%%/tests -@dirrm %%DATADIR%%/tools -@dirrm %%DATADIR%% -%%NLS%%@dirrmtry share/locale/tlh/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/tlh -%%NLS%%@dirrmtry share/locale/wo/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/wo From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A728275; Thu, 9 Oct 2014 14:00:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5697ADC; Thu, 9 Oct 2014 14:00:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0p4i099127; Thu, 9 Oct 2014 14:00:51 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0oST099125; Thu, 9 Oct 2014 14:00:50 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0oST099125@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370535 - head/games/entombed X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:51 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:50 2014 New Revision: 370535 URL: https://svnweb.freebsd.org/changeset/ports/370535 QAT: https://qat.redports.org/buildarchive/r370535/ Log: - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/entombed/Makefile head/games/entombed/pkg-plist Modified: head/games/entombed/Makefile ============================================================================== --- head/games/entombed/Makefile Thu Oct 9 14:00:45 2014 (r370534) +++ head/games/entombed/Makefile Thu Oct 9 14:00:50 2014 (r370535) @@ -15,6 +15,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= One- or two-player maze game based on the Entombed LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/docs/COPYING.txt USES= gmake USE_SDL= image mixer sdl Modified: head/games/entombed/pkg-plist ============================================================================== --- head/games/entombed/pkg-plist Thu Oct 9 14:00:45 2014 (r370534) +++ head/games/entombed/pkg-plist Thu Oct 9 14:00:50 2014 (r370535) @@ -66,10 +66,3 @@ bin/entombed %%DATADIR%%/sounds/zombie_eat.wav %%DATADIR%%/sounds/zombie_mad.wav share/pixmaps/entombed.png -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/music -@dirrm %%DATADIR%%/images_halfsize -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/embedded/images -@dirrm %%DATADIR%%/embedded -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 63D7E298; Thu, 9 Oct 2014 14:00:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3B1A6DF; Thu, 9 Oct 2014 14:00:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0u5e099412; Thu, 9 Oct 2014 14:00:56 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0uAs099411; Thu, 9 Oct 2014 14:00:56 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0uAs099411@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370536 - head/games/cutemaze X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:56 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:55 2014 New Revision: 370536 URL: https://svnweb.freebsd.org/changeset/ports/370536 QAT: https://qat.redports.org/buildarchive/r370536/ Log: - Drop @dirrm* from plist Modified: head/games/cutemaze/pkg-plist Modified: head/games/cutemaze/pkg-plist ============================================================================== --- head/games/cutemaze/pkg-plist Thu Oct 9 14:00:50 2014 (r370535) +++ head/games/cutemaze/pkg-plist Thu Oct 9 14:00:55 2014 (r370536) @@ -42,5 +42,3 @@ share/icons/oxygen/scalable/preferences- share/icons/oxygen/scalable/zoom-in.svgz share/icons/oxygen/scalable/zoom-out.svgz share/pixmaps/cutemaze.png -%%NLS%%@dirrm %%DATADIR%%/translations -%%NLS%%@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:00:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F11E16C; Thu, 9 Oct 2014 14:00:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47897D6; Thu, 9 Oct 2014 14:00:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E0kTi098994; Thu, 9 Oct 2014 14:00:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E0jxv098988; Thu, 9 Oct 2014 14:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091400.s99E0jxv098988@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:00:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370534 - head/games/tanglet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:00:46 -0000 Author: amdmi3 Date: Thu Oct 9 14:00:45 2014 New Revision: 370534 URL: https://svnweb.freebsd.org/changeset/ports/370534 QAT: https://qat.redports.org/buildarchive/r370534/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/tanglet/Makefile head/games/tanglet/pkg-plist Modified: head/games/tanglet/Makefile ============================================================================== --- head/games/tanglet/Makefile Thu Oct 9 14:00:40 2014 (r370533) +++ head/games/tanglet/Makefile Thu Oct 9 14:00:45 2014 (r370534) @@ -11,7 +11,8 @@ MAINTAINER= games@FreeBSD.org COMMENT= Single player word finding game based on Boggle -LICENSE= GPLv3 +LICENSE= GPLv3 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USES= qmake tar:bzip2 USE_QT4= moc_build rcc_build gui iconengines_run imageformats_run Modified: head/games/tanglet/pkg-plist ============================================================================== --- head/games/tanglet/pkg-plist Thu Oct 9 14:00:40 2014 (r370533) +++ head/games/tanglet/pkg-plist Thu Oct 9 14:00:45 2014 (r370534) @@ -57,13 +57,3 @@ share/pixmaps/tanglet.xpm %%NLS%%%%DATADIR%%/translations/tanglet_ro.qm %%NLS%%%%DATADIR%%/translations/tanglet_tr.qm %%NLS%%%%DATADIR%%/translations/tanglet_uk.qm -%%NLS%%@dirrm %%DATADIR%%/translations -@dirrm %%DATADIR%%/data/nl -@dirrm %%DATADIR%%/data/hu -@dirrm %%DATADIR%%/data/he -@dirrm %%DATADIR%%/data/fr -@dirrm %%DATADIR%%/data/en -@dirrm %%DATADIR%%/data/de -@dirrm %%DATADIR%%/data/cs -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:01:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6201B38A; Thu, 9 Oct 2014 14:01:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48FB4E3; Thu, 9 Oct 2014 14:01:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99E11Ok099822; Thu, 9 Oct 2014 14:01:01 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99E10TQ099818; Thu, 9 Oct 2014 14:01:00 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410091401.s99E10TQ099818@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 9 Oct 2014 14:01:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370537 - head/games/highmoon X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:01:01 -0000 Author: amdmi3 Date: Thu Oct 9 14:01:00 2014 New Revision: 370537 URL: https://svnweb.freebsd.org/changeset/ports/370537 QAT: https://qat.redports.org/buildarchive/r370537/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/highmoon/Makefile head/games/highmoon/pkg-plist Modified: head/games/highmoon/Makefile ============================================================================== --- head/games/highmoon/Makefile Thu Oct 9 14:00:55 2014 (r370536) +++ head/games/highmoon/Makefile Thu Oct 9 14:01:00 2014 (r370537) @@ -10,7 +10,8 @@ MASTER_SITES= http://highmoon.gerdsmeier MAINTAINER= games@FreeBSD.org COMMENT= Duel in the universe -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING WRKSRC= ${WRKDIR}/HighMoon Modified: head/games/highmoon/pkg-plist ============================================================================== --- head/games/highmoon/pkg-plist Thu Oct 9 14:00:55 2014 (r370536) +++ head/games/highmoon/pkg-plist Thu Oct 9 14:01:00 2014 (r370537) @@ -39,6 +39,3 @@ bin/highmoon %%DATADIR%%/snd/pluck.wav %%DATADIR%%/snd/strom.wav share/pixmaps/highmoon.png -@dirrm %%DATADIR%%/snd -@dirrm %%DATADIR%%/gfx -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 14:31:18 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0C75C3C; Thu, 9 Oct 2014 14:31:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ACF3D6C9; Thu, 9 Oct 2014 14:31:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99EVIxo016585; Thu, 9 Oct 2014 14:31:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99EVIkw016584; Thu, 9 Oct 2014 14:31:18 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410091431.s99EVIkw016584@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 14:31:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370538 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 14:31:18 -0000 Author: swills Date: Thu Oct 9 14:31:17 2014 New Revision: 370538 URL: https://svnweb.freebsd.org/changeset/ports/370538 QAT: https://qat.redports.org/buildarchive/r370538/ Log: Add ruby-iconv to list of things to remove when upgrading Ruby Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Thu Oct 9 14:01:00 2014 (r370537) +++ head/UPDATING Thu Oct 9 14:31:17 2014 (r370538) @@ -34,7 +34,7 @@ you update your ports collection, before If you use portupgrade, install new ruby, then rebuild all ports that depend on ruby: - # pkg delete -f ruby portupgrade + # pkg delete -f ruby ruby-iconv portupgrade # make -C /usr/ports/ports-mgmt/portupgrade install clean # portupgrade -x ruby-2.0.\* -fr lang/ruby20 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:03:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97283539; Thu, 9 Oct 2014 15:03:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83598A8E; Thu, 9 Oct 2014 15:03:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99F399p031041; Thu, 9 Oct 2014 15:03:09 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99F39OA031040; Thu, 9 Oct 2014 15:03:09 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410091503.s99F39OA031040@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 15:03:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370539 - head/textproc/rubygem-rmmseg-cpp/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:03:09 -0000 Author: swills Date: Thu Oct 9 15:03:08 2014 New Revision: 370539 URL: https://svnweb.freebsd.org/changeset/ports/370539 QAT: https://qat.redports.org/buildarchive/r370539/ Log: textproc/rubygem-rmmseg-cpp: fix build on systems without gcc/g++ Reported by: antoine Added: head/textproc/rubygem-rmmseg-cpp/files/ head/textproc/rubygem-rmmseg-cpp/files/patch-ext__rmmseg__extconf.rb (contents, props changed) Added: head/textproc/rubygem-rmmseg-cpp/files/patch-ext__rmmseg__extconf.rb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rmmseg-cpp/files/patch-ext__rmmseg__extconf.rb Thu Oct 9 15:03:08 2014 (r370539) @@ -0,0 +1,10 @@ +--- ext/rmmseg/extconf.rb.orig 2014-10-09 14:17:52 UTC ++++ ext/rmmseg/extconf.rb +@@ -1,6 +1,6 @@ + require 'mkmf' + +-CONFIG['LDSHARED'] = CONFIG['LDSHARED'].sub(/^\$\(CC\)/, 'g++') ++# CONFIG['LDSHARED'] = CONFIG['LDSHARED'].sub(/^\$\(CC\)/, 'g++') + + # if RUBY_PLATFORM =~ /darwin/ + # # CONFIG['LDSHARED'] = 'g++ --dynamiclib -flat_namespace -undefined suppress' From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:20:55 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7D6CFD8; Thu, 9 Oct 2014 15:20:55 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92483D4F; Thu, 9 Oct 2014 15:20:55 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FKtFg039850; Thu, 9 Oct 2014 15:20:55 GMT (envelope-from girgen@FreeBSD.org) Received: (from girgen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FKrDT038296; Thu, 9 Oct 2014 15:20:53 GMT (envelope-from girgen@FreeBSD.org) Message-Id: <201410091520.s99FKrDT038296@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: girgen set sender to girgen@FreeBSD.org using -f From: Palle Girgensohn Date: Thu, 9 Oct 2014 15:20:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370540 - in head/databases: postgresql94-client postgresql94-contrib postgresql94-server postgresql94-server/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:20:55 -0000 Author: girgen Date: Thu Oct 9 15:20:52 2014 New Revision: 370540 URL: https://svnweb.freebsd.org/changeset/ports/370540 QAT: https://qat.redports.org/buildarchive/r370540/ Log: Update to PostgreSQL 9.4 beta3 Deleted: head/databases/postgresql94-server/files/patch-contrib-uuid Modified: head/databases/postgresql94-client/Makefile head/databases/postgresql94-contrib/Makefile head/databases/postgresql94-server/Makefile head/databases/postgresql94-server/distinfo head/databases/postgresql94-server/pkg-plist-client head/databases/postgresql94-server/pkg-plist-contrib head/databases/postgresql94-server/pkg-plist-plperl head/databases/postgresql94-server/pkg-plist-plpython head/databases/postgresql94-server/pkg-plist-pltcl head/databases/postgresql94-server/pkg-plist-server Modified: head/databases/postgresql94-client/Makefile ============================================================================== --- head/databases/postgresql94-client/Makefile Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-client/Makefile Thu Oct 9 15:20:52 2014 (r370540) @@ -2,8 +2,6 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 1 -PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} COMMENT= PostgreSQL database (client) Modified: head/databases/postgresql94-contrib/Makefile ============================================================================== --- head/databases/postgresql94-contrib/Makefile Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-contrib/Makefile Thu Oct 9 15:20:52 2014 (r370540) @@ -2,9 +2,7 @@ # $FreeBSD$ PORTNAME= postgresql -PORTREVISION= 1 CATEGORIES= databases -PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} MAINTAINER= pgsql@FreeBSD.org COMMENT= The contrib utilities from the PostgreSQL distribution @@ -21,7 +19,7 @@ INSTALL_DIRS= contrib SLAVE_ONLY= yes COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --disable-nls +CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --disable-nls --with-uuid=bsd LDFLAGS+= ${PTHREAD_LIBS} -L${PREFIX}/lib post-install: Modified: head/databases/postgresql94-server/Makefile ============================================================================== --- head/databases/postgresql94-server/Makefile Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/Makefile Thu Oct 9 15:20:52 2014 (r370540) @@ -1,9 +1,8 @@ # Created by: Marc G. Fournier # $FreeBSD$ -DISTVERSION?= 9.4beta1 -PORTREVISION?= 1 -PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} +DISTVERSION?= 9.4beta3 +PKGNAMESUFFIX?= ${DISTVERSION:S/.//:S/beta/./:R}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org Modified: head/databases/postgresql94-server/distinfo ============================================================================== --- head/databases/postgresql94-server/distinfo Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/distinfo Thu Oct 9 15:20:52 2014 (r370540) @@ -1,4 +1,4 @@ -SHA256 (postgresql/postgresql-9.4beta1.tar.bz2) = 0e088eff79bb5171b2233222a25d7a2906eaf62aa86266daf6ec5217b1797f47 -SIZE (postgresql/postgresql-9.4beta1.tar.bz2) = 17216572 +SHA256 (postgresql/postgresql-9.4beta3.tar.bz2) = 5ad1d86a5b9a70d5c153dd862b306a930c6cf67fb4a3f00813eef19fabe6aa5d +SIZE (postgresql/postgresql-9.4beta1.tar.bz2) = 17355677 SHA256 (postgresql/pg-940-icu-2014-06-09.diff.gz) = 83de4b99c37aec1ad741c686cb2ea7f4bccff516c357ae71032b2d1f8da0d1c1 SIZE (postgresql/pg-940-icu-2014-06-09.diff.gz) = 4259 Modified: head/databases/postgresql94-server/pkg-plist-client ============================================================================== --- head/databases/postgresql94-server/pkg-plist-client Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/pkg-plist-client Thu Oct 9 15:20:52 2014 (r370540) @@ -944,50 +944,50 @@ man/man7/WITH.7.gz %%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/psql-9.4.mo %%DATADIR%%/pg_service.conf.sample %%DATADIR%%/psqlrc.sample -@dirrm include/libpq -@dirrm include/postgresql/informix/esql -@dirrm include/postgresql/informix -@dirrm include/postgresql/internal/libpq -@dirrm include/postgresql/internal -@dirrm include/postgresql/server/access -@dirrm include/postgresql/server/bootstrap -@dirrm include/postgresql/server/catalog -@dirrm include/postgresql/server/commands -@dirrm include/postgresql/server/common -@dirrm include/postgresql/server/datatype -@dirrm include/postgresql/server/executor -@dirrm include/postgresql/server/foreign -@dirrm include/postgresql/server/lib -@dirrm include/postgresql/server/libpq -@dirrm include/postgresql/server/mb -@dirrm include/postgresql/server/nodes -@dirrm include/postgresql/server/optimizer -@dirrm include/postgresql/server/parser -@dirrm include/postgresql/server/port/win32/arpa -@dirrm include/postgresql/server/port/win32/netinet -@dirrm include/postgresql/server/port/win32/sys -@dirrm include/postgresql/server/port/win32 -@dirrm include/postgresql/server/port/win32_msvc/sys -@dirrm include/postgresql/server/port/win32_msvc -@dirrm include/postgresql/server/port -@dirrm include/postgresql/server/portability -@dirrm include/postgresql/server/postmaster -@dirrm include/postgresql/server/regex -@dirrm include/postgresql/server/replication -@dirrm include/postgresql/server/rewrite -@dirrm include/postgresql/server/snowball/libstemmer -@dirrm include/postgresql/server/snowball -@dirrm include/postgresql/server/storage -@dirrm include/postgresql/server/tcop -@dirrm include/postgresql/server/tsearch/dicts -@dirrm include/postgresql/server/tsearch -@dirrm include/postgresql/server/utils -@dirrm include/postgresql/server -@dirrm include/postgresql -@dirrm lib/postgresql/pgxs/config -@dirrm lib/postgresql/pgxs/src/makefiles -@dirrm lib/postgresql/pgxs/src -@dirrm lib/postgresql/pgxs -@dirrm lib/postgresql -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% -@dirrmtry %%DATADIR%% +@dir include/libpq +@dir include/postgresql/informix/esql +@dir include/postgresql/informix +@dir include/postgresql/internal/libpq +@dir include/postgresql/internal +@dir include/postgresql/server/access +@dir include/postgresql/server/bootstrap +@dir include/postgresql/server/catalog +@dir include/postgresql/server/commands +@dir include/postgresql/server/common +@dir include/postgresql/server/datatype +@dir include/postgresql/server/executor +@dir include/postgresql/server/foreign +@dir include/postgresql/server/lib +@dir include/postgresql/server/libpq +@dir include/postgresql/server/mb +@dir include/postgresql/server/nodes +@dir include/postgresql/server/optimizer +@dir include/postgresql/server/parser +@dir include/postgresql/server/port/win32/arpa +@dir include/postgresql/server/port/win32/netinet +@dir include/postgresql/server/port/win32/sys +@dir include/postgresql/server/port/win32 +@dir include/postgresql/server/port/win32_msvc/sys +@dir include/postgresql/server/port/win32_msvc +@dir include/postgresql/server/port +@dir include/postgresql/server/portability +@dir include/postgresql/server/postmaster +@dir include/postgresql/server/regex +@dir include/postgresql/server/replication +@dir include/postgresql/server/rewrite +@dir include/postgresql/server/snowball/libstemmer +@dir include/postgresql/server/snowball +@dir include/postgresql/server/storage +@dir include/postgresql/server/tcop +@dir include/postgresql/server/tsearch/dicts +@dir include/postgresql/server/tsearch +@dir include/postgresql/server/utils +@dir include/postgresql/server +@dir include/postgresql +@dir lib/postgresql/pgxs/config +@dir lib/postgresql/pgxs/src/makefiles +@dir lib/postgresql/pgxs/src +@dir lib/postgresql/pgxs +@dir lib/postgresql +%%PORTDOCS%%@dir %%DOCSDIR%% +@dir %%DATADIR%% Modified: head/databases/postgresql94-server/pkg-plist-contrib ============================================================================== --- head/databases/postgresql94-server/pkg-plist-contrib Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/pkg-plist-contrib Thu Oct 9 15:20:52 2014 (r370540) @@ -203,9 +203,9 @@ share/doc/postgresql/extension/timetrave %%DATADIR%%/extension/xml2.control %%DATADIR%%/tsearch_data/unaccent.rules %%DATADIR%%/tsearch_data/xsyn_sample.rules -@dirrmtry %%DATADIR%%/tsearch_data -@dirrmtry %%DATADIR%%/extension -@dirrmtry %%DATADIR%% -@dirrmtry %%DOCSDIR%%/extension -@dirrmtry %%DOCSDIR%% -@dirrmtry lib/postgresql +@dir %%DATADIR%%/tsearch_data +@dir %%DATADIR%%/extension +@dir %%DATADIR%% +@dir %%DOCSDIR%%/extension +@dir %%DOCSDIR%% +@dir lib/postgresql Modified: head/databases/postgresql94-server/pkg-plist-plperl ============================================================================== --- head/databases/postgresql94-server/pkg-plist-plperl Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/pkg-plist-plperl Thu Oct 9 15:20:52 2014 (r370540) @@ -6,7 +6,7 @@ %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl lib/postgresql/plperl.so -@dirrmtry lib/postgresql -@dirrmtry %%DOCSDIR%% -@dirrmtry %%DATADIR%%/extension -@dirrmtry %%DATADIR%% +@dir lib/postgresql +@dir %%DOCSDIR%% +@dir %%DATADIR%%/extension +@dir %%DATADIR%% Modified: head/databases/postgresql94-server/pkg-plist-plpython ============================================================================== --- head/databases/postgresql94-server/pkg-plist-plpython Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/pkg-plist-plpython Thu Oct 9 15:20:52 2014 (r370540) @@ -10,6 +10,6 @@ %%PYTHON3%%%%DATADIR%%/extension/plpython3u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql -@dirrmtry %%DATADIR%%/extension -@dirrmtry lib/postgresql -@dirrmtry %%DOCSDIR%% +@dir %%DATADIR%%/extension +@dir lib/postgresql +@dir %%DOCSDIR%% Modified: head/databases/postgresql94-server/pkg-plist-pltcl ============================================================================== --- head/databases/postgresql94-server/pkg-plist-pltcl Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/pkg-plist-pltcl Thu Oct 9 15:20:52 2014 (r370540) @@ -6,11 +6,11 @@ %%DATADIR%%/extension/pltclu--unpackaged--1.0.sql %%DOCSDIR%%/README-pltcl lib/postgresql/pltcl.so -@dirrmtry lib/postgresql +@dir lib/postgresql bin/pltcl_loadmod bin/pltcl_delmod bin/pltcl_listmod share/postgresql/unknown.pltcl -@dirrmtry %%DATADIR%%/extension -@dirrmtry %%DATADIR%% -@dirrmtry %%DOCSDIR%% +@dir %%DATADIR%%/extension +@dir %%DATADIR%% +@dir %%DOCSDIR%% Modified: head/databases/postgresql94-server/pkg-plist-server ============================================================================== --- head/databases/postgresql94-server/pkg-plist-server Thu Oct 9 15:03:08 2014 (r370539) +++ head/databases/postgresql94-server/pkg-plist-server Thu Oct 9 15:20:52 2014 (r370540) @@ -40,7 +40,7 @@ lib/postgresql/utf8_and_uhc.so lib/postgresql/utf8_and_win.so lib/libpgcommon.a %%PORTDOCS%%%%DOCSDIR%%/README-server -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +%%PORTDOCS%%@dir %%DOCSDIR%% %%DATADIR%%/conversion_create.sql %%DATADIR%%/information_schema.sql %%DATADIR%%/pg_hba.conf.sample @@ -358,6 +358,7 @@ lib/libpgcommon.a %%TZDATA%%%%DATADIR%%/timezone/Antarctica/Rothera %%TZDATA%%%%DATADIR%%/timezone/Antarctica/South_Pole %%TZDATA%%%%DATADIR%%/timezone/Antarctica/Syowa +%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Troll %%TZDATA%%%%DATADIR%%/timezone/Antarctica/Vostok %%TZDATA%%%%DATADIR%%/timezone/Arctic/Longyearbyen %%TZDATA%%%%DATADIR%%/timezone/Asia/Aden @@ -376,6 +377,7 @@ lib/libpgcommon.a %%TZDATA%%%%DATADIR%%/timezone/Asia/Bishkek %%TZDATA%%%%DATADIR%%/timezone/Asia/Brunei %%TZDATA%%%%DATADIR%%/timezone/Asia/Calcutta +%%TZDATA%%%%DATADIR%%/timezone/Asia/Chita %%TZDATA%%%%DATADIR%%/timezone/Asia/Choibalsan %%TZDATA%%%%DATADIR%%/timezone/Asia/Chongqing %%TZDATA%%%%DATADIR%%/timezone/Asia/Chungking @@ -433,6 +435,7 @@ lib/libpgcommon.a %%TZDATA%%%%DATADIR%%/timezone/Asia/Seoul %%TZDATA%%%%DATADIR%%/timezone/Asia/Shanghai %%TZDATA%%%%DATADIR%%/timezone/Asia/Singapore +%%TZDATA%%%%DATADIR%%/timezone/Asia/Srednekolymsk %%TZDATA%%%%DATADIR%%/timezone/Asia/Taipei %%TZDATA%%%%DATADIR%%/timezone/Asia/Tashkent %%TZDATA%%%%DATADIR%%/timezone/Asia/Tbilisi @@ -723,27 +726,27 @@ lib/libpgcommon.a %%DATADIR%%/timezonesets/India %%DATADIR%%/timezonesets/Indian.txt %%DATADIR%%/timezonesets/Pacific.txt -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Africa -%%TZDATA%%@dirrm %%DATADIR%%/timezone/America/Argentina -%%TZDATA%%@dirrm %%DATADIR%%/timezone/America/Indiana -%%TZDATA%%@dirrm %%DATADIR%%/timezone/America/Kentucky -%%TZDATA%%@dirrm %%DATADIR%%/timezone/America/North_Dakota -%%TZDATA%%@dirrm %%DATADIR%%/timezone/America -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Antarctica -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Arctic -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Asia -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Atlantic -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Australia -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Brazil -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Canada -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Chile -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Etc -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Europe -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Indian -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Mexico -%%TZDATA%%@dirrm %%DATADIR%%/timezone/Pacific -%%TZDATA%%@dirrm %%DATADIR%%/timezone/US -%%TZDATA%%@dirrm %%DATADIR%%/timezone +%%TZDATA%%@dir %%DATADIR%%/timezone/Africa +%%TZDATA%%@dir %%DATADIR%%/timezone/America/Argentina +%%TZDATA%%@dir %%DATADIR%%/timezone/America/Indiana +%%TZDATA%%@dir %%DATADIR%%/timezone/America/Kentucky +%%TZDATA%%@dir %%DATADIR%%/timezone/America/North_Dakota +%%TZDATA%%@dir %%DATADIR%%/timezone/America +%%TZDATA%%@dir %%DATADIR%%/timezone/Antarctica +%%TZDATA%%@dir %%DATADIR%%/timezone/Arctic +%%TZDATA%%@dir %%DATADIR%%/timezone/Asia +%%TZDATA%%@dir %%DATADIR%%/timezone/Atlantic +%%TZDATA%%@dir %%DATADIR%%/timezone/Australia +%%TZDATA%%@dir %%DATADIR%%/timezone/Brazil +%%TZDATA%%@dir %%DATADIR%%/timezone/Canada +%%TZDATA%%@dir %%DATADIR%%/timezone/Chile +%%TZDATA%%@dir %%DATADIR%%/timezone/Etc +%%TZDATA%%@dir %%DATADIR%%/timezone/Europe +%%TZDATA%%@dir %%DATADIR%%/timezone/Indian +%%TZDATA%%@dir %%DATADIR%%/timezone/Mexico +%%TZDATA%%@dir %%DATADIR%%/timezone/Pacific +%%TZDATA%%@dir %%DATADIR%%/timezone/US +%%TZDATA%%@dir %%DATADIR%%/timezone %%DATADIR%%/tsearch_data/danish.stop %%DATADIR%%/tsearch_data/dutch.stop %%DATADIR%%/tsearch_data/english.stop @@ -763,13 +766,13 @@ lib/libpgcommon.a %%DATADIR%%/tsearch_data/ispell_sample.dict %%DATADIR%%/tsearch_data/synonym_sample.syn %%DATADIR%%/tsearch_data/thesaurus_sample.ths -@dirrmtry %%DATADIR%%/extension -@dirrm %%DATADIR%%/timezonesets +@dir %%DATADIR%%/extension +@dir %%DATADIR%%/timezonesets @exec /bin/mkdir -p %%PREFIX%%/%%PG_USER%% || /usr/bin/true @exec /usr/sbin/chown %%PG_USER%%:%%PG_GROUP%% %%PREFIX%%/%%PG_USER%% || /usr/bin/true -@dirrmtry %%DATADIR%%/tsearch_data -@dirrmtry %%DATADIR%% -@dirrmtry etc/periodic/daily -@dirrmtry etc/periodic -@dirrmtry lib/postgresql -@dirrmtry %%PG_USER%% +@dir %%DATADIR%%/tsearch_data +@dir %%DATADIR%% +@dir etc/periodic/daily +@dir etc/periodic +@dir lib/postgresql +@dir %%PG_USER%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2D52B2D9; Thu, 9 Oct 2014 15:24:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F242DDC7; Thu, 9 Oct 2014 15:24:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FO9J5041156; Thu, 9 Oct 2014 15:24:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FO9Q9041152; Thu, 9 Oct 2014 15:24:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FO9Q9041152@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370541 - head/converters/p5-JSON-MaybeXS X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:10 -0000 Author: sunpoet Date: Thu Oct 9 15:24:08 2014 New Revision: 370541 URL: https://svnweb.freebsd.org/changeset/ports/370541 QAT: https://qat.redports.org/buildarchive/r370541/ Log: - Update to 1.002003 Changes: http://search.cpan.org/dist/JSON-MaybeXS/Changes Modified: head/converters/p5-JSON-MaybeXS/Makefile head/converters/p5-JSON-MaybeXS/distinfo head/converters/p5-JSON-MaybeXS/pkg-plist Modified: head/converters/p5-JSON-MaybeXS/Makefile ============================================================================== --- head/converters/p5-JSON-MaybeXS/Makefile Thu Oct 9 15:20:52 2014 (r370540) +++ head/converters/p5-JSON-MaybeXS/Makefile Thu Oct 9 15:24:08 2014 (r370541) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= JSON-MaybeXS -PORTVERSION= 1.002002 +PORTVERSION= 1.002003 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/converters/p5-JSON-MaybeXS/distinfo ============================================================================== --- head/converters/p5-JSON-MaybeXS/distinfo Thu Oct 9 15:20:52 2014 (r370540) +++ head/converters/p5-JSON-MaybeXS/distinfo Thu Oct 9 15:24:08 2014 (r370541) @@ -1,2 +1,2 @@ -SHA256 (JSON-MaybeXS-1.002002.tar.gz) = 5ab92a7a13fe6821933310c594fa079b8bcd6d84bd823340223e62da1c83e4cd -SIZE (JSON-MaybeXS-1.002002.tar.gz) = 5992 +SHA256 (JSON-MaybeXS-1.002003.tar.gz) = b3b2e595c54c8f103f7a8556eaaaafa2b62eafbf1f99b20e0671235ca406710a +SIZE (JSON-MaybeXS-1.002003.tar.gz) = 6245 Modified: head/converters/p5-JSON-MaybeXS/pkg-plist ============================================================================== --- head/converters/p5-JSON-MaybeXS/pkg-plist Thu Oct 9 15:20:52 2014 (r370540) +++ head/converters/p5-JSON-MaybeXS/pkg-plist Thu Oct 9 15:24:08 2014 (r370541) @@ -1,6 +1,3 @@ %%SITE_PERL%%/JSON/MaybeXS.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON/MaybeXS/.packlist %%PERL5_MAN3%%/JSON::MaybeXS.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON/MaybeXS -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON -@dirrmtry %%SITE_PERL%%/JSON From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 278F23BC; Thu, 9 Oct 2014 15:24:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EF4D5DCA; Thu, 9 Oct 2014 15:24:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FOEQx041297; Thu, 9 Oct 2014 15:24:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FOEBf041292; Thu, 9 Oct 2014 15:24:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FOEBf041292@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370542 - head/converters/p5-JSON-PP X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:15 -0000 Author: sunpoet Date: Thu Oct 9 15:24:13 2014 New Revision: 370542 URL: https://svnweb.freebsd.org/changeset/ports/370542 QAT: https://qat.redports.org/buildarchive/r370542/ Log: - Update to 2.27300 - Cleanup PLIST Changes: http://search.cpan.org/dist/JSON-PP/Changes Modified: head/converters/p5-JSON-PP/Makefile head/converters/p5-JSON-PP/distinfo head/converters/p5-JSON-PP/pkg-plist Modified: head/converters/p5-JSON-PP/Makefile ============================================================================== --- head/converters/p5-JSON-PP/Makefile Thu Oct 9 15:24:08 2014 (r370541) +++ head/converters/p5-JSON-PP/Makefile Thu Oct 9 15:24:13 2014 (r370542) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= JSON-PP -PORTVERSION= 2.27203 +PORTVERSION= 2.27300 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MAKAMAKA Modified: head/converters/p5-JSON-PP/distinfo ============================================================================== --- head/converters/p5-JSON-PP/distinfo Thu Oct 9 15:24:08 2014 (r370541) +++ head/converters/p5-JSON-PP/distinfo Thu Oct 9 15:24:13 2014 (r370542) @@ -1,2 +1,2 @@ -SHA256 (JSON-PP-2.27203.tar.gz) = b7063939721d0be3b0d1ab33ed13c4a8bfaecc0b526036d94d2691e582f25c52 -SIZE (JSON-PP-2.27203.tar.gz) = 41142 +SHA256 (JSON-PP-2.27300.tar.gz) = 5feef3067be4acd99ca0ebb29cf1ac1cdb338fe46977585bd1e473ea4bab71a3 +SIZE (JSON-PP-2.27300.tar.gz) = 41365 Modified: head/converters/p5-JSON-PP/pkg-plist ============================================================================== --- head/converters/p5-JSON-PP/pkg-plist Thu Oct 9 15:24:08 2014 (r370541) +++ head/converters/p5-JSON-PP/pkg-plist Thu Oct 9 15:24:13 2014 (r370542) @@ -5,7 +5,3 @@ bin/p5json_pp %%PERL5_MAN3%%/JSON::PP.3.gz %%PERL5_MAN3%%/JSON::PP::Boolean.3.gz man/man1/p5json_pp.1.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON/PP -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/JSON -@dirrm %%SITE_PERL%%/JSON/PP -@dirrmtry %%SITE_PERL%%/JSON From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D455497; Thu, 9 Oct 2014 15:24:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4F029DCF; Thu, 9 Oct 2014 15:24:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FOKBD041441; Thu, 9 Oct 2014 15:24:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FOJqi041438; Thu, 9 Oct 2014 15:24:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FOJqi041438@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370543 - head/devel/p5-Test-Fixme X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:20 -0000 Author: sunpoet Date: Thu Oct 9 15:24:19 2014 New Revision: 370543 URL: https://svnweb.freebsd.org/changeset/ports/370543 QAT: https://qat.redports.org/buildarchive/r370543/ Log: - Update to 0.14 - Cleanup PLIST Changes: http://search.cpan.org/dist/Test-Fixme/Changes Modified: head/devel/p5-Test-Fixme/Makefile head/devel/p5-Test-Fixme/distinfo head/devel/p5-Test-Fixme/pkg-plist Modified: head/devel/p5-Test-Fixme/Makefile ============================================================================== --- head/devel/p5-Test-Fixme/Makefile Thu Oct 9 15:24:13 2014 (r370542) +++ head/devel/p5-Test-Fixme/Makefile Thu Oct 9 15:24:19 2014 (r370543) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Fixme -PORTVERSION= 0.11 +PORTVERSION= 0.14 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Fixme/distinfo ============================================================================== --- head/devel/p5-Test-Fixme/distinfo Thu Oct 9 15:24:13 2014 (r370542) +++ head/devel/p5-Test-Fixme/distinfo Thu Oct 9 15:24:19 2014 (r370543) @@ -1,2 +1,2 @@ -SHA256 (Test-Fixme-0.11.tar.gz) = 5094eb81e2a66a8b876238eb09a8e5da999443e652f36c87712d4714d82a9444 -SIZE (Test-Fixme-0.11.tar.gz) = 18658 +SHA256 (Test-Fixme-0.14.tar.gz) = 6ad4957db525707dd2996bbbb04a1c17e3a7ba95df9ae20b606983d64fab5121 +SIZE (Test-Fixme-0.14.tar.gz) = 19523 Modified: head/devel/p5-Test-Fixme/pkg-plist ============================================================================== --- head/devel/p5-Test-Fixme/pkg-plist Thu Oct 9 15:24:13 2014 (r370542) +++ head/devel/p5-Test-Fixme/pkg-plist Thu Oct 9 15:24:19 2014 (r370543) @@ -1,6 +1,3 @@ %%SITE_PERL%%/Test/Fixme.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Fixme/.packlist %%PERL5_MAN3%%/Test::Fixme.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test/Fixme -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Test -@dirrmtry %%SITE_PERL%%/Test From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:24 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27A34575; Thu, 9 Oct 2014 15:24:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F363DD2; Thu, 9 Oct 2014 15:24:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FONUp041559; Thu, 9 Oct 2014 15:24:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FON25041558; Thu, 9 Oct 2014 15:24:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FON25041558@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370544 - head/archivers/p5-Archive-Any-Lite X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:24 -0000 Author: sunpoet Date: Thu Oct 9 15:24:23 2014 New Revision: 370544 URL: https://svnweb.freebsd.org/changeset/ports/370544 QAT: https://qat.redports.org/buildarchive/r370544/ Log: - Cleanup PLIST Modified: head/archivers/p5-Archive-Any-Lite/pkg-plist Modified: head/archivers/p5-Archive-Any-Lite/pkg-plist ============================================================================== --- head/archivers/p5-Archive-Any-Lite/pkg-plist Thu Oct 9 15:24:19 2014 (r370543) +++ head/archivers/p5-Archive-Any-Lite/pkg-plist Thu Oct 9 15:24:23 2014 (r370544) @@ -1,8 +1,3 @@ %%SITE_PERL%%/Archive/Any/Lite.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Any/Lite/.packlist %%PERL5_MAN3%%/Archive::Any::Lite.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Any/Lite -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Any -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive -@dirrmtry %%SITE_PERL%%/Archive/Any -@dirrmtry %%SITE_PERL%%/Archive From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EECAC65A; Thu, 9 Oct 2014 15:24:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DA90DDDB; Thu, 9 Oct 2014 15:24:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FORGm041659; Thu, 9 Oct 2014 15:24:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FORk3041658; Thu, 9 Oct 2014 15:24:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FORk3041658@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370545 - head/archivers/p5-Archive-Extract-Libarchive X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:28 -0000 Author: sunpoet Date: Thu Oct 9 15:24:27 2014 New Revision: 370545 URL: https://svnweb.freebsd.org/changeset/ports/370545 QAT: https://qat.redports.org/buildarchive/r370545/ Log: - Cleanup PLIST Modified: head/archivers/p5-Archive-Extract-Libarchive/pkg-plist Modified: head/archivers/p5-Archive-Extract-Libarchive/pkg-plist ============================================================================== --- head/archivers/p5-Archive-Extract-Libarchive/pkg-plist Thu Oct 9 15:24:23 2014 (r370544) +++ head/archivers/p5-Archive-Extract-Libarchive/pkg-plist Thu Oct 9 15:24:27 2014 (r370545) @@ -1,8 +1,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Archive/Extract/Libarchive.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Extract/Libarchive/Libarchive.so %%PERL5_MAN3%%/Archive::Extract::Libarchive.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Extract/Libarchive -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive/Extract -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Archive -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Archive/Extract -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Archive From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 063C372B; Thu, 9 Oct 2014 15:24:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE994DE3; Thu, 9 Oct 2014 15:24:31 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FOVlN041769; Thu, 9 Oct 2014 15:24:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FOVKZ041768; Thu, 9 Oct 2014 15:24:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FOVKZ041768@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370546 - head/archivers/p5-Compress-Snappy X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:32 -0000 Author: sunpoet Date: Thu Oct 9 15:24:31 2014 New Revision: 370546 URL: https://svnweb.freebsd.org/changeset/ports/370546 QAT: https://qat.redports.org/buildarchive/r370546/ Log: - Cleanup PLIST Modified: head/archivers/p5-Compress-Snappy/pkg-plist Modified: head/archivers/p5-Compress-Snappy/pkg-plist ============================================================================== --- head/archivers/p5-Compress-Snappy/pkg-plist Thu Oct 9 15:24:27 2014 (r370545) +++ head/archivers/p5-Compress-Snappy/pkg-plist Thu Oct 9 15:24:31 2014 (r370546) @@ -2,6 +2,3 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/Snappy/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/Snappy/Snappy.so %%PERL5_MAN3%%/Compress::Snappy.3.gz -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress/Snappy -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Compress -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Compress From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55C9E812; Thu, 9 Oct 2014 15:24:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17E8DDE8; Thu, 9 Oct 2014 15:24:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FOZkF041893; Thu, 9 Oct 2014 15:24:35 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FOZae041890; Thu, 9 Oct 2014 15:24:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FOZae041890@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370547 - head/archivers/librtfcomp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:36 -0000 Author: sunpoet Date: Thu Oct 9 15:24:35 2014 New Revision: 370547 URL: https://svnweb.freebsd.org/changeset/ports/370547 QAT: https://qat.redports.org/buildarchive/r370547/ Log: - Cleanup Makefile - Cleanup PLIST Modified: head/archivers/librtfcomp/Makefile head/archivers/librtfcomp/pkg-plist Modified: head/archivers/librtfcomp/Makefile ============================================================================== --- head/archivers/librtfcomp/Makefile Thu Oct 9 15:24:31 2014 (r370546) +++ head/archivers/librtfcomp/Makefile Thu Oct 9 15:24:35 2014 (r370547) @@ -8,36 +8,22 @@ CATEGORIES= archivers MASTER_SITES= SF/synce/SynCE/${PORTNAME} MAINTAINER= sunpoet@FreeBSD.org -COMMENT?= Library for handling compressed RTF documents +COMMENT= Library for handling compressed RTF documents LICENSE= LGPL21 +CONFIGURE_ARGS= --disable-python-bindings GNU_CONFIGURE= yes USE_LDCONFIG= yes -USES+= libtool - -SLAVEDIRS= archivers/py-librtfcomp - -.if defined(SLAVEPORT) && ${SLAVEPORT} == "py" -CATEGORIES+= python -CONFIGURE_ARGS+=--enable-python-bindings -.else -CONFIGURE_ARGS+=--disable-python-bindings -.endif +USES= libtool post-patch: @${REINPLACE_CMD} -e '/VISIBILITY=/ s| -fvisibility=hidden||' ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|[^ ]*/src/librtfcomp\.la||' ${WRKSRC}/python/Makefile.in post-install: -.if !defined(SLAVEPORT) ${INSTALL_SCRIPT} ${WRKSRC}/tests/fromrtf ${STAGEDIR}${PREFIX}/bin/fromrtf ${INSTALL_SCRIPT} ${WRKSRC}/tests/test ${STAGEDIR}${PREFIX}/bin/testrtf ${INSTALL_SCRIPT} ${WRKSRC}/tests/tortf ${STAGEDIR}${PREFIX}/bin/tortf ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librtfcomp.so.0.0.0 -.endif -.if defined(SLAVEPORT) && ${SLAVEPORT} == "py" - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyrtfcomp.so -.endif .include Modified: head/archivers/librtfcomp/pkg-plist ============================================================================== --- head/archivers/librtfcomp/pkg-plist Thu Oct 9 15:24:31 2014 (r370546) +++ head/archivers/librtfcomp/pkg-plist Thu Oct 9 15:24:35 2014 (r370547) @@ -7,4 +7,3 @@ lib/librtfcomp.a lib/librtfcomp.so lib/librtfcomp.so.0 lib/librtfcomp.so.0.0.0 -@dirrm include/rtfcomp From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 861BE90C; Thu, 9 Oct 2014 15:24:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 59645DEB; Thu, 9 Oct 2014 15:24:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FOeHF042033; Thu, 9 Oct 2014 15:24:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FOdvC042031; Thu, 9 Oct 2014 15:24:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FOdvC042031@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370548 - head/archivers/py-librtfcomp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:40 -0000 Author: sunpoet Date: Thu Oct 9 15:24:39 2014 New Revision: 370548 URL: https://svnweb.freebsd.org/changeset/ports/370548 QAT: https://qat.redports.org/buildarchive/r370548/ Log: - Convert from slave port to normal port Added: head/archivers/py-librtfcomp/distinfo - copied unchanged from r370327, head/archivers/librtfcomp/distinfo Modified: head/archivers/py-librtfcomp/Makefile Modified: head/archivers/py-librtfcomp/Makefile ============================================================================== --- head/archivers/py-librtfcomp/Makefile Thu Oct 9 15:24:35 2014 (r370547) +++ head/archivers/py-librtfcomp/Makefile Thu Oct 9 15:24:39 2014 (r370548) @@ -1,7 +1,11 @@ # Created by: Alexander Logvinov # $FreeBSD$ -PORTREVISION= 2 +PORTNAME= librtfcomp +PORTVERSION= 1.3 +PORTREVISION= 3 +CATEGORIES= archivers python +MASTER_SITES= SF/synce/SynCE/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org @@ -12,16 +16,22 @@ LICENSE= LGPL21 BUILD_DEPENDS= ${LOCALBASE}/bin/pyrexc:${PORTSDIR}/devel/pyrex LIB_DEPENDS= librtfcomp.so:${PORTSDIR}/archivers/librtfcomp -USES= python:2 +CONFIGURE_ARGS= --enable-python-bindings +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USES= libtool python:2 BUILD_WRKSRC= ${WRKSRC}/python INSTALL_WRKSRC= ${WRKSRC}/python -PLIST= ${NONEXISTENT} PLIST_FILES= %%PYTHON_SITELIBDIR%%/pyrtfcomp.a \ %%PYTHON_SITELIBDIR%%/pyrtfcomp.so -MASTERDIR= ${.CURDIR}/../librtfcomp -SLAVEPORT= py +post-patch: + @${REINPLACE_CMD} -e '/VISIBILITY=/ s| -fvisibility=hidden||' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|[^ ]*/src/librtfcomp\.la||' ${WRKSRC}/python/Makefile.in -.include "${MASTERDIR}/Makefile" +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/pyrtfcomp.so + +.include Copied: head/archivers/py-librtfcomp/distinfo (from r370327, head/archivers/librtfcomp/distinfo) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/archivers/py-librtfcomp/distinfo Thu Oct 9 15:24:39 2014 (r370548, copy of r370327, head/archivers/librtfcomp/distinfo) @@ -0,0 +1,2 @@ +SHA256 (librtfcomp-1.3.tar.gz) = 5ade6031956e2bdc3b6b2024bf658459d4d381e33bb5e59264f30eefc8a5f3b4 +SIZE (librtfcomp-1.3.tar.gz) = 328891 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:24:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1C0D9EF; Thu, 9 Oct 2014 15:24:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD9CDDF0; Thu, 9 Oct 2014 15:24:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FOi33042160; Thu, 9 Oct 2014 15:24:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FOi6X042158; Thu, 9 Oct 2014 15:24:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091524.s99FOi6X042158@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:24:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370549 - in head/ftp/curl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:24:44 -0000 Author: sunpoet Date: Thu Oct 9 15:24:43 2014 New Revision: 370549 URL: https://svnweb.freebsd.org/changeset/ports/370549 QAT: https://qat.redports.org/buildarchive/r370549/ Log: - Fix threaded-resolver - Bump PORTREVISION for package change PR: ports/193972 Submitted by: bsduser , mickael.maillot@gmail.com Obtained by: https://github.com/bagder/curl/commit/d9762a7cdb35e70f8cb0bf1c2f8019e8391616e1 Added: head/ftp/curl/files/patch-lib-asyn-thread.c (contents, props changed) Modified: head/ftp/curl/Makefile Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Thu Oct 9 15:24:39 2014 (r370548) +++ head/ftp/curl/Makefile Thu Oct 9 15:24:43 2014 (r370549) @@ -3,7 +3,7 @@ PORTNAME= curl PORTVERSION= 7.38.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet Added: head/ftp/curl/files/patch-lib-asyn-thread.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/curl/files/patch-lib-asyn-thread.c Thu Oct 9 15:24:43 2014 (r370549) @@ -0,0 +1,11 @@ +--- lib/asyn-thread.c.orig 2014-09-08 05:15:44.000000000 +0800 ++++ lib/asyn-thread.c 2014-10-09 08:28:38.036235206 +0800 +@@ -541,7 +541,7 @@ + td->poll_interval = 250; + + td->interval_end = elapsed + td->poll_interval; +- Curl_expire_latest(conn->data, td->poll_interval); ++ Curl_expire(conn->data, td->poll_interval); + } + + return CURLE_OK; From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:25:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5826CADF; Thu, 9 Oct 2014 15:25:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A15DDFB; Thu, 9 Oct 2014 15:25:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FP1o3042380; Thu, 9 Oct 2014 15:25:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FP0La042373; Thu, 9 Oct 2014 15:25:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201410091525.s99FP0La042373@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 9 Oct 2014 15:25:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370550 - head/www/nghttp2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:25:01 -0000 Author: sunpoet Date: Thu Oct 9 15:24:59 2014 New Revision: 370550 URL: https://svnweb.freebsd.org/changeset/ports/370550 QAT: https://qat.redports.org/buildarchive/r370550/ Log: - Update to 0.6.2 - Cleanup PLIST Changes: https://github.com/tatsuhiro-t/nghttp2/releases Modified: head/www/nghttp2/Makefile head/www/nghttp2/distinfo head/www/nghttp2/pkg-plist Modified: head/www/nghttp2/Makefile ============================================================================== --- head/www/nghttp2/Makefile Thu Oct 9 15:24:43 2014 (r370549) +++ head/www/nghttp2/Makefile Thu Oct 9 15:24:59 2014 (r370550) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nghttp2 -PORTVERSION= 0.6.1 +PORTVERSION= 0.6.2 CATEGORIES= www net MASTER_SITES= https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/v${PORTVERSION}/ \ LOCAL/sunpoet @@ -16,8 +16,7 @@ BUILD_DEPENDS= libevent2>=2.0.8:${PORTSD spdylay>=1.3.0:${PORTSDIR}/www/spdylay LIB_DEPENDS= libevent_openssl.so:${PORTSDIR}/devel/libevent2 \ libspdylay.so:${PORTSDIR}/www/spdylay -RUN_DEPENDS= libevent2>=2.0.8:${PORTSDIR}/devel/libevent2 \ - spdylay>=1.3.0:${PORTSDIR}/www/spdylay +RUN_DEPENDS:= ${BUILD_DEPENDS} OPTIONS_DEFINE= HPACK OPTIONS_SUB= yes @@ -40,7 +39,8 @@ USES= compiler:c++11-lang libtool pathf PORTDOCS= * -HPACK_CONFIGURE_ARGS= --enable-hpack-tools +HPACK_CONFIGURE_OFF= --disable-hpack-tools +HPACK_CONFIGURE_ON= --enable-hpack-tools HPACK_LIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson .include Modified: head/www/nghttp2/distinfo ============================================================================== --- head/www/nghttp2/distinfo Thu Oct 9 15:24:43 2014 (r370549) +++ head/www/nghttp2/distinfo Thu Oct 9 15:24:59 2014 (r370550) @@ -1,2 +1,2 @@ -SHA256 (nghttp2-0.6.1.tar.xz) = 2e774e6c7a50ca7b76d7818187fe6ede6aa1e5f25fdb12a5492cf8a5ee74d5c4 -SIZE (nghttp2-0.6.1.tar.xz) = 767404 +SHA256 (nghttp2-0.6.2.tar.xz) = b03a9a98dce841df0afa625f63f87791dc9f9b665663b3dbe3d67aa83b272a90 +SIZE (nghttp2-0.6.2.tar.xz) = 793320 Modified: head/www/nghttp2/pkg-plist ============================================================================== --- head/www/nghttp2/pkg-plist Thu Oct 9 15:24:43 2014 (r370549) +++ head/www/nghttp2/pkg-plist Thu Oct 9 15:24:59 2014 (r370550) @@ -4,15 +4,15 @@ bin/h2load bin/nghttp bin/nghttpd bin/nghttpx +include/nghttp2/asio_http2.h include/nghttp2/nghttp2.h include/nghttp2/nghttp2ver.h lib/libnghttp2.a lib/libnghttp2.so lib/libnghttp2.so.5 -lib/libnghttp2.so.5.0.0 +lib/libnghttp2.so.5.1.0 libdata/pkgconfig/libnghttp2.pc man/man1/h2load.1.gz man/man1/nghttp.1.gz man/man1/nghttpd.1.gz man/man1/nghttpx.1.gz -@dirrm include/nghttp2 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:45:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D28F7323; Thu, 9 Oct 2014 15:45:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BEC8B7A; Thu, 9 Oct 2014 15:45:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FjLfO054367; Thu, 9 Oct 2014 15:45:21 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FjLs9054365; Thu, 9 Oct 2014 15:45:21 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410091545.s99FjLs9054365@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 9 Oct 2014 15:45:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370551 - head/textproc/minised X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:45:21 -0000 Author: danilo Date: Thu Oct 9 15:45:20 2014 New Revision: 370551 URL: https://svnweb.freebsd.org/changeset/ports/370551 QAT: https://qat.redports.org/buildarchive/r370551/ Log: - Update from 1.14 to 1.15 Modified: head/textproc/minised/Makefile head/textproc/minised/distinfo Modified: head/textproc/minised/Makefile ============================================================================== --- head/textproc/minised/Makefile Thu Oct 9 15:24:59 2014 (r370550) +++ head/textproc/minised/Makefile Thu Oct 9 15:45:20 2014 (r370551) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= minised -PORTVERSION= 1.14 +PORTVERSION= 1.15 CATEGORIES= textproc MASTER_SITES= http://dl.exactcode.de/oss/minised/ Modified: head/textproc/minised/distinfo ============================================================================== --- head/textproc/minised/distinfo Thu Oct 9 15:24:59 2014 (r370550) +++ head/textproc/minised/distinfo Thu Oct 9 15:45:20 2014 (r370551) @@ -1,2 +1,2 @@ -SHA256 (minised-1.14.tar.gz) = fb68e5ca7bf1d1ed49afe10ea6d7e555f1bea20df60600fd306b39818058a133 -SIZE (minised-1.14.tar.gz) = 29746 +SHA256 (minised-1.15.tar.gz) = ada36a55b71d1f2eb61f2f3b95f112708ce51e69f601bf5ea5d7acb7c21b3481 +SIZE (minised-1.15.tar.gz) = 32224 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:55:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E66A676; Thu, 9 Oct 2014 15:55:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F9DE1A9; Thu, 9 Oct 2014 15:55:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99Ftfb8060299; Thu, 9 Oct 2014 15:55:41 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FteYC060289; Thu, 9 Oct 2014 15:55:40 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410091555.s99FteYC060289@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Thu, 9 Oct 2014 15:55:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370552 - in head/sysutils: . deltarpm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:55:41 -0000 Author: gahr Date: Thu Oct 9 15:55:39 2014 New Revision: 370552 URL: https://svnweb.freebsd.org/changeset/ports/370552 QAT: https://qat.redports.org/buildarchive/r370552/ Log: - New port: sysutils/deltarpm DeltaRPM is a tool that generates RPMs that contains the difference between an old and a new version of an RPM. This makes it possible to recreate the new RPM from the deltarpm and the old one. You don't have to have a copy of the old RPM, as it can also work with installed RPMs. The package also contains tools for creating and applying delta ISOs. WWW: http://freecode.com/projects/deltarpm/ Added: head/sysutils/deltarpm/ head/sysutils/deltarpm/Makefile (contents, props changed) head/sysutils/deltarpm/distinfo (contents, props changed) head/sysutils/deltarpm/pkg-descr (contents, props changed) head/sysutils/deltarpm/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Oct 9 15:45:20 2014 (r370551) +++ head/sysutils/Makefile Thu Oct 9 15:55:39 2014 (r370552) @@ -164,6 +164,7 @@ SUBDIR += ddrescue SUBDIR += debhelper SUBDIR += debootstrap + SUBDIR += deltarpm SUBDIR += deltup SUBDIR += desktop-installer SUBDIR += detach Added: head/sysutils/deltarpm/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/deltarpm/Makefile Thu Oct 9 15:55:39 2014 (r370552) @@ -0,0 +1,56 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= deltarpm +PORTVERSION= 3.6 +CATEGORIES= sysutils +MASTER_SITES= ftp://ftp.suse.com/pub/projects/deltarpm/ + +MAINTAINER= gahr@FreeBSD.org +COMMENT= Tool that generates delta RPMs + +LICENSE= BSD3CLAUSE + +LIB_DEPENDS= librpm.so:${PORTSDIR}/archivers/rpm4 + +USES= gmake python shebangfix tar:bz2 +SHEBANG_FILES= drpmsync + +ALL_TARGET= all +MAKE_ARGS+= prefix=${PREFIX} + +post-patch: + ${REINPLACE_CMD} \ + -e '/prefix=/s|=|?=|' \ + -e '/^CFLAGS/s|$$| -I${LOCALBASE}/include|' \ + -e '/^LDFLAGS/s|$$| -L${LOCALBASE}/lib|' \ + -e '/^PYTHONS/s|= .*$$|= ${PYTHON_CMD}|' \ + -e 's|make |${MAKE_CMD} |g' \ + -e 's|-m 755|-m 755 -s|' \ + -e 's|-s drpmsync|drpmsync|' \ + ${WRKSRC}/${MAKEFILE} + ${FIND} ${WRKSRC} -name "*.[ch]" | ${XARGS} ${REINPLACE_CMD} \ + -e 's|off64_t|off_t|g' \ + -e 's|mkstemp64|mkstemp|g' \ + -e 's|fopen64|fopen|g' \ + -e 's|ftello64|ftello|g' \ + -e 's|pwrite64|pwrite|g' \ + -e 's|pread64|pread|g' \ + -e 's|fseeko64|fseeko|g' \ + -e 's|ftruncate64|ftruncate|g' \ + -e 's|S_ISLINK|S_ISLNK|g' + ${REINPLACE_CMD} -e '8,11d' ${WRKSRC}/applydeltarpm.c + +post-build: + cd ${WRKSRC} && ${CC} -shared -o _deltarpm.so \ + readdeltarpm.o rpmhead.o util.o md5.o cfile.o \ + deltarpmmodule.c \ + `${PYTHON_CMD}-config --cflags` -fPIC \ + -lbz2 -lz -llzma + +post-install: + ${MKDIR} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/_deltarpm.so ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + ${INSTALL_DATA} ${WRKSRC}/deltarpm.py ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} + +.include Added: head/sysutils/deltarpm/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/deltarpm/distinfo Thu Oct 9 15:55:39 2014 (r370552) @@ -0,0 +1,2 @@ +SHA256 (deltarpm-3.6.tar.bz2) = fcc35db53e9913f12cdc013bdf922614ac8ef6fd5e7187e75203be8809d177be +SIZE (deltarpm-3.6.tar.bz2) = 500420 Added: head/sysutils/deltarpm/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/deltarpm/pkg-descr Thu Oct 9 15:55:39 2014 (r370552) @@ -0,0 +1,7 @@ +DeltaRPM is a tool that generates RPMs that contains the difference between an +old and a new version of an RPM. This makes it possible to recreate the new RPM +from the deltarpm and the old one. You don't have to have a copy of the old +RPM, as it can also work with installed RPMs. The package also contains tools +for creating and applying delta ISOs. + +WWW: http://freecode.com/projects/deltarpm/ Added: head/sysutils/deltarpm/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/deltarpm/pkg-plist Thu Oct 9 15:55:39 2014 (r370552) @@ -0,0 +1,17 @@ +bin/applydeltaiso +bin/applydeltarpm +bin/combinedeltarpm +bin/drpmsync +bin/fragiso +bin/makedeltaiso +bin/makedeltarpm +bin/rpmdumpheader +%%PYTHON_SITELIBDIR%%/_deltarpm.so +%%PYTHON_SITELIBDIR%%/deltarpm.py +man/man8/applydeltaiso.8.gz +man/man8/applydeltarpm.8.gz +man/man8/combinedeltarpm.8.gz +man/man8/drpmsync.8.gz +man/man8/fragiso.8.gz +man/man8/makedeltaiso.8.gz +man/man8/makedeltarpm.8.gz From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:56:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0DC59909; Thu, 9 Oct 2014 15:56:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EEB561B5; Thu, 9 Oct 2014 15:56:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FuER7060601; Thu, 9 Oct 2014 15:56:14 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FuEY9060597; Thu, 9 Oct 2014 15:56:14 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410091556.s99FuEY9060597@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 9 Oct 2014 15:56:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370553 - head/graphics/vips X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:56:15 -0000 Author: danilo Date: Thu Oct 9 15:56:13 2014 New Revision: 370553 URL: https://svnweb.freebsd.org/changeset/ports/370553 QAT: https://qat.redports.org/buildarchive/r370553/ Log: - Update from 7.40.10 to 7.40.11 Modified: head/graphics/vips/Makefile head/graphics/vips/distinfo Modified: head/graphics/vips/Makefile ============================================================================== --- head/graphics/vips/Makefile Thu Oct 9 15:55:39 2014 (r370552) +++ head/graphics/vips/Makefile Thu Oct 9 15:56:13 2014 (r370553) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vips -PORTVERSION= 7.40.10 +PORTVERSION= 7.40.11 CATEGORIES= graphics MASTER_SITES= http://www.vips.ecs.soton.ac.uk/supported/${PORTVERSION:R}/ Modified: head/graphics/vips/distinfo ============================================================================== --- head/graphics/vips/distinfo Thu Oct 9 15:55:39 2014 (r370552) +++ head/graphics/vips/distinfo Thu Oct 9 15:56:13 2014 (r370553) @@ -1,2 +1,2 @@ -SHA256 (vips-7.40.10.tar.gz) = 8457dcf3d6284923dea73f700fe4073e0dc67abd76b1e3ba30d64aa7bb184453 -SIZE (vips-7.40.10.tar.gz) = 3522978 +SHA256 (vips-7.40.11.tar.gz) = 26207184227301ad47c1c8fd5f7f98556087b6add63fa776b54abefed4ae062d +SIZE (vips-7.40.11.tar.gz) = 3523206 From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 15:57:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF01AA03; Thu, 9 Oct 2014 15:57:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA5EE1CB; Thu, 9 Oct 2014 15:57:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99FvPA5060997; Thu, 9 Oct 2014 15:57:25 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99FvOUP060987; Thu, 9 Oct 2014 15:57:24 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410091557.s99FvOUP060987@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Thu, 9 Oct 2014 15:57:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370554 - in head: . sysutils sysutils/createrepo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 15:57:26 -0000 Author: gahr Date: Thu Oct 9 15:57:23 2014 New Revision: 370554 URL: https://svnweb.freebsd.org/changeset/ports/370554 QAT: https://qat.redports.org/buildarchive/r370554/ Log: - Restore sysutils/createrepo - Update to 0.10.3 - Take maintainership Added: head/sysutils/createrepo/ - copied from r366979, head/sysutils/createrepo/ Modified: head/MOVED head/sysutils/Makefile head/sysutils/createrepo/Makefile head/sysutils/createrepo/distinfo head/sysutils/createrepo/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Thu Oct 9 15:56:13 2014 (r370553) +++ head/MOVED Thu Oct 9 15:57:23 2014 (r370554) @@ -6892,7 +6892,6 @@ sysutils/clockspeed-conf||2014-09-01|Not sysutils/comconsole||2014-09-01|Not staged sysutils/comiccron||2014-09-01|Not staged sysutils/contool||2014-09-01|Not staged -sysutils/createrepo||2014-09-01|Not staged sysutils/cromwell||2014-09-01|Not staged sysutils/cvsweb-converters||2014-09-01|Not staged sysutils/eroaster||2014-09-01|Not staged Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Oct 9 15:56:13 2014 (r370553) +++ head/sysutils/Makefile Thu Oct 9 15:57:23 2014 (r370554) @@ -146,6 +146,7 @@ SUBDIR += cpulimit SUBDIR += cramfs SUBDIR += crashme + SUBDIR += createrepo SUBDIR += cronolog SUBDIR += cronolog-devel SUBDIR += curly Modified: head/sysutils/createrepo/Makefile ============================================================================== --- head/sysutils/createrepo/Makefile Tue Sep 2 09:04:44 2014 (r366979) +++ head/sysutils/createrepo/Makefile Thu Oct 9 15:57:23 2014 (r370554) @@ -2,21 +2,23 @@ # $FreeBSD$ PORTNAME= createrepo -PORTVERSION= 0.9.8 -PORTREVISION= 1 +PORTVERSION= 0.10.3 CATEGORIES= sysutils MASTER_SITES= http://createrepo.baseurl.org/download/ -MAINTAINER= ports@FreeBSD.org -COMMENT= Creates a common metadata repository +MAINTAINER= gahr@FreeBSD.org +COMMENT= Utility to create and manage RPM metadata repositories + +LICENSE= GPLv2 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/sqlitecachec.py:${PORTSDIR}/devel/py-yum-metadata-parser \ ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 \ ${PYTHON_SITELIBDIR}/urlgrabber/__init__.py:${PORTSDIR}/www/py-urlgrabber \ - ${PYTHON_SITELIBDIR}/yum/__init__.py:${PORTSDIR}/sysutils/yum + ${PYTHON_SITELIBDIR}/yum/__init__.py:${PORTSDIR}/sysutils/yum \ + ${PYTHON_SITELIBDIR}/deltarpm.py:${PORTSDIR}/sysutils/deltarpm -USE_PYTHON= yes -USES= gmake +USES= gmake python shebangfix +SHEBANG_FILES= *.py */*.py Makefile BUILD_DEPENDS+= ginstall:${PORTSDIR}/sysutils/coreutils GINSTALL= ginstall @@ -24,26 +26,13 @@ GINSTALL= ginstall MAKE_ARGS= MAKE=${MAKE_CMD} INSTALL="${GINSTALL} -p -v" PYTHON=${PYTHON_CMD} \ prefix=${PREFIX} mandir=${MANPREFIX}/man sysconfdir=${PREFIX}/etc -MAN1= mergerepo.1 modifyrepo.1 -MAN8= createrepo.8 - -NO_STAGE= yes post-patch: - ${REINPLACE_CMD} -e 's|/usr/share/createrepo|${DATADIR}|g' \ - ${WRKSRC}/bin/mergerepo \ - ${WRKSRC}/bin/modifyrepo \ - ${WRKSRC}/bin/createrepo - ${REINPLACE_CMD} -e 's|#!/usr/bin/python -t|#!${PYTHON_CMD}|' \ - ${WRKSRC}/genpkgmetadata.py \ - ${WRKSRC}/dmd.py \ - ${WRKSRC}/mergerepo.py \ - ${WRKSRC}/createrepo/deltarpms.py \ - ${WRKSRC}/createrepo/utils.py \ - ${WRKSRC}/createrepo/yumbased.py \ - ${WRKSRC}/createrepo/readMetadata.py \ - ${WRKSRC}/createrepo/merge.py - ${REINPLACE_CMD} -e 's|python|${PYTHON_CMD}|' -e 's|$$(datadir)/$$(PKGNAME)|${DATADIR}|' \ - ${WRKSRC}/Makefile + ${FIND} ${WRKSRC} -type f | ${XARGS} \ + ${REINPLACE_CMD} -e 's|/usr/share/createrepo|${DATADIR}|g' + ${REINPLACE_CMD} \ + -e 's|$$(datadir)/$$(PKGNAME)|${DATADIR}|' \ + -e '/^compdir :=/s|:= .*$$|= ${PREFIX}/share/bash-completion/completions|' \ + ${WRKSRC}/Makefile ${REINPLACE_CMD} -e '/^PYSYSDIR/s|:= \(.*\)|= ${PREFIX}|' \ ${WRKSRC}/createrepo/Makefile Modified: head/sysutils/createrepo/distinfo ============================================================================== --- head/sysutils/createrepo/distinfo Tue Sep 2 09:04:44 2014 (r366979) +++ head/sysutils/createrepo/distinfo Thu Oct 9 15:57:23 2014 (r370554) @@ -1,2 +1,2 @@ -SHA256 (createrepo-0.9.8.tar.gz) = 736842bda7d404a03470775332ccda339a114f14772d7a354d99bf64f38ecd14 -SIZE (createrepo-0.9.8.tar.gz) = 57973 +SHA256 (createrepo-0.10.3.tar.gz) = cd54621bef94c4a5ebffb5f19382050452d3e69763d2db4121c5d3881509ea6d +SIZE (createrepo-0.10.3.tar.gz) = 66004 Modified: head/sysutils/createrepo/pkg-plist ============================================================================== --- head/sysutils/createrepo/pkg-plist Tue Sep 2 09:04:44 2014 (r366979) +++ head/sysutils/createrepo/pkg-plist Thu Oct 9 15:57:23 2014 (r370554) @@ -1,20 +1,28 @@ bin/createrepo -bin/modifyrepo bin/mergerepo -%%DATADIR%%/genpkgmetadata.py -%%DATADIR%%/modifyrepo.py -%%DATADIR%%/mergerepo.py -@dirrm %%DATADIR%% +bin/modifyrepo %%PYTHON_SITELIBDIR%%/createrepo/__init__.py -%%PYTHON_SITELIBDIR%%/createrepo/deltarpms.py -%%PYTHON_SITELIBDIR%%/createrepo/merge.py -%%PYTHON_SITELIBDIR%%/createrepo/readMetadata.py -%%PYTHON_SITELIBDIR%%/createrepo/utils.py -%%PYTHON_SITELIBDIR%%/createrepo/yumbased.py %%PYTHON_SITELIBDIR%%/createrepo/__init__.pyc +%%PYTHON_SITELIBDIR%%/createrepo/deltarpms.py %%PYTHON_SITELIBDIR%%/createrepo/deltarpms.pyc +%%PYTHON_SITELIBDIR%%/createrepo/merge.py %%PYTHON_SITELIBDIR%%/createrepo/merge.pyc +%%PYTHON_SITELIBDIR%%/createrepo/readMetadata.py %%PYTHON_SITELIBDIR%%/createrepo/readMetadata.pyc +%%PYTHON_SITELIBDIR%%/createrepo/utils.py %%PYTHON_SITELIBDIR%%/createrepo/utils.pyc +%%PYTHON_SITELIBDIR%%/createrepo/yumbased.py %%PYTHON_SITELIBDIR%%/createrepo/yumbased.pyc -@dirrm %%PYTHON_SITELIBDIR%%/createrepo +man/man1/mergerepo.1.gz +man/man1/modifyrepo.1.gz +man/man8/createrepo.8.gz +share/bash-completion/completions/createrepo +share/bash-completion/completions/genpkgmetadata.py +share/bash-completion/completions/mergerepo +share/bash-completion/completions/mergerepo.py +share/bash-completion/completions/modifyrepo +share/bash-completion/completions/modifyrepo.py +%%DATADIR%%/genpkgmetadata.py +%%DATADIR%%/mergerepo.py +%%DATADIR%%/modifyrepo.py +%%DATADIR%%/worker.py From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 16:48:27 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CEC7EB81; Thu, 9 Oct 2014 16:48:27 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A1430A2A; Thu, 9 Oct 2014 16:48:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99GmRLc085521; Thu, 9 Oct 2014 16:48:27 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99GmRGQ085520; Thu, 9 Oct 2014 16:48:27 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410091648.s99GmRGQ085520@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Thu, 9 Oct 2014 16:48:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370555 - head/devel/sparc64-xtoolchain-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 16:48:27 -0000 Author: bapt Date: Thu Oct 9 16:48:27 2014 New Revision: 370555 URL: https://svnweb.freebsd.org/changeset/ports/370555 QAT: https://qat.redports.org/buildarchive/r370555/ Log: Don't know how a plist ended up here but it should never have been here :) Deleted: head/devel/sparc64-xtoolchain-gcc/pkg-plist From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 16:54:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F5D1E7B; Thu, 9 Oct 2014 16:54:33 +0000 (UTC) Received: from mailrelay007.isp.belgacom.be (mailrelay007.isp.belgacom.be [195.238.6.173]) by mx1.freebsd.org (Postfix) with ESMTP id C10AAB09; Thu, 9 Oct 2014 16:54:32 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AoEGAIS8NlRbsLca/2dsb2JhbABfgw5TTQvLGodNAoEGFwF7hAQBAQQ6HCMQCxQECSUPKh4GE4hCAQjDJQEXkEQHhEsBBJY7hw+BL41NhxaDZTsvgkoBAQE Received: from 26.183-176-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.176.183.26]) by relay.skynet.be with ESMTP; 09 Oct 2014 18:53:23 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.9/8.14.9) with ESMTP id s99GrM7l004225; Thu, 9 Oct 2014 18:53:22 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Thu, 9 Oct 2014 18:53:21 +0200 From: Tijl Coosemans To: Hajimu UMEMOTO Subject: Re: svn commit: r370526 - head/security/cyrus-sasl2-gssapi Message-ID: <20141009185321.5db18929@kalimero.tijl.coosemans.org> In-Reply-To: <201410091318.s99DISxR078486@svn.freebsd.org> References: <201410091318.s99DISxR078486@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 16:54:33 -0000 On Thu, 9 Oct 2014 13:18:28 +0000 (UTC) Hajimu UMEMOTO wrote: > Author: ume > Date: Thu Oct 9 13:18:28 2014 > New Revision: 370526 > URL: https://svnweb.freebsd.org/changeset/ports/370526 > QAT: https://qat.redports.org/buildarchive/r370526/ > > Log: > Include RPATH in the libs, again. > It seems that USES=libtool doesn't rewrite ${LIBTOOL} in > a configure script to use ${LOCALBASE}/bin/libtool like > bsd.autotools.mk did. > So, rewrite it explicitly for workaround. > > PR: 194176 > Submitted by: jhujhiti__at__adjectivism.org Can you ask upstream to run 'autoreconf -f -i'? It will update all the build scripts. For instance, the version of libtool that is currently included in the distfile is almost 15 years old. Ideally the cyrus-sals2 ports should also do that (by adding USES=autoreconf) instead of this hack. The problem with this hack, and the reason why USES=libtool does not use it, is that libtool is a generated script with hardcoded values for CC, LD, and a number of other tools and flags. And the tools used to build security/cyrus-sasl2-gssapi are not necessarily the same as the ones used to build devel/libtool. From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 17:59:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E0B7C92; Thu, 9 Oct 2014 17:59:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0AE39259; Thu, 9 Oct 2014 17:59:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99Hx1jU018568; Thu, 9 Oct 2014 17:59:01 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99Hx1c3018567; Thu, 9 Oct 2014 17:59:01 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201410091759.s99Hx1c3018567@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 9 Oct 2014 17:59:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370556 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 17:59:02 -0000 Author: tijl Date: Thu Oct 9 17:59:01 2014 New Revision: 370556 URL: https://svnweb.freebsd.org/changeset/ports/370556 QAT: https://qat.redports.org/buildarchive/r370556/ Log: Modern compilers have more -O* flags that enable strict aliasing. Instead of listing each one, just add -fno-strict-aliasing to CFLAGS unconditionally PR: 186929 Exp-run by: antoine Approved by: portmgr (antoine) Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Thu Oct 9 16:48:27 2014 (r370555) +++ head/Mk/bsd.port.mk Thu Oct 9 17:59:01 2014 (r370556) @@ -2038,7 +2038,7 @@ MAKE_ENV+= PREFIX=${PREFIX} \ # a lot of ports. .if !defined(WITHOUT_NO_STRICT_ALIASING) .if ${CC} != "icc" -.if !empty(CFLAGS:M-O[23s]) && empty(CFLAGS:M-fno-strict-aliasing) +.if empty(CFLAGS:M-fno-strict-aliasing) CFLAGS+= -fno-strict-aliasing .endif .endif From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 19:14:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA1521B5; Thu, 9 Oct 2014 19:14:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9B7FACC9; Thu, 9 Oct 2014 19:14:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99JEbde056451; Thu, 9 Oct 2014 19:14:37 GMT (envelope-from makc@FreeBSD.org) Received: (from makc@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99JEaqD056448; Thu, 9 Oct 2014 19:14:36 GMT (envelope-from makc@FreeBSD.org) Message-Id: <201410091914.s99JEaqD056448@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: makc set sender to makc@FreeBSD.org using -f From: Max Brazhnikov Date: Thu, 9 Oct 2014 19:14:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370557 - head/cad/librecad X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 19:14:37 -0000 Author: makc Date: Thu Oct 9 19:14:36 2014 New Revision: 370557 URL: https://svnweb.freebsd.org/changeset/ports/370557 QAT: https://qat.redports.org/buildarchive/r370557/ Log: cad/librecad: - update to 2.0.5 Modified: head/cad/librecad/Makefile head/cad/librecad/distinfo head/cad/librecad/pkg-plist Modified: head/cad/librecad/Makefile ============================================================================== --- head/cad/librecad/Makefile Thu Oct 9 17:59:01 2014 (r370556) +++ head/cad/librecad/Makefile Thu Oct 9 19:14:36 2014 (r370557) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= librecad -DISTVERSION= 2.0.3 -PORTREVISION= 1 +DISTVERSION= 2.0.5 CATEGORIES= cad MASTER_SITES= GITHUB @@ -19,7 +18,7 @@ USES= compiler:c++11-lib desktop-file-u USE_GITHUB= yes GH_ACCOUNT= LibreCAD GH_PROJECT= LibreCAD -GH_COMMIT= 1555bd5 +GH_COMMIT= f4f325e post-patch: ${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,' \ Modified: head/cad/librecad/distinfo ============================================================================== --- head/cad/librecad/distinfo Thu Oct 9 17:59:01 2014 (r370556) +++ head/cad/librecad/distinfo Thu Oct 9 19:14:36 2014 (r370557) @@ -1,2 +1,2 @@ -SHA256 (librecad-2.0.3.tar.gz) = 9f7900b0489254e2119d58a36a215551d2d4d7bae291d06e5783da94aeaab126 -SIZE (librecad-2.0.3.tar.gz) = 15475347 +SHA256 (librecad-2.0.5.tar.gz) = 02ff2d0f3bdc2fcc3a26f311b161e40088757fe26e217018b8eb8574b57eec2b +SIZE (librecad-2.0.5.tar.gz) = 15606471 Modified: head/cad/librecad/pkg-plist ============================================================================== --- head/cad/librecad/pkg-plist Thu Oct 9 17:59:01 2014 (r370556) +++ head/cad/librecad/pkg-plist Thu Oct 9 19:14:36 2014 (r370557) @@ -97,6 +97,7 @@ share/applications/librecad.desktop %%DATADIR%%/plugins/libasciifile.so %%DATADIR%%/plugins/libimportshp.so %%DATADIR%%/plugins/liblist.so +%%DATADIR%%/plugins/libplotequation.so %%DATADIR%%/plugins/libsameprop.so %%DATADIR%%/plugins/libsample.so %%DATADIR%%/qm/librecad_ca.qm @@ -134,6 +135,7 @@ share/applications/librecad.desktop %%DATADIR%%/qm/librecad_id_ID.qm %%DATADIR%%/qm/librecad_it.qm %%DATADIR%%/qm/librecad_ja.qm +%%DATADIR%%/qm/librecad_ko.qm %%DATADIR%%/qm/librecad_lv.qm %%DATADIR%%/qm/librecad_nl.qm %%DATADIR%%/qm/librecad_no.qm @@ -186,6 +188,7 @@ share/applications/librecad.desktop %%DATADIR%%/qm/plugins_id_ID.qm %%DATADIR%%/qm/plugins_it.qm %%DATADIR%%/qm/plugins_ja.qm +%%DATADIR%%/qm/plugins_ko.qm %%DATADIR%%/qm/plugins_lv.qm %%DATADIR%%/qm/plugins_nl.qm %%DATADIR%%/qm/plugins_no.qm @@ -204,12 +207,3 @@ share/applications/librecad.desktop %%DATADIR%%/qm/plugins_zh_cn.qm %%DATADIR%%/qm/plugins_zh_tw.qm share/pixmaps/librecad.png -@dirrm %%DATADIR%%/qm -@dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/patterns -@dirrm %%DATADIR%%/library/templates -@dirrm %%DATADIR%%/library/misc -@dirrm %%DATADIR%%/library -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/doc -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 20:51:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1AB1882; Thu, 9 Oct 2014 20:51:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A3EC78E7; Thu, 9 Oct 2014 20:51:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99KpQ1D002766; Thu, 9 Oct 2014 20:51:26 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99KpPd7002762; Thu, 9 Oct 2014 20:51:25 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410092051.s99KpPd7002762@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 20:51:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370558 - in head/devel: . rubygem-oj X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 20:51:26 -0000 Author: swills Date: Thu Oct 9 20:51:25 2014 New Revision: 370558 URL: https://svnweb.freebsd.org/changeset/ports/370558 QAT: https://qat.redports.org/buildarchive/r370558/ Log: devel/rubygem-oj: create port The fastest JSON parser and object serializer. WWW: http://www.ohler.com/oj Added: head/devel/rubygem-oj/ head/devel/rubygem-oj/Makefile (contents, props changed) head/devel/rubygem-oj/distinfo (contents, props changed) head/devel/rubygem-oj/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Oct 9 19:14:36 2014 (r370557) +++ head/devel/Makefile Thu Oct 9 20:51:25 2014 (r370558) @@ -4452,6 +4452,7 @@ SUBDIR += rubygem-nori SUBDIR += rubygem-notify SUBDIR += rubygem-nprogress-rails + SUBDIR += rubygem-oj SUBDIR += rubygem-open3_backport SUBDIR += rubygem-open4 SUBDIR += rubygem-orm_adapter Added: head/devel/rubygem-oj/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-oj/Makefile Thu Oct 9 20:51:25 2014 (r370558) @@ -0,0 +1,16 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= oj +PORTVERSION= 2.10.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Fast JSON parser and serializer + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/devel/rubygem-oj/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-oj/distinfo Thu Oct 9 20:51:25 2014 (r370558) @@ -0,0 +1,2 @@ +SHA256 (rubygem/oj-2.10.3.gem) = f3162887def6a22e8cca4ce21a809e1607ec689da3de7ffd2929f5db2b6a5a98 +SIZE (rubygem/oj-2.10.3.gem) = 105472 Added: head/devel/rubygem-oj/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-oj/pkg-descr Thu Oct 9 20:51:25 2014 (r370558) @@ -0,0 +1,3 @@ +The fastest JSON parser and object serializer. + +WWW: http://www.ohler.com/oj From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 20:59:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 69919DEC; Thu, 9 Oct 2014 20:59:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C3A69FC; Thu, 9 Oct 2014 20:59:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99Kxu0e004579; Thu, 9 Oct 2014 20:59:56 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99Kxu8v004578; Thu, 9 Oct 2014 20:59:56 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410092059.s99Kxu8v004578@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 9 Oct 2014 20:59:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370559 - head/mail/mail-notification X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 20:59:56 -0000 Author: pi Date: Thu Oct 9 20:59:55 2014 New Revision: 370559 URL: https://svnweb.freebsd.org/changeset/ports/370559 QAT: https://qat.redports.org/buildarchive/r370559/ Log: mail/mail-notification: fix issues - fix dist url - hotmail feature disabled - strip binary - use gmime26 instead of gmime2 - bump portrevision - change maintainer to submitter PR: 192349 Submitted by: Jonathan Chen Approved by: mwisnicki+freebsd@gmail.com (maintainer) Modified: head/mail/mail-notification/Makefile Modified: head/mail/mail-notification/Makefile ============================================================================== --- head/mail/mail-notification/Makefile Thu Oct 9 20:51:25 2014 (r370558) +++ head/mail/mail-notification/Makefile Thu Oct 9 20:59:55 2014 (r370559) @@ -3,12 +3,12 @@ PORTNAME= mail-notification DISTVERSION= 5.4 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= mail ipv6 MASTER_SITES= ${MASTER_SITE_SAVANNAH} -MASTER_SITE_SUBDIR= mailnotify +MASTER_SITE_SUBDIR= mailnotify-orig -MAINTAINER= mwisnicki+freebsd@gmail.com +MAINTAINER= jonc@chen.org.nz COMMENT= Mail notification for freedesktop.org-compliant system trays LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ @@ -20,7 +20,7 @@ USE_LDCONFIG= yes USE_GNOME= gconf2 gnomeprefix gnomevfs2 libglade2 libgnomeui libxml2 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -JB_CONF_ARGS= cc="${CC}" cflags="${CFLAGS}" cppflags="${CPPFLAGS}" ldflags="${LDFLAGS}" prefix="${PREFIX}" destdir="${STAGEDIR}" +JB_CONF_ARGS= cc="${CC}" cflags="${CFLAGS}" cppflags="${CPPFLAGS}" ldflags="${LDFLAGS}" prefix="${PREFIX}" destdir="${STAGEDIR}" hotmail=no JB_CONF_ENV= ${MAKE_ENV} jb_cppflags="${CPPFLAGS}" jb_ldflags="${LDFLAGS}" GCONF_SCHEMAS= mail-notification.schemas INSTALLS_OMF= yes @@ -92,7 +92,7 @@ JB_CONF_ARGS+= sylpheed=no || ${PORT_OPTIONS:MIMAP} \ || ${PORT_OPTIONS:MMOZILLA} \ || ${PORT_OPTIONS:MSYLPHEED} -LIB_DEPENDS+= libgmime-2.0.so:${PORTSDIR}/mail/gmime2 +LIB_DEPENDS+= libgmime-2.6.so:${PORTSDIR}/mail/gmime26 .endif .if ! ${PORT_OPTIONS:MSSL} JB_CONF_ARGS+= ssl=no @@ -114,6 +114,7 @@ do-configure: do-build: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./jb build + ${STRIP_CMD} ${WRKSRC}/build/src/mail-notification do-install: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ./jb install From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 21:01:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2ABCF00; Thu, 9 Oct 2014 21:01:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 75203AA6; Thu, 9 Oct 2014 21:01:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99L1pEF008534; Thu, 9 Oct 2014 21:01:51 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99L1on9008527; Thu, 9 Oct 2014 21:01:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410092101.s99L1on9008527@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 21:01:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370560 - in head/net: . rubygem-omniauth-facebook X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 21:01:51 -0000 Author: swills Date: Thu Oct 9 21:01:50 2014 New Revision: 370560 URL: https://svnweb.freebsd.org/changeset/ports/370560 QAT: https://qat.redports.org/buildarchive/r370560/ Log: net/rubygem-omniauth-facebook: create port Facebook OAuth2 Strategy for OmniAuth WWW: https://github.com/mkdynamic/omniauth-facebook Added: head/net/rubygem-omniauth-facebook/ head/net/rubygem-omniauth-facebook/Makefile (contents, props changed) head/net/rubygem-omniauth-facebook/distinfo (contents, props changed) head/net/rubygem-omniauth-facebook/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Oct 9 20:59:55 2014 (r370559) +++ head/net/Makefile Thu Oct 9 21:01:50 2014 (r370560) @@ -1008,6 +1008,7 @@ SUBDIR += rubygem-oauth SUBDIR += rubygem-oauth2 SUBDIR += rubygem-octokit + SUBDIR += rubygem-omniauth-facebook SUBDIR += rubygem-omniauth-github SUBDIR += rubygem-omniauth-github-discourse SUBDIR += rubygem-omniauth-google-oauth2 Added: head/net/rubygem-omniauth-facebook/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-omniauth-facebook/Makefile Thu Oct 9 21:01:50 2014 (r370560) @@ -0,0 +1,19 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= omniauth-facebook +PORTVERSION= 2.0.0 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Facebook OAuth2 Strategy for OmniAuth + +RUN_DEPENDS= rubygem-omniauth-oauth2>=1.2:${PORTSDIR}/net/rubygem-omniauth-oauth2 + +USE_RUBY= yes +USE_RUBYGEMS= yes +USE_RAKE= yes +RUBYGEM_AUTOPLIST=yes + +.include Added: head/net/rubygem-omniauth-facebook/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-omniauth-facebook/distinfo Thu Oct 9 21:01:50 2014 (r370560) @@ -0,0 +1,2 @@ +SHA256 (rubygem/omniauth-facebook-2.0.0.gem) = c241db1fb0fdd8f3a9629688aad0c60cad7679dc0c404d0f35907ce73f14047b +SIZE (rubygem/omniauth-facebook-2.0.0.gem) = 17408 Added: head/net/rubygem-omniauth-facebook/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-omniauth-facebook/pkg-descr Thu Oct 9 21:01:50 2014 (r370560) @@ -0,0 +1,3 @@ +Facebook OAuth2 Strategy for OmniAuth + +WWW: https://github.com/mkdynamic/omniauth-facebook From owner-svn-ports-head@FreeBSD.ORG Thu Oct 9 21:15:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01D6B422; Thu, 9 Oct 2014 21:15:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7E6DC35; Thu, 9 Oct 2014 21:15:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s99LFIV8013885; Thu, 9 Oct 2014 21:15:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s99LFHNe013881; Thu, 9 Oct 2014 21:15:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410092115.s99LFHNe013881@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 9 Oct 2014 21:15:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370561 - in head/www: . rubygem-ruby-readability X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Oct 2014 21:15:19 -0000 Author: swills Date: Thu Oct 9 21:15:17 2014 New Revision: 370561 URL: https://svnweb.freebsd.org/changeset/ports/370561 QAT: https://qat.redports.org/buildarchive/r370561/ Log: www/rubygem-ruby-readability: create port Port of arc90's readability project to ruby WWW: http://github.com/cantino/ruby-readability Added: head/www/rubygem-ruby-readability/ head/www/rubygem-ruby-readability/Makefile (contents, props changed) head/www/rubygem-ruby-readability/distinfo (contents, props changed) head/www/rubygem-ruby-readability/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Oct 9 21:01:50 2014 (r370560) +++ head/www/Makefile Thu Oct 9 21:15:17 2014 (r370561) @@ -1871,6 +1871,7 @@ SUBDIR += rubygem-robotex SUBDIR += rubygem-robots SUBDIR += rubygem-rtlit + SUBDIR += rubygem-ruby-readability SUBDIR += rubygem-savon SUBDIR += rubygem-sawyer SUBDIR += rubygem-scrapi Added: head/www/rubygem-ruby-readability/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-ruby-readability/Makefile Thu Oct 9 21:15:17 2014 (r370561) @@ -0,0 +1,21 @@ +# Created by: Steve Wills +# $FreeBSD$ + +PORTNAME= ruby-readability +PORTVERSION= 0.7.0 +CATEGORIES= www rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Readability for Ruby + +RUN_DEPENDS= rubygem-guess_html_encoding>=0.0.4:${PORTSDIR}/devel/rubygem-guess_html_encoding \ + rubygem-nokogiri>=1.4.2:${PORTSDIR}/textproc/rubygem-nokogiri + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST=yes + +PLIST_FILES= bin/readability + +.include Added: head/www/rubygem-ruby-readability/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-ruby-readability/distinfo Thu Oct 9 21:15:17 2014 (r370561) @@ -0,0 +1,2 @@ +SHA256 (rubygem/ruby-readability-0.7.0.gem) = eaeac60549e08b27466b1cac3c9693b17ae91dcfecafc03915c8c1e3f3823b96 +SIZE (rubygem/ruby-readability-0.7.0.gem) = 236032 Added: head/www/rubygem-ruby-readability/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-ruby-readability/pkg-descr Thu Oct 9 21:15:17 2014 (r370561) @@ -0,0 +1,3 @@ +Port of arc90's readability project to ruby + +WWW: http://github.com/cantino/ruby-readability From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 00:05:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4AB2AB83; Fri, 10 Oct 2014 00:05:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3631EFEE; Fri, 10 Oct 2014 00:05:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9A051DS096141; Fri, 10 Oct 2014 00:05:01 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9A051Ai096140; Fri, 10 Oct 2014 00:05:01 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410100005.s9A051Ai096140@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 10 Oct 2014 00:05:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370562 - head/devel/devtodo/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 00:05:01 -0000 Author: marino Date: Fri Oct 10 00:05:00 2014 New Revision: 370562 URL: https://svnweb.freebsd.org/changeset/ports/370562 QAT: https://qat.redports.org/buildarchive/r370562/ Log: devel/devtodo: Fix with gcc by adding Added: head/devel/devtodo/files/patch-src__todoterm.cc (contents, props changed) Added: head/devel/devtodo/files/patch-src__todoterm.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/devtodo/files/patch-src__todoterm.cc Fri Oct 10 00:05:00 2014 (r370562) @@ -0,0 +1,10 @@ +--- src/todoterm.cc.orig 2007-06-28 13:04:36 UTC ++++ src/todoterm.cc +@@ -5,6 +5,7 @@ + #include + #include + #include ++#include + #include + #include + From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 01:11:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1DEA521C; Fri, 10 Oct 2014 01:11:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0A08F940; Fri, 10 Oct 2014 01:11:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9A1B7cL029241; Fri, 10 Oct 2014 01:11:07 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9A1B7N1029239; Fri, 10 Oct 2014 01:11:07 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201410100111.s9A1B7N1029239@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 10 Oct 2014 01:11:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370563 - head/net/ntp-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 01:11:08 -0000 Author: cy Date: Fri Oct 10 01:11:06 2014 New Revision: 370563 URL: https://svnweb.freebsd.org/changeset/ports/370563 QAT: https://qat.redports.org/buildarchive/r370563/ Log: Update 4.2.7p475 --> 4.2.7p476 Modified: head/net/ntp-devel/Makefile head/net/ntp-devel/distinfo Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Fri Oct 10 00:05:00 2014 (r370562) +++ head/net/ntp-devel/Makefile Fri Oct 10 01:11:06 2014 (r370563) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.2.7p475 +PORTVERSION= 4.2.7p476 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ Modified: head/net/ntp-devel/distinfo ============================================================================== --- head/net/ntp-devel/distinfo Fri Oct 10 00:05:00 2014 (r370562) +++ head/net/ntp-devel/distinfo Fri Oct 10 01:11:06 2014 (r370563) @@ -1,2 +1,2 @@ -SHA256 (ntp-dev-4.2.7p475.tar.gz) = a985a72e01c804460ada5000439c54396f2f79170e314b342e0659763da32627 -SIZE (ntp-dev-4.2.7p475.tar.gz) = 6527539 +SHA256 (ntp-dev-4.2.7p476.tar.gz) = ed4471c4472759dc7a7af2002f69f5d9a446c58ae0081b3e3a550a5590b8f94e +SIZE (ntp-dev-4.2.7p476.tar.gz) = 6505338 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 03:43:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CB075C2; Fri, 10 Oct 2014 03:43:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 696EA976; Fri, 10 Oct 2014 03:43:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9A3hjeJ000572; Fri, 10 Oct 2014 03:43:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9A3hj0f000571; Fri, 10 Oct 2014 03:43:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410100343.s9A3hj0f000571@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 10 Oct 2014 03:43:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370564 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 03:43:45 -0000 Author: swills Date: Fri Oct 10 03:43:44 2014 New Revision: 370564 URL: https://svnweb.freebsd.org/changeset/ports/370564 QAT: https://qat.redports.org/buildarchive/r370564/ Log: - Add missing step for portupgrade part of Ruby 2.0 note Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Fri Oct 10 01:11:06 2014 (r370563) +++ head/UPDATING Fri Oct 10 03:43:44 2014 (r370564) @@ -36,6 +36,7 @@ you update your ports collection, before # pkg delete -f ruby ruby-iconv portupgrade # make -C /usr/ports/ports-mgmt/portupgrade install clean + # pkg set -o lang/ruby19:lang/ruby20 # portupgrade -x ruby-2.0.\* -fr lang/ruby20 20141003: From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 03:44:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB8646B0; Fri, 10 Oct 2014 03:44:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CDC53982; Fri, 10 Oct 2014 03:44:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9A3iIpo000811; Fri, 10 Oct 2014 03:44:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9A3iHci000800; Fri, 10 Oct 2014 03:44:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201410100344.s9A3iHci000800@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 10 Oct 2014 03:44:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370565 - in head/net/syncthing: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 03:44:19 -0000 Author: swills Date: Fri Oct 10 03:44:17 2014 New Revision: 370565 URL: https://svnweb.freebsd.org/changeset/ports/370565 QAT: https://qat.redports.org/buildarchive/r370565/ Log: net/syncthing: update to 0.10.0 Added: head/net/syncthing/files/patch-build.go (contents, props changed) Modified: head/net/syncthing/Makefile head/net/syncthing/distinfo head/net/syncthing/files/patch-upgrade__upgrade_supported.go Modified: head/net/syncthing/Makefile ============================================================================== --- head/net/syncthing/Makefile Fri Oct 10 03:43:44 2014 (r370564) +++ head/net/syncthing/Makefile Fri Oct 10 03:44:17 2014 (r370565) @@ -2,33 +2,10 @@ # $FreeBSD$ PORTNAME= syncthing -PORTVERSION= 0.9.18 -PORTREVISION= 2 +PORTVERSION= 0.10.0 CATEGORIES= net -MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/:group1 \ - https://bitbucket.org/kardianos/osext/get/:group2 \ - LOCAL/swills:group3 \ - LOCAL/swills:group4 \ - LOCAL/swills:group5 \ - https://codeload.github.com/bkaradzic/go-lz4/legacy.tar.gz/93a831d?dummy=/:group6 \ - https://codeload.github.com/calmh/xdr/legacy.tar.gz/e1714bb?dummy=/:group7 \ - https://codeload.github.com/juju/ratelimit/legacy.tar.gz/f9f36d1?dummy=/:group8 \ - https://codeload.github.com/syndtr/goleveldb/legacy.tar.gz/9bca75c?dummy=/:group9 \ - https://codeload.github.com/vitrun/qart/legacy.tar.gz/ccb109c?dummy=/:group10 \ - LOCAL/swills:group11 \ - LOCAL/swills:group12 -DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:group1 \ - 5d3ddcf53a50${EXTRACT_SUFX}:group2 \ - text.go-d65bffbc88a1${EXTRACT_SUFX}:group3 \ - snappy-go-12e4b4183793${EXTRACT_SUFX}:group4 \ - crypto.go-31393df5baea${EXTRACT_SUFX}:group5 \ - bkaradzic-go-lz4-93a831d${EXTRACT_SUFX}:group6 \ - calmh-xdr-e1714bb${EXTRACT_SUFX}:group7 \ - juju-ratelimit-f9f36d1${EXTACT_SUFX}:group8 \ - syndtr-goleveldb-9bca75c${EXTRACT_SUFX}:group9 \ - vitrun-qart-ccb109c${EXTRACT_SUFX}:group10 \ - tools.go-7a99b946364f${EXTRACT_SUFX}:group11 \ - net.go-90e232e2462d${EXTRACT_SUFX}:group12 +MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/ +DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= swills@FreeBSD.org COMMENT= Encrypted file sync tool @@ -43,40 +20,20 @@ USERS= syncthing GROUPS= syncthing post-patch: - ${REINPLACE_CMD} -e 's|%%PORTVERSION%%|${PORTVERSION}|g' ${WRKSRC}/build.sh - cd ${WRKSRC} ; \ - ${MKDIR} src/code.google.com/p \ - src/bitbucket.org/kardianos \ - src/github.com/bkaradzic \ - src/github.com/calmh \ - src/github.com/juju \ - src/github.com/syndtr \ - src/github.com/vitrun \ - src/github.com/syncthing/syncthing ; \ - ${MV} ${WRKDIR}/kardianos-osext-5d3ddcf53a50 ${WRKSRC}/src/bitbucket.org/kardianos/osext ; \ - ${MV} ${WRKDIR}/crypto.go-31393df5baea/ src/code.google.com/p/go.crypto ; \ - ${MV} ${WRKDIR}/snappy-go-12e4b4183793 src/code.google.com/p/snappy-go ; \ - ${MV} ${WRKDIR}/text.go-d65bffbc88a1 src/code.google.com/p/go.text ; \ - ${MV} ${WRKDIR}/tools.go-7a99b946364f src/code.google.com/p/go.tools ; \ - ${MV} ${WRKDIR}/net.go-90e232e2462d src/code.google.com/p/go.net ; \ - ${MV} ${WRKDIR}/bkaradzic-go-lz4-93a831d src/github.com/bkaradzic/go-lz4 ; \ - ${MV} ${WRKDIR}/calmh-xdr-e1714bb src/github.com/calmh/xdr ; \ - ${MV} ${WRKDIR}/juju-ratelimit-f9f36d1 src/github.com/juju/ratelimit ; \ - ${MV} ${WRKDIR}/syndtr-goleveldb-9bca75c src/github.com/syndtr/goleveldb ; \ - ${MV} ${WRKDIR}/vitrun-qart-ccb109c src/github.com/vitrun/qart ; \ - ${CP} -r lamport luhn beacon scanner versioner files \ - protocol auto config discover events logger model osutil ignore stats fnmatch cmd \ - upgrade upnp src/github.com/syncthing/syncthing + cd ${WRKSRC} ; ${MKDIR} src/github.com/${PORTNAME}/${PORTNAME} ; \ + ${MV} .gitignore CONTRIBUTING.md CONTRIBUTORS Godeps LICENSE \ + README.md assets build.go build.sh check-contrib.sh cmd gui \ + internal protocol test src/github.com/${PORTNAME}/${PORTNAME} do-build: # timestamp here refers to source, not build time - cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build -ldflags "-w -X main.Version v${PORTVERSION} -X main.BuildStamp 1411588890 -X main.BuildUser ${USER} -X main.BuildHost ${HOST}" github.com/syncthing/syncthing/cmd/syncthing + cd ${WRKSRC}/src/github.com/${PORTNAME}/${PORTNAME} ; ${SETENV} GOPATH=${WRKSRC} go run build.go do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/syncthing ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/src/github.com/${PORTNAME}/${PORTNAME}/bin/syncthing ${STAGEDIR}${PREFIX}/bin/ ${MKDIR} ${STAGEDIR}${DOCSDIR} .for x in CONTRIBUTORS LICENSE README.md - ${INSTALL_MAN} ${WRKSRC}/${x} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/src/github.com/${PORTNAME}/${PORTNAME}/${x} ${STAGEDIR}${DOCSDIR} .endfor .include Modified: head/net/syncthing/distinfo ============================================================================== --- head/net/syncthing/distinfo Fri Oct 10 03:43:44 2014 (r370564) +++ head/net/syncthing/distinfo Fri Oct 10 03:44:17 2014 (r370565) @@ -1,24 +1,2 @@ -SHA256 (syncthing-0.9.18.tar.gz) = 4ce72566dc59101683371b85fc905baf3bf23749f7d077443e39c37cc2ac7274 -SIZE (syncthing-0.9.18.tar.gz) = 1942823 -SHA256 (5d3ddcf53a50.tar.gz) = d39ed6aa63c76b62d6cd5850128f7205f0d983ffbb78f121afbd4a3c85937587 -SIZE (5d3ddcf53a50.tar.gz) = 3060 -SHA256 (text.go-d65bffbc88a1.tar.gz) = c78ad1d2bbd296ccddba7c86e4250f66490a3479c068a78a520fd42d68e0aa9d -SIZE (text.go-d65bffbc88a1.tar.gz) = 3234551 -SHA256 (snappy-go-12e4b4183793.tar.gz) = fb220046f526122a219aa22f34edbdd236343c4cf3439e79a6d56a145a006194 -SIZE (snappy-go-12e4b4183793.tar.gz) = 7785 -SHA256 (crypto.go-31393df5baea.tar.gz) = ad51b826e2198cc99a0b5fa38077bab8e1c44dc3e8a2e65ab2289f06f4bb31f3 -SIZE (crypto.go-31393df5baea.tar.gz) = 850477 -SHA256 (bkaradzic-go-lz4-93a831d.tar.gz) = f11a2a4eadb525360dba2517abcbcb1a18d67f606a1311b8263fb5a0bca67e5b -SIZE (bkaradzic-go-lz4-93a831d.tar.gz) = 232907 -SHA256 (calmh-xdr-e1714bb.tar.gz) = 354133594fc70dac499a44ffd6d857f1f730345f8db3d07def4e38daec5ec791 -SIZE (calmh-xdr-e1714bb.tar.gz) = 9250 -SHA256 (juju-ratelimit-f9f36d1) = d2117682d9ef68764cfdd4de51b4d150cd2c6c0b6a9fcaa50d5891443b42285a -SIZE (juju-ratelimit-f9f36d1) = 7382 -SHA256 (syndtr-goleveldb-9bca75c.tar.gz) = 68353a47e33b81d47c3cb0c3058011a391a5d7a65e20c7cf5b1d8e08a19d129f -SIZE (syndtr-goleveldb-9bca75c.tar.gz) = 112667 -SHA256 (vitrun-qart-ccb109c.tar.gz) = 6daeaea6334827e56daa82d601df9bca1bb48dd9b1deb2f8708ffb3867afd112 -SIZE (vitrun-qart-ccb109c.tar.gz) = 23243 -SHA256 (tools.go-7a99b946364f.tar.gz) = 6b67d2cd7b06c197296f0d89bd623bf4b4c518ce7962268cec1ecdbe9a228757 -SIZE (tools.go-7a99b946364f.tar.gz) = 1636949 -SHA256 (net.go-90e232e2462d.tar.gz) = 5bac84792244e0b5d12d573cbe9234e49d1fc54095bf32ebbe8e0419f0378249 -SIZE (net.go-90e232e2462d.tar.gz) = 391242 +SHA256 (syncthing-0.10.0.tar.gz) = 99c1460ba52e03cfdb349a3d2d41bb5cdd65bc722d9a0f02b9bf0cd3dee21e6e +SIZE (syncthing-0.10.0.tar.gz) = 2952791 Added: head/net/syncthing/files/patch-build.go ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/syncthing/files/patch-build.go Fri Oct 10 03:44:17 2014 (r370565) @@ -0,0 +1,23 @@ +--- build.go.orig 2014-10-10 03:17:54.000000000 +0000 ++++ build.go 2014-10-10 03:21:21.000000000 +0000 +@@ -299,18 +299,11 @@ + } + + func version() string { +- v := run("git", "describe", "--always", "--dirty") +- v = versionRe.ReplaceAllFunc(v, func(s []byte) []byte { +- s[0] = '+' +- return s +- }) +- return string(v) ++ return string("v0.10.0") + } + + func buildStamp() int64 { +- bs := run("git", "show", "-s", "--format=%ct") +- s, _ := strconv.ParseInt(string(bs), 10, 64) +- return s ++ return 1412769521 + } + + func buildUser() string { Modified: head/net/syncthing/files/patch-upgrade__upgrade_supported.go ============================================================================== --- head/net/syncthing/files/patch-upgrade__upgrade_supported.go Fri Oct 10 03:43:44 2014 (r370564) +++ head/net/syncthing/files/patch-upgrade__upgrade_supported.go Fri Oct 10 03:44:17 2014 (r370565) @@ -1,5 +1,5 @@ ---- upgrade/upgrade_supported.go.orig 2014-09-28 21:24:06.335428814 +0000 -+++ upgrade/upgrade_supported.go 2014-09-28 21:24:59.699424791 +0000 +--- internal/upgrade/upgrade_supported.go.orig 2014-09-28 21:24:06.335428814 +0000 ++++ internal/upgrade/upgrade_supported.go 2014-09-28 21:24:59.699424791 +0000 @@ -70,6 +70,7 @@ // Returns the latest release, including prereleases or not depending on the argument From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 07:26:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97D1F3C7; Fri, 10 Oct 2014 07:26:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82915F02; Fri, 10 Oct 2014 07:26:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9A7QSlx004720; Fri, 10 Oct 2014 07:26:28 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9A7QP43004702; Fri, 10 Oct 2014 07:26:25 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410100726.s9A7QP43004702@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 10 Oct 2014 07:26:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370566 - in head/devel: arm-gnueabi-binutils binutils mips-binutils mips64-binutils powerpc64-binutils sparc64-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 07:26:28 -0000 Author: bapt Date: Fri Oct 10 07:26:24 2014 New Revision: 370566 URL: https://svnweb.freebsd.org/changeset/ports/370566 QAT: https://qat.redports.org/buildarchive/r370566/ Log: Add size into the bin/ directory Modified: head/devel/arm-gnueabi-binutils/Makefile head/devel/arm-gnueabi-binutils/pkg-plist head/devel/binutils/Makefile head/devel/mips-binutils/Makefile head/devel/mips-binutils/pkg-plist head/devel/mips64-binutils/Makefile head/devel/mips64-binutils/pkg-plist head/devel/powerpc64-binutils/Makefile head/devel/powerpc64-binutils/pkg-plist head/devel/sparc64-binutils/Makefile head/devel/sparc64-binutils/pkg-plist Modified: head/devel/arm-gnueabi-binutils/Makefile ============================================================================== --- head/devel/arm-gnueabi-binutils/Makefile Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/arm-gnueabi-binutils/Makefile Fri Oct 10 07:26:24 2014 (r370566) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GNU binutils for arm cross-development PKGNAMEPREFIX= arm-gnueabi- PLIST= ${.CURDIR}/pkg-plist Modified: head/devel/arm-gnueabi-binutils/pkg-plist ============================================================================== --- head/devel/arm-gnueabi-binutils/pkg-plist Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/arm-gnueabi-binutils/pkg-plist Fri Oct 10 07:26:24 2014 (r370566) @@ -7,6 +7,7 @@ arm-gnueabi-freebsd/bin/objcopy arm-gnueabi-freebsd/bin/objdump arm-gnueabi-freebsd/bin/ranlib arm-gnueabi-freebsd/bin/strip +arm-gnueabi-freebsd/bin/size arm-gnueabi-freebsd/lib/ldscripts/armelf.x arm-gnueabi-freebsd/lib/ldscripts/armelf.xbn arm-gnueabi-freebsd/lib/ldscripts/armelf.xc Modified: head/devel/binutils/Makefile ============================================================================== --- head/devel/binutils/Makefile Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/binutils/Makefile Fri Oct 10 07:26:24 2014 (r370566) @@ -84,6 +84,7 @@ post-install: ${REINPLACE_CMD} '/#include "ansidecl.h"/d' ${STAGEDIR}${PREFIX}/include/bfd.h .else ${RM} -rf ${STAGEDIR}${PREFIX}/${PKGNAMEPREFIX:S/-$//} + ${LN} -fs ../../bin/${PKGNAMEPREFIX}${OPSYS:tl}-size ${STAGEDIR}${PREFIX}/${PKGNAMEPREFIX}${OPSYS:tl}/bin/size .endif .include Modified: head/devel/mips-binutils/Makefile ============================================================================== --- head/devel/mips-binutils/Makefile Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/mips-binutils/Makefile Fri Oct 10 07:26:24 2014 (r370566) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GNU binutils for mips64 cross-development PKGNAMEPREFIX= mips- PLIST= ${.CURDIR}/pkg-plist Modified: head/devel/mips-binutils/pkg-plist ============================================================================== --- head/devel/mips-binutils/pkg-plist Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/mips-binutils/pkg-plist Fri Oct 10 07:26:24 2014 (r370566) @@ -42,6 +42,7 @@ mips-freebsd/bin/objcopy mips-freebsd/bin/objdump mips-freebsd/bin/ranlib mips-freebsd/bin/strip +mips-freebsd/bin/size mips-freebsd/lib/ldscripts/elf32btsmip.x mips-freebsd/lib/ldscripts/elf32btsmip.xbn mips-freebsd/lib/ldscripts/elf32btsmip.xc Modified: head/devel/mips64-binutils/Makefile ============================================================================== --- head/devel/mips64-binutils/Makefile Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/mips64-binutils/Makefile Fri Oct 10 07:26:24 2014 (r370566) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GNU binutils for mips64 cross-development PKGNAMEPREFIX= mips64- PLIST= ${.CURDIR}/pkg-plist Modified: head/devel/mips64-binutils/pkg-plist ============================================================================== --- head/devel/mips64-binutils/pkg-plist Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/mips64-binutils/pkg-plist Fri Oct 10 07:26:24 2014 (r370566) @@ -42,6 +42,7 @@ mips64-freebsd/bin/objcopy mips64-freebsd/bin/objdump mips64-freebsd/bin/ranlib mips64-freebsd/bin/strip +mips64-freebsd/bin/size mips64-freebsd/lib/ldscripts/elf32btsmip.x mips64-freebsd/lib/ldscripts/elf32btsmip.xbn mips64-freebsd/lib/ldscripts/elf32btsmip.xc Modified: head/devel/powerpc64-binutils/Makefile ============================================================================== --- head/devel/powerpc64-binutils/Makefile Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/powerpc64-binutils/Makefile Fri Oct 10 07:26:24 2014 (r370566) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GNU binutils for powerpc64 cross-development PKGNAMEPREFIX= powerpc64- PLIST= ${.CURDIR}/pkg-plist Modified: head/devel/powerpc64-binutils/pkg-plist ============================================================================== --- head/devel/powerpc64-binutils/pkg-plist Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/powerpc64-binutils/pkg-plist Fri Oct 10 07:26:24 2014 (r370566) @@ -42,6 +42,7 @@ powerpc64-freebsd/bin/objcopy powerpc64-freebsd/bin/objdump powerpc64-freebsd/bin/ranlib powerpc64-freebsd/bin/strip +powerpc64-freebsd/bin/size powerpc64-freebsd/lib/ldscripts/elf32ppc.x powerpc64-freebsd/lib/ldscripts/elf32ppc.xbn powerpc64-freebsd/lib/ldscripts/elf32ppc.xc Modified: head/devel/sparc64-binutils/Makefile ============================================================================== --- head/devel/sparc64-binutils/Makefile Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/sparc64-binutils/Makefile Fri Oct 10 07:26:24 2014 (r370566) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GNU binutils for sparc64 cross-development PKGNAMEPREFIX= sparc64- PLIST= ${.CURDIR}/pkg-plist Modified: head/devel/sparc64-binutils/pkg-plist ============================================================================== --- head/devel/sparc64-binutils/pkg-plist Fri Oct 10 03:44:17 2014 (r370565) +++ head/devel/sparc64-binutils/pkg-plist Fri Oct 10 07:26:24 2014 (r370566) @@ -42,6 +42,7 @@ sparc64-freebsd/bin/objcopy sparc64-freebsd/bin/objdump sparc64-freebsd/bin/ranlib sparc64-freebsd/bin/strip +sparc64-freebsd/bin/size sparc64-freebsd/lib/ldscripts/elf32_sparc.x sparc64-freebsd/lib/ldscripts/elf32_sparc.xbn sparc64-freebsd/lib/ldscripts/elf32_sparc.xc From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 09:24:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D84C0876; Fri, 10 Oct 2014 09:24:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C469ACCD; Fri, 10 Oct 2014 09:24:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9A9O4O4060819; Fri, 10 Oct 2014 09:24:04 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9A9O407060818; Fri, 10 Oct 2014 09:24:04 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410100924.s9A9O407060818@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 10 Oct 2014 09:24:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370567 - head/security/sguil X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 09:24:05 -0000 Author: marino Date: Fri Oct 10 09:24:04 2014 New Revision: 370567 URL: https://svnweb.freebsd.org/changeset/ports/370567 QAT: https://qat.redports.org/buildarchive/r370567/ Log: security/sguil: Fix shebang in sguild PR: 194249 Submitted by: maintainer (Muhammad Rahman) Modified: head/security/sguil/Makefile Modified: head/security/sguil/Makefile ============================================================================== --- head/security/sguil/Makefile Fri Oct 10 07:26:24 2014 (r370566) +++ head/security/sguil/Makefile Fri Oct 10 09:24:04 2014 (r370567) @@ -3,6 +3,7 @@ PORTNAME= sguil PORTVERSION= 0.9.0 +REVISION= 1 CATEGORIES= security MAINTAINER= 5u623l20@gmail.com @@ -113,7 +114,7 @@ USE_RC_SUBR+= pads_agent post-patch: .if ${PORT_OPTIONS:MSERVER} - @${REINPLACE_CMD} 's|/bin/sh|/usr/local/bin/${TCLSH}|' \ + @${REINPLACE_CMD} 's|/bin/sh|${TCLSH}|' \ ${WRKSRC}/server/sguild @${MKDIR} ${STAGEDIR}${PREFIX}/etc/${SERVER_SGUILDIR} \ ${STAGEDIR}${PREFIX}/lib/${SERVER_SGUILDIR} \ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 10:10:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A103FE9; Fri, 10 Oct 2014 10:10:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E91D51D5; Fri, 10 Oct 2014 10:10:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AAAr0K081669; Fri, 10 Oct 2014 10:10:53 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AAAr8t081667; Fri, 10 Oct 2014 10:10:53 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201410101010.s9AAAr8t081667@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Fri, 10 Oct 2014 10:10:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370568 - head/devel/pecl-ev X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 10:10:54 -0000 Author: robak Date: Fri Oct 10 10:10:52 2014 New Revision: 370568 URL: https://svnweb.freebsd.org/changeset/ports/370568 QAT: https://qat.redports.org/buildarchive/r370568/ Log: devel/pecl-ev: update 0.2.10 -> 0.2.12 PR: 194158 Submitted by: John Chen Approved by: mentors (implicit) Modified: head/devel/pecl-ev/Makefile head/devel/pecl-ev/distinfo Modified: head/devel/pecl-ev/Makefile ============================================================================== --- head/devel/pecl-ev/Makefile Fri Oct 10 09:24:04 2014 (r370567) +++ head/devel/pecl-ev/Makefile Fri Oct 10 10:10:52 2014 (r370568) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ev -PORTVERSION= 0.2.10 +PORTVERSION= 0.2.12 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- Modified: head/devel/pecl-ev/distinfo ============================================================================== --- head/devel/pecl-ev/distinfo Fri Oct 10 09:24:04 2014 (r370567) +++ head/devel/pecl-ev/distinfo Fri Oct 10 10:10:52 2014 (r370568) @@ -1,2 +1,2 @@ -SHA256 (PECL/ev-0.2.10.tgz) = a71757b452fdf66bbb50ac8c5e28c55ab1412f6436958e77888269552d2fd6a3 -SIZE (PECL/ev-0.2.10.tgz) = 95645 +SHA256 (PECL/ev-0.2.12.tgz) = 6a95bb51858b1dec84eb3591ec49a5e3827f2bb2422a5e28758062a742cc6421 +SIZE (PECL/ev-0.2.12.tgz) = 96837 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 10:18:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FAA51EB; Fri, 10 Oct 2014 10:18:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A3BD21D; Fri, 10 Oct 2014 10:18:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AAInV5085104; Fri, 10 Oct 2014 10:18:49 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AAInw5085099; Fri, 10 Oct 2014 10:18:49 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201410101018.s9AAInw5085099@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Fri, 10 Oct 2014 10:18:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370569 - head/devel/p5-CPAN-Perl-Releases X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 10:18:49 -0000 Author: culot Date: Fri Oct 10 10:18:48 2014 New Revision: 370569 URL: https://svnweb.freebsd.org/changeset/ports/370569 QAT: https://qat.redports.org/buildarchive/r370569/ Log: - Update to 1.94 Changes: http://search.cpan.org/dist/CPAN-Perl-Releases/Changes Modified: head/devel/p5-CPAN-Perl-Releases/Makefile head/devel/p5-CPAN-Perl-Releases/distinfo Modified: head/devel/p5-CPAN-Perl-Releases/Makefile ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/Makefile Fri Oct 10 10:10:52 2014 (r370568) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Fri Oct 10 10:18:48 2014 (r370569) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 1.90 +PORTVERSION= 1.94 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Fri Oct 10 10:10:52 2014 (r370568) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Fri Oct 10 10:18:48 2014 (r370569) @@ -1,2 +1,2 @@ -SHA256 (CPAN-Perl-Releases-1.90.tar.gz) = afba7f9e8e287ec09794238b82eae78e4d76c78cc3801c75a7c4867bac1e048f -SIZE (CPAN-Perl-Releases-1.90.tar.gz) = 22541 +SHA256 (CPAN-Perl-Releases-1.94.tar.gz) = ebc70640541f5b6d1191ba7bf958d369d9e21be0908ac812663047290b95fdf2 +SIZE (CPAN-Perl-Releases-1.94.tar.gz) = 22684 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 10:25:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86B81344; Fri, 10 Oct 2014 10:25:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 734FD309; Fri, 10 Oct 2014 10:25:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AAP9xe089423; Fri, 10 Oct 2014 10:25:09 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AAP9n7089421; Fri, 10 Oct 2014 10:25:09 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201410101025.s9AAP9n7089421@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Fri, 10 Oct 2014 10:25:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370570 - head/devel/p5-Devel-Declare X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 10:25:09 -0000 Author: culot Date: Fri Oct 10 10:25:08 2014 New Revision: 370570 URL: https://svnweb.freebsd.org/changeset/ports/370570 QAT: https://qat.redports.org/buildarchive/r370570/ Log: - Update to 0.006017 Changes: http://search.cpan.org/dist/Devel-Declare/Changes Modified: head/devel/p5-Devel-Declare/Makefile head/devel/p5-Devel-Declare/distinfo Modified: head/devel/p5-Devel-Declare/Makefile ============================================================================== --- head/devel/p5-Devel-Declare/Makefile Fri Oct 10 10:18:48 2014 (r370569) +++ head/devel/p5-Devel-Declare/Makefile Fri Oct 10 10:25:08 2014 (r370570) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Devel-Declare -PORTVERSION= 0.006016 +PORTVERSION= 0.006017 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -23,4 +23,7 @@ TEST_DEPENDS= p5-Test-Requires>0:${PORTS USES= perl5 USE_PERL5= configure +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH}/auto/Devel/Declare/Declare.so + .include Modified: head/devel/p5-Devel-Declare/distinfo ============================================================================== --- head/devel/p5-Devel-Declare/distinfo Fri Oct 10 10:18:48 2014 (r370569) +++ head/devel/p5-Devel-Declare/distinfo Fri Oct 10 10:25:08 2014 (r370570) @@ -1,2 +1,2 @@ -SHA256 (Devel-Declare-0.006016.tar.gz) = 122b58fc6d8b488ede0c3be377aa4fc186dffd89070c38943a0167f939b4420e -SIZE (Devel-Declare-0.006016.tar.gz) = 43965 +SHA256 (Devel-Declare-0.006017.tar.gz) = aabba8979de6e5c471eb06ec644d6cc9bb0f8b709078bf9e3328c272449acac0 +SIZE (Devel-Declare-0.006017.tar.gz) = 43681 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 10:28:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F9EE496; Fri, 10 Oct 2014 10:28:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7BE1834A; Fri, 10 Oct 2014 10:28:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AASank089924; Fri, 10 Oct 2014 10:28:36 GMT (envelope-from culot@FreeBSD.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AASaN8089921; Fri, 10 Oct 2014 10:28:36 GMT (envelope-from culot@FreeBSD.org) Message-Id: <201410101028.s9AASaN8089921@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: culot set sender to culot@FreeBSD.org using -f From: Frederic Culot Date: Fri, 10 Oct 2014 10:28:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370571 - head/textproc/p5-HTML-HTML5-Entities X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 10:28:36 -0000 Author: culot Date: Fri Oct 10 10:28:35 2014 New Revision: 370571 URL: https://svnweb.freebsd.org/changeset/ports/370571 QAT: https://qat.redports.org/buildarchive/r370571/ Log: - Update to 0.004 Changes: http://search.cpan.org/dist/HTML-HTML5-Entities/Changes Modified: head/textproc/p5-HTML-HTML5-Entities/Makefile head/textproc/p5-HTML-HTML5-Entities/distinfo Modified: head/textproc/p5-HTML-HTML5-Entities/Makefile ============================================================================== --- head/textproc/p5-HTML-HTML5-Entities/Makefile Fri Oct 10 10:25:08 2014 (r370570) +++ head/textproc/p5-HTML-HTML5-Entities/Makefile Fri Oct 10 10:28:35 2014 (r370571) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= HTML-HTML5-Entities -PORTVERSION= 0.003 +PORTVERSION= 0.004 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:TOBYINK Modified: head/textproc/p5-HTML-HTML5-Entities/distinfo ============================================================================== --- head/textproc/p5-HTML-HTML5-Entities/distinfo Fri Oct 10 10:25:08 2014 (r370570) +++ head/textproc/p5-HTML-HTML5-Entities/distinfo Fri Oct 10 10:28:35 2014 (r370571) @@ -1,2 +1,2 @@ -SHA256 (HTML-HTML5-Entities-0.003.tar.gz) = 538381a06e27294b133e982def1f0c662f3e10ccca8e099f04da687384e8faa9 -SIZE (HTML-HTML5-Entities-0.003.tar.gz) = 67620 +SHA256 (HTML-HTML5-Entities-0.004.tar.gz) = cdebce7e9493f5cd8f77fbb74254f7687763ed839f285cf0546b240d3b2fdc54 +SIZE (HTML-HTML5-Entities-0.004.tar.gz) = 33239 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 12:33:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDD8750C; Fri, 10 Oct 2014 12:33:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0B01238; Fri, 10 Oct 2014 12:33:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ACXDrK049614; Fri, 10 Oct 2014 12:33:13 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ACXDcF049612; Fri, 10 Oct 2014 12:33:13 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410101233.s9ACXDcF049612@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 10 Oct 2014 12:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370572 - head/java/java-checkstyle X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 12:33:14 -0000 Author: marino Date: Fri Oct 10 12:33:12 2014 New Revision: 370572 URL: https://svnweb.freebsd.org/changeset/ports/370572 QAT: https://qat.redports.org/buildarchive/r370572/ Log: java/java-checkstyle: Upgrade version 5.5 => 5.8 Assign assign submitter as maintainer PR: 194257 Submitted by: Muhammad Rahman Modified: head/java/java-checkstyle/Makefile head/java/java-checkstyle/distinfo Modified: head/java/java-checkstyle/Makefile ============================================================================== --- head/java/java-checkstyle/Makefile Fri Oct 10 10:28:35 2014 (r370571) +++ head/java/java-checkstyle/Makefile Fri Oct 10 12:33:12 2014 (r370572) @@ -2,15 +2,18 @@ # $FreeBSD$ PORTNAME= checkstyle -PORTVERSION= 5.5 +PORTVERSION= 5.8 CATEGORIES= java devel MASTER_SITES= SF PKGNAMEPREFIX= java- DISTNAME= ${PORTNAME}-${PORTVERSION}-bin -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= Java style checker +LICENSE= LGPL21 APACHE20 +LICENSE_COMB= dual + USE_JAVA= yes JAVA_VERSION= 1.6+ NO_BUILD= yes @@ -34,7 +37,7 @@ do-install: ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh \ ${STAGEDIR}${PREFIX}/bin/${PORTNAME} @-${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} LICENSE* README RIGHTS.antlr \ + (cd ${WRKSRC} && ${INSTALL_DATA} LICENSE* RIGHTS.antlr \ ${STAGEDIR}${DOCSDIR}) (cd ${WRKSRC} && ${COPYTREE_SHARE} site ${STAGEDIR}${DOCSDIR}) @-${MKDIR} ${STAGEDIR}${EXAMPLESDIR} Modified: head/java/java-checkstyle/distinfo ============================================================================== --- head/java/java-checkstyle/distinfo Fri Oct 10 10:28:35 2014 (r370571) +++ head/java/java-checkstyle/distinfo Fri Oct 10 12:33:12 2014 (r370572) @@ -1,2 +1,2 @@ -SHA256 (checkstyle-5.5-bin.tar.gz) = 33affa563ac667a5d519ef323c315153669f13fa2f5a28b04a52e6d79fa37379 -SIZE (checkstyle-5.5-bin.tar.gz) = 4706616 +SHA256 (checkstyle-5.8-bin.tar.gz) = 5d53928d41559858327553a127f347b68229f1db3814bc854c62c5cf734abb79 +SIZE (checkstyle-5.8-bin.tar.gz) = 9385181 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 12:46:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA7488F9; Fri, 10 Oct 2014 12:46:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C7FE3CC; Fri, 10 Oct 2014 12:46:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ACklll055011; Fri, 10 Oct 2014 12:46:47 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ACkkh9055007; Fri, 10 Oct 2014 12:46:46 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410101246.s9ACkkh9055007@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 10 Oct 2014 12:46:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370573 - head/x11-toolkits/fltk-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 12:46:47 -0000 Author: gahr Date: Fri Oct 10 12:46:46 2014 New Revision: 370573 URL: https://svnweb.freebsd.org/changeset/ports/370573 QAT: https://qat.redports.org/buildarchive/r370573/ Log: - Update to snapshot 10370 * Release notes: http://www.fltk.org/articles.php?L1388 Modified: head/x11-toolkits/fltk-devel/Makefile head/x11-toolkits/fltk-devel/distinfo head/x11-toolkits/fltk-devel/pkg-plist Modified: head/x11-toolkits/fltk-devel/Makefile ============================================================================== --- head/x11-toolkits/fltk-devel/Makefile Fri Oct 10 12:33:12 2014 (r370572) +++ head/x11-toolkits/fltk-devel/Makefile Fri Oct 10 12:46:46 2014 (r370573) @@ -34,7 +34,7 @@ CMAKE_ARGS+= -DOPTION_BUILD_SHARED_LIBS: -DPREFIX_LIB:PATH=${PREFIX}/lib/fltk-devel -SNAPSHOT_VERS= 10350 +SNAPSHOT_VERS= 10370 PORTEXAMPLES= * EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}${PKGNAMESUFFIX} Modified: head/x11-toolkits/fltk-devel/distinfo ============================================================================== --- head/x11-toolkits/fltk-devel/distinfo Fri Oct 10 12:33:12 2014 (r370572) +++ head/x11-toolkits/fltk-devel/distinfo Fri Oct 10 12:46:46 2014 (r370573) @@ -1,2 +1,2 @@ -SHA256 (fltk-1.3.x-r10350.tar.gz) = 534551d7b849f497a1bc6349c19ea12f91d9b1a966c372e0f2c8093151462f76 -SIZE (fltk-1.3.x-r10350.tar.gz) = 4937077 +SHA256 (fltk-1.3.x-r10370.tar.gz) = fc48b5bfab69f0ecb7806158d75ab481a171ff2eda8b71012b942293c400657e +SIZE (fltk-1.3.x-r10370.tar.gz) = 4932992 Modified: head/x11-toolkits/fltk-devel/pkg-plist ============================================================================== --- head/x11-toolkits/fltk-devel/pkg-plist Fri Oct 10 12:33:12 2014 (r370572) +++ head/x11-toolkits/fltk-devel/pkg-plist Fri Oct 10 12:46:46 2014 (r370573) @@ -152,19 +152,19 @@ lib/fltk-devel/UseFLTK.cmake lib/fltk-devel/libfltk.a lib/fltk-devel/libfltk.so lib/fltk-devel/libfltk.so.1.3 -lib/fltk-devel/libfltk.so.1.3.2 +lib/fltk-devel/libfltk.so.1.3.3 lib/fltk-devel/libfltk_forms.a lib/fltk-devel/libfltk_forms.so lib/fltk-devel/libfltk_forms.so.1.3 -lib/fltk-devel/libfltk_forms.so.1.3.2 +lib/fltk-devel/libfltk_forms.so.1.3.3 lib/fltk-devel/libfltk_gl.a lib/fltk-devel/libfltk_gl.so lib/fltk-devel/libfltk_gl.so.1.3 -lib/fltk-devel/libfltk_gl.so.1.3.2 +lib/fltk-devel/libfltk_gl.so.1.3.3 lib/fltk-devel/libfltk_images.a lib/fltk-devel/libfltk_images.so lib/fltk-devel/libfltk_images.so.1.3 -lib/fltk-devel/libfltk_images.so.1.3.2 +lib/fltk-devel/libfltk_images.so.1.3.3 lib/libfltk-devel.so man/man1/fltk-config-devel.1.gz man/man1/fluid-devel.1.gz From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 12:58:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73353AAA; Fri, 10 Oct 2014 12:58:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 541B06A7; Fri, 10 Oct 2014 12:58:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ACw5nG060138; Fri, 10 Oct 2014 12:58:05 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ACw3Nv060130; Fri, 10 Oct 2014 12:58:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410101258.s9ACw3Nv060130@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 10 Oct 2014 12:58:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370574 - in head/games/minecraft-server: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 12:58:05 -0000 Author: marino Date: Fri Oct 10 12:58:03 2014 New Revision: 370574 URL: https://svnweb.freebsd.org/changeset/ports/370574 QAT: https://qat.redports.org/buildarchive/r370574/ Log: games/minecraft-server: Upgrade version 1.4.6 => 1.8 Assign maintainship to submitter PR: 192191 Submitted by: Jonathan Price Added: head/games/minecraft-server/files/minecraft-server (contents, props changed) Deleted: head/games/minecraft-server/files/banned-ips.txt.sample head/games/minecraft-server/files/banned-players.txt.sample head/games/minecraft-server/files/minecraft.in head/games/minecraft-server/files/ops.txt.sample head/games/minecraft-server/files/server.properties.sample head/games/minecraft-server/files/white-list.txt.sample Modified: head/games/minecraft-server/Makefile head/games/minecraft-server/distinfo head/games/minecraft-server/files/pkg-deinstall.in head/games/minecraft-server/files/pkg-message.in head/games/minecraft-server/pkg-descr head/games/minecraft-server/pkg-plist Modified: head/games/minecraft-server/Makefile ============================================================================== --- head/games/minecraft-server/Makefile Fri Oct 10 12:46:46 2014 (r370573) +++ head/games/minecraft-server/Makefile Fri Oct 10 12:58:03 2014 (r370574) @@ -1,85 +1,46 @@ -# Created by: Martin Kropfinger # $FreeBSD$ PORTNAME= minecraft-server -PORTVERSION= 1.4.7 -PORTREVISION= 1 +PORTVERSION= 1.8 CATEGORIES= games java -MASTER_SITES= http://assets.minecraft.net/${PORTVERSION:S|.|_|g}/ \ - http://media-mcw.cursecdn.com/f/f7/:icon -DISTNAME= minecraft_server -DISTFILES= minecraft_server.jar \ - Bookshelf.png:icon -DIST_SUBDIR= ${PORTNAME}/${PORTVERSION} -EXTRACT_ONLY= #empty +MASTER_SITES= https://s3.amazonaws.com/Minecraft.Download/versions/${PORTVERSION}/ +DISTNAME= minecraft_server.${PORTVERSION}.jar +EXTRACT_SUFX= +EXTRACT_ONLY= -MAINTAINER= ports@FreeBSD.org -COMMENT= Server for the block building game +MAINTAINER= freebsd@jonathanprice.org +COMMENT= Dedicated server for the game Minecraft -RUN_DEPENDS= tmux:${PORTSDIR}/sysutils/tmux +ETCDIR= ${PREFIX}/etc/minecraft-server -OPTIONS_DEFINE= X11 -OPTIONS_DEFAULT=X11 +USERS= mcserver +GROUPS= ${USERS} -ETCDIR= ${PREFIX}/etc/minecraft - -WRKSRC= ${WRKDIR} NO_BUILD= yes USE_JAVA= yes -USERS?= mcserver -GROUPS?= ${USERS} -USE_RC_SUBR= minecraft -SUB_FILES= pkg-deinstall \ - pkg-message - -SUB_LIST+= USERS=${USERS} \ - GROUPS=${GROUPS} - -CONFIG_FILES= banned-ips.txt \ - banned-players.txt \ - ops.txt \ - server.properties \ - white-list.txt +SUB_FILES= pkg-message \ + pkg-deinstall -.include - -.if ${PORT_OPTIONS:MX11} -DESKTOP_ENTRIES="Minecraft-Server" \ - "Block building game (server)" \ - "${PREFIX}/share/pixmaps/minecraft-server.png" \ - "${PORTNAME}" \ - "Game;Java;" \ - false -.endif - -.if ${PORT_OPTIONS:MX11} -PLIST_SUB+= X11="" -.else -PLIST_SUB+= X11="@comment " -.endif +CONFIG_FILES= banned-ips.json \ + banned-players.json \ + ops.json \ + server.properties \ + usercache.json \ + whitelist.json do-install: ${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/minecraft_server.jar ${STAGEDIR}${DATADIR}/ -.if ${PORT_OPTIONS:MX11} - ${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/Bookshelf.png ${STAGEDIR}${PREFIX}/share/pixmaps/minecraft-server.png -.endif - echo "#!/bin/sh" > ${WRKDIR}/${PORTNAME} - echo "if ! test -d ~/.minecraft-server ; then" >> ${WRKDIR}/${PORTNAME} - echo " mkdir ~/.minecraft-server" >> ${WRKDIR}/${PORTNAME} - echo "fi" >> ${WRKDIR}/${PORTNAME} - echo "cd ~/.minecraft-server" >> ${WRKDIR}/${PORTNAME} - ${CP} ${WRKDIR}/${PORTNAME} ${WRKDIR}/${PORTNAME}-nogui - echo "java -Xmx1024M -Xms1024M -jar ${DATADIR}/minecraft_server.jar" >> ${WRKDIR}/${PORTNAME} - echo "java -Xmx1024M -Xms1024M -jar ${DATADIR}/minecraft_server.jar nogui" >> ${WRKDIR}/${PORTNAME}-nogui -.if ${PORT_OPTIONS:MX11} - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/ -.endif - ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}-nogui ${STAGEDIR}${PREFIX}/bin/ + ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${STAGEDIR}${DATADIR} ${MKDIR} ${STAGEDIR}${ETCDIR} + ${MKDIR} ${STAGEDIR}/var/db/minecraft-server + ${MKDIR} ${STAGEDIR}/var/log/minecraft-server + ${INSTALL_SCRIPT} ${FILESDIR}/minecraft-server ${STAGEDIR}${PREFIX}/bin .for file in ${CONFIG_FILES} - ${INSTALL_DATA} ${FILESDIR}/${file}.sample ${STAGEDIR}${ETCDIR} - ${CHMOD} 644 ${STAGEDIR}${ETCDIR}/${file}.sample + ${TOUCH} ${STAGEDIR}${ETCDIR}/${file} + ${LN} -s ${ETCDIR}/${file} ${STAGEDIR}${DATADIR}/${file} .endfor + ${LN} -sf /var/log/minecraft-server ${STAGEDIR}${DATADIR}/logs + ${LN} -sf /var/log/minecraft-server/debug ${STAGEDIR}${DATADIR}/debug + ${LN} -sf /var/db/minecraft-server ${STAGEDIR}/${DATADIR}/world .include Modified: head/games/minecraft-server/distinfo ============================================================================== --- head/games/minecraft-server/distinfo Fri Oct 10 12:46:46 2014 (r370573) +++ head/games/minecraft-server/distinfo Fri Oct 10 12:58:03 2014 (r370574) @@ -1,4 +1,2 @@ -SHA256 (minecraft-server/1.4.7/minecraft_server.jar) = 96b7512aead2fb20ddf780d7dd74208d77f209e16058ea8944150179e65b4dd3 -SIZE (minecraft-server/1.4.7/minecraft_server.jar) = 2061638 -SHA256 (minecraft-server/1.4.7/Bookshelf.png) = fe5e7f0bbbbe284379cb5e7aed8d539b727a3039f7fe8c64a179e4fc2a0e1821 -SIZE (minecraft-server/1.4.7/Bookshelf.png) = 9674 +SHA256 (minecraft_server.1.8.jar) = 40e23f3823d6f0e3cbadc491cedb55b8ba53f8ab516b68182ddd1536babeb291 +SIZE (minecraft_server.1.8.jar) = 10375504 Added: head/games/minecraft-server/files/minecraft-server ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/minecraft-server/files/minecraft-server Fri Oct 10 12:58:03 2014 (r370574) @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ "$(id -u)" != "0" ]; then + echo "$0 must be run as root" 1>&2 + exit 1 +fi + +cd /usr/local/share/minecraft-server +su -m mcserver -c "java -Xmx1024M -Xms1024M -jar minecraft_server.1.7.10.jar nogui" Modified: head/games/minecraft-server/files/pkg-deinstall.in ============================================================================== --- head/games/minecraft-server/files/pkg-deinstall.in Fri Oct 10 12:46:46 2014 (r370573) +++ head/games/minecraft-server/files/pkg-deinstall.in Fri Oct 10 12:58:03 2014 (r370574) @@ -4,18 +4,8 @@ if [ "$2" != "POST-DEINSTALL" ]; then exit 0 fi -if [ -d %%DATADIR%% ]; then - echo "There are some files (like your world and your server.log)" - echo "left in %%DATADIR%%." - echo "Use 'rm -rf %%DATADIR%%' to delete them." - echo -fi - -if [ -d %%ETCDIR%% ]; then - echo "There are some changed config files left in %%ETCDIR%%." - echo "Use 'rm -rf %%ETCDIR%%' to delete them." - echo -fi - -exit 0 - +echo +echo "NOTE: Your world has not been deleted. It is still in" +echo "/var/db/minecraft-server. If you no longer want the world, you will" +echo "need to manually delete it." +echo "Also, you may want to delete any remaining files in %%DATADIR%%" Modified: head/games/minecraft-server/files/pkg-message.in ============================================================================== --- head/games/minecraft-server/files/pkg-message.in Fri Oct 10 12:46:46 2014 (r370573) +++ head/games/minecraft-server/files/pkg-message.in Fri Oct 10 12:58:03 2014 (r370574) @@ -1,40 +1,12 @@ -************************************************** -Daemon: - The user %%USERS%% has been added to your system. +When you first run minecraft-server, it will create the file +%%DATADIR%%/eula.txt - To run the server automativally with the system - add the following line to your /etc/rc.conf: +You need to read the EULA, and then set: +eula=true - minecraft_enable="YES" - - Serverfiles will be in - %%PREFIX%%/share/minecraft-server - - Configuration can be done using the config-files - or as OP using the Client. Config files are in - %%PREFIX%%/etc/minecraft - - If you have trouble starting or stopping the - server try to delete an unclean server.log.lck: - - %%PREFIX%%/etc/rc.d/minecraft clean - - If you don't like your generated world it can - be deleted (do generate a new one next time - the server starts) using: - - %%PREFIX%%/etc/rc.d/minecraft killworld - - You can delete the server.log (so it's not - getting to fat) using: - - %%PREFIX%%/etc/rc.d/minecraft clearlog - -Unprivileged users: - Running a server as unprivilieged user try - minecraft-server{-nogui} - - The serverfiles will be in - ~/.minecraft-server - -************************************************** +- To run the server, run %%PREFIX%%/bin/minecraft-server +- Configuration files can be found at %%ETCDIR%% +- Log files can be found at /var/log/minecraft-server/ +- World files can be found at /var/db/minecraft-server +- Debug output files can be found at /var/log/minecraft-server/debug/ +- To edit java's parameters, edit %%PREFIX%%/bin/minecraft-server Modified: head/games/minecraft-server/pkg-descr ============================================================================== --- head/games/minecraft-server/pkg-descr Fri Oct 10 12:46:46 2014 (r370573) +++ head/games/minecraft-server/pkg-descr Fri Oct 10 12:58:03 2014 (r370574) @@ -1,4 +1,3 @@ -This is the server for the popular block building game Minecraft. -There is a nongui-version and a gui-version. +This is the dedicated server for the popular block building game Minecraft. WWW: http://www.minecraft.net/ Modified: head/games/minecraft-server/pkg-plist ============================================================================== --- head/games/minecraft-server/pkg-plist Fri Oct 10 12:46:46 2014 (r370573) +++ head/games/minecraft-server/pkg-plist Fri Oct 10 12:58:03 2014 (r370574) @@ -1,16 +1,23 @@ -@stopdaemon minecraft -%%X11%%bin/minecraft-server -bin/minecraft-server-nogui +bin/minecraft-server @owner mcserver @group mcserver -@sample %%ETCDIR%%/banned-ips.txt.sample -@sample %%ETCDIR%%/banned-players.txt.sample -@sample %%ETCDIR%%/ops.txt.sample -@sample %%ETCDIR%%/server.properties.sample -@sample %%ETCDIR%%/white-list.txt.sample -%%DATADIR%%/minecraft_server.jar +%%ETCDIR%%/banned-ips.json +%%ETCDIR%%/banned-players.json +%%ETCDIR%%/ops.json +%%ETCDIR%%/server.properties +%%ETCDIR%%/usercache.json +%%ETCDIR%%/whitelist.json +%%DATADIR%%/banned-ips.json +%%DATADIR%%/banned-players.json +%%DATADIR%%/debug +%%DATADIR%%/logs +%%DATADIR%%/minecraft_server.1.8.jar +%%DATADIR%%/ops.json +%%DATADIR%%/server.properties +%%DATADIR%%/usercache.json +%%DATADIR%%/whitelist.json +%%DATADIR%%/world +@dir /var/db/minecraft-server +@dir /var/log/minecraft-server @owner @group -%%X11%%share/pixmaps/minecraft-server.png -@dirrmtry %%DATADIR%% -@dirrmtry %%ETCDIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 13:36:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23782FC8; Fri, 10 Oct 2014 13:36:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D736ABA; Fri, 10 Oct 2014 13:36:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ADa9Rb079587; Fri, 10 Oct 2014 13:36:09 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ADa8qq079582; Fri, 10 Oct 2014 13:36:08 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410101336.s9ADa8qq079582@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 10 Oct 2014 13:36:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370576 - head/math/vtk6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 13:36:09 -0000 Author: gahr Date: Fri Oct 10 13:36:08 2014 New Revision: 370576 URL: https://svnweb.freebsd.org/changeset/ports/370576 QAT: https://qat.redports.org/buildarchive/r370576/ Log: - Add an OPTION to enable the Python wrapping module - Add an OPTION to chose between static and shared libs - Bump PORTREVISION Modified: head/math/vtk6/Makefile head/math/vtk6/pkg-plist Modified: head/math/vtk6/Makefile ============================================================================== --- head/math/vtk6/Makefile Fri Oct 10 13:30:33 2014 (r370575) +++ head/math/vtk6/Makefile Fri Oct 10 13:36:08 2014 (r370576) @@ -3,7 +3,7 @@ PORTNAME= vtk PORTVERSION= 6.1.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math graphics MASTER_SITES= http://www.vtk.org/files/release/${VTK_SHORT_VER}/ PKGNAMESUFFIX= 6 @@ -22,7 +22,6 @@ LIB_DEPENDS= libtiff.so:${PORTSDIR}/grap # # TODO -# * PYTHON wrap # * VTK Groups UNIQUENAME= ${PKGBASE} @@ -39,21 +38,21 @@ PLIST_SUB+= VER2=${VTK_SHORT_VER} DOCSDIR= ${PREFIX}/share/doc/vtk-${VTK_SHORT_VER} DATADIR= ${PREFIX}/share/vtk-${VTK_SHORT_VER} +# Options +OPTIONS_DEFINE= DESIGNER DOCS OSMESA EXAMPLES SHARED +OPTIONS_DEFAULT=SHARED +#OPTIONS_DEFAULT=MPI Qt JAVA PYTHON TCLTK DESIGNER +OSMESA_DESC= Use Mesa for off-screen rendering +DESIGNER_DESC= Build the Qt Designer plugin +OPTIONS_SUB= yes + +# Options groups #VTK_GROUPS= Imaging MPI Qt Rendering StandAlone Views VTK_GROUPS= MPI -VTK_WRAPS= JAVA TCLTK # PYTHON +VTK_WRAPS= JAVA TCLTK PYTHON OPTIONS_GROUP= Groups Wrapping OPTIONS_GROUP_Groups=${VTK_GROUPS} OPTIONS_GROUP_Wrapping=${VTK_WRAPS} -OPTIONS_DEFINE= DESIGNER DOCS OSMESA EXAMPLES -OPTIONS_RADIO= Qt -OPTIONS_RADIO_Qt= QT4 QT5 -Qt_DESC= Qt GUI support -QT4_DESC= Qt 4 toolkit support -QT5_DESC= Qt 5 toolkit support -OSMESA_DESC= Use Mesa for off-screen rendering -#OPTIONS_DEFAULT=MPI Qt JAVA PYTHON TCLTK DESIGNER - .for g in ${VTK_GROUPS} $g_DESC= Build the $g group .endfor @@ -61,7 +60,13 @@ $g_DESC= Build the $g group $w_DESC= $w wrapping .endfor -DESIGNER_DESC= Build the Qt Designer plugin +# Qt radio +OPTIONS_RADIO= Qt +OPTIONS_RADIO_Qt= QT4 QT5 +Qt_DESC= Qt GUI support +QT4_DESC= Qt 4 toolkit support +QT5_DESC= Qt 5 toolkit support + CMAKE_ARGS+= -DVTK_INSTALL_LIBRARY_DIR=lib/vtk-${VTK_SHORT_VER} \ -DVTK_INSTALL_ARCHIVE_DIR=lib/vtk-${VTK_SHORT_VER} \ @@ -77,6 +82,10 @@ CMAKE_ARGS+= -DVTK_INSTALL_LIBRARY_DIR=l -DModule_vtkTestingCore:BOOL=ON \ -DModule_vtkTestingRendering:BOOL=ON +SHARED_CMAKE_ON= -DBUILD_SHARED_LIBS:BOOL=ON +SHARED_CMAKE_OFF= -DBUILD_SHARED_LIBS:BOOL=OFF + + .include .for g in ${VTK_GROUPS} @@ -167,8 +176,9 @@ PLIST_SUB+= JAVA="@comment " .endif .if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= yes -CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=ON +USES+= python +CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=ON \ + -DVTK_INSTALL_PYTHON_MODULE_DIR:STRING=${PYTHONPREFIX_SITELIBDIR} PLIST_SUB+= PYTHON="" .else CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=OFF Modified: head/math/vtk6/pkg-plist ============================================================================== --- head/math/vtk6/pkg-plist Fri Oct 10 13:30:33 2014 (r370575) +++ head/math/vtk6/pkg-plist Fri Oct 10 13:36:08 2014 (r370576) @@ -1,7 +1,1530 @@ +%%DATADIR%%/vtkDomainsChemistry/COPYING +%%DATADIR%%/vtkDomainsChemistry/elements.xml +%%JAVA%%include/vtk-%%VER2%%/vtkJavaUtil.h +%%JAVA%%include/vtk-%%VER2%%/vtkWrappingJavaModule.h +%%JAVA%%lib/cmake/vtk-%%VER2%%/Modules/vtkWrappingJava.cmake +%%JAVA%%lib/vtk-%%VER2%%/vtk.jar +%%MPI%%include/vtk-%%VER2%%/vtkDistributedDataFilter.h +%%MPI%%include/vtk-%%VER2%%/vtkFiltersParallelGeometryModule.h +%%MPI%%include/vtk-%%VER2%%/vtkFiltersParallelMPIModule.h +%%MPI%%include/vtk-%%VER2%%/vtkIOMPIImageModule.h +%%MPI%%include/vtk-%%VER2%%/vtkIOMPIImageObjectFactory.h +%%MPI%%include/vtk-%%VER2%%/vtkIOMPIParallelModule.h +%%MPI%%include/vtk-%%VER2%%/vtkIOMPIParallelObjectFactory.h +%%MPI%%include/vtk-%%VER2%%/vtkIOParallelNetCDFModule.h +%%MPI%%include/vtk-%%VER2%%/vtkMPI.h +%%MPI%%include/vtk-%%VER2%%/vtkMPICommunicator.h +%%MPI%%include/vtk-%%VER2%%/vtkMPIController.h +%%MPI%%include/vtk-%%VER2%%/vtkMPIImageReader.h +%%MPI%%include/vtk-%%VER2%%/vtkMPIUtilities.h +%%MPI%%include/vtk-%%VER2%%/vtkPDataSetGhostGenerator.h +%%MPI%%include/vtk-%%VER2%%/vtkPNetCDFPOPReader.h +%%MPI%%include/vtk-%%VER2%%/vtkPNrrdReader.h +%%MPI%%include/vtk-%%VER2%%/vtkPStructuredGridConnectivity.h +%%MPI%%include/vtk-%%VER2%%/vtkPStructuredGridGhostDataGenerator.h +%%MPI%%include/vtk-%%VER2%%/vtkPUniformGridGhostDataGenerator.h +%%MPI%%include/vtk-%%VER2%%/vtkPUnstructuredGridConnectivity.h +%%MPI%%include/vtk-%%VER2%%/vtkPUnstructuredGridGhostDataGenerator.h +%%MPI%%include/vtk-%%VER2%%/vtkPWindBladeReader.h +%%MPI%%include/vtk-%%VER2%%/vtkParallelMPIModule.h +%%MPI%%lib/cmake/vtk-%%VER2%%/Modules/vtkFiltersParallelGeometry.cmake +%%MPI%%lib/cmake/vtk-%%VER2%%/Modules/vtkFiltersParallelMPI.cmake +%%MPI%%lib/cmake/vtk-%%VER2%%/Modules/vtkIOMPIImage.cmake +%%MPI%%lib/cmake/vtk-%%VER2%%/Modules/vtkIOMPIParallel.cmake +%%MPI%%lib/cmake/vtk-%%VER2%%/Modules/vtkIOParallelNetCDF.cmake +%%MPI%%lib/cmake/vtk-%%VER2%%/Modules/vtkParallelMPI.cmake +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkChartsCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkChartsCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonColorPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonColorPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonComputationalGeometryPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonComputationalGeometryPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonDataModelPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonDataModelPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonExecutionModelPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonExecutionModelPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMathPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMathPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMiscPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMiscPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonSystemPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonSystemPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonTransformsPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonTransformsPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkDomainsChemistryPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkDomainsChemistryPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersAMRPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersAMRPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersExtractionPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersExtractionPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersFlowPathsPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersFlowPathsPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeneralPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeneralPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGenericPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGenericPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeometryPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeometryPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHybridPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHybridPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHyperTreePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHyperTreePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersImagingPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersImagingPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersModelingPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersModelingPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelImagingPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelImagingPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersProgrammablePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersProgrammablePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSMPPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSMPPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSelectionPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSelectionPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSourcesPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSourcesPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersStatisticsPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersStatisticsPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersTexturePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersTexturePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersVerdictPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersVerdictPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkGeovisCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkGeovisCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOAMRPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOAMRPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOEnSightPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOEnSightPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExodusPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExodusPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExportPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExportPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOGeometryPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOGeometryPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImagePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImagePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImportPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImportPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOInfovisPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOInfovisPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLSDynaPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLSDynaPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLegacyPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLegacyPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMINCPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMINCPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMoviePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMoviePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIONetCDFPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIONetCDFPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOPLYPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOPLYPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOParallelPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOParallelPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOSQLPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOSQLPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOVideoPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOVideoPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOXMLParserPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOXMLParserPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOXMLPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOXMLPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingColorPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingColorPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingFourierPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingFourierPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingGeneralPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingGeneralPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingHybridPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingHybridPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingMathPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingMathPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingMorphologicalPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingMorphologicalPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingSourcesPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingSourcesPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingStatisticsPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingStatisticsPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingStencilPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkImagingStencilPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInfovisCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInfovisCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInfovisLayoutPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInfovisLayoutPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInteractionImagePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInteractionImagePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInteractionStylePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInteractionStylePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInteractionWidgetsPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkInteractionWidgetsPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkParallelCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkParallelCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingAnnotationPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingAnnotationPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingContext2DPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingContext2DPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypeOpenGLPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypeOpenGLPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingGL2PSPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingGL2PSPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingImagePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingImagePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingLICPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingLICPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingLODPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingLODPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingLabelPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingLabelPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingOpenGLPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingOpenGLPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingVolumeAMRPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingVolumeAMRPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingVolumeOpenGLPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingVolumeOpenGLPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingVolumePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkRenderingVolumePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkTestingRenderingPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkTestingRenderingPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsContext2DPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsContext2DPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsCorePython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsCorePython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsGeovisPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsGeovisPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsInfovisPython-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkViewsInfovisPython27D-%%VER2%%.a +%%NO_SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkWrappingPython27Core-%%VER2%%.a +%%NO_SHARED%%%%QT%%lib/vtk-%%VER2%%/libvtkGUISupportQt-%%VER2%%.a +%%NO_SHARED%%%%QT%%lib/vtk-%%VER2%%/libvtkGUISupportQtOpenGL-%%VER2%%.a +%%NO_SHARED%%%%QT%%lib/vtk-%%VER2%%/libvtkGUISupportQtSQL-%%VER2%%.a +%%NO_SHARED%%%%QT%%lib/vtk-%%VER2%%/libvtkGUISupportQtWebkit-%%VER2%%.a +%%NO_SHARED%%%%QT%%lib/vtk-%%VER2%%/libvtkRenderingQt-%%VER2%%.a +%%NO_SHARED%%%%QT%%lib/vtk-%%VER2%%/libvtkViewsQt-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkChartsCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonColor-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonComputationalGeometry-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonDataModel-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonExecutionModel-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonMath-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonMisc-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonSystem-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkCommonTransforms-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkDICOMParser-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkDomainsChemistry-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersAMR-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersExtraction-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersFlowPaths-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersGeneral-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersGeneric-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersGeometry-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersHybrid-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersHyperTree-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersImaging-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersModeling-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersParallel-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersParallelImaging-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersProgrammable-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersSMP-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersSelection-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersSources-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersStatistics-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersTexture-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkFiltersVerdict-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkGeovisCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOAMR-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOEnSight-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOExodus-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOExport-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOGeometry-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOImage-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOImport-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOInfovis-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOLSDyna-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOLegacy-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOMINC-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOMovie-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIONetCDF-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOPLY-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOParallel-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOSQL-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOVideo-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOXML-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkIOXMLParser-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingColor-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingFourier-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingGeneral-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingHybrid-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingMath-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingMorphological-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingSources-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingStatistics-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkImagingStencil-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInfovisCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInfovisLayout-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInteractionImage-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInteractionStyle-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInteractionWidgets-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkParallelCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingAnnotation-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingContext2D-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingFreeType-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypeOpenGL-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingGL2PS-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingImage-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingLIC-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingLOD-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingLabel-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingOpenGL-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingVolume-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingVolumeAMR-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkRenderingVolumeOpenGL-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkTestingRendering-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkViewsContext2D-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkViewsCore-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkViewsGeovis-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkViewsInfovis-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkalglib-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkexoIIc-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkftgl-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkgl2ps-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkhdf5-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkhdf5_hl-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkjsoncpp-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtklibxml2-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkmetaio-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkoggtheora-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkproj4-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtksqlite-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtksys-%%VER2%%.a +%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkverdict-%%VER2%%.a +%%OSMESA%%include/vtk-%%VER2%%/vtkOSOpenGLRenderWindow.h +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindow.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindow.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkGLExtVTKRenderWindowInteractor.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindow.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindow.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/GtkVTKRenderWindowInteractor.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/gtk/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/qt4/QVTKRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/qt4/QVTKRenderWindowInteractor.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/qt4/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/qt4/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/test/BlackBox.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/test/BlackBox.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/test/Testing.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/test/Testing.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/test/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/test/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkLoadPythonTkWidgets.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkLoadPythonTkWidgets.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkImageViewerWidget.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkImageViewerWidget.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkPhotoImage.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkPhotoImage.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkRenderWidget.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkRenderWidget.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/tk/vtkTkRenderWindowInteractor.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/colors.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/colors.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/misc.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/misc.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/numpy_support.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/numpy_support.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkConstants.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkConstants.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkImageExportToArray.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkImageExportToArray.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkImageImportFromArray.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkImageImportFromArray.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkMethodParser.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkMethodParser.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkVariant.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/util/vtkVariant.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkChartsCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkChartsCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonColor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonColor.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonComputationalGeometry.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonComputationalGeometry.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonDataModel.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonDataModel.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonExecutionModel.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonExecutionModel.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonMath.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonMath.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonMisc.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonMisc.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonSystem.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonSystem.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonTransforms.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonTransforms.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkDomainsChemistry.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkDomainsChemistry.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersAMR.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersAMR.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersExtraction.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersExtraction.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersFlowPaths.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersFlowPaths.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeneral.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeneral.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeneric.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeneric.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeometry.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeometry.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersHybrid.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersHybrid.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersHyperTree.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersHyperTree.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersImaging.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersImaging.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersModeling.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersModeling.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersParallel.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersParallel.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersParallelImaging.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersParallelImaging.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersProgrammable.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersProgrammable.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSMP.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSMP.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSelection.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSelection.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSources.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSources.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersStatistics.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersStatistics.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersTexture.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersTexture.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersVerdict.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersVerdict.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkGeovisCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkGeovisCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOAMR.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOAMR.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOEnSight.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOEnSight.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOExodus.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOExodus.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOExport.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOExport.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOGeometry.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOGeometry.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOImage.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOImage.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOImport.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOImport.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOInfovis.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOInfovis.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOLSDyna.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOLSDyna.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOLegacy.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOLegacy.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOMINC.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOMINC.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOMovie.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOMovie.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIONetCDF.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIONetCDF.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOPLY.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOPLY.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOParallel.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOParallel.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOSQL.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOSQL.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOVideo.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOVideo.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOXML.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOXML.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOXMLParser.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOXMLParser.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingColor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingColor.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingFourier.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingFourier.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingGeneral.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingGeneral.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingHybrid.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingHybrid.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingMath.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingMath.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingMorphological.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingMorphological.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingSources.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingSources.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingStatistics.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingStatistics.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingStencil.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingStencil.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInfovisCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInfovisCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInfovisLayout.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInfovisLayout.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionImage.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionImage.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionStyle.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionStyle.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionWidgets.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionWidgets.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkParallelCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkParallelCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingAnnotation.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingAnnotation.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingContext2D.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingContext2D.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingFreeType.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingFreeType.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingFreeTypeOpenGL.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingFreeTypeOpenGL.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingGL2PS.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingGL2PS.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingImage.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingImage.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLIC.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLIC.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLOD.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLOD.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLabel.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLabel.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingOpenGL.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingOpenGL.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolume.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolume.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumeAMR.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumeAMR.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumeOpenGL.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumeOpenGL.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkTestingRendering.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkTestingRendering.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsContext2D.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsContext2D.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsCore.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsCore.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsGeovis.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsGeovis.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsInfovis.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsInfovis.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/wx/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/wx/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/wx/wxVTKRenderWindow.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/wx/wxVTKRenderWindow.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/wx/wxVTKRenderWindowInteractor.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/wx/wxVTKRenderWindowInteractor.pyc +%%PYTHON%%bin/vtkpython +%%PYTHON%%include/vtk-%%VER2%%/PyVTKClass.h +%%PYTHON%%include/vtk-%%VER2%%/PyVTKMutableObject.h +%%PYTHON%%include/vtk-%%VER2%%/PyVTKObject.h +%%PYTHON%%include/vtk-%%VER2%%/PyVTKSpecialObject.h +%%PYTHON%%include/vtk-%%VER2%%/PyVTKTemplate.h +%%PYTHON%%include/vtk-%%VER2%%/vtkPython.h +%%PYTHON%%include/vtk-%%VER2%%/vtkPythonArgs.h +%%PYTHON%%include/vtk-%%VER2%%/vtkPythonCommand.h +%%PYTHON%%include/vtk-%%VER2%%/vtkPythonConfigure.h +%%PYTHON%%include/vtk-%%VER2%%/vtkPythonOverload.h +%%PYTHON%%include/vtk-%%VER2%%/vtkPythonUtil.h +%%PYTHON%%include/vtk-%%VER2%%/vtkWrappingPythonCoreModule.h +%%PYTHON%%lib/cmake/vtk-%%VER2%%/Modules/vtkPython.cmake +%%PYTHON%%lib/cmake/vtk-%%VER2%%/Modules/vtkWrappingPythonCore.cmake +%%QT%%include/vtk-%%VER2%%/QFilterTreeProxyModel.h +%%QT%%include/vtk-%%VER2%%/QVTKApplication.h +%%QT%%include/vtk-%%VER2%%/QVTKGraphicsItem.h +%%QT%%include/vtk-%%VER2%%/QVTKInteractor.h +%%QT%%include/vtk-%%VER2%%/QVTKInteractorAdapter.h +%%QT%%include/vtk-%%VER2%%/QVTKInteractorInternal.h +%%QT%%include/vtk-%%VER2%%/QVTKPaintEngine.h +%%QT%%include/vtk-%%VER2%%/QVTKWidget.h +%%QT%%include/vtk-%%VER2%%/QVTKWidget2.h +%%QT%%include/vtk-%%VER2%%/QVTKWin32Header.h +%%QT%%include/vtk-%%VER2%%/vtkEventQtSlotConnect.h +%%QT%%include/vtk-%%VER2%%/vtkGUISupportQtModule.h +%%QT%%include/vtk-%%VER2%%/vtkGUISupportQtOpenGLModule.h +%%QT%%include/vtk-%%VER2%%/vtkGUISupportQtSQLModule.h +%%QT%%include/vtk-%%VER2%%/vtkGUISupportQtWebkitModule.h +%%QT%%include/vtk-%%VER2%%/vtkQImageToImageSource.h +%%QT%%include/vtk-%%VER2%%/vtkQtAbstractModelAdapter.h +%%QT%%include/vtk-%%VER2%%/vtkQtAnnotationLayersModelAdapter.h +%%QT%%include/vtk-%%VER2%%/vtkQtAnnotationView.h +%%QT%%include/vtk-%%VER2%%/vtkQtConnection.h +%%QT%%include/vtk-%%VER2%%/vtkQtDebugLeaksModel.h +%%QT%%include/vtk-%%VER2%%/vtkQtDebugLeaksView.h +%%QT%%include/vtk-%%VER2%%/vtkQtInitialization.h +%%QT%%include/vtk-%%VER2%%/vtkQtLabelRenderStrategy.h +%%QT%%include/vtk-%%VER2%%/vtkQtListView.h +%%QT%%include/vtk-%%VER2%%/vtkQtRecordView.h +%%QT%%include/vtk-%%VER2%%/vtkQtRichTextView.h +%%QT%%include/vtk-%%VER2%%/vtkQtSQLDatabase.h +%%QT%%include/vtk-%%VER2%%/vtkQtSQLQuery.h +%%QT%%include/vtk-%%VER2%%/vtkQtStringToImage.h +%%QT%%include/vtk-%%VER2%%/vtkQtTableModelAdapter.h +%%QT%%include/vtk-%%VER2%%/vtkQtTableRepresentation.h +%%QT%%include/vtk-%%VER2%%/vtkQtTableView.h +%%QT%%include/vtk-%%VER2%%/vtkQtTimePointUtility.h +%%QT%%include/vtk-%%VER2%%/vtkQtTreeModelAdapter.h +%%QT%%include/vtk-%%VER2%%/vtkQtTreeRingLabelMapper.h +%%QT%%include/vtk-%%VER2%%/vtkQtTreeView.h +%%QT%%include/vtk-%%VER2%%/vtkQtView.h +%%QT%%include/vtk-%%VER2%%/vtkRenderingQtModule.h +%%QT%%include/vtk-%%VER2%%/vtkViewsQtModule.h +%%QT%%lib/cmake/vtk-%%VER2%%/Modules/vtkGUISupportQt.cmake +%%QT%%lib/cmake/vtk-%%VER2%%/Modules/vtkGUISupportQtOpenGL.cmake +%%QT%%lib/cmake/vtk-%%VER2%%/Modules/vtkGUISupportQtSQL.cmake +%%QT%%lib/cmake/vtk-%%VER2%%/Modules/vtkGUISupportQtWebkit.cmake +%%QT%%lib/cmake/vtk-%%VER2%%/Modules/vtkRenderingQt.cmake +%%QT%%lib/cmake/vtk-%%VER2%%/Modules/vtkViewsQt.cmake +%%SHARED%%%%DESIGNER%%%%QT_LIBDIR%%/plugins/designer/libQVTKWidgetPlugin-%%VER2%%.so +%%SHARED%%%%JAVA%%%%MPI%%lib/vtk-%%VER2%%/libvtkFiltersParallelGeometryJava.so +%%SHARED%%%%JAVA%%%%MPI%%lib/vtk-%%VER2%%/libvtkFiltersParallelMPIJava.so +%%SHARED%%%%JAVA%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOMPIImageJava.so +%%SHARED%%%%JAVA%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOMPIParallelJava.so +%%SHARED%%%%JAVA%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOParallelNetCDFJava.so +%%SHARED%%%%JAVA%%%%MPI%%lib/vtk-%%VER2%%/libvtkParallelMPIJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkChartsCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonColorJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonComputationalGeometryJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonDataModelJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonExecutionModelJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonMathJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonMiscJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonSystemJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkCommonTransformsJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkDomainsChemistryJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersAMRJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersExtractionJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersFlowPathsJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersGeneralJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersGenericJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersGeometryJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersHybridJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersHyperTreeJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersImagingJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersModelingJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersParallelImagingJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersParallelJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersProgrammableJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersSMPJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersSelectionJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersSourcesJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersStatisticsJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersTextureJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkFiltersVerdictJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkGeovisCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOAMRJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOEnSightJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOExodusJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOExportJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOGeometryJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOImageJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOImportJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOInfovisJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOLSDynaJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOLegacyJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOMINCJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOMovieJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIONetCDFJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOPLYJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOParallelJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOSQLJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOVideoJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOXMLJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkIOXMLParserJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingColorJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingFourierJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingGeneralJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingHybridJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingMathJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingMorphologicalJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingSourcesJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingStatisticsJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkImagingStencilJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkInfovisCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkInfovisLayoutJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkInteractionImageJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkInteractionStyleJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkInteractionWidgetsJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkLocalExampleJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkParallelCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingAnnotationJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingContext2DJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypeJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingFreeTypeOpenGLJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingGL2PSJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingImageJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingLICJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingLODJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingLabelJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingOpenGLJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingQtJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingVolumeAMRJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingVolumeJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkRenderingVolumeOpenGLJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkTestingRenderingJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkViewsContext2DJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkViewsCoreJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkViewsGeovisJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkViewsInfovisJava.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkWrappingJava-%%VER2%%.so +%%SHARED%%%%JAVA%%lib/vtk-%%VER2%%/libvtkWrappingJava-%%VER2%%.so.1 +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkFiltersParallelGeometry-%%VER2%%.so +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkFiltersParallelGeometry-%%VER2%%.so.1 +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkFiltersParallelMPI-%%VER2%%.so +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkFiltersParallelMPI-%%VER2%%.so.1 +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOMPIImage-%%VER2%%.so +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOMPIImage-%%VER2%%.so.1 +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOMPIParallel-%%VER2%%.so +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOMPIParallel-%%VER2%%.so.1 +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOParallelNetCDF-%%VER2%%.so +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkIOParallelNetCDF-%%VER2%%.so.1 +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkParallelMPI-%%VER2%%.so +%%SHARED%%%%MPI%%lib/vtk-%%VER2%%/libvtkParallelMPI-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkChartsCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonColorPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonComputationalGeometryPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonDataModelPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonExecutionModelPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonMathPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonMiscPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonSystemPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkCommonTransformsPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkDomainsChemistryPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersAMRPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersExtractionPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersFlowPathsPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeneralPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGenericPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersGeometryPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersHybridPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersHyperTreePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersImagingPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersModelingPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersParallelImagingPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersParallelPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersProgrammablePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSMPPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSelectionPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersSourcesPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersStatisticsPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersTexturePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkFiltersVerdictPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkGeovisCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOAMRPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOEnSightPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOExodusPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOExportPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOGeometryPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOImagePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOImportPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOInfovisPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOLSDynaPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOLegacyPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOMINCPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOMoviePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIONetCDFPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOPLYPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOParallelPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOSQLPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOVideoPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOXMLParserPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkIOXMLPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingColorPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingFourierPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingGeneralPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingHybridPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingMathPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingMorphologicalPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingSourcesPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingStatisticsPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkImagingStencilPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInfovisCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInfovisLayoutPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionImagePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionStylePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkInteractionWidgetsPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkParallelCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingAnnotationPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingContext2DPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingFreeTypeOpenGLPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingFreeTypePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingGL2PSPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingImagePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLICPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLODPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingLabelPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingOpenGLPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumeAMRPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumeOpenGLPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkRenderingVolumePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkTestingRenderingPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsContext2DPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsCorePython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsGeovisPython.so +%%SHARED%%%%PYTHON%%%%PYTHON_SITELIBDIR%%/vtk/vtkViewsInfovisPython.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkChartsCorePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkChartsCorePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonColorPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonColorPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonComputationalGeometryPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonComputationalGeometryPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonCorePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonCorePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonDataModelPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonDataModelPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonExecutionModelPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonExecutionModelPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMathPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMathPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMiscPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonMiscPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonSystemPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonSystemPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonTransformsPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkCommonTransformsPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkDomainsChemistryPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkDomainsChemistryPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersAMRPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersAMRPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersCorePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersCorePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersExtractionPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersExtractionPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersFlowPathsPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersFlowPathsPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeneralPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeneralPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGenericPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGenericPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeometryPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersGeometryPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHybridPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHybridPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHyperTreePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersHyperTreePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersImagingPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersImagingPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersModelingPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersModelingPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelImagingPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelImagingPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersParallelPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersProgrammablePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersProgrammablePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSMPPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSMPPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSelectionPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSelectionPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSourcesPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersSourcesPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersStatisticsPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersStatisticsPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersTexturePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersTexturePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersVerdictPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkFiltersVerdictPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkGeovisCorePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkGeovisCorePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOAMRPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOAMRPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOCorePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOCorePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOEnSightPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOEnSightPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExodusPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExodusPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExportPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOExportPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOGeometryPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOGeometryPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImagePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImagePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImportPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOImportPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOInfovisPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOInfovisPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLSDynaPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLSDynaPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLegacyPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOLegacyPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMINCPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMINCPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMoviePython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOMoviePython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIONetCDFPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIONetCDFPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOPLYPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOPLYPython27D-%%VER2%%.so.1 +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOParallelPython27D-%%VER2%%.so +%%SHARED%%%%PYTHON%%lib/vtk-%%VER2%%/libvtkIOParallelPython27D-%%VER2%%.so.1 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:09 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5C894C6; Fri, 10 Oct 2014 14:00:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A69ABCD7; Fri, 10 Oct 2014 14:00:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE09QW089503; Fri, 10 Oct 2014 14:00:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE09Fw089502; Fri, 10 Oct 2014 14:00:09 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE09Fw089502@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370577 - head/games/cube X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:09 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:08 2014 New Revision: 370577 URL: https://svnweb.freebsd.org/changeset/ports/370577 QAT: https://qat.redports.org/buildarchive/r370577/ Log: - Drop @dirrm* from plist Modified: head/games/cube/pkg-plist Modified: head/games/cube/pkg-plist ============================================================================== --- head/games/cube/pkg-plist Fri Oct 10 13:36:08 2014 (r370576) +++ head/games/cube/pkg-plist Fri Oct 10 14:00:08 2014 (r370577) @@ -1071,162 +1071,3 @@ %%PORTDOCS%%%%DOCSDIR%%/pics/octa.jpg %%PORTDOCS%%%%DOCSDIR%%/pics/ocull.jpg %%PORTDOCS%%%%DOCSDIR%%/readme.html -%%PORTDOCS%%@dirrm %%DOCSDIR%%/pics -%%PORTDOCS%%@dirrm %%DOCSDIR%% -@dirrm %%DATADIR%%/packages/than_ind -@dirrm %%DATADIR%%/packages/tech1soc -@dirrm %%DATADIR%%/packages/stecki -@dirrm %%DATADIR%%/packages/spen/qb2x2 -@dirrm %%DATADIR%%/packages/spen -@dirrm %%DATADIR%%/packages/sounds/ppm -@dirrm %%DATADIR%%/packages/sounds/free -@dirrm %%DATADIR%%/packages/sounds/dcp_the_core -@dirrm %%DATADIR%%/packages/sounds/awesund -@dirrm %%DATADIR%%/packages/sounds/aard -@dirrm %%DATADIR%%/packages/sounds -@dirrm %%DATADIR%%/packages/songs -@dirrm %%DATADIR%%/packages/socksky -@dirrm %%DATADIR%%/packages/schwenz -@dirrm %%DATADIR%%/packages/pigcam -@dirrm %%DATADIR%%/packages/payne -@dirrm %%DATADIR%%/packages/packages -@dirrm %%DATADIR%%/packages/models/y_armour -@dirrm %%DATADIR%%/packages/models/tree1 -@dirrm %%DATADIR%%/packages/models/tentus/woodbench -@dirrm %%DATADIR%%/packages/models/tentus/spear -@dirrm %%DATADIR%%/packages/models/tentus/sidebarrel -@dirrm %%DATADIR%%/packages/models/tentus/ropelamp -@dirrm %%DATADIR%%/packages/models/tentus/rope -@dirrm %%DATADIR%%/packages/models/tentus/redshield -@dirrm %%DATADIR%%/packages/models/tentus/pot1 -@dirrm %%DATADIR%%/packages/models/tentus/moneybag -@dirrm %%DATADIR%%/packages/models/tentus/magic -@dirrm %%DATADIR%%/packages/models/tentus/ladder -@dirrm %%DATADIR%%/packages/models/tentus/key -@dirrm %%DATADIR%%/packages/models/tentus/hammer -@dirrm %%DATADIR%%/packages/models/tentus/greenshield -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/winebottle -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/pieslice -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/pie -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/pear -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/mug -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/meat -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/goblet -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/bowl -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/appleslice -@dirrm %%DATADIR%%/packages/models/tentus/food-drink/apple -@dirrm %%DATADIR%%/packages/models/tentus/food-drink -@dirrm %%DATADIR%%/packages/models/tentus/fattree -@dirrm %%DATADIR%%/packages/models/tentus/chains/curvechain -@dirrm %%DATADIR%%/packages/models/tentus/chains/chain -@dirrm %%DATADIR%%/packages/models/tentus/chains -@dirrm %%DATADIR%%/packages/models/tentus/books/multi -@dirrm %%DATADIR%%/packages/models/tentus/books/flat -@dirrm %%DATADIR%%/packages/models/tentus/books -@dirrm %%DATADIR%%/packages/models/tentus/bombs -@dirrm %%DATADIR%%/packages/models/tentus/barrel -@dirrm %%DATADIR%%/packages/models/tentus/anvil -@dirrm %%DATADIR%%/packages/models/tentus -@dirrm %%DATADIR%%/packages/models/teleporter -@dirrm %%DATADIR%%/packages/models/switch2 -@dirrm %%DATADIR%%/packages/models/switch1 -@dirrm %%DATADIR%%/packages/models/shells -@dirrm %%DATADIR%%/packages/models/rrounds -@dirrm %%DATADIR%%/packages/models/rockets -@dirrm %%DATADIR%%/packages/models/quad/old -@dirrm %%DATADIR%%/packages/models/quad -@dirrm %%DATADIR%%/packages/models/nieb/nothing -@dirrm %%DATADIR%%/packages/models/nieb -@dirrm %%DATADIR%%/packages/models/monster/slith -@dirrm %%DATADIR%%/packages/models/monster/rhino -@dirrm %%DATADIR%%/packages/models/monster/rat -@dirrm %%DATADIR%%/packages/models/monster/ogro -@dirrm %%DATADIR%%/packages/models/monster/knight -@dirrm %%DATADIR%%/packages/models/monster/hellpig -@dirrm %%DATADIR%%/packages/models/monster/goblin -@dirrm %%DATADIR%%/packages/models/monster/bauul -@dirrm %%DATADIR%%/packages/models/monster -@dirrm %%DATADIR%%/packages/models/makke/tricky/sign4 -@dirrm %%DATADIR%%/packages/models/makke/tricky/sign3 -@dirrm %%DATADIR%%/packages/models/makke/tricky/sign2 -@dirrm %%DATADIR%%/packages/models/makke/tricky/sign1 -@dirrm %%DATADIR%%/packages/models/makke/tricky -@dirrm %%DATADIR%%/packages/models/makke/strahler -@dirrm %%DATADIR%%/packages/models/makke/nocamp -@dirrm %%DATADIR%%/packages/models/makke -@dirrm %%DATADIR%%/packages/models/hudguns/shotg -@dirrm %%DATADIR%%/packages/models/hudguns/rocket -@dirrm %%DATADIR%%/packages/models/hudguns/rifle -@dirrm %%DATADIR%%/packages/models/hudguns/fist -@dirrm %%DATADIR%%/packages/models/hudguns/chaing_ -@dirrm %%DATADIR%%/packages/models/hudguns/chaing -@dirrm %%DATADIR%%/packages/models/hudguns -@dirrm %%DATADIR%%/packages/models/health -@dirrm %%DATADIR%%/packages/models/gibh -@dirrm %%DATADIR%%/packages/models/gibc -@dirrm %%DATADIR%%/packages/models/g_armour -@dirrm %%DATADIR%%/packages/models/dcp/waterbowl -@dirrm %%DATADIR%%/packages/models/dcp/vent -@dirrm %%DATADIR%%/packages/models/dcp/vase -@dirrm %%DATADIR%%/packages/models/dcp/valve -@dirrm %%DATADIR%%/packages/models/dcp/turret -@dirrm %%DATADIR%%/packages/models/dcp/tree3 -@dirrm %%DATADIR%%/packages/models/dcp/tree2 -@dirrm %%DATADIR%%/packages/models/dcp/thorns -@dirrm %%DATADIR%%/packages/models/dcp/streetlamp -@dirrm %%DATADIR%%/packages/models/dcp/smplant -@dirrm %%DATADIR%%/packages/models/dcp/sack -@dirrm %%DATADIR%%/packages/models/dcp/reed -@dirrm %%DATADIR%%/packages/models/dcp/qb8x8 -@dirrm %%DATADIR%%/packages/models/dcp/qb4x4 -@dirrm %%DATADIR%%/packages/models/dcp/qb2x2 -@dirrm %%DATADIR%%/packages/models/dcp/plant1 -@dirrm %%DATADIR%%/packages/models/dcp/pillar -@dirrm %%DATADIR%%/packages/models/dcp/palmtree -@dirrm %%DATADIR%%/packages/models/dcp/palette -@dirrm %%DATADIR%%/packages/models/dcp/mushroom -@dirrm %%DATADIR%%/packages/models/dcp/leafs -@dirrm %%DATADIR%%/packages/models/dcp/jumppad2 -@dirrm %%DATADIR%%/packages/models/dcp/ivy -@dirrm %%DATADIR%%/packages/models/dcp/insect -@dirrm %%DATADIR%%/packages/models/dcp/hanginlamp -@dirrm %%DATADIR%%/packages/models/dcp/groundlamp -@dirrm %%DATADIR%%/packages/models/dcp/grass -@dirrm %%DATADIR%%/packages/models/dcp/firebowl -@dirrm %%DATADIR%%/packages/models/dcp/console -@dirrm %%DATADIR%%/packages/models/dcp/chest -@dirrm %%DATADIR%%/packages/models/dcp/chandelier -@dirrm %%DATADIR%%/packages/models/dcp/cask -@dirrm %%DATADIR%%/packages/models/dcp/cart -@dirrm %%DATADIR%%/packages/models/dcp/candle -@dirrm %%DATADIR%%/packages/models/dcp/biotank -@dirrm %%DATADIR%%/packages/models/dcp/bench -@dirrm %%DATADIR%%/packages/models/dcp/barrel -@dirrm %%DATADIR%%/packages/models/dcp -@dirrm %%DATADIR%%/packages/models/carrot -@dirrm %%DATADIR%%/packages/models/bullets -@dirrm %%DATADIR%%/packages/models/bridge -@dirrm %%DATADIR%%/packages/models/boost -@dirrm %%DATADIR%%/packages/models -@dirrm %%DATADIR%%/packages/mitaman -@dirrm %%DATADIR%%/packages/makke -@dirrm %%DATADIR%%/packages/kurt/sky -@dirrm %%DATADIR%%/packages/kurt -@dirrm %%DATADIR%%/packages/jf1 -@dirrm %%DATADIR%%/packages/ikbase -@dirrm %%DATADIR%%/packages/ik2k/env -@dirrm %%DATADIR%%/packages/ik2k -@dirrm %%DATADIR%%/packages/golgotha -@dirrm %%DATADIR%%/packages/fanatic -@dirrm %%DATADIR%%/packages/egyptsoc -@dirrm %%DATADIR%%/packages/drian/textures -@dirrm %%DATADIR%%/packages/drian -@dirrm %%DATADIR%%/packages/dg -@dirrm %%DATADIR%%/packages/dcp_the_core -@dirrm %%DATADIR%%/packages/base -@dirrm %%DATADIR%%/packages/af -@dirrm %%DATADIR%%/packages/aard -@dirrm %%DATADIR%%/packages -@dirrm %%DATADIR%%/data/martin -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D52884DD; Fri, 10 Oct 2014 14:00:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C13E3CD9; Fri, 10 Oct 2014 14:00:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0Erj089634; Fri, 10 Oct 2014 14:00:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0EsA089630; Fri, 10 Oct 2014 14:00:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0EsA089630@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370578 - head/games/oneisenough X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:14 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:13 2014 New Revision: 370578 URL: https://svnweb.freebsd.org/changeset/ports/370578 QAT: https://qat.redports.org/buildarchive/r370578/ Log: - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/oneisenough/Makefile head/games/oneisenough/pkg-plist Modified: head/games/oneisenough/Makefile ============================================================================== --- head/games/oneisenough/Makefile Fri Oct 10 14:00:08 2014 (r370577) +++ head/games/oneisenough/Makefile Fri Oct 10 14:00:13 2014 (r370578) @@ -20,13 +20,12 @@ RUN_DEPENDS= ${PYGAME} WRKSRC= ${WRKDIR}/"one is enough" -USES= dos2unix shebangfix zip +USES= dos2unix python:2 shebangfix zip DOS2UNIX_FILES= *.txt bin/*.py DOS2UNIX_REGEX= .*.[^pt][^nt][^gf] SHEBANG_FILES= run_game.py bin/mainmenu.py python_OLD_CMD?= /usr/bin/env python python_CMD?= ${PYTHON_CMD} -USE_PYTHON= 2 PORTDOCS= README.txt OPTIONS_DEFINE= DOCS Modified: head/games/oneisenough/pkg-plist ============================================================================== --- head/games/oneisenough/pkg-plist Fri Oct 10 14:00:08 2014 (r370577) +++ head/games/oneisenough/pkg-plist Fri Oct 10 14:00:13 2014 (r370578) @@ -58,8 +58,3 @@ bin/oneisenough %%DATADIR%%/run_game.pyc %%DATADIR%%/run_game.pyo share/pixmaps/oneisenough.png -@dirrm %%DATADIR%%/bin/sounds -@dirrm %%DATADIR%%/bin/pictures -@dirrm %%DATADIR%%/bin/data -@dirrm %%DATADIR%%/bin -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46026683; Fri, 10 Oct 2014 14:00:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 327D7CDF; Fri, 10 Oct 2014 14:00:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0NMq090214; Fri, 10 Oct 2014 14:00:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0NDj090213; Fri, 10 Oct 2014 14:00:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0NDj090213@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370579 - head/games/gturing X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:23 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:22 2014 New Revision: 370579 URL: https://svnweb.freebsd.org/changeset/ports/370579 QAT: https://qat.redports.org/buildarchive/r370579/ Log: - Drop @dirrm* from plist Modified: head/games/gturing/pkg-plist Modified: head/games/gturing/pkg-plist ============================================================================== --- head/games/gturing/pkg-plist Fri Oct 10 14:00:13 2014 (r370578) +++ head/games/gturing/pkg-plist Fri Oct 10 14:00:22 2014 (r370579) @@ -41,7 +41,3 @@ share/locale/vi/LC_MESSAGES/gturing-2.0. share/locale/wa/LC_MESSAGES/gturing-2.0.mo share/locale/zh_CN/LC_MESSAGES/gturing-2.0.mo share/locale/zh_TW/LC_MESSAGES/gturing-2.0.mo -@dirrm share/omf/gturing -@dirrm share/gnome/help/gturing/C/figures -@dirrm share/gnome/help/gturing/C -@dirrm share/gnome/help/gturing From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B4A7687; Fri, 10 Oct 2014 14:00:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 57224CE0; Fri, 10 Oct 2014 14:00:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0S5A090947; Fri, 10 Oct 2014 14:00:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0RtB090940; Fri, 10 Oct 2014 14:00:27 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0RtB090940@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370580 - head/games/xkoules X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:28 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:27 2014 New Revision: 370580 URL: https://svnweb.freebsd.org/changeset/ports/370580 QAT: https://qat.redports.org/buildarchive/r370580/ Log: - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/xkoules/Makefile head/games/xkoules/pkg-plist Modified: head/games/xkoules/Makefile ============================================================================== --- head/games/xkoules/Makefile Fri Oct 10 14:00:22 2014 (r370579) +++ head/games/xkoules/Makefile Fri Oct 10 14:00:27 2014 (r370580) @@ -16,6 +16,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= Fast action arcade-style game for X Window LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING WRKSRC= ${WRKDIR}/${PORTNAME:S/x//}${PORTVERSION} Modified: head/games/xkoules/pkg-plist ============================================================================== --- head/games/xkoules/pkg-plist Fri Oct 10 14:00:22 2014 (r370579) +++ head/games/xkoules/pkg-plist Fri Oct 10 14:00:27 2014 (r370580) @@ -9,4 +9,3 @@ share/pixmaps/xkoules.png %%DATADIR%%/destroy2.raw %%DATADIR%%/end.raw %%DATADIR%%/start.raw -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 991AC781; Fri, 10 Oct 2014 14:00:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6AF65CE2; Fri, 10 Oct 2014 14:00:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0XY4091080; Fri, 10 Oct 2014 14:00:33 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0XCx091076; Fri, 10 Oct 2014 14:00:33 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0XCx091076@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370581 - head/games/blockrage X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:33 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:32 2014 New Revision: 370581 URL: https://svnweb.freebsd.org/changeset/ports/370581 QAT: https://qat.redports.org/buildarchive/r370581/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist - Fix whitespace Modified: head/games/blockrage/Makefile head/games/blockrage/pkg-plist Modified: head/games/blockrage/Makefile ============================================================================== --- head/games/blockrage/Makefile Fri Oct 10 14:00:27 2014 (r370580) +++ head/games/blockrage/Makefile Fri Oct 10 14:00:32 2014 (r370581) @@ -13,7 +13,8 @@ DISTFILES= ${PORTNAME}-${DISTVERSION}${E MAINTAINER= games@FreeBSD.org COMMENT= Falling blocks game with 2-player hotseat mode -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USE_SDL= sdl image mixer GNU_CONFIGURE= yes @@ -32,12 +33,12 @@ DESKTOP_ENTRIES="Block Rage" "" "${PORTN post-patch: @${REINPLACE_CMD} -e \ - 's|prefix=/usr/local|prefix=${PREFIX}|; \ - s|MYCC=gcc|MYCC?=${CC}|; \ - s|-s -O2 -Wall||; \ - s|sdl-config|$(SDL_CONFIG)|; \ - s|MAKE=make|MAKE=${MAKE}|' \ - ${WRKSRC}/configure + 's|prefix=/usr/local|prefix=${PREFIX}|; \ + s|MYCC=gcc|MYCC?=${CC}|; \ + s|-s -O2 -Wall||; \ + s|sdl-config|$(SDL_CONFIG)|; \ + s|MAKE=make|MAKE=${MAKE}|' \ + ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|gcc -s|${CC}|' \ ${WRKSRC}/src/Makefile.in Modified: head/games/blockrage/pkg-plist ============================================================================== --- head/games/blockrage/pkg-plist Fri Oct 10 14:00:27 2014 (r370580) +++ head/games/blockrage/pkg-plist Fri Oct 10 14:00:32 2014 (r370581) @@ -40,6 +40,3 @@ share/icons/hicolor/64x64/apps/blockrage share/icons/hicolor/72x72/apps/blockrage.png share/icons/hicolor/96x96/apps/blockrage.png share/pixmaps/blockrage.png -@dirrm %%DATADIR%%/data/test -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B631B91D; Fri, 10 Oct 2014 14:00:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 94332CE5; Fri, 10 Oct 2014 14:00:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0cEh091212; Fri, 10 Oct 2014 14:00:38 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0can091210; Fri, 10 Oct 2014 14:00:38 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0can091210@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370582 - head/games/capicity X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:38 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:37 2014 New Revision: 370582 URL: https://svnweb.freebsd.org/changeset/ports/370582 QAT: https://qat.redports.org/buildarchive/r370582/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/capicity/Makefile head/games/capicity/pkg-plist Modified: head/games/capicity/Makefile ============================================================================== --- head/games/capicity/Makefile Fri Oct 10 14:00:32 2014 (r370581) +++ head/games/capicity/Makefile Fri Oct 10 14:00:37 2014 (r370582) @@ -11,7 +11,8 @@ DISTNAME= CapiCity_${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Qt client for the Monopd server -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/copying.txt LIB_DEPENDS= libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs \ libpcre.so:${PORTSDIR}/devel/pcre \ Modified: head/games/capicity/pkg-plist ============================================================================== --- head/games/capicity/pkg-plist Fri Oct 10 14:00:32 2014 (r370581) +++ head/games/capicity/pkg-plist Fri Oct 10 14:00:37 2014 (r370582) @@ -84,12 +84,3 @@ share/icons/hicolor/32x32/apps/capicity. share/icons/hicolor/48x48/apps/capicity.png share/icons/hicolor/64x64/apps/capicity.png share/pixmaps/capicity.png -%%NLS%%@dirrm %%DATADIR%%/ts -@dirrm %%DATADIR%%/images/tools -@dirrm %%DATADIR%%/images/smilies -@dirrm %%DATADIR%%/images/menu -@dirrm %%DATADIR%%/images/field -@dirrm %%DATADIR%%/images/avatars -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/games -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A9339941; Fri, 10 Oct 2014 14:00:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CA44CEC; Fri, 10 Oct 2014 14:00:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0hwT091334; Fri, 10 Oct 2014 14:00:43 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0huX091332; Fri, 10 Oct 2014 14:00:43 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0huX091332@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370583 - head/games/tux-aqfh X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:43 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:42 2014 New Revision: 370583 URL: https://svnweb.freebsd.org/changeset/ports/370583 QAT: https://qat.redports.org/buildarchive/r370583/ Log: - Add LICENSE_FILE - Simplify docs installation - Drop @dirrm* from plist Modified: head/games/tux-aqfh/Makefile head/games/tux-aqfh/pkg-plist Modified: head/games/tux-aqfh/Makefile ============================================================================== --- head/games/tux-aqfh/Makefile Fri Oct 10 14:00:37 2014 (r370582) +++ head/games/tux-aqfh/Makefile Fri Oct 10 14:00:42 2014 (r370583) @@ -15,6 +15,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= Tuxedo The Penguin: A Quest for Herring LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/lib/libplibsl.a:${PORTSDIR}/x11-toolkits/plib @@ -28,13 +29,6 @@ LDFLAGS+= -L${LOCALBASE}/lib -lusbhid ${ PORTDOCS= * -DOCSRCDIR1= ${WRKSRC} -DOC_FILES1= AUTHORS CHANGES README - -DOCSRCDIR2= ${WRKSRC}/doc -DOCSDIR2= ${DOCSDIR}/doc -DOC_FILES2= *.png *.html - OPTIONS_DEFINE= DOCS DESKTOP_ENTRIES="Tuxedo The Penguin: A Quest for Herring" "" ${PORTNAME} \ @@ -55,9 +49,8 @@ post-patch: post-install: ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ - - @${MKDIR} ${STAGEDIR}${DOCSDIR2} - ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2} + cd ${WRKSRC} && ${COPYTREE_SHARE} \ + "AUTHORS CHANGES README doc/*.png doc/*.html" \ + ${STAGEDIR}${DOCSDIR} .include Modified: head/games/tux-aqfh/pkg-plist ============================================================================== --- head/games/tux-aqfh/pkg-plist Fri Oct 10 14:00:37 2014 (r370582) +++ head/games/tux-aqfh/pkg-plist Fri Oct 10 14:00:42 2014 (r370583) @@ -296,12 +296,3 @@ share/pixmaps/tux_aqfh.png %%DATADIR%%/wavs/whistle.wav %%DATADIR%%/wavs/who.wav %%DATADIR%%/wavs/who_else.wav -@dirrm %%DATADIR%%/wavs -@dirrm %%DATADIR%%/slamcode -@dirrm %%DATADIR%%/penguin -@dirrm %%DATADIR%%/mods -@dirrm %%DATADIR%%/models -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65710AE3; Fri, 10 Oct 2014 14:00:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51C9DCEE; Fri, 10 Oct 2014 14:00:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0mXS091449; Fri, 10 Oct 2014 14:00:48 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0mWI091448; Fri, 10 Oct 2014 14:00:48 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0mWI091448@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370584 - head/games/abe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:48 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:47 2014 New Revision: 370584 URL: https://svnweb.freebsd.org/changeset/ports/370584 QAT: https://qat.redports.org/buildarchive/r370584/ Log: - Drop @dirrm* from plist Modified: head/games/abe/pkg-plist Modified: head/games/abe/pkg-plist ============================================================================== --- head/games/abe/pkg-plist Fri Oct 10 14:00:42 2014 (r370583) +++ head/games/abe/pkg-plist Fri Oct 10 14:00:47 2014 (r370584) @@ -16,7 +16,3 @@ bin/abe %%DATADIR%%/sounds/pop.wav %%DATADIR%%/sounds/spring.wav share/pixmaps/abe.png -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/maps -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C8E8BBD; Fri, 10 Oct 2014 14:00:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 78789CF1; Fri, 10 Oct 2014 14:00:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0rju091584; Fri, 10 Oct 2014 14:00:53 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0rHY091582; Fri, 10 Oct 2014 14:00:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0rHY091582@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370585 - head/games/black-box X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:53 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:52 2014 New Revision: 370585 URL: https://svnweb.freebsd.org/changeset/ports/370585 QAT: https://qat.redports.org/buildarchive/r370585/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/black-box/Makefile head/games/black-box/pkg-plist Modified: head/games/black-box/Makefile ============================================================================== --- head/games/black-box/Makefile Fri Oct 10 14:00:47 2014 (r370584) +++ head/games/black-box/Makefile Fri Oct 10 14:00:52 2014 (r370585) @@ -15,7 +15,8 @@ EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Shoot in and watch where the shot leaves the box -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USE_SDL= sdl image mixer GNU_CONFIGURE= yes Modified: head/games/black-box/pkg-plist ============================================================================== --- head/games/black-box/pkg-plist Fri Oct 10 14:00:47 2014 (r370584) +++ head/games/black-box/pkg-plist Fri Oct 10 14:00:52 2014 (r370585) @@ -30,6 +30,3 @@ bin/black-box %%DATADIR%%/gfx/won.png %%DATADIR%%/sound/ein1.mod share/pixmaps/black-box.png -@dirrm %%DATADIR%%/sound -@dirrm %%DATADIR%%/gfx -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:00:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 56BDFCA4; Fri, 10 Oct 2014 14:00:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 42D45CF5; Fri, 10 Oct 2014 14:00:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AE0wf3091695; Fri, 10 Oct 2014 14:00:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AE0wFQ091694; Fri, 10 Oct 2014 14:00:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410101400.s9AE0wFQ091694@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 10 Oct 2014 14:00:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370586 - head/games/smashbattle X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:00:58 -0000 Author: amdmi3 Date: Fri Oct 10 14:00:57 2014 New Revision: 370586 URL: https://svnweb.freebsd.org/changeset/ports/370586 QAT: https://qat.redports.org/buildarchive/r370586/ Log: - Drop @dirrm* from plist Modified: head/games/smashbattle/pkg-plist Modified: head/games/smashbattle/pkg-plist ============================================================================== --- head/games/smashbattle/pkg-plist Fri Oct 10 14:00:52 2014 (r370585) +++ head/games/smashbattle/pkg-plist Fri Oct 10 14:00:57 2014 (r370586) @@ -91,8 +91,3 @@ share/pixmaps/smashbattle.png %%DATADIR%%/stage/titlescreen.lvl %%DATADIR%%/stage/trainingdojo.lvl %%DATADIR%%/stage/tryout.lvl -@dirrm %%DATADIR%%/stage -@dirrm %%DATADIR%%/sfx -@dirrm %%DATADIR%%/music -@dirrm %%DATADIR%%/gfx -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:14:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1422B2B2; Fri, 10 Oct 2014 14:14:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F3A42EA3; Fri, 10 Oct 2014 14:14:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AEEJ7J099248; Fri, 10 Oct 2014 14:14:19 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AEEJvn099246; Fri, 10 Oct 2014 14:14:19 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410101414.s9AEEJvn099246@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 10 Oct 2014 14:14:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370587 - head/cad/xcircuit X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:14:20 -0000 Author: danilo Date: Fri Oct 10 14:14:18 2014 New Revision: 370587 URL: https://svnweb.freebsd.org/changeset/ports/370587 QAT: https://qat.redports.org/buildarchive/r370587/ Log: - Update from 3.8.73 to 3.8.74 Modified: head/cad/xcircuit/Makefile head/cad/xcircuit/distinfo Modified: head/cad/xcircuit/Makefile ============================================================================== --- head/cad/xcircuit/Makefile Fri Oct 10 14:00:57 2014 (r370586) +++ head/cad/xcircuit/Makefile Fri Oct 10 14:14:18 2014 (r370587) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xcircuit -PORTVERSION= 3.8.73 +PORTVERSION= 3.8.74 PORTEPOCH= 1 CATEGORIES= cad MASTER_SITES= http://opencircuitdesign.com/xcircuit/archive/ \ Modified: head/cad/xcircuit/distinfo ============================================================================== --- head/cad/xcircuit/distinfo Fri Oct 10 14:00:57 2014 (r370586) +++ head/cad/xcircuit/distinfo Fri Oct 10 14:14:18 2014 (r370587) @@ -1,2 +1,2 @@ -SHA256 (xcircuit-3.8.73.tgz) = b93bea17ec869af58bae021cd71bca4ee7a229adaf59feee940532c216c9c320 -SIZE (xcircuit-3.8.73.tgz) = 1522639 +SHA256 (xcircuit-3.8.74.tgz) = a0fe836e45afe88042973cbe059261242d3e27ff839b91c02ef6fbce6c8298dd +SIZE (xcircuit-3.8.74.tgz) = 1522738 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:18:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C07FF635; Fri, 10 Oct 2014 14:18:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D6EEF04; Fri, 10 Oct 2014 14:18:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AEIZNE099975; Fri, 10 Oct 2014 14:18:35 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AEIZOl099974; Fri, 10 Oct 2014 14:18:35 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201410101418.s9AEIZOl099974@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Fri, 10 Oct 2014 14:18:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370588 - head/math/vtk6 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:18:36 -0000 Author: gahr Date: Fri Oct 10 14:18:34 2014 New Revision: 370588 URL: https://svnweb.freebsd.org/changeset/ports/370588 QAT: https://qat.redports.org/buildarchive/r370588/ Log: - Another take at pkg-plist Modified: head/math/vtk6/pkg-plist Modified: head/math/vtk6/pkg-plist ============================================================================== --- head/math/vtk6/pkg-plist Fri Oct 10 14:14:18 2014 (r370587) +++ head/math/vtk6/pkg-plist Fri Oct 10 14:18:34 2014 (r370588) @@ -1,5 +1,12 @@ %%DATADIR%%/vtkDomainsChemistry/COPYING %%DATADIR%%/vtkDomainsChemistry/elements.xml +%%EXAMPLES%%%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.a +%%EXAMPLES%%%%SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.so +%%EXAMPLES%%%%SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.so.1 +%%EXAMPLES%%%%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkLocalExampleHierarchy.txt +%%EXAMPLES%%include/vtk-%%VER2%%/vtkLocalExample.h +%%EXAMPLES%%include/vtk-%%VER2%%/vtkLocalExampleModule.h +%%EXAMPLES%%lib/cmake/vtk-%%VER2%%/Modules/vtkLocalExample.cmake %%JAVA%%include/vtk-%%VER2%%/vtkJavaUtil.h %%JAVA%%include/vtk-%%VER2%%/vtkWrappingJavaModule.h %%JAVA%%lib/cmake/vtk-%%VER2%%/Modules/vtkWrappingJava.cmake @@ -282,7 +289,6 @@ %%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInteractionImage-%%VER2%%.a %%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInteractionStyle-%%VER2%%.a %%NO_SHARED%%lib/vtk-%%VER2%%/libvtkInteractionWidgets-%%VER2%%.a -%%NO_SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.a %%NO_SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF-%%VER2%%.a %%NO_SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx-%%VER2%%.a %%NO_SHARED%%lib/vtk-%%VER2%%/libvtkParallelCore-%%VER2%%.a @@ -1326,8 +1332,6 @@ %%SHARED%%lib/vtk-%%VER2%%/libvtkInteractionStyle-%%VER2%%.so.1 %%SHARED%%lib/vtk-%%VER2%%/libvtkInteractionWidgets-%%VER2%%.so %%SHARED%%lib/vtk-%%VER2%%/libvtkInteractionWidgets-%%VER2%%.so.1 -%%SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.so -%%SHARED%%lib/vtk-%%VER2%%/libvtkLocalExample-%%VER2%%.so.1 %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF-%%VER2%%.so %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF-%%VER2%%.so.1 %%SHARED%%lib/vtk-%%VER2%%/libvtkNetCDF_cxx-%%VER2%%.so @@ -1610,7 +1614,6 @@ %%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkInteractionImageHierarchy.txt %%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkInteractionStyleHierarchy.txt %%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkInteractionWidgetsHierarchy.txt -%%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkLocalExampleHierarchy.txt %%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkParallelCoreHierarchy.txt %%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkRenderingAnnotationHierarchy.txt %%WRAP%%lib/cmake/vtk-%%VER2%%/Modules/vtkRenderingContext2DHierarchy.txt @@ -2752,8 +2755,6 @@ include/vtk-%%VER2%%/vtkLinearSubdivisio include/vtk-%%VER2%%/vtkLinearTransform.h include/vtk-%%VER2%%/vtkLinesPainter.h include/vtk-%%VER2%%/vtkLinkEdgels.h -include/vtk-%%VER2%%/vtkLocalExample.h -include/vtk-%%VER2%%/vtkLocalExampleModule.h include/vtk-%%VER2%%/vtkLocator.h include/vtk-%%VER2%%/vtkLogLookupTable.h include/vtk-%%VER2%%/vtkLogoRepresentation.h @@ -4140,7 +4141,6 @@ lib/cmake/vtk-%%VER2%%/Modules/vtkInfovi lib/cmake/vtk-%%VER2%%/Modules/vtkInteractionImage.cmake lib/cmake/vtk-%%VER2%%/Modules/vtkInteractionStyle.cmake lib/cmake/vtk-%%VER2%%/Modules/vtkInteractionWidgets.cmake -lib/cmake/vtk-%%VER2%%/Modules/vtkLocalExample.cmake lib/cmake/vtk-%%VER2%%/Modules/vtkMetaIO.cmake lib/cmake/vtk-%%VER2%%/Modules/vtkParallelCore.cmake lib/cmake/vtk-%%VER2%%/Modules/vtkParseOGLExt.cmake From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:38:40 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76C6AA52; Fri, 10 Oct 2014 14:38:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4862617D; Fri, 10 Oct 2014 14:38:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AEceAc009581; Fri, 10 Oct 2014 14:38:40 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AEcdau009577; Fri, 10 Oct 2014 14:38:39 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201410101438.s9AEcdau009577@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 10 Oct 2014 14:38:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370589 - in head/devel: binutils/files sparc64-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:38:40 -0000 Author: bapt Date: Fri Oct 10 14:38:39 2014 New Revision: 370589 URL: https://svnweb.freebsd.org/changeset/ports/370589 QAT: https://qat.redports.org/buildarchive/r370589/ Log: Integrate a sparc64 patch from base version of binutils Submitted by: marius Added: head/devel/binutils/files/patch-bfd_elfxx-sparc.c (contents, props changed) Modified: head/devel/sparc64-binutils/Makefile Added: head/devel/binutils/files/patch-bfd_elfxx-sparc.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/binutils/files/patch-bfd_elfxx-sparc.c Fri Oct 10 14:38:39 2014 (r370589) @@ -0,0 +1,26 @@ +--- bfd/elfxx-sparc.c.orig 2013-11-08 11:13:48.000000000 +0100 ++++ bfd/elfxx-sparc.c 2014-10-10 16:30:23.316125000 +0200 +@@ -2942,12 +2942,14 @@ + Elf_Internal_Rela *relend; + int num_relocs; + bfd_boolean is_vxworks_tls; ++ const struct elf_backend_data *bed; + + htab = _bfd_sparc_elf_hash_table (info); + BFD_ASSERT (htab != NULL); + symtab_hdr = &elf_symtab_hdr (input_bfd); + sym_hashes = elf_sym_hashes (input_bfd); + local_got_offsets = elf_local_got_offsets (input_bfd); ++ bed = get_elf_backend_data (output_bfd); + + if (elf_hash_table (info)->hgot == NULL) + got_base = 0; +@@ -3528,6 +3530,8 @@ + bfd_set_error (bfd_error_bad_value); + return FALSE; + } ++ if (bed->elf_osabi == ELFOSABI_FREEBSD) ++ outrel.r_addend -= osec->vma; + } + + outrel.r_info = SPARC_ELF_R_INFO (htab, rel, indx, Modified: head/devel/sparc64-binutils/Makefile ============================================================================== --- head/devel/sparc64-binutils/Makefile Fri Oct 10 14:18:34 2014 (r370588) +++ head/devel/sparc64-binutils/Makefile Fri Oct 10 14:38:39 2014 (r370589) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= GNU binutils for sparc64 cross-development PKGNAMEPREFIX= sparc64- PLIST= ${.CURDIR}/pkg-plist From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:48:05 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2199DDF; Fri, 10 Oct 2014 14:48:05 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8DDC5273; Fri, 10 Oct 2014 14:48:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AEm5PO014411; Fri, 10 Oct 2014 14:48:05 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AEm5ju014409; Fri, 10 Oct 2014 14:48:05 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410101448.s9AEm5ju014409@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 10 Oct 2014 14:48:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370590 - head/ftp/bftpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:48:05 -0000 Author: danilo Date: Fri Oct 10 14:48:04 2014 New Revision: 370590 URL: https://svnweb.freebsd.org/changeset/ports/370590 QAT: https://qat.redports.org/buildarchive/r370590/ Log: - Update from 4.3 to 4.4 - Take maintainership Modified: head/ftp/bftpd/Makefile head/ftp/bftpd/distinfo Modified: head/ftp/bftpd/Makefile ============================================================================== --- head/ftp/bftpd/Makefile Fri Oct 10 14:38:39 2014 (r370589) +++ head/ftp/bftpd/Makefile Fri Oct 10 14:48:04 2014 (r370590) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= bftpd -PORTVERSION= 4.3 +PORTVERSION= 4.4 CATEGORIES= ftp MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= danilo@FreeBSD.org COMMENT= Very configurable FTP server that can do chroot easily LICENSE= GPLv2 Modified: head/ftp/bftpd/distinfo ============================================================================== --- head/ftp/bftpd/distinfo Fri Oct 10 14:38:39 2014 (r370589) +++ head/ftp/bftpd/distinfo Fri Oct 10 14:48:04 2014 (r370590) @@ -1,2 +1,2 @@ -SHA256 (bftpd-4.3.tar.gz) = e0ffb2f86bb1e3092802bd76d37cf28fca3a98375e0f6f77f05573ca115eadd7 -SIZE (bftpd-4.3.tar.gz) = 164854 +SHA256 (bftpd-4.4.tar.gz) = b805ebbdd3de993ca14d733ad9ad007ac342a1646b257d91a53ec87a36c7f741 +SIZE (bftpd-4.4.tar.gz) = 164940 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 14:56:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4770E472; Fri, 10 Oct 2014 14:56:52 +0000 (UTC) Received: from mail-yh0-x22c.google.com (mail-yh0-x22c.google.com [IPv6:2607:f8b0:4002:c01::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D27273DE; Fri, 10 Oct 2014 14:56:51 +0000 (UTC) Received: by mail-yh0-f44.google.com with SMTP id i57so1819990yha.3 for ; Fri, 10 Oct 2014 07:56:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=ANWrl+NZzQLe+4u306i5wSeKsfr4yNCQ1V2asHlxXAk=; b=WaNa1/sE5wqb4REVkIEWtl0m2IC4q7mEBzk4h0+hQSSv+j6VJK8A8xXM0yim1+mfCA UYrLdhBHQgLv37nhP54MngmsAGiIj0ebdkuRptrBywfD5J55v09YtyIN1vG3BUnFD488 k4l0b6cAsewLeLoZESSdsqhtjiycaJUMsZ3yaaP+bJG+H7dx3mIL+Ddp9xw6Aeikrqbm S2WAlPoA8G45PVnKtBG+Q2sEdy7dovI9WkHtNEITbTHhPDo69oRU67B6Hl2Pb2+oPmZy RXE2f7faRX6zfSraTqz/FUzyRNrYGSZH8WH2wWpiNTv6CxCV3upunooA2vknrIwHUOnq sKYg== MIME-Version: 1.0 X-Received: by 10.236.172.161 with SMTP id t21mr8303309yhl.65.1412953010873; Fri, 10 Oct 2014 07:56:50 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.207.73 with HTTP; Fri, 10 Oct 2014 07:56:50 -0700 (PDT) In-Reply-To: <201410091318.s99DISxR078486@svn.freebsd.org> References: <201410091318.s99DISxR078486@svn.freebsd.org> Date: Fri, 10 Oct 2014 14:56:50 +0000 X-Google-Sender-Auth: nmTUHzNpu5V4HkXHpWLMKcNkVjU Message-ID: Subject: Re: svn commit: r370526 - head/security/cyrus-sasl2-gssapi From: Antoine Brodin To: Hajimu UMEMOTO Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 14:56:52 -0000 On Thu, Oct 9, 2014 at 1:18 PM, Hajimu UMEMOTO wrote: > Author: ume > Date: Thu Oct 9 13:18:28 2014 > New Revision: 370526 > URL: https://svnweb.freebsd.org/changeset/ports/370526 > QAT: https://qat.redports.org/buildarchive/r370526/ > > Log: > Include RPATH in the libs, again. > It seems that USES=libtool doesn't rewrite ${LIBTOOL} in > a configure script to use ${LOCALBASE}/bin/libtool like > bsd.autotools.mk did. > So, rewrite it explicitly for workaround. > > PR: 194176 > Submitted by: jhujhiti__at__adjectivism.org > > Modified: > head/security/cyrus-sasl2-gssapi/Makefile Hi, This fails to build. Cheers, Antoine > > Modified: head/security/cyrus-sasl2-gssapi/Makefile > ============================================================================== > --- head/security/cyrus-sasl2-gssapi/Makefile Thu Oct 9 13:17:26 2014 (r370525) > +++ head/security/cyrus-sasl2-gssapi/Makefile Thu Oct 9 13:18:28 2014 (r370526) > @@ -2,7 +2,7 @@ > > PORTNAME= gssapi > PORTVERSION= 2.1.26 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= security ipv6 > MASTER_SITES= ftp://ftp.cyrusimap.org/cyrus-sasl/ \ > http://cyrusimap.org/releases/ > @@ -89,6 +89,13 @@ CONFIGURE_ARGS+=--with-openssl=yes > CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} > .endif > > +LIBTOOL= ${LOCALBASE}/bin/libtool > + > +post-patch: > + @${REINPLACE_CMD} \ > + -e "/^LIBTOOL=/s|\$$(top_builddir)/libtool|${LIBTOOL}|g" \ > + ${WRKSRC}/configure > + > do-build: > cd ${WRKSRC}/include && ${MAKE} > cd ${WRKSRC}/plugins && ${MAKE} > From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 15:17:48 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C93C9BD4; Fri, 10 Oct 2014 15:17:48 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9A379819; Fri, 10 Oct 2014 15:17:48 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AFHmfh028664; Fri, 10 Oct 2014 15:17:48 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AFHlBw028661; Fri, 10 Oct 2014 15:17:47 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201410101517.s9AFHlBw028661@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Fri, 10 Oct 2014 15:17:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370591 - head/german/mediathek X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 15:17:48 -0000 Author: lme Date: Fri Oct 10 15:17:47 2014 New Revision: 370591 URL: https://svnweb.freebsd.org/changeset/ports/370591 QAT: https://qat.redports.org/buildarchive/r370591/ Log: Update to 8 Modified: head/german/mediathek/Makefile head/german/mediathek/distinfo head/german/mediathek/pkg-plist Modified: head/german/mediathek/Makefile ============================================================================== --- head/german/mediathek/Makefile Fri Oct 10 14:48:04 2014 (r370590) +++ head/german/mediathek/Makefile Fri Oct 10 15:17:47 2014 (r370591) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mediathek -PORTVERSION= 7 +PORTVERSION= 8 CATEGORIES= german java MASTER_SITES= SF/zdfmediathk/Mediathek/Mediathek%20${PORTVERSION} DISTNAME= MediathekView_${PORTVERSION} Modified: head/german/mediathek/distinfo ============================================================================== --- head/german/mediathek/distinfo Fri Oct 10 14:48:04 2014 (r370590) +++ head/german/mediathek/distinfo Fri Oct 10 15:17:47 2014 (r370591) @@ -1,2 +1,2 @@ -SHA256 (MediathekView_7.zip) = f22ecb80d80421b73a7e7e954ec016cd18f31c00b78460c40f4fb971ff5d06b2 -SIZE (MediathekView_7.zip) = 30755210 +SHA256 (MediathekView_8.zip) = 494a571199bf92cc8f4e800f70e9e31e6cf9b14f640ac4bd8c9e19f8d1fcf4e9 +SIZE (MediathekView_8.zip) = 31470563 Modified: head/german/mediathek/pkg-plist ============================================================================== --- head/german/mediathek/pkg-plist Fri Oct 10 14:48:04 2014 (r370590) +++ head/german/mediathek/pkg-plist Fri Oct 10 15:17:47 2014 (r370591) @@ -4,20 +4,19 @@ bin/mediathek %%DATADIR%%/MediathekView.ico %%DATADIR%%/MediathekView.jar %%DATADIR%%/lib/MSearch.jar -%%DATADIR%%/lib/commons-compress-1.6.jar -%%DATADIR%%/lib/commons-lang3-3.1.jar -%%DATADIR%%/lib/jackson-core-2.2.3.jar -%%DATADIR%%/lib/jgoodies-common-1.6.0.jar -%%DATADIR%%/lib/jgoodies-forms-1.7.1.jar -%%DATADIR%%/lib/jide-oss-3.5.9.jar +%%DATADIR%%/lib/commons-compress-1.8.1.jar +%%DATADIR%%/lib/commons-lang3-3.3.2.jar +%%DATADIR%%/lib/jackson-core-2.4.1.jar +%%DATADIR%%/lib/jchart2d-3.2.2.jar +%%DATADIR%%/lib/jgoodies-common-1.8.0.jar +%%DATADIR%%/lib/jgoodies-forms-1.8.0.jar +%%DATADIR%%/lib/jide-oss-3.6.1.jar %%DATADIR%%/lib/swingx-action-1.6.5-1.jar %%DATADIR%%/lib/swingx-all-1.6.5-1.jar -%%DATADIR%%/lib/swingx-autocomplete-1.6.5-1.jar %%DATADIR%%/lib/swingx-beaninfo-1.6.5-1.jar %%DATADIR%%/lib/swingx-common-1.6.5-1.jar %%DATADIR%%/lib/swingx-core-1.6.5-1.jar %%DATADIR%%/lib/swingx-graphics-1.6.5-1.jar -%%DATADIR%%/lib/swingx-mavensupport-1.6.5-1.jar %%DATADIR%%/lib/swingx-painters-1.6.5-1.jar %%DATADIR%%/lib/swingx-plaf-1.6.5-1.jar %%DATADIR%%/lib/xz.jar From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 15:58:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4068052C; Fri, 10 Oct 2014 15:58:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2109AC50; Fri, 10 Oct 2014 15:58:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AFw797047353; Fri, 10 Oct 2014 15:58:07 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AFw6xU047346; Fri, 10 Oct 2014 15:58:06 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410101558.s9AFw6xU047346@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 10 Oct 2014 15:58:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370592 - head/math/ess X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 15:58:07 -0000 Author: danilo Date: Fri Oct 10 15:58:05 2014 New Revision: 370592 URL: https://svnweb.freebsd.org/changeset/ports/370592 QAT: https://qat.redports.org/buildarchive/r370592/ Log: - Update from 13.09-1 to 14.09 [1] - Use options helpers PR: 194281 Submitted by: cjr@cruwe.de (maintainer) [1] Modified: head/math/ess/Makefile head/math/ess/distinfo head/math/ess/pkg-plist Modified: head/math/ess/Makefile ============================================================================== --- head/math/ess/Makefile Fri Oct 10 15:17:47 2014 (r370591) +++ head/math/ess/Makefile Fri Oct 10 15:58:05 2014 (r370592) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ess -DISTVERSION= 13.09-1 -PORTREVISION= 5 +DISTVERSION= 14.09 CATEGORIES= math MASTER_SITES= http://ess.r-project.org/downloads/ess/ EXTRACT_SUFX= .tgz @@ -20,12 +19,10 @@ USES= gmake OPTIONS_DEFINE= DOCS -.include +DOCS_USES= makeinfo +DOCS_INFO= ess -.if ${PORT_OPTIONS:MDOCS} -USES+= makeinfo -INFO= ess -.endif +.include #attention, dirty hack: because 'ETCDIR =' is typed _with_ trailing #space in Makefile, $STAGEDIR append fails without the additional @@ -45,8 +42,8 @@ post-patch: .SILENT ${REINPLACE_CMD} -e "s|\$$(INSTALL)|${INSTALL_SCRIPT}|g" \ ${WRKSRC}/lisp/Makefile -.if ${PORT_OPTIONS:MDOCS} post-build: +.if ${PORT_OPTIONS:MDOCS} @(cd ${WRKSRC}/doc; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${_MAKE_JOBS} \ ${MAKE_ARGS} info) .endif Modified: head/math/ess/distinfo ============================================================================== --- head/math/ess/distinfo Fri Oct 10 15:17:47 2014 (r370591) +++ head/math/ess/distinfo Fri Oct 10 15:58:05 2014 (r370592) @@ -1,2 +1,2 @@ -SHA256 (ess-13.09-1.tgz) = 3ad92bc0235329dae5236a674a7048bf4afab2b2894356ffb43a363fe0944113 -SIZE (ess-13.09-1.tgz) = 3331643 +SHA256 (ess-14.09.tgz) = b6f1badd065e2e42f1d9d75a4e7a04290849d6f7a2bdb8413f73e0eae4014571 +SIZE (ess-14.09.tgz) = 3350987 Modified: head/math/ess/pkg-plist ============================================================================== --- head/math/ess/pkg-plist Fri Oct 10 15:17:47 2014 (r370591) +++ head/math/ess/pkg-plist Fri Oct 10 15:58:05 2014 (r370592) @@ -1,30 +1,30 @@ -%%EMACS_LIBDIR%%/etc/ess/ESSR/LOADREMOTE -%%EMACS_LIBDIR%%/etc/ess/ESSR/R/.basic.R -%%EMACS_LIBDIR%%/etc/ess/ESSR/R/.load.R -%%EMACS_LIBDIR%%/etc/ess/ESSR/R/completion.R -%%EMACS_LIBDIR%%/etc/ess/ESSR/R/debug.R -%%EMACS_LIBDIR%%/etc/ess/ESSR/R/developer.R -%%EMACS_LIBDIR%%/etc/ess/ESSR/R/misc.R -%%EMACS_LIBDIR%%/etc/ess/ESSR/VERSION -%%EMACS_LIBDIR%%/etc/ess/SVN-REVISION -%%EMACS_LIBDIR%%/etc/ess/ess-s4.S -%%EMACS_LIBDIR%%/etc/ess/ess-sas-sh-command -%%EMACS_LIBDIR%%/etc/ess/ess-sp3.S -%%EMACS_LIBDIR%%/etc/ess/function-outline.S -%%EMACS_LIBDIR%%/etc/ess/icons/rbuffer.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/rfunction.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/rline.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/rregion.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/splus_letter_small.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/splus_letters_large.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/spluslogo.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/startr.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/switch_ess.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/switchr.xpm -%%EMACS_LIBDIR%%/etc/ess/icons/switchs.xpm -%%EMACS_LIBDIR%%/etc/ess/sas-keys.doc -%%EMACS_LIBDIR%%/etc/ess/sas-keys.ps -%%EMACS_LIBDIR%%/etc/ess/sas-keys.rtf +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/LOADREMOTE +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R/.basic.R +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R/.load.R +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R/completion.R +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R/debug.R +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R/developer.R +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R/misc.R +%%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/VERSION +%%EMACS_LIBDIR%%/%%ETCDIR%%/SVN-REVISION +%%EMACS_LIBDIR%%/%%ETCDIR%%/ess-s4.S +%%EMACS_LIBDIR%%/%%ETCDIR%%/ess-sas-sh-command +%%EMACS_LIBDIR%%/%%ETCDIR%%/ess-sp3.S +%%EMACS_LIBDIR%%/%%ETCDIR%%/function-outline.S +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/rbuffer.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/rfunction.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/rline.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/rregion.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/splus_letter_small.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/splus_letters_large.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/spluslogo.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/startr.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/switch_ess.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/switchr.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/icons/switchs.xpm +%%EMACS_LIBDIR%%/%%ETCDIR%%/sas-keys.doc +%%EMACS_LIBDIR%%/%%ETCDIR%%/sas-keys.ps +%%EMACS_LIBDIR%%/%%ETCDIR%%/sas-keys.rtf %%EMACS_SITE_LISPDIR%%/ChangeLog %%EMACS_SITE_LISPDIR%%/ess-arc-d.el %%EMACS_SITE_LISPDIR%%/ess-arc-d.elc @@ -138,3 +138,8 @@ %%EMACS_SITE_LISPDIR%%/mouseme.elc %%EMACS_SITE_LISPDIR%%/msdos.el %%EMACS_SITE_LISPDIR%%/msdos.elc +@dirrmtry %%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR/R +@dirrmtry %%EMACS_LIBDIR%%/%%ETCDIR%%/ESSR +@dirrmtry %%EMACS_LIBDIR%%/%%ETCDIR%%/icons +@dirrmtry %%EMACS_LIBDIR%%/%%ETCDIR%% +@dirrmtry %%EMACS_LIBDIR%%/etc From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 15:59:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 329FA89A; Fri, 10 Oct 2014 15:59:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EC9AC7B; Fri, 10 Oct 2014 15:59:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AFxukM047668; Fri, 10 Oct 2014 15:59:56 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AFxu7J047666; Fri, 10 Oct 2014 15:59:56 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410101559.s9AFxu7J047666@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 10 Oct 2014 15:59:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370593 - head/graphics/imageindex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 15:59:57 -0000 Author: danilo Date: Fri Oct 10 15:59:56 2014 New Revision: 370593 URL: https://svnweb.freebsd.org/changeset/ports/370593 QAT: https://qat.redports.org/buildarchive/r370593/ Log: - Update from 1.1 to 2.0 PR: 194260 Submitted by: johnjen@reynoldsnet.org (maintainer) Modified: head/graphics/imageindex/Makefile head/graphics/imageindex/distinfo Modified: head/graphics/imageindex/Makefile ============================================================================== --- head/graphics/imageindex/Makefile Fri Oct 10 15:58:05 2014 (r370592) +++ head/graphics/imageindex/Makefile Fri Oct 10 15:59:56 2014 (r370593) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= imageindex -PORTVERSION= 1.1 -PORTREVISION= 6 +PORTVERSION= 2.0 CATEGORIES= graphics MASTER_SITES= http://www.edwinh.org/imageindex/release/ \ http://www.reynoldsnet.org/imageindex/release/ Modified: head/graphics/imageindex/distinfo ============================================================================== --- head/graphics/imageindex/distinfo Fri Oct 10 15:58:05 2014 (r370592) +++ head/graphics/imageindex/distinfo Fri Oct 10 15:59:56 2014 (r370593) @@ -1,2 +1,2 @@ -SHA256 (imageindex-1.1.tar.gz) = 78f3d92a334e9b8a970cb07a452eb19485f3971485a3c400b4a680007964f66c -SIZE (imageindex-1.1.tar.gz) = 58073 +SHA256 (imageindex-2.0.tar.gz) = 823514235175d212ffda44bcbe5f348670ac7278cd8b4bf94ddbfafc5dcdcab9 +SIZE (imageindex-2.0.tar.gz) = 54213 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:01:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C588B99C; Fri, 10 Oct 2014 16:01:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9917AD19; Fri, 10 Oct 2014 16:01:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AG14sN049211; Fri, 10 Oct 2014 16:01:04 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AG13FQ049206; Fri, 10 Oct 2014 16:01:03 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201410101601.s9AG13FQ049206@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 10 Oct 2014 16:01:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370594 - head/net/yaz X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:01:04 -0000 Author: pawel Date: Fri Oct 10 16:01:03 2014 New Revision: 370594 URL: https://svnweb.freebsd.org/changeset/ports/370594 QAT: https://qat.redports.org/buildarchive/r370594/ Log: - Update to version 5.4.3 - Clean pkg-plist Modified: head/net/yaz/Makefile head/net/yaz/distinfo head/net/yaz/pkg-plist Modified: head/net/yaz/Makefile ============================================================================== --- head/net/yaz/Makefile Fri Oct 10 15:59:56 2014 (r370593) +++ head/net/yaz/Makefile Fri Oct 10 16:01:03 2014 (r370594) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= yaz -PORTVERSION= 5.4.2 +PORTVERSION= 5.4.3 CATEGORIES= net MASTER_SITES= http://ftp.indexdata.dk/pub/yaz/ @@ -41,7 +41,7 @@ REDIS_LDFLAGS= -L${LOCALBASE}/lib post-patch: @${REINPLACE_CMD} 's|tclsh |tclsh8.6 |' ${WRKSRC}/configure - + post-configure: @${REINPLACE_CMD} -e 's,[$$]{datarootdir}/man,${PREFIX}/man,' \ ${WRKSRC}/doc/Makefile Modified: head/net/yaz/distinfo ============================================================================== --- head/net/yaz/distinfo Fri Oct 10 15:59:56 2014 (r370593) +++ head/net/yaz/distinfo Fri Oct 10 16:01:03 2014 (r370594) @@ -1,2 +1,2 @@ -SHA256 (yaz-5.4.2.tar.gz) = 63cddb12e3328382adfd92fe93d2fdbffb89ba6467d4527f328352b0e7a8597e -SIZE (yaz-5.4.2.tar.gz) = 2526056 +SHA256 (yaz-5.4.3.tar.gz) = 8508a9c92669e51f1a358d9fa06b06f2e426c681c2d2256b233ec8122ce570dd +SIZE (yaz-5.4.3.tar.gz) = 2527707 Modified: head/net/yaz/pkg-plist ============================================================================== --- head/net/yaz/pkg-plist Fri Oct 10 15:59:56 2014 (r370593) +++ head/net/yaz/pkg-plist Fri Oct 10 16:01:03 2014 (r370594) @@ -172,8 +172,3 @@ share/aclocal/yaz.m4 %%DATADIR%%/z39.50/univres.asn %%DATADIR%%/z39.50/z.tcl %%DATADIR%%/z39.50/z3950v3.asn -@dirrm %%DATADIR%%/z39.50 -@dirrm %%DATADIR%%/ill -@dirrm %%DATADIR%%/etc -@dirrm %%DATADIR%% -@dirrm include/yaz From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:01:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F75CA81; Fri, 10 Oct 2014 16:01:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31A1DD1F; Fri, 10 Oct 2014 16:01:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AG1PpJ049577; Fri, 10 Oct 2014 16:01:25 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AG1Oni049530; Fri, 10 Oct 2014 16:01:24 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201410101601.s9AG1Oni049530@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Fri, 10 Oct 2014 16:01:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370595 - head/www/drush X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:01:25 -0000 Author: danilo Date: Fri Oct 10 16:01:23 2014 New Revision: 370595 URL: https://svnweb.freebsd.org/changeset/ports/370595 QAT: https://qat.redports.org/buildarchive/r370595/ Log: - Update from 6.2.0 to 6.4.0 PR: 194254 Submitted by: dgeo@centrale-marseille.fr (maintainer) Modified: head/www/drush/Makefile head/www/drush/distinfo head/www/drush/pkg-plist Modified: head/www/drush/Makefile ============================================================================== --- head/www/drush/Makefile Fri Oct 10 16:01:03 2014 (r370594) +++ head/www/drush/Makefile Fri Oct 10 16:01:23 2014 (r370595) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drush -PORTVERSION= 6.2.0 +PORTVERSION= 6.4.0 CATEGORIES= www MAINTAINER= dgeo@centrale-marseille.fr @@ -17,7 +17,7 @@ NO_BUILD= yes GH_ACCOUNT= ${PORTNAME}-ops GH_PROJECT= ${PORTNAME} GH_TAGNAME= ${PORTVERSION} -GH_COMMIT= b1a8edb +GH_COMMIT= fd4baef USE_GITHUB= yes # set php requirements same as drupal itself @@ -25,13 +25,10 @@ USE_PHP= gd pcre session mbstring ctype WANT_PHP_CLI= yes PORTDOCS= * - PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES -.include - do-configure: @${REINPLACE_CMD} -e 's|XXXDATADIRXXX|${STAGEDIR}${DATADIR}|g' ${WRKSRC}/drush @@ -44,13 +41,9 @@ do-install: ${LN} -s ${DATADIR}/drush ${STAGEDIR}${PREFIX}/bin/drush post-install: -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${STAGEDIR}${DOCSDIR} - ( cd ${WRKSRC} && ${INSTALL_MAN} *.md docs/* ${STAGEDIR}${DOCSDIR} ) -.endif -.if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - ( cd ${WRKSRC} && ${INSTALL_MAN} examples/* ${STAGEDIR}${EXAMPLESDIR} ) -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ( cd ${WRKSRC} && ${INSTALL_MAN} *.md docs/* ${STAGEDIR}${DOCSDIR} ) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ( cd ${WRKSRC} && ${INSTALL_MAN} examples/* ${STAGEDIR}${EXAMPLESDIR} ) .include Modified: head/www/drush/distinfo ============================================================================== --- head/www/drush/distinfo Fri Oct 10 16:01:03 2014 (r370594) +++ head/www/drush/distinfo Fri Oct 10 16:01:23 2014 (r370595) @@ -1,2 +1,2 @@ -SHA256 (drush-6.2.0.tar.gz) = 236b2365dce7490e4ee87f6d3ce82da01d0d2ad25c0e936a960a22cd2b72616b -SIZE (drush-6.2.0.tar.gz) = 504555 +SHA256 (drush-6.4.0.tar.gz) = ee48d3c6d17db9bf09b0d475213b89826f6daaa9ba7781fca510238b99089026 +SIZE (drush-6.4.0.tar.gz) = 508662 Modified: head/www/drush/pkg-plist ============================================================================== --- head/www/drush/pkg-plist Fri Oct 10 16:01:03 2014 (r370594) +++ head/www/drush/pkg-plist Fri Oct 10 16:01:23 2014 (r370595) @@ -215,6 +215,7 @@ bin/drush %%DATADIR%%/commands/core/docs.drush.inc %%DATADIR%%/commands/core/core.drush.inc %%DATADIR%%/commands/core/cache.drush.inc +%%DATADIR%%/commands/core/browse.drush.inc %%DATADIR%%/commands/core/archive.drush.inc %%DATADIR%%/classes/DrushRole.php @dirrmtry %%DATADIR%%/tests/resources From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:15:39 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B17DCF5E; Fri, 10 Oct 2014 16:15:39 +0000 (UTC) Received: from mail.mahoroba.org (ent.mahoroba.org [IPv6:2001:2f0:104:8010::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "asuka.mahoroba.org", Issuer "ca.mahoroba.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 58104E83; Fri, 10 Oct 2014 16:15:39 +0000 (UTC) Received: from yuga.mahoroba.org (ume@yuga-m.mahoroba.org [IPv6:2001:2f0:104:8016:7258:12ff:fe22:d94b]) (user=ume mech=DIGEST-MD5 bits=0) by mail.mahoroba.org (8.14.9/8.14.9) with ESMTP/inet6 id s9AGFP8O004017 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Sat, 11 Oct 2014 01:15:30 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sat, 11 Oct 2014 01:15:18 +0900 Message-ID: From: Hajimu UMEMOTO To: Antoine Brodin Subject: Re: svn commit: r370526 - head/security/cyrus-sasl2-gssapi In-Reply-To: References: <201410091318.s99DISxR078486@svn.freebsd.org> User-Agent: xcite1.60> Wanderlust/2.15.9 (Almost Unreal) Emacs/24.3 Mule/6.0 (HANACHIRUSATO) X-Operating-System: FreeBSD 9.3-STABLE X-PGP-Key: http://www.mahoroba.org/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sat, 11 Oct 2014 01:15:30 +0900 (JST) X-Virus-Scanned: clamav-milter 0.98.4 at asuka.mahoroba.org X-Virus-Status: Clean X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RP_MATCHES_RCVD autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on asuka.mahoroba.org Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:15:39 -0000 Hi, >>>>> On Fri, 10 Oct 2014 14:56:50 +0000 >>>>> Antoine Brodin said: antoine> This fails to build. It could build without any problem here. How does it fail? Could you show me the log? Sincerely, -- Hajimu UMEMOTO ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.mahoroba.org/~ume/ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:18:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E019116; Fri, 10 Oct 2014 16:18:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19E00EB5; Fri, 10 Oct 2014 16:18:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AGIrS2057476; Fri, 10 Oct 2014 16:18:53 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AGIrlP057474; Fri, 10 Oct 2014 16:18:53 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201410101618.s9AGIrlP057474@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 10 Oct 2014 16:18:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370596 - head/multimedia/py-soco X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:18:54 -0000 Author: pawel Date: Fri Oct 10 16:18:53 2014 New Revision: 370596 URL: https://svnweb.freebsd.org/changeset/ports/370596 QAT: https://qat.redports.org/buildarchive/r370596/ Log: - Update to version 0.8 [1] - While here convert to USES=python PR: 193814 [1] Submitted by: maintainer Modified: head/multimedia/py-soco/Makefile head/multimedia/py-soco/distinfo Modified: head/multimedia/py-soco/Makefile ============================================================================== --- head/multimedia/py-soco/Makefile Fri Oct 10 16:01:23 2014 (r370595) +++ head/multimedia/py-soco/Makefile Fri Oct 10 16:18:53 2014 (r370596) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= soco -PORTVERSION= 0.6 +PORTVERSION= 0.8 CATEGORIES= multimedia python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,10 +16,9 @@ USE_GITHUB= yes GH_ACCOUNT= SoCo GH_PROJECT= SoCo GH_TAGNAME= v${PORTVERSION} -GH_COMMIT= 6640f85 +GH_COMMIT= 01bfc79 -USE_PYTHON= 2 -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python:2 +USE_PYTHON= autoplist distutils .include Modified: head/multimedia/py-soco/distinfo ============================================================================== --- head/multimedia/py-soco/distinfo Fri Oct 10 16:01:23 2014 (r370595) +++ head/multimedia/py-soco/distinfo Fri Oct 10 16:18:53 2014 (r370596) @@ -1,2 +1,2 @@ -SHA256 (soco-0.6.tar.gz) = bf70457610ce7483539d1d4a26949c9ba125c4b0a08e7195559b88369f5be21f -SIZE (soco-0.6.tar.gz) = 429086 +SHA256 (soco-0.8.tar.gz) = e4238edaba2ed93f8541610f932c2ccdd33a93a5158214b5545a3a1efa5b77bb +SIZE (soco-0.8.tar.gz) = 564640 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:24:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95D0B2B6; Fri, 10 Oct 2014 16:24:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 765CBF86; Fri, 10 Oct 2014 16:24:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AGO3oA061740; Fri, 10 Oct 2014 16:24:03 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AGO1sD061731; Fri, 10 Oct 2014 16:24:01 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201410101624.s9AGO1sD061731@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Fri, 10 Oct 2014 16:24:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370597 - in head: editors/scite editors/scite/files x11-toolkits/scintilla x11-toolkits/scintilla/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:24:03 -0000 Author: madpilot Date: Fri Oct 10 16:24:00 2014 New Revision: 370597 URL: https://svnweb.freebsd.org/changeset/ports/370597 QAT: https://qat.redports.org/buildarchive/r370597/ Log: - Update scintilla and scite to 3.5.1 - Remove dirrms PR: 193781 Submitted by: Naram Qashat (maintainer) Modified: head/editors/scite/Makefile head/editors/scite/distinfo head/editors/scite/files/patch-makefile head/editors/scite/pkg-plist head/x11-toolkits/scintilla/Makefile head/x11-toolkits/scintilla/distinfo head/x11-toolkits/scintilla/files/patch-makefile head/x11-toolkits/scintilla/pkg-plist Modified: head/editors/scite/Makefile ============================================================================== --- head/editors/scite/Makefile Fri Oct 10 16:18:53 2014 (r370596) +++ head/editors/scite/Makefile Fri Oct 10 16:24:00 2014 (r370597) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= scite -PORTVERSION= 3.4.4 +PORTVERSION= 3.5.1 CATEGORIES= editors gnome MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g} Modified: head/editors/scite/distinfo ============================================================================== --- head/editors/scite/distinfo Fri Oct 10 16:18:53 2014 (r370596) +++ head/editors/scite/distinfo Fri Oct 10 16:24:00 2014 (r370597) @@ -1,2 +1,2 @@ -SHA256 (scite344.tgz) = 89602ea4c245928caac07bc5192d57f98b968e578efaf0748e3dd832a724c499 -SIZE (scite344.tgz) = 2245870 +SHA256 (scite351.tgz) = a068dce0d7bf4a42dd30adfc997acb62724cc7f1b393ece5fe2ef46eaf6de581 +SIZE (scite351.tgz) = 2272014 Modified: head/editors/scite/files/patch-makefile ============================================================================== --- head/editors/scite/files/patch-makefile Fri Oct 10 16:18:53 2014 (r370596) +++ head/editors/scite/files/patch-makefile Fri Oct 10 16:24:00 2014 (r370597) @@ -1,5 +1,5 @@ ---- ./makefile.orig 2014-07-25 07:00:13.000000000 -0400 -+++ ./makefile 2014-08-07 21:57:08.000000000 -0400 +--- makefile.orig 2014-08-09 23:52:11 UTC ++++ makefile @@ -5,14 +5,6 @@ # GNU make does not like \r\n line endings so should be saved to CVS in binary form. @@ -9,7 +9,7 @@ -# thread also need to create Position Independent Executable -> search online documentation -SANITIZE = address -#SANITIZE = undefined --CXX = clang++ -fsanitize=$(SANITIZE) --std=c++0x +-CXX = clang++ -fsanitize=$(SANITIZE) --std=c++0x -Wno-deprecated-register -CC = clang -fsanitize=$(SANITIZE) -Wno-empty-body -endif Modified: head/editors/scite/pkg-plist ============================================================================== --- head/editors/scite/pkg-plist Fri Oct 10 16:18:53 2014 (r370596) +++ head/editors/scite/pkg-plist Fri Oct 10 16:24:00 2014 (r370597) @@ -63,6 +63,7 @@ share/pixmaps/Sci48M.png %%DATADIR%%/python.properties %%DATADIR%%/r.properties %%DATADIR%%/rebol.properties +%%DATADIR%%/registry.properties %%DATADIR%%/ruby.properties %%DATADIR%%/rust.properties %%DATADIR%%/scriptol.properties @@ -80,4 +81,3 @@ share/pixmaps/Sci48M.png %%DATADIR%%/verilog.properties %%DATADIR%%/vhdl.properties %%DATADIR%%/yaml.properties -@dirrm %%DATADIR%% Modified: head/x11-toolkits/scintilla/Makefile ============================================================================== --- head/x11-toolkits/scintilla/Makefile Fri Oct 10 16:18:53 2014 (r370596) +++ head/x11-toolkits/scintilla/Makefile Fri Oct 10 16:24:00 2014 (r370597) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= scintilla -PORTVERSION= 3.4.4 +PORTVERSION= 3.5.1 CATEGORIES= x11-toolkits MASTER_SITES= SF/scintilla/SciTE/${PORTVERSION} DISTNAME= scite${PORTVERSION:S/.//g} Modified: head/x11-toolkits/scintilla/distinfo ============================================================================== --- head/x11-toolkits/scintilla/distinfo Fri Oct 10 16:18:53 2014 (r370596) +++ head/x11-toolkits/scintilla/distinfo Fri Oct 10 16:24:00 2014 (r370597) @@ -1,2 +1,2 @@ -SHA256 (scite344.tgz) = 89602ea4c245928caac07bc5192d57f98b968e578efaf0748e3dd832a724c499 -SIZE (scite344.tgz) = 2245870 +SHA256 (scite351.tgz) = a068dce0d7bf4a42dd30adfc997acb62724cc7f1b393ece5fe2ef46eaf6de581 +SIZE (scite351.tgz) = 2272014 Modified: head/x11-toolkits/scintilla/files/patch-makefile ============================================================================== --- head/x11-toolkits/scintilla/files/patch-makefile Fri Oct 10 16:18:53 2014 (r370596) +++ head/x11-toolkits/scintilla/files/patch-makefile Fri Oct 10 16:24:00 2014 (r370597) @@ -1,11 +1,11 @@ ---- ./makefile.orig 2014-07-25 06:59:40.000000000 -0400 -+++ ./makefile 2014-08-07 08:31:47.000000000 -0400 +--- makefile.orig 2014-08-09 23:52:02 UTC ++++ makefile @@ -7,14 +7,6 @@ # Also works with ming32-make on Windows. .SUFFIXES: .cxx .c .o .h .a -ifdef CLANG --CXX = clang++ +-CXX = clang++ -Wno-deprecated-register -CC = clang -# Can choose aspect to sanitize: address and undefined can simply change SANITIZE but for -# thread also need to create Position Independent Executable -> search online documentation @@ -49,8 +49,8 @@ clean: $(DEL) *.o $(COMPLIB) *.plist -@@ -93,9 +85,11 @@ - ScintillaBase.o ContractionState.o Editor.o ExternalLexer.o PropSetSimple.o PlatGTK.o \ +@@ -94,9 +86,11 @@ + PropSetSimple.o PlatGTK.o \ KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o CharacterCategory.o ViewStyle.o \ RESearch.o RunStyles.o Selection.o Style.o Indicator.o AutoComplete.o UniConversion.o XPM.o \ - $(MARSHALLER) $(LEXOBJS) Modified: head/x11-toolkits/scintilla/pkg-plist ============================================================================== --- head/x11-toolkits/scintilla/pkg-plist Fri Oct 10 16:18:53 2014 (r370596) +++ head/x11-toolkits/scintilla/pkg-plist Fri Oct 10 16:24:00 2014 (r370597) @@ -7,4 +7,3 @@ lib/libscintilla.so lib/libscintilla.so.2 lib/libscintilla_lexers.so lib/libscintilla_lexers.so.2 -@dirrm include/scintilla From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:36:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C687E5AD; Fri, 10 Oct 2014 16:36:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9863815B; Fri, 10 Oct 2014 16:36:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AGa6s4066792; Fri, 10 Oct 2014 16:36:06 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AGa50m066785; Fri, 10 Oct 2014 16:36:05 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201410101636.s9AGa50m066785@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 10 Oct 2014 16:36:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370598 - head/astro/wmmoonclock X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:36:06 -0000 Author: pawel Date: Fri Oct 10 16:36:05 2014 New Revision: 370598 URL: https://svnweb.freebsd.org/changeset/ports/370598 QAT: https://qat.redports.org/buildarchive/r370598/ Log: - Remove of BROKEN, add new MASTER_SITES including new maitainer's mirror - Update distinfo, previous tarball was uncompressed - Add LICENSE - Take maintainership - Slight grammar change in pkg-descr - Addition of WWW to pkg-descr PR: 193819 Submitted by: A.J. "Fonz" van Werven Modified: head/astro/wmmoonclock/Makefile head/astro/wmmoonclock/distinfo head/astro/wmmoonclock/pkg-descr Modified: head/astro/wmmoonclock/Makefile ============================================================================== --- head/astro/wmmoonclock/Makefile Fri Oct 10 16:24:00 2014 (r370597) +++ head/astro/wmmoonclock/Makefile Fri Oct 10 16:36:05 2014 (r370598) @@ -5,12 +5,13 @@ PORTNAME= wmMoonClock PORTVERSION= 1.27 PORTREVISION= 3 CATEGORIES= astro windowmaker -MASTER_SITES= http://www.dockapps.org/files/14/21/ +MASTER_SITES= http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/files/ \ + http://www.skysmurf.nl/comp/FreeBSD/distfiles/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= freebsd@skysmurf.nl COMMENT= Displays the phase of the moon, plus orbital data -BROKEN= No public disfiles +LICENSE= GPLv2 WRKSRC= ${WRKDIR}/${DISTNAME}/Src Modified: head/astro/wmmoonclock/distinfo ============================================================================== --- head/astro/wmmoonclock/distinfo Fri Oct 10 16:24:00 2014 (r370597) +++ head/astro/wmmoonclock/distinfo Fri Oct 10 16:36:05 2014 (r370598) @@ -1,2 +1,2 @@ -SHA256 (wmMoonClock-1.27.tar.gz) = 91a40aef6f432feb4fa0c7450bbe05034e4024509be8f2f8f7c3483e150b532f -SIZE (wmMoonClock-1.27.tar.gz) = 829440 +SHA256 (wmMoonClock-1.27.tar.gz) = 439d330a30ee1cb084e0512e894f5e1a2e9869745a2274fbd9a56832c1527c77 +SIZE (wmMoonClock-1.27.tar.gz) = 155197 Modified: head/astro/wmmoonclock/pkg-descr ============================================================================== --- head/astro/wmmoonclock/pkg-descr Fri Oct 10 16:24:00 2014 (r370597) +++ head/astro/wmmoonclock/pkg-descr Fri Oct 10 16:36:05 2014 (r370598) @@ -1,6 +1,8 @@ -This is a WindowMaker dockapp which displays a graphical representation of +This is a WindowMaker dockapp that displays a graphical representation of the phase of the moon, plus additional astronomical data such as rise/set times, orbital data, orbital elements, etc (if you click on the image multiple times). Probably most of the data is not that useful, but what the heck :) + +WWW: http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/time.html#wmmoonclock From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 16:52:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF43D9D7; Fri, 10 Oct 2014 16:52:43 +0000 (UTC) Received: from mail-yh0-x236.google.com (mail-yh0-x236.google.com [IPv6:2607:f8b0:4002:c01::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5540D350; Fri, 10 Oct 2014 16:52:43 +0000 (UTC) Received: by mail-yh0-f54.google.com with SMTP id z6so1904891yhz.41 for ; Fri, 10 Oct 2014 09:52:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=+7QVzbGiL0PL4XBZC1q4C4WFz0vmD45PsDjyIWf6Jck=; b=vmSzunrrLUXDmiG573AQmqQyi0TBsG9CLegGdm9/FGocl3ZfeAxg2qUOJOISO2QpMp s/ZOuX8DvrMkqHkM+r4iBd746p476kD0GBps3sIFoySf8OPgJ2GV4R+2zPAhY9k0Loy7 OElkjZNNfp+GcYAdk8R5UzTAxqFxecUvqLO/S8bvxoqHxZej1TJy9ym2qr23aHWrcJ9o mxt6CVhfybUuVd7azY000a76i2qSwt4fHztFsjWDXNDvGBkhVR1y6hGkQkK6ghkIMFx7 M1RLf3FEyXGEiHPzT9Gfv2nqlYrGxMKVdOMAPavaz9wlEjWF/kbfDFF2OMxxgv8pcT19 Lr2g== MIME-Version: 1.0 X-Received: by 10.236.172.161 with SMTP id t21mr9231703yhl.65.1412959962548; Fri, 10 Oct 2014 09:52:42 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.170.207.73 with HTTP; Fri, 10 Oct 2014 09:52:42 -0700 (PDT) In-Reply-To: References: <201410091318.s99DISxR078486@svn.freebsd.org> Date: Fri, 10 Oct 2014 18:52:42 +0200 X-Google-Sender-Auth: XFt8OwOIW83Xv1eYyIsSG5RTjIA Message-ID: Subject: Re: svn commit: r370526 - head/security/cyrus-sasl2-gssapi From: Antoine Brodin To: Hajimu UMEMOTO Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 16:52:43 -0000 On Fri, Oct 10, 2014 at 6:15 PM, Hajimu UMEMOTO wrote: > Hi, > >>>>>> On Fri, 10 Oct 2014 14:56:50 +0000 >>>>>> Antoine Brodin said: > > antoine> This fails to build. > > It could build without any problem here. How does it fail? Could you > show me the log? Hi, http://package20.nyi.freebsd.org/data/91amd64-default-baseline/370561/logs/errors/cyrus-sasl-gssapi-2.1.26_2.log Cheers, Antoine From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 17:58:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C877BAED; Fri, 10 Oct 2014 17:58:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B4ACCC03; Fri, 10 Oct 2014 17:58:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AHw8HV006820; Fri, 10 Oct 2014 17:58:08 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AHw8HE006819; Fri, 10 Oct 2014 17:58:08 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201410101758.s9AHw8HE006819@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Fri, 10 Oct 2014 17:58:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370599 - head/security/cyrus-sasl2-gssapi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 17:58:08 -0000 Author: ume Date: Fri Oct 10 17:58:07 2014 New Revision: 370599 URL: https://svnweb.freebsd.org/changeset/ports/370599 QAT: https://qat.redports.org/buildarchive/r370599/ Log: Since we don't use its own libtool, build arg is required to USES=libtool. Spotted by: antoine Modified: head/security/cyrus-sasl2-gssapi/Makefile Modified: head/security/cyrus-sasl2-gssapi/Makefile ============================================================================== --- head/security/cyrus-sasl2-gssapi/Makefile Fri Oct 10 16:36:05 2014 (r370598) +++ head/security/cyrus-sasl2-gssapi/Makefile Fri Oct 10 17:58:07 2014 (r370599) @@ -22,7 +22,7 @@ DISTINFO_FILE= ${CYRUS_SASL2_DIR}/distin PATCHDIR= ${CYRUS_SASL2_DIR}/files INSTALL_WRKSRC= ${WRKSRC}/plugins -USES= libtool +USES= libtool:build USE_LDCONFIG= yes USE_OPENSSL= yes GNU_CONFIGURE= yes From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 18:03:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0B23E02; Fri, 10 Oct 2014 18:03:52 +0000 (UTC) Received: from mail.mahoroba.org (ent.mahoroba.org [IPv6:2001:2f0:104:8010::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "asuka.mahoroba.org", Issuer "ca.mahoroba.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 484C0CE9; Fri, 10 Oct 2014 18:03:52 +0000 (UTC) Received: from yuga.mahoroba.org (ume@yuga-m.mahoroba.org [IPv6:2001:2f0:104:8016:7258:12ff:fe22:d94b]) (user=ume mech=DIGEST-MD5 bits=0) by mail.mahoroba.org (8.14.9/8.14.9) with ESMTP/inet6 id s9AI3KWq066410 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO); Sat, 11 Oct 2014 03:03:20 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Sat, 11 Oct 2014 03:03:21 +0900 Message-ID: From: Hajimu UMEMOTO To: Antoine Brodin Subject: Re: svn commit: r370526 - head/security/cyrus-sasl2-gssapi In-Reply-To: References: <201410091318.s99DISxR078486@svn.freebsd.org> User-Agent: xcite1.60> Wanderlust/2.15.9 (Almost Unreal) Emacs/24.3 Mule/6.0 (HANACHIRUSATO) X-Operating-System: FreeBSD 9.3-STABLE X-PGP-Key: http://www.mahoroba.org/~ume/publickey.asc X-PGP-Fingerprint: 1F00 0B9E 2164 70FC 6DC5 BF5F 04E9 F086 BF90 71FE MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (mail.mahoroba.org [IPv6:2001:2f0:104:8010::1]); Sat, 11 Oct 2014 03:03:21 +0900 (JST) X-Virus-Scanned: clamav-milter 0.98.4 at asuka.mahoroba.org X-Virus-Status: Clean X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RP_MATCHES_RCVD autolearn=ham autolearn_force=no version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on asuka.mahoroba.org Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 18:03:52 -0000 Hi, >>>>> On Fri, 10 Oct 2014 18:52:42 +0200 >>>>> Antoine Brodin said: antoine> http://package20.nyi.freebsd.org/data/91amd64-default-baseline/370561/logs/errors/cyrus-sasl-gssapi-2.1.26_2.log I didn't notice that build arg is required for build dependency to libtool. It should be fixed now. Thank you for letting me know it. Sincerely, -- Hajimu UMEMOTO ume@mahoroba.org ume@{,jp.}FreeBSD.org http://www.mahoroba.org/~ume/ From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 18:17:26 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB4271E1; Fri, 10 Oct 2014 18:17:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DB47DF6; Fri, 10 Oct 2014 18:17:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AIHQ6D016464; Fri, 10 Oct 2014 18:17:26 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AIHQi5016462; Fri, 10 Oct 2014 18:17:26 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410101817.s9AIHQi5016462@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Fri, 10 Oct 2014 18:17:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370600 - head/sysutils/ldap-account-manager X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 18:17:26 -0000 Author: pi Date: Fri Oct 10 18:17:25 2014 New Revision: 370600 URL: https://svnweb.freebsd.org/changeset/ports/370600 QAT: https://qat.redports.org/buildarchive/r370600/ Log: sysutils/ldap-account-manager: 4.7 -> 4.7.1 Fixes the bug with blank page and "User tried to access entry of type ..." log message when DN suffix does not exactly match case in LDAP. PR: 194290 Submitted by: Vasiliy P. Melnik (maintainer) Modified: head/sysutils/ldap-account-manager/Makefile head/sysutils/ldap-account-manager/distinfo Modified: head/sysutils/ldap-account-manager/Makefile ============================================================================== --- head/sysutils/ldap-account-manager/Makefile Fri Oct 10 17:58:07 2014 (r370599) +++ head/sysutils/ldap-account-manager/Makefile Fri Oct 10 18:17:25 2014 (r370600) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ldap-account-manager -PORTVERSION= 4.7 +PORTVERSION= 4.7.1 CATEGORIES= sysutils www MASTER_SITES= SF/${SHORTNAME}/LAM/${PORTVERSION} @@ -44,11 +44,11 @@ do-install: @${ECHO_CMD} '@dir ${WWWDIR_REL}' >> ${TMPPLIST} @cd ${WRKSRC} && ${COPYTREE_SHARE} "${LAMDATA}" ${STAGEDIR}${WWWDIR} .for DIR in ${WRITEABLES} - @${CHMOD} -R u+w ${STAGEDIR}${WWWDIR}/${DIR} @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN} %D/${WWWDIR_REL}/${DIR}' >> ${TMPPLIST} @${ECHO_CMD} '@exec ${CHMOD} -R u+w %D/${WWWDIR_REL}/${DIR}' >> ${TMPPLIST} .endfor - @${CHMOD} u+x ${STAGEDIR}${WWWDIR}/lib/lamdaemon.pl + @${ECHO_CMD} '@exec ${CHOWN} ${WWWOWN} %D/${WWWDIR_REL}/${DIR}/lib/lamdaemon.pl' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${CHMOD} u+x %D/${WWWDIR_REL}/${DIR}/lib/lamdaemon.pl' >> ${TMPPLIST} .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR} Modified: head/sysutils/ldap-account-manager/distinfo ============================================================================== --- head/sysutils/ldap-account-manager/distinfo Fri Oct 10 17:58:07 2014 (r370599) +++ head/sysutils/ldap-account-manager/distinfo Fri Oct 10 18:17:25 2014 (r370600) @@ -1,2 +1,2 @@ -SHA256 (ldap-account-manager-4.7.tar.bz2) = 207b424ca27743095509bc093983978481e9372a285ca6fd8bd3dd2f4dcf924f -SIZE (ldap-account-manager-4.7.tar.bz2) = 12491347 +SHA256 (ldap-account-manager-4.7.1.tar.bz2) = d59f8db6a705d94efff860b76fed37efaa1b9d33de6ba53548eeadc20f0bbc02 +SIZE (ldap-account-manager-4.7.1.tar.bz2) = 12491085 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 20:43:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0F1D8CE2 for ; Fri, 10 Oct 2014 20:43:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA654FC8 for ; Fri, 10 Oct 2014 20:43:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AKhpmS025824 for ; Fri, 10 Oct 2014 20:43:51 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.9/8.14.9/Submit) id s9AKhpEf025821 for svn-ports-head@freebsd.org; Fri, 10 Oct 2014 20:43:51 GMT (envelope-from bdrewery) Received: (qmail 93719 invoked from network); 10 Oct 2014 15:43:49 -0500 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 10 Oct 2014 15:43:49 -0500 Message-ID: <543844FA.1010908@FreeBSD.org> Date: Fri, 10 Oct 2014 15:43:38 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 MIME-Version: 1.0 To: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r369643 - head/misc/getopt References: <201409301619.s8UGJg6b078754@svn.freebsd.org> In-Reply-To: <201409301619.s8UGJg6b078754@svn.freebsd.org> OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0Ixq0DX10CEievANFHNroI251calCkOla" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 20:43:52 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --0Ixq0DX10CEievANFHNroI251calCkOla Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 9/30/2014 11:19 AM, Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Tue Sep 30 16:19:41 2014 > New Revision: 369643 > URL: http://svnweb.freebsd.org/changeset/ports/369643 > QAT: https://qat.redports.org/buildarchive/r369643/ >=20 > Log: > - Fix PLIST when NLS option is off >=20 Were these updates even tested? This wiped out 2200 packages this week on every branch. Portmgr failed when they copied head to Quarterly without checking for fallout, but quarterly is not very much used anyway.= This broke xorg, git, xfce, qt, the list goes on. No packages are provided for this large list this week. Commits _must be tested_. --=20 Regards, Bryan Drewery --0Ixq0DX10CEievANFHNroI251calCkOla Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) iQEcBAEBAgAGBQJUOET6AAoJEDXXcbtuRpfP580H/i2J//Fss0imgpizu53pGt7I R1P21ayOU+k6r203GXTiu4FuJY9ARESsNuoFjIgfkdpolN4FZIlhbIKg4aDxty/k xYGD7h49o7FraHaIU85avPe9giT/wwimdkl5fL42Zvr+QsiI88Vf4i/Nh+nBVt7M 5oEn9uwQvh/fnrRIr6KNhXKZsR0QFVsSfu1FvjRpjoP8i0eF49VDZRyae/GN7240 K3YbOziOXAZ7ctV1v83fKhL18RH4wAcbRoT6WBboIP6EmUQX/M5qv3L8pukzYyfO vjlKM1vZwtCs62GUkACzhOv8HmOOvZTTxB8xs5C9BbZH8kOEMACFz76qjvRkPQQ= =Wmdo -----END PGP SIGNATURE----- --0Ixq0DX10CEievANFHNroI251calCkOla-- From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:03:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DFDF2DC; Fri, 10 Oct 2014 21:03:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2A61C215; Fri, 10 Oct 2014 21:03:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AL3JNO098900; Fri, 10 Oct 2014 21:03:19 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AL3JkH098899; Fri, 10 Oct 2014 21:03:19 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201410102103.s9AL3JkH098899@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Fri, 10 Oct 2014 21:03:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370601 - head/textproc/libwps03 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:03:19 -0000 Author: jkim Date: Fri Oct 10 21:03:18 2014 New Revision: 370601 URL: https://svnweb.freebsd.org/changeset/ports/370601 QAT: https://qat.redports.org/buildarchive/r370601/ Log: Fix build with GCC 4.2. Modified: head/textproc/libwps03/Makefile Modified: head/textproc/libwps03/Makefile ============================================================================== --- head/textproc/libwps03/Makefile Fri Oct 10 18:17:25 2014 (r370600) +++ head/textproc/libwps03/Makefile Fri Oct 10 21:03:18 2014 (r370601) @@ -15,10 +15,9 @@ LICENSE_COMB= dual LIB_DEPENDS= librevenge-0.0.so:${PORTSDIR}/textproc/librevenge -CONFIGURE_ARGS= --disable-werror +CONFIGURE_ARGS= --disable-werror --without-docs CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-docs USES= compiler:features libtool pathfix pkgconfig USE_LDCONFIG= yes INSTALL_TARGET= install-strip From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:18:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 67C095D9; Fri, 10 Oct 2014 21:18:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48E35358; Fri, 10 Oct 2014 21:18:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALI2FD004632; Fri, 10 Oct 2014 21:18:02 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALI1su004624; Fri, 10 Oct 2014 21:18:01 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201410102118.s9ALI1su004624@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Fri, 10 Oct 2014 21:18:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370602 - in head/databases/redis-devel: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:18:02 -0000 Author: osa Date: Fri Oct 10 21:18:00 2014 New Revision: 370602 URL: https://svnweb.freebsd.org/changeset/ports/370602 QAT: https://qat.redports.org/buildarchive/r370602/ Log: Upgrade from 3.0.0-beta8 to 3.0.0-rc1. --[ Redis 3.0.0 RC1 (version 2.9.101) ] Release date: 9 oct 2014 This is the first release candidate of Redis Cluster. >> General changes * [FIX] An very large number of small fixes, old and new, merged in the context of a the issue #1906. Please see the issue page here for exact credits: https://github.com/antirez/redis/pull/1906 of each commit. (Matt Stancliff and many others). * [FIX] SAVE is no longer propagated to AOF / slaves. * [FIX] GETRANGE test no longer fails for 32 bit builds (Matt Stancliff). * [FIX] Limit SCAN latency when the hash table is in an odd state (very few populted buckets because rehashing is in progress). (Xiaost and Salvatore Sanfilippo) * [NEW] Redis is now able to load truncated AOF files without requiring a redis-check-aof utility run. The default now is to load truncated (but apparently not corrupted) AOFs, you can change this in redis.conf. (Salvatore Sanfilippo). * [NEW] DEBUG POPULATE two args form implemented. It is now possible to call it with DEBUG POPULATE . Default prefix is "key:" as usually. * [NEW] INCR: Modify incremented object in-place when possible. This results in speed improvements + possibly better memory locality. >> Cluster changes * [FIX] Cluster: claim ping_sent time even if we can't connect. * [FIX] redis-trib should not abort easily on connection issues. * [FIX] Cluster test: less console-spammy resharding test. * [FIX] Fix logic to detect we are among a minority. * [FIX] Process gossip section only for known nodes. * [NEW] Redis Cluster is stable and tested enough, there is a clear MVP, so it was promoted from beta to stable. * [NEW] New unit 09, Pub/Sub across the cluster. * [NEW] New unit 08, update messages. * [NEW] New cluster option to work with partial slots coverage. * [NEW] More chatty cluster slaves when failover is stalled. They log reason with rate limiting, only when reason changes or a given time has elapsed. >> Sentinel changes * [FIX] Sentinel critical bug fixed: the absolute majority was computed in a wrong way because of a programming error. Now the implementation does what the specification says and the majority to authorize a failover (that should not be confused with the ODOWN quorum) is the majority of *all* the Sentinels ever seen for a given master, regardless of their current state. * [FIX] Resolved a memory leak in the hiredis library causing a memory leak in Redis Sentinel when a monitored instance or another Sentinel is unavailable. Every reconnection attempt will leak a small amount of memory, but in the long run the process can reach a considerable size. * [NEW] Sentinel: ability to announce itself with an arbitrary IP/port to work in the context of natted networks. However this is probably still not enough since there is no equivalent mechanism for slaves listed in the master INFO output. (Dara Kong and Salvatore Sanfilippo) Modified: head/databases/redis-devel/Makefile head/databases/redis-devel/distinfo head/databases/redis-devel/files/patch-deps-Makefile head/databases/redis-devel/files/patch-src-Makefile Modified: head/databases/redis-devel/Makefile ============================================================================== --- head/databases/redis-devel/Makefile Fri Oct 10 21:03:18 2014 (r370601) +++ head/databases/redis-devel/Makefile Fri Oct 10 21:18:00 2014 (r370602) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis -DISTVERSION= 3.0.0-beta8 +DISTVERSION= 3.0.0-rc1 CATEGORIES= databases MASTER_SITES= https://github.com/antirez/redis/archive/ PKGNAMESUFFIX= -devel Modified: head/databases/redis-devel/distinfo ============================================================================== --- head/databases/redis-devel/distinfo Fri Oct 10 21:03:18 2014 (r370601) +++ head/databases/redis-devel/distinfo Fri Oct 10 21:18:00 2014 (r370602) @@ -1,2 +1,2 @@ -SHA256 (redis/3.0.0-beta8.tar.gz) = b84d1624873c4f20ed7504932233b2b91584b6a0c4383c25034e8710c5ea16cd -SIZE (redis/3.0.0-beta8.tar.gz) = 1327483 +SHA256 (redis/3.0.0-rc1.tar.gz) = c64c31527d93175e2a83010d69e0b83dc86c8b75b7cf8aa8b497213921418db4 +SIZE (redis/3.0.0-rc1.tar.gz) = 1335857 Modified: head/databases/redis-devel/files/patch-deps-Makefile ============================================================================== --- head/databases/redis-devel/files/patch-deps-Makefile Fri Oct 10 21:03:18 2014 (r370601) +++ head/databases/redis-devel/files/patch-deps-Makefile Fri Oct 10 21:18:00 2014 (r370602) @@ -1,17 +1,20 @@ ---- deps/Makefile.orig 2012-07-02 04:18:07.000000000 +0400 -+++ deps/Makefile 2012-07-02 04:18:56.000000000 +0400 -@@ -58,12 +58,12 @@ - LUA_CFLAGS= -D__C99FEATURES__=1 +--- deps/Makefile.orig 2014-10-11 01:02:23.000000000 +0400 ++++ deps/Makefile 2014-10-11 01:03:37.000000000 +0400 +@@ -58,7 +58,7 @@ + LUA_CFLAGS= -D__C99FEATURES__=1 endif -LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) +LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS) LUA_LDFLAGS+= $(LDFLAGS) + # lua's Makefile defines AR="ar rcu", which is unusual, and makes it more + # challenging to cross-compile lua (and redis). These defines make it easier +@@ -68,7 +68,7 @@ lua: .make-prerequisites @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) -- cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" -+ cd lua/src && $(MAKE) all CC="$(CC)" CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" +- cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" AR="$(AR) $(ARFLAGS)" ++ cd lua/src && $(MAKE) all CC="$(CC)" CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" AR="$(AR) $(ARFLAGS)" .PHONY: lua Modified: head/databases/redis-devel/files/patch-src-Makefile ============================================================================== --- head/databases/redis-devel/files/patch-src-Makefile Fri Oct 10 21:03:18 2014 (r370601) +++ head/databases/redis-devel/files/patch-src-Makefile Fri Oct 10 21:18:00 2014 (r370602) @@ -1,7 +1,7 @@ ---- src/Makefile.orig 2014-01-14 14:17:43.000000000 +0400 -+++ src/Makefile 2014-01-14 14:19:31.000000000 +0400 +--- src/Makefile.orig 2014-10-11 01:09:55.000000000 +0400 ++++ src/Makefile 2014-10-11 01:12:53.000000000 +0400 @@ -22,7 +22,7 @@ - WARN=-Wall + WARN=-Wall -W OPT=$(OPTIMIZATION) -PREFIX?=/usr/local @@ -9,23 +9,31 @@ INSTALL_BIN=$(PREFIX)/bin INSTALL=install -@@ -52,7 +52,7 @@ +@@ -52,7 +52,6 @@ FINAL_CFLAGS=$(STD) $(WARN) $(OPT) $(DEBUG) $(CFLAGS) $(REDIS_CFLAGS) FINAL_LDFLAGS=$(LDFLAGS) $(REDIS_LDFLAGS) $(DEBUG) FINAL_LIBS=-lm -DEBUG=-g -ggdb -+#DEBUG=-g -ggdb ifeq ($(uname_S),SunOS) # SunOS -@@ -63,6 +63,7 @@ --ifeq ($(uname_S),Darwin) -- # Darwin (nothing to do) --else +@@ -63,6 +62,11 @@ + ifeq ($(uname_S),Darwin) + # Darwin (nothing to do) + else +ifeq ($(uname_S),FreeBSD) -+ FINAL_CFLAGS?= $(CFLAGS) $(REDIS_CFLAGS) -I${PREFIX}/include -+ FINAL_LDFLAGS= $(LDFLAGS) ++ # FreeBSD ++ FINAL_CFLAGS?= $(CFLAGS) $(REDIS_CFLAGS) -I${PREFIX}/include ++ FINAL_LDFLAGS= $(LDFLAGS) +else - # All the other OSes (notably Linux) - FINAL_LDFLAGS+= -rdynamic - FINAL_LIBS+= -pthread + ifeq ($(uname_S),AIX) + # AIX + FINAL_LDFLAGS+= -Wl,-bexpall +@@ -75,6 +79,7 @@ + endif + endif + endif ++endif + # Include paths to dependencies + FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src + From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:20:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0E08D870; Fri, 10 Oct 2014 21:20:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E432037C; Fri, 10 Oct 2014 21:19:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALJxkc005023; Fri, 10 Oct 2014 21:19:59 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALJxIG005021; Fri, 10 Oct 2014 21:19:59 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102119.s9ALJxIG005021@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 21:19:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370603 - head/www/crp X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:20:00 -0000 Author: antoine Date: Fri Oct 10 21:19:58 2014 New Revision: 370603 URL: https://svnweb.freebsd.org/changeset/ports/370603 QAT: https://qat.redports.org/buildarchive/r370603/ Log: - Allow staging as a regular user - Bump portrevision as files were not packaged with intended owner Modified: head/www/crp/Makefile head/www/crp/pkg-plist Modified: head/www/crp/Makefile ============================================================================== --- head/www/crp/Makefile Fri Oct 10 21:18:00 2014 (r370602) +++ head/www/crp/Makefile Fri Oct 10 21:19:58 2014 (r370603) @@ -3,6 +3,7 @@ PORTNAME= crp PORTVERSION= 20031012 +PORTREVISION= 1 CATEGORIES= www science MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Oct-12-2003 DISTNAME= CRP @@ -14,6 +15,7 @@ COMMENT= Automates the process of being USE_PHP= yes WANT_PHP_WEB= yes NO_BUILD= yes +PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" SPOOLDIR?= /var/spool/conference @@ -28,6 +30,5 @@ do-install: @${CP} -R ${WRKSRC}/ ${STAGEDIR}${WWWDIR}/ @${SED} -e 's#/var/www/html#${WWWDIR}#' \ ${WRKSRC}/Code/confHeader.inc > ${STAGEDIR}${WWWDIR}/Code/confHeader.inc - @${CHOWN} -R ${WWWOWN}:${WWWGROUP} ${STAGEDIR}${WWWDIR} ${STAGEDIR}${SPOOLDIR} .include Modified: head/www/crp/pkg-plist ============================================================================== --- head/www/crp/pkg-plist Fri Oct 10 21:18:00 2014 (r370602) +++ head/www/crp/pkg-plist Fri Oct 10 21:19:58 2014 (r370603) @@ -1,3 +1,5 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% %%WWWDIR%%/.htaccess %%WWWDIR%%/All/ImportantDates.php %%WWWDIR%%/All/Logout.php @@ -218,23 +220,25 @@ %%WWWDIR%%/themes/modular-with-arial-fonts/modvbtn.gif %%WWWDIR%%/themes/modular-with-arial-fonts/modvsel.gif %%WWWDIR%%/themes/modular-with-arial-fonts/theme.css -@dirrm %%WWWDIR%%/themes/modular-with-arial-fonts -@dirrm %%WWWDIR%%/themes -@dirrm %%WWWDIR%%/images -@dirrm %%WWWDIR%%/_vti_cnf -@dirrm %%WWWDIR%%/Reviewer/_vti_cnf -@dirrm %%WWWDIR%%/Reviewer -@dirrm %%WWWDIR%%/PC/_vti_cnf -@dirrm %%WWWDIR%%/PC/SkiDeal_files/_vti_cnf -@dirrm %%WWWDIR%%/PC/SkiDeal_files -@dirrm %%WWWDIR%%/PC -@dirrm %%WWWDIR%%/Download -@dirrm %%WWWDIR%%/Code/PEAR-DB -@dirrm %%WWWDIR%%/Code -@dirrm %%WWWDIR%%/Chair -@dirrm %%WWWDIR%%/Author -@dirrm %%WWWDIR%%/Assistant/_vti_cnf -@dirrm %%WWWDIR%%/Assistant -@dirrm %%WWWDIR%%/All -@dirrm %%WWWDIR%% -@dirrmtry /var/spool/conference +@dir %%WWWDIR%%/themes/modular-with-arial-fonts +@dir %%WWWDIR%%/themes +@dir %%WWWDIR%%/images +@dir %%WWWDIR%%/_vti_cnf +@dir %%WWWDIR%%/Reviewer/_vti_cnf +@dir %%WWWDIR%%/Reviewer +@dir %%WWWDIR%%/PC/_vti_cnf +@dir %%WWWDIR%%/PC/SkiDeal_files/_vti_cnf +@dir %%WWWDIR%%/PC/SkiDeal_files +@dir %%WWWDIR%%/PC +@dir %%WWWDIR%%/Download +@dir %%WWWDIR%%/Code/PEAR-DB +@dir %%WWWDIR%%/Code +@dir %%WWWDIR%%/Chair +@dir %%WWWDIR%%/Author +@dir %%WWWDIR%%/Assistant/_vti_cnf +@dir %%WWWDIR%%/Assistant +@dir %%WWWDIR%%/All +@dir %%WWWDIR%% +@dir /var/spool/conference +@owner +@group From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:22:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ACCA8ADE; Fri, 10 Oct 2014 21:22:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 98ABF61B; Fri, 10 Oct 2014 21:22:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALMw2k008993; Fri, 10 Oct 2014 21:22:58 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALMwam008991; Fri, 10 Oct 2014 21:22:58 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102122.s9ALMwam008991@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 21:22:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370604 - head/devel/py-cog X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:22:58 -0000 Author: antoine Date: Fri Oct 10 21:22:57 2014 New Revision: 370604 URL: https://svnweb.freebsd.org/changeset/ports/370604 QAT: https://qat.redports.org/buildarchive/r370604/ Log: Allow staging as a regular user, distfile was rerolled (previous distfile had files and directories unreadable) Modified: head/devel/py-cog/Makefile head/devel/py-cog/distinfo Modified: head/devel/py-cog/Makefile ============================================================================== --- head/devel/py-cog/Makefile Fri Oct 10 21:19:58 2014 (r370603) +++ head/devel/py-cog/Makefile Fri Oct 10 21:22:57 2014 (r370604) @@ -3,7 +3,7 @@ PORTNAME= cog PORTVERSION= 2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,8 +15,7 @@ COMMENT= Code Generator for any language LICENSE= MIT # Python3 ready -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +USE_PYTHON= distutils autoplist .include Modified: head/devel/py-cog/distinfo ============================================================================== --- head/devel/py-cog/distinfo Fri Oct 10 21:19:58 2014 (r370603) +++ head/devel/py-cog/distinfo Fri Oct 10 21:22:57 2014 (r370604) @@ -1,2 +1,2 @@ -SHA256 (cogapp-2.3.tar.gz) = a666250ba90faf3b02e07dfc3364921f79b5d9e7855d0d42ff079de282b4545b -SIZE (cogapp-2.3.tar.gz) = 20368 +SHA256 (cogapp-2.3.tar.gz) = d6527af3b753f546991239dfc85270c2eedefe27cf83c68dc2219332f5faf53f +SIZE (cogapp-2.3.tar.gz) = 20466 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:36:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF0DDEC0; Fri, 10 Oct 2014 21:36:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B179176F; Fri, 10 Oct 2014 21:36:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALaANH014364; Fri, 10 Oct 2014 21:36:10 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALaAnv014362; Fri, 10 Oct 2014 21:36:10 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102136.s9ALaAnv014362@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 21:36:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370606 - head/databases/mywwwatcher X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:36:11 -0000 Author: antoine Date: Fri Oct 10 21:36:09 2014 New Revision: 370606 URL: https://svnweb.freebsd.org/changeset/ports/370606 QAT: https://qat.redports.org/buildarchive/r370606/ Log: - Allow staging as a regular user - Bump portrevision as files were not packaged with intended group Modified: head/databases/mywwwatcher/Makefile head/databases/mywwwatcher/pkg-plist Modified: head/databases/mywwwatcher/Makefile ============================================================================== --- head/databases/mywwwatcher/Makefile Fri Oct 10 21:25:00 2014 (r370605) +++ head/databases/mywwwatcher/Makefile Fri Oct 10 21:36:09 2014 (r370606) @@ -3,6 +3,7 @@ PORTNAME= mywwwatcher PORTVERSION= 3.2 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= http://www.the.cz/mywwwatcher/files/ DISTNAME= mywwwatcher-${PORTVERSION} @@ -15,6 +16,7 @@ WRKSRC= ${WRKDIR}/mywwwatcher WANT_PHP_WEB= yes DEFAULT_PHP_VER= 5 USE_PHP= pcre session mysql +PLIST_SUB= WWWGRP="${WWWGRP}" NO_BUILD= yes @@ -23,7 +25,6 @@ SUB_FILES= pkg-message do-install: @${MKDIR} ${STAGEDIR}${WWWDIR} @${CP} -Rp ${WRKSRC}/* ${STAGEDIR}${WWWDIR} - @${CHGRP} -R ${WWWGRP} ${STAGEDIR}${WWWDIR} @${CHMOD} 775 ${STAGEDIR}${WWWDIR}/ini @${CHMOD} 775 ${STAGEDIR}${WWWDIR}/query_archive Modified: head/databases/mywwwatcher/pkg-plist ============================================================================== --- head/databases/mywwwatcher/pkg-plist Fri Oct 10 21:25:00 2014 (r370605) +++ head/databases/mywwwatcher/pkg-plist Fri Oct 10 21:36:09 2014 (r370606) @@ -1,3 +1,4 @@ +@group %%WWWGRP%% %%WWWDIR%%/README %%WWWDIR%%/README.cz %%WWWDIR%%/charset.php @@ -32,9 +33,10 @@ %%WWWDIR%%/stat.php %%WWWDIR%%/style.css %%WWWDIR%%/top.php -@dirrm %%WWWDIR%%/query_archive -@dirrm %%WWWDIR%%/lang -@dirrm %%WWWDIR%%/include -@dirrm %%WWWDIR%%/ini -@dirrm %%WWWDIR%%/graphics -@dirrm %%WWWDIR%% +@dir %%WWWDIR%%/query_archive +@dir %%WWWDIR%%/lang +@dir %%WWWDIR%%/include +@dir %%WWWDIR%%/ini +@dir %%WWWDIR%%/graphics +@dir %%WWWDIR%% +@group From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:38:30 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98448A0; Fri, 10 Oct 2014 21:38:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C56878D; Fri, 10 Oct 2014 21:38:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALcULE014738; Fri, 10 Oct 2014 21:38:30 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALcU1A014737; Fri, 10 Oct 2014 21:38:30 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201410102138.s9ALcU1A014737@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Fri, 10 Oct 2014 21:38:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370607 - head/www/rubygem-passenger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:38:30 -0000 Author: osa Date: Fri Oct 10 21:38:29 2014 New Revision: 370607 URL: https://svnweb.freebsd.org/changeset/ports/370607 QAT: https://qat.redports.org/buildarchive/r370607/ Log: Fix staging when SYMLINK defined. Bump PORTREVISION. Tested by: remko Modified: head/www/rubygem-passenger/Makefile Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Fri Oct 10 21:36:09 2014 (r370606) +++ head/www/rubygem-passenger/Makefile Fri Oct 10 21:38:29 2014 (r370607) @@ -3,6 +3,7 @@ PORTNAME= passenger PORTVERSION= 4.0.53 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- @@ -113,9 +114,6 @@ post-build: .if ${PORT_OPTIONS:MNGINX} (cd ${WRKSRC} && CC=${CC} CXX=${CXX} ${RAKE_BIN} nginx) .endif -.if ${PORT_OPTIONS:MSYMLINK} - ${LN} -s ${GEM_LIB_DIR} ${STAGE}${PREFIX}/${GEMS_DIR}/${PORTNAME} -.endif ${FIND} ${WRKSRC} -name '*.o' -delete ${FIND} ${WRKSRC} -name '*.bak' -delete @@ -124,5 +122,8 @@ post-install: ( cd ${WRKSRC} && \ ${COPYTREE_SHARE} buildout ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION} ) ${CHMOD} +x ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION}/buildout/agents/* +.if ${PORT_OPTIONS:MSYMLINK} + ${LN} -s ${PREFIX}${GEM_LIB_DIR} ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME} +.endif .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:41:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECEC81C1; Fri, 10 Oct 2014 21:41:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9561834; Fri, 10 Oct 2014 21:41:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALfgAB016344; Fri, 10 Oct 2014 21:41:42 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALfgW7016343; Fri, 10 Oct 2014 21:41:42 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201410102141.s9ALfgW7016343@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Fri, 10 Oct 2014 21:41:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370608 - head/www/rubygem-passenger X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:41:43 -0000 Author: osa Date: Fri Oct 10 21:41:42 2014 New Revision: 370608 URL: https://svnweb.freebsd.org/changeset/ports/370608 QAT: https://qat.redports.org/buildarchive/r370608/ Log: Fix typo (missing /). Bump PORTREVISION. Modified: head/www/rubygem-passenger/Makefile Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Fri Oct 10 21:38:29 2014 (r370607) +++ head/www/rubygem-passenger/Makefile Fri Oct 10 21:41:42 2014 (r370608) @@ -3,7 +3,7 @@ PORTNAME= passenger PORTVERSION= 4.0.53 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- @@ -123,7 +123,7 @@ post-install: ${COPYTREE_SHARE} buildout ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION} ) ${CHMOD} +x ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION}/buildout/agents/* .if ${PORT_OPTIONS:MSYMLINK} - ${LN} -s ${PREFIX}${GEM_LIB_DIR} ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME} + ${LN} -s ${PREFIX}/${GEM_LIB_DIR} ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME} .endif .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:42:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB9552B2; Fri, 10 Oct 2014 21:42:45 +0000 (UTC) Received: from mail.jr-hosting.nl (mail.jr-hosting.nl [IPv6:2a01:4f8:141:5ffd::25]) by mx1.freebsd.org (Postfix) with ESMTP id 79B18842; Fri, 10 Oct 2014 21:42:45 +0000 (UTC) Received: from [10.0.2.17] (a44084.upc-a.chello.nl [62.163.44.84]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail.jr-hosting.nl (Postfix) with ESMTPSA id D3D174BC4C; Fri, 10 Oct 2014 23:42:43 +0200 (CEST) DMARC-Filter: OpenDMARC Filter v1.3.0 mail.jr-hosting.nl D3D174BC4C Authentication-Results: mail.jr-hosting.nl/D3D174BC4C; dmarc=none header.from=FreeBSD.org Content-Type: multipart/signed; boundary="Apple-Mail=_D0D88080-1CB0-487D-AB4C-CFDB6645E690"; protocol="application/pgp-signature"; micalg=pgp-sha1 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: svn commit: r370607 - head/www/rubygem-passenger From: Remko Lodder In-Reply-To: <201410102138.s9ALcU1A014737@svn.freebsd.org> Date: Fri, 10 Oct 2014 23:42:41 +0200 Message-Id: References: <201410102138.s9ALcU1A014737@svn.freebsd.org> To: "Sergey A. Osokin" X-Mailer: Apple Mail (2.1878.6) Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:42:45 -0000 --Apple-Mail=_D0D88080-1CB0-487D-AB4C-CFDB6645E690 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii On 10 Oct 2014, at 23:38, Sergey A. Osokin wrote: > Author: osa > Date: Fri Oct 10 21:38:29 2014 > New Revision: 370607 > URL: https://svnweb.freebsd.org/changeset/ports/370607 > QAT: https://qat.redports.org/buildarchive/r370607/ > > Log: > Fix staging when SYMLINK defined. > Bump PORTREVISION. > > Tested by: remko > Thanks a lot! It works perfectly now :-) > > .include > _______________________________________________ > svn-ports-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" -- /"\ Best regards, | remko@FreeBSD.org \ / Remko Lodder | remko@EFnet X http://www.evilcoder.org/ | / \ ASCII Ribbon Campaign | Against HTML Mail and News --Apple-Mail=_D0D88080-1CB0-487D-AB4C-CFDB6645E690 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBAgAGBQJUOFLRAAoJEKjD27JZ84ywRDAQALRwwPNBxO1ZxfW5Gi4EGYQc HEJrZei9uyW2dQa2JEhMw3IVNdbcc9RtBjuY3Io5qPn42lgLlETQ4bgUT8X3Uh3B cfKlBZYf28YS05BO/FuAe98mK60VhpI2EOlHd2ZZaDA6CWZFXhkOtQBHMlxvsOMi o/lfQvvyk9aziv2Q319afwnk7SJEkkmI0RzzrEIn4uIxn6CR9QI9EWVEntQe4Ths nfPcTwEsXhgy/eSfI1u6XRa3le4Dy3jSYgXtnrY2zh9SidaGly9ZtbX/XxFiswjn Qi+90DtqqiGXJtCBCb7Eqpm3HfbeojssZ4C2XimdzOcNZcTZvX1IkssDOVdBX9Zj EmJVyH1OuJ0dw7UReTmyOnqiBsre1Q1CvmK8X5OVoVCoqoentFPcoU0BjBS9RcWw Hu3ej1ARvFIcZgeN9kws7yfR1vh0aF3q9QC/0yWGV9e4FoTfUnvKgzrOtk04yR0+ DLyoUw0MJ/SGf966qXYP2aCJFmcT4vtpFCiDYId5+qm90nCmskmczQb4/cykDo1N Zy0NEYxeoPIiNMHP1NVIC8hDFt4GZ3ZKrT2aENSF/z1x0ElRpCb/Vr6nuCmSNGNt /lq9iRgjCCDTORH2D+9KCOSI5B2BeYdzecLMqz+rl4pPqwqK/8D8dKqekWee3CEi hrVMjO0aS8YnW7Sz8wg4 =B5K8 -----END PGP SIGNATURE----- --Apple-Mail=_D0D88080-1CB0-487D-AB4C-CFDB6645E690-- From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 21:47:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6A0C438; Fri, 10 Oct 2014 21:47:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7C6D887; Fri, 10 Oct 2014 21:47:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ALlvZT019538; Fri, 10 Oct 2014 21:47:57 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ALlvTP019535; Fri, 10 Oct 2014 21:47:57 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102147.s9ALlvTP019535@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 21:47:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370609 - head/www/mysar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 21:47:58 -0000 Author: antoine Date: Fri Oct 10 21:47:56 2014 New Revision: 370609 URL: https://svnweb.freebsd.org/changeset/ports/370609 QAT: https://qat.redports.org/buildarchive/r370609/ Log: - Allow staging as a regular user - Bump portrevision as some files were not packaged with intended owner Modified: head/www/mysar/Makefile head/www/mysar/pkg-plist Modified: head/www/mysar/Makefile ============================================================================== --- head/www/mysar/Makefile Fri Oct 10 21:41:42 2014 (r370608) +++ head/www/mysar/Makefile Fri Oct 10 21:47:56 2014 (r370609) @@ -3,7 +3,7 @@ PORTNAME= mySAR PORTVERSION= 2.1.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= SF DISTNAME= ${PORTNAME:tl}-${PORTVERSION} @@ -24,7 +24,7 @@ CONFIGURE_ARGS= --with-mysql-lib=${LOCAL MYSARPREFIX= mysar MYSARDIR?= ${PREFIX}/${MYSARPREFIX} -PLIST_SUB= MYSAR=${MYSARPREFIX} +PLIST_SUB= MYSAR=${MYSARPREFIX} WWWOWN="${WWWOWN}" SUB_FILES= pkg-message SUB_LIST= MYSARDIR=${MYSARDIR} @@ -58,7 +58,5 @@ do-install: ${CP} -R `find ${WRKROOT} -mindepth 1 -maxdepth 1 ! -name mysar-binary-importer` ${STAGEDIR}${MYSARDIR} ${INSTALL_PROGRAM} ${WRKROOT}/mysar-binary-importer/src/mysar ${STAGEDIR}${MYSARDIR}/bin ${INSTALL_DATA} ${WRKROOT}/mysar-binary-importer/mysar.conf ${STAGEDIR}${MYSARDIR}/etc - ${CHOWN} -R ${WWWOWN} ${STAGEDIR}${MYSARDIR}/www-templates - ${CHOWN} -R ${WWWOWN} ${STAGEDIR}${MYSARDIR}/smarty-tmp .include Modified: head/www/mysar/pkg-plist ============================================================================== --- head/www/mysar/pkg-plist Fri Oct 10 21:41:42 2014 (r370608) +++ head/www/mysar/pkg-plist Fri Oct 10 21:47:56 2014 (r370609) @@ -86,6 +86,7 @@ %%MYSAR%%/inc/smarty/plugins/shared.escape_special_chars.php %%MYSAR%%/inc/smarty/plugins/shared.make_timestamp.php %%MYSAR%%/log/.keep +@owner %%WWWOWN%% %%MYSAR%%/www-templates/IPSitesSummary.tpl %%MYSAR%%/www-templates/IPSummary.tpl %%MYSAR%%/www-templates/administration.tpl @@ -95,6 +96,7 @@ %%MYSAR%%/www-templates/header.tpl %%MYSAR%%/www-templates/index.tpl %%MYSAR%%/www-templates/siteusers.tpl +@owner %%MYSAR%%/www-templates.fr_FR/header.tpl %%MYSAR%%/www-templates.fr_FR/IPSummary.tpl %%MYSAR%%/www-templates.fr_FR/details.tpl @@ -128,19 +130,5 @@ %%MYSAR%%/www/images/up-arrow.gif %%MYSAR%%/www/index.php %%MYSAR%%/www/install/index.php -@dirrmtry %%MYSAR%%/bin -@dirrmtry %%MYSAR%%/etc -@dirrmtry %%MYSAR%%/inc/smarty/internals -@dirrmtry %%MYSAR%%/inc/smarty/plugins -@dirrmtry %%MYSAR%%/inc/smarty -@dirrmtry %%MYSAR%%/inc -@dirrmtry %%MYSAR%%/smarty-tmp -@dirrmtry %%MYSAR%%/log -@dirrmtry %%MYSAR%%/www-templates.ru_RU -@dirrmtry %%MYSAR%%/www-templates.fr_FR -@dirrmtry %%MYSAR%%/www-templates.pt_BR -@dirrmtry %%MYSAR%%/www-templates -@dirrmtry %%MYSAR%%/www/images -@dirrmtry %%MYSAR%%/www/install -@dirrmtry %%MYSAR%%/www -@dirrmtry %%MYSAR%% +@dir(%%WWWOWN%%,,) %%MYSAR%%/smarty-tmp +@dir(%%WWWOWN%%,,) %%MYSAR%%/www-templates From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:02:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2146A899; Fri, 10 Oct 2014 22:02:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9054A40; Fri, 10 Oct 2014 22:02:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AM2O5w028522; Fri, 10 Oct 2014 22:02:24 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AM2O9c028520; Fri, 10 Oct 2014 22:02:24 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102202.s9AM2O9c028520@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 22:02:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370610 - head/multimedia/cx88 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:02:25 -0000 Author: antoine Date: Fri Oct 10 22:02:23 2014 New Revision: 370610 URL: https://svnweb.freebsd.org/changeset/ports/370610 QAT: https://qat.redports.org/buildarchive/r370610/ Log: - Allow staging as a regular user - Remove things already provided by USES=kmod Modified: head/multimedia/cx88/Makefile head/multimedia/cx88/pkg-plist Modified: head/multimedia/cx88/Makefile ============================================================================== --- head/multimedia/cx88/Makefile Fri Oct 10 21:47:56 2014 (r370609) +++ head/multimedia/cx88/Makefile Fri Oct 10 22:02:23 2014 (r370610) @@ -15,11 +15,9 @@ LIB_DEPENDS= libjson-c.so:${PORTSDIR}/de BUILD_DEPENDS= ${LOCALBASE}/lib/libezxml.a:${PORTSDIR}/textproc/ezxml \ libtuner>=1.1.2:${PORTSDIR}/multimedia/libtuner -KMODDIR= /boot/modules -PLIST_SUB+= KMODDIR=${KMODDIR} MAKE_ARGS+= LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR} PREFIX=${STAGEDIR}${PREFIX} MAKE_JOBS_UNSAFE= yes -USES= kmod pkgconfig readline +USES= kmod pkgconfig readline uidfix OPTIONS_DEFINE= DEBUG LINUX_COMPAT HAL @@ -48,10 +46,6 @@ MAKE_ARGS+= -D WITH_HAL MAKE_ARGS+= DEFAULT_XML_CONFIG="${EXAMPLESDIR}/cx88.xml.sample" -.if (${OSVERSION} < 802513) || ((${OSVERSION} >= 900000) && (${OSVERSION} < 900041)) -IGNORE= requires kernel support for DRIVER_MODULE_ORDERED macro (FreeBSD 8.3+, FreeBSD 9.0+) -.endif - post-patch: ${REINPLACE_CMD} -e 's|install cx88 |install -s cx88 |g' ${WRKSRC}/client/Makefile Modified: head/multimedia/cx88/pkg-plist ============================================================================== --- head/multimedia/cx88/pkg-plist Fri Oct 10 21:47:56 2014 (r370609) +++ head/multimedia/cx88/pkg-plist Fri Oct 10 22:02:23 2014 (r370610) @@ -14,21 +14,15 @@ include/cx88/cx88_common_ioctl.h include/cx88/cx88_mpeg_ioctl.h include/cx88/cx88_video_ioctl.h include/cx88/cx88_audio_ioctl.h -@dirrm include/iicdev -@dirrm include/cx88 -@dirrm %%EXAMPLESDIR%% -@cwd %%KMODDIR%% -cx88.ko -cx88i2c.ko -iicdev.ko -cx88ir.ko -cx88mpegcore.ko -cx88mpeg.ko -cx88video.ko -cx88audiocore.ko -cx88audio.ko -cx23885.ko -cx23885av.ko -cx23885avfw.ko -@exec kldxref %D -@unexec kldxref %D +/%%KMODDIR%%/cx88.ko +/%%KMODDIR%%/cx88i2c.ko +/%%KMODDIR%%/iicdev.ko +/%%KMODDIR%%/cx88ir.ko +/%%KMODDIR%%/cx88mpegcore.ko +/%%KMODDIR%%/cx88mpeg.ko +/%%KMODDIR%%/cx88video.ko +/%%KMODDIR%%/cx88audiocore.ko +/%%KMODDIR%%/cx88audio.ko +/%%KMODDIR%%/cx23885.ko +/%%KMODDIR%%/cx23885av.ko +/%%KMODDIR%%/cx23885avfw.ko From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:07:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4786C9D1; Fri, 10 Oct 2014 22:07:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1A260A6D; Fri, 10 Oct 2014 22:07:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AM7eio029311; Fri, 10 Oct 2014 22:07:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AM7evO029308; Fri, 10 Oct 2014 22:07:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102207.s9AM7evO029308@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 22:07:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370611 - head/www/speedtest-mini X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:07:41 -0000 Author: antoine Date: Fri Oct 10 22:07:40 2014 New Revision: 370611 URL: https://svnweb.freebsd.org/changeset/ports/370611 QAT: https://qat.redports.org/buildarchive/r370611/ Log: - Allow staging as a regular user - Bump portrevision as files where not packaged with intended owner Modified: head/www/speedtest-mini/Makefile head/www/speedtest-mini/pkg-plist Modified: head/www/speedtest-mini/Makefile ============================================================================== --- head/www/speedtest-mini/Makefile Fri Oct 10 22:02:23 2014 (r370610) +++ head/www/speedtest-mini/Makefile Fri Oct 10 22:07:40 2014 (r370611) @@ -3,7 +3,7 @@ PORTNAME= speedtest-mini PORTVERSION= 2.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= http://c.speedtest.net/mini/ DISTNAME= mini @@ -12,6 +12,7 @@ MAINTAINER= meta+ports@vmeta.jp COMMENT= Mini bandwidth speed test on your own server NO_BUILD= yes +PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" SUB_FILES= pkg-message USES= zip @@ -25,6 +26,5 @@ do-install: ${STAGEDIR}${WWWDIR}/speedtest ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/speedtest/upload.php \ ${STAGEDIR}${WWWDIR}/speedtest - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR} .include Modified: head/www/speedtest-mini/pkg-plist ============================================================================== --- head/www/speedtest-mini/pkg-plist Fri Oct 10 22:02:23 2014 (r370610) +++ head/www/speedtest-mini/pkg-plist Fri Oct 10 22:07:40 2014 (r370611) @@ -1,3 +1,5 @@ +@owner %%WWWOWN%% +@group %%WWWGRP%% %%WWWDIR%%/index.html %%WWWDIR%%/speedtest.swf %%WWWDIR%%/speedtest/random1000x1000.jpg @@ -12,5 +14,7 @@ %%WWWDIR%%/speedtest/random750x750.jpg %%WWWDIR%%/speedtest/swfobject.js %%WWWDIR%%/speedtest/upload.php -@dirrm %%WWWDIR%%/speedtest -@dirrm %%WWWDIR%% +@dir %%WWWDIR%%/speedtest +@dir %%WWWDIR%% +@owner +@group From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:27:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2385D34; Fri, 10 Oct 2014 22:27:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E387C14; Fri, 10 Oct 2014 22:27:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AMRbAr038952; Fri, 10 Oct 2014 22:27:37 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AMRb6Q038951; Fri, 10 Oct 2014 22:27:37 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102227.s9AMRb6Q038951@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 22:27:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370612 - head/devel/py-xcaplib X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:27:37 -0000 Author: antoine Date: Fri Oct 10 22:27:36 2014 New Revision: 370612 URL: https://svnweb.freebsd.org/changeset/ports/370612 QAT: https://qat.redports.org/buildarchive/r370612/ Log: Remove plist redundant with autoplist Deleted: head/devel/py-xcaplib/pkg-plist Modified: head/devel/py-xcaplib/Makefile Modified: head/devel/py-xcaplib/Makefile ============================================================================== --- head/devel/py-xcaplib/Makefile Fri Oct 10 22:07:40 2014 (r370611) +++ head/devel/py-xcaplib/Makefile Fri Oct 10 22:27:36 2014 (r370612) @@ -19,8 +19,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tw RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes +USES= python +USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:30:56 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E717AE5D; Fri, 10 Oct 2014 22:30:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D3891CB3; Fri, 10 Oct 2014 22:30:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AMUu9M039999; Fri, 10 Oct 2014 22:30:56 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AMUuJq039998; Fri, 10 Oct 2014 22:30:56 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102230.s9AMUuJq039998@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 22:30:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370613 - head/devel/py-unittestplus X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:30:57 -0000 Author: antoine Date: Fri Oct 10 22:30:56 2014 New Revision: 370613 URL: https://svnweb.freebsd.org/changeset/ports/370613 QAT: https://qat.redports.org/buildarchive/r370613/ Log: Remove plist redundant with autoplist Deleted: head/devel/py-unittestplus/pkg-plist Modified: head/devel/py-unittestplus/Makefile Modified: head/devel/py-unittestplus/Makefile ============================================================================== --- head/devel/py-unittestplus/Makefile Fri Oct 10 22:27:36 2014 (r370612) +++ head/devel/py-unittestplus/Makefile Fri Oct 10 22:30:56 2014 (r370613) @@ -1,19 +1,17 @@ # Created by: Kouki Hashimoto # $FreeBSD$ -PORTNAME= unittestplus -PORTVERSION= 1.1.1 -PORTREVISION= 1 -CATEGORIES= devel python -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PORTNAME= unittestplus +PORTVERSION= 1.1.1 +PORTREVISION= 1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= hsmtkk@gmail.com -COMMENT= Test utilities built on unittest +MAINTAINER= hsmtkk@gmail.com +COMMENT= Test utilities built on unittest -USES= zip -USE_PYTHON= yes -USE_PYDISTUTILS= yes -PYDISTUTILS_AUTOPLIST= yes +USES= python zip +USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:33:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDEC2F59; Fri, 10 Oct 2014 22:33:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA6BCCCA; Fri, 10 Oct 2014 22:33:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AMXliB043375; Fri, 10 Oct 2014 22:33:47 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AMXlHD043374; Fri, 10 Oct 2014 22:33:47 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102233.s9AMXlHD043374@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 22:33:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370614 - head/www/py-twistedWeb2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:33:48 -0000 Author: antoine Date: Fri Oct 10 22:33:47 2014 New Revision: 370614 URL: https://svnweb.freebsd.org/changeset/ports/370614 QAT: https://qat.redports.org/buildarchive/r370614/ Log: Remove plist redundant with autoplist Deleted: head/www/py-twistedWeb2/pkg-plist Modified: head/www/py-twistedWeb2/Makefile Modified: head/www/py-twistedWeb2/Makefile ============================================================================== --- head/www/py-twistedWeb2/Makefile Fri Oct 10 22:30:56 2014 (r370613) +++ head/www/py-twistedWeb2/Makefile Fri Oct 10 22:33:47 2014 (r370614) @@ -16,9 +16,7 @@ LICENSE= MIT WRKSRC= ${WRKDIR}/TwistedWeb2-${PORTVERSION} -USE_PYTHON= yes -USE_PYDISTUTILS=yes -PYDISTUTILS_AUTOPLIST= yes -USES= tar:bzip2 twisted +USES= python tar:bzip2 twisted +USE_PYTHON= distutils autoplist .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:36:42 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23B2CE0; Fri, 10 Oct 2014 22:36:42 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9F0BCE0; Fri, 10 Oct 2014 22:36:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9AMaf0V043849; Fri, 10 Oct 2014 22:36:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9AMafj3043848; Fri, 10 Oct 2014 22:36:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410102236.s9AMafj3043848@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 10 Oct 2014 22:36:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370615 - head/devel/py-mccabe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:36:42 -0000 Author: antoine Date: Fri Oct 10 22:36:41 2014 New Revision: 370615 URL: https://svnweb.freebsd.org/changeset/ports/370615 QAT: https://qat.redports.org/buildarchive/r370615/ Log: Remove plist redundant with autoplist Deleted: head/devel/py-mccabe/pkg-plist From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 22:49:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73E18249; Fri, 10 Oct 2014 22:49:11 +0000 (UTC) Received: from mail-qa0-x230.google.com (mail-qa0-x230.google.com [IPv6:2607:f8b0:400d:c00::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0381DDAB; Fri, 10 Oct 2014 22:49:10 +0000 (UTC) Received: by mail-qa0-f48.google.com with SMTP id dc16so2291293qab.21 for ; Fri, 10 Oct 2014 15:49:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=1NKEIvO74iLQIZi/YVe0Xo3E0PipxEUDvsA8okUVGJQ=; b=BkYqR8BPGmR7Sf9MhGaPtANkE98ru6gmN6SIJCCxOsAmHyhZ5P6PAOaVBNn5+lUHip 6MUSgvsgCLSEXlKXr6f4566gY8nFp5AingurnpiA9AUytaIGP8AxajFz7PJFYuYDYV8q XLMxZY0MuM996h79X164unCyt6aF6+QtL1Gkw7+skC6CviikxLkR/IK4ESkh6rXieP80 Cl6Yq20SyMYwlNrG6J6z8x4oisgmYYMtqE3Yn2D0MFQbGk7HfRJotou/ZLgZrgDDCiAl FLkbFdwx6MGGcOGkw1dk2vP62VmxHlCQkzf5Vb0r6ZRjHczTNjGS6/+4jJ9LG7jitdNa LQYA== MIME-Version: 1.0 X-Received: by 10.140.83.208 with SMTP id j74mr12922283qgd.91.1412981350091; Fri, 10 Oct 2014 15:49:10 -0700 (PDT) Sender: william88@gmail.com Received: by 10.140.106.71 with HTTP; Fri, 10 Oct 2014 15:49:10 -0700 (PDT) In-Reply-To: <201410102236.s9AMafj3043848@svn.freebsd.org> References: <201410102236.s9AMafj3043848@svn.freebsd.org> Date: Fri, 10 Oct 2014 19:49:10 -0300 X-Google-Sender-Auth: qKGYgIGVQF4xdpogz6maU9OCMRY Message-ID: Subject: Re: svn commit: r370615 - head/devel/py-mccabe From: William Grzybowski To: Antoine Brodin Content-Type: text/plain; charset=UTF-8 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , ports-committers X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 22:49:11 -0000 On Fri, Oct 10, 2014 at 7:36 PM, Antoine Brodin wrote: > Author: antoine > Date: Fri Oct 10 22:36:41 2014 > New Revision: 370615 > URL: https://svnweb.freebsd.org/changeset/ports/370615 > QAT: https://qat.redports.org/buildarchive/r370615/ > > Log: > Remove plist redundant with autoplist > > Deleted: > head/devel/py-mccabe/pkg-plist Thanks! I've totally missed. -- William Grzybowski / wg FreeBSD Ports Committer From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 23:35:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0978DAF2; Fri, 10 Oct 2014 23:35:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E958922F; Fri, 10 Oct 2014 23:35:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ANZ007072558; Fri, 10 Oct 2014 23:35:00 GMT (envelope-from stephen@FreeBSD.org) Received: (from stephen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ANZ0fB072553; Fri, 10 Oct 2014 23:35:00 GMT (envelope-from stephen@FreeBSD.org) Message-Id: <201410102335.s9ANZ0fB072553@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: stephen set sender to stephen@FreeBSD.org using -f From: Stephen Montgomery-Smith Date: Fri, 10 Oct 2014 23:35:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370616 - head/math/octave-forge-ltfat X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 23:35:01 -0000 Author: stephen Date: Fri Oct 10 23:34:59 2014 New Revision: 370616 URL: https://svnweb.freebsd.org/changeset/ports/370616 QAT: https://qat.redports.org/buildarchive/r370616/ Log: Update to 2.0.1. Modified: head/math/octave-forge-ltfat/Makefile head/math/octave-forge-ltfat/distinfo Modified: head/math/octave-forge-ltfat/Makefile ============================================================================== --- head/math/octave-forge-ltfat/Makefile Fri Oct 10 22:36:41 2014 (r370615) +++ head/math/octave-forge-ltfat/Makefile Fri Oct 10 23:34:59 2014 (r370616) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= octave-forge-ltfat -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org Modified: head/math/octave-forge-ltfat/distinfo ============================================================================== --- head/math/octave-forge-ltfat/distinfo Fri Oct 10 22:36:41 2014 (r370615) +++ head/math/octave-forge-ltfat/distinfo Fri Oct 10 23:34:59 2014 (r370616) @@ -1,2 +1,2 @@ -SHA256 (octave-forge/ltfat-2.0.0.tar.gz) = 392a2a80648a1c3f9cd0620ca9910382f2977cb34e7dc21fde7820580afa40c0 -SIZE (octave-forge/ltfat-2.0.0.tar.gz) = 2551342 +SHA256 (octave-forge/ltfat-2.0.1.tar.gz) = d92432994d648069a04bbd00333c394c9ff6fe09ac2d41d0ad2139e477ef110d +SIZE (octave-forge/ltfat-2.0.1.tar.gz) = 2636551 From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 23:37:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3DCB1BF2; Fri, 10 Oct 2014 23:37:51 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1EC0524E; Fri, 10 Oct 2014 23:37:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ANboNt073132; Fri, 10 Oct 2014 23:37:50 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ANbnUL073121; Fri, 10 Oct 2014 23:37:49 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410102337.s9ANbnUL073121@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 10 Oct 2014 23:37:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370617 - in head/net-mgmt: . rancid3 rancid3/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 23:37:51 -0000 Author: feld Date: Fri Oct 10 23:37:48 2014 New Revision: 370617 URL: https://svnweb.freebsd.org/changeset/ports/370617 QAT: https://qat.redports.org/buildarchive/r370617/ Log: New port: net-mgmt/rancid3 I'm creating an entirely new port for rancid 3.x as the syntax for the router.db file is different and a blind upgrade will cause deletion of backed up devices and their configs from the repository if the user doesn't stop the cron jobs before updating the syntax. PR: 193351 Added: head/net-mgmt/rancid3/ head/net-mgmt/rancid3/Makefile - copied, changed from r369729, head/net-mgmt/rancid/Makefile head/net-mgmt/rancid3/distinfo - copied, changed from r369729, head/net-mgmt/rancid/distinfo head/net-mgmt/rancid3/files/ - copied from r369729, head/net-mgmt/rancid/files/ head/net-mgmt/rancid3/pkg-descr - copied unchanged from r369729, head/net-mgmt/rancid/pkg-descr head/net-mgmt/rancid3/pkg-plist - copied, changed from r369729, head/net-mgmt/rancid/pkg-plist Modified: head/net-mgmt/Makefile head/net-mgmt/rancid3/files/patch-etc__Makefile.am head/net-mgmt/rancid3/files/patch-etc__Makefile.in Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Fri Oct 10 23:34:59 2014 (r370616) +++ head/net-mgmt/Makefile Fri Oct 10 23:37:48 2014 (r370617) @@ -266,6 +266,7 @@ SUBDIR += qkismet SUBDIR += rackmonkey SUBDIR += rancid + SUBDIR += rancid3 SUBDIR += rate SUBDIR += rcpd SUBDIR += remarp Copied and modified: head/net-mgmt/rancid3/Makefile (from r369729, head/net-mgmt/rancid/Makefile) ============================================================================== --- head/net-mgmt/rancid/Makefile Wed Oct 1 14:47:45 2014 (r369729, copy source) +++ head/net-mgmt/rancid3/Makefile Fri Oct 10 23:37:48 2014 (r370617) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= rancid -PORTVERSION= 2.3.8 -PORTREVISION= 2 +PORTVERSION= 3.1 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.shrubbery.net/pub/rancid/ +PKGNAMESUFFIX= 3 -MAINTAINER= jmohacsi@bsd.hu +MAINTAINER= feld@FreeBSD.org COMMENT= Really Awesome New Cisco confIg Differ LIB_DEPENDS= libexpect.so:${PORTSDIR}/lang/expect @@ -35,6 +35,8 @@ OPTIONS_DEFAULT= SVN_DESC= Use Subversion instead of CVS +CONFLICTS= rancid-[0-9]* + .include .if ${PORT_OPTIONS:MSVN} Copied and modified: head/net-mgmt/rancid3/distinfo (from r369729, head/net-mgmt/rancid/distinfo) ============================================================================== --- head/net-mgmt/rancid/distinfo Wed Oct 1 14:47:45 2014 (r369729, copy source) +++ head/net-mgmt/rancid3/distinfo Fri Oct 10 23:37:48 2014 (r370617) @@ -1,2 +1,2 @@ -SHA256 (rancid-2.3.8.tar.gz) = 44e44c87a22968d5229c01d60aa46960da023a24846eef43f9e3c8d70fd5b3fb -SIZE (rancid-2.3.8.tar.gz) = 379908 +SHA256 (rancid-3.1.tar.gz) = ad5b6814d2ae8ede69b1cd07a5e4406df92cf3d5ba6846daf57c2c1aeb273102 +SIZE (rancid-3.1.tar.gz) = 435045 Modified: head/net-mgmt/rancid3/files/patch-etc__Makefile.am ============================================================================== --- head/net-mgmt/rancid/files/patch-etc__Makefile.am Wed Oct 1 14:47:45 2014 (r369729) +++ head/net-mgmt/rancid3/files/patch-etc__Makefile.am Fri Oct 10 23:37:48 2014 (r370617) @@ -1,6 +1,6 @@ ---- ./etc/Makefile.am.orig 2010-02-27 09:49:56.000000000 +0100 -+++ ./etc/Makefile.am 2012-04-09 23:03:03.000000000 +0200 -@@ -58,26 +58,8 @@ +--- etc/Makefile.am.orig 2014-09-05 15:59:52 UTC ++++ etc/Makefile.am +@@ -25,30 +25,10 @@ endif install-data-local: all @@ -14,6 +14,9 @@ - else \ - $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir)/rancid.conf; \ - fi; \ +- if test ! -f $(DESTDIR)$(sysconfdir)/rancid.types.conf ; then \ +- $(INSTALL_DATA) rancid.types.conf $(DESTDIR)$(sysconfdir)/rancid.types.conf; \ +- fi; \ - if test -f $(DESTDIR)$(sysconfdir)/lg.conf ; then \ - echo ""; \ - echo "WARNING: *** $(DESTDIR)$(sysconfdir)/lg.conf exists. See "; \ @@ -23,9 +26,12 @@ - else \ - $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir)/lg.conf; \ - fi; \ -- fi +- fi; \ +- $(INSTALL_DATA) rancid.types.base $(DESTDIR)$(sysconfdir)/rancid.types.base + $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir) ++ #$(INSTALL_DATA) rancid.types.conf $(DESTDIR)$(sysconfdir) + $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir) ++ $(INSTALL_DATA) rancid.types.base $(DESTDIR)$(sysconfdir) #clean: # rm -f Makefile rancid.conf $(BIN_DATAS) $(BIN_PROGS) Modified: head/net-mgmt/rancid3/files/patch-etc__Makefile.in ============================================================================== --- head/net-mgmt/rancid/files/patch-etc__Makefile.in Wed Oct 1 14:47:45 2014 (r369729) +++ head/net-mgmt/rancid3/files/patch-etc__Makefile.in Fri Oct 10 23:37:48 2014 (r370617) @@ -1,6 +1,6 @@ ---- ./etc/Makefile.in.orig 2011-11-17 22:10:11.000000000 +0100 -+++ ./etc/Makefile.in 2012-04-09 23:03:03.000000000 +0200 -@@ -423,26 +423,8 @@ +--- etc/Makefile.in.orig 2014-09-05 15:59:57 UTC ++++ etc/Makefile.in +@@ -520,30 +520,10 @@ install-data-local: all @@ -14,6 +14,9 @@ - else \ - $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir)/rancid.conf; \ - fi; \ +- if test ! -f $(DESTDIR)$(sysconfdir)/rancid.types.conf ; then \ +- $(INSTALL_DATA) rancid.types.conf $(DESTDIR)$(sysconfdir)/rancid.types.conf; \ +- fi; \ - if test -f $(DESTDIR)$(sysconfdir)/lg.conf ; then \ - echo ""; \ - echo "WARNING: *** $(DESTDIR)$(sysconfdir)/lg.conf exists. See "; \ @@ -23,9 +26,12 @@ - else \ - $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir)/lg.conf; \ - fi; \ -- fi +- fi; \ +- $(INSTALL_DATA) rancid.types.base $(DESTDIR)$(sysconfdir)/rancid.types.base + $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir) ++ #$(INSTALL_DATA) rancid.types.conf $(DESTDIR)$(sysconfdir) + $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir) ++ $(INSTALL_DATA) rancid.types.base $(DESTDIR)$(sysconfdir) lg.conf.sample: Makefile $(srcdir)/lg.conf.sample.in rm -f lg.conf.sample lg.conf.sample.tmp; \ Copied: head/net-mgmt/rancid3/pkg-descr (from r369729, head/net-mgmt/rancid/pkg-descr) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/rancid3/pkg-descr Fri Oct 10 23:37:48 2014 (r370617, copy of r369729, head/net-mgmt/rancid/pkg-descr) @@ -0,0 +1,16 @@ +Rancid monitors a router's (or device's) configuration, including software +and hardware (cards, serial numbers, etc), using CVS. Rancid currently +supports Bay routers, Cisco routers, Juniper routers, Catalyst switches, +Foundry switches, Redback NASs, ADC EZT3 muxes, MRTd (and thus likely IRRd), +Alteon switches, HP Procurve switches, Hitachi routers. + +Rancid logs into each of the devices in a router table file, runs various +commands, chomps the output, and emails any differences from the previous +collection to a mail list. + +A looking glass is also included with rancid, based on Ed Kern's in use on +http://nitrous.digex.net/. Rancid version has added functions, supports Cisco, +Juniper, and Foundry and uses the login scripts that come with rancid; +so it can use rsh, telnet, or ssh to connect to your router(s). + +WWW: http://www.shrubbery.net/rancid/ Copied and modified: head/net-mgmt/rancid3/pkg-plist (from r369729, head/net-mgmt/rancid/pkg-plist) ============================================================================== --- head/net-mgmt/rancid/pkg-plist Wed Oct 1 14:47:45 2014 (r369729, copy source) +++ head/net-mgmt/rancid3/pkg-plist Fri Oct 10 23:37:48 2014 (r370617) @@ -1,10 +1,18 @@ -@exec mkdir -p %D/var/rancid -@exec chmod 775 %D/var/rancid -@dirrmtry var bin/rancid-cvs bin/rancid-run +lib/rancid/arbor.pm +lib/rancid/dell.pm +lib/rancid/eos.pm +lib/rancid/foundry.pm +lib/rancid/ios.pm +lib/rancid/iosxr.pm +lib/rancid/junos.pm +lib/rancid/mrv.pm +lib/rancid/rancid.pm libexec/rancid/alogin +libexec/rancid/anlogin libexec/rancid/arancid +libexec/rancid/anrancid libexec/rancid/arrancid libexec/rancid/avologin libexec/rancid/avorancid @@ -13,8 +21,10 @@ libexec/rancid/blogin libexec/rancid/brancid libexec/rancid/cat5rancid libexec/rancid/clogin +libexec/rancid/complogin libexec/rancid/control_rancid libexec/rancid/cssrancid +libexec/rancid/dllogin libexec/rancid/elogin libexec/rancid/erancid libexec/rancid/f10rancid @@ -22,7 +32,6 @@ libexec/rancid/f5rancid libexec/rancid/flogin libexec/rancid/fnrancid libexec/rancid/fnlogin -libexec/rancid/francid libexec/rancid/hlogin libexec/rancid/hpuifilter libexec/rancid/hrancid @@ -30,12 +39,10 @@ libexec/rancid/htlogin libexec/rancid/htrancid libexec/rancid/jerancid libexec/rancid/jlogin -libexec/rancid/jrancid libexec/rancid/lg.cgi libexec/rancid/lgform.cgi libexec/rancid/mrancid libexec/rancid/mrvlogin -libexec/rancid/mrvrancid libexec/rancid/mtlogin libexec/rancid/mtrancid libexec/rancid/nlogin @@ -57,11 +64,14 @@ libexec/rancid/tlogin libexec/rancid/trancid libexec/rancid/tntlogin libexec/rancid/tntrancid +libexec/rancid/xilogin +libexec/rancid/xirancid libexec/rancid/xrancid -libexec/rancid/xrrancid libexec/rancid/zrancid man/man1/agmrancid.1.gz man/man1/alogin.1.gz +man/man1/anlogin.1.gz +man/man1/anrancid.1.gz man/man1/arancid.1.gz man/man1/arrancid.1.gz man/man1/avologin.1.gz @@ -70,8 +80,11 @@ man/man1/blogin.1.gz man/man1/brancid.1.gz man/man1/cat5rancid.1.gz man/man1/clogin.1.gz +man/man1/complogin.1.gz +man/man1/comprancid.1.gz man/man1/control_rancid.1.gz man/man1/cssrancid.1.gz +man/man1/dllogin.1.gz man/man1/elogin.1.gz man/man1/erancid.1.gz man/man1/f10rancid.1.gz @@ -79,18 +92,15 @@ man/man1/f5rancid.1.gz man/man1/flogin.1.gz man/man1/fnlogin.1.gz man/man1/fnrancid.1.gz -man/man1/francid.1.gz man/man1/hlogin.1.gz man/man1/hrancid.1.gz man/man1/htlogin.1.gz man/man1/htrancid.1.gz man/man1/jerancid.1.gz man/man1/jlogin.1.gz -man/man1/jrancid.1.gz man/man1/lg_intro.1.gz man/man1/mrancid.1.gz man/man1/mrvlogin.1.gz -man/man1/mrvrancid.1.gz man/man1/mtlogin.1.gz man/man1/mtrancid.1.gz man/man1/nlogin.1.gz @@ -100,8 +110,8 @@ man/man1/nsrancid.1.gz man/man1/nxrancid.1.gz man/man1/prancid.1.gz man/man1/rancid-cvs.1.gz -man/man1/rancid-run.1.gz man/man1/rancid-par.1.gz +man/man1/rancid-run.1.gz man/man1/rancid.1.gz man/man1/rancid_intro.1.gz man/man1/rivlogin.1.gz @@ -112,15 +122,20 @@ man/man1/tlogin.1.gz man/man1/tntlogin.1.gz man/man1/tntrancid.1.gz man/man1/trancid.1.gz +man/man1/xilogin.1.gz +man/man1/xirancid.1.gz man/man1/xrancid.1.gz -man/man1/xrrancid.1.gz man/man1/zrancid.1.gz +man/man3/rancid.3.gz man/man5/cloginrc.5.gz man/man5/lg.conf.5.gz man/man5/rancid.conf.5.gz +man/man5/rancid.types.base.5.gz +man/man5/rancid.types.conf.5.gz man/man5/router.db.5.gz -etc/rancid/lg.conf.sample -etc/rancid/rancid.conf.sample +%%ETCDIR%%/rancid.types.base +@sample %%ETCDIR%%/lg.conf.sample +@sample %%ETCDIR%%/rancid.conf.sample %%DATADIR%%/CHANGES %%DATADIR%%/COPYING %%DATADIR%%/FAQ @@ -139,7 +154,4 @@ etc/rancid/rancid.conf.sample %%DATADIR%%/rancid-cvspurge %%DATADIR%%/rancid.conf.sample %%DATADIR%%/rtrfilter -@dirrm %%DATADIR%% -@dirrm var/rancid -@dirrm etc/rancid -@dirrm libexec/rancid +@dir(,,755) var/rancid From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 23:49:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72733F0C; Fri, 10 Oct 2014 23:49:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E48334C; Fri, 10 Oct 2014 23:49:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9ANnLPO078243; Fri, 10 Oct 2014 23:49:21 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9ANnLal078242; Fri, 10 Oct 2014 23:49:21 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410102349.s9ANnLal078242@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 10 Oct 2014 23:49:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370618 - head/sysutils/busybox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 23:49:21 -0000 Author: mandree Date: Fri Oct 10 23:49:20 2014 New Revision: 370618 URL: https://svnweb.freebsd.org/changeset/ports/370618 QAT: https://qat.redports.org/buildarchive/r370618/ Log: + Add a STATIC ports option to build a static executable [1]. + USE_BZIP2 -> USES=...tar:bz2. + Move PORTSCOUT line down to appease portlint. + No PORTREVISION bump for now, no functional change unless options changed. PR: 194294 [1] Submitted by: bdrewery [1] Modified: head/sysutils/busybox/Makefile Modified: head/sysutils/busybox/Makefile ============================================================================== --- head/sysutils/busybox/Makefile Fri Oct 10 23:37:48 2014 (r370617) +++ head/sysutils/busybox/Makefile Fri Oct 10 23:49:20 2014 (r370618) @@ -19,20 +19,21 @@ COMMENT= Busybox for FreeBSD LICENSE= GPLv2 -PORTSCOUT= skipv:1.23.0 - BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed CONFLICTS_INSTALL= busybox-unstable-* +PORTSCOUT= skipv:1.23.0 + MAKE_ARGS+= SKIP_STRIP=y CC="${CC}" HOSTCC="${CC}" CXX="${CXX}" HOSTCXX="${CXX}" -USE_BZIP2= yes # findutils/find.c l. 752+, uses a GCC extension/invalid C code: -USES= compiler:nestedfct gmake +USES= compiler:nestedfct gmake tar:bz2 PLIST_FILES= bin/busybox -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS STATIC + +STATIC_LDFLAGS= -static .include From owner-svn-ports-head@FreeBSD.ORG Fri Oct 10 23:50:01 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4B6F7FF8; Fri, 10 Oct 2014 23:50:01 +0000 (UTC) Received: from mst-rip6-missouri-out.um.umsystem.edu (mst-rip6-missouri-out.um.umsystem.edu [198.209.50.149]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "um-tip1.um.umsystem.edu", Issuer "InCommon Server CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C4324356; Fri, 10 Oct 2014 23:50:00 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ag0FAP5vOFTPoJ7U/2dsb2JhbABggw5TXIMCyCOHTQIZahYBe4QEAQEEIxFEEQIBCBQEAgIFFgsCAgIHAwIBAgEgFRACBAEMCAEBiDoNqxqOX4YSAQEBAQYBAQEBAQEBFwSBLI5lGCKCd4FUBZF5hEKdIYN3gjSBAgEBAQ X-IPAS-Result: Ag0FAP5vOFTPoJ7U/2dsb2JhbABggw5TXIMCyCOHTQIZahYBe4QEAQEEIxFEEQIBCBQEAgIFFgsCAgIHAwIBAgEgFRACBAEMCAEBiDoNqxqOX4YSAQEBAQYBAQEBAQEBFwSBLI5lGCKCd4FUBZF5hEKdIYN3gjSBAgEBAQ Received: from um-ncas6.um.umsystem.edu ([207.160.158.212]) by mst-rip6-exch-relay.um.umsystem.edu with ESMTP; 10 Oct 2014 18:48:50 -0500 Received: from UM-MBX-N02.um.umsystem.edu ([169.254.5.240]) by UM-NCAS6.um.umsystem.edu ([207.160.158.212]) with mapi id 14.03.0210.002; Fri, 10 Oct 2014 18:48:50 -0500 From: "Montgomery-Smith, Stephen" To: Antoine Brodin , "ports-committers@freebsd.org" , "svn-ports-all@freebsd.org" , "svn-ports-head@freebsd.org" Subject: Re: svn commit: r370492 - head/math/octave-forge Thread-Topic: svn commit: r370492 - head/math/octave-forge Thread-Index: AQHP40i0di5W2bSWI0W+cp/x42sEJZwqVreA Date: Fri, 10 Oct 2014 23:48:49 +0000 Message-ID: <5438705F.1030706@missouri.edu> References: <201410082231.s98MVenn055321@svn.freebsd.org> In-Reply-To: <201410082231.s98MVenn055321@svn.freebsd.org> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.1.2 x-originating-ip: [207.160.158.206] Content-Type: text/plain; charset="utf-8" Content-ID: <034489969C91E144B0886E0CE22F6C2F@missouri.edu> Content-Transfer-Encoding: base64 MIME-Version: 1.0 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2014 23:50:01 -0000 T24gMTAvMDgvMjAxNCAwNTozMSBQTSwgQW50b2luZSBCcm9kaW4gd3JvdGU6DQo+IEF1dGhvcjog YW50b2luZQ0KPiBEYXRlOiBXZWQgT2N0ICA4IDIyOjMxOjQwIDIwMTQNCj4gTmV3IFJldmlzaW9u OiAzNzA0OTINCj4gVVJMOiBodHRwczovL3N2bndlYi5mcmVlYnNkLm9yZy9jaGFuZ2VzZXQvcG9y dHMvMzcwNDkyDQo+IFFBVDogaHR0cHM6Ly9xYXQucmVkcG9ydHMub3JnL2J1aWxkYXJjaGl2ZS9y MzcwNDkyLw0KPiANCj4gTG9nOg0KPiAgIFJlbW92ZSBMVEZBVCBvcHRpb24gZnJvbSBvY3RhdmUt Zm9yZ2UsIHRoZSBwYWNrYWdlIGJ1aWxkZXJzIGFyZSBnZXR0aW5nDQo+ICAgY3Jhenkgd2l0aCB0 aGlzDQoNCkkganVzdCB1cGRhdGVkIG1hdGgvb2N0YXZlLWZvcmdlLWx0ZmF0LCBidXQgaXQgZG9l c24ndCBmaXggdGhpcyBwcm9ibGVtLg0KIFNvIGRvbid0IHJlLWVuYWJsZSB0aGlzIHlldC4NCg== From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 00:28:13 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC8546DB; Sat, 11 Oct 2014 00:28:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C87B190A; Sat, 11 Oct 2014 00:28:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B0SDHZ098522; Sat, 11 Oct 2014 00:28:13 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B0SDSj098520; Sat, 11 Oct 2014 00:28:13 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201410110028.s9B0SDSj098520@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 11 Oct 2014 00:28:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370619 - head/devel/astah-community X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 00:28:14 -0000 Author: tota Date: Sat Oct 11 00:28:12 2014 New Revision: 370619 URL: https://svnweb.freebsd.org/changeset/ports/370619 QAT: https://qat.redports.org/buildarchive/r370619/ Log: - Update to 6.9.0 Modified: head/devel/astah-community/Makefile head/devel/astah-community/distinfo Modified: head/devel/astah-community/Makefile ============================================================================== --- head/devel/astah-community/Makefile Fri Oct 10 23:49:20 2014 (r370618) +++ head/devel/astah-community/Makefile Sat Oct 11 00:28:12 2014 (r370619) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= astah -PORTVERSION= 6.8.0 +PORTVERSION= 6.9.0 CATEGORIES= devel java MASTER_SITES= # PKGNAMESUFFIX= -community @@ -21,7 +21,7 @@ RESTRICTED= License restrictions -- See USES= zip USE_JAVA= yes JAVA_VERSION= 1.7+ -REVISION= d254c5 +REVISION= b4c6e9 WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX:S!-!_!} @@ -32,7 +32,7 @@ PORTDOCS= API_sample_program_license_agr api PORTEXAMPLES= astah-key.properties_org Sample.asta PORTDATA= astah-community.jar astah-api.jar astah-gui_en.properties_org \ - astah.ico astah-doc.ico Welcome.asta Welcome_ja.asta \ + astah.ico astah-doc.ico \ lib template NO_BUILD= yes Modified: head/devel/astah-community/distinfo ============================================================================== --- head/devel/astah-community/distinfo Fri Oct 10 23:49:20 2014 (r370618) +++ head/devel/astah-community/distinfo Sat Oct 11 00:28:12 2014 (r370619) @@ -1,2 +1,2 @@ -SHA256 (astah-community-6_8_0-d254c5.zip) = b19ebc2b9a2f9ff5ed549ea76c490029cdb705977c5dcae74db48284700aafe9 -SIZE (astah-community-6_8_0-d254c5.zip) = 28800835 +SHA256 (astah-community-6_9_0-b4c6e9.zip) = d742429959ca325077fd649f644d83f379cbc5afb4d4a030a007debee7a5a2fd +SIZE (astah-community-6_9_0-b4c6e9.zip) = 27339223 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 00:28:32 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 764767C4; Sat, 11 Oct 2014 00:28:32 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48D5D910; Sat, 11 Oct 2014 00:28:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B0SW5Z098709; Sat, 11 Oct 2014 00:28:32 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B0SVfr098702; Sat, 11 Oct 2014 00:28:31 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201410110028.s9B0SVfr098702@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 11 Oct 2014 00:28:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370620 - in head: . net-mgmt/rancid3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 00:28:32 -0000 Author: feld Date: Sat Oct 11 00:28:30 2014 New Revision: 370620 URL: https://svnweb.freebsd.org/changeset/ports/370620 QAT: https://qat.redports.org/buildarchive/r370620/ Log: Add an official rancid user and set the home directory This will speed up initial setup for new endusers Modified: head/GIDs head/UIDs head/net-mgmt/rancid3/Makefile head/net-mgmt/rancid3/pkg-plist Modified: head/GIDs ============================================================================== --- head/GIDs Sat Oct 11 00:28:12 2014 (r370619) +++ head/GIDs Sat Oct 11 00:28:30 2014 (r370620) @@ -151,6 +151,7 @@ spread:*:282: devmon:*:283: vnstat:*:284: exaddos:*:285:exaddos +rancid:*:286: backuppc:*:300: _sphinx:*:312: dkfilter:*:325: Modified: head/UIDs ============================================================================== --- head/UIDs Sat Oct 11 00:28:12 2014 (r370619) +++ head/UIDs Sat Oct 11 00:28:30 2014 (r370620) @@ -157,6 +157,7 @@ spread:*:282:282::0:0:Spread user:/nonex devmon:*:283:283::0:0:devmon monitor:/nonexistent:/usr/sbin/nologin vnstat:*:284:284::0:0:vnStat Network Monitor:/nonexistent:/usr/sbin/nologin exaddos:*:285:285::0:0:exaddos daemon user:/nonexistent:/usr/sbin/nologin +rancid:*:286:286::0:0:RANCID daemon user:/usr/local/var/rancid:/bin/sh backuppc:*:300:300::0:0:BackupPC pseudo-user:/nonexistent:/usr/sbin/nologin _sphinx:*:312:312::0:0:Sphinxsearch Owner:/nonexistent:/usr/sbin/nologin dkfilter:*:325:325::0:0:DK Filter Owner:/nonexistent:/usr/sbin/nologin Modified: head/net-mgmt/rancid3/Makefile ============================================================================== --- head/net-mgmt/rancid3/Makefile Sat Oct 11 00:28:12 2014 (r370619) +++ head/net-mgmt/rancid3/Makefile Sat Oct 11 00:28:30 2014 (r370620) @@ -3,6 +3,7 @@ PORTNAME= rancid PORTVERSION= 3.1 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.shrubbery.net/pub/rancid/ PKGNAMESUFFIX= 3 @@ -17,6 +18,9 @@ USES= gmake perl5 shebangfix perl_OLD_CMD= @PERLV_PATH@ SHEBANG_FILES= bin/* +USERS= rancid +GROUPS= rancid + SUB_FILES= pkg-message GNU_CONFIGURE= yes Modified: head/net-mgmt/rancid3/pkg-plist ============================================================================== --- head/net-mgmt/rancid3/pkg-plist Sat Oct 11 00:28:12 2014 (r370619) +++ head/net-mgmt/rancid3/pkg-plist Sat Oct 11 00:28:30 2014 (r370620) @@ -154,4 +154,4 @@ man/man5/router.db.5.gz %%DATADIR%%/rancid-cvspurge %%DATADIR%%/rancid.conf.sample %%DATADIR%%/rtrfilter -@dir(,,755) var/rancid +@dir(rancid,rancid,755) var/rancid From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 01:00:47 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB552DDE; Sat, 11 Oct 2014 01:00:47 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96D1DBAB; Sat, 11 Oct 2014 01:00:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B10lH9017058; Sat, 11 Oct 2014 01:00:47 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B10kdJ017053; Sat, 11 Oct 2014 01:00:46 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410110100.s9B10kdJ017053@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 11 Oct 2014 01:00:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370621 - in head/net: . tcptraceroute-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 01:00:47 -0000 Author: mandree Date: Sat Oct 11 01:00:45 2014 New Revision: 370621 URL: https://svnweb.freebsd.org/changeset/ports/370621 QAT: https://qat.redports.org/buildarchive/r370621/ Log: Revive net/tcptraceroute-devel port, with a new maintainer. Update MASTER_SITES, add LICENSE. NOTE: this has some minor changes over the original submission, detailed in the PR. PR: 193511 Submitted by: C. Hutchinson Added: head/net/tcptraceroute-devel/ - copied from r366966, head/net/tcptraceroute-devel/ Modified: head/net/Makefile head/net/tcptraceroute-devel/Makefile head/net/tcptraceroute-devel/pkg-descr head/net/tcptraceroute-devel/pkg-plist Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Oct 11 00:28:30 2014 (r370620) +++ head/net/Makefile Sat Oct 11 01:00:45 2014 (r370621) @@ -1143,6 +1143,7 @@ SUBDIR += tcpstat SUBDIR += tcptrace SUBDIR += tcptraceroute + SUBDIR += tcptraceroute-devel SUBDIR += tcpview SUBDIR += tcpwatch SUBDIR += tcpxd Modified: head/net/tcptraceroute-devel/Makefile ============================================================================== --- head/net/tcptraceroute-devel/Makefile Mon Sep 1 22:01:24 2014 (r366966) +++ head/net/tcptraceroute-devel/Makefile Sat Oct 11 01:00:45 2014 (r370621) @@ -5,41 +5,33 @@ PORTNAME= tcptraceroute DISTVERSION= 1.5beta7 PORTREVISION= 1 CATEGORIES= net -MASTER_SITES= http://michael.toren.net/code/tcptraceroute/ \ +MASTER_SITES= http://BSDforge.com/projects/source/net/tcptraceroute/ \ http://pflog.net/tcptraceroute/ PKGNAMESUFFIX= -devel -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@bsdforge.com COMMENT= Traceroute implementation using TCP packets +LICENSE= GPLv2 + LIB_DEPENDS= libnet.so:${PORTSDIR}/net/libnet CONFLICTS= tcptraceroute-1.4* +PORTDOCS= tcptraceroute.1.html tcptraceroute.lsm AUTHORS \ + COPYING ChangeLog NEWS README examples.txt + +OPTIONS_DEFINE= DOCS USES= gmake GNU_CONFIGURE= yes -MAN1= tcptraceroute.1 - LIBNET_CONFIG?= ${LOCALBASE}/bin/libnet11-config -CONFIGURE_ARGS= --with-libpcap=/usr --bindir=${PREFIX}/sbin - -INSTALL_TARGET= install-exec-am install-man +CONFIGURE_ARGS= --with-libpcap=/usr --bindir=${PREFIX}/sbin -NO_STAGE= yes post-install: - @${CHMOD} u+s ${PREFIX}/sbin/tcptraceroute -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/tcptraceroute.1.html ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/tcptraceroute.lsm ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/AUTHORS ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/COPYING ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/ChangeLog ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/NEWS ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/examples.txt ${DOCSDIR} -.endif + @${CHMOD} u+s ${STAGEDIR}${PREFIX}/sbin/tcptraceroute + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include Modified: head/net/tcptraceroute-devel/pkg-descr ============================================================================== --- head/net/tcptraceroute-devel/pkg-descr Mon Sep 1 22:01:24 2014 (r366966) +++ head/net/tcptraceroute-devel/pkg-descr Sat Oct 11 01:00:45 2014 (r370621) @@ -15,4 +15,4 @@ listening for connections on. By sending UDP or ICMP ECHO packets, tcptraceroute is able to bypass the most common firewall filters. -WWW: http://michael.toren.net/code/tcptraceroute/ +WWW: http://BSDforge.com/projects/net/tcptraceroute/ Modified: head/net/tcptraceroute-devel/pkg-plist ============================================================================== --- head/net/tcptraceroute-devel/pkg-plist Mon Sep 1 22:01:24 2014 (r366966) +++ head/net/tcptraceroute-devel/pkg-plist Sat Oct 11 01:00:45 2014 (r370621) @@ -1,10 +1,2 @@ sbin/tcptraceroute -%%PORTDOCS%%%%DOCSDIR%%/tcptraceroute.1.html -%%PORTDOCS%%%%DOCSDIR%%/tcptraceroute.lsm -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/COPYING -%%PORTDOCS%%%%DOCSDIR%%/ChangeLog -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/examples.txt -%%PORTDOCS%%@dirrm %%DOCSDIR%% +man/man1/tcptraceroute.1.gz From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 01:12:16 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A7481AF; Sat, 11 Oct 2014 01:12:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06208D44; Sat, 11 Oct 2014 01:12:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B1CFYf022306; Sat, 11 Oct 2014 01:12:15 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B1CF1K022301; Sat, 11 Oct 2014 01:12:15 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201410110112.s9B1CF1K022301@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 11 Oct 2014 01:12:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370622 - in head/news/diablo: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 01:12:16 -0000 Author: mandree Date: Sat Oct 11 01:12:14 2014 New Revision: 370622 URL: https://svnweb.freebsd.org/changeset/ports/370622 QAT: https://qat.redports.org/buildarchive/r370622/ Log: Rename files/diablo.sh-sample to files/diablo.in. Clean up @dirrmtry from pkg-plist. Bump PORTREVISION. PR: 193855 Submitted by: Nikolai Lifanov (maintainer) Added: head/news/diablo/files/diablo.in (contents, props changed) Deleted: head/news/diablo/files/diablo.sh-sample Modified: head/news/diablo/Makefile head/news/diablo/pkg-plist Modified: head/news/diablo/Makefile ============================================================================== --- head/news/diablo/Makefile Sat Oct 11 01:00:45 2014 (r370621) +++ head/news/diablo/Makefile Sat Oct 11 01:12:14 2014 (r370622) @@ -3,7 +3,7 @@ PORTNAME= diablo PORTVERSION= 5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= news MASTER_SITES= http://www.openusenet.org/diablo/download/ DISTNAME= ${PORTNAME}-${PORTVERSION}-REL @@ -25,12 +25,12 @@ USES= tar:tgz .include post-patch: - ${CP} ${FILESDIR}/diablo.sh-sample ${WRKDIR} + ${CP} ${FILESDIR}/diablo.in ${WRKDIR}/diablo ${REINPLACE_CMD} -E 's|%%PREFIX%%|${STAGEDIR}${PREFIX}|g ;\ s|-g -O.?|${CFLAGS}| ; s|g?cc|${CC}|' \ ${WRKSRC}/XMakefile.inc ${REINPLACE_CMD} -E 's|%%PREFIX%%|${PREFIX}|g' \ - ${WRKDIR}/diablo.sh-sample ${WRKSRC}/XMakefile.inst + ${WRKDIR}/diablo ${WRKSRC}/XMakefile.inst # Fix for GCC 4.2 ${REINPLACE_CMD} -e 's|VServerConfig\[\]|*VServerConfig|' \ ${WRKSRC}/dreaderd/main.c @@ -52,7 +52,7 @@ do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/news/spool/postq (cd ${WRKSRC} && xmake install) @${STRIP_CMD} ${STAGEDIR}${PREFIX}/news/dbin/* - ${INSTALL_SCRIPT} ${WRKDIR}/diablo.sh-sample ${STAGEDIR}${PREFIX}/etc/rc.d + ${INSTALL_SCRIPT} ${WRKDIR}/diablo ${STAGEDIR}${PREFIX}/etc/rc.d ${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} Added: head/news/diablo/files/diablo.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/news/diablo/files/diablo.in Sat Oct 11 01:12:14 2014 (r370622) @@ -0,0 +1,17 @@ +#!/bin/sh + +case $1 in +start) + if [ -x %%PREFIX%%/news/rc.news ] ; then + %%PREFIX%%/news/rc.news && echo -n ' diablo' + fi + ;; +stop) + ;; +*) + echo "Usage: `basename $0` {start|stop}" >&2 + exit 64 + ;; +esac + +exit 0 Modified: head/news/diablo/pkg-plist ============================================================================== --- head/news/diablo/pkg-plist Sat Oct 11 01:00:45 2014 (r370621) +++ head/news/diablo/pkg-plist Sat Oct 11 01:12:14 2014 (r370622) @@ -1,4 +1,4 @@ -etc/rc.d/diablo.sh-sample +etc/rc.d/diablo man/man5/diablo-files.5.gz man/man5/diablo-kp.5.gz man/man8/dexpire.8.gz @@ -124,21 +124,3 @@ news/samples/reader/dserver.hosts news/samples/reader/moderators @owner @group -@dirrmtry news/dbin -@dirrmtry news/dqueue -@dirrmtry news/log -@dirrmtry news/man/man5 -@dirrmtry news/man/man8 -@dirrmtry news/man -@dirrmtry news/run -@dirrmtry news/samples/adm -@dirrmtry news/samples/feeder -@dirrmtry news/samples/feeder+reader -@dirrmtry news/samples/reader -@dirrmtry news/samples -@dirrmtry news/spool/cache -@dirrmtry news/spool/group -@dirrmtry news/spool/news -@dirrmtry news/spool/postq -@dirrmtry news/spool -@dirrmtry news From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 06:55:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3283DDF4; Sat, 11 Oct 2014 06:55:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13EE9EC5; Sat, 11 Oct 2014 06:55:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B6sxF4083030; Sat, 11 Oct 2014 06:54:59 GMT (envelope-from az@FreeBSD.org) Received: (from az@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B6sxIR083027; Sat, 11 Oct 2014 06:54:59 GMT (envelope-from az@FreeBSD.org) Message-Id: <201410110654.s9B6sxIR083027@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: az set sender to az@FreeBSD.org using -f From: Andrej Zverev Date: Sat, 11 Oct 2014 06:54:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370624 - head/sysutils/p5-Rex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 06:55:00 -0000 Author: az Date: Sat Oct 11 06:54:58 2014 New Revision: 370624 URL: https://svnweb.freebsd.org/changeset/ports/370624 QAT: https://qat.redports.org/buildarchive/r370624/ Log: update to 0.54.3 Modified: head/sysutils/p5-Rex/Makefile head/sysutils/p5-Rex/distinfo head/sysutils/p5-Rex/pkg-plist Modified: head/sysutils/p5-Rex/Makefile ============================================================================== --- head/sysutils/p5-Rex/Makefile Sat Oct 11 06:16:56 2014 (r370623) +++ head/sysutils/p5-Rex/Makefile Sat Oct 11 06:54:58 2014 (r370624) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Rex -PORTVERSION= 0.52.1 +PORTVERSION= 0.54.3 CATEGORIES= sysutils perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JFRIED @@ -18,6 +18,7 @@ BUILD_DEPENDS= \ p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC \ p5-HTTP-Date>=0:${PORTSDIR}/www/p5-HTTP-Date \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message \ p5-JSON-XS>=0:${PORTSDIR}/converters/p5-JSON-XS \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-String-Escape>=0:${PORTSDIR}/textproc/p5-String-Escape \ @@ -31,6 +32,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= perl5 shebangfix USE_PERL5= configure +NO_ARCH= yes SHEBANG_FILES= lib/Rex/Commands/templates/append_if_no_such_line.tpl.pl Modified: head/sysutils/p5-Rex/distinfo ============================================================================== --- head/sysutils/p5-Rex/distinfo Sat Oct 11 06:16:56 2014 (r370623) +++ head/sysutils/p5-Rex/distinfo Sat Oct 11 06:54:58 2014 (r370624) @@ -1,2 +1,2 @@ -SHA256 (Rex-0.52.1.tar.gz) = d742f635d9d6c38c96dd4d39fa03c29f9bdbf469afb933996c54d2cef626de44 -SIZE (Rex-0.52.1.tar.gz) = 244627 +SHA256 (Rex-0.54.3.tar.gz) = eb75763befd950f610d8ca40d13a401c711188cbe8b11d6c90f94b1e5014d95f +SIZE (Rex-0.54.3.tar.gz) = 237702 Modified: head/sysutils/p5-Rex/pkg-plist ============================================================================== --- head/sysutils/p5-Rex/pkg-plist Sat Oct 11 06:16:56 2014 (r370623) +++ head/sysutils/p5-Rex/pkg-plist Sat Oct 11 06:54:58 2014 (r370624) @@ -48,6 +48,7 @@ bin/rexify %%PERL5_MAN3%%/Rex::Hardware.3.gz %%PERL5_MAN3%%/Rex::Helper::SSH2::Expect.3.gz %%PERL5_MAN3%%/Rex::Logger.3.gz +%%PERL5_MAN3%%/Rex::Resource::Common.3.gz %%PERL5_MAN3%%/Rex::Task.3.gz %%PERL5_MAN3%%/Rex::Template.3.gz %%PERL5_MAN3%%/Rex::Test::Base.3.gz @@ -88,6 +89,7 @@ bin/rexify %%SITE_PERL%%/Rex/Commands/Host.pm %%SITE_PERL%%/Rex/Commands/Inventory.pm %%SITE_PERL%%/Rex/Commands/Iptables.pm +%%SITE_PERL%%/Rex/Commands/JobControl.pm %%SITE_PERL%%/Rex/Commands/Kernel.pm %%SITE_PERL%%/Rex/Commands/LVM.pm %%SITE_PERL%%/Rex/Commands/MD5.pm @@ -150,7 +152,9 @@ bin/rexify %%SITE_PERL%%/Rex/Helper/SSH2.pm %%SITE_PERL%%/Rex/Helper/SSH2/Expect.pm %%SITE_PERL%%/Rex/Helper/System.pm +%%SITE_PERL%%/Rex/Helper/Misc.pm %%SITE_PERL%%/Rex/Helper/UserAgent.pm +%%SITE_PERL%%/Rex/Helper/URI.pm %%SITE_PERL%%/Rex/Hook.pm %%SITE_PERL%%/Rex/Require.pm %%SITE_PERL%%/Rex/Interface/Cache.pm @@ -247,6 +251,8 @@ bin/rexify %%SITE_PERL%%/Rex/Pkg/Ubuntu.pm %%SITE_PERL%%/Rex/Profiler.pm %%SITE_PERL%%/Rex/Report.pm +%%SITE_PERL%%/Rex/Resource.pm +%%SITE_PERL%%/Rex/Resource/Common.pm %%SITE_PERL%%/Rex/Report/Base.pm %%SITE_PERL%%/Rex/Report/YAML.pm %%SITE_PERL%%/Rex/SCM/Git.pm @@ -347,61 +353,3 @@ bin/rexify %%SITE_PERL%%/%%PERL_ARCH%%/auto/Rex/.packlist man/man1/rex.1.gz man/man1/rexify.1.gz -@dirrmtry %%SITE_PERL%%/Rex/Args -@dirrmtry %%SITE_PERL%%/Rex/Box -@dirrmtry %%SITE_PERL%%/Rex/CMDB -@dirrmtry %%SITE_PERL%%/Rex/Cloud -@dirrmtry %%SITE_PERL%%/Rex/Commands/templates -@dirrmtry %%SITE_PERL%%/Rex/Commands -@dirrmtry %%SITE_PERL%%/Rex/Cron -@dirrmtry %%SITE_PERL%%/Rex/FS -@dirrmtry %%SITE_PERL%%/Rex/File/Parser -@dirrmtry %%SITE_PERL%%/Rex/File -@dirrmtry %%SITE_PERL%%/Rex/Fork -@dirrmtry %%SITE_PERL%%/Rex/Group/Entry -@dirrmtry %%SITE_PERL%%/Rex/Group/Lookup -@dirrmtry %%SITE_PERL%%/Rex/Group -@dirrmtry %%SITE_PERL%%/Rex/Hardware/Network -@dirrmtry %%SITE_PERL%%/Rex/Hardware -@dirrmtry %%SITE_PERL%%/Rex/Helper/SSH2 -@dirrmtry %%SITE_PERL%%/Rex/Helper -@dirrmtry %%SITE_PERL%%/Rex/Interface/Cache -@dirrmtry %%SITE_PERL%%/Rex/Interface/Connection -@dirrmtry %%SITE_PERL%%/Rex/Interface/Exec -@dirrmtry %%SITE_PERL%%/Rex/Interface/Executor -@dirrmtry %%SITE_PERL%%/Rex/Interface/File -@dirrmtry %%SITE_PERL%%/Rex/Interface/Fs -@dirrmtry %%SITE_PERL%%/Rex/Interface/Shell -@dirrmtry %%SITE_PERL%%/Rex/Interface -@dirrmtry %%SITE_PERL%%/Rex/Inventory/DMIDecode -@dirrmtry %%SITE_PERL%%/Rex/Inventory/HP -@dirrmtry %%SITE_PERL%%/Rex/Inventory/Hal/Object -@dirrmtry %%SITE_PERL%%/Rex/Inventory/Hal -@dirrmtry %%SITE_PERL%%/Rex/Inventory/Proc -@dirrmtry %%SITE_PERL%%/Rex/Inventory/SMBios -@dirrmtry %%SITE_PERL%%/Rex/Inventory -@dirrmtry %%SITE_PERL%%/Rex/Output -@dirrmtry %%SITE_PERL%%/Rex/Pkg/SunOS -@dirrmtry %%SITE_PERL%%/Rex/Pkg -@dirrmtry %%SITE_PERL%%/Rex/Report -@dirrmtry %%SITE_PERL%%/Rex/SCM -@dirrmtry %%SITE_PERL%%/Rex/Service/ALT -@dirrmtry %%SITE_PERL%%/Rex/Service/Gentoo -@dirrmtry %%SITE_PERL%%/Rex/Service/Mageia -@dirrmtry %%SITE_PERL%%/Rex/Service/Redhat -@dirrmtry %%SITE_PERL%%/Rex/Service/SuSE -@dirrmtry %%SITE_PERL%%/Rex/Service/SunOS -@dirrmtry %%SITE_PERL%%/Rex/Service -@dirrmtry %%SITE_PERL%%/Rex/Shared/Var -@dirrmtry %%SITE_PERL%%/Rex/Shared -@dirrmtry %%SITE_PERL%%/Rex/Sudo -@dirrmtry %%SITE_PERL%%/Rex/TaskList -@dirrmtry %%SITE_PERL%%/Rex/Test/Base -@dirrmtry %%SITE_PERL%%/Rex/Test -@dirrmtry %%SITE_PERL%%/Rex/User -@dirrmtry %%SITE_PERL%%/Rex/Virtualization/Docker -@dirrmtry %%SITE_PERL%%/Rex/Virtualization/LibVirt -@dirrmtry %%SITE_PERL%%/Rex/Virtualization/VBox -@dirrmtry %%SITE_PERL%%/Rex/Virtualization -@dirrmtry %%SITE_PERL%%/Rex -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Rex From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 07:28:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CCF82A1; Sat, 11 Oct 2014 07:28:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3D5DB1AA; Sat, 11 Oct 2014 07:28:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B7SwD8097630; Sat, 11 Oct 2014 07:28:58 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B7SvRN097627; Sat, 11 Oct 2014 07:28:57 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201410110728.s9B7SvRN097627@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 11 Oct 2014 07:28:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370625 - in head/devel/opengrok: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 07:28:58 -0000 Author: marino Date: Sat Oct 11 07:28:56 2014 New Revision: 370625 URL: https://svnweb.freebsd.org/changeset/ports/370625 QAT: https://qat.redports.org/buildarchive/r370625/ Log: devel/opengrok: Make the installed version runnable (and usable) PR: 194177 Reported by: shen.elf (gmail) Fixed by: marino and shen.elf Modified: head/devel/opengrok/Makefile head/devel/opengrok/files/opengrok.in head/devel/opengrok/pkg-plist Modified: head/devel/opengrok/Makefile ============================================================================== --- head/devel/opengrok/Makefile Sat Oct 11 06:54:58 2014 (r370624) +++ head/devel/opengrok/Makefile Sat Oct 11 07:28:56 2014 (r370625) @@ -2,6 +2,7 @@ PORTNAME= opengrok PORTVERSION= 0.12.1 +PORTREVISION= 1 CATEGORIES= devel java MASTER_SITES= http://java.net/projects/opengrok/downloads/download/ @@ -20,7 +21,7 @@ SHAREGRP= www NO_BUILD= yes PORTDOCS= ${DOCS} SUB_FILES= opengrok -SUB_LIST+= LIBFILES="${LIBFILES:S,^,${DATADIR}/,}" \ +SUB_LIST+= LIBFILES="${LIBFILES:S,^,${DATADIR}/lib/,}" \ JARFILE="${JARFILE}" PLIST_SUB= T=${WEBAPP_HOME:S|^${LOCALBASE}/||} \ OWNER=${SHAREOWN} GROUP=${SHAREGRP} @@ -41,6 +42,7 @@ DOCS= CHANGES.txt EXAMPLE.txt LICENSE.t LIBFILES= ant.jar \ bcel-5.2.jar \ jrcs.jar \ + lucene-analyzers-common-4.7.1.jar \ lucene-core-4.7.1.jar \ lucene-queryparser-4.7.1.jar \ lucene-suggest-4.7.1.jar \ Modified: head/devel/opengrok/files/opengrok.in ============================================================================== --- head/devel/opengrok/files/opengrok.in Sat Oct 11 06:54:58 2014 (r370624) +++ head/devel/opengrok/files/opengrok.in Sat Oct 11 07:28:56 2014 (r370625) @@ -12,4 +12,4 @@ else set CLASSPATH = "" endif -exec "${JAVA}" -cp "${CLASSPATH}" -jar %%JARFILE%% -c %%LOCALBASE%%/bin/exctags $* +exec "${JAVA}" -cp "${CLASSPATH}" -jar %%JARFILE%% -c %%LOCALBASE%%/bin/exctags -w opengrok $* Modified: head/devel/opengrok/pkg-plist ============================================================================== --- head/devel/opengrok/pkg-plist Sat Oct 11 06:54:58 2014 (r370624) +++ head/devel/opengrok/pkg-plist Sat Oct 11 07:28:56 2014 (r370625) @@ -2,6 +2,7 @@ bin/opengrok %%DATADIR%%/lib/ant.jar %%DATADIR%%/lib/bcel-5.2.jar %%DATADIR%%/lib/jrcs.jar +%%DATADIR%%/lib/lucene-analyzers-common-4.7.1.jar %%DATADIR%%/lib/lucene-core-4.7.1.jar %%DATADIR%%/lib/lucene-queryparser-4.7.1.jar %%DATADIR%%/lib/lucene-suggest-4.7.1.jar @@ -115,15 +116,3 @@ bin/opengrok %%T%%/webapps/opengrok/utils.js @group @owner -@dirrmtry %%T%%/webapps/opengrok/META-INF -@dirrmtry %%T%%/webapps/opengrok/WEB-INF/lib -@dirrmtry %%T%%/webapps/opengrok/WEB-INF -@dirrmtry %%T%%/webapps/opengrok/default/img -@dirrmtry %%T%%/webapps/opengrok/default -@dirrmtry %%T%%/webapps/opengrok/offwhite/img -@dirrmtry %%T%%/webapps/opengrok/offwhite -@dirrmtry %%T%%/webapps/opengrok/polished/img -@dirrmtry %%T%%/webapps/opengrok/polished -@dirrmtry %%T%%/webapps/opengrok -@dirrmtry %%DATADIR%%/lib -@dirrmtry %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 07:30:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 01752393; Sat, 11 Oct 2014 07:30:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E097223B; Sat, 11 Oct 2014 07:30:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B7U7cq098028; Sat, 11 Oct 2014 07:30:07 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B7U73h098022; Sat, 11 Oct 2014 07:30:07 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410110730.s9B7U73h098022@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 11 Oct 2014 07:30:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370626 - head/lang/gcc49 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 07:30:08 -0000 Author: gerald Date: Sat Oct 11 07:30:06 2014 New Revision: 370626 URL: https://svnweb.freebsd.org/changeset/ports/370626 QAT: https://qat.redports.org/buildarchive/r370626/ Log: Update to the 20141008 snapshot of GCC 4.9.2. Restore the pkg-plist hack to not warn about info/gcc49/dir. Modified: head/lang/gcc49/Makefile head/lang/gcc49/distinfo head/lang/gcc49/pkg-plist Modified: head/lang/gcc49/Makefile ============================================================================== --- head/lang/gcc49/Makefile Sat Oct 11 07:28:56 2014 (r370625) +++ head/lang/gcc49/Makefile Sat Oct 11 07:30:06 2014 (r370626) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc49 -PORTVERSION= 4.9.2.s20141001 +PORTVERSION= 4.9.2.s20141008 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc49/distinfo ============================================================================== --- head/lang/gcc49/distinfo Sat Oct 11 07:28:56 2014 (r370625) +++ head/lang/gcc49/distinfo Sat Oct 11 07:30:06 2014 (r370626) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.9-20141001.tar.bz2) = a6d4acea9659dcc8f501339c10d334375bcf3326b451d7a8ba44d52fc6b9d941 -SIZE (gcc-4.9-20141001.tar.bz2) = 85582162 +SHA256 (gcc-4.9-20141008.tar.bz2) = 52ab954813e0235e2e643a3bd1aa375fd1e2413b08e9a3f2f8683b863b6589d3 +SIZE (gcc-4.9-20141008.tar.bz2) = 85550021 Modified: head/lang/gcc49/pkg-plist ============================================================================== --- head/lang/gcc49/pkg-plist Sat Oct 11 07:28:56 2014 (r370625) +++ head/lang/gcc49/pkg-plist Sat Oct 11 07:30:06 2014 (r370626) @@ -6,6 +6,7 @@ bin/%%GNU_HOST%%-gcc-ar%%SUFFIX%% bin/%%GNU_HOST%%-gcc-nm%%SUFFIX%% bin/%%GNU_HOST%%-gcc-ranlib%%SUFFIX%% bin/%%GNU_HOST%%-gfortran%%SUFFIX%% +@comment info/gcc%%SUFFIX%%/dir bin/c++%%SUFFIX%% bin/cpp%%SUFFIX%% bin/g++%%SUFFIX%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 07:32:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E45704A6; Sat, 11 Oct 2014 07:32:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0BCF25A; Sat, 11 Oct 2014 07:32:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B7Wck4001911; Sat, 11 Oct 2014 07:32:38 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B7WcbX001909; Sat, 11 Oct 2014 07:32:38 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410110732.s9B7WcbX001909@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 11 Oct 2014 07:32:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370627 - head/archivers/lzip X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 07:32:39 -0000 Author: gerald Date: Sat Oct 11 07:32:37 2014 New Revision: 370627 URL: https://svnweb.freebsd.org/changeset/ports/370627 QAT: https://qat.redports.org/buildarchive/r370627/ Log: Update to lzip version 1.16 which includes the following changes: - Compression ratio of option -9 has been slightly increased. - Compression time has been reduced by 4%, by 2% for option -0. - The behavior is now like 'cp -p'. - The license changed to GPL version 2 or later. Modified: head/archivers/lzip/Makefile head/archivers/lzip/distinfo Modified: head/archivers/lzip/Makefile ============================================================================== --- head/archivers/lzip/Makefile Sat Oct 11 07:30:06 2014 (r370626) +++ head/archivers/lzip/Makefile Sat Oct 11 07:32:37 2014 (r370627) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= lzip -PORTVERSION= 1.15 +PORTVERSION= 1.16 CATEGORIES= archivers MASTER_SITES= SAVANNAH/lzip MAINTAINER= gerald@FreeBSD.org COMMENT= Lossless data compressor based on the LZMA algorithm -LICENSE= GPLv3 +LICENSE= GPLv2 PLIST_FILES= bin/lzip \ man/man1/lzip.1.gz Modified: head/archivers/lzip/distinfo ============================================================================== --- head/archivers/lzip/distinfo Sat Oct 11 07:30:06 2014 (r370626) +++ head/archivers/lzip/distinfo Sat Oct 11 07:32:37 2014 (r370627) @@ -1,2 +1,2 @@ -SHA256 (lzip-1.15.tar.gz) = 7cd3fcda68fc9900efcf7784313e3bdd1303fef1a0546db9723f5e5564dd05b6 -SIZE (lzip-1.15.tar.gz) = 97409 +SHA256 (lzip-1.16.tar.gz) = 128cc25baf92c8b69700831e6f984d954016318cc78edca87870d0c033112751 +SIZE (lzip-1.16.tar.gz) = 86035 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 09:12:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20BA2583; Sat, 11 Oct 2014 09:12:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 01D3DCA3; Sat, 11 Oct 2014 09:12:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B9CJO7049671; Sat, 11 Oct 2014 09:12:19 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B9CInF049662; Sat, 11 Oct 2014 09:12:18 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201410110912.s9B9CInF049662@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sat, 11 Oct 2014 09:12:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370628 - in head: irc/iroffer-dinoex net/miniupnpc net/miniupnpc/files net/py-miniupnpc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 09:12:20 -0000 Author: dinoex Date: Sat Oct 11 09:12:17 2014 New Revision: 370628 URL: https://svnweb.freebsd.org/changeset/ports/370628 QAT: https://qat.redports.org/buildarchive/r370628/ Log: - update miniupnpc to 1.9 - bump users of shared lib version PR: 194031 Modified: head/irc/iroffer-dinoex/Makefile head/net/miniupnpc/Makefile head/net/miniupnpc/distinfo head/net/miniupnpc/files/patch-Makefile head/net/miniupnpc/pkg-plist head/net/py-miniupnpc/Makefile Modified: head/irc/iroffer-dinoex/Makefile ============================================================================== --- head/irc/iroffer-dinoex/Makefile Sat Oct 11 07:32:37 2014 (r370627) +++ head/irc/iroffer-dinoex/Makefile Sat Oct 11 09:12:17 2014 (r370628) @@ -2,7 +2,7 @@ PORTNAME= iroffer PORTVERSION= 3.29 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= irc MASTER_SITES= http://iroffer.dinoex.net/ PKGNAMESUFFIX= -dinoex${PKGNAMESUFFIX2} Modified: head/net/miniupnpc/Makefile ============================================================================== --- head/net/miniupnpc/Makefile Sat Oct 11 07:32:37 2014 (r370627) +++ head/net/miniupnpc/Makefile Sat Oct 11 09:12:17 2014 (r370628) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= miniupnpc -PORTVERSION= 1.8 +PORTVERSION= 1.9 CATEGORIES?= net MASTER_SITES= http://miniupnp.free.fr/files/ @@ -16,7 +16,7 @@ HAS_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_SCRIPT= updateminiupnpcstrings.sh -MAKE_ENV+= INSTALLPREFIX=${STAGEDIR}${PREFIX} +MAKE_ENV+= INSTALLPREFIX=${PREFIX} .include @@ -26,6 +26,10 @@ CFLAGS+= -DDEBUG .if ${SLAVE_PORT} == no USE_RC_SUBR= miniupnpc + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/upnpc \ + ${STAGEDIR}${PREFIX}/lib/libminiupnpc.so.10 .endif .include Modified: head/net/miniupnpc/distinfo ============================================================================== --- head/net/miniupnpc/distinfo Sat Oct 11 07:32:37 2014 (r370627) +++ head/net/miniupnpc/distinfo Sat Oct 11 09:12:17 2014 (r370628) @@ -1,2 +1,2 @@ -SHA256 (miniupnpc-1.8.tar.gz) = bc5f73c7b0056252c1888a80e6075787a1e1e9112b808f863a245483ff79859c -SIZE (miniupnpc-1.8.tar.gz) = 70624 +SHA256 (miniupnpc-1.9.tar.gz) = 2923e453e880bb949e3d4da9f83dd3cb6f08946d35de0b864d0339cf70934464 +SIZE (miniupnpc-1.9.tar.gz) = 74230 Modified: head/net/miniupnpc/files/patch-Makefile ============================================================================== --- head/net/miniupnpc/files/patch-Makefile Sat Oct 11 07:32:37 2014 (r370627) +++ head/net/miniupnpc/files/patch-Makefile Sat Oct 11 09:12:17 2014 (r370628) @@ -1,5 +1,5 @@ ---- Makefile.orig 2013-01-28 12:10:25.000000000 +0200 -+++ Makefile 2013-02-07 15:19:04.788319388 +0200 +--- Makefile.orig 2014-01-31 14:57:23.000000000 +0100 ++++ Makefile 2014-10-07 23:26:17.000000000 +0200 @@ -35,7 +35,7 @@ CFLAGS += -fno-common CFLAGS += -DMINIUPNPC_SET_SOCKET_TIMEOUT @@ -9,16 +9,7 @@ CFLAGS += -ansi # -DNO_GETADDRINFO INSTALL = install -@@ -80,7 +80,7 @@ - SONAME = $(basename $(SHAREDLIBRARY)).$(APIVERSION).dylib - CFLAGS := -DMACOSX -D_DARWIN_C_SOURCE $(CFLAGS) - else --ifeq ($(OS), Linux) -+ifeq ($(OS), FreeBSD) - SHAREDLIBRARY = libminiupnpc.so - SONAME = $(SHAREDLIBRARY).$(APIVERSION) - endif -@@ -110,13 +110,11 @@ +@@ -117,13 +117,11 @@ TESTIGDDESCPARSE := $(TESTIGDDESCPARSE) minissdpc.o endif Modified: head/net/miniupnpc/pkg-plist ============================================================================== --- head/net/miniupnpc/pkg-plist Sat Oct 11 07:32:37 2014 (r370627) +++ head/net/miniupnpc/pkg-plist Sat Oct 11 09:12:17 2014 (r370628) @@ -11,6 +11,5 @@ include/miniupnpc/upnpreplyparse.h include/miniupnpc/upnperrors.h lib/libminiupnpc.a lib/libminiupnpc.so -lib/libminiupnpc.so.9 +lib/libminiupnpc.so.10 man/man3/miniupnpc.3.gz -@dirrm include/miniupnpc Modified: head/net/py-miniupnpc/Makefile ============================================================================== --- head/net/py-miniupnpc/Makefile Sat Oct 11 07:32:37 2014 (r370627) +++ head/net/py-miniupnpc/Makefile Sat Oct 11 09:12:17 2014 (r370628) @@ -9,8 +9,8 @@ BUILD_DEPENDS= ${NONEXISTENT}:${PORTSDIR MASTERDIR= ${.CURDIR}/../miniupnpc -USE_PYTHON= yes -USE_PYDISTUTILS=yes +USES= python +USE_PYTHON= distutils WRKDIR= ${WRKDIRPREFIX}${MASTERDIR}/work PLIST= ${.CURDIR}/pkg-plist @@ -20,7 +20,10 @@ PLIST= ${.CURDIR}/pkg-plist .endif post-patch: - @${REINPLACE_CMD} 's/\(version\)="[^"]*"/\1="${PORTVERSION}"/' \ + ${REINPLACE_CMD} 's/\(version\)="[^"]*"/\1="${PORTVERSION}"/' \ ${WRKSRC}/setup.py +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/miniupnpc.so + .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 09:22:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B64706CB; Sat, 11 Oct 2014 09:22:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0BE2D63; Sat, 11 Oct 2014 09:22:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B9MsgO054632; Sat, 11 Oct 2014 09:22:54 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B9MqY9054616; Sat, 11 Oct 2014 09:22:52 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410110922.s9B9MqY9054616@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 11 Oct 2014 09:22:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370629 - in head/devel: arm-gnueabi-binutils i386-linux-binutils mips-binutils mips64-binutils powerpc64-binutils sparc64-binutils sparc64-gcc sparc64-xtoolchain-gcc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 09:22:54 -0000 Author: antoine Date: Sat Oct 11 09:22:51 2014 New Revision: 370629 URL: https://svnweb.freebsd.org/changeset/ports/370629 QAT: https://qat.redports.org/buildarchive/r370629/ Log: Remove trailing / in MASTERDIR Modified: head/devel/arm-gnueabi-binutils/Makefile head/devel/i386-linux-binutils/Makefile head/devel/mips-binutils/Makefile head/devel/mips64-binutils/Makefile head/devel/powerpc64-binutils/Makefile head/devel/sparc64-binutils/Makefile head/devel/sparc64-gcc/Makefile head/devel/sparc64-xtoolchain-gcc/Makefile Modified: head/devel/arm-gnueabi-binutils/Makefile ============================================================================== --- head/devel/arm-gnueabi-binutils/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/arm-gnueabi-binutils/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -5,6 +5,6 @@ COMMENT= GNU binutils for arm cross-deve PKGNAMEPREFIX= arm-gnueabi- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../binutils/ +MASTERDIR= ${.CURDIR}/../binutils .include "${MASTERDIR}/Makefile" Modified: head/devel/i386-linux-binutils/Makefile ============================================================================== --- head/devel/i386-linux-binutils/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/i386-linux-binutils/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -6,6 +6,6 @@ PKGNAMEPREFIX= i386-linux- BUTARGET= i386-pc-linux-gnu PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../binutils/ +MASTERDIR= ${.CURDIR}/../binutils .include "${MASTERDIR}/Makefile" Modified: head/devel/mips-binutils/Makefile ============================================================================== --- head/devel/mips-binutils/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/mips-binutils/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -5,6 +5,6 @@ COMMENT= GNU binutils for mips64 cross-d PKGNAMEPREFIX= mips- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../binutils/ +MASTERDIR= ${.CURDIR}/../binutils .include "${MASTERDIR}/Makefile" Modified: head/devel/mips64-binutils/Makefile ============================================================================== --- head/devel/mips64-binutils/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/mips64-binutils/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -5,6 +5,6 @@ COMMENT= GNU binutils for mips64 cross-d PKGNAMEPREFIX= mips64- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../binutils/ +MASTERDIR= ${.CURDIR}/../binutils .include "${MASTERDIR}/Makefile" Modified: head/devel/powerpc64-binutils/Makefile ============================================================================== --- head/devel/powerpc64-binutils/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/powerpc64-binutils/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -5,6 +5,6 @@ COMMENT= GNU binutils for powerpc64 cros PKGNAMEPREFIX= powerpc64- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../binutils/ +MASTERDIR= ${.CURDIR}/../binutils .include "${MASTERDIR}/Makefile" Modified: head/devel/sparc64-binutils/Makefile ============================================================================== --- head/devel/sparc64-binutils/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/sparc64-binutils/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -5,6 +5,6 @@ COMMENT= GNU binutils for sparc64 cross- PKGNAMEPREFIX= sparc64- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../binutils/ +MASTERDIR= ${.CURDIR}/../binutils .include "${MASTERDIR}/Makefile" Modified: head/devel/sparc64-gcc/Makefile ============================================================================== --- head/devel/sparc64-gcc/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/sparc64-gcc/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -3,6 +3,6 @@ PKGNAMEPREFIX= sparc64- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../powerpc64-gcc/ +MASTERDIR= ${.CURDIR}/../powerpc64-gcc .include "${MASTERDIR}/Makefile" Modified: head/devel/sparc64-xtoolchain-gcc/Makefile ============================================================================== --- head/devel/sparc64-xtoolchain-gcc/Makefile Sat Oct 11 09:12:17 2014 (r370628) +++ head/devel/sparc64-xtoolchain-gcc/Makefile Sat Oct 11 09:22:51 2014 (r370629) @@ -3,6 +3,6 @@ PKGNAMEPREFIX= sparc64- PLIST= ${.CURDIR}/pkg-plist -MASTERDIR= ${.CURDIR}/../powerpc64-xtoolchain-gcc/ +MASTERDIR= ${.CURDIR}/../powerpc64-xtoolchain-gcc .include "${MASTERDIR}/Makefile" From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 09:32:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 747C6882; Sat, 11 Oct 2014 09:32:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5570FE2C; Sat, 11 Oct 2014 09:32:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9B9WcGr059333; Sat, 11 Oct 2014 09:32:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9B9WbGC059330; Sat, 11 Oct 2014 09:32:37 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410110932.s9B9WbGC059330@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 11 Oct 2014 09:32:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370630 - head/www/drupal7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 09:32:38 -0000 Author: pi Date: Sat Oct 11 09:32:36 2014 New Revision: 370630 URL: https://svnweb.freebsd.org/changeset/ports/370630 QAT: https://qat.redports.org/buildarchive/r370630/ Log: www/drupal7: 7.28 -> 7.31 Changes: https://www.drupal.org/drupal-7.29-release-notes https://www.drupal.org/drupal-7.30-release-notes https://www.drupal.org/drupal-7.31-release-notes PR: 192099 Submitted by: simon.wright@gmx.net Approved by: miwi (timeout) Modified: head/www/drupal7/Makefile head/www/drupal7/distinfo head/www/drupal7/pkg-plist Modified: head/www/drupal7/Makefile ============================================================================== --- head/www/drupal7/Makefile Sat Oct 11 09:22:51 2014 (r370629) +++ head/www/drupal7/Makefile Sat Oct 11 09:32:36 2014 (r370630) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= drupal7 -PORTVERSION= 7.28 -PORTREVISION= 1 +PORTVERSION= 7.31 CATEGORIES= www MASTER_SITES= http://ftp.drupal.org/files/projects/ DISTNAME= drupal-${PORTVERSION} Modified: head/www/drupal7/distinfo ============================================================================== --- head/www/drupal7/distinfo Sat Oct 11 09:22:51 2014 (r370629) +++ head/www/drupal7/distinfo Sat Oct 11 09:32:36 2014 (r370630) @@ -1,2 +1,2 @@ -SHA256 (drupal/drupal-7.28.tar.gz) = 941b6de8978d215c95fe6f8466e3cb212f16647de93b38bbc41df020fd6e5eaa -SIZE (drupal/drupal-7.28.tar.gz) = 3212823 +SHA256 (drupal/drupal-7.31.tar.gz) = 6af4849fd2e1fd0a186a5264de10613e57b84c69dbe7dec0754472d27f37af40 +SIZE (drupal/drupal-7.31.tar.gz) = 3216766 Modified: head/www/drupal7/pkg-plist ============================================================================== --- head/www/drupal7/pkg-plist Sat Oct 11 09:22:51 2014 (r370629) +++ head/www/drupal7/pkg-plist Sat Oct 11 09:32:36 2014 (r370630) @@ -423,7 +423,6 @@ %%DRUPAL_BASE%%/modules/forum/forums.tpl.php %%DRUPAL_BASE%%/modules/help/help-rtl.css %%DRUPAL_BASE%%/modules/help/help.admin.inc -%%DRUPAL_BASE%%/modules/help/help.api.php %%DRUPAL_BASE%%/modules/help/help.css %%DRUPAL_BASE%%/modules/help/help.info %%DRUPAL_BASE%%/modules/help/help.module @@ -1072,144 +1071,5 @@ %%DRUPAL_BASE%%/web.config %%DRUPAL_BASE%%/xmlrpc.php @unexec rm -f %%DRUPAL_BASE%%/files/.htaccess 2> /dev/null || true -@dirrm %%DRUPAL_BASE%%/themes/stark -@dirrm %%DRUPAL_BASE%%/themes/seven/images -@dirrm %%DRUPAL_BASE%%/themes/seven -@dirrm %%DRUPAL_BASE%%/themes/garland/images -@dirrm %%DRUPAL_BASE%%/themes/garland/color -@dirrm %%DRUPAL_BASE%%/themes/garland -@dirrm %%DRUPAL_BASE%%/themes/engines/phptemplate -@dirrm %%DRUPAL_BASE%%/themes/engines -@dirrm %%DRUPAL_BASE%%/themes/bartik/templates -@dirrm %%DRUPAL_BASE%%/themes/bartik/images -@dirrm %%DRUPAL_BASE%%/themes/bartik/css -@dirrm %%DRUPAL_BASE%%/themes/bartik/color -@dirrm %%DRUPAL_BASE%%/themes/bartik -@dirrm %%DRUPAL_BASE%%/themes -@dirrmtry %%DRUPAL_BASE%%/sites/default/files -@dirrmtry %%DRUPAL_BASE%%/sites/default -@dirrmtry %%DRUPAL_BASE%%/sites/all/themes -@dirrmtry %%DRUPAL_BASE%%/sites/all/modules -@dirrmtry %%DRUPAL_BASE%%/sites/all/libraries -@dirrmtry %%DRUPAL_BASE%%/sites/all -@dirrmtry %%DRUPAL_BASE%%/sites -@dirrm %%DRUPAL_BASE%%/scripts -@dirrm %%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_incompatible_test -@dirrm %%DRUPAL_BASE%%/profiles/testing/modules/drupal_system_listing_compatible_test -@dirrm %%DRUPAL_BASE%%/profiles/testing/modules -@dirrm %%DRUPAL_BASE%%/profiles/testing -@dirrm %%DRUPAL_BASE%%/profiles/standard/translations -@dirrm %%DRUPAL_BASE%%/profiles/standard -@dirrm %%DRUPAL_BASE%%/profiles/minimal/translations -@dirrm %%DRUPAL_BASE%%/profiles/minimal -@dirrm %%DRUPAL_BASE%%/profiles -@dirrm %%DRUPAL_BASE%%/modules/user/tests -@dirrm %%DRUPAL_BASE%%/modules/user -@dirrm %%DRUPAL_BASE%%/modules/update/tests/themes/update_test_subtheme -@dirrm %%DRUPAL_BASE%%/modules/update/tests/themes/update_test_basetheme -@dirrm %%DRUPAL_BASE%%/modules/update/tests/themes -@dirrm %%DRUPAL_BASE%%/modules/update/tests -@dirrm %%DRUPAL_BASE%%/modules/update -@dirrm %%DRUPAL_BASE%%/modules/trigger/tests -@dirrm %%DRUPAL_BASE%%/modules/trigger -@dirrm %%DRUPAL_BASE%%/modules/translation/tests -@dirrm %%DRUPAL_BASE%%/modules/translation -@dirrm %%DRUPAL_BASE%%/modules/tracker -@dirrm %%DRUPAL_BASE%%/modules/toolbar -@dirrm %%DRUPAL_BASE%%/modules/taxonomy -@dirrm %%DRUPAL_BASE%%/modules/system/tests -@dirrm %%DRUPAL_BASE%%/modules/system -@dirrm %%DRUPAL_BASE%%/modules/syslog -@dirrm %%DRUPAL_BASE%%/modules/statistics -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/upgrade -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_theme -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_subtheme -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/themes/test_basetheme -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/themes -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test/Tests/Nested -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test/Tests -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib/Drupal -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test/lib -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/psr_0_test -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/drupal_system_listing_incompatible_test -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests/drupal_system_listing_compatible_test -@dirrm %%DRUPAL_BASE%%/modules/simpletest/tests -@dirrm %%DRUPAL_BASE%%/modules/simpletest/lib/Drupal/simpletest/Tests -@dirrm %%DRUPAL_BASE%%/modules/simpletest/lib/Drupal/simpletest -@dirrm %%DRUPAL_BASE%%/modules/simpletest/lib/Drupal -@dirrm %%DRUPAL_BASE%%/modules/simpletest/lib -@dirrm %%DRUPAL_BASE%%/modules/simpletest/files/css_test_files/css_subfolder -@dirrm %%DRUPAL_BASE%%/modules/simpletest/files/css_test_files -@dirrm %%DRUPAL_BASE%%/modules/simpletest/files -@dirrm %%DRUPAL_BASE%%/modules/simpletest -@dirrm %%DRUPAL_BASE%%/modules/shortcut -@dirrm %%DRUPAL_BASE%%/modules/search/tests -@dirrm %%DRUPAL_BASE%%/modules/search -@dirrm %%DRUPAL_BASE%%/modules/rdf/tests -@dirrm %%DRUPAL_BASE%%/modules/rdf -@dirrm %%DRUPAL_BASE%%/modules/profile -@dirrm %%DRUPAL_BASE%%/modules/poll -@dirrm %%DRUPAL_BASE%%/modules/php -@dirrm %%DRUPAL_BASE%%/modules/path -@dirrm %%DRUPAL_BASE%%/modules/overlay/images -@dirrm %%DRUPAL_BASE%%/modules/overlay -@dirrm %%DRUPAL_BASE%%/modules/openid/tests -@dirrm %%DRUPAL_BASE%%/modules/openid -@dirrm %%DRUPAL_BASE%%/modules/node/tests -@dirrm %%DRUPAL_BASE%%/modules/node -@dirrm %%DRUPAL_BASE%%/modules/menu -@dirrm %%DRUPAL_BASE%%/modules/locale/tests/translations -@dirrm %%DRUPAL_BASE%%/modules/locale/tests -@dirrm %%DRUPAL_BASE%%/modules/locale -@dirrm %%DRUPAL_BASE%%/modules/image/tests -@dirrm %%DRUPAL_BASE%%/modules/image -@dirrm %%DRUPAL_BASE%%/modules/help -@dirrm %%DRUPAL_BASE%%/modules/forum -@dirrm %%DRUPAL_BASE%%/modules/filter/tests -@dirrm %%DRUPAL_BASE%%/modules/filter -@dirrm %%DRUPAL_BASE%%/modules/file/tests -@dirrm %%DRUPAL_BASE%%/modules/file/icons -@dirrm %%DRUPAL_BASE%%/modules/file -@dirrm %%DRUPAL_BASE%%/modules/field_ui -@dirrm %%DRUPAL_BASE%%/modules/field/theme -@dirrm %%DRUPAL_BASE%%/modules/field/tests -@dirrm %%DRUPAL_BASE%%/modules/field/modules/text -@dirrm %%DRUPAL_BASE%%/modules/field/modules/options -@dirrm %%DRUPAL_BASE%%/modules/field/modules/number -@dirrm %%DRUPAL_BASE%%/modules/field/modules/list/tests -@dirrm %%DRUPAL_BASE%%/modules/field/modules/list -@dirrm %%DRUPAL_BASE%%/modules/field/modules/field_sql_storage -@dirrm %%DRUPAL_BASE%%/modules/field/modules -@dirrm %%DRUPAL_BASE%%/modules/field -@dirrm %%DRUPAL_BASE%%/modules/dblog -@dirrm %%DRUPAL_BASE%%/modules/dashboard -@dirrm %%DRUPAL_BASE%%/modules/contextual/images -@dirrm %%DRUPAL_BASE%%/modules/contextual -@dirrm %%DRUPAL_BASE%%/modules/contact -@dirrm %%DRUPAL_BASE%%/modules/comment -@dirrm %%DRUPAL_BASE%%/modules/color/images -@dirrm %%DRUPAL_BASE%%/modules/color -@dirrm %%DRUPAL_BASE%%/modules/book -@dirrm %%DRUPAL_BASE%%/modules/blog -@dirrm %%DRUPAL_BASE%%/modules/block/tests/themes/block_test_theme -@dirrm %%DRUPAL_BASE%%/modules/block/tests/themes -@dirrm %%DRUPAL_BASE%%/modules/block/tests -@dirrm %%DRUPAL_BASE%%/modules/block -@dirrm %%DRUPAL_BASE%%/modules/aggregator/tests -@dirrm %%DRUPAL_BASE%%/modules/aggregator -@dirrmtry %%DRUPAL_BASE%%/modules -@dirrm %%DRUPAL_BASE%%/misc/ui/images -@dirrm %%DRUPAL_BASE%%/misc/ui -@dirrm %%DRUPAL_BASE%%/misc/farbtastic -@dirrm %%DRUPAL_BASE%%/misc -@dirrm %%DRUPAL_BASE%%/includes/filetransfer -@dirrm %%DRUPAL_BASE%%/includes/database/sqlite -@dirrm %%DRUPAL_BASE%%/includes/database/pgsql -@dirrm %%DRUPAL_BASE%%/includes/database/mysql -@dirrm %%DRUPAL_BASE%%/includes/database -@dirrm %%DRUPAL_BASE%%/includes -@dirrmtry %%DRUPAL_BASE%%/ -%%PORTDOCS%%@dirrm %%DOCSDIR%% @owner root @group wheel From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 10:31:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC9854E2; Sat, 11 Oct 2014 10:31:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D5DCE641; Sat, 11 Oct 2014 10:31:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BAVB0k086470; Sat, 11 Oct 2014 10:31:11 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BAVBPH086466; Sat, 11 Oct 2014 10:31:11 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410111031.s9BAVBPH086466@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 11 Oct 2014 10:31:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370631 - head/lang/gcc48 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 10:31:12 -0000 Author: gerald Date: Sat Oct 11 10:31:10 2014 New Revision: 370631 URL: https://svnweb.freebsd.org/changeset/ports/370631 QAT: https://qat.redports.org/buildarchive/r370631/ Log: Update to the 20141009 snapshot of GCC 4.8.4. Modified: head/lang/gcc48/Makefile head/lang/gcc48/distinfo Modified: head/lang/gcc48/Makefile ============================================================================== --- head/lang/gcc48/Makefile Sat Oct 11 09:32:36 2014 (r370630) +++ head/lang/gcc48/Makefile Sat Oct 11 10:31:10 2014 (r370631) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc48 -PORTVERSION= 4.8.4.s20141002 +PORTVERSION= 4.8.4.s20141009 CATEGORIES= lang java MASTER_SITES= ${MASTER_SITE_GCC} MASTER_SITE_SUBDIR= snapshots/${DISTVERSION} Modified: head/lang/gcc48/distinfo ============================================================================== --- head/lang/gcc48/distinfo Sat Oct 11 09:32:36 2014 (r370630) +++ head/lang/gcc48/distinfo Sat Oct 11 10:31:10 2014 (r370631) @@ -1,2 +1,2 @@ -SHA256 (gcc-4.8-20141002.tar.bz2) = 6ccccf1c94541e6fa604656f1a1d755f5eef8f137f46135afbf4b9c1fa7b67e0 -SIZE (gcc-4.8-20141002.tar.bz2) = 82025319 +SHA256 (gcc-4.8-20141009.tar.bz2) = 0f2fb6075844e8c7e744ce517f164f54734109642c33e2a558d6594117abe089 +SIZE (gcc-4.8-20141009.tar.bz2) = 82028833 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 11:50:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38F2C129; Sat, 11 Oct 2014 11:50:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 24DB1C55; Sat, 11 Oct 2014 11:50:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BBoEFM022413; Sat, 11 Oct 2014 11:50:14 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BBoDwO022412; Sat, 11 Oct 2014 11:50:13 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410111150.s9BBoDwO022412@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 11 Oct 2014 11:50:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370632 - head/print/muttprint X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 11:50:14 -0000 Author: pi Date: Sat Oct 11 11:50:13 2014 New Revision: 370632 URL: https://svnweb.freebsd.org/changeset/ports/370632 QAT: https://qat.redports.org/buildarchive/r370632/ Log: print/muttprint: add run_deps, change maintainer to submitter Patch see https://lists.freebsd.org/pipermail/freebsd-ports/2014-October/095916.html - Submitter wants to be maintainer Submitted by: Matthias Apitz Modified: head/print/muttprint/Makefile Modified: head/print/muttprint/Makefile ============================================================================== --- head/print/muttprint/Makefile Sat Oct 11 10:31:10 2014 (r370631) +++ head/print/muttprint/Makefile Sat Oct 11 11:50:13 2014 (r370632) @@ -7,10 +7,12 @@ PORTREVISION= 10 CATEGORIES?= print mail MASTER_SITES= SF/muttprint/muttprint/muttprint-${PORTVERSION} -MAINTAINER?= ports@FreeBSD.org +MAINTAINER?= guru@unixarea.de COMMENT?= Utility to print mail for most any mail client RUN_DEPENDS= psnup:${PORTSDIR}/print/psutils \ + latex:${PORTSDIR}/print/texlive-full \ + dvips:${PORTSDIR}/print/tex-dvipsk \ uncompface:${PORTSDIR}/mail/faces \ convert:${PORTSDIR}/graphics/ImageMagick \ p5-TimeDate>=0:${PORTSDIR}/devel/p5-TimeDate \ From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 12:16:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D34915FF; Sat, 11 Oct 2014 12:16:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4BA2E86; Sat, 11 Oct 2014 12:16:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BCGfF9035273; Sat, 11 Oct 2014 12:16:41 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BCGfaL035271; Sat, 11 Oct 2014 12:16:41 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410111216.s9BCGfaL035271@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 11 Oct 2014 12:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370633 - in head/multimedia/transcode: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 12:16:41 -0000 Author: riggs Date: Sat Oct 11 12:16:40 2014 New Revision: 370633 URL: https://svnweb.freebsd.org/changeset/ports/370633 QAT: https://qat.redports.org/buildarchive/r370633/ Log: - Fix build problem (plist generation) with export_xvid.so symlink - Make port ready for ffmpeg 2.4 and later - Pet portlint - Bump PORTREVISION PR: 194161 Submitted by: cyberbotx@cyberbotx.com (maintainer) MFH: 2014Q4 Added: head/multimedia/transcode/files/patch-import__probe_ffmpeg.c (contents, props changed) Modified: head/multimedia/transcode/Makefile Modified: head/multimedia/transcode/Makefile ============================================================================== --- head/multimedia/transcode/Makefile Sat Oct 11 11:50:13 2014 (r370632) +++ head/multimedia/transcode/Makefile Sat Oct 11 12:16:40 2014 (r370633) @@ -3,7 +3,7 @@ PORTNAME= transcode PORTVERSION= 1.1.7 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= multimedia MASTER_SITES= http://cdn.bitbucket.org/france/transcode-tcforge/downloads/ @@ -15,13 +15,15 @@ LICENSE= GPLv2 LIB_DEPENDS= libavcodec.so:${PORTSDIR}/multimedia/ffmpeg USE_LDCONFIG= yes -USES= gmake pkgconfig tar:bzip2 libtool +USES= gmake libtool pkgconfig tar:bzip2 +USE_GCC= any WANT_SDL= yes WANT_GNOME= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-oss CPPFLAGS+= -isystem ${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip NO_OPTIONS_SORT= yes OPTIONS_DEFINE= DOCS OPTIMIZED_CFLAGS X11 MPEG2 BKTR POSTPROC FREETYPE LAME \ @@ -149,6 +151,6 @@ post-patch: post-stage: @(cd ${STAGEDIR}${PREFIX} && \ - ${FIND} -s lib/transcode -type f >> ${TMPPLIST}) + ${FIND} -s lib/transcode -type f -or -type l >> ${TMPPLIST}) .include Added: head/multimedia/transcode/files/patch-import__probe_ffmpeg.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/transcode/files/patch-import__probe_ffmpeg.c Sat Oct 11 12:16:40 2014 (r370633) @@ -0,0 +1,11 @@ +--- import/probe_ffmpeg.c.orig 2011-11-19 16:50:27 UTC ++++ import/probe_ffmpeg.c +@@ -120,7 +120,7 @@ + + translate_info(lavf_dmx_context, ipipe->probe_info); + +- av_close_input_file(lavf_dmx_context); ++ avformat_close_input(lavf_dmx_context); + return; + } + From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 12:30:36 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4111E7BB; Sat, 11 Oct 2014 12:30:36 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2AEC4F67; Sat, 11 Oct 2014 12:30:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BCUafR041594; Sat, 11 Oct 2014 12:30:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BCUZho041587; Sat, 11 Oct 2014 12:30:35 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410111230.s9BCUZho041587@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 11 Oct 2014 12:30:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370634 - in head/astro/gpstk: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 12:30:36 -0000 Author: pi Date: Sat Oct 11 12:30:34 2014 New Revision: 370634 URL: https://svnweb.freebsd.org/changeset/ports/370634 QAT: https://qat.redports.org/buildarchive/r370634/ Log: astro/gpstk: 2.0 -> 2.5 http://www.gpstk.org/bin/view/Development/ReleaseNotes21 http://www.gpstk.org/bin/view/Development/ReleaseNotes22 http://www.gpstk.org/bin/view/Development/ReleaseNotes23 http://www.gpstk.org/bin/view/Development/ReleaseNotes24 http://www.gpstk.org/bin/view/Development/ReleaseNotes25 Switchover from build tool jam to cmake, with lots of restructuring of code. Added: head/astro/gpstk/files/patch-ext__lib__FileDirProc__FileHunter.cpp (contents, props changed) head/astro/gpstk/files/patch-ext__lib__Utilities__BinUtils.hpp (contents, props changed) Deleted: head/astro/gpstk/files/patch-Jamrules head/astro/gpstk/files/patch-apps-swrx-IQStream.hpp head/astro/gpstk/files/patch-scale Modified: head/astro/gpstk/Makefile head/astro/gpstk/distinfo head/astro/gpstk/pkg-plist Modified: head/astro/gpstk/Makefile ============================================================================== --- head/astro/gpstk/Makefile Sat Oct 11 12:16:40 2014 (r370633) +++ head/astro/gpstk/Makefile Sat Oct 11 12:30:34 2014 (r370634) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpstk -PORTVERSION= 2.0 +PORTVERSION= 2.5 CATEGORIES= astro devel MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}.src @@ -10,51 +10,12 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}.src MAINTAINER= ports@FreeBSD.org COMMENT= Toolkit for developing GPS applications -LICENSE= LGPL21 +LICENSE= LGPL3 -BUILD_DEPENDS= jam:${PORTSDIR}/devel/jam - -USES= dos2unix -USE_PYTHON_RUN= yes +USES= cmake python:run +USE_GCC= yes USE_LDCONFIG= yes -DOS2UNIX_FILES= ${WRKSRC}/Jamrules - -WRKSRC= ${WRKDIR}/${PORTNAME} -JAM= jam -JAM_ENV= PREFIX="${STAGEDIR}${PREFIX}" \ - CC="${CC}" CCFLAGS="${CFLAGS}" \ - C++="${CXX}" C++FLAGS="${CXXFLAGS}" - -post-patch: -# Unbreak with modern C++ compilers (notably, Clang) - @${REINPLACE_CMD} -e 's,assignFrom(,this->&,' \ - ${WRKSRC}/src/Vector.hpp ${WRKSRC}/src/Matrix.hpp - @${REINPLACE_CMD} -e 's,matSliceCheck(,this->&,' \ - ${WRKSRC}/src/Matrix.hpp - @${REINPLACE_CMD} -e 's,addData(,this->&,' \ - ${WRKSRC}/src/FileFilterFrame.hpp - @${REINPLACE_CMD} -e 's,float,double,' \ - ${WRKSRC}/apps/swrx/gpsSim.cpp - @${REINPLACE_CMD} -e '/GPSEllipsoid gm/s,const ,,' \ - ${WRKSRC}/apps/reszilla/ddGen.cpp - -do-build: - cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM} ${_MAKE_JOBS} - -NOSTRIPFILES= ddPlot|ordPlot # don't strip scripts -SHLIBS= geodyn geomatics gpstk procframe rxio vdraw vplot -SHLIBVER= ${PORTVERSION:S/.//g} - -do-install: - @${MKDIR} ${STAGEDIR}${PREFIX}/include/${PORTNAME} - cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM} install -.for shlib in ${SHLIBS} - ${LN} -sf lib${shlib}.so.${SHLIBVER} \ - ${STAGEDIR}${PREFIX}/lib/lib${shlib}.so -.endfor - @${STRIP_CMD} `${GREP} '^bin/' ${PLIST} | \ - ${GREP} -E -v '^bin/(${NOSTRIPFILES})$$' | \ - ${SED} 's,^,${STAGEDIR}${PREFIX}/,'` +WRKSRC= ${WRKDIR}/dev .include Modified: head/astro/gpstk/distinfo ============================================================================== --- head/astro/gpstk/distinfo Sat Oct 11 12:16:40 2014 (r370633) +++ head/astro/gpstk/distinfo Sat Oct 11 12:30:34 2014 (r370634) @@ -1,2 +1,2 @@ -SHA256 (gpstk-2.0.src.tar.gz) = c98f5b38e0dea0f1ecc0d1de980047127172277c7bd52bcd648f20953dc3b246 -SIZE (gpstk-2.0.src.tar.gz) = 65691251 +SHA256 (gpstk-2.5.src.tar.gz) = c3be55ea0ea6a08c823b41c51064ab4596f6e1591dc18533816fac86f0087099 +SIZE (gpstk-2.5.src.tar.gz) = 70300615 Added: head/astro/gpstk/files/patch-ext__lib__FileDirProc__FileHunter.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/gpstk/files/patch-ext__lib__FileDirProc__FileHunter.cpp Sat Oct 11 12:30:34 2014 (r370634) @@ -0,0 +1,10 @@ +--- ext/lib/FileDirProc/FileHunter.cpp.orig 2014-10-10 19:46:15 UTC ++++ ext/lib/FileDirProc/FileHunter.cpp +@@ -52,6 +52,7 @@ + #ifndef _WIN32 + #include + #include ++#include + #else + #include + #include Added: head/astro/gpstk/files/patch-ext__lib__Utilities__BinUtils.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/gpstk/files/patch-ext__lib__Utilities__BinUtils.hpp Sat Oct 11 12:30:34 2014 (r370634) @@ -0,0 +1,10 @@ +--- ext/lib/Utilities/BinUtils.hpp.orig 2014-10-11 11:19:24 UTC ++++ ext/lib/Utilities/BinUtils.hpp +@@ -54,6 +54,7 @@ + + #include "Exception.hpp" + ++#include + #ifndef BYTE_ORDER + #ifdef _MSC_VER + #define LITTLE_ENDIAN 1 Modified: head/astro/gpstk/pkg-plist ============================================================================== --- head/astro/gpstk/pkg-plist Sat Oct 11 12:16:40 2014 (r370633) +++ head/astro/gpstk/pkg-plist Sat Oct 11 12:30:34 2014 (r370634) @@ -1,72 +1,24 @@ -bin/CalcDOPs -bin/ConstellationList bin/DDBase -bin/DOPcalc bin/DiscFix -bin/IonoBias -bin/ORDPhaseParser bin/PRSolve bin/RinDump bin/RinEdit bin/RinNav bin/RinSum -bin/TECMaps -bin/TIAPhaseParser -bin/ash2mdp -bin/ash2xyz -bin/ats2mdp bin/bc2sp3 bin/calgps -bin/compSatVis -bin/compStaVis bin/convertSSEph -bin/daa -bin/dallandev -bin/ddGen -bin/ddPlot -bin/ddmerge -bin/ephdiff -bin/ephemfix -bin/ephsum -bin/ffp -bin/fic2rin -bin/ficacheck -bin/ficafic -bin/ficcheck -bin/ficdiff -bin/ficedit -bin/ficfica -bin/findMoreThan12 +bin/glodump bin/lsfilt -bin/mallandev -bin/mdp2fic -bin/mdp2rinex -bin/mdpEdit -bin/mdptool -bin/mergeFIC bin/mergeRinMet bin/mergeRinNav bin/mergeRinObs bin/mergeSRI bin/mpsolve -bin/nallandev -bin/navdmp -bin/navsum bin/novaRinex -bin/oallandev -bin/ohadamarddev -bin/ordClock -bin/ordEdit -bin/ordGen -bin/ordLinEst -bin/ordPlot -bin/ordStats -bin/pff bin/posInterp bin/poscvt -bin/posmsc bin/rfw -bin/rinexpvt bin/rinexthin bin/rmoutlier bin/rmwcheck @@ -76,500 +28,462 @@ bin/rnwdiff bin/rowcheck bin/rowdiff bin/rstats -bin/scale-gpstk -bin/sp32bc bin/sp3version -bin/svvis -bin/tallandev bin/testSSEph bin/timeconvert -bin/trunc +bin/tkalm bin/vecsol -bin/wheresat -include/gpstk/ANSITime.hpp -include/gpstk/ARBase.hpp -include/gpstk/ARLambda.hpp -include/gpstk/ARMLambda.hpp -include/gpstk/ARSimple.hpp -include/gpstk/ASConstant.hpp -include/gpstk/ATSData.hpp -include/gpstk/ATSStream.hpp -include/gpstk/Adler32.hpp -include/gpstk/AllanDeviation.hpp -include/gpstk/AlmOrbit.hpp -include/gpstk/Antenna.hpp -include/gpstk/AntexBase.hpp -include/gpstk/AntexData.hpp -include/gpstk/AntexHeader.hpp -include/gpstk/AntexReader.hpp -include/gpstk/AntexStream.hpp -include/gpstk/AshtechALB.hpp -include/gpstk/AshtechData.hpp -include/gpstk/AshtechEPB.hpp -include/gpstk/AshtechMBEN.hpp -include/gpstk/AshtechPBEN.hpp -include/gpstk/AshtechStream.hpp -include/gpstk/AstronomicalFunctions.hpp -include/gpstk/AtmosphericDrag.hpp -include/gpstk/Axis.hpp -include/gpstk/AxisStyle.hpp -include/gpstk/BLQDataReader.hpp -include/gpstk/Bancroft.hpp -include/gpstk/Base64Encoder.hpp -include/gpstk/BaseDistribution.hpp -include/gpstk/BasicFramework.hpp -include/gpstk/BasicModel.hpp -include/gpstk/BasicShape.hpp -include/gpstk/BinUtils.hpp -include/gpstk/BinexData.hpp -include/gpstk/BinexFilterOperators.hpp -include/gpstk/BinexStream.hpp -include/gpstk/Bitmap.hpp -include/gpstk/BivarStats.hpp -include/gpstk/BorderLayout.hpp -include/gpstk/BrcClockCorrection.hpp -include/gpstk/BrcKeplerOrbit.hpp -include/gpstk/CNAV2EphClk.hpp -include/gpstk/CNAVClock.hpp -include/gpstk/CNAVEphemeris.hpp -include/gpstk/CRC32.hpp -include/gpstk/Canvas.hpp -include/gpstk/CheckPRData.hpp -include/gpstk/Chi2Distribution.hpp -include/gpstk/CiraExponentialDrag.hpp -include/gpstk/Circle.hpp -include/gpstk/CivilTime.hpp -include/gpstk/ClockModel.hpp -include/gpstk/ClockSatStore.hpp -include/gpstk/CodeBuffer.hpp -include/gpstk/CodeKalmanSolver.hpp -include/gpstk/CodeSmoother.hpp -include/gpstk/Color.hpp -include/gpstk/ColorMap.hpp -include/gpstk/Combinations.hpp -include/gpstk/CommandLine.hpp -include/gpstk/CommandOption.hpp -include/gpstk/CommandOptionParser.hpp -include/gpstk/CommandOptionWithCommonTimeArg.hpp -include/gpstk/CommandOptionWithPositionArg.hpp -include/gpstk/CommandOptionWithTimeArg.hpp -include/gpstk/Comment.hpp -include/gpstk/CommonTime.hpp -include/gpstk/ComputeCombination.hpp -include/gpstk/ComputeDOP.hpp -include/gpstk/ComputeIURAWeights.hpp -include/gpstk/ComputeIonoModel.hpp -include/gpstk/ComputeLC.hpp -include/gpstk/ComputeLI.hpp -include/gpstk/ComputeLdelta.hpp -include/gpstk/ComputeLinear.hpp -include/gpstk/ComputeMOPSWeights.hpp -include/gpstk/ComputeMelbourneWubbena.hpp -include/gpstk/ComputePC.hpp -include/gpstk/ComputePI.hpp -include/gpstk/ComputePdelta.hpp -include/gpstk/ComputeSatPCenter.hpp -include/gpstk/ComputeSimpleWeights.hpp -include/gpstk/ComputeTropModel.hpp -include/gpstk/ComputeWindUp.hpp -include/gpstk/ConfDataReader.hpp -include/gpstk/ConfDataWriter.hpp -include/gpstk/ConstraintSystem.hpp -include/gpstk/ConvertC1ToP1.hpp -include/gpstk/CorrectCodeBiases.hpp -include/gpstk/CorrectObservables.hpp -include/gpstk/DCBDataReader.hpp -include/gpstk/DDid.hpp -include/gpstk/DOP.hpp -include/gpstk/DataHeaders.hpp -include/gpstk/DataStatus.hpp -include/gpstk/DataStructures.hpp -include/gpstk/DebugUtils.hpp -include/gpstk/Decimate.hpp -include/gpstk/DeltaOp.hpp -include/gpstk/Differentiator.hpp -include/gpstk/DiscCorr.hpp -include/gpstk/DoubleOp.hpp -include/gpstk/Dumper.hpp -include/gpstk/EGM96GravityModel.hpp -include/gpstk/ENUUtil.hpp -include/gpstk/EOPDataStore.hpp -include/gpstk/EPSImage.hpp -include/gpstk/EarthBody.hpp -include/gpstk/EarthOceanTide.hpp -include/gpstk/EarthOrientation.hpp -include/gpstk/EarthPoleTide.hpp -include/gpstk/EarthSolidTide.hpp -include/gpstk/EclipsedSatFilter.hpp -include/gpstk/EllipsoidModel.hpp -include/gpstk/EngAlmanac.hpp -include/gpstk/EngEphemeris.hpp -include/gpstk/EngNav.hpp -include/gpstk/EphReader.hpp -include/gpstk/EphemerisRange.hpp -include/gpstk/Epoch.hpp -include/gpstk/EpochClockModel.hpp -include/gpstk/EpochDataStore.hpp -include/gpstk/Equation.hpp -include/gpstk/EquationOfMotion.hpp -include/gpstk/EquationSystem.hpp -include/gpstk/Exception.hpp -include/gpstk/Expression.hpp -include/gpstk/ExtractCombinationData.hpp -include/gpstk/ExtractData.hpp -include/gpstk/ExtractLC.hpp -include/gpstk/ExtractPC.hpp -include/gpstk/FFBinaryStream.hpp -include/gpstk/FFData.hpp -include/gpstk/FFIdentifier.hpp -include/gpstk/FFStream.hpp -include/gpstk/FFStreamError.hpp -include/gpstk/FFTextStream.hpp -include/gpstk/FICAStream.hpp -include/gpstk/FICBase.hpp -include/gpstk/FICData.hpp -include/gpstk/FICData109.hpp -include/gpstk/FICData162.hpp -include/gpstk/FICData62.hpp -include/gpstk/FICData9.hpp -include/gpstk/FICFilterOperators.hpp -include/gpstk/FICHeader.hpp -include/gpstk/FICStream.hpp -include/gpstk/FICStreamBase.hpp -include/gpstk/FIRDifferentiator5thOrder.hpp -include/gpstk/FileFilter.hpp -include/gpstk/FileFilterFrame.hpp -include/gpstk/FileFilterFrameWithHeader.hpp -include/gpstk/FileHunter.hpp -include/gpstk/FileSpec.hpp -include/gpstk/FileStore.hpp -include/gpstk/FileUtils.hpp -include/gpstk/Fillable.hpp -include/gpstk/FilterBase.hpp -include/gpstk/ForceModel.hpp -include/gpstk/ForceModelList.hpp -include/gpstk/Frame.hpp -include/gpstk/GDSUtils.hpp -include/gpstk/GPSAlmanacStore.hpp -include/gpstk/GPSEllipsoid.hpp -include/gpstk/GPSEphemerisStore.hpp -include/gpstk/GPSWeek.hpp -include/gpstk/GPSWeekSecond.hpp -include/gpstk/GPSWeekZcount.hpp -include/gpstk/GPSZcount.hpp -include/gpstk/GPS_URA.hpp -include/gpstk/GSatID.hpp -include/gpstk/GalEphemeris.hpp -include/gpstk/GalEphemerisStore.hpp -include/gpstk/GaussianDistribution.hpp -include/gpstk/GenXSequence.hpp -include/gpstk/GeneralConstraint.hpp -include/gpstk/GeneralEquations.hpp -include/gpstk/GeodeticFrames.hpp -include/gpstk/GloEphemeris.hpp -include/gpstk/GloEphemerisStore.hpp -include/gpstk/GloFreqIndex.hpp -include/gpstk/GraphicsConstants.hpp -include/gpstk/GravitationalDelay.hpp -include/gpstk/GridLayout.hpp -include/gpstk/HLayout.hpp -include/gpstk/HarrisPriesterDrag.hpp -include/gpstk/HelmertTransform.hpp -include/gpstk/Helper.hpp -include/gpstk/InOutFramework.hpp -include/gpstk/Integrator.hpp -include/gpstk/InterpolatedColorMap.hpp -include/gpstk/IonexBase.hpp -include/gpstk/IonexData.hpp -include/gpstk/IonexHeader.hpp -include/gpstk/IonexModel.hpp -include/gpstk/IonexStore.hpp -include/gpstk/IonexStream.hpp -include/gpstk/IonoModel.hpp -include/gpstk/IonoModelStore.hpp -include/gpstk/JGM3GravityModel.hpp -include/gpstk/JulianDate.hpp -include/gpstk/Keeper.hpp -include/gpstk/KeplerOrbit.hpp -include/gpstk/LEOSatOrbit.hpp -include/gpstk/LICSDetector.hpp -include/gpstk/LICSDetector2.hpp -include/gpstk/Layout.hpp -include/gpstk/Line.hpp -include/gpstk/LinePlot.hpp -include/gpstk/LinearClockModel.hpp -include/gpstk/LinearCombinations.hpp -include/gpstk/LogChannel.hpp -include/gpstk/LogMessage.hpp -include/gpstk/Logger.hpp -include/gpstk/LoopedFramework.hpp -include/gpstk/MDPHeader.hpp -include/gpstk/MDPNavSubframe.hpp -include/gpstk/MDPObsEpoch.hpp -include/gpstk/MDPPVTSolution.hpp -include/gpstk/MDPSelftestStatus.hpp -include/gpstk/MDPStream.hpp -include/gpstk/MJD.hpp -include/gpstk/MOPSWeight.hpp -include/gpstk/MSCBase.hpp -include/gpstk/MSCData.hpp -include/gpstk/MSCHeader.hpp -include/gpstk/MSCStore.hpp -include/gpstk/MSCStream.hpp -include/gpstk/MWCSDetector.hpp -include/gpstk/MainAdapter.hpp -include/gpstk/Markable.hpp -include/gpstk/Marker.hpp -include/gpstk/MathBase.hpp -include/gpstk/Matrix.hpp -include/gpstk/MatrixBase.hpp -include/gpstk/MatrixBaseOperators.hpp -include/gpstk/MatrixFunctors.hpp -include/gpstk/MatrixImplementation.hpp -include/gpstk/MatrixOperators.hpp -include/gpstk/MemoryUtils.hpp -include/gpstk/MetReader.hpp -include/gpstk/MiscMath.hpp -include/gpstk/ModelObs.hpp -include/gpstk/ModelObsFixedStation.hpp -include/gpstk/ModeledPR.hpp -include/gpstk/ModeledPseudorangeBase.hpp -include/gpstk/ModeledReferencePR.hpp -include/gpstk/MoonForce.hpp -include/gpstk/MoonPosition.hpp -include/gpstk/Msise00Drag.hpp -include/gpstk/NEDUtil.hpp -include/gpstk/NablaOp.hpp -include/gpstk/Namelist.hpp -include/gpstk/NavSatOrbit.hpp -include/gpstk/NetworkObsStreams.hpp -include/gpstk/NovatelData.hpp -include/gpstk/NovatelStream.hpp -include/gpstk/ORDEpoch.hpp -include/gpstk/ObsClockModel.hpp -include/gpstk/ObsEphReaderFramework.hpp -include/gpstk/ObsEpochMap.hpp -include/gpstk/ObsID.hpp -include/gpstk/ObsReader.hpp -include/gpstk/ObsRngDev.hpp -include/gpstk/ObsUtils.hpp -include/gpstk/OceanLoading.hpp -include/gpstk/OneFreqCSDetector.hpp -include/gpstk/OrbElemStore.hpp -include/gpstk/PCSmoother.hpp -include/gpstk/PCodeConst.hpp -include/gpstk/PNG.hpp -include/gpstk/PRSolution.hpp -include/gpstk/PRSolution2.hpp -include/gpstk/PSImage.hpp -include/gpstk/PSImageBase.hpp -include/gpstk/PZ90Ellipsoid.hpp -include/gpstk/PackedNavBits.hpp -include/gpstk/Palette.hpp -include/gpstk/Path.hpp -include/gpstk/PhaseCodeAlignment.hpp -include/gpstk/PhaseWindup.hpp -include/gpstk/PlanetEphemeris.hpp -include/gpstk/Plot.hpp -include/gpstk/PoleTides.hpp -include/gpstk/PolyFit.hpp -include/gpstk/Polygon.hpp -include/gpstk/Position.hpp -include/gpstk/PositionSatStore.hpp -include/gpstk/PowerSum.hpp -include/gpstk/PreciseRange.hpp -include/gpstk/ProblemSatFilter.hpp -include/gpstk/ProcessingClass.hpp -include/gpstk/ProcessingList.hpp -include/gpstk/ProcessingVector.hpp -include/gpstk/Pruner.hpp -include/gpstk/PvtStore.hpp -include/gpstk/RACRotation.hpp -include/gpstk/RK4VehicleModel.hpp -include/gpstk/RTFileFrame.hpp -include/gpstk/Rectangle.hpp -include/gpstk/ReferenceFrame.hpp -include/gpstk/ReferenceFrames.hpp -include/gpstk/RelativityEffect.hpp -include/gpstk/RequireObservables.hpp -include/gpstk/Rinex3ClockBase.hpp -include/gpstk/Rinex3ClockData.hpp -include/gpstk/Rinex3ClockHeader.hpp -include/gpstk/Rinex3ClockStream.hpp -include/gpstk/Rinex3EphemerisStore.hpp -include/gpstk/Rinex3NavBase.hpp -include/gpstk/Rinex3NavData.hpp -include/gpstk/Rinex3NavFilterOperators.hpp -include/gpstk/Rinex3NavHeader.hpp -include/gpstk/Rinex3NavStream.hpp -include/gpstk/Rinex3ObsBase.hpp -include/gpstk/Rinex3ObsData.hpp -include/gpstk/Rinex3ObsFilterOperators.hpp -include/gpstk/Rinex3ObsHeader.hpp -include/gpstk/Rinex3ObsStream.hpp -include/gpstk/RinexClockBase.hpp -include/gpstk/RinexClockData.hpp -include/gpstk/RinexClockHeader.hpp -include/gpstk/RinexClockStore.hpp -include/gpstk/RinexClockStream.hpp -include/gpstk/RinexConverters.hpp -include/gpstk/RinexMetBase.hpp -include/gpstk/RinexMetData.hpp -include/gpstk/RinexMetFilterOperators.hpp -include/gpstk/RinexMetHeader.hpp -include/gpstk/RinexMetStream.hpp -include/gpstk/RinexNavBase.hpp -include/gpstk/RinexNavData.hpp -include/gpstk/RinexNavFilterOperators.hpp -include/gpstk/RinexNavHeader.hpp -include/gpstk/RinexNavStream.hpp -include/gpstk/RinexObsBase.hpp -include/gpstk/RinexObsData.hpp -include/gpstk/RinexObsFilterOperators.hpp -include/gpstk/RinexObsHeader.hpp -include/gpstk/RinexObsID.hpp -include/gpstk/RinexObsStream.hpp -include/gpstk/RinexSatID.hpp -include/gpstk/RinexUtilities.hpp -include/gpstk/RobustStats.hpp -include/gpstk/RungeKutta4.hpp -include/gpstk/RungeKuttaFehlberg.hpp -include/gpstk/SEMAlmanacStore.hpp -include/gpstk/SEMBase.hpp -include/gpstk/SEMData.hpp -include/gpstk/SEMHeader.hpp -include/gpstk/SEMStream.hpp -include/gpstk/SMODFData.hpp -include/gpstk/SMODFStream.hpp -include/gpstk/SP3Base.hpp -include/gpstk/SP3Data.hpp -include/gpstk/SP3EphemerisStore.hpp -include/gpstk/SP3Header.hpp -include/gpstk/SP3SatID.hpp -include/gpstk/SP3Stream.hpp -include/gpstk/SRI.hpp -include/gpstk/SRIFilter.hpp -include/gpstk/SRIMatrix.hpp -include/gpstk/SRIleastSquares.hpp -include/gpstk/SVExclusionList.hpp -include/gpstk/SVGImage.hpp -include/gpstk/SVNumXRef.hpp -include/gpstk/SVPCodeGen.hpp -include/gpstk/SatArcMarker.hpp -include/gpstk/SatDataReader.hpp -include/gpstk/SatID.hpp -include/gpstk/SatOrbit.hpp -include/gpstk/SatOrbitPropagator.hpp -include/gpstk/SatOrbitStore.hpp -include/gpstk/SatPass.hpp -include/gpstk/ScatterPlot.hpp -include/gpstk/SeriesList.hpp -include/gpstk/SimpleFilter.hpp -include/gpstk/SimpleIURAWeight.hpp -include/gpstk/SimpleKalmanFilter.hpp -include/gpstk/SolarPosition.hpp -include/gpstk/SolarRadiationPressure.hpp -include/gpstk/SolarSystem.hpp -include/gpstk/SolidTides.hpp -include/gpstk/SolverBase.hpp -include/gpstk/SolverGeneral.hpp -include/gpstk/SolverLMS.hpp -include/gpstk/SolverPPP.hpp -include/gpstk/SolverPPPFB.hpp -include/gpstk/SolverWMS.hpp -include/gpstk/SourceID.hpp -include/gpstk/Spacecraft.hpp -include/gpstk/SpecialFunctions.hpp -include/gpstk/SphericalHarmonicGravity.hpp -include/gpstk/Splitter.hpp -include/gpstk/Stats.hpp -include/gpstk/StochasticModel.hpp -include/gpstk/StreamBuf.hpp -include/gpstk/StringUtils.hpp -include/gpstk/StrokeStyle.hpp -include/gpstk/StudentDistribution.hpp -include/gpstk/SunEarthSatGeometry.hpp -include/gpstk/SunForce.hpp -include/gpstk/SunPosition.hpp -include/gpstk/SurfacePlot.hpp -include/gpstk/Synchronize.hpp -include/gpstk/SystemTime.hpp -include/gpstk/TabularSatStore.hpp -include/gpstk/Text.hpp -include/gpstk/TextStyle.hpp -include/gpstk/TimeConstants.hpp -include/gpstk/TimeConverters.hpp -include/gpstk/TimeNamedFileStream.hpp -include/gpstk/TimeString.hpp -include/gpstk/TimeSystem.hpp -include/gpstk/TimeSystemCorr.hpp -include/gpstk/TimeTag.hpp -include/gpstk/Triple.hpp -include/gpstk/TropModel.hpp -include/gpstk/TypeID.hpp -include/gpstk/UTCTime.hpp -include/gpstk/UnixTime.hpp -include/gpstk/VDrawException.hpp -include/gpstk/VGImage.hpp -include/gpstk/VGState.hpp -include/gpstk/VLayout.hpp -include/gpstk/ValidType.hpp -include/gpstk/Variable.hpp -include/gpstk/Vector.hpp -include/gpstk/VectorBase.hpp -include/gpstk/VectorBaseOperators.hpp -include/gpstk/VectorOperators.hpp -include/gpstk/ViewerManager.hpp -include/gpstk/WGS84Ellipsoid.hpp -include/gpstk/WeightBase.hpp -include/gpstk/WxObsMap.hpp -include/gpstk/X1Sequence.hpp -include/gpstk/X2Sequence.hpp -include/gpstk/XYZ2NED.hpp -include/gpstk/XYZ2NEU.hpp -include/gpstk/Xv.hpp -include/gpstk/Xvt.hpp -include/gpstk/XvtStore.hpp -include/gpstk/YDSTime.hpp -include/gpstk/YumaAlmanacStore.hpp -include/gpstk/YumaBase.hpp -include/gpstk/YumaData.hpp -include/gpstk/YumaHeader.hpp -include/gpstk/YumaStream.hpp -include/gpstk/convhelp.hpp -include/gpstk/expandtilde.hpp -include/gpstk/format.hpp -include/gpstk/geometry.hpp -include/gpstk/gps_constants.hpp -include/gpstk/gpstkplatform.h -include/gpstk/index.hpp -include/gpstk/logstream.hpp -include/gpstk/mergePCodeWords.h -include/gpstk/miscdefs.hpp -include/gpstk/miscenum.hpp -include/gpstk/plottypes.hpp -include/gpstk/random.hpp -include/gpstk/singleton.hpp -include/gpstk/stl_helpers.hpp -lib/libgeodyn.a -lib/libgeodyn.so -lib/libgeodyn.so.20 -lib/libgeomatics.a -lib/libgeomatics.so -lib/libgeomatics.so.20 -lib/libgpstk.a +include/ANSITime.hpp +include/ASConstant.hpp +include/Adler32.hpp +include/AllanDeviation.hpp +include/AlmOrbit.hpp +include/Antenna.hpp +include/AntexBase.hpp +include/AntexData.hpp +include/AntexHeader.hpp +include/AntexReader.hpp +include/AntexStream.hpp +include/AshtechALB.hpp +include/AshtechData.hpp +include/AshtechEPB.hpp +include/AshtechMBEN.hpp +include/AshtechPBEN.hpp +include/AshtechStream.hpp +include/AstronomicalFunctions.hpp +include/AtmosphericDrag.hpp +include/Axis.hpp +include/AxisStyle.hpp +include/BDSEphemeris.hpp +include/BDSEphemerisStore.hpp +include/BDSWeekSecond.hpp +include/BLQDataReader.hpp +include/Bancroft.hpp +include/Base64Encoder.hpp +include/BaseDistribution.hpp +include/BasicFramework.hpp +include/BasicModel.hpp +include/BasicShape.hpp +include/BinUtils.hpp +include/BinexData.hpp +include/BinexFilterOperators.hpp +include/BinexStream.hpp +include/Bitmap.hpp +include/BivarStats.hpp +include/BorderLayout.hpp +include/BrcClockCorrection.hpp +include/BrcKeplerOrbit.hpp +include/CNAV2EphClk.hpp +include/CNAVClock.hpp +include/CNAVEphemeris.hpp +include/CNavDataElement.hpp +include/CNavDataElementStore.hpp +include/CNavEOP.hpp +include/CNavGGTO.hpp +include/CNavISC.hpp +include/CNavText.hpp +include/CNavUTC.hpp +include/CRC32.hpp +include/Canvas.hpp +include/CheckPRData.hpp +include/Chi2Distribution.hpp +include/CiraExponentialDrag.hpp +include/Circle.hpp +include/CivilTime.hpp +include/ClockModel.hpp +include/ClockSatStore.hpp +include/CodeBuffer.hpp +include/CodeKalmanSolver.hpp +include/CodeSmoother.hpp +include/Color.hpp +include/ColorMap.hpp +include/Combinations.hpp +include/CommandLine.hpp +include/CommandOption.hpp +include/CommandOptionParser.hpp +include/CommandOptionWithCommonTimeArg.hpp +include/CommandOptionWithPositionArg.hpp +include/CommandOptionWithTimeArg.hpp +include/Comment.hpp +include/CommonTime.hpp +include/ComputeCombination.hpp +include/ComputeDOP.hpp +include/ComputeIURAWeights.hpp +include/ComputeIonoModel.hpp +include/ComputeLC.hpp +include/ComputeLI.hpp +include/ComputeLdelta.hpp +include/ComputeLinear.hpp +include/ComputeMOPSWeights.hpp +include/ComputeMelbourneWubbena.hpp +include/ComputePC.hpp +include/ComputePI.hpp +include/ComputePdelta.hpp +include/ComputeSatPCenter.hpp +include/ComputeSimpleWeights.hpp +include/ComputeTropModel.hpp +include/ComputeWindUp.hpp +include/ConfData.hpp +include/ConfDataItem.hpp +include/ConfDataReader.hpp +include/ConfDataSection.hpp +include/ConfDataStructures.hpp +include/ConfDataWriter.hpp +include/ConstraintSystem.hpp +include/ConvertC1ToP1.hpp +include/CorrectCodeBiases.hpp +include/CorrectObservables.hpp +include/DCBDataReader.hpp +include/DDid.hpp +include/DataHeaders.hpp +include/DataStatus.hpp +include/DataStructures.hpp +include/Decimate.hpp +include/DeltaOp.hpp +include/Differentiator.hpp +include/DiscCorr.hpp +include/DoubleOp.hpp +include/Dumper.hpp +include/EGM96GravityModel.hpp +include/ENUUtil.hpp +include/EOPDataStore.hpp +include/EPSImage.hpp +include/EarthBody.hpp +include/EarthOceanTide.hpp +include/EarthOrientation.hpp +include/EarthPoleTide.hpp +include/EarthSolidTide.hpp +include/EclipsedSatFilter.hpp +include/EllipsoidModel.hpp +include/EngAlmanac.hpp +include/EngEphemeris.hpp +include/EngNav.hpp +include/EphemerisRange.hpp +include/Epoch.hpp +include/EpochClockModel.hpp +include/EpochDataStore.hpp +include/Equation.hpp +include/EquationOfMotion.hpp +include/EquationSystem.hpp +include/Exception.hpp +include/Expression.hpp +include/ExtractCombinationData.hpp +include/ExtractData.hpp +include/ExtractLC.hpp +include/ExtractPC.hpp +include/FFBinaryStream.hpp +include/FFData.hpp +include/FFStream.hpp +include/FFStreamError.hpp +include/FFTextStream.hpp +include/FIRDifferentiator5thOrder.hpp +include/FileFilter.hpp +include/FileFilterFrame.hpp +include/FileFilterFrameWithHeader.hpp +include/FileHunter.hpp +include/FileSpec.hpp +include/FileStore.hpp +include/FileUtils.hpp +include/Fillable.hpp +include/FilterBase.hpp +include/ForceModel.hpp +include/ForceModelList.hpp +include/Frame.hpp +include/GALWeekSecond.hpp +include/GDSUtils.hpp +include/GNSSconstants.hpp +include/GPSAlmanacStore.hpp +include/GPSEllipsoid.hpp +include/GPSEphemeris.hpp +include/GPSEphemerisStore.hpp +include/GPSOrbElemStore.hpp +include/GPSWeek.hpp +include/GPSWeekSecond.hpp +include/GPSWeekZcount.hpp +include/GPSZcount.hpp +include/GPS_URA.hpp +include/GSatID.hpp +include/GalEphemeris.hpp +include/GalEphemerisStore.hpp +include/GaussianDistribution.hpp +include/GenXSequence.hpp +include/GeneralConstraint.hpp +include/GeneralEquations.hpp +include/GeodeticFrames.hpp +include/GloEphemeris.hpp +include/GloEphemerisStore.hpp +include/GraphicsConstants.hpp +include/GravitationalDelay.hpp +include/GridLayout.hpp +include/HLayout.hpp +include/HarrisPriesterDrag.hpp +include/HelmertTransform.hpp +include/Helper.hpp +include/IERS.hpp +include/IERSConventions.hpp +include/InOutFramework.hpp +include/Integrator.hpp +include/InterpolatedColorMap.hpp +include/IonexBase.hpp +include/IonexData.hpp +include/IonexHeader.hpp +include/IonexModel.hpp +include/IonexStore.hpp +include/IonexStream.hpp +include/IonoModel.hpp +include/IonoModelStore.hpp +include/JGM3GravityModel.hpp +include/JulianDate.hpp +include/KalmanFilter.hpp +include/Keeper.hpp +include/KeplerOrbit.hpp +include/LICSDetector.hpp +include/LICSDetector2.hpp +include/Layout.hpp +include/Line.hpp +include/LinePlot.hpp +include/LinearClockModel.hpp +include/LinearCombinations.hpp +include/LoopedFramework.hpp +include/MJD.hpp +include/MOPSWeight.hpp +include/MWCSDetector.hpp +include/MainAdapter.hpp +include/Markable.hpp +include/Marker.hpp +include/MathBase.hpp +include/Matrix.hpp +include/MatrixBase.hpp +include/MatrixBaseOperators.hpp +include/MatrixFunctors.hpp +include/MatrixImplementation.hpp +include/MatrixOperators.hpp +include/MemoryUtils.hpp +include/MetReader.hpp +include/MiscMath.hpp +include/ModelObs.hpp +include/ModelObsFixedStation.hpp +include/ModeledPR.hpp +include/ModeledPseudorangeBase.hpp +include/ModeledReferencePR.hpp +include/MoonForce.hpp +include/MoonPosition.hpp +include/Msise00Drag.hpp +include/NEDUtil.hpp +include/NablaOp.hpp +include/Namelist.hpp +include/NetworkObsStreams.hpp +include/NovatelData.hpp +include/NovatelStream.hpp +include/ORDEpoch.hpp +include/ObsClockModel.hpp +include/ObsEpochMap.hpp +include/ObsID.hpp +include/ObsIDInitializer.hpp +include/ObsRngDev.hpp +include/OceanLoading.hpp +include/OneFreqCSDetector.hpp +include/OrbElem.hpp +include/OrbElemRinex.hpp +include/OrbElemStore.hpp +include/OrbitEph.hpp +include/OrbitEphStore.hpp +include/PCSmoother.hpp +include/PCodeConst.hpp +include/PNG.hpp +include/PRSolution.hpp +include/PRSolution2.hpp +include/PSImage.hpp +include/PSImageBase.hpp +include/PZ90Ellipsoid.hpp +include/PackedNavBits.hpp +include/Palette.hpp +include/Path.hpp +include/PhaseCodeAlignment.hpp +include/PhaseWindup.hpp +include/PlanetEphemeris.hpp +include/Plot.hpp +include/PoleTides.hpp +include/PolyFit.hpp +include/Polygon.hpp +include/Position.hpp +include/PositionSatStore.hpp +include/PowerSum.hpp +include/PreciseRange.hpp +include/ProblemSatFilter.hpp +include/ProcessingClass.hpp +include/ProcessingList.hpp +include/ProcessingVector.hpp +include/Pruner.hpp +include/PvtStore.hpp +include/QZSEphemeris.hpp +include/QZSEphemerisStore.hpp +include/QZSWeekSecond.hpp +include/RACRotation.hpp +include/RTFileFrame.hpp +include/Rectangle.hpp +include/ReferenceFrame.hpp +include/ReferenceFrames.hpp +include/RelativityEffect.hpp +include/RequireObservables.hpp +include/Rinex3ClockBase.hpp +include/Rinex3ClockData.hpp +include/Rinex3ClockHeader.hpp +include/Rinex3ClockStream.hpp +include/Rinex3EphemerisStore.hpp +include/Rinex3NavBase.hpp +include/Rinex3NavData.hpp +include/Rinex3NavFilterOperators.hpp +include/Rinex3NavHeader.hpp +include/Rinex3NavStream.hpp +include/Rinex3ObsBase.hpp +include/Rinex3ObsData.hpp +include/Rinex3ObsFilterOperators.hpp +include/Rinex3ObsHeader.hpp +include/Rinex3ObsStream.hpp +include/RinexClockBase.hpp +include/RinexClockData.hpp +include/RinexClockHeader.hpp +include/RinexClockStore.hpp +include/RinexClockStream.hpp +include/RinexEphemerisStore.hpp +include/RinexMetBase.hpp +include/RinexMetData.hpp +include/RinexMetFilterOperators.hpp +include/RinexMetHeader.hpp +include/RinexMetStream.hpp +include/RinexNavBase.hpp +include/RinexNavData.hpp +include/RinexNavFilterOperators.hpp +include/RinexNavHeader.hpp +include/RinexNavStream.hpp +include/RinexObsBase.hpp +include/RinexObsData.hpp +include/RinexObsFilterOperators.hpp +include/RinexObsHeader.hpp +include/RinexObsID.hpp +include/RinexObsStream.hpp +include/RinexSatID.hpp +include/RinexUtilities.hpp +include/RobustStats.hpp +include/RungeKutta4.hpp +include/RungeKuttaFehlberg.hpp +include/SEMAlmanacStore.hpp +include/SEMBase.hpp *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 13:08:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B84AAE8F; Sat, 11 Oct 2014 13:08:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4377342; Sat, 11 Oct 2014 13:08:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BD8Lrg058769; Sat, 11 Oct 2014 13:08:21 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BD8LHV058768; Sat, 11 Oct 2014 13:08:21 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201410111308.s9BD8LHV058768@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sat, 11 Oct 2014 13:08:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370635 - head/graphics/py-pillow X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 13:08:21 -0000 Author: wg Date: Sat Oct 11 13:08:20 2014 New Revision: 370635 URL: https://svnweb.freebsd.org/changeset/ports/370635 QAT: https://qat.redports.org/buildarchive/r370635/ Log: graphics/py-pillow: fix typo in TIFF option With hat: python Reported by: Beeblebrox (via email, freebsd-ports@) Modified: head/graphics/py-pillow/Makefile Modified: head/graphics/py-pillow/Makefile ============================================================================== --- head/graphics/py-pillow/Makefile Sat Oct 11 12:30:34 2014 (r370634) +++ head/graphics/py-pillow/Makefile Sat Oct 11 13:08:20 2014 (r370635) @@ -24,7 +24,7 @@ TKINTER_DESC= Tkinter (Tcl/Tk) BitmapIm FREETYPE_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 JPEG_LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg LCMS_LIB_DEPENDS= liblcms2.so:${PORTSDIR}/graphics/lcms2 -TIFF_LIB_DEPENDs= libtiff.so:${PORTSDIR}/graphics/tiff +TIFF_LIB_DEPENDS= libtiff.so:${PORTSDIR}/graphics/tiff TKINTER_USES= tk:build WEBP_LIB_DEPENDS= libwebp.so:${PORTSDIR}/graphics/webp From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9A6AFC8; Sat, 11 Oct 2014 14:00:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C0D6AC6; Sat, 11 Oct 2014 14:00:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0AJ2082479; Sat, 11 Oct 2014 14:00:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0AFI082477; Sat, 11 Oct 2014 14:00:10 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0AFI082477@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370636 - head/games/vamos X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:10 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:09 2014 New Revision: 370636 URL: https://svnweb.freebsd.org/changeset/ports/370636 QAT: https://qat.redports.org/buildarchive/r370636/ Log: - Clarify LICENSE - Add LICENSE_FILE - Simplify docs installation - Drop @dirrm* from plist Modified: head/games/vamos/Makefile head/games/vamos/pkg-plist Modified: head/games/vamos/Makefile ============================================================================== --- head/games/vamos/Makefile Sat Oct 11 13:08:20 2014 (r370635) +++ head/games/vamos/Makefile Sat Oct 11 14:00:09 2014 (r370636) @@ -13,7 +13,8 @@ DISTFILES= ${PORTNAME}-${DISTVERSION}${E MAINTAINER= games@FreeBSD.org COMMENT= Automotive simulation framework -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs \ libpng15.so:${PORTSDIR}/graphics/png @@ -33,13 +34,6 @@ LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_L INFO= vamos PORTDOCS= * -DOCSRCDIR1= ${WRKSRC} -DOC_FILES1= AUTHORS ChangeLog README TODO - -DOCSRCDIR2= ${WRKSRC}/doc -DOCSDIR2= ${DOCSDIR}/doc -DOC_FILES2= matrixfaq.htm - OPTIONS_DEFINE= DOCS INSTALLS_ICONS= yes @@ -71,10 +65,7 @@ post-install: .endfor ${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/ - - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR} - @${MKDIR} ${STAGEDIR}${DOCSDIR2} - ${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2} + cd ${WRKSRC} && ${COPYTREE_SHARE} "AUTHORS ChangeLog README TODO doc/matrixfaq.htm" \ + ${STAGEDIR}${DOCSDIR} .include Modified: head/games/vamos/pkg-plist ============================================================================== --- head/games/vamos/pkg-plist Sat Oct 11 13:08:20 2014 (r370635) +++ head/games/vamos/pkg-plist Sat Oct 11 14:00:09 2014 (r370636) @@ -220,18 +220,3 @@ share/pixmaps/vamos.png %%DATADIR%%/worlds/default-world.xml %%DATADIR%%/worlds/earth.xml %%DATADIR%%/worlds/moon.xml -@dirrm %%DATADIR%%/worlds -@dirrm %%DATADIR%%/tracks -@dirrm %%DATADIR%%/textures -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/controls -@dirrm %%DATADIR%%/cars/GT -@dirrm %%DATADIR%%/cars/F1 -@dirrm %%DATADIR%%/cars -@dirrm %%DATADIR%% -@dirrm include/vamos/world -@dirrm include/vamos/track -@dirrm include/vamos/media -@dirrm include/vamos/geometry -@dirrm include/vamos/body -@dirrm include/vamos From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4F9F1AA; Sat, 11 Oct 2014 14:00:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 90FFAAC9; Sat, 11 Oct 2014 14:00:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0FZa082609; Sat, 11 Oct 2014 14:00:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0FjG082604; Sat, 11 Oct 2014 14:00:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0FjG082604@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370637 - head/games/gtkatlantic X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:15 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:14 2014 New Revision: 370637 URL: https://svnweb.freebsd.org/changeset/ports/370637 QAT: https://qat.redports.org/buildarchive/r370637/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/gtkatlantic/Makefile head/games/gtkatlantic/pkg-plist Modified: head/games/gtkatlantic/Makefile ============================================================================== --- head/games/gtkatlantic/Makefile Sat Oct 11 14:00:09 2014 (r370636) +++ head/games/gtkatlantic/Makefile Sat Oct 11 14:00:14 2014 (r370637) @@ -12,7 +12,8 @@ DISTFILES= ${PORTNAME}-${DISTVERSION}${E MAINTAINER= games@FreeBSD.org COMMENT= Game like Monopoly(tm) -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USES= pkgconfig USE_GNOME= gtk20 Modified: head/games/gtkatlantic/pkg-plist ============================================================================== --- head/games/gtkatlantic/pkg-plist Sat Oct 11 14:00:09 2014 (r370636) +++ head/games/gtkatlantic/pkg-plist Sat Oct 11 14:00:14 2014 (r370637) @@ -30,6 +30,3 @@ share/icons/hicolor/64x64/apps/gtkatlant share/icons/hicolor/72x72/apps/gtkatlantic.png share/icons/hicolor/96x96/apps/gtkatlantic.png share/pixmaps/gtkatlantic.png -@dirrm %%DATADIR%%/themes/generic_gradient -@dirrm %%DATADIR%%/themes -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:20 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4E69288; Sat, 11 Oct 2014 14:00:20 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0AAFACD; Sat, 11 Oct 2014 14:00:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0KI8082738; Sat, 11 Oct 2014 14:00:20 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0K0e082733; Sat, 11 Oct 2014 14:00:20 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0K0e082733@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370638 - head/games/whichwayisup X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:20 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:19 2014 New Revision: 370638 URL: https://svnweb.freebsd.org/changeset/ports/370638 QAT: https://qat.redports.org/buildarchive/r370638/ Log: - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/whichwayisup/Makefile head/games/whichwayisup/pkg-plist Modified: head/games/whichwayisup/Makefile ============================================================================== --- head/games/whichwayisup/Makefile Sat Oct 11 14:00:14 2014 (r370637) +++ head/games/whichwayisup/Makefile Sat Oct 11 14:00:19 2014 (r370638) @@ -21,9 +21,8 @@ RUN_DEPENDS= ${PYGAME} WRKSRC= ${WRKDIR}/${PORTNAME} -USES= dos2unix zip +USES= dos2unix python zip DOS2UNIX_REGEX= .*.[^pt][^nt][^gf] -USE_PYTHON= yes INSTALLS_ICONS= yes PORTDOCS= README.txt changelog.txt Modified: head/games/whichwayisup/pkg-plist ============================================================================== --- head/games/whichwayisup/pkg-plist Sat Oct 11 14:00:14 2014 (r370637) +++ head/games/whichwayisup/pkg-plist Sat Oct 11 14:00:19 2014 (r370638) @@ -197,10 +197,3 @@ share/pixmaps/whichwayisup.png %%DATADIR%%/sounds/kling.ogg %%DATADIR%%/sounds/nextlevel.ogg %%DATADIR%%/sounds/woosh.ogg -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/pictures -@dirrm %%DATADIR%%/music -@dirrm %%DATADIR%%/misc -@dirrm %%DATADIR%%/levels -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/whichwayisup From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:28 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 988FA367; Sat, 11 Oct 2014 14:00:28 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A846AD2; Sat, 11 Oct 2014 14:00:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0SsV082873; Sat, 11 Oct 2014 14:00:28 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0SuI082871; Sat, 11 Oct 2014 14:00:28 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0SuI082871@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370639 - head/games/jools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:28 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:27 2014 New Revision: 370639 URL: https://svnweb.freebsd.org/changeset/ports/370639 QAT: https://qat.redports.org/buildarchive/r370639/ Log: - Clarify LICENSE - Add LICENSE_FILE - Convert to USES=python - Drop @dirrm* from plist Modified: head/games/jools/Makefile head/games/jools/pkg-plist Modified: head/games/jools/Makefile ============================================================================== --- head/games/jools/Makefile Sat Oct 11 14:00:19 2014 (r370638) +++ head/games/jools/Makefile Sat Oct 11 14:00:27 2014 (r370639) @@ -12,12 +12,13 @@ DISTFILES= ${PORTNAME}-${DISTVERSION}${E MAINTAINER= games@FreeBSD.org COMMENT= Addictive jewel-swapping puzzle game -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYGAME} -USE_PYTHON= yes -USE_PYDISTUTILS= yes +USES= python +USE_PYTHON= distutils PORTDOCS= POINTS manual.html manual.pdf manual.tex OPTIONS_DEFINE= DOCS Modified: head/games/jools/pkg-plist ============================================================================== --- head/games/jools/pkg-plist Sat Oct 11 14:00:19 2014 (r370638) +++ head/games/jools/pkg-plist Sat Oct 11 14:00:27 2014 (r370639) @@ -264,21 +264,3 @@ bin/jools %%DATADIR%%/sounds/01/point5.wav %%DATADIR%%/sounds/01/point6.wav share/pixmaps/jools.png -@dirrm %%DATADIR%%/sounds/01 -@dirrm %%DATADIR%%/sounds/00 -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/music/untimed -@dirrm %%DATADIR%%/music/title -@dirrm %%DATADIR%%/music/timed -@dirrm %%DATADIR%%/music -@dirrm %%DATADIR%%/images/sphere -@dirrm %%DATADIR%%/images/sapphire -@dirrm %%DATADIR%%/images/ruby -@dirrm %%DATADIR%%/images/orange -@dirrm %%DATADIR%%/images/emerald -@dirrm %%DATADIR%%/images/diamond -@dirrm %%DATADIR%%/images/amethyst -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/jools From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28303447; Sat, 11 Oct 2014 14:00:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13CD1AD7; Sat, 11 Oct 2014 14:00:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0aXs083469; Sat, 11 Oct 2014 14:00:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0a5v083466; Sat, 11 Oct 2014 14:00:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0a5v083466@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370640 - head/games/moagg X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:37 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:36 2014 New Revision: 370640 URL: https://svnweb.freebsd.org/changeset/ports/370640 QAT: https://qat.redports.org/buildarchive/r370640/ Log: - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/moagg/Makefile head/games/moagg/pkg-plist Modified: head/games/moagg/Makefile ============================================================================== --- head/games/moagg/Makefile Sat Oct 11 14:00:27 2014 (r370639) +++ head/games/moagg/Makefile Sat Oct 11 14:00:36 2014 (r370640) @@ -16,6 +16,7 @@ MAINTAINER= games@FreeBSD.org COMMENT= Pilot a small space ship LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING DATADIR= ${JAVASHAREDIR}/${PORTNAME} Modified: head/games/moagg/pkg-plist ============================================================================== --- head/games/moagg/pkg-plist Sat Oct 11 14:00:27 2014 (r370639) +++ head/games/moagg/pkg-plist Sat Oct 11 14:00:36 2014 (r370640) @@ -473,57 +473,3 @@ bin/moagg %%DATADIR%%/jar/timer.dll %%DATADIR%%/log4j.properties share/pixmaps/moagg.png -@dirrm %%DATADIR%%/jar -@dirrm %%DATADIR%%/ghosts/unsorted/rescue06 -@dirrm %%DATADIR%%/ghosts/unsorted/race03 -@dirrm %%DATADIR%%/ghosts/unsorted/race02 -@dirrm %%DATADIR%%/ghosts/unsorted/race01 -@dirrm %%DATADIR%%/ghosts/unsorted -@dirrm %%DATADIR%%/ghosts/tutorial/water -@dirrm %%DATADIR%%/ghosts/tutorial/tutorial06 -@dirrm %%DATADIR%%/ghosts/tutorial/tutorial02 -@dirrm %%DATADIR%%/ghosts/tutorial/turrets -@dirrm %%DATADIR%%/ghosts/tutorial/tiles -@dirrm %%DATADIR%%/ghosts/tutorial/thorns -@dirrm %%DATADIR%%/ghosts/tutorial/tanks -@dirrm %%DATADIR%%/ghosts/tutorial/switches -@dirrm %%DATADIR%%/ghosts/tutorial/magnets -@dirrm %%DATADIR%%/ghosts/tutorial/grinders -@dirrm %%DATADIR%%/ghosts/tutorial/grid -@dirrm %%DATADIR%%/ghosts/tutorial/fuel -@dirrm %%DATADIR%%/ghosts/tutorial/destroyable_tiles -@dirrm %%DATADIR%%/ghosts/tutorial/crates -@dirrm %%DATADIR%%/ghosts/tutorial/blackhole -@dirrm %%DATADIR%%/ghosts/tutorial/barriers -@dirrm %%DATADIR%%/ghosts/tutorial -@dirrm %%DATADIR%%/ghosts/snakepit/snakerace02 -@dirrm %%DATADIR%%/ghosts/snakepit/snakerace01 -@dirrm %%DATADIR%%/ghosts/snakepit/snakepit01 -@dirrm %%DATADIR%%/ghosts/snakepit/rescue02 -@dirrm %%DATADIR%%/ghosts/snakepit/rescue01 -@dirrm %%DATADIR%%/ghosts/snakepit/magnets01 -@dirrm %%DATADIR%%/ghosts/snakepit -@dirrm %%DATADIR%%/ghosts -@dirrm %%DATADIR%%/data/missions/unsorted -@dirrm %%DATADIR%%/data/missions/tutorial -@dirrm %%DATADIR%%/data/missions/snakepit -@dirrm %%DATADIR%%/data/missions/revans -@dirrm %%DATADIR%%/data/missions/frozen -@dirrm %%DATADIR%%/data/missions -@dirrm %%DATADIR%%/data/gfx/tiles/winter -@dirrm %%DATADIR%%/data/gfx/tiles/transparent -@dirrm %%DATADIR%%/data/gfx/tiles/sand -@dirrm %%DATADIR%%/data/gfx/tiles/hexagonal -@dirrm %%DATADIR%%/data/gfx/tiles/grass -@dirrm %%DATADIR%%/data/gfx/tiles/danger -@dirrm %%DATADIR%%/data/gfx/tiles/concrete -@dirrm %%DATADIR%%/data/gfx/tiles/colors -@dirrm %%DATADIR%%/data/gfx/tiles/clouds -@dirrm %%DATADIR%%/data/gfx/tiles/clay -@dirrm %%DATADIR%%/data/gfx/tiles/brick -@dirrm %%DATADIR%%/data/gfx/tiles/blue -@dirrm %%DATADIR%%/data/gfx/tiles/background -@dirrm %%DATADIR%%/data/gfx/tiles -@dirrm %%DATADIR%%/data/gfx -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A93BC525; Sat, 11 Oct 2014 14:00:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 94D64ADA; Sat, 11 Oct 2014 14:00:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0jmA083624; Sat, 11 Oct 2014 14:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0jaw083622; Sat, 11 Oct 2014 14:00:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0jaw083622@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370641 - head/games/lianliankan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:45 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:44 2014 New Revision: 370641 URL: https://svnweb.freebsd.org/changeset/ports/370641 QAT: https://qat.redports.org/buildarchive/r370641/ Log: - Fix LICENSE - Switch to USES=autoreconf - Drop @dirrm* from plist Modified: head/games/lianliankan/Makefile head/games/lianliankan/pkg-plist Modified: head/games/lianliankan/Makefile ============================================================================== --- head/games/lianliankan/Makefile Sat Oct 11 14:00:36 2014 (r370640) +++ head/games/lianliankan/Makefile Sat Oct 11 14:00:44 2014 (r370641) @@ -11,15 +11,12 @@ DISTNAME= llk_linux-${DISTVERSION} MAINTAINER= games@FreeBSD.org COMMENT= Tile matching game -LICENSE= GPLv3 +LICENSE= GPLv2 # or later -USES= libtool pkgconfig +USES= autoreconf libtool pkgconfig USE_GNOME= gtk20 esound -USE_AUTOTOOLS= aclocal automake autoconf autoheader libtoolize GNU_CONFIGURE= yes -AUTOMAKE_ARGS= -a -c -f - CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib Modified: head/games/lianliankan/pkg-plist ============================================================================== --- head/games/lianliankan/pkg-plist Sat Oct 11 14:00:36 2014 (r370640) +++ head/games/lianliankan/pkg-plist Sat Oct 11 14:00:44 2014 (r370641) @@ -13,4 +13,3 @@ share/applications/lianliankan.desktop %%DATADIR%%/Win.wav %%NLS%%share/locale/zh_CN/LC_MESSAGES/llk_linux.mo share/pixmaps/llk_linux.png -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:00:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B36D607; Sat, 11 Oct 2014 14:00:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27063ADD; Sat, 11 Oct 2014 14:00:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE0sbc083760; Sat, 11 Oct 2014 14:00:54 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE0r4R083758; Sat, 11 Oct 2014 14:00:53 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111400.s9BE0r4R083758@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:00:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370642 - head/games/awale X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:00:54 -0000 Author: amdmi3 Date: Sat Oct 11 14:00:53 2014 New Revision: 370642 URL: https://svnweb.freebsd.org/changeset/ports/370642 QAT: https://qat.redports.org/buildarchive/r370642/ Log: - Drop @dirrm* from plist - Clarify LICENSE - Add LICENSE_FILE Modified: head/games/awale/Makefile head/games/awale/pkg-plist Modified: head/games/awale/Makefile ============================================================================== --- head/games/awale/Makefile Sat Oct 11 14:00:44 2014 (r370641) +++ head/games/awale/Makefile Sat Oct 11 14:00:53 2014 (r370642) @@ -9,7 +9,8 @@ MASTER_SITES= SAVANNAH MAINTAINER= games@FreeBSD.org COMMENT= African board game -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING GNU_CONFIGURE= yes USES= desktop-file-utils tk Modified: head/games/awale/pkg-plist ============================================================================== --- head/games/awale/pkg-plist Sat Oct 11 14:00:44 2014 (r370641) +++ head/games/awale/pkg-plist Sat Oct 11 14:00:53 2014 (r370642) @@ -29,4 +29,3 @@ share/applications/awale.desktop %%DATADIR%%/sp.gif %%DATADIR%%/uk.gif %%DATADIR%%/xawale.tcl -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:01:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF64F6E7; Sat, 11 Oct 2014 14:01:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AAEA1ADF; Sat, 11 Oct 2014 14:01:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE12wv084141; Sat, 11 Oct 2014 14:01:02 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE12oo084139; Sat, 11 Oct 2014 14:01:02 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111401.s9BE12oo084139@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:01:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370643 - head/games/cuyo X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:01:02 -0000 Author: amdmi3 Date: Sat Oct 11 14:01:01 2014 New Revision: 370643 URL: https://svnweb.freebsd.org/changeset/ports/370643 QAT: https://qat.redports.org/buildarchive/r370643/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/cuyo/Makefile head/games/cuyo/pkg-plist Modified: head/games/cuyo/Makefile ============================================================================== --- head/games/cuyo/Makefile Sat Oct 11 14:00:53 2014 (r370642) +++ head/games/cuyo/Makefile Sat Oct 11 14:01:01 2014 (r370643) @@ -11,7 +11,8 @@ MASTER_SITES= SAVANNAH MAINTAINER= games@FreeBSD.org COMMENT= Nice, innovative, challenging Tetris-like game -LICENSE= GPLv2 +LICENSE= GPLv2 # or later +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libaa.so:${PORTSDIR}/graphics/aalib \ libmikmod.so:${PORTSDIR}/audio/libmikmod Modified: head/games/cuyo/pkg-plist ============================================================================== --- head/games/cuyo/pkg-plist Sat Oct 11 14:00:53 2014 (r370642) +++ head/games/cuyo/pkg-plist Sat Oct 11 14:01:01 2014 (r370643) @@ -913,6 +913,3 @@ share/icons/hicolor/32x32/apps/cuyo.png share/icons/hicolor/64x64/apps/cuyo.png %%NLS%%share/locale/de/LC_MESSAGES/cuyo.mo share/pixmaps/cuyo.png -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%%/pics -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:01:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F0A17D9; Sat, 11 Oct 2014 14:01:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3AD6DAE2; Sat, 11 Oct 2014 14:01:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE1BUs084676; Sat, 11 Oct 2014 14:01:11 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE1ATn084674; Sat, 11 Oct 2014 14:01:10 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111401.s9BE1ATn084674@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:01:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370644 - head/games/simsu X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:01:11 -0000 Author: amdmi3 Date: Sat Oct 11 14:01:10 2014 New Revision: 370644 URL: https://svnweb.freebsd.org/changeset/ports/370644 QAT: https://qat.redports.org/buildarchive/r370644/ Log: - Clarify LICENSE - Add LICENSE_FILE - Drop @dirrm* from plist Modified: head/games/simsu/Makefile head/games/simsu/pkg-plist Modified: head/games/simsu/Makefile ============================================================================== --- head/games/simsu/Makefile Sat Oct 11 14:01:01 2014 (r370643) +++ head/games/simsu/Makefile Sat Oct 11 14:01:10 2014 (r370644) @@ -11,7 +11,8 @@ EXTRACT_SUFX= -src.tar.bz2 MAINTAINER= games@FreeBSD.org COMMENT= Basic Sudoku game -LICENSE= GPLv3 +LICENSE= GPLv3 # or later +LICENSE_FILE= ${WRKSRC}/COPYING USES= qmake tar:bzip2 USE_QT4= moc_build rcc_build uic_build iconengines_run imageformats_run \ Modified: head/games/simsu/pkg-plist ============================================================================== --- head/games/simsu/pkg-plist Sat Oct 11 14:01:01 2014 (r370643) +++ head/games/simsu/pkg-plist Sat Oct 11 14:01:10 2014 (r370644) @@ -23,5 +23,3 @@ share/pixmaps/simsu.xpm %%NLS%%%%DATADIR%%/translations/simsu_ro.qm %%NLS%%%%DATADIR%%/translations/simsu_ru.qm %%NLS%%%%DATADIR%%/translations/simsu_uk.qm -%%NLS%%@dirrm %%DATADIR%%/translations -%%NLS%%@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:01:19 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED21E8B9; Sat, 11 Oct 2014 14:01:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF629B75; Sat, 11 Oct 2014 14:01:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BE1JcY084828; Sat, 11 Oct 2014 14:01:19 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BE1JFb084826; Sat, 11 Oct 2014 14:01:19 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201410111401.s9BE1JFb084826@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 11 Oct 2014 14:01:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370645 - head/games/epiar X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:01:20 -0000 Author: amdmi3 Date: Sat Oct 11 14:01:18 2014 New Revision: 370645 URL: https://svnweb.freebsd.org/changeset/ports/370645 QAT: https://qat.redports.org/buildarchive/r370645/ Log: - Drop @dirrm* from plist - Switch to USES=autoreconf Modified: head/games/epiar/Makefile head/games/epiar/pkg-plist Modified: head/games/epiar/Makefile ============================================================================== --- head/games/epiar/Makefile Sat Oct 11 14:01:10 2014 (r370644) +++ head/games/epiar/Makefile Sat Oct 11 14:01:18 2014 (r370645) @@ -26,12 +26,9 @@ GH_PROJECT= Epiar GH_TAGNAME= ${GH_COMMIT} GH_COMMIT= 44046e3 -USES= gmake pkgconfig +USES= autoreconf gmake pkgconfig USE_SDL= image mixer sdl USE_GL= glu -USE_AUTOTOOLS= aclocal autoheader automake autoconf -AUTOMAKE_ARGS= --add-missing -ACLOCAL_ARGS= GNU_CONFIGURE= yes PORTDOCS= AUTHORS ChangeLog README Modified: head/games/epiar/pkg-plist ============================================================================== --- head/games/epiar/pkg-plist Sat Oct 11 14:01:10 2014 (r370644) +++ head/games/epiar/pkg-plist Sat Oct 11 14:01:18 2014 (r370645) @@ -226,19 +226,3 @@ share/applications/epiar.desktop %%DATADIR%%/Resources/Skin/ui_wnd_up_left.png %%DATADIR%%/Resources/Skin/ui_wnd_up_right.png share/pixmaps/epiar.png -@dirrm %%DATADIR%%/Resources/Skin -@dirrm %%DATADIR%%/Resources/Simulation/default -@dirrm %%DATADIR%%/Resources/Simulation -@dirrm %%DATADIR%%/Resources/Scripts -@dirrm %%DATADIR%%/Resources/Graphics -@dirrm %%DATADIR%%/Resources/Fonts -@dirrm %%DATADIR%%/Resources/Audio/Weapons -@dirrm %%DATADIR%%/Resources/Audio/Music -@dirrm %%DATADIR%%/Resources/Audio/Interface -@dirrm %%DATADIR%%/Resources/Audio/Engines -@dirrm %%DATADIR%%/Resources/Audio/Effects -@dirrm %%DATADIR%%/Resources/Audio -@dirrm %%DATADIR%%/Resources/Art -@dirrm %%DATADIR%%/Resources/Animations -@dirrm %%DATADIR%%/Resources -@dirrm %%DATADIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:24:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ECEE3E45; Sat, 11 Oct 2014 14:24:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CDC06D68; Sat, 11 Oct 2014 14:24:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BEO6C5096924; Sat, 11 Oct 2014 14:24:06 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BEO5lH096919; Sat, 11 Oct 2014 14:24:05 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201410111424.s9BEO5lH096919@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 11 Oct 2014 14:24:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370646 - in head/net/igmpproxy: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:24:07 -0000 Author: pi Date: Sat Oct 11 14:24:05 2014 New Revision: 370646 URL: https://svnweb.freebsd.org/changeset/ports/370646 QAT: https://qat.redports.org/buildarchive/r370646/ Log: net/igmpproxy: fix issue with changes to struct ip for fbsd 9/10 PR: 188986 Submitted by: yuri@rivera.ru Approved by: melifaro@ipfw.ru (maintainer timeout) Added: head/net/igmpproxy/files/patch-Makefile.in (contents, props changed) head/net/igmpproxy/files/patch-src__os-freebsd.h (contents, props changed) Deleted: head/net/igmpproxy/files/patch-Makefile Modified: head/net/igmpproxy/Makefile head/net/igmpproxy/pkg-plist Modified: head/net/igmpproxy/Makefile ============================================================================== --- head/net/igmpproxy/Makefile Sat Oct 11 14:01:18 2014 (r370645) +++ head/net/igmpproxy/Makefile Sat Oct 11 14:24:05 2014 (r370646) @@ -3,7 +3,7 @@ PORTNAME= igmpproxy PORTVERSION= 0.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} Added: head/net/igmpproxy/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/igmpproxy/files/patch-Makefile.in Sat Oct 11 14:24:05 2014 (r370646) @@ -0,0 +1,14 @@ +--- Makefile.in.orig 2009-10-05 18:19:42 UTC ++++ Makefile.in +@@ -284,7 +284,10 @@ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \ +- $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \ ++ if [ ! -f "$(DESTDIR)$(sysconfdir)/$$files" ]; then \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \ ++ fi; \ ++ $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)/$$files.sample" || exit $$?; \ + done + + uninstall-dist_sysconfDATA: Added: head/net/igmpproxy/files/patch-src__os-freebsd.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/igmpproxy/files/patch-src__os-freebsd.h Sat Oct 11 14:24:05 2014 (r370646) @@ -0,0 +1,14 @@ +--- src/os-freebsd.h.orig 2014-10-11 14:15:20 UTC ++++ src/os-freebsd.h +@@ -14,7 +14,11 @@ + + static inline u_short ip_data_len(const struct ip *ip) + { ++#if __FreeBSD_version >= 900044 ++ return ip->ip_len - (ip->ip_hl << 2); ++#else + return ip->ip_len; ++#endif + } + + static inline void ip_set_len(struct ip *ip, u_short len) Modified: head/net/igmpproxy/pkg-plist ============================================================================== --- head/net/igmpproxy/pkg-plist Sat Oct 11 14:01:18 2014 (r370645) +++ head/net/igmpproxy/pkg-plist Sat Oct 11 14:24:05 2014 (r370646) @@ -1,6 +1,4 @@ sbin/igmpproxy -@unexec if cmp -s %D/etc/igmpproxy.conf.sample %D/etc/igmpproxy.conf; then rm -f %D/etc/igmpproxy.conf; fi -etc/igmpproxy.conf.sample -@exec if [ ! -f %D/etc/igmpproxy.conf ]; then cp -p %D/%F %B/igmpproxy.conf; fi +@sample etc/igmpproxy.conf.sample man/man5/igmpproxy.conf.5.gz man/man8/igmpproxy.8.gz From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 14:57:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 68090594; Sat, 11 Oct 2014 14:57:49 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 47D466D; Sat, 11 Oct 2014 14:57:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BEvnHR011251; Sat, 11 Oct 2014 14:57:49 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BEvnTY011250; Sat, 11 Oct 2014 14:57:49 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410111457.s9BEvnTY011250@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sat, 11 Oct 2014 14:57:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370647 - head/graphics/mapserver X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 14:57:49 -0000 Author: wen Date: Sat Oct 11 14:57:48 2014 New Revision: 370647 URL: https://svnweb.freebsd.org/changeset/ports/370647 QAT: https://qat.redports.org/buildarchive/r370647/ Log: - Pass correct value to configure with WMS_CLIENT and WFS_CLIENT option PR: 194266 Submitted by: Julien Cigar Modified: head/graphics/mapserver/Makefile Modified: head/graphics/mapserver/Makefile ============================================================================== --- head/graphics/mapserver/Makefile Sat Oct 11 14:24:05 2014 (r370646) +++ head/graphics/mapserver/Makefile Sat Oct 11 14:57:48 2014 (r370647) @@ -39,7 +39,7 @@ WCS_DESC= WCS Server suppo .include .if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= 2 +USES+= python:2 BUILD_DEPENDS+= swig2.0:${PORTSDIR}/devel/swig20 CMAKE_ARGS+= -DWITH_PYTHON=yes PLIST_SUB+= PYTHON="" @@ -115,7 +115,7 @@ CMAKE_ARGS+= -DWITH_GEOS=0 .endif .if ${PORT_OPTIONS:MPOSTGIS} -USE_PGSQL= yes +USES+= pgsql CMAKE_ARGS+= -DWITH_POSTGIS=1 .else CMAKE_ARGS+= -DWITH_POSTGIS=0 @@ -169,13 +169,13 @@ PROG_FILES= legend scalebar shp2img shp .if ${PORT_OPTIONS:MCLIENT_WMS} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl LIB_DEPENDS+= libgdal.so:${PORTSDIR}/graphics/gdal -CMAKE_ARGS+= -DWITH_CURL=1 -DGDAL=1 -DCLIENT_WMS=1 +CMAKE_ARGS+= -DWITH_CURL=1 -DWITH_GDAL=1 -DWITH_CLIENT_WMS=1 .endif .if ${PORT_OPTIONS:MCLIENT_WFS} LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl LIB_DEPENDS+= libgdal.so:${PORTSDIR}/graphics/gdal -CMAKE_ARGS+= -DWITH_CURL=1 -DGDAL=1 -DCLIENT_WFS=1 +CMAKE_ARGS+= -DWITH_CURL=1 -DWITH_GDAL=1 -DWITH_CLIENT_WFS=1 .endif do-install: From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 15:38:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8F91B18E; Sat, 11 Oct 2014 15:38:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E55A641; Sat, 11 Oct 2014 15:38:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BFcsGq030069; Sat, 11 Oct 2014 15:38:54 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BFcrvZ030061; Sat, 11 Oct 2014 15:38:53 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201410111538.s9BFcrvZ030061@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Sat, 11 Oct 2014 15:38:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370648 - head/www/p5-Dancer2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 15:38:54 -0000 Author: wen Date: Sat Oct 11 15:38:53 2014 New Revision: 370648 URL: https://svnweb.freebsd.org/changeset/ports/370648 QAT: https://qat.redports.org/buildarchive/r370648/ Log: - Update to 0.151000 Changes: http://cpansearch.perl.org/src/XSAWYERX/Dancer2-0.151000/Changes Modified: head/www/p5-Dancer2/Makefile head/www/p5-Dancer2/distinfo head/www/p5-Dancer2/pkg-plist Modified: head/www/p5-Dancer2/Makefile ============================================================================== --- head/www/p5-Dancer2/Makefile Sat Oct 11 14:57:48 2014 (r370647) +++ head/www/p5-Dancer2/Makefile Sat Oct 11 15:38:53 2014 (r370648) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= Dancer2 -PORTVERSION= 0.150000 -PORTREVISION= 1 +PORTVERSION= 0.151000 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Dancer2/distinfo ============================================================================== --- head/www/p5-Dancer2/distinfo Sat Oct 11 14:57:48 2014 (r370647) +++ head/www/p5-Dancer2/distinfo Sat Oct 11 15:38:53 2014 (r370648) @@ -1,2 +1,2 @@ -SHA256 (Dancer2-0.150000.tar.gz) = 1a00a57301cd94aba961840a25ffa21423084c571e3467e9ad08398caa9eb928 -SIZE (Dancer2-0.150000.tar.gz) = 269173 +SHA256 (Dancer2-0.151000.tar.gz) = 62d33ffe52a335dbe366594c25c03b67642665ebb76a83efbf653b232734cb1d +SIZE (Dancer2-0.151000.tar.gz) = 274625 Modified: head/www/p5-Dancer2/pkg-plist ============================================================================== --- head/www/p5-Dancer2/pkg-plist Sat Oct 11 14:57:48 2014 (r370647) +++ head/www/p5-Dancer2/pkg-plist Sat Oct 11 15:38:53 2014 (r370648) @@ -69,6 +69,7 @@ bin/dancer2 %%SITE_PERL%%/Dancer2/Logger/Note.pm %%SITE_PERL%%/Dancer2/Logger/Null.pm %%SITE_PERL%%/Dancer2/Manual.pod +%%SITE_PERL%%/Dancer2/Manual/Migration.pod %%SITE_PERL%%/Dancer2/Plugin.pm %%SITE_PERL%%/Dancer2/Plugin/Ajax.pm %%SITE_PERL%%/Dancer2/Plugins.pod @@ -132,6 +133,7 @@ bin/dancer2 %%PERL5_MAN3%%/Dancer2::Logger::Note.3.gz %%PERL5_MAN3%%/Dancer2::Logger::Null.3.gz %%PERL5_MAN3%%/Dancer2::Manual.3.gz +%%PERL5_MAN3%%/Dancer2::Manual::Migration.3.gz %%PERL5_MAN3%%/Dancer2::Plugin.3.gz %%PERL5_MAN3%%/Dancer2::Plugin::Ajax.3.gz %%PERL5_MAN3%%/Dancer2::Plugins.3.gz @@ -148,34 +150,35 @@ bin/dancer2 %%PERL5_MAN3%%/Dancer2::Test.3.gz %%PERL5_MAN3%%/Dancer2::Tutorial.3.gz man/man1/dancer2.1.gz -@dirrm %%SITE_PERL%%/Dancer2/Core/Role/SessionFactory -@dirrm %%SITE_PERL%%/Dancer2/Core/Role -@dirrm %%SITE_PERL%%/Dancer2/Core/Request -@dirrm %%SITE_PERL%%/Dancer2/Core -@dirrm %%SITE_PERL%%/Dancer2/CLI/Command -@dirrm %%SITE_PERL%%/Dancer2/CLI -@dirrm %%SITE_PERL%%/Dancer2/Handler -@dirrm %%SITE_PERL%%/Dancer2/Logger/Capture -@dirrm %%SITE_PERL%%/Dancer2/Logger -@dirrm %%SITE_PERL%%/Dancer2/Plugin -@dirrm %%SITE_PERL%%/Dancer2/Serializer -@dirrm %%SITE_PERL%%/Dancer2/Session -@dirrm %%SITE_PERL%%/Dancer2/Template/Implementation -@dirrm %%SITE_PERL%%/Dancer2/Template -@dirrm %%SITE_PERL%%/Dancer2 -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/views/layouts -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/views -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/t -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public/javascripts -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public/images -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public/css -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/lib -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/environments -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel/bin -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2/skel -@dirrm %%SITE_PERL%%/auto/share/dist/Dancer2 -@dirrmtry %%SITE_PERL%%/auto/share/dist -@dirrmtry %%SITE_PERL%%/auto/share -@dirrmtry %%SITE_PERL%%/auto -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer2 +@dir %%SITE_PERL%%/Dancer2/Core/Role/SessionFactory +@dir %%SITE_PERL%%/Dancer2/Core/Role +@dir %%SITE_PERL%%/Dancer2/Core/Request +@dir %%SITE_PERL%%/Dancer2/Core +@dir %%SITE_PERL%%/Dancer2/CLI/Command +@dir %%SITE_PERL%%/Dancer2/CLI +@dir %%SITE_PERL%%/Dancer2/Handler +@dir %%SITE_PERL%%/Dancer2/Logger/Capture +@dir %%SITE_PERL%%/Dancer2/Logger +@dir %%SITE_PERL%%/Dancer2/Manual +@dir %%SITE_PERL%%/Dancer2/Plugin +@dir %%SITE_PERL%%/Dancer2/Serializer +@dir %%SITE_PERL%%/Dancer2/Session +@dir %%SITE_PERL%%/Dancer2/Template/Implementation +@dir %%SITE_PERL%%/Dancer2/Template +@dir %%SITE_PERL%%/Dancer2 +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/views/layouts +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/views +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/t +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public/javascripts +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public/images +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public/css +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/public +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/lib +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/environments +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel/bin +@dir %%SITE_PERL%%/auto/share/dist/Dancer2/skel +@dir %%SITE_PERL%%/auto/share/dist/Dancer2 +@dir %%SITE_PERL%%/auto/share/dist +@dir %%SITE_PERL%%/auto/share +@dir %%SITE_PERL%%/auto +@dir %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer2 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 15:41:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E14C730B; Sat, 11 Oct 2014 15:41:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB6376DD; Sat, 11 Oct 2014 15:41:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BFf3i7032790; Sat, 11 Oct 2014 15:41:03 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BFf35w032788; Sat, 11 Oct 2014 15:41:03 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201410111541.s9BFf35w032788@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 11 Oct 2014 15:41:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370649 - head/cad/opencascade X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 15:41:04 -0000 Author: thierry Date: Sat Oct 11 15:41:02 2014 New Revision: 370649 URL: https://svnweb.freebsd.org/changeset/ports/370649 QAT: https://qat.redports.org/buildarchive/r370649/ Log: Fix bad links for headers. Reported by: Stas Timokhin Modified: head/cad/opencascade/Makefile head/cad/opencascade/pkg-plist Modified: head/cad/opencascade/Makefile ============================================================================== --- head/cad/opencascade/Makefile Sat Oct 11 15:38:53 2014 (r370648) +++ head/cad/opencascade/Makefile Sat Oct 11 15:41:02 2014 (r370649) @@ -3,7 +3,7 @@ PORTNAME= opencascade PORTVERSION= 6.7.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= cad science MASTER_SITES= http://files.opencascade.com/OCCT/OCC_${PORTVERSION}_release/ @@ -119,11 +119,7 @@ post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/include/OpenCASCADE (cd ${STAGEDIR}${OCCROOT}/inc && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/OpenCASCADE) ${RM} -rf ${STAGEDIR}${OCCROOT}/inc - ${MKDIR} ${STAGEDIR}${OCCROOT}/inc - (cd ${STAGEDIR}${PREFIX}/include/OpenCASCADE \ - && for i in *; do \ - ${LN} -sf $${i} ${STAGEDIR}${OCCROOT}/inc/$${i}; \ - done) + ${LN} -sf ${PREFIX}/include/OpenCASCADE ${STAGEDIR}${OCCROOT}/inc (cd ${WRKSRC} && ${COPYTREE_SHARE} tests ${STAGEDIR}${OCCROOT}) .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/cad/opencascade/pkg-plist ============================================================================== --- head/cad/opencascade/pkg-plist Sat Oct 11 15:38:53 2014 (r370648) +++ head/cad/opencascade/pkg-plist Sat Oct 11 15:41:02 2014 (r370649) @@ -117,13863 +117,7 @@ %%OCCROOT%%/draw.sh @mode %%OCCROOT%%/env.sh -%%OCCROOT%%/inc/AIS.hxx -%%OCCROOT%%/inc/AIS_AngleDimension.hxx -%%OCCROOT%%/inc/AIS_AttributeFilter.hxx -%%OCCROOT%%/inc/AIS_AttributeFilter.lxx -%%OCCROOT%%/inc/AIS_Axis.hxx -%%OCCROOT%%/inc/AIS_Axis.lxx -%%OCCROOT%%/inc/AIS_BadEdgeFilter.hxx -%%OCCROOT%%/inc/AIS_C0RegularityFilter.hxx -%%OCCROOT%%/inc/AIS_Chamf2dDimension.hxx -%%OCCROOT%%/inc/AIS_Chamf2dDimension.lxx -%%OCCROOT%%/inc/AIS_Chamf3dDimension.hxx -%%OCCROOT%%/inc/AIS_Chamf3dDimension.lxx -%%OCCROOT%%/inc/AIS_Circle.hxx -%%OCCROOT%%/inc/AIS_Circle.lxx -%%OCCROOT%%/inc/AIS_ClearMode.hxx -%%OCCROOT%%/inc/AIS_ColoredShape.hxx -%%OCCROOT%%/inc/AIS_ConcentricRelation.hxx -%%OCCROOT%%/inc/AIS_ConnectStatus.hxx -%%OCCROOT%%/inc/AIS_ConnectedInteractive.hxx -%%OCCROOT%%/inc/AIS_ConnectedInteractive.lxx -%%OCCROOT%%/inc/AIS_ConnectedShape.hxx -%%OCCROOT%%/inc/AIS_DataMapIteratorOfDataMapOfILC.hxx -%%OCCROOT%%/inc/AIS_DataMapIteratorOfDataMapOfIOStatus.hxx -%%OCCROOT%%/inc/AIS_DataMapIteratorOfDataMapOfSelStat.hxx -%%OCCROOT%%/inc/AIS_DataMapIteratorOfDataMapofIntegerListOfinteractive.hxx -%%OCCROOT%%/inc/AIS_DataMapNodeOfDataMapOfILC.hxx -%%OCCROOT%%/inc/AIS_DataMapNodeOfDataMapOfIOStatus.hxx -%%OCCROOT%%/inc/AIS_DataMapNodeOfDataMapOfSelStat.hxx -%%OCCROOT%%/inc/AIS_DataMapNodeOfDataMapofIntegerListOfinteractive.hxx -%%OCCROOT%%/inc/AIS_DataMapOfILC.hxx -%%OCCROOT%%/inc/AIS_DataMapOfIOStatus.hxx -%%OCCROOT%%/inc/AIS_DataMapOfSelStat.hxx -%%OCCROOT%%/inc/AIS_DataMapofIntegerListOfinteractive.hxx -%%OCCROOT%%/inc/AIS_DiameterDimension.hxx -%%OCCROOT%%/inc/AIS_Dimension.hxx -%%OCCROOT%%/inc/AIS_DimensionOwner.hxx -%%OCCROOT%%/inc/AIS_DimensionSelectionMode.hxx -%%OCCROOT%%/inc/AIS_DisplayMode.hxx -%%OCCROOT%%/inc/AIS_DisplaySpecialSymbol.hxx -%%OCCROOT%%/inc/AIS_DisplayStatus.hxx -%%OCCROOT%%/inc/AIS_Drawer.hxx -%%OCCROOT%%/inc/AIS_Drawer.lxx -%%OCCROOT%%/inc/AIS_EllipseRadiusDimension.hxx -%%OCCROOT%%/inc/AIS_EqualDistanceRelation.hxx -%%OCCROOT%%/inc/AIS_EqualDistanceRelation.lxx -%%OCCROOT%%/inc/AIS_EqualRadiusRelation.hxx -%%OCCROOT%%/inc/AIS_ExclusionFilter.hxx -%%OCCROOT%%/inc/AIS_ExclusionFilter.lxx -%%OCCROOT%%/inc/AIS_FixRelation.hxx -%%OCCROOT%%/inc/AIS_FixRelation.lxx -%%OCCROOT%%/inc/AIS_GlobalStatus.hxx -%%OCCROOT%%/inc/AIS_GlobalStatus.lxx -%%OCCROOT%%/inc/AIS_GraphicTool.hxx -%%OCCROOT%%/inc/AIS_IdenticRelation.hxx -%%OCCROOT%%/inc/AIS_IdenticRelation.lxx -%%OCCROOT%%/inc/AIS_IndexedDataMapNodeOfIndexedDataMapOfOwnerPrs.hxx -%%OCCROOT%%/inc/AIS_IndexedDataMapOfOwnerPrs.hxx -%%OCCROOT%%/inc/AIS_InteractiveContext.hxx -%%OCCROOT%%/inc/AIS_InteractiveContext.lxx -%%OCCROOT%%/inc/AIS_InteractiveObject.hxx -%%OCCROOT%%/inc/AIS_InteractiveObject.lxx -%%OCCROOT%%/inc/AIS_KindOfDimension.hxx -%%OCCROOT%%/inc/AIS_KindOfInteractive.hxx -%%OCCROOT%%/inc/AIS_KindOfSurface.hxx -%%OCCROOT%%/inc/AIS_KindOfUnit.hxx -%%OCCROOT%%/inc/AIS_LengthDimension.hxx -%%OCCROOT%%/inc/AIS_Line.hxx -%%OCCROOT%%/inc/AIS_Line.lxx -%%OCCROOT%%/inc/AIS_ListIteratorOfListOfInteractive.hxx -%%OCCROOT%%/inc/AIS_ListNodeOfListOfInteractive.hxx -%%OCCROOT%%/inc/AIS_ListOfInteractive.hxx -%%OCCROOT%%/inc/AIS_LocalContext.hxx -%%OCCROOT%%/inc/AIS_LocalContext.lxx -%%OCCROOT%%/inc/AIS_LocalStatus.hxx -%%OCCROOT%%/inc/AIS_LocalStatus.lxx -%%OCCROOT%%/inc/AIS_MapIteratorOfMapOfInteractive.hxx -%%OCCROOT%%/inc/AIS_MapOfInteractive.hxx -%%OCCROOT%%/inc/AIS_MaxRadiusDimension.hxx -%%OCCROOT%%/inc/AIS_MidPointRelation.hxx -%%OCCROOT%%/inc/AIS_MidPointRelation.lxx -%%OCCROOT%%/inc/AIS_MinRadiusDimension.hxx -%%OCCROOT%%/inc/AIS_MultipleConnectedInteractive.hxx -%%OCCROOT%%/inc/AIS_MultipleConnectedInteractive.lxx -%%OCCROOT%%/inc/AIS_MultipleConnectedShape.hxx -%%OCCROOT%%/inc/AIS_MultipleConnectedShape.lxx -%%OCCROOT%%/inc/AIS_NDataMapOfTransientIteratorOfListTransient.hxx -%%OCCROOT%%/inc/AIS_NListIteratorOfListTransient.hxx -%%OCCROOT%%/inc/AIS_NListTransient.hxx -%%OCCROOT%%/inc/AIS_OffsetDimension.hxx -%%OCCROOT%%/inc/AIS_OffsetDimension.lxx -%%OCCROOT%%/inc/AIS_PToContext.hxx -%%OCCROOT%%/inc/AIS_ParallelRelation.hxx -%%OCCROOT%%/inc/AIS_ParallelRelation.lxx -%%OCCROOT%%/inc/AIS_PerpendicularRelation.hxx -%%OCCROOT%%/inc/AIS_Plane.hxx -%%OCCROOT%%/inc/AIS_Plane.lxx -%%OCCROOT%%/inc/AIS_PlaneTrihedron.hxx -%%OCCROOT%%/inc/AIS_PlaneTrihedron.lxx -%%OCCROOT%%/inc/AIS_Point.hxx -%%OCCROOT%%/inc/AIS_Point.lxx -%%OCCROOT%%/inc/AIS_RadiusDimension.hxx -%%OCCROOT%%/inc/AIS_Relation.hxx -%%OCCROOT%%/inc/AIS_Relation.lxx -%%OCCROOT%%/inc/AIS_SelectStatus.hxx -%%OCCROOT%%/inc/AIS_Selection.hxx -%%OCCROOT%%/inc/AIS_Selection.lxx -%%OCCROOT%%/inc/AIS_SequenceNodeOfSequenceOfDimension.hxx -%%OCCROOT%%/inc/AIS_SequenceNodeOfSequenceOfInteractive.hxx -%%OCCROOT%%/inc/AIS_SequenceOfDimension.hxx -%%OCCROOT%%/inc/AIS_SequenceOfInteractive.hxx -%%OCCROOT%%/inc/AIS_Shape.hxx -%%OCCROOT%%/inc/AIS_Shape.lxx -%%OCCROOT%%/inc/AIS_SignatureFilter.hxx -%%OCCROOT%%/inc/AIS_StandardDatum.hxx -%%OCCROOT%%/inc/AIS_StatusOfDetection.hxx -%%OCCROOT%%/inc/AIS_StatusOfPick.hxx -%%OCCROOT%%/inc/AIS_StdMapNodeOfMapOfInteractive.hxx -%%OCCROOT%%/inc/AIS_SymmetricRelation.hxx -%%OCCROOT%%/inc/AIS_SymmetricRelation.lxx -%%OCCROOT%%/inc/AIS_TangentRelation.hxx -%%OCCROOT%%/inc/AIS_TexturedShape.hxx -%%OCCROOT%%/inc/AIS_Triangulation.hxx -%%OCCROOT%%/inc/AIS_Trihedron.hxx -%%OCCROOT%%/inc/AIS_Trihedron.lxx -%%OCCROOT%%/inc/AIS_TypeFilter.hxx -%%OCCROOT%%/inc/AIS_TypeOfAttribute.hxx -%%OCCROOT%%/inc/AIS_TypeOfAxis.hxx -%%OCCROOT%%/inc/AIS_TypeOfDist.hxx -%%OCCROOT%%/inc/AIS_TypeOfIso.hxx -%%OCCROOT%%/inc/AIS_TypeOfPlane.hxx -%%OCCROOT%%/inc/APIHeaderSection_EditHeader.hxx -%%OCCROOT%%/inc/APIHeaderSection_MakeHeader.hxx -%%OCCROOT%%/inc/Adaptor2d_Curve2d.hxx -%%OCCROOT%%/inc/Adaptor2d_Curve2dPtr.hxx -%%OCCROOT%%/inc/Adaptor2d_GenHCurve2d.gxx -%%OCCROOT%%/inc/Adaptor2d_GenHCurve2d.lxx -%%OCCROOT%%/inc/Adaptor2d_HCurve2d.hxx -%%OCCROOT%%/inc/Adaptor2d_HCurve2d.lxx -%%OCCROOT%%/inc/Adaptor2d_HLine2d.hxx -%%OCCROOT%%/inc/Adaptor2d_Line2d.hxx -%%OCCROOT%%/inc/Adaptor3d_Curve.hxx -%%OCCROOT%%/inc/Adaptor3d_CurveOnSurface.hxx -%%OCCROOT%%/inc/Adaptor3d_CurveOnSurfacePtr.hxx -%%OCCROOT%%/inc/Adaptor3d_CurvePtr.hxx -%%OCCROOT%%/inc/Adaptor3d_GenHCurve.gxx -%%OCCROOT%%/inc/Adaptor3d_GenHCurve.lxx -%%OCCROOT%%/inc/Adaptor3d_GenHSurface.gxx -%%OCCROOT%%/inc/Adaptor3d_GenHSurface.lxx -%%OCCROOT%%/inc/Adaptor3d_HCurve.hxx -%%OCCROOT%%/inc/Adaptor3d_HCurve.lxx -%%OCCROOT%%/inc/Adaptor3d_HCurveOnSurface.hxx -%%OCCROOT%%/inc/Adaptor3d_HIsoCurve.hxx -%%OCCROOT%%/inc/Adaptor3d_HOffsetCurve.hxx -%%OCCROOT%%/inc/Adaptor3d_HSurface.hxx -%%OCCROOT%%/inc/Adaptor3d_HSurface.lxx -%%OCCROOT%%/inc/Adaptor3d_HSurfaceOfLinearExtrusion.hxx -%%OCCROOT%%/inc/Adaptor3d_HSurfaceOfRevolution.hxx -%%OCCROOT%%/inc/Adaptor3d_HSurfaceTool.hxx -%%OCCROOT%%/inc/Adaptor3d_HSurfaceTool.lxx -%%OCCROOT%%/inc/Adaptor3d_HVertex.hxx -%%OCCROOT%%/inc/Adaptor3d_InterFunc.hxx -%%OCCROOT%%/inc/Adaptor3d_IsoCurve.hxx -%%OCCROOT%%/inc/Adaptor3d_IsoCurve.lxx -%%OCCROOT%%/inc/Adaptor3d_OffsetCurve.hxx -%%OCCROOT%%/inc/Adaptor3d_OffsetCurve.lxx -%%OCCROOT%%/inc/Adaptor3d_Surface.hxx -%%OCCROOT%%/inc/Adaptor3d_SurfaceOfLinearExtrusion.hxx -%%OCCROOT%%/inc/Adaptor3d_SurfaceOfRevolution.hxx -%%OCCROOT%%/inc/Adaptor3d_SurfacePtr.hxx -%%OCCROOT%%/inc/Adaptor3d_TopolTool.hxx -%%OCCROOT%%/inc/AdvApp2Var_ApproxAFunc2Var.hxx -%%OCCROOT%%/inc/AdvApp2Var_ApproxAFunc2Var.lxx -%%OCCROOT%%/inc/AdvApp2Var_ApproxF2var.hxx -%%OCCROOT%%/inc/AdvApp2Var_Context.hxx -%%OCCROOT%%/inc/AdvApp2Var_Criterion.hxx -%%OCCROOT%%/inc/AdvApp2Var_CriterionRepartition.hxx -%%OCCROOT%%/inc/AdvApp2Var_CriterionType.hxx -%%OCCROOT%%/inc/AdvApp2Var_Data.hxx -%%OCCROOT%%/inc/AdvApp2Var_Data_f2c.hxx -%%OCCROOT%%/inc/AdvApp2Var_EvaluatorFunc2Var.hxx -%%OCCROOT%%/inc/AdvApp2Var_Framework.hxx -%%OCCROOT%%/inc/AdvApp2Var_Framework.lxx -%%OCCROOT%%/inc/AdvApp2Var_Iso.hxx -%%OCCROOT%%/inc/AdvApp2Var_MathBase.hxx -%%OCCROOT%%/inc/AdvApp2Var_Network.hxx -%%OCCROOT%%/inc/AdvApp2Var_Network.lxx -%%OCCROOT%%/inc/AdvApp2Var_Node.hxx -%%OCCROOT%%/inc/AdvApp2Var_Patch.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceNodeOfSequenceOfNode.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceNodeOfSequenceOfPatch.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceNodeOfSequenceOfStrip.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceNodeOfStrip.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceOfNode.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceOfPatch.hxx -%%OCCROOT%%/inc/AdvApp2Var_SequenceOfStrip.hxx -%%OCCROOT%%/inc/AdvApp2Var_Strip.hxx -%%OCCROOT%%/inc/AdvApp2Var_SysBase.hxx -%%OCCROOT%%/inc/AdvApprox_ApproxAFunction.hxx -%%OCCROOT%%/inc/AdvApprox_ApproxAFunction.lxx -%%OCCROOT%%/inc/AdvApprox_Cutting.hxx -%%OCCROOT%%/inc/AdvApprox_DichoCutting.hxx -%%OCCROOT%%/inc/AdvApprox_EvaluatorFunction.hxx -%%OCCROOT%%/inc/AdvApprox_PrefAndRec.hxx -%%OCCROOT%%/inc/AdvApprox_PrefCutting.hxx -%%OCCROOT%%/inc/AdvApprox_SimpleApprox.hxx -%%OCCROOT%%/inc/AppBlend_AppSurf.gxx -%%OCCROOT%%/inc/AppBlend_AppSurf.lxx -%%OCCROOT%%/inc/AppBlend_Approx.hxx -%%OCCROOT%%/inc/AppBlend_Line.gxx -%%OCCROOT%%/inc/AppBlend_Line.lxx -%%OCCROOT%%/inc/AppBlend_SectionGenerator.gxx -%%OCCROOT%%/inc/AppCont_ContMatrices.hxx -%%OCCROOT%%/inc/AppCont_FitFunction.hxx -%%OCCROOT%%/inc/AppCont_FitFunction2d.hxx -%%OCCROOT%%/inc/AppCont_Function.hxx -%%OCCROOT%%/inc/AppCont_Function2d.hxx -%%OCCROOT%%/inc/AppCont_FunctionTool.hxx -%%OCCROOT%%/inc/AppCont_FunctionTool2d.hxx -%%OCCROOT%%/inc/AppCont_LeastSquare.gxx -%%OCCROOT%%/inc/AppCont_SurfLeastSquare.gxx -%%OCCROOT%%/inc/AppCont_TheLineTool.gxx -%%OCCROOT%%/inc/AppCont_TheSurfTool.gxx -%%OCCROOT%%/inc/AppDef_Array1OfMultiPointConstraint.hxx -%%OCCROOT%%/inc/AppDef_BSpGradient_BFGSOfMyBSplGradientOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_BSpParFunctionOfMyBSplGradientOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_BSpParLeastSquareOfMyBSplGradientOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_BSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_Compute.hxx -%%OCCROOT%%/inc/AppDef_Gradient_BFGSOfMyGradientOfCompute.hxx -%%OCCROOT%%/inc/AppDef_Gradient_BFGSOfMyGradientbisOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_Gradient_BFGSOfTheGradient.hxx -%%OCCROOT%%/inc/AppDef_HArray1OfMultiPointConstraint.hxx -%%OCCROOT%%/inc/AppDef_MultiLine.hxx -%%OCCROOT%%/inc/AppDef_MultiPointConstraint.hxx -%%OCCROOT%%/inc/AppDef_MyBSplGradientOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_MyCriterionOfTheVariational.hxx -%%OCCROOT%%/inc/AppDef_MyGradientOfCompute.hxx -%%OCCROOT%%/inc/AppDef_MyGradientbisOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_MyLineTool.hxx -%%OCCROOT%%/inc/AppDef_ParFunctionOfMyGradientOfCompute.hxx -%%OCCROOT%%/inc/AppDef_ParFunctionOfMyGradientbisOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_ParFunctionOfTheGradient.hxx -%%OCCROOT%%/inc/AppDef_ParLeastSquareOfMyGradientOfCompute.hxx -%%OCCROOT%%/inc/AppDef_ParLeastSquareOfMyGradientbisOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_ParLeastSquareOfTheGradient.hxx -%%OCCROOT%%/inc/AppDef_ResConstraintOfMyGradientOfCompute.hxx -%%OCCROOT%%/inc/AppDef_ResConstraintOfMyGradientbisOfBSplineCompute.hxx -%%OCCROOT%%/inc/AppDef_ResConstraintOfTheGradient.hxx -%%OCCROOT%%/inc/AppDef_TheFunction.hxx -%%OCCROOT%%/inc/AppDef_TheGradient.hxx -%%OCCROOT%%/inc/AppDef_TheLeastSquares.hxx -%%OCCROOT%%/inc/AppDef_TheResol.hxx -%%OCCROOT%%/inc/AppDef_TheVariational.hxx -%%OCCROOT%%/inc/AppParCurves.hxx -%%OCCROOT%%/inc/AppParCurves_Array1OfConstraintCouple.hxx -%%OCCROOT%%/inc/AppParCurves_Array1OfMultiBSpCurve.hxx -%%OCCROOT%%/inc/AppParCurves_Array1OfMultiCurve.hxx -%%OCCROOT%%/inc/AppParCurves_Array1OfMultiPoint.hxx -%%OCCROOT%%/inc/AppParCurves_BSpFunction.gxx -%%OCCROOT%%/inc/AppParCurves_BSpGradient.gxx -%%OCCROOT%%/inc/AppParCurves_BSpGradient_BFGS.gxx -%%OCCROOT%%/inc/AppParCurves_Constraint.hxx -%%OCCROOT%%/inc/AppParCurves_ConstraintCouple.hxx -%%OCCROOT%%/inc/AppParCurves_Function.gxx -%%OCCROOT%%/inc/AppParCurves_Gradient.gxx -%%OCCROOT%%/inc/AppParCurves_Gradient_BFGS.gxx -%%OCCROOT%%/inc/AppParCurves_HArray1OfConstraintCouple.hxx -%%OCCROOT%%/inc/AppParCurves_HArray1OfMultiBSpCurve.hxx -%%OCCROOT%%/inc/AppParCurves_HArray1OfMultiCurve.hxx -%%OCCROOT%%/inc/AppParCurves_HArray1OfMultiPoint.hxx -%%OCCROOT%%/inc/AppParCurves_LeastSquare.gxx -%%OCCROOT%%/inc/AppParCurves_LinearCriteria.gxx -%%OCCROOT%%/inc/AppParCurves_MLineTool.gxx -%%OCCROOT%%/inc/AppParCurves_MultiBSpCurve.hxx -%%OCCROOT%%/inc/AppParCurves_MultiCurve.hxx -%%OCCROOT%%/inc/AppParCurves_MultiPoint.hxx -%%OCCROOT%%/inc/AppParCurves_MultiPoint.lxx -%%OCCROOT%%/inc/AppParCurves_Projection.gxx -%%OCCROOT%%/inc/AppParCurves_ResolConstraint.gxx -%%OCCROOT%%/inc/AppParCurves_SequenceNodeOfSequenceOfMultiBSpCurve.hxx -%%OCCROOT%%/inc/AppParCurves_SequenceNodeOfSequenceOfMultiCurve.hxx -%%OCCROOT%%/inc/AppParCurves_SequenceOfMultiBSpCurve.hxx -%%OCCROOT%%/inc/AppParCurves_SequenceOfMultiCurve.hxx -%%OCCROOT%%/inc/AppParCurves_SmoothCriterion.hxx -%%OCCROOT%%/inc/AppParCurves_Variational.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_1.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_2.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_3.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_4.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_5.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_6.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_7.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_8.gxx -%%OCCROOT%%/inc/AppParCurves_Variational_9.gxx -%%OCCROOT%%/inc/AppStdL_Application.hxx -%%OCCROOT%%/inc/AppStd_Application.hxx -%%OCCROOT%%/inc/ApproxInt_Approx.gxx -%%OCCROOT%%/inc/ApproxInt_ImpPrmSvSurfaces.gxx -%%OCCROOT%%/inc/ApproxInt_MultiLine.gxx -%%OCCROOT%%/inc/ApproxInt_MultiLineTool.gxx -%%OCCROOT%%/inc/ApproxInt_MultiLineTool.lxx -%%OCCROOT%%/inc/ApproxInt_PrmPrmSvSurfaces.gxx -%%OCCROOT%%/inc/ApproxInt_SvSurfaces.hxx -%%OCCROOT%%/inc/ApproxInt_WLine.gxx -%%OCCROOT%%/inc/Approx_Array1OfAdHSurface.hxx -%%OCCROOT%%/inc/Approx_Array1OfGTrsf2d.hxx -%%OCCROOT%%/inc/Approx_BSplComputeLine.gxx -%%OCCROOT%%/inc/Approx_ComputeCLine.gxx -%%OCCROOT%%/inc/Approx_ComputeCSurface.gxx -%%OCCROOT%%/inc/Approx_ComputeLine.gxx -%%OCCROOT%%/inc/Approx_Curve2d.hxx -%%OCCROOT%%/inc/Approx_Curve3d.hxx -%%OCCROOT%%/inc/Approx_CurveOnSurface.hxx -%%OCCROOT%%/inc/Approx_CurvilinearParameter.hxx -%%OCCROOT%%/inc/Approx_CurvlinFunc.hxx -%%OCCROOT%%/inc/Approx_FitAndDivide.hxx -%%OCCROOT%%/inc/Approx_FitAndDivide2d.hxx -%%OCCROOT%%/inc/Approx_HArray1OfAdHSurface.hxx -%%OCCROOT%%/inc/Approx_HArray1OfGTrsf2d.hxx -%%OCCROOT%%/inc/Approx_MCurvesToBSpCurve.hxx -%%OCCROOT%%/inc/Approx_MyLeastSquareOfFitAndDivide.hxx -%%OCCROOT%%/inc/Approx_MyLeastSquareOfFitAndDivide2d.hxx -%%OCCROOT%%/inc/Approx_ParametrizationType.hxx -%%OCCROOT%%/inc/Approx_SameParameter.hxx -%%OCCROOT%%/inc/Approx_SameParameter.lxx -%%OCCROOT%%/inc/Approx_SequenceNodeOfSequenceOfHArray1OfReal.hxx -%%OCCROOT%%/inc/Approx_SequenceOfHArray1OfReal.hxx -%%OCCROOT%%/inc/Approx_Status.hxx -%%OCCROOT%%/inc/Approx_SweepApproximation.hxx -%%OCCROOT%%/inc/Approx_SweepApproximation.lxx -%%OCCROOT%%/inc/Approx_SweepFunction.hxx -%%OCCROOT%%/inc/Approx_TheLineTool.gxx -%%OCCROOT%%/inc/Aspect.hxx -%%OCCROOT%%/inc/Aspect_Array1OfEdge.hxx -%%OCCROOT%%/inc/Aspect_AspectFillArea.hxx -%%OCCROOT%%/inc/Aspect_AspectFillAreaDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_AspectLine.hxx -%%OCCROOT%%/inc/Aspect_AspectLineDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_AspectMarker.hxx -%%OCCROOT%%/inc/Aspect_AspectMarkerDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_Background.hxx -%%OCCROOT%%/inc/Aspect_BadAccess.hxx -%%OCCROOT%%/inc/Aspect_CLayer2d.hxx -%%OCCROOT%%/inc/Aspect_CardinalPoints.hxx -%%OCCROOT%%/inc/Aspect_CircularGrid.hxx -%%OCCROOT%%/inc/Aspect_ColorCubeColorMap.hxx -%%OCCROOT%%/inc/Aspect_ColorMap.hxx -%%OCCROOT%%/inc/Aspect_ColorMapDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_ColorMapEntry.hxx -%%OCCROOT%%/inc/Aspect_ColorPixel.hxx -%%OCCROOT%%/inc/Aspect_ColorRampColorMap.hxx -%%OCCROOT%%/inc/Aspect_ColorScale.hxx -%%OCCROOT%%/inc/Aspect_Convert.hxx -%%OCCROOT%%/inc/Aspect_Display.hxx -%%OCCROOT%%/inc/Aspect_DisplayConnection.hxx -%%OCCROOT%%/inc/Aspect_DisplayConnectionDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_DisplayConnection_Handle.hxx -%%OCCROOT%%/inc/Aspect_Drawable.hxx -%%OCCROOT%%/inc/Aspect_Driver.hxx -%%OCCROOT%%/inc/Aspect_DriverDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_DriverError.hxx -%%OCCROOT%%/inc/Aspect_DriverPtr.hxx -%%OCCROOT%%/inc/Aspect_Edge.hxx -%%OCCROOT%%/inc/Aspect_EdgeDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_FStream.hxx -%%OCCROOT%%/inc/Aspect_FillMethod.hxx -%%OCCROOT%%/inc/Aspect_FontMap.hxx -%%OCCROOT%%/inc/Aspect_FontMapDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_FontMapEntry.hxx -%%OCCROOT%%/inc/Aspect_FontStyle.hxx -%%OCCROOT%%/inc/Aspect_FontStyleDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_FormatOfSheetPaper.hxx -%%OCCROOT%%/inc/Aspect_GenId.hxx -%%OCCROOT%%/inc/Aspect_GenericColorMap.hxx -%%OCCROOT%%/inc/Aspect_GradientBackground.hxx -%%OCCROOT%%/inc/Aspect_GradientFillMethod.hxx -%%OCCROOT%%/inc/Aspect_GraphicCallbackProc.hxx -%%OCCROOT%%/inc/Aspect_GraphicDeviceDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_Grid.hxx -%%OCCROOT%%/inc/Aspect_GridDrawMode.hxx -%%OCCROOT%%/inc/Aspect_GridType.hxx -%%OCCROOT%%/inc/Aspect_Handle.hxx -%%OCCROOT%%/inc/Aspect_HatchStyle.hxx -%%OCCROOT%%/inc/Aspect_IFStream.hxx -%%OCCROOT%%/inc/Aspect_IdentDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_IndexPixel.hxx -%%OCCROOT%%/inc/Aspect_InteriorStyle.hxx -%%OCCROOT%%/inc/Aspect_LineStyle.hxx -%%OCCROOT%%/inc/Aspect_LineStyleDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_LineWidthDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_ListingType.hxx -%%OCCROOT%%/inc/Aspect_MarkMap.hxx -%%OCCROOT%%/inc/Aspect_MarkMapDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_MarkMapEntry.hxx -%%OCCROOT%%/inc/Aspect_MarkerStyle.hxx -%%OCCROOT%%/inc/Aspect_MarkerStyleDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_Pixel.hxx -%%OCCROOT%%/inc/Aspect_PixmapDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_PixmapError.hxx -%%OCCROOT%%/inc/Aspect_PlotMode.hxx -%%OCCROOT%%/inc/Aspect_PlotterOrigin.hxx -%%OCCROOT%%/inc/Aspect_PolyStyleDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_PolygonOffsetMode.hxx -%%OCCROOT%%/inc/Aspect_PrintAlgo.hxx -%%OCCROOT%%/inc/Aspect_RGBPixel.hxx -%%OCCROOT%%/inc/Aspect_RectangularGrid.hxx -%%OCCROOT%%/inc/Aspect_RenderingContext.hxx -%%OCCROOT%%/inc/Aspect_SequenceNodeOfSequenceOfColor.hxx -%%OCCROOT%%/inc/Aspect_SequenceNodeOfSequenceOfColorMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceNodeOfSequenceOfFontMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceNodeOfSequenceOfMarkMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceNodeOfSequenceOfTypeMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceNodeOfSequenceOfWidthMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceOfColor.hxx -%%OCCROOT%%/inc/Aspect_SequenceOfColorMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceOfFontMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceOfMarkMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceOfTypeMapEntry.hxx -%%OCCROOT%%/inc/Aspect_SequenceOfWidthMapEntry.hxx -%%OCCROOT%%/inc/Aspect_TypeMap.hxx -%%OCCROOT%%/inc/Aspect_TypeMapDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_TypeMapEntry.hxx -%%OCCROOT%%/inc/Aspect_TypeOfColorMap.hxx -%%OCCROOT%%/inc/Aspect_TypeOfColorScaleData.hxx -%%OCCROOT%%/inc/Aspect_TypeOfColorScaleOrientation.hxx -%%OCCROOT%%/inc/Aspect_TypeOfColorScalePosition.hxx -%%OCCROOT%%/inc/Aspect_TypeOfColorSpace.hxx -%%OCCROOT%%/inc/Aspect_TypeOfConstraint.hxx -%%OCCROOT%%/inc/Aspect_TypeOfDeflection.hxx -%%OCCROOT%%/inc/Aspect_TypeOfDisplayText.hxx -%%OCCROOT%%/inc/Aspect_TypeOfDrawMode.hxx -%%OCCROOT%%/inc/Aspect_TypeOfEdge.hxx -%%OCCROOT%%/inc/Aspect_TypeOfFacingModel.hxx -%%OCCROOT%%/inc/Aspect_TypeOfFont.hxx -%%OCCROOT%%/inc/Aspect_TypeOfHighlightMethod.hxx -%%OCCROOT%%/inc/Aspect_TypeOfLayer.hxx -%%OCCROOT%%/inc/Aspect_TypeOfLine.hxx -%%OCCROOT%%/inc/Aspect_TypeOfMarker.hxx -%%OCCROOT%%/inc/Aspect_TypeOfPrimitive.hxx -%%OCCROOT%%/inc/Aspect_TypeOfRenderingMode.hxx -%%OCCROOT%%/inc/Aspect_TypeOfResize.hxx -%%OCCROOT%%/inc/Aspect_TypeOfStyleText.hxx -%%OCCROOT%%/inc/Aspect_TypeOfText.hxx -%%OCCROOT%%/inc/Aspect_TypeOfTriedronEcho.hxx -%%OCCROOT%%/inc/Aspect_TypeOfTriedronPosition.hxx -%%OCCROOT%%/inc/Aspect_TypeOfUpdate.hxx -%%OCCROOT%%/inc/Aspect_UndefinedMap.hxx -%%OCCROOT%%/inc/Aspect_Units.hxx -%%OCCROOT%%/inc/Aspect_WidthMap.hxx -%%OCCROOT%%/inc/Aspect_WidthMapDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_WidthMapEntry.hxx -%%OCCROOT%%/inc/Aspect_WidthOfLine.hxx -%%OCCROOT%%/inc/Aspect_Window.hxx -%%OCCROOT%%/inc/Aspect_WindowDefinitionError.hxx -%%OCCROOT%%/inc/Aspect_WindowDriver.hxx -%%OCCROOT%%/inc/Aspect_WindowDriverPtr.hxx -%%OCCROOT%%/inc/Aspect_WindowError.hxx -%%OCCROOT%%/inc/Aspect_XAtom.hxx -%%OCCROOT%%/inc/Aspect_XWD.hxx -%%OCCROOT%%/inc/BOPAlgo_Algo.hxx -%%OCCROOT%%/inc/BOPAlgo_ArgumentAnalyzer.hxx -%%OCCROOT%%/inc/BOPAlgo_ArgumentAnalyzer.lxx -%%OCCROOT%%/inc/BOPAlgo_BOP.hxx -%%OCCROOT%%/inc/BOPAlgo_Builder.hxx -%%OCCROOT%%/inc/BOPAlgo_BuilderArea.hxx -%%OCCROOT%%/inc/BOPAlgo_BuilderFace.hxx -%%OCCROOT%%/inc/BOPAlgo_BuilderShape.hxx -%%OCCROOT%%/inc/BOPAlgo_BuilderSolid.hxx -%%OCCROOT%%/inc/BOPAlgo_CheckResult.hxx -%%OCCROOT%%/inc/BOPAlgo_CheckStatus.hxx -%%OCCROOT%%/inc/BOPAlgo_CheckerSI.hxx -%%OCCROOT%%/inc/BOPAlgo_ListOfCheckResult.hxx -%%OCCROOT%%/inc/BOPAlgo_Operation.hxx -%%OCCROOT%%/inc/BOPAlgo_PArgumentAnalyzer.hxx -%%OCCROOT%%/inc/BOPAlgo_PBOP.hxx -%%OCCROOT%%/inc/BOPAlgo_PBuilder.hxx -%%OCCROOT%%/inc/BOPAlgo_PPaveFiller.hxx -%%OCCROOT%%/inc/BOPAlgo_PWireEdgeSet.hxx -%%OCCROOT%%/inc/BOPAlgo_PaveFiller.hxx -%%OCCROOT%%/inc/BOPAlgo_SectionAttribute.hxx -%%OCCROOT%%/inc/BOPAlgo_SectionAttribute.lxx -%%OCCROOT%%/inc/BOPAlgo_ShellSplitter.hxx -%%OCCROOT%%/inc/BOPAlgo_Tools.hxx -%%OCCROOT%%/inc/BOPAlgo_WireEdgeSet.hxx -%%OCCROOT%%/inc/BOPAlgo_WireEdgeSet.lxx -%%OCCROOT%%/inc/BOPAlgo_WireSplitter.hxx -%%OCCROOT%%/inc/BOPAlgo_WireSplitter.lxx -%%OCCROOT%%/inc/BOPCol_Array1.hxx -%%OCCROOT%%/inc/BOPCol_BaseAllocator.hxx -%%OCCROOT%%/inc/BOPCol_Box2DBndTree.hxx -%%OCCROOT%%/inc/BOPCol_BoxBndTree.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfIntegerInteger.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfIntegerListOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfIntegerListOfShape.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfIntegerMapOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfIntegerReal.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfIntegerShape.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfShapeAddress.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfShapeInteger.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfShapeListOfShape.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfShapeShape.hxx -%%OCCROOT%%/inc/BOPCol_DataMapOfTransientAddress.hxx -%%OCCROOT%%/inc/BOPCol_IndexedDataMapOfIntegerListOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_IndexedDataMapOfShapeBox.hxx -%%OCCROOT%%/inc/BOPCol_IndexedDataMapOfShapeInteger.hxx -%%OCCROOT%%/inc/BOPCol_IndexedDataMapOfShapeListOfShape.hxx -%%OCCROOT%%/inc/BOPCol_IndexedMapOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_IndexedMapOfShape.hxx -%%OCCROOT%%/inc/BOPCol_ListOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_ListOfListOfShape.hxx -%%OCCROOT%%/inc/BOPCol_ListOfShape.hxx -%%OCCROOT%%/inc/BOPCol_MapOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_MapOfOrientedShape.hxx -%%OCCROOT%%/inc/BOPCol_MapOfShape.hxx -%%OCCROOT%%/inc/BOPCol_NCVector.hxx -%%OCCROOT%%/inc/BOPCol_PInteger.hxx -%%OCCROOT%%/inc/BOPCol_PListOfInteger.hxx -%%OCCROOT%%/inc/BOPCol_SequenceOfPnt2d.hxx -%%OCCROOT%%/inc/BOPCol_SequenceOfReal.hxx -%%OCCROOT%%/inc/BOPCol_SequenceOfShape.hxx -%%OCCROOT%%/inc/BOPCol_TBB.hxx -%%OCCROOT%%/inc/BOPCol_VectorOfInteger.hxx -%%OCCROOT%%/inc/BOPDS_CommonBlock.hxx -%%OCCROOT%%/inc/BOPDS_CoupleOfPaveBlocks.hxx -%%OCCROOT%%/inc/BOPDS_Curve.hxx -%%OCCROOT%%/inc/BOPDS_Curve.lxx -%%OCCROOT%%/inc/BOPDS_DS.hxx -%%OCCROOT%%/inc/BOPDS_DS.lxx -%%OCCROOT%%/inc/BOPDS_DataMapOfIntegerListOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_DataMapOfPassKeyListOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_DataMapOfPaveBlockCommonBlock.hxx -%%OCCROOT%%/inc/BOPDS_DataMapOfPaveBlockListOfInteger.hxx -%%OCCROOT%%/inc/BOPDS_DataMapOfPaveBlockListOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_DataMapOfShapeCoupleOfPaveBlocks.hxx -%%OCCROOT%%/inc/BOPDS_FaceInfo.hxx -%%OCCROOT%%/inc/BOPDS_FaceInfo.lxx -%%OCCROOT%%/inc/BOPDS_IndexRange.hxx -%%OCCROOT%%/inc/BOPDS_IndexRange.lxx -%%OCCROOT%%/inc/BOPDS_IndexedDataMapOfPaveBlockListOfInteger.hxx -%%OCCROOT%%/inc/BOPDS_IndexedDataMapOfPaveBlockListOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_IndexedDataMapOfShapeCoupleOfPaveBlocks.hxx -%%OCCROOT%%/inc/BOPDS_IndexedMapOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_Interf.hxx -%%OCCROOT%%/inc/BOPDS_Iterator.hxx -%%OCCROOT%%/inc/BOPDS_IteratorSI.hxx -%%OCCROOT%%/inc/BOPDS_ListIteratorOfListOfPassKeyBoolean.hxx -%%OCCROOT%%/inc/BOPDS_ListOfPassKeyBoolean.hxx -%%OCCROOT%%/inc/BOPDS_ListOfPave.hxx -%%OCCROOT%%/inc/BOPDS_ListOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_MapOfCommonBlock.hxx -%%OCCROOT%%/inc/BOPDS_MapOfPassKey.hxx -%%OCCROOT%%/inc/BOPDS_MapOfPassKeyBoolean.hxx -%%OCCROOT%%/inc/BOPDS_MapOfPave.hxx -%%OCCROOT%%/inc/BOPDS_MapOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_PDS.hxx -%%OCCROOT%%/inc/BOPDS_PIterator.hxx -%%OCCROOT%%/inc/BOPDS_PIteratorSI.hxx -%%OCCROOT%%/inc/BOPDS_PassKey.hxx -%%OCCROOT%%/inc/BOPDS_PassKey.lxx -%%OCCROOT%%/inc/BOPDS_PassKeyBoolean.hxx -%%OCCROOT%%/inc/BOPDS_PassKeyBoolean.lxx -%%OCCROOT%%/inc/BOPDS_PassKeyMapHasher.hxx -%%OCCROOT%%/inc/BOPDS_PassKeyMapHasher.lxx -%%OCCROOT%%/inc/BOPDS_Pave.hxx -%%OCCROOT%%/inc/BOPDS_Pave.lxx -%%OCCROOT%%/inc/BOPDS_PaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_PaveMapHasher.hxx -%%OCCROOT%%/inc/BOPDS_PaveMapHasher.lxx -%%OCCROOT%%/inc/BOPDS_Point.hxx -%%OCCROOT%%/inc/BOPDS_Point.lxx -%%OCCROOT%%/inc/BOPDS_ShapeInfo.hxx -%%OCCROOT%%/inc/BOPDS_ShapeInfo.lxx -%%OCCROOT%%/inc/BOPDS_SubIterator.hxx -%%OCCROOT%%/inc/BOPDS_Tools.hxx -%%OCCROOT%%/inc/BOPDS_Tools.lxx -%%OCCROOT%%/inc/BOPDS_VectorOfCurve.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfFaceInfo.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfIndexRange.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfEE.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfEF.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfEZ.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfFF.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfFZ.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfVE.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfVF.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfVV.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfVZ.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfInterfZZ.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfListOfPassKeyBoolean.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfListOfPaveBlock.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfPoint.hxx -%%OCCROOT%%/inc/BOPDS_VectorOfShapeInfo.hxx -%%OCCROOT%%/inc/BOPInt_Context.hxx -%%OCCROOT%%/inc/BOPInt_ShrunkRange.hxx -%%OCCROOT%%/inc/BOPInt_Tools.hxx -%%OCCROOT%%/inc/BOPTest.hxx -%%OCCROOT%%/inc/BOPTest_DrawableShape.hxx -%%OCCROOT%%/inc/BOPTest_Objects.hxx -%%OCCROOT%%/inc/BOPTools.hxx -%%OCCROOT%%/inc/BOPTools_AlgoTools.hxx -%%OCCROOT%%/inc/BOPTools_AlgoTools2D.hxx -%%OCCROOT%%/inc/BOPTools_AlgoTools3D.hxx -%%OCCROOT%%/inc/BOPTools_ConnexityBlock.hxx -%%OCCROOT%%/inc/BOPTools_CoupleOfShape.hxx -%%OCCROOT%%/inc/BOPTools_DataMapOfShapeSet.hxx -%%OCCROOT%%/inc/BOPTools_EdgeSet.hxx -%%OCCROOT%%/inc/BOPTools_EdgeSet.lxx -%%OCCROOT%%/inc/BOPTools_ListOfConnexityBlock.hxx -%%OCCROOT%%/inc/BOPTools_ListOfCoupleOfShape.hxx -%%OCCROOT%%/inc/BOPTools_ListOfEdgeSet.hxx -%%OCCROOT%%/inc/BOPTools_ListOfShapeSet.hxx -%%OCCROOT%%/inc/BOPTools_MapOfSet.hxx -%%OCCROOT%%/inc/BOPTools_Set.hxx -%%OCCROOT%%/inc/BOPTools_SetMapHasher.hxx -%%OCCROOT%%/inc/BOPTools_SetMapHasher.lxx -%%OCCROOT%%/inc/BOPTools_ShapeSet.hxx -%%OCCROOT%%/inc/BOPTools_ShapeSet.lxx -%%OCCROOT%%/inc/BRepAdaptor_Array1OfCurve.hxx -%%OCCROOT%%/inc/BRepAdaptor_CompCurve.hxx -%%OCCROOT%%/inc/BRepAdaptor_Curve.hxx -%%OCCROOT%%/inc/BRepAdaptor_Curve2d.hxx -%%OCCROOT%%/inc/BRepAdaptor_HArray1OfCurve.hxx -%%OCCROOT%%/inc/BRepAdaptor_HCompCurve.hxx -%%OCCROOT%%/inc/BRepAdaptor_HCurve.hxx -%%OCCROOT%%/inc/BRepAdaptor_HCurve2d.hxx -%%OCCROOT%%/inc/BRepAdaptor_HSurface.hxx -%%OCCROOT%%/inc/BRepAdaptor_Surface.hxx -%%OCCROOT%%/inc/BRepAdaptor_Surface.lxx -%%OCCROOT%%/inc/BRepAlgo.hxx -%%OCCROOT%%/inc/BRepAlgoAPI.hxx -%%OCCROOT%%/inc/BRepAlgoAPI_BooleanOperation.hxx -%%OCCROOT%%/inc/BRepAlgoAPI_Check.hxx -%%OCCROOT%%/inc/BRepAlgoAPI_Common.hxx -%%OCCROOT%%/inc/BRepAlgoAPI_Cut.hxx -%%OCCROOT%%/inc/BRepAlgoAPI_Fuse.hxx -%%OCCROOT%%/inc/BRepAlgoAPI_Section.hxx -%%OCCROOT%%/inc/BRepAlgo_AsDes.hxx -%%OCCROOT%%/inc/BRepAlgo_BooleanOperation.hxx -%%OCCROOT%%/inc/BRepAlgo_BooleanOperations.hxx -%%OCCROOT%%/inc/BRepAlgo_CheckStatus.hxx -%%OCCROOT%%/inc/BRepAlgo_Common.hxx -%%OCCROOT%%/inc/BRepAlgo_Cut.hxx -%%OCCROOT%%/inc/BRepAlgo_DSAccess.hxx -%%OCCROOT%%/inc/BRepAlgo_DataMapIteratorOfDataMapOfShapeBoolean.hxx -%%OCCROOT%%/inc/BRepAlgo_DataMapIteratorOfDataMapOfShapeInterference.hxx -%%OCCROOT%%/inc/BRepAlgo_DataMapNodeOfDataMapOfShapeBoolean.hxx -%%OCCROOT%%/inc/BRepAlgo_DataMapNodeOfDataMapOfShapeInterference.hxx -%%OCCROOT%%/inc/BRepAlgo_DataMapOfShapeBoolean.hxx -%%OCCROOT%%/inc/BRepAlgo_DataMapOfShapeInterference.hxx -%%OCCROOT%%/inc/BRepAlgo_EdgeConnector.hxx -%%OCCROOT%%/inc/BRepAlgo_FaceRestrictor.hxx -%%OCCROOT%%/inc/BRepAlgo_Fuse.hxx -%%OCCROOT%%/inc/BRepAlgo_Image.hxx -%%OCCROOT%%/inc/BRepAlgo_Loop.hxx -%%OCCROOT%%/inc/BRepAlgo_NormalProjection.hxx -%%OCCROOT%%/inc/BRepAlgo_Section.hxx -%%OCCROOT%%/inc/BRepAlgo_SequenceNodeOfSequenceOfSequenceOfInteger.hxx -%%OCCROOT%%/inc/BRepAlgo_SequenceOfSequenceOfInteger.hxx -%%OCCROOT%%/inc/BRepAlgo_Tool.hxx -%%OCCROOT%%/inc/BRepApprox_Approx.hxx -%%OCCROOT%%/inc/BRepApprox_ApproxLine.hxx -%%OCCROOT%%/inc/BRepApprox_ApproxLineGen.gxx -%%OCCROOT%%/inc/BRepApprox_BSpGradient_BFGSOfMyBSplGradientOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_BSpParFunctionOfMyBSplGradientOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_BSpParLeastSquareOfMyBSplGradientOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_Gradient_BFGSOfMyGradientOfTheComputeLineBezierOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_Gradient_BFGSOfMyGradientbisOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_MyBSplGradientOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_MyGradientOfTheComputeLineBezierOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_MyGradientbisOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ParFunctionOfMyGradientOfTheComputeLineBezierOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ParFunctionOfMyGradientbisOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ParLeastSquareOfMyGradientOfTheComputeLineBezierOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ParLeastSquareOfMyGradientbisOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ResConstraintOfMyGradientOfTheComputeLineBezierOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ResConstraintOfMyGradientbisOfTheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_SurfaceTool.hxx -%%OCCROOT%%/inc/BRepApprox_SurfaceToolGen.gxx -%%OCCROOT%%/inc/BRepApprox_SurfaceToolGen.lxx -%%OCCROOT%%/inc/BRepApprox_TheComputeLineBezierOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheComputeLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheFunctionOfTheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheImpPrmSvSurfacesOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheInt2SOfThePrmPrmSvSurfacesOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheMultiLineOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheMultiLineToolOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_ThePrmPrmSvSurfacesOfApprox.hxx -%%OCCROOT%%/inc/BRepApprox_TheZerImpFuncOfTheImpPrmSvSurfacesOfApprox.hxx -%%OCCROOT%%/inc/BRepBlend_AppFunc.hxx -%%OCCROOT%%/inc/BRepBlend_AppFuncRoot.hxx -%%OCCROOT%%/inc/BRepBlend_AppFuncRst.hxx -%%OCCROOT%%/inc/BRepBlend_AppFuncRstRst.hxx -%%OCCROOT%%/inc/BRepBlend_AppSurf.hxx -%%OCCROOT%%/inc/BRepBlend_AppSurface.hxx -%%OCCROOT%%/inc/BRepBlend_AppSurface.lxx -%%OCCROOT%%/inc/BRepBlend_BlendTool.hxx -%%OCCROOT%%/inc/BRepBlend_BlendTool.lxx -%%OCCROOT%%/inc/BRepBlend_CSCircular.hxx -%%OCCROOT%%/inc/BRepBlend_CSConstRad.hxx -%%OCCROOT%%/inc/BRepBlend_CSWalking.hxx -%%OCCROOT%%/inc/BRepBlend_ChAsym.hxx -%%OCCROOT%%/inc/BRepBlend_ChAsymInv.hxx -%%OCCROOT%%/inc/BRepBlend_ChamfInv.hxx -%%OCCROOT%%/inc/BRepBlend_Chamfer.hxx -%%OCCROOT%%/inc/BRepBlend_ConstRad.hxx -%%OCCROOT%%/inc/BRepBlend_ConstRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_CurvPointRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_EvolRad.hxx -%%OCCROOT%%/inc/BRepBlend_EvolRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_Extremity.hxx -%%OCCROOT%%/inc/BRepBlend_HCurve2dTool.hxx -%%OCCROOT%%/inc/BRepBlend_HCurve2dToolGen.gxx -%%OCCROOT%%/inc/BRepBlend_HCurve2dToolGen.lxx -%%OCCROOT%%/inc/BRepBlend_HCurveTool.hxx -%%OCCROOT%%/inc/BRepBlend_HCurveToolGen.gxx -%%OCCROOT%%/inc/BRepBlend_HCurveToolGen.lxx -%%OCCROOT%%/inc/BRepBlend_Line.hxx -%%OCCROOT%%/inc/BRepBlend_PointOnRst.hxx -%%OCCROOT%%/inc/BRepBlend_RstRstConstRad.hxx -%%OCCROOT%%/inc/BRepBlend_RstRstEvolRad.hxx -%%OCCROOT%%/inc/BRepBlend_RstRstLineBuilder.hxx -%%OCCROOT%%/inc/BRepBlend_RstRstLineBuilder.lxx -%%OCCROOT%%/inc/BRepBlend_Ruled.hxx -%%OCCROOT%%/inc/BRepBlend_RuledInv.hxx -%%OCCROOT%%/inc/BRepBlend_SequenceNodeOfSequenceOfLine.hxx -%%OCCROOT%%/inc/BRepBlend_SequenceNodeOfSequenceOfPointOnRst.hxx -%%OCCROOT%%/inc/BRepBlend_SequenceOfLine.hxx -%%OCCROOT%%/inc/BRepBlend_SequenceOfPointOnRst.hxx -%%OCCROOT%%/inc/BRepBlend_SurfCurvConstRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_SurfCurvEvolRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_SurfPointConstRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_SurfPointEvolRadInv.hxx -%%OCCROOT%%/inc/BRepBlend_SurfRstConstRad.hxx -%%OCCROOT%%/inc/BRepBlend_SurfRstEvolRad.hxx -%%OCCROOT%%/inc/BRepBlend_SurfRstLineBuilder.hxx -%%OCCROOT%%/inc/BRepBlend_SurfRstLineBuilder.lxx -%%OCCROOT%%/inc/BRepBlend_Walking.hxx -%%OCCROOT%%/inc/BRepBndLib.hxx -%%OCCROOT%%/inc/BRepBuilderAPI.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_BndBoxTreeSelector.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_CellFilter.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_Collect.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_Command.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_Copy.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_EdgeError.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_FaceError.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_FindPlane.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_GTransform.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeEdge.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeEdge2d.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeFace.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakePolygon.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeShape.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeShell.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeSolid.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeVertex.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_MakeWire.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_ModifyShape.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_NurbsConvert.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_PipeError.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_Sewing.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_Sewing.lxx -%%OCCROOT%%/inc/BRepBuilderAPI_ShapeModification.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_ShellError.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_Transform.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_TransitionMode.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_VertexInspector.hxx -%%OCCROOT%%/inc/BRepBuilderAPI_WireError.hxx -%%OCCROOT%%/inc/BRepCheck.hxx -%%OCCROOT%%/inc/BRepCheck_Analyzer.hxx -%%OCCROOT%%/inc/BRepCheck_Analyzer.lxx -%%OCCROOT%%/inc/BRepCheck_DataMapIteratorOfDataMapOfShapeListOfStatus.hxx -%%OCCROOT%%/inc/BRepCheck_DataMapIteratorOfDataMapOfShapeResult.hxx -%%OCCROOT%%/inc/BRepCheck_DataMapNodeOfDataMapOfShapeListOfStatus.hxx -%%OCCROOT%%/inc/BRepCheck_DataMapNodeOfDataMapOfShapeResult.hxx -%%OCCROOT%%/inc/BRepCheck_DataMapOfShapeListOfStatus.hxx -%%OCCROOT%%/inc/BRepCheck_DataMapOfShapeResult.hxx -%%OCCROOT%%/inc/BRepCheck_Edge.hxx -%%OCCROOT%%/inc/BRepCheck_Face.hxx -%%OCCROOT%%/inc/BRepCheck_ListIteratorOfListOfStatus.hxx -%%OCCROOT%%/inc/BRepCheck_ListNodeOfListOfStatus.hxx -%%OCCROOT%%/inc/BRepCheck_ListOfStatus.hxx -%%OCCROOT%%/inc/BRepCheck_Result.hxx -%%OCCROOT%%/inc/BRepCheck_Result.lxx -%%OCCROOT%%/inc/BRepCheck_Shell.hxx -%%OCCROOT%%/inc/BRepCheck_Status.hxx -%%OCCROOT%%/inc/BRepCheck_Vertex.hxx -%%OCCROOT%%/inc/BRepCheck_Wire.hxx -%%OCCROOT%%/inc/BRepClass3d.hxx -%%OCCROOT%%/inc/BRepClass3d_DataMapIteratorOfMapOfInter.hxx -%%OCCROOT%%/inc/BRepClass3d_DataMapNodeOfMapOfInter.hxx -%%OCCROOT%%/inc/BRepClass3d_Intersector3d.hxx -%%OCCROOT%%/inc/BRepClass3d_Intersector3d.lxx -%%OCCROOT%%/inc/BRepClass3d_MapOfInter.hxx -%%OCCROOT%%/inc/BRepClass3d_SClassifier.hxx -%%OCCROOT%%/inc/BRepClass3d_SolidClassifier.hxx -%%OCCROOT%%/inc/BRepClass3d_SolidExplorer.hxx -%%OCCROOT%%/inc/BRepClass3d_SolidPassiveClassifier.hxx -%%OCCROOT%%/inc/BRepClass_Edge.hxx -%%OCCROOT%%/inc/BRepClass_Edge.lxx -%%OCCROOT%%/inc/BRepClass_FClass2dOfFClassifier.hxx -%%OCCROOT%%/inc/BRepClass_FClassifier.hxx -%%OCCROOT%%/inc/BRepClass_FaceClassifier.hxx -%%OCCROOT%%/inc/BRepClass_FaceExplorer.hxx -%%OCCROOT%%/inc/BRepClass_FaceExplorer.lxx -%%OCCROOT%%/inc/BRepClass_FacePassiveClassifier.hxx -%%OCCROOT%%/inc/BRepClass_Intersector.hxx -%%OCCROOT%%/inc/BRepExtrema_DistShapeShape.hxx -%%OCCROOT%%/inc/BRepExtrema_DistanceSS.hxx -%%OCCROOT%%/inc/BRepExtrema_ExtCC.hxx -%%OCCROOT%%/inc/BRepExtrema_ExtCF.hxx -%%OCCROOT%%/inc/BRepExtrema_ExtFF.hxx -%%OCCROOT%%/inc/BRepExtrema_ExtPC.hxx -%%OCCROOT%%/inc/BRepExtrema_ExtPF.hxx -%%OCCROOT%%/inc/BRepExtrema_Poly.hxx -%%OCCROOT%%/inc/BRepExtrema_SeqOfSolution.hxx -%%OCCROOT%%/inc/BRepExtrema_SolutionElem.hxx -%%OCCROOT%%/inc/BRepExtrema_SupportType.hxx -%%OCCROOT%%/inc/BRepExtrema_UnCompatibleShape.hxx -%%OCCROOT%%/inc/BRepFeat.hxx -%%OCCROOT%%/inc/BRepFeat_Builder.hxx -%%OCCROOT%%/inc/BRepFeat_Form.hxx -%%OCCROOT%%/inc/BRepFeat_Form.lxx -%%OCCROOT%%/inc/BRepFeat_Gluer.hxx -%%OCCROOT%%/inc/BRepFeat_Gluer.lxx -%%OCCROOT%%/inc/BRepFeat_MakeCylindricalHole.hxx -%%OCCROOT%%/inc/BRepFeat_MakeCylindricalHole.lxx -%%OCCROOT%%/inc/BRepFeat_MakeDPrism.hxx -%%OCCROOT%%/inc/BRepFeat_MakeDPrism.lxx -%%OCCROOT%%/inc/BRepFeat_MakeLinearForm.hxx -%%OCCROOT%%/inc/BRepFeat_MakeLinearForm.lxx -%%OCCROOT%%/inc/BRepFeat_MakePipe.hxx -%%OCCROOT%%/inc/BRepFeat_MakePipe.lxx -%%OCCROOT%%/inc/BRepFeat_MakePrism.hxx -%%OCCROOT%%/inc/BRepFeat_MakePrism.lxx -%%OCCROOT%%/inc/BRepFeat_MakeRevol.hxx -%%OCCROOT%%/inc/BRepFeat_MakeRevol.lxx -%%OCCROOT%%/inc/BRepFeat_MakeRevolutionForm.hxx -%%OCCROOT%%/inc/BRepFeat_MakeRevolutionForm.lxx -%%OCCROOT%%/inc/BRepFeat_PerfSelection.hxx -%%OCCROOT%%/inc/BRepFeat_RibSlot.hxx -%%OCCROOT%%/inc/BRepFeat_RibSlot.lxx -%%OCCROOT%%/inc/BRepFeat_SplitShape.hxx -%%OCCROOT%%/inc/BRepFeat_SplitShape.lxx -%%OCCROOT%%/inc/BRepFeat_Status.hxx -%%OCCROOT%%/inc/BRepFeat_StatusError.hxx -%%OCCROOT%%/inc/BRepFill.hxx -%%OCCROOT%%/inc/BRepFill_ACRLaw.hxx -%%OCCROOT%%/inc/BRepFill_ApproxSeewing.hxx -%%OCCROOT%%/inc/BRepFill_CompatibleWires.hxx -%%OCCROOT%%/inc/BRepFill_ComputeCLine.hxx -%%OCCROOT%%/inc/BRepFill_CurveConstraint.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfNodeDataMapOfShapeShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfNodeShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfShapeDataMapOfShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfShapeHArray2OfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfPnt.hxx -%%OCCROOT%%/inc/BRepFill_DataMapIteratorOfDataMapOfShapeSequenceOfReal.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfNodeDataMapOfShapeShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfNodeShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfOrientedShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfShapeDataMapOfShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfShapeHArray2OfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfShapeSequenceOfPnt.hxx -%%OCCROOT%%/inc/BRepFill_DataMapNodeOfDataMapOfShapeSequenceOfReal.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfNodeDataMapOfShapeShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfNodeShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfOrientedShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfShapeDataMapOfShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfShapeHArray2OfShape.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfShapeSequenceOfPnt.hxx -%%OCCROOT%%/inc/BRepFill_DataMapOfShapeSequenceOfReal.hxx -%%OCCROOT%%/inc/BRepFill_Draft.hxx -%%OCCROOT%%/inc/BRepFill_DraftLaw.hxx -%%OCCROOT%%/inc/BRepFill_Edge3DLaw.hxx -%%OCCROOT%%/inc/BRepFill_EdgeFaceAndOrder.hxx -%%OCCROOT%%/inc/BRepFill_EdgeOnSurfLaw.hxx -%%OCCROOT%%/inc/BRepFill_Evolved.hxx -%%OCCROOT%%/inc/BRepFill_FaceAndOrder.hxx -%%OCCROOT%%/inc/BRepFill_Filling.hxx -%%OCCROOT%%/inc/BRepFill_Generator.hxx -%%OCCROOT%%/inc/BRepFill_Generator.lxx -%%OCCROOT%%/inc/BRepFill_IndexedDataMapNodeOfIndexedDataMapOfOrientedShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_IndexedDataMapOfOrientedShapeListOfShape.hxx -%%OCCROOT%%/inc/BRepFill_ListIteratorOfListOfOffsetWire.hxx -%%OCCROOT%%/inc/BRepFill_ListNodeOfListOfOffsetWire.hxx -%%OCCROOT%%/inc/BRepFill_ListOfOffsetWire.hxx -%%OCCROOT%%/inc/BRepFill_LocationLaw.hxx -%%OCCROOT%%/inc/BRepFill_MultiLine.hxx -%%OCCROOT%%/inc/BRepFill_MultiLineTool.hxx -%%OCCROOT%%/inc/BRepFill_MyLeastSquareOfComputeCLine.hxx -%%OCCROOT%%/inc/BRepFill_NSections.hxx -%%OCCROOT%%/inc/BRepFill_OffsetAncestors.hxx -%%OCCROOT%%/inc/BRepFill_OffsetWire.hxx -%%OCCROOT%%/inc/BRepFill_Pipe.hxx -%%OCCROOT%%/inc/BRepFill_PipeShell.hxx -%%OCCROOT%%/inc/BRepFill_Section.hxx -%%OCCROOT%%/inc/BRepFill_Section.lxx -%%OCCROOT%%/inc/BRepFill_SectionLaw.hxx -%%OCCROOT%%/inc/BRepFill_SectionPlacement.hxx -%%OCCROOT%%/inc/BRepFill_SequenceNodeOfSequenceOfEdgeFaceAndOrder.hxx -%%OCCROOT%%/inc/BRepFill_SequenceNodeOfSequenceOfFaceAndOrder.hxx -%%OCCROOT%%/inc/BRepFill_SequenceNodeOfSequenceOfSection.hxx -%%OCCROOT%%/inc/BRepFill_SequenceOfEdgeFaceAndOrder.hxx -%%OCCROOT%%/inc/BRepFill_SequenceOfFaceAndOrder.hxx -%%OCCROOT%%/inc/BRepFill_SequenceOfSection.hxx -%%OCCROOT%%/inc/BRepFill_ShapeLaw.hxx -%%OCCROOT%%/inc/BRepFill_ShapeLaw.lxx -%%OCCROOT%%/inc/BRepFill_Sweep.hxx -%%OCCROOT%%/inc/BRepFill_TransitionStyle.hxx -%%OCCROOT%%/inc/BRepFill_TrimEdgeTool.hxx -%%OCCROOT%%/inc/BRepFill_TrimShellCorner.hxx -%%OCCROOT%%/inc/BRepFill_TrimSurfaceTool.hxx -%%OCCROOT%%/inc/BRepFill_TypeOfContact.hxx -%%OCCROOT%%/inc/BRepFilletAPI_LocalOperation.hxx -%%OCCROOT%%/inc/BRepFilletAPI_MakeChamfer.hxx -%%OCCROOT%%/inc/BRepFilletAPI_MakeFillet.hxx -%%OCCROOT%%/inc/BRepFilletAPI_MakeFillet2d.hxx -%%OCCROOT%%/inc/BRepFilletAPI_MakeFillet2d.lxx -%%OCCROOT%%/inc/BRepGProp.hxx -%%OCCROOT%%/inc/BRepGProp_Cinert.hxx -%%OCCROOT%%/inc/BRepGProp_Domain.hxx -%%OCCROOT%%/inc/BRepGProp_Domain.lxx -%%OCCROOT%%/inc/BRepGProp_EdgeTool.hxx -%%OCCROOT%%/inc/BRepGProp_Face.hxx -%%OCCROOT%%/inc/BRepGProp_Face.lxx -%%OCCROOT%%/inc/BRepGProp_Sinert.hxx -%%OCCROOT%%/inc/BRepGProp_TFunctionOfVinertGK.hxx -%%OCCROOT%%/inc/BRepGProp_UFunctionOfVinertGK.hxx -%%OCCROOT%%/inc/BRepGProp_Vinert.hxx -%%OCCROOT%%/inc/BRepGProp_VinertGK.hxx -%%OCCROOT%%/inc/BRepIntCurveSurface_Inter.hxx -%%OCCROOT%%/inc/BRepLProp.hxx -%%OCCROOT%%/inc/BRepLProp_CLProps.hxx -%%OCCROOT%%/inc/BRepLProp_CurveTool.hxx -%%OCCROOT%%/inc/BRepLProp_SLProps.hxx -%%OCCROOT%%/inc/BRepLProp_SurfaceTool.hxx -%%OCCROOT%%/inc/BRepLib.hxx -%%OCCROOT%%/inc/BRepLib_Command.hxx -%%OCCROOT%%/inc/BRepLib_EdgeError.hxx -%%OCCROOT%%/inc/BRepLib_FaceError.hxx -%%OCCROOT%%/inc/BRepLib_FindSurface.hxx -%%OCCROOT%%/inc/BRepLib_FuseEdges.hxx -%%OCCROOT%%/inc/BRepLib_MakeEdge.hxx -%%OCCROOT%%/inc/BRepLib_MakeEdge2d.hxx -%%OCCROOT%%/inc/BRepLib_MakeFace.hxx -%%OCCROOT%%/inc/BRepLib_MakePolygon.hxx -%%OCCROOT%%/inc/BRepLib_MakeShape.hxx -%%OCCROOT%%/inc/BRepLib_MakeShell.hxx -%%OCCROOT%%/inc/BRepLib_MakeSolid.hxx -%%OCCROOT%%/inc/BRepLib_MakeVertex.hxx -%%OCCROOT%%/inc/BRepLib_MakeWire.hxx -%%OCCROOT%%/inc/BRepLib_ShapeModification.hxx -%%OCCROOT%%/inc/BRepLib_ShellError.hxx -%%OCCROOT%%/inc/BRepLib_WireError.hxx -%%OCCROOT%%/inc/BRepMAT2d_BisectingLocus.hxx -%%OCCROOT%%/inc/BRepMAT2d_DataMapIteratorOfDataMapOfBasicEltShape.hxx -%%OCCROOT%%/inc/BRepMAT2d_DataMapIteratorOfDataMapOfShapeSequenceOfBasicElt.hxx -%%OCCROOT%%/inc/BRepMAT2d_DataMapNodeOfDataMapOfBasicEltShape.hxx -%%OCCROOT%%/inc/BRepMAT2d_DataMapNodeOfDataMapOfShapeSequenceOfBasicElt.hxx -%%OCCROOT%%/inc/BRepMAT2d_DataMapOfBasicEltShape.hxx -%%OCCROOT%%/inc/BRepMAT2d_DataMapOfShapeSequenceOfBasicElt.hxx -%%OCCROOT%%/inc/BRepMAT2d_Explorer.hxx -%%OCCROOT%%/inc/BRepMAT2d_LinkTopoBilo.hxx -%%OCCROOT%%/inc/BRepMAT2d_SequenceNodeOfSequenceOfBasicElt.hxx -%%OCCROOT%%/inc/BRepMAT2d_SequenceOfBasicElt.hxx -%%OCCROOT%%/inc/BRepMesh.hxx -%%OCCROOT%%/inc/BRepMesh_Array1OfBiPoint.hxx -%%OCCROOT%%/inc/BRepMesh_Array1OfVertexOfDelaun.hxx *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 16:00:33 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3806C715; Sat, 11 Oct 2014 16:00:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 241238E7; Sat, 11 Oct 2014 16:00:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BG0XGV039797; Sat, 11 Oct 2014 16:00:33 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BG0Wb3039795; Sat, 11 Oct 2014 16:00:32 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201410111600.s9BG0Wb3039795@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 11 Oct 2014 16:00:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370650 - head/audio/mpg123 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 16:00:33 -0000 Author: novel Date: Sat Oct 11 16:00:32 2014 New Revision: 370650 URL: https://svnweb.freebsd.org/changeset/ports/370650 QAT: https://qat.redports.org/buildarchive/r370650/ Log: Update to 1.21.0. Modified: head/audio/mpg123/Makefile head/audio/mpg123/distinfo Modified: head/audio/mpg123/Makefile ============================================================================== --- head/audio/mpg123/Makefile Sat Oct 11 15:41:02 2014 (r370649) +++ head/audio/mpg123/Makefile Sat Oct 11 16:00:32 2014 (r370650) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mpg123 -PORTVERSION= 1.20.1 +PORTVERSION= 1.21.0 CATEGORIES= audio ipv6 MASTER_SITES= SF \ http://www.mpg123.de/download/ Modified: head/audio/mpg123/distinfo ============================================================================== --- head/audio/mpg123/distinfo Sat Oct 11 15:41:02 2014 (r370649) +++ head/audio/mpg123/distinfo Sat Oct 11 16:00:32 2014 (r370650) @@ -1,2 +1,2 @@ -SHA256 (mpg123-1.20.1.tar.bz2) = da2941c1905b5776d5468209896502a8d5257966dfadc07f1e4ea105cc515900 -SIZE (mpg123-1.20.1.tar.bz2) = 863792 +SHA256 (mpg123-1.21.0.tar.bz2) = 3ad197f77c9ffdf3601e1c3183ae0709ccb3c3de68309527ce9375fcfb15dcba +SIZE (mpg123-1.21.0.tar.bz2) = 863177 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 16:13:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB91E9A6; Sat, 11 Oct 2014 16:13:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C10E9B3; Sat, 11 Oct 2014 16:13:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BGDACN048298; Sat, 11 Oct 2014 16:13:10 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BGD9T3048295; Sat, 11 Oct 2014 16:13:09 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201410111613.s9BGD9T3048295@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 11 Oct 2014 16:13:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370651 - head/security/libgpg-error X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 16:13:10 -0000 Author: novel Date: Sat Oct 11 16:13:09 2014 New Revision: 370651 URL: https://svnweb.freebsd.org/changeset/ports/370651 QAT: https://qat.redports.org/buildarchive/r370651/ Log: Update to 1.16. Modified: head/security/libgpg-error/Makefile head/security/libgpg-error/distinfo head/security/libgpg-error/pkg-plist Modified: head/security/libgpg-error/Makefile ============================================================================== --- head/security/libgpg-error/Makefile Sat Oct 11 16:00:32 2014 (r370650) +++ head/security/libgpg-error/Makefile Sat Oct 11 16:13:09 2014 (r370651) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libgpg-error -PORTVERSION= 1.15 +PORTVERSION= 1.16 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= ${PORTNAME} Modified: head/security/libgpg-error/distinfo ============================================================================== --- head/security/libgpg-error/distinfo Sat Oct 11 16:00:32 2014 (r370650) +++ head/security/libgpg-error/distinfo Sat Oct 11 16:13:09 2014 (r370651) @@ -1,2 +1,2 @@ -SHA256 (libgpg-error-1.15.tar.bz2) = b6083d027ca338f2a090ac9539983bc847596d36200f6baf3451f2688209797f -SIZE (libgpg-error-1.15.tar.bz2) = 546865 +SHA256 (libgpg-error-1.16.tar.bz2) = c2d437503cc4ab3ea27409874fc9bab9c74c6a066f9f24df7ee784cc7e2abb9b +SIZE (libgpg-error-1.16.tar.bz2) = 546945 Modified: head/security/libgpg-error/pkg-plist ============================================================================== --- head/security/libgpg-error/pkg-plist Sat Oct 11 16:00:32 2014 (r370650) +++ head/security/libgpg-error/pkg-plist Sat Oct 11 16:13:09 2014 (r370651) @@ -3,7 +3,7 @@ bin/gpg-error-config include/gpg-error.h lib/libgpg-error.so lib/libgpg-error.so.0 -lib/libgpg-error.so.0.12.1 +lib/libgpg-error.so.0.12.2 share/aclocal/gpg-error.m4 share/common-lisp/source/gpg-error/gpg-error.asd share/common-lisp/source/gpg-error/gpg-error-package.lisp From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 16:50:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 53C5A5F4; Sat, 11 Oct 2014 16:50:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 406E1C91; Sat, 11 Oct 2014 16:50:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BGoPK3063936; Sat, 11 Oct 2014 16:50:25 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BGoOaS063934; Sat, 11 Oct 2014 16:50:24 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201410111650.s9BGoOaS063934@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Sat, 11 Oct 2014 16:50:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370652 - head/security/aespipe X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 16:50:25 -0000 Author: robak Date: Sat Oct 11 16:50:24 2014 New Revision: 370652 URL: https://svnweb.freebsd.org/changeset/ports/370652 QAT: https://qat.redports.org/buildarchive/r370652/ Log: security/aespipe: update v2.3e -> v2.4c PR: 193992 Submitted by: Ekkehard Gehm Approved by: mentors (implicit) Modified: head/security/aespipe/Makefile head/security/aespipe/distinfo Modified: head/security/aespipe/Makefile ============================================================================== --- head/security/aespipe/Makefile Sat Oct 11 16:13:09 2014 (r370651) +++ head/security/aespipe/Makefile Sat Oct 11 16:50:24 2014 (r370652) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= aespipe -DISTVERSION= v2.3e -PORTREVISION= 1 +DISTVERSION= v2.4c CATEGORIES= security MASTER_SITES= http://loop-aes.sourceforge.net/${PORTNAME}/ \ http://koti.tnnet.fi/jari.ruusu/linux/ Modified: head/security/aespipe/distinfo ============================================================================== --- head/security/aespipe/distinfo Sat Oct 11 16:13:09 2014 (r370651) +++ head/security/aespipe/distinfo Sat Oct 11 16:50:24 2014 (r370652) @@ -1,2 +1,2 @@ -SHA256 (aespipe-v2.3e.tar.bz2) = 4e63a5709fdd0bffdb555582f9fd7a0bd1842e429420159accaf7f60c5d3c70f -SIZE (aespipe-v2.3e.tar.bz2) = 91752 +SHA256 (aespipe-v2.4c.tar.bz2) = 260190beea911190a839e711f610ec3454a9b13985d35479775b7e26ad4c845e +SIZE (aespipe-v2.4c.tar.bz2) = 106608 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 17:28:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E6B1BB1; Sat, 11 Oct 2014 17:28:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3919AFE2; Sat, 11 Oct 2014 17:28:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BHSf4o082302; Sat, 11 Oct 2014 17:28:41 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BHSe2V082297; Sat, 11 Oct 2014 17:28:40 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410111728.s9BHSe2V082297@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 11 Oct 2014 17:28:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370653 - in head/devel: . embb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 17:28:41 -0000 Author: riggs Date: Sat Oct 11 17:28:39 2014 New Revision: 370653 URL: https://svnweb.freebsd.org/changeset/ports/370653 QAT: https://qat.redports.org/buildarchive/r370653/ Log: - Initial import of Embedded Multicore Building Blocks (EMBB) Added: head/devel/embb/ head/devel/embb/Makefile (contents, props changed) head/devel/embb/distinfo (contents, props changed) head/devel/embb/pkg-descr (contents, props changed) head/devel/embb/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Oct 11 16:50:24 2014 (r370652) +++ head/devel/Makefile Sat Oct 11 17:28:39 2014 (r370653) @@ -394,6 +394,7 @@ SUBDIR += elfrc SUBDIR += elfsh SUBDIR += elftoaout + SUBDIR += embb SUBDIR += epl.el SUBDIR += epm SUBDIR += epydoc Added: head/devel/embb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/embb/Makefile Sat Oct 11 17:28:39 2014 (r370653) @@ -0,0 +1,37 @@ +# Created by: Thomas Zander +# $FreeBSD$ + +PORTNAME= embb +PORTVERSION= 0.2.1 +CATEGORIES= devel + +MAINTAINER= riggs@FreeBSD.org +COMMENT= Embedded Multicore Building Blocks + +LICENSE= BSD2CLAUSE BSD3CLAUSE +LICENSE_COMB= multi + +USE_GITHUB= yes +GH_ACCOUNT= riggs- +GH_COMMIT= d40a5c3 +GH_TAGNAME= ${GH_COMMIT} + +USES= cmake:outsource compiler:c11 + +CMAKE_ARGS= -DINSTALL_PREFIX=${PREFIX} \ + -DBUILD_TESTS=OFF + +OPTIONS_DEFINE= DOCS EXAMPLES + +DOCS_CMAKE_OFF= -DINSTALL_DOCS=OFF + +OPTIONS_SUB= yes + +post-patch: + ${RM} ${WRKSRC}/doc/examples/CMakeLists.txt + ${MV} ${WRKSRC}/doc/examples ${WRKSRC} + +post-install: + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}/${EXAMPLESDIR} + +.include Added: head/devel/embb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/embb/distinfo Sat Oct 11 17:28:39 2014 (r370653) @@ -0,0 +1,2 @@ +SHA256 (embb-0.2.1.tar.gz) = ff4b0b82cbb4e9596576117f1c24dcb4e1899e8e486b4422da39bd47c0394a29 +SIZE (embb-0.2.1.tar.gz) = 1447957 Added: head/devel/embb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/embb/pkg-descr Sat Oct 11 17:28:39 2014 (r370653) @@ -0,0 +1,11 @@ +The Embedded Multicore Building Blocks (EMBB) are an easy to use yet +powerful and efficient C/C++ library for the development of parallel +applications. EMBB has been specifically designed for embedded systems and +the typical requirements that accompany them, such as real-time capability +and constraints on memory consumption. As a major advantage, low-level +operations are hidden in the library which relieves software developers +from the burden of thread management and synchronization. This not only +improves productivity of parallel software development, but also results +in increased reliability and performance of the applications. + +WWW: https://github.com/siemens/embb Added: head/devel/embb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/embb/pkg-plist Sat Oct 11 17:28:39 2014 (r370653) @@ -0,0 +1,255 @@ +include/embb/algorithms/algorithms.h +include/embb/algorithms/count.h +include/embb/algorithms/execution_policy.h +include/embb/algorithms/for_each.h +include/embb/algorithms/identity.h +include/embb/algorithms/internal/count-inl.h +include/embb/algorithms/internal/for_each-inl.h +include/embb/algorithms/internal/merge_sort-inl.h +include/embb/algorithms/internal/partition-inl.h +include/embb/algorithms/internal/partition.h +include/embb/algorithms/internal/quick_sort-inl.h +include/embb/algorithms/internal/reduce-inl.h +include/embb/algorithms/internal/scan-inl.h +include/embb/algorithms/invoke.h +include/embb/algorithms/merge_sort.h +include/embb/algorithms/quick_sort.h +include/embb/algorithms/reduce.h +include/embb/algorithms/scan.h +include/embb/algorithms/zip_iterator.h +include/embb/base/atomic.h +include/embb/base/base.h +include/embb/base/c/atomic.h +include/embb/base/c/base.h +include/embb/base/c/condition_variable.h +include/embb/base/c/core_set.h +include/embb/base/c/counter.h +include/embb/base/c/duration.h +include/embb/base/c/errors.h +include/embb/base/c/internal/atomic/and_assign.h +include/embb/base/c/internal/atomic/atomic_sizes.h +include/embb/base/c/internal/atomic/atomic_variables.h +include/embb/base/c/internal/atomic/compare_and_swap.h +include/embb/base/c/internal/atomic/fetch_and_add.h +include/embb/base/c/internal/atomic/generate_atomic_implementation_template.h +include/embb/base/c/internal/atomic/load.h +include/embb/base/c/internal/atomic/memory_barrier.h +include/embb/base/c/internal/atomic/or_assign.h +include/embb/base/c/internal/atomic/store.h +include/embb/base/c/internal/atomic/swap.h +include/embb/base/c/internal/atomic/xor_assign.h +include/embb/base/c/internal/bitset.h +include/embb/base/c/internal/cmake_config.h +include/embb/base/c/internal/config.h +include/embb/base/c/internal/macro_helper.h +include/embb/base/c/internal/platform.h +include/embb/base/c/internal/thread_index.h +include/embb/base/c/internal/unused.h +include/embb/base/c/log.h +include/embb/base/c/memory_allocation.h +include/embb/base/c/mutex.h +include/embb/base/c/thread.h +include/embb/base/c/thread_specific_storage.h +include/embb/base/c/time.h +include/embb/base/condition_variable.h +include/embb/base/core_set.h +include/embb/base/duration.h +include/embb/base/exceptions.h +include/embb/base/function.h +include/embb/base/internal/atomic/atomic_arithmetic.h +include/embb/base/internal/atomic/atomic_base.h +include/embb/base/internal/atomic/atomic_implementation.h +include/embb/base/internal/atomic/atomic_integer.h +include/embb/base/internal/atomic/atomic_pointer.h +include/embb/base/internal/atomic/atomic_utility.h +include/embb/base/internal/cmake_config.h +include/embb/base/internal/condition_variable-inl.h +include/embb/base/internal/config.h +include/embb/base/internal/duration-inl.h +include/embb/base/internal/function0.h +include/embb/base/internal/function1.h +include/embb/base/internal/function2.h +include/embb/base/internal/function3.h +include/embb/base/internal/function4.h +include/embb/base/internal/function5.h +include/embb/base/internal/functionT.h +include/embb/base/internal/memory_allocation-inl.h +include/embb/base/internal/mutex-inl.h +include/embb/base/internal/nil.h +include/embb/base/internal/platform.h +include/embb/base/internal/thread-inl.h +include/embb/base/internal/thread_closures.h +include/embb/base/internal/thread_specific_storage-inl.h +include/embb/base/memory_allocation.h +include/embb/base/mutex.h +include/embb/base/thread.h +include/embb/base/thread_specific_storage.h +include/embb/base/time.h +include/embb/containers/containers.h +include/embb/containers/internal/hazard_pointer-inl.h +include/embb/containers/internal/hazard_pointer.h +include/embb/containers/internal/lock_free_mpmc_queue-inl.h +include/embb/containers/internal/lock_free_stack-inl.h +include/embb/containers/internal/lock_free_tree_value_pool-inl.h +include/embb/containers/internal/object_pool-inl.h +include/embb/containers/internal/wait_free_array_value_pool-inl.h +include/embb/containers/internal/wait_free_spsc_queue-inl.h +include/embb/containers/lock_free_mpmc_queue.h +include/embb/containers/lock_free_stack.h +include/embb/containers/lock_free_tree_value_pool.h +include/embb/containers/object_pool.h +include/embb/containers/wait_free_array_value_pool.h +include/embb/containers/wait_free_spsc_queue.h +include/embb/dataflow/dataflow.h +include/embb/dataflow/internal/action.h +include/embb/dataflow/internal/clock_listener.h +include/embb/dataflow/internal/constant_source.h +include/embb/dataflow/internal/in.h +include/embb/dataflow/internal/inputs.h +include/embb/dataflow/internal/node.h +include/embb/dataflow/internal/out.h +include/embb/dataflow/internal/outputs.h +include/embb/dataflow/internal/process.h +include/embb/dataflow/internal/process_executor.h +include/embb/dataflow/internal/scheduler.h +include/embb/dataflow/internal/scheduler_mtapi.h +include/embb/dataflow/internal/scheduler_sequential.h +include/embb/dataflow/internal/select.h +include/embb/dataflow/internal/signal.h +include/embb/dataflow/internal/sink.h +include/embb/dataflow/internal/sink_executor.h +include/embb/dataflow/internal/source.h +include/embb/dataflow/internal/source_executor.h +include/embb/dataflow/internal/spinlock.h +include/embb/dataflow/internal/switch.h +include/embb/dataflow/internal/tuple.h +include/embb/dataflow/internal/typelist.h +include/embb/dataflow/network.h +include/embb/mtapi/action.h +include/embb/mtapi/affinity.h +include/embb/mtapi/c/mtapi.h +include/embb/mtapi/continuation.h +include/embb/mtapi/group.h +include/embb/mtapi/mtapi.h +include/embb/mtapi/node.h +include/embb/mtapi/queue.h +include/embb/mtapi/task.h +include/embb/mtapi/taskcontext.h +include/mtapi.h +lib/libembb_algorithms_cpp.a +lib/libembb_base_c.a +lib/libembb_base_cpp.a +lib/libembb_containers_cpp.a +lib/libembb_dataflow_cpp.a +lib/libembb_mtapi_c.a +lib/libembb_mtapi_cpp.a +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/count-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/count_if-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/counting-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/counting/setup-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/doubling-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/doubling_zip-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/for_each-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/for_each/setup_zip-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/invocation-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/invoke-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/packages-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/parallel_quick_sort-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/invoke/quick_sort-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/dot_product-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/parallel-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/range_init-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/reduce-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/second_range_init-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/reduce/sequential-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/prefix_sum-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/scan-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/sequential_prefix_sum-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/scan/setup-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/merge_sort_preallocated-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/quick_sort-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/quick_sort_custom_compare-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/range_define-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/algorithms/sorting/sorting-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/object_pool_2-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/queues-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/queues-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/stack-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/containers/stack-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_add-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_comparator-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_connect-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_consumer-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_add_sources-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_replace-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_sink-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_declare_source-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_include-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_linear-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_network-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_nonlinear-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_producer-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_replace_function-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_run-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_sink_function-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/dataflow/dataflow_source_function-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/insert_snippets.py +%%EXAMPLES%%%%EXAMPLESDIR%%/main.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_action_signature-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_calc_direct-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_calc_task-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_domain_node_id-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_finalize-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_initialize-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_register_action-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_start_task-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_validate_arguments-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_validate_result_buffer-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_c_wait_task-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_check_status-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp-fragmented.cc +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_action_signature-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_calc_direct-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_calc_task-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_get_node-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_start_task-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_cpp_wait_task-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_terminating_condition-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/mtapi/mtapi_write_back-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/function-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/function_define-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/functor-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/functor_define-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/lambda-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/manual-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/setup-snippet.h +%%EXAMPLES%%%%EXAMPLESDIR%%/stl_for_each/stl_for_each-fragmented.cc +%%DOCS%%%%DOCSDIR%%/images/embb.jpg +%%DOCS%%%%DOCSDIR%%/images/embb.pdf +%%DOCS%%%%DOCSDIR%%/images/embb.png +%%DOCS%%%%DOCSDIR%%/images/embb.pptx +%%DOCS%%%%DOCSDIR%%/reference/Doxyfile.in +%%DOCS%%%%DOCSDIR%%/reference/DoxygenHTMLStyle.css +%%DOCS%%%%DOCSDIR%%/reference/DoxygenLayout.xml +%%DOCS%%%%DOCSDIR%%/reference/embb.dox +%%DOCS%%%%DOCSDIR%%/reference/header.html +%%DOCS%%%%DOCSDIR%%/reference/index.html +%%DOCS%%%%DOCSDIR%%/tutorial/content/algorithms.tex +%%DOCS%%%%DOCSDIR%%/tutorial/content/containers.tex +%%DOCS%%%%DOCSDIR%%/tutorial/content/dataflow.tex +%%DOCS%%%%DOCSDIR%%/tutorial/content/introduction.tex +%%DOCS%%%%DOCSDIR%%/tutorial/content/mtapi.tex +%%DOCS%%%%DOCSDIR%%/tutorial/content/preface.tex +%%DOCS%%%%DOCSDIR%%/tutorial/customize.tex +%%DOCS%%%%DOCSDIR%%/tutorial/pics/chicago-square.jpg +%%DOCS%%%%DOCSDIR%%/tutorial/pics/cover/logo_multicore_expert-center_siemens.png +%%DOCS%%%%DOCSDIR%%/tutorial/pics/cover/sie_logo_layer_petrol_rgb.png +%%DOCS%%%%DOCSDIR%%/tutorial/references.bib +%%DOCS%%%%DOCSDIR%%/tutorial/sty/README.txt +%%DOCS%%%%DOCSDIR%%/tutorial/sty/siemens_core.sty +%%DOCS%%%%DOCSDIR%%/tutorial/sty/siemens_double.sty +%%DOCS%%%%DOCSDIR%%/tutorial/sty/siemens_single.sty +%%DOCS%%%%DOCSDIR%%/tutorial/tutorial.tex From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 17:39:58 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F1BB7EA0; Sat, 11 Oct 2014 17:39:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDA9A159; Sat, 11 Oct 2014 17:39:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BHdv51087181; Sat, 11 Oct 2014 17:39:57 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BHdvdd087178; Sat, 11 Oct 2014 17:39:57 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410111739.s9BHdvdd087178@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 11 Oct 2014 17:39:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370654 - head/www/p5-RT-Authen-ExternalAuth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 17:39:58 -0000 Author: matthew Date: Sat Oct 11 17:39:56 2014 New Revision: 370654 URL: https://svnweb.freebsd.org/changeset/ports/370654 QAT: https://qat.redports.org/buildarchive/r370654/ Log: Update to 0.24 - Drop support for www/rt38 - Remove all the @dirrm* stuff from pkg-plist. ChangeLog: http://cpansearch.perl.org/src/ALEXMV/RT-Authen-ExternalAuth-0.24/CHANGES Modified: head/www/p5-RT-Authen-ExternalAuth/Makefile head/www/p5-RT-Authen-ExternalAuth/distinfo head/www/p5-RT-Authen-ExternalAuth/pkg-plist Modified: head/www/p5-RT-Authen-ExternalAuth/Makefile ============================================================================== --- head/www/p5-RT-Authen-ExternalAuth/Makefile Sat Oct 11 17:28:39 2014 (r370653) +++ head/www/p5-RT-Authen-ExternalAuth/Makefile Sat Oct 11 17:39:56 2014 (r370654) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= RT-Authen-ExternalAuth -DISTVERSION= 0.23 +DISTVERSION= 0.24 CATEGORIES= www net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -23,15 +23,14 @@ USES+= perl5 USE_PERL5= configure OPTIONS_SINGLE= RTVERSION -OPTIONS_SINGLE_RTVERSION= RT38 RT40 RT42 -RT38_DESC= Install for rt-3.8.x (www/rt38) +OPTIONS_SINGLE_RTVERSION= RT40 RT42 RT40_DESC= Install for rt-4.0.x (www/rt40) RT42_DESC= Install for rt-4.2.x (www/rt42) OPTIONS_DEFAULT= RT42 .include -.for opt in 38 40 42 +.for opt in 40 42 .if ${PORT_OPTIONS:MRT${opt}} RT_VER= ${opt} .endif @@ -48,7 +47,7 @@ MAN3PREFIX= ${PREFIX} PLIST_SUB+= RTHOME=share/rt${RT_VER} # Note: You can install using an arbitrary $PREFIX but only if it -# matches the $PREFIX used to install www/rt{38,40,42}. Hence ignore +# matches the $PREFIX used to install www/rt{40,42}. Hence ignore # $PREFIX in the environment and inherit settings from RT.pm do-configure: Modified: head/www/p5-RT-Authen-ExternalAuth/distinfo ============================================================================== --- head/www/p5-RT-Authen-ExternalAuth/distinfo Sat Oct 11 17:28:39 2014 (r370653) +++ head/www/p5-RT-Authen-ExternalAuth/distinfo Sat Oct 11 17:39:56 2014 (r370654) @@ -1,2 +1,2 @@ -SHA256 (RT-Authen-ExternalAuth-0.23.tar.gz) = 5851b6be7b54b78bc49674e824ac2eb8851f32e3229b60fd9cdf6f4e762f9cbb -SIZE (RT-Authen-ExternalAuth-0.23.tar.gz) = 79743 +SHA256 (RT-Authen-ExternalAuth-0.24.tar.gz) = e18d5bf79d7893ebac0200ee01783e8661037408050f240498461d8b0441fe59 +SIZE (RT-Authen-ExternalAuth-0.24.tar.gz) = 79552 Modified: head/www/p5-RT-Authen-ExternalAuth/pkg-plist ============================================================================== --- head/www/p5-RT-Authen-ExternalAuth/pkg-plist Sat Oct 11 17:28:39 2014 (r370653) +++ head/www/p5-RT-Authen-ExternalAuth/pkg-plist Sat Oct 11 17:39:56 2014 (r370654) @@ -11,20 +11,3 @@ man/man3/RT::Authen::ExternalAuth::DBI.3 man/man3/RT::Authen::ExternalAuth::DBI::Cookie.3.gz man/man3/RT::Authen::ExternalAuth::LDAP.3.gz man/auto/RT/Authen/ExternalAuth/.packlist.gz -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/lib/RT/Authen/ExternalAuth/DBI -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/lib/RT/Authen/ExternalAuth -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/lib/RT/Authen -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/lib/RT -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/lib -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html/Elements -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html/Callbacks/ExternalAuth/autohandler -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html/Callbacks/ExternalAuth/Elements/Header -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html/Callbacks/ExternalAuth/Elements -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html/Callbacks/ExternalAuth -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html/Callbacks -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth/html -@dirrm %%RTHOME%%/plugins/RT-Authen-ExternalAuth -@dirrm man/auto/RT/Authen/ExternalAuth -@dirrmtry man/auto/RT/Authen -@dirrmtry man/auto/RT -@dirrmtry man/auto From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 17:57:12 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 170E3609; Sat, 11 Oct 2014 17:57:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 03C1F32F; Sat, 11 Oct 2014 17:57:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BHvBiZ096367; Sat, 11 Oct 2014 17:57:11 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BHvBuX096366; Sat, 11 Oct 2014 17:57:11 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201410111757.s9BHvBuX096366@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Sat, 11 Oct 2014 17:57:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370655 - head/security/cyrus-sasl2-gssapi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 17:57:12 -0000 Author: ume Date: Sat Oct 11 17:57:11 2014 New Revision: 370655 URL: https://svnweb.freebsd.org/changeset/ports/370655 QAT: https://qat.redports.org/buildarchive/r370655/ Log: Use Uses/gssapi.mk. Submitted by: hrs Modified: head/security/cyrus-sasl2-gssapi/Makefile Modified: head/security/cyrus-sasl2-gssapi/Makefile ============================================================================== --- head/security/cyrus-sasl2-gssapi/Makefile Sat Oct 11 17:39:56 2014 (r370654) +++ head/security/cyrus-sasl2-gssapi/Makefile Sat Oct 11 17:57:11 2014 (r370655) @@ -50,30 +50,22 @@ OPTIONS_SINGLE= KERBEROS OPTIONS_SINGLE_KERBEROS=BASE HEIMDAL MIT OPTIONS_DEFAULT= BASE BASE_DESC= Use Heimdal in base +BASE_USES= gssapi BASE_CONFIGURE_ENABLE= gssapi HEIMDAL_DESC= Use Heimdal from ports -HEIMDAL_CONFIGURE_ON= --enable-gssapi=${HEIMDAL_HOME} \ +HEIMDAL_USES= gssapi:heimdal +HEIMDAL_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ --with-gss_impl=heimdal -HEIMDAL_BUILD_DEPENDS= ${HEIMDAL_HOME}/lib/libgssapi.so:${PORTSDIR}/security/heimdal -HEIMDAL_RUN_DEPENDS= ${HEIMDAL_BUILD_DEPENDS} -HEIMDAL_LDFLAGS= "-Wl,-rpath,${HEIMDAL_HOME}/lib" MIT_DESC= Use MIT Kerberos V5 -MIT_CONFIGURE_ON= --enable-gssapi=${KRB5_HOME} --with-gss_impl=mit -MIT_LIB_DEPENDS= libkrb5support.so:${PORTSDIR}/security/krb5 -MIT_LDFLAGS= "-Wl,-rpath,${KRB5_HOME}/lib" +MIT_USES= gssapi:mit +MIT_CONFIGURE_ON= --enable-gssapi="${GSSAPIBASEDIR}" \ + --with-gss_impl=mit PLIST_FILES= lib/sasl2/libgssapiv2.a \ lib/sasl2/libgssapiv2.so \ lib/sasl2/libgssapiv2.so.3 \ lib/sasl2/libgssapiv2.so.3.0.0 -.if !defined(HEIMDAL_HOME) -HEIMDAL_HOME= ${PREFIX} -.endif -.if !defined(KRB5_HOME) -KRB5_HOME= ${PREFIX} -.endif - .include .if ${PORT_OPTIONS:MHEIMDAL} From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 18:09:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02162C9B; Sat, 11 Oct 2014 18:09:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E26D1636; Sat, 11 Oct 2014 18:09:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BI9a73001805; Sat, 11 Oct 2014 18:09:36 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BI9a1e001804; Sat, 11 Oct 2014 18:09:36 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201410111809.s9BI9a1e001804@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 11 Oct 2014 18:09:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370656 - head/databases/phpmyadmin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 18:09:37 -0000 Author: matthew Date: Sat Oct 11 18:09:35 2014 New Revision: 370656 URL: https://svnweb.freebsd.org/changeset/ports/370656 QAT: https://qat.redports.org/buildarchive/r370656/ Log: Update to 4.2.10 This is a routine bugfix release ChangeLog: http://sourceforge.net/projects/phpmyadmin/files/phpMyAdmin/4.2.10/phpMyAdmin-4.2.10-notes.html/view Modified: head/databases/phpmyadmin/Makefile head/databases/phpmyadmin/distinfo Modified: head/databases/phpmyadmin/Makefile ============================================================================== --- head/databases/phpmyadmin/Makefile Sat Oct 11 17:57:11 2014 (r370655) +++ head/databases/phpmyadmin/Makefile Sat Oct 11 18:09:35 2014 (r370656) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= phpMyAdmin -DISTVERSION= 4.2.9.1 +DISTVERSION= 4.2.10 CATEGORIES= databases www MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME}/${DISTVERSION} DISTNAME= ${PORTNAME}-${DISTVERSION}-all-languages Modified: head/databases/phpmyadmin/distinfo ============================================================================== --- head/databases/phpmyadmin/distinfo Sat Oct 11 17:57:11 2014 (r370655) +++ head/databases/phpmyadmin/distinfo Sat Oct 11 18:09:35 2014 (r370656) @@ -1,2 +1,2 @@ -SHA256 (phpMyAdmin-4.2.9.1-all-languages.tar.xz) = 755915d7ad118b93a327dc6c1baeb312c69139a73fb0c3d7809a7ab213b36cfa -SIZE (phpMyAdmin-4.2.9.1-all-languages.tar.xz) = 5217840 +SHA256 (phpMyAdmin-4.2.10-all-languages.tar.xz) = e439c0f35561634d8946020f4355e4449a10e6899331967bffe4b3d2b5262f7d +SIZE (phpMyAdmin-4.2.10-all-languages.tar.xz) = 5139012 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 18:27:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27499F9A; Sat, 11 Oct 2014 18:27:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13F2283A; Sat, 11 Oct 2014 18:27:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BIR62h010887; Sat, 11 Oct 2014 18:27:06 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BIR6VI010885; Sat, 11 Oct 2014 18:27:06 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201410111827.s9BIR6VI010885@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sat, 11 Oct 2014 18:27:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370657 - head/audio/easytag X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 18:27:07 -0000 Author: novel Date: Sat Oct 11 18:27:06 2014 New Revision: 370657 URL: https://svnweb.freebsd.org/changeset/ports/370657 QAT: https://qat.redports.org/buildarchive/r370657/ Log: Update to 2.2.4. Modified: head/audio/easytag/Makefile head/audio/easytag/distinfo Modified: head/audio/easytag/Makefile ============================================================================== --- head/audio/easytag/Makefile Sat Oct 11 18:09:35 2014 (r370656) +++ head/audio/easytag/Makefile Sat Oct 11 18:27:06 2014 (r370657) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= easytag -PORTVERSION= 2.2.3 +PORTVERSION= 2.2.4 CATEGORIES= audio MASTER_SITES= GNOME @@ -67,4 +67,8 @@ post-install: @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor +pre-configure: + @${REINPLACE_CMD} -e 's,^DATADIRNAME = @DATADIRNAME@,DATADIRNAME = share,' \ + ${WRKSRC}/po/Makefile.in.in + .include Modified: head/audio/easytag/distinfo ============================================================================== --- head/audio/easytag/distinfo Sat Oct 11 18:09:35 2014 (r370656) +++ head/audio/easytag/distinfo Sat Oct 11 18:27:06 2014 (r370657) @@ -1,2 +1,2 @@ -SHA256 (easytag-2.2.3.tar.xz) = f49cadc868a67faeb99bdbedc21a3009783609b380d098412c4799ec48aeaeb3 -SIZE (easytag-2.2.3.tar.xz) = 987288 +SHA256 (easytag-2.2.4.tar.xz) = 458329ab17e07fac5e92a2d732f0f4e9b12ea8aa31707506b39d3b2428d0c091 +SIZE (easytag-2.2.4.tar.xz) = 989660 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 18:30:25 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09E5B129; Sat, 11 Oct 2014 18:30:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EAAF4855; Sat, 11 Oct 2014 18:30:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BIUOpn011919; Sat, 11 Oct 2014 18:30:24 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BIUOcx011918; Sat, 11 Oct 2014 18:30:24 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201410111830.s9BIUOcx011918@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 11 Oct 2014 18:30:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370658 - head/multimedia/qt5-multimedia X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 18:30:25 -0000 Author: rakuco Date: Sat Oct 11 18:30:24 2014 New Revision: 370658 URL: https://svnweb.freebsd.org/changeset/ports/370658 QAT: https://qat.redports.org/buildarchive/r370658/ Log: Properly use USES=openal instead of OPENAL_USE. The latter was removed from the tree in r337472, before we even added qt5-multimedia to it. Modified: head/multimedia/qt5-multimedia/Makefile Modified: head/multimedia/qt5-multimedia/Makefile ============================================================================== --- head/multimedia/qt5-multimedia/Makefile Sat Oct 11 18:27:06 2014 (r370657) +++ head/multimedia/qt5-multimedia/Makefile Sat Oct 11 18:30:24 2014 (r370658) @@ -2,7 +2,7 @@ PORTNAME= multimedia DISTVERSION= ${QT5_VERSION} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia PKGNAMEPREFIX= qt5- @@ -28,7 +28,7 @@ ALSA_LIB_DEPENDS= libasound.so:${PORTSDI GSTREAMER_BUILD_DEPENDS=${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat GSTREAMER_USE= GSTREAMER=yes,bad -OPENAL_USE= OPENAL=yes +OPENAL_USES= openal PULSEAUDIO_LIB_DEPENDS= libpulse.so:${PORTSDIR}/audio/pulseaudio From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 18:46:37 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ED3ABA55; Sat, 11 Oct 2014 18:46:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9E6B9FE; Sat, 11 Oct 2014 18:46:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BIkbTR020495; Sat, 11 Oct 2014 18:46:37 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BIkbnG020493; Sat, 11 Oct 2014 18:46:37 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201410111846.s9BIkbnG020493@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Sat, 11 Oct 2014 18:46:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370659 - head/security/pcsc-tools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 18:46:38 -0000 Author: arved Date: Sat Oct 11 18:46:36 2014 New Revision: 370659 URL: https://svnweb.freebsd.org/changeset/ports/370659 QAT: https://qat.redports.org/buildarchive/r370659/ Log: Update to 1.4.23 Modified: head/security/pcsc-tools/Makefile head/security/pcsc-tools/distinfo Modified: head/security/pcsc-tools/Makefile ============================================================================== --- head/security/pcsc-tools/Makefile Sat Oct 11 18:30:24 2014 (r370658) +++ head/security/pcsc-tools/Makefile Sat Oct 11 18:46:36 2014 (r370659) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcsc-tools -PORTVERSION= 1.4.22 +PORTVERSION= 1.4.23 CATEGORIES= security MASTER_SITES= http://ludovic.rousseau.free.fr/softwares/pcsc-tools/ Modified: head/security/pcsc-tools/distinfo ============================================================================== --- head/security/pcsc-tools/distinfo Sat Oct 11 18:30:24 2014 (r370658) +++ head/security/pcsc-tools/distinfo Sat Oct 11 18:46:36 2014 (r370659) @@ -1,2 +1,2 @@ -SHA256 (pcsc-tools-1.4.22.tar.gz) = 615592dd56627bd0ff3650608bb7eefe3e9f43cc18ca2d805ebf0bf74d30f307 -SIZE (pcsc-tools-1.4.22.tar.gz) = 109458 +SHA256 (pcsc-tools-1.4.23.tar.gz) = 69ca7bb6ee23ef99e2696451f2f56072dd74adcc43272d89fd757ac8f7de4fe2 +SIZE (pcsc-tools-1.4.23.tar.gz) = 114495 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 18:46:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3CF6B33; Sat, 11 Oct 2014 18:46:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BFC5EA00; Sat, 11 Oct 2014 18:46:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BIkhBc020678; Sat, 11 Oct 2014 18:46:43 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BIkggM020672; Sat, 11 Oct 2014 18:46:42 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201410111846.s9BIkggM020672@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sat, 11 Oct 2014 18:46:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370660 - in head/math: . nlopt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 18:46:43 -0000 Author: riggs Date: Sat Oct 11 18:46:41 2014 New Revision: 370660 URL: https://svnweb.freebsd.org/changeset/ports/370660 QAT: https://qat.redports.org/buildarchive/r370660/ Log: - Initial import of math/nlopt PR: 193262 Submitted by: rhurlin@gwdg.de (maintainer) Reviewed by: koobs, riggs Added: head/math/nlopt/ head/math/nlopt/Makefile (contents, props changed) head/math/nlopt/distinfo (contents, props changed) head/math/nlopt/pkg-descr (contents, props changed) head/math/nlopt/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Oct 11 18:46:36 2014 (r370659) +++ head/math/Makefile Sat Oct 11 18:46:41 2014 (r370660) @@ -260,6 +260,7 @@ SUBDIR += ndiff SUBDIR += newmat SUBDIR += ngraph + SUBDIR += nlopt SUBDIR += ntl SUBDIR += numdiff SUBDIR += nyh-hoc Added: head/math/nlopt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/nlopt/Makefile Sat Oct 11 18:46:41 2014 (r370660) @@ -0,0 +1,34 @@ +# Created by: Rainer Hurling +# $FreeBSD$ + +PORTNAME= nlopt +PORTVERSION= 2.4.2 +CATEGORIES= math +MASTER_SITES= http://ab-initio.mit.edu/nlopt/ + +MAINTAINER= rhurlin@gwdg.de +COMMENT= Nonlinear optimization library + +LICENSE= LGPL21 MIT +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp \ + libguile.so:${PORTSDIR}/lang/guile +BUILD_DEPENDS= swig2.0:${PORTSDIR}/devel/swig20 \ + ${PYTHON_PKGNAMEPREFIX}numpy>=1.8.1:${PORTSDIR}/math/py-numpy +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.8.1:${PORTSDIR}/math/py-numpy + +CONFIGURE_ARGS= --enable-shared +CONFIGURE_ENV= SWIG="${LOCALBASE}/bin/swig2.0" + +USES= autoreconf compiler:features libtool pathfix \ + pkgconfig python:2 +USE_AUTOTOOLS= libtoolize +USE_LDCONFIG= yes + +PATHFIX_MAKEFILEIN= Makefile.am + +INSTALL_TARGET= install-strip + +.include Added: head/math/nlopt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/nlopt/distinfo Sat Oct 11 18:46:41 2014 (r370660) @@ -0,0 +1,2 @@ +SHA256 (nlopt-2.4.2.tar.gz) = 8099633de9d71cbc06cd435da993eb424bbcdbded8f803cdaa9fb8c6e09c8e89 +SIZE (nlopt-2.4.2.tar.gz) = 2361992 Added: head/math/nlopt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/nlopt/pkg-descr Sat Oct 11 18:46:41 2014 (r370660) @@ -0,0 +1,18 @@ +NLopt is a free/open-source library for nonlinear optimization, +providing a common interface for a number of different free optimization +outines available online as well as original implementations of various +other algorithms. Its features include: + + - Callable from C, C++, Fortran, Matlab or GNU Octave, Python, + GNU Guile, Julia, GNU R, Lua, and OCaml. + - A common interface for many different algorithms -- try a different + algorithm just by changing one parameter. + - Support for large-scale optimization (some algorithms scalable to + millions of parameters and thousands of constraints). + - Both global and local optimization algorithms. + - Algorithms using function values only (derivative-free) and also + algorithms exploiting user-supplied gradients. + - Algorithms for unconstrained optimization, bound-constrained + optimization, and general nonlinear inequality/equality constraints. + +WWW: http://ab-initio.mit.edu/wiki/index.php/NLopt Added: head/math/nlopt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/nlopt/pkg-plist Sat Oct 11 18:46:41 2014 (r370660) @@ -0,0 +1,21 @@ +include/nlopt.f +include/nlopt.h +include/nlopt.hpp +lib/libnlopt.a +lib/libnlopt.so +lib/libnlopt.so.0 +lib/libnlopt.so.0.8.2 +lib/libnlopt_guile.a +lib/libnlopt_guile.so +lib/libnlopt_guile.so.0 +lib/libnlopt_guile.so.0.8.2 +libdata/pkgconfig/nlopt.pc +%%PYTHON_SITELIBDIR%%/_nlopt.a +%%PYTHON_SITELIBDIR%%/_nlopt.so +%%PYTHON_SITELIBDIR%%/_nlopt.so.0 +%%PYTHON_SITELIBDIR%%/_nlopt.so.0.8.2 +%%PYTHON_SITELIBDIR%%/nlopt.py +%%PYTHON_SITELIBDIR%%/nlopt.pyc +%%PYTHON_SITELIBDIR%%/nlopt.pyo +man/man3/nlopt.3.gz +share/guile/site/nlopt.scm From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 19:06:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 113BC3DE; Sat, 11 Oct 2014 19:06:45 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D7DC5BDC; Sat, 11 Oct 2014 19:06:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BJ6iBL030298; Sat, 11 Oct 2014 19:06:44 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BJ6icp030294; Sat, 11 Oct 2014 19:06:44 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201410111906.s9BJ6icp030294@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Sat, 11 Oct 2014 19:06:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370661 - in head/devel/pcsc-lite: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 19:06:45 -0000 Author: arved Date: Sat Oct 11 19:06:43 2014 New Revision: 370661 URL: https://svnweb.freebsd.org/changeset/ports/370661 QAT: https://qat.redports.org/buildarchive/r370661/ Log: Update to 1.8.12 Update pkg-message Modified: head/devel/pcsc-lite/Makefile head/devel/pcsc-lite/distinfo head/devel/pcsc-lite/files/pkg-message.in Modified: head/devel/pcsc-lite/Makefile ============================================================================== --- head/devel/pcsc-lite/Makefile Sat Oct 11 18:46:41 2014 (r370660) +++ head/devel/pcsc-lite/Makefile Sat Oct 11 19:06:43 2014 (r370661) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= pcsc-lite -PORTVERSION= 1.8.11 -PORTREVISION= 2 +PORTVERSION= 1.8.12 PORTEPOCH= 2 CATEGORIES= devel security -MASTER_SITES= https://alioth.debian.org/frs/download.php/file/3991/ +MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4115/ MAINTAINER= arved@FreeBSD.org COMMENT= Smartcard development library Modified: head/devel/pcsc-lite/distinfo ============================================================================== --- head/devel/pcsc-lite/distinfo Sat Oct 11 18:46:41 2014 (r370660) +++ head/devel/pcsc-lite/distinfo Sat Oct 11 19:06:43 2014 (r370661) @@ -1,2 +1,2 @@ -SHA256 (pcsc-lite-1.8.11.tar.bz2) = 945041c94c53959ae5a767616a4ec5099fe67f549bfd344e8bd0cfe7a3c71ac6 -SIZE (pcsc-lite-1.8.11.tar.bz2) = 571837 +SHA256 (pcsc-lite-1.8.12.tar.bz2) = f2c30a2aba6805f2859ede5f2eca351ca6c495a18d5d36d74c63e7898b353c51 +SIZE (pcsc-lite-1.8.12.tar.bz2) = 580449 Modified: head/devel/pcsc-lite/files/pkg-message.in ============================================================================== --- head/devel/pcsc-lite/files/pkg-message.in Sat Oct 11 18:46:41 2014 (r370660) +++ head/devel/pcsc-lite/files/pkg-message.in Sat Oct 11 19:06:43 2014 (r370661) @@ -1,8 +1,7 @@ ------------------------------------------------------------------------ PC/SC-Lite has been installed. -You can fetch drivers from http://www.linuxnet.com/sourcedrivers.html -or install one of the following ports: +You need to install a driver for your smartcard reader e.g. devel/libccid security/ifd-slb_rf60 @@ -15,11 +14,11 @@ hotplugging. attach 100 { device-name "ugen[0-9]+"; - action "/usr/local/sbin/pcscd -H"; + action "%%PREFIX%%/sbin/pcscd -H"; }; detach 100 { device-name "ugen[0-9]+"; - action "/usr/local/sbin/pcscd -H"; + action "%%PREFIX%%/sbin/pcscd -H"; }; ------------------------------------------------------------------------ From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 19:07:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96EEC4C4; Sat, 11 Oct 2014 19:07:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 83A67BE9; Sat, 11 Oct 2014 19:07:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BJ7idS030530; Sat, 11 Oct 2014 19:07:44 GMT (envelope-from arved@FreeBSD.org) Received: (from arved@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BJ7ihB030523; Sat, 11 Oct 2014 19:07:44 GMT (envelope-from arved@FreeBSD.org) Message-Id: <201410111907.s9BJ7ihB030523@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: arved set sender to arved@FreeBSD.org using -f From: Tilman Keskinoz Date: Sat, 11 Oct 2014 19:07:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370662 - head/devel/libccid X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 19:07:44 -0000 Author: arved Date: Sat Oct 11 19:07:43 2014 New Revision: 370662 URL: https://svnweb.freebsd.org/changeset/ports/370662 QAT: https://qat.redports.org/buildarchive/r370662/ Log: Update to 1.4.18 Modified: head/devel/libccid/Makefile head/devel/libccid/distinfo Modified: head/devel/libccid/Makefile ============================================================================== --- head/devel/libccid/Makefile Sat Oct 11 19:06:43 2014 (r370661) +++ head/devel/libccid/Makefile Sat Oct 11 19:07:43 2014 (r370662) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= ccid -PORTVERSION= 1.4.17 +PORTVERSION= 1.4.18 CATEGORIES= devel -MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4091/ +MASTER_SITES= https://alioth.debian.org/frs/download.php/file/4111/ MAINTAINER= arved@FreeBSD.org COMMENT= Generic USB CCID (Chip/Smart Card Interface Devices) driver @@ -27,10 +27,6 @@ PLIST_SUB= VER=${PORTVERSION} .include -.if ${OSVERSION} < 801000 -IGNORE= needs a complete libusb-1 implementation -.endif - .if ${OSVERSION} < 1000000 FETCH_DEPENDS= wget:${PORTSDIR}/ftp/wget DISABLE_SIZE= yes Modified: head/devel/libccid/distinfo ============================================================================== --- head/devel/libccid/distinfo Sat Oct 11 19:06:43 2014 (r370661) +++ head/devel/libccid/distinfo Sat Oct 11 19:07:43 2014 (r370662) @@ -1,2 +1,2 @@ -SHA256 (ccid-1.4.17.tar.bz2) = ccdab8a9bc1ad288242d5f9ef399405e9cb96fb09caadb43e3649cbaba84c451 -SIZE (ccid-1.4.17.tar.bz2) = 491972 +SHA256 (ccid-1.4.18.tar.bz2) = 5fdba97a2d2eb1c652b7dd4aa0bb8cee4814bab0cf61aecb84b32b57272541aa +SIZE (ccid-1.4.18.tar.bz2) = 492113 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 19:36:50 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A11C0DE9; Sat, 11 Oct 2014 19:36:50 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 724E4E90; Sat, 11 Oct 2014 19:36:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BJaoOF045164; Sat, 11 Oct 2014 19:36:50 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BJanY6045161; Sat, 11 Oct 2014 19:36:49 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201410111936.s9BJanY6045161@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Sat, 11 Oct 2014 19:36:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370663 - head/security/libsodium X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 19:36:50 -0000 Author: vsevolod Date: Sat Oct 11 19:36:49 2014 New Revision: 370663 URL: https://svnweb.freebsd.org/changeset/ports/370663 QAT: https://qat.redports.org/buildarchive/r370663/ Log: - Update to 1.0.0 Reported by: urras via private email Modified: head/security/libsodium/Makefile head/security/libsodium/distinfo head/security/libsodium/pkg-plist Modified: head/security/libsodium/Makefile ============================================================================== --- head/security/libsodium/Makefile Sat Oct 11 19:07:43 2014 (r370662) +++ head/security/libsodium/Makefile Sat Oct 11 19:36:49 2014 (r370663) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= libsodium -PORTVERSION= 0.7.1 +PORTVERSION= 1.0.0 CATEGORIES= security MASTER_SITES= http://download.dnscrypt.org/libsodium/releases/ Modified: head/security/libsodium/distinfo ============================================================================== --- head/security/libsodium/distinfo Sat Oct 11 19:07:43 2014 (r370662) +++ head/security/libsodium/distinfo Sat Oct 11 19:36:49 2014 (r370663) @@ -1,2 +1,2 @@ -SHA256 (libsodium-0.7.1.tar.gz) = ef46bbb5bac263ef6d3fc00ccc11d4690aea83643412919fe15369b9870280a7 -SIZE (libsodium-0.7.1.tar.gz) = 1537538 +SHA256 (libsodium-1.0.0.tar.gz) = ced1fe3d2066953fea94f307a92f8ae41bf0643739a44309cbe43aa881dbc9a5 +SIZE (libsodium-1.0.0.tar.gz) = 1538797 Modified: head/security/libsodium/pkg-plist ============================================================================== --- head/security/libsodium/pkg-plist Sat Oct 11 19:07:43 2014 (r370662) +++ head/security/libsodium/pkg-plist Sat Oct 11 19:36:49 2014 (r370663) @@ -51,13 +51,13 @@ include/sodium/randombytes_sysrandom.h include/sodium/runtime.h include/sodium/utils.h include/sodium/version.h -@dirrm include/sodium +@dir include/sodium lib/libsodium.a lib/libsodium.so lib/libsodium.so.13 -lib/libsodium.so.13.0.1 +lib/libsodium.so.13.0.2 libdata/pkgconfig/libsodium.pc %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/README.markdown %%PORTDOCS%%%%DOCSDIR%%/THANKS -%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dir %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 19:38:00 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 077A22CC; Sat, 11 Oct 2014 19:38:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E7C32EB5; Sat, 11 Oct 2014 19:37:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BJbxHc045513; Sat, 11 Oct 2014 19:37:59 GMT (envelope-from trociny@FreeBSD.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BJbxIX045509; Sat, 11 Oct 2014 19:37:59 GMT (envelope-from trociny@FreeBSD.org) Message-Id: <201410111937.s9BJbxIX045509@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: trociny set sender to trociny@FreeBSD.org using -f From: Mikolaj Golub Date: Sat, 11 Oct 2014 19:37:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370664 - head/devel/mk-configure X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 19:38:00 -0000 Author: trociny Date: Sat Oct 11 19:37:58 2014 New Revision: 370664 URL: https://svnweb.freebsd.org/changeset/ports/370664 QAT: https://qat.redports.org/buildarchive/r370664/ Log: Update to 0.28.0. Modified: head/devel/mk-configure/Makefile head/devel/mk-configure/distinfo head/devel/mk-configure/pkg-plist Modified: head/devel/mk-configure/Makefile ============================================================================== --- head/devel/mk-configure/Makefile Sat Oct 11 19:36:49 2014 (r370663) +++ head/devel/mk-configure/Makefile Sat Oct 11 19:37:58 2014 (r370664) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mk-configure -PORTVERSION= 0.27.0 +PORTVERSION= 0.28.0 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} Modified: head/devel/mk-configure/distinfo ============================================================================== --- head/devel/mk-configure/distinfo Sat Oct 11 19:36:49 2014 (r370663) +++ head/devel/mk-configure/distinfo Sat Oct 11 19:37:58 2014 (r370664) @@ -1,2 +1,2 @@ -SHA256 (mk-configure-0.27.0.tar.gz) = 634cd57c28f8495cad5921d795ffd67c93aa83710a72f942e9d8f894a4d4763d -SIZE (mk-configure-0.27.0.tar.gz) = 277250 +SHA256 (mk-configure-0.28.0.tar.gz) = fecb67fe2d3c31d46d28b40a41b233999f8f69aeeffcfbc0aceedacba90ff5fd +SIZE (mk-configure-0.28.0.tar.gz) = 293673 Modified: head/devel/mk-configure/pkg-plist ============================================================================== --- head/devel/mk-configure/pkg-plist Sat Oct 11 19:36:49 2014 (r370663) +++ head/devel/mk-configure/pkg-plist Sat Oct 11 19:37:58 2014 (r370664) @@ -7,7 +7,9 @@ bin/mkc_check_header bin/mkc_check_prog bin/mkc_check_sizeof bin/mkc_check_version +bin/mkc_get_deps bin/mkc_install +bin/mkc_long_lines bin/mkc_test_helper bin/mkc_which bin/mkcmake @@ -22,13 +24,15 @@ man/man7/mk-configure.7.gz %%PORTDOCS%%%%DOCSDIR%%/FAQ %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/NOTES %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/TODO -%%DATADIR%%/custom/endianness -%%DATADIR%%/custom/prog_bison -%%DATADIR%%/custom/prog_flex -%%DATADIR%%/custom/prog_gawk -%%DATADIR%%/custom/prog_gm4 +%%DATADIR%%/builtins/endianness +%%DATADIR%%/builtins/prog_bison +%%DATADIR%%/builtins/prog_flex +%%DATADIR%%/builtins/prog_gawk +%%DATADIR%%/builtins/prog_gm4 +%%DATADIR%%/builtins/prog_gmake %%DATADIR%%/features/getline/getline.c %%DATADIR%%/features/mkc_CIRCLEQ.h %%DATADIR%%/features/mkc_LIST.h @@ -47,7 +51,6 @@ man/man7/mk-configure.7.gz %%DATADIR%%/features/netbsd_sys_tree.h %%DATADIR%%/features/strlcat/strlcat.c %%DATADIR%%/features/strlcpy/strlcpy.c -share/mkc-mk/configure.mk share/mkc-mk/mkc.configure.mk share/mkc-mk/mkc.files.mk share/mkc-mk/mkc.init.mk @@ -62,8 +65,11 @@ share/mkc-mk/mkc.subprj.mk share/mkc-mk/mkc.subprjs.mk share/mkc-mk/mkc_imp.arch.mk share/mkc-mk/mkc_imp.checkprogs.mk +share/mkc-mk/mkc_imp.conf-cleanup.mk share/mkc-mk/mkc_imp.conf-final.mk +share/mkc-mk/mkc_imp.conf.mk share/mkc-mk/mkc_imp.dep.mk +share/mkc-mk/mkc_imp.dpvars.mk share/mkc-mk/mkc_imp.f_CIRCLEQ.mk share/mkc-mk/mkc_imp.f_LIST.mk share/mkc-mk/mkc_imp.f_RB.mk @@ -99,11 +105,11 @@ share/mkc-mk/mkc_imp.scripts.mk share/mkc-mk/mkc_imp.subprj.mk share/mkc-mk/mkc_imp.vars.mk share/mkc-mk/sys.mk -@dirrmtry share/mkc-mk -@dirrmtry %%DATADIR%%/features/strlcpy -@dirrmtry %%DATADIR%%/features/strlcat -@dirrmtry %%DATADIR%%/features/getline -@dirrmtry %%DATADIR%%/features -@dirrmtry %%DATADIR%%/custom -@dirrmtry %%DATADIR%% -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% +%%PORTDOCS%%@dir %%DOCSDIR%% +@dir %%DATADIR%%/builtins +@dir %%DATADIR%%/features/getline +@dir %%DATADIR%%/features/strlcat +@dir %%DATADIR%%/features/strlcpy +@dir %%DATADIR%%/features +@dir %%DATADIR%% +@dir share/mkc-mk From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 19:39:57 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B2116566; Sat, 11 Oct 2014 19:39:57 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9E369ED5; Sat, 11 Oct 2014 19:39:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BJdvSZ045983; Sat, 11 Oct 2014 19:39:57 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BJduq6045980; Sat, 11 Oct 2014 19:39:56 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201410111939.s9BJduq6045980@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Sat, 11 Oct 2014 19:39:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370665 - in head: dns/curvedns dns/dnscrypt-proxy net-im/tox X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 19:39:57 -0000 Author: vsevolod Date: Sat Oct 11 19:39:56 2014 New Revision: 370665 URL: https://svnweb.freebsd.org/changeset/ports/370665 QAT: https://qat.redports.org/buildarchive/r370665/ Log: Bump revision due to libsoduim update. Modified: head/dns/curvedns/Makefile head/dns/dnscrypt-proxy/Makefile head/net-im/tox/Makefile Modified: head/dns/curvedns/Makefile ============================================================================== --- head/dns/curvedns/Makefile Sat Oct 11 19:37:58 2014 (r370664) +++ head/dns/curvedns/Makefile Sat Oct 11 19:39:56 2014 (r370665) @@ -3,7 +3,7 @@ PORTNAME= curvedns PORTVERSION= 0.88.b -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= dns DISTNAME= curvedns-0.88-unstable Modified: head/dns/dnscrypt-proxy/Makefile ============================================================================== --- head/dns/dnscrypt-proxy/Makefile Sat Oct 11 19:37:58 2014 (r370664) +++ head/dns/dnscrypt-proxy/Makefile Sat Oct 11 19:39:56 2014 (r370665) @@ -3,7 +3,7 @@ PORTNAME= dnscrypt-proxy PORTVERSION= 1.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= dns MASTER_SITES= http://download.dnscrypt.org/dnscrypt-proxy/ \ http://www.dns-lab.com/downloads/dnscrypt-proxy/ Modified: head/net-im/tox/Makefile ============================================================================== --- head/net-im/tox/Makefile Sat Oct 11 19:37:58 2014 (r370664) +++ head/net-im/tox/Makefile Sat Oct 11 19:39:56 2014 (r370665) @@ -3,6 +3,7 @@ PORTNAME= toxcore PORTVERSION= 0.140924 +PORTREVISION= 1 CATEGORIES= net-im net-p2p MAINTAINER= thierry@FreeBSD.org From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 20:01:10 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC4D573E; Sat, 11 Oct 2014 20:01:10 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D76C115F; Sat, 11 Oct 2014 20:01:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BK1An9057412; Sat, 11 Oct 2014 20:01:10 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BK19l1057405; Sat, 11 Oct 2014 20:01:09 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201410112001.s9BK19l1057405@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Sat, 11 Oct 2014 20:01:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370666 - in head/misc/xfce4-weather-plugin: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 20:01:11 -0000 Author: olivierd Date: Sat Oct 11 20:01:08 2014 New Revision: 370666 URL: https://svnweb.freebsd.org/changeset/ports/370666 QAT: https://qat.redports.org/buildarchive/r370666/ Log: - Switch LocationforecastLTS to the new API (1.2), previous one is no longer available - Drop @dirm* in pkg-plist - Bump PORTREVISION Obtained from: Upstream repository ('trunk' branch) MFH: 2014Q4 Added: head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-parsers.c (contents, props changed) head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-translate.c (contents, props changed) head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-translate.h (contents, props changed) head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather.c (contents, props changed) Modified: head/misc/xfce4-weather-plugin/Makefile head/misc/xfce4-weather-plugin/pkg-plist Modified: head/misc/xfce4-weather-plugin/Makefile ============================================================================== --- head/misc/xfce4-weather-plugin/Makefile Sat Oct 11 19:39:56 2014 (r370665) +++ head/misc/xfce4-weather-plugin/Makefile Sat Oct 11 20:01:08 2014 (r370666) @@ -3,7 +3,7 @@ PORTNAME= xfce4-weather-plugin PORTVERSION= 0.8.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc xfce geography MASTER_SITES= ${MASTER_SITE_XFCE} MASTER_SITE_SUBDIR=src/panel-plugins/${PORTNAME}/${PORTVERSION:R} @@ -16,7 +16,6 @@ LICENSE= GPLv2 LIB_DEPENDS= libsoup-2.4.so:${PORTSDIR}/devel/libsoup -SSP_UNSAFE= yes GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALL_TARGET= install-strip Added: head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-parsers.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-parsers.c Sat Oct 11 20:01:08 2014 (r370666) @@ -0,0 +1,22 @@ +Make plugin ready for met.no locationforecast-1.2 API (bug #10916). + +--- panel-plugin/weather-parsers.c.orig 2013-02-01 15:18:50 UTC ++++ panel-plugin/weather-parsers.c +@@ -28,6 +28,7 @@ + #define _XOPEN_SOURCE + #define _XOPEN_SOURCE_EXTENDED 1 + #include "weather-parsers.h" ++#include "weather-translate.h" + #include "weather-debug.h" + + #include +@@ -196,8 +197,8 @@ + } + if (NODE_IS_TYPE(child_node, "symbol")) { + g_free(loc->symbol); +- loc->symbol = PROP(child_node, "id"); + loc->symbol_id = strtol(PROP(child_node, "number"), NULL, 10); ++ loc->symbol = g_strdup(get_symbol_for_id(loc->symbol_id)); + } + } + Added: head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-translate.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-translate.c Sat Oct 11 20:01:08 2014 (r370666) @@ -0,0 +1,95 @@ +Make plugin ready for met.no locationforecast-1.2 API (bug #10916). + +--- panel-plugin/weather-translate.c.orig 2013-01-24 14:45:10 UTC ++++ panel-plugin/weather-translate.c +@@ -29,6 +29,7 @@ + #include "weather-translate.h" + + #define DAY_LOC_N (sizeof(gchar) * 100) ++#define NODATA "NODATA" + + + static const gchar *wdirs[] = { +@@ -169,7 +170,7 @@ + + { 15, "FOG", N_("Fog"), N_("Fog") }, + +- /* Symbols 16-19 are used for polar days */ ++ /* Symbols 16-19 are used for polar days (unused beginning with API version 1.2) */ + { 16, "SUN", N_("Sunny"), N_("Clear") }, + { 17, "LIGHTCLOUD", N_("Lightly cloudy"), N_("Lightly cloudy") }, + { 18, "LIGHTRAINSUN", N_("Rain showers"), N_("Rain showers") }, +@@ -185,6 +186,73 @@ + #define NUM_SYMBOLS (sizeof(symbol_to_desc) / sizeof(symbol_to_desc[0])) + + ++/* ++ * API version 1.2, published in May 2014, introduced new symbols. We ++ * try to match these with existing symbols, in order to be compatible ++ * with existing icon themes and to maintain translation completeness. ++ * ++ * See http://api.met.no/weatherapi/weathericon/1.1/documentation ++ * for a list of symbols. For a list of symbols with descriptions, ++ * see http://om.yr.no/forklaring/symbol. ++ */ ++gint ++replace_symbol_id(gint id) ++{ ++ /* Symbol ids greater than 100 are used for indicating polar ++ * night. These ids are over the ordinary id + 100. Since we ++ * don't support polar icons, we can simply subtract 100 to ++ * get the non-polar symbol ids. ++ */ ++ if (id > 100) ++ id -= 100; ++ ++ switch (id) { ++ case 24: return 22; /* Light rain showers and thunder */ ++ case 25: return 6; /* Heavy rain showers and thunder */ ++ case 26: return 20; /* Light sleet showers and thunder */ ++ case 27: return 20; /* Heavy sleet showers and thunder */ ++ case 28: return 21; /* Light snow showers and thunder */ ++ case 29: return 21; /* Heavy snow showers and thunder */ ++ case 30: return 22; /* Light rain and thunder */ ++ case 31: return 23; /* Light sleet and thunder */ ++ case 32: return 23; /* Heavy sleet and thunder */ ++ case 33: return 14; /* Light snow and thunder */ ++ case 34: return 14; /* Heavy snow and thunder */ ++ ++ /* symbols 35-39 are unused */ ++ ++ case 40: return 5; /* Light rain showers */ ++ case 41: return 5; /* Heavy rain showers */ ++ case 42: return 7; /* Light sleet showers */ ++ case 43: return 7; /* Heavy sleet showers */ ++ case 44: return 8; /* Light snow showers */ ++ case 45: return 8; /* Heavy snow showers */ ++ case 46: return 9; /* Light rain */ ++ case 47: return 12; /* Light sleet */ ++ case 48: return 12; /* Heavy sleet */ ++ case 49: return 13; /* Light snow */ ++ case 50: return 13; /* Heavy snow */ ++ default: return id; ++ } ++} ++ ++ ++const gchar * ++get_symbol_for_id(gint id) ++{ ++ if (G_UNLIKELY(id < 1)) ++ return NODATA; ++ ++ if (id >= NUM_SYMBOLS) ++ id = replace_symbol_id(id); ++ ++ if (id < NUM_SYMBOLS) ++ return symbol_to_desc[id-1].symbol; ++ ++ return NODATA; ++} ++ ++ + const gchar * + translate_desc(const gchar *desc, + const gboolean nighttime) Added: head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-translate.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather-translate.h Sat Oct 11 20:01:08 2014 (r370666) @@ -0,0 +1,13 @@ +Make plugin ready for met.no locationforecast-1.2 API (bug #10916). + +--- panel-plugin/weather-translate.h.orig 2013-01-24 14:45:10 UTC ++++ panel-plugin/weather-translate.h +@@ -24,6 +24,8 @@ + + G_BEGIN_DECLS + ++const gchar *get_symbol_for_id(gint id); ++ + const gchar *translate_desc(const gchar *desc, + gboolean nighttime); + Added: head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/xfce4-weather-plugin/files/patch-panel-plugin__weather.c Sat Oct 11 20:01:08 2014 (r370666) @@ -0,0 +1,13 @@ +Make plugin ready for met.no locationforecast-1.2 API (bug #10916). + +--- panel-plugin/weather.c.orig 2013-02-18 10:21:00 UTC ++++ panel-plugin/weather.c +@@ -638,7 +638,7 @@ + /* build url */ + url = + g_strdup_printf("http://api.yr.no/weatherapi" +- "/locationforecastlts/1.1/?lat=%s;lon=%s;msl=%d", ++ "/locationforecastlts/1.2/?lat=%s;lon=%s;msl=%d", + data->lat, data->lon, data->msl); + + /* start receive thread */ Modified: head/misc/xfce4-weather-plugin/pkg-plist ============================================================================== --- head/misc/xfce4-weather-plugin/pkg-plist Sat Oct 11 19:39:56 2014 (r370665) +++ head/misc/xfce4-weather-plugin/pkg-plist Sat Oct 11 20:01:08 2014 (r370666) @@ -335,33 +335,3 @@ share/xfce4/weather/icons/simplistic/48/ share/xfce4/weather/icons/simplistic/48/sun-night.png share/xfce4/weather/icons/simplistic/48/sun.png share/xfce4/weather/icons/simplistic/theme.info -@dirrm share/xfce4/weather/icons/simplistic/48 -@dirrm share/xfce4/weather/icons/simplistic/22 -@dirrm share/xfce4/weather/icons/simplistic/128 -@dirrm share/xfce4/weather/icons/simplistic -@dirrm share/xfce4/weather/icons/liquid/48 -@dirrm share/xfce4/weather/icons/liquid/22 -@dirrm share/xfce4/weather/icons/liquid/128 -@dirrm share/xfce4/weather/icons/liquid-dark/48 -@dirrm share/xfce4/weather/icons/liquid-dark/22 -@dirrm share/xfce4/weather/icons/liquid-dark/128 -@dirrm share/xfce4/weather/icons/liquid-dark -@dirrm share/xfce4/weather/icons/liquid -@dirrm share/xfce4/weather/icons -@dirrm share/xfce4/weather -@dirrmtry share/xfce4/panel/plugins -@dirrmtry share/xfce4/panel -@dirrmtry share/xfce4 -@dirrmtry share/locale/ur_PK/LC_MESSAGES -@dirrmtry share/locale/ur_PK -@dirrmtry share/locale/ur/LC_MESSAGES -@dirrmtry share/locale/ur -@dirrmtry share/locale/ug/LC_MESSAGES -@dirrmtry share/locale/ug -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry lib/xfce4/panel/plugins -@dirrmtry lib/xfce4/panel -@dirrmtry lib/xfce4 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 20:06:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D141DAC9; Sat, 11 Oct 2014 20:06:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BDFD01A0; Sat, 11 Oct 2014 20:06:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BK6F6q059977; Sat, 11 Oct 2014 20:06:15 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BK6Fjg059975; Sat, 11 Oct 2014 20:06:15 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201410112006.s9BK6Fjg059975@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 11 Oct 2014 20:06:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370667 - head/net/pear-Net_URL2 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 20:06:15 -0000 Author: gerald Date: Sat Oct 11 20:06:14 2014 New Revision: 370667 URL: https://svnweb.freebsd.org/changeset/ports/370667 QAT: https://qat.redports.org/buildarchive/r370667/ Log: Update to version 2.0.10. PR: 194288 Submitted by: joehorn@gmail.com (maintainer) Modified: head/net/pear-Net_URL2/Makefile head/net/pear-Net_URL2/distinfo Modified: head/net/pear-Net_URL2/Makefile ============================================================================== --- head/net/pear-Net_URL2/Makefile Sat Oct 11 20:01:08 2014 (r370666) +++ head/net/pear-Net_URL2/Makefile Sat Oct 11 20:06:14 2014 (r370667) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Net_URL2 -PORTVERSION= 2.0.5 +PORTVERSION= 2.0.10 CATEGORIES= net www pear MAINTAINER= joehorn@gmail.com Modified: head/net/pear-Net_URL2/distinfo ============================================================================== --- head/net/pear-Net_URL2/distinfo Sat Oct 11 20:01:08 2014 (r370666) +++ head/net/pear-Net_URL2/distinfo Sat Oct 11 20:06:14 2014 (r370667) @@ -1,2 +1,2 @@ -SHA256 (PEAR/Net_URL2-2.0.5.tgz) = 6631f411c5019207e132331528fbdad820cad2ab6567985792c1b757172a9919 -SIZE (PEAR/Net_URL2-2.0.5.tgz) = 17456 +SHA256 (PEAR/Net_URL2-2.0.10.tgz) = 6c0b15741b27549410089a43e9163d8d0201b3c2e9428545574a554b4d4989ee +SIZE (PEAR/Net_URL2-2.0.10.tgz) = 19467 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 21:17:41 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4D62C8C; Sat, 11 Oct 2014 21:17:41 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 779029C9; Sat, 11 Oct 2014 21:17:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BLHfu0093036; Sat, 11 Oct 2014 21:17:41 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BLHfo7093035; Sat, 11 Oct 2014 21:17:41 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112117.s9BLHfo7093035@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 21:17:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370668 - head/devel/urjtag X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 21:17:41 -0000 Author: jhale Date: Sat Oct 11 21:17:40 2014 New Revision: 370668 URL: https://svnweb.freebsd.org/changeset/ports/370668 QAT: https://qat.redports.org/buildarchive/r370668/ Log: - Convert USE_BZIP2 to USES - Use options helpers - Whitespace cleanup Modified: head/devel/urjtag/Makefile Modified: head/devel/urjtag/Makefile ============================================================================== --- head/devel/urjtag/Makefile Sat Oct 11 20:06:14 2014 (r370667) +++ head/devel/urjtag/Makefile Sat Oct 11 21:17:40 2014 (r370668) @@ -14,8 +14,7 @@ LICENSE= GPLv2 RUN_DEPENDS= bash:${PORTSDIR}/shells/bash -USE_BZIP2= yes -USES= gmake readline shebangfix +USES= gmake readline shebangfix tar:bzip2 SHEBANG_FILES= src/bsdl2jtag USE_CSTD= c99 GNU_CONFIGURE= yes @@ -23,34 +22,22 @@ GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -OPTIONS_DEFINE= USB FTDI JEDEC NLS -OPTIONS_DEFAULT= USB FTDI -OPTIONS_SUB= yes -USB_DESC= Build support for USB JTAG adapters -FTDI_DESC= Build support for FTDI-based USB JTAG adapters -JEDEC_DESC= Enable experimental JEDEC flash detection +OPTIONS_DEFINE= FTDI JEDEC NLS USB +OPTIONS_DEFAULT= FTDI USB +OPTIONS_SUB= yes + +FTDI_DESC= FTDI-based USB JTAG adapters support +FTDI_LIB_DEPENDS= libftdi.so:${PORTSDIR}/devel/libftdi +FTDI_CONFIGURE_WITH= libftdi -.include +JEDEC_DESC= Experimental JEDEC flash detection +JEDEC_CONFIGURE_ENABLE= jedec -.if ${PORT_OPTIONS:MJEDEC} -CONFIGURE_ARGS+= --enable-jedec -.endif - -.if ${PORT_OPTIONS:MUSB} -CONFIGURE_ARGS+= --with-libusb=/usr -.endif +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls -.if ! ${PORT_OPTIONS:MFTDI} -CONFIGURE_ARGS+= --without-libftdi -.else -LIB_DEPENDS+= libftdi.so:${PORTSDIR}/devel/libftdi -.endif - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -.else -CONFIGURE_ARGS+=--disable-nls -.endif +USB_DESC= USB JTAG adapters support +USB_CONFIGURE_ON= --with-libusb=/usr .include @@ -63,7 +50,7 @@ post-patch: # Suppress svn(1) binary detection @${REINPLACE_CMD} -e \ 's|^SVN=.*|SVN=''| ; \ - s|-Lwith_libusb |-L$$with_libusb/lib | ; \ + s|-Lwith_libusb |-L$$with_libusb/lib | ; \ s|-I$$with_libusb"|-I$$with_libusb/include"|' \ ${WRKSRC}/configure From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 21:28:17 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 93792DC1; Sat, 11 Oct 2014 21:28:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 80049A86; Sat, 11 Oct 2014 21:28:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BLSHQD097782; Sat, 11 Oct 2014 21:28:17 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BLSHwe097777; Sat, 11 Oct 2014 21:28:17 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112128.s9BLSHwe097777@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 21:28:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370669 - head/devel/ecore-main X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 21:28:17 -0000 Author: jhale Date: Sat Oct 11 21:28:16 2014 New Revision: 370669 URL: https://svnweb.freebsd.org/changeset/ports/370669 QAT: https://qat.redports.org/buildarchive/r370669/ Log: - Convert USE_BZIP2 to USES - Update BSD LICENSE - Cleanup plist Approved by: portmgr blanket Modified: head/devel/ecore-main/Makefile head/devel/ecore-main/pkg-plist Modified: head/devel/ecore-main/Makefile ============================================================================== --- head/devel/ecore-main/Makefile Sat Oct 11 21:17:40 2014 (r370668) +++ head/devel/ecore-main/Makefile Sat Oct 11 21:28:16 2014 (r370669) @@ -12,12 +12,12 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTVERSION} MAINTAINER= gblach@FreeBSD.org COMMENT= Enlightenment core abstraction library (main library) -LICENSE= BSD +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WKRSRC}/COPYING DIST_SUBDIR= e17 -USE_BZIP2= yes GNU_CONFIGURE= yes -USES= pathfix pkgconfig iconv +USES= iconv pathfix pkgconfig tar:bzip2 USE_EFL= eina libtool_hack USE_LDCONFIG= yes Modified: head/devel/ecore-main/pkg-plist ============================================================================== --- head/devel/ecore-main/pkg-plist Sat Oct 11 21:17:40 2014 (r370668) +++ head/devel/ecore-main/pkg-plist Sat Oct 11 21:28:16 2014 (r370669) @@ -48,5 +48,3 @@ libdata/pkgconfig/ecore.pc %%NLS%%share/locale/pt/LC_MESSAGES/ecore.mo %%NLS%%share/locale/sl/LC_MESSAGES/ecore.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/ecore.mo -@dirrmtry include/ecore-1 -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 21:42:11 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E837FBA; Sat, 11 Oct 2014 21:42:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA52AC03; Sat, 11 Oct 2014 21:42:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BLgBrR006566; Sat, 11 Oct 2014 21:42:11 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BLgBgB006560; Sat, 11 Oct 2014 21:42:11 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201410112142.s9BLgBgB006560@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sat, 11 Oct 2014 21:42:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370670 - in head/devel: binutils i386-linux-binutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 21:42:12 -0000 Author: antoine Date: Sat Oct 11 21:42:10 2014 New Revision: 370670 URL: https://svnweb.freebsd.org/changeset/ports/370670 QAT: https://qat.redports.org/buildarchive/r370670/ Log: Fix i386-linux-binutils Modified: head/devel/binutils/Makefile head/devel/i386-linux-binutils/Makefile head/devel/i386-linux-binutils/pkg-plist Modified: head/devel/binutils/Makefile ============================================================================== --- head/devel/binutils/Makefile Sat Oct 11 21:28:16 2014 (r370669) +++ head/devel/binutils/Makefile Sat Oct 11 21:42:10 2014 (r370670) @@ -84,7 +84,7 @@ post-install: ${REINPLACE_CMD} '/#include "ansidecl.h"/d' ${STAGEDIR}${PREFIX}/include/bfd.h .else ${RM} -rf ${STAGEDIR}${PREFIX}/${PKGNAMEPREFIX:S/-$//} - ${LN} -fs ../../bin/${PKGNAMEPREFIX}${OPSYS:tl}-size ${STAGEDIR}${PREFIX}/${PKGNAMEPREFIX}${OPSYS:tl}/bin/size + ${LN} -fs ../../bin/${BUTARGET}-size ${STAGEDIR}${PREFIX}/${BUTARGET}/bin/size .endif .include Modified: head/devel/i386-linux-binutils/Makefile ============================================================================== --- head/devel/i386-linux-binutils/Makefile Sat Oct 11 21:28:16 2014 (r370669) +++ head/devel/i386-linux-binutils/Makefile Sat Oct 11 21:42:10 2014 (r370670) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GNU binutils for linux i386 cross-development PKGNAMEPREFIX= i386-linux- BUTARGET= i386-pc-linux-gnu Modified: head/devel/i386-linux-binutils/pkg-plist ============================================================================== --- head/devel/i386-linux-binutils/pkg-plist Sat Oct 11 21:28:16 2014 (r370669) +++ head/devel/i386-linux-binutils/pkg-plist Sat Oct 11 21:42:10 2014 (r370670) @@ -22,6 +22,7 @@ i386-pc-linux-gnu/bin/nm i386-pc-linux-gnu/bin/objcopy i386-pc-linux-gnu/bin/objdump i386-pc-linux-gnu/bin/ranlib +i386-pc-linux-gnu/bin/size i386-pc-linux-gnu/bin/strip i386-pc-linux-gnu/lib/ldscripts/elf32_x86_64.x i386-pc-linux-gnu/lib/ldscripts/elf32_x86_64.xbn From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 21:57:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E43836A5; Sat, 11 Oct 2014 21:57:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D0010CF5; Sat, 11 Oct 2014 21:57:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BLvD5D012095; Sat, 11 Oct 2014 21:57:13 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BLvDTS012093; Sat, 11 Oct 2014 21:57:13 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112157.s9BLvDTS012093@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 21:57:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370671 - head/sysutils/cdrtools-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 21:57:14 -0000 Author: jhale Date: Sat Oct 11 21:57:12 2014 New Revision: 370671 URL: https://svnweb.freebsd.org/changeset/ports/370671 QAT: https://qat.redports.org/buildarchive/r370671/ Log: - Convert USE_BZIP2 to USES - Modernize plist Approved by: portmgr blanket Modified: head/sysutils/cdrtools-devel/Makefile head/sysutils/cdrtools-devel/pkg-plist Modified: head/sysutils/cdrtools-devel/Makefile ============================================================================== --- head/sysutils/cdrtools-devel/Makefile Sat Oct 11 21:42:10 2014 (r370670) +++ head/sysutils/cdrtools-devel/Makefile Sat Oct 11 21:57:12 2014 (r370671) @@ -49,8 +49,7 @@ SICONVTABLES= cp10000 cp10006 cp10007 cp iso8859-6 iso8859-7 iso8859-8 iso8859-9 koi8-r koi8-u NO_LATEST_LINK= yes -USE_BZIP2= yes -USES= gmake +USES= gmake tar:bzip2 #CFLAGS+= -DSOURCE_MODIFIED WRKSRC= ${WRKDIR}/${DISTNAME:C/a(.+)$//} SUB_FILES= pkg-message @@ -181,7 +180,6 @@ do-install: .if defined(WITH_RSCSI) ${INSTALL_PROGRAM} ${WRKSRC}/rscsi/OBJ/${CDRTLSTARGET}/rscsi \ ${STAGEDIR}${PREFIX}/sbin - ${CHMOD} u+s ${STAGEDIR}${PREFIX}/sbin/rscsi .endif ${INSTALL_PROGRAM} ${WRKSRC}/scgcheck/OBJ/${CDRTLSTARGET}/scgcheck \ ${STAGEDIR}${PREFIX}/bin Modified: head/sysutils/cdrtools-devel/pkg-plist ============================================================================== --- head/sysutils/cdrtools-devel/pkg-plist Sat Oct 11 21:42:10 2014 (r370670) +++ head/sysutils/cdrtools-devel/pkg-plist Sat Oct 11 21:57:12 2014 (r370671) @@ -70,15 +70,9 @@ man/man1/readcd.1.gz man/man1/scgcheck.1.gz man/man8/isoinfo.8.gz man/man8/mkisofs.8.gz -@dirrm lib/siconv -%%RSCSI%%sbin/rscsi -%%RSCSI%%@exec chmod u+s %B/%f -@unexec if cmp -s %D/etc/cdrecord.sample %D/etc/cdrecord; then rm -f %D/etc/cdrecord; else echo "If permanently deleting this package, %D/etc/cdrecord must be removed manually."; fi -etc/cdrecord.sample -@exec [ -f %B/cdrecord ] || cp %B/%f %B/cdrecord -%%RSCSI%%@unexec if cmp -s %D/etc/rscsi.sample %D/etc/rscsi; then rm -f %D/etc/rscsi; else echo "If permanently deleting this package, %D/etc/rscsi must be removed manually."; fi -%%RSCSI%%etc/rscsi.sample -%%RSCSI%%@exec [ -f %B/rscsi ] || cp %B/%f %B/rscsi +%%RSCSI%%@(,,4555) sbin/rscsi +@sample etc/cdrecord.sample +%%RSCSI%%@sample etc/rscsi.sample %%RSCSI%%@unexec if pw usershow rscsi >/dev/null 2>&1; then echo "If permanently deleting this package, user \"rscsi\" and its homedirectory must be removed manually."; fi %%RSCSI%%@unexec if pw groupshow rscsi >/dev/null 2>&1; then echo "If permanently deleting this package, group \"rscsi\" must be removed manually."; fi %%RSCSI%%man/man1/rscsi.1.gz @@ -91,7 +85,6 @@ etc/cdrecord.sample %%PORTDOCS%%%%DOCSDIR%%/cdda2wav/README %%PORTDOCS%%%%DOCSDIR%%/cdda2wav/THANKS %%PORTDOCS%%%%DOCSDIR%%/cdda2wav/TODO -%%PORTDOCS%%@dirrm %%DOCSDIR%%/cdda2wav %%PORTDOCS%%%%DOCSDIR%%/cdrecord/README %%PORTDOCS%%%%DOCSDIR%%/cdrecord/README.ATAPI %%PORTDOCS%%%%DOCSDIR%%/cdrecord/README.DiskT@2 @@ -107,7 +100,6 @@ etc/cdrecord.sample %%PORTDOCS%%%%DOCSDIR%%/cdrecord/README.rscsi %%PORTDOCS%%%%DOCSDIR%%/cdrecord/README.sony %%PORTDOCS%%%%DOCSDIR%%/cdrecord/README.verify -%%PORTDOCS%%@dirrm %%DOCSDIR%%/cdrecord %%PORTDOCS%%%%DOCSDIR%%/mkisofs/README %%PORTDOCS%%%%DOCSDIR%%/mkisofs/README.compression %%PORTDOCS%%%%DOCSDIR%%/mkisofs/README.eltorito @@ -124,5 +116,3 @@ etc/cdrecord.sample %%PORTDOCS%%%%DOCSDIR%%/mkisofs/README.sort %%PORTDOCS%%%%DOCSDIR%%/mkisofs/README.sparcboot %%PORTDOCS%%%%DOCSDIR%%/mkisofs/README.sunx86boot -%%PORTDOCS%%@dirrm %%DOCSDIR%%/mkisofs -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 22:00:52 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AC647AF; Sat, 11 Oct 2014 22:00:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 17147D0B; Sat, 11 Oct 2014 22:00:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BM0plR015705; Sat, 11 Oct 2014 22:00:51 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BM0pP3015703; Sat, 11 Oct 2014 22:00:51 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112200.s9BM0pP3015703@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 22:00:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370672 - head/sysutils/cdrdao X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 22:00:52 -0000 Author: jhale Date: Sat Oct 11 22:00:51 2014 New Revision: 370672 URL: https://svnweb.freebsd.org/changeset/ports/370672 QAT: https://qat.redports.org/buildarchive/r370672/ Log: - Convert USE_BZIP2 to USES - Drop @dirrmtry from plist Approved by: portmgr blanket Modified: head/sysutils/cdrdao/Makefile head/sysutils/cdrdao/pkg-plist Modified: head/sysutils/cdrdao/Makefile ============================================================================== --- head/sysutils/cdrdao/Makefile Sat Oct 11 21:57:12 2014 (r370671) +++ head/sysutils/cdrdao/Makefile Sat Oct 11 22:00:51 2014 (r370672) @@ -12,8 +12,7 @@ DISTNAME= cdrdao-${PORTVERSION} MAINTAINER= marius@FreeBSD.org COMMENT?= Record CD-R[W]s in disk-at-once mode -USE_BZIP2= yes -USES= gmake +USES= gmake tar:bzip2 GNU_CONFIGURE= yes MP3OGG_LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao \ Modified: head/sysutils/cdrdao/pkg-plist ============================================================================== --- head/sysutils/cdrdao/pkg-plist Sat Oct 11 21:57:12 2014 (r370671) +++ head/sysutils/cdrdao/pkg-plist Sat Oct 11 22:00:51 2014 (r370672) @@ -9,9 +9,7 @@ man/man1/cue2toc.1.gz man/man1/toc2cddb.1.gz man/man1/toc2cue.1.gz %%DATADIR%%/drivers -@dirrmtry %%DATADIR%% %%PORTDOCS%%%%DOCSDIR%%/CREDITS %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/README.PlexDAE -%%PORTDOCS%%@dirrmtry %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 22:03:53 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E99693A; Sat, 11 Oct 2014 22:03:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0ABE8DAE; Sat, 11 Oct 2014 22:03:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BM3qvA016598; Sat, 11 Oct 2014 22:03:52 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BM3q7V016597; Sat, 11 Oct 2014 22:03:52 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112203.s9BM3q7V016597@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 22:03:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370673 - head/sysutils/busybox-unstable X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 22:03:53 -0000 Author: jhale Date: Sat Oct 11 22:03:52 2014 New Revision: 370673 URL: https://svnweb.freebsd.org/changeset/ports/370673 QAT: https://qat.redports.org/buildarchive/r370673/ Log: - Convert USE_BZIP2 to USES Approved by: portmgr blanket Modified: head/sysutils/busybox-unstable/Makefile Modified: head/sysutils/busybox-unstable/Makefile ============================================================================== --- head/sysutils/busybox-unstable/Makefile Sat Oct 11 22:00:51 2014 (r370672) +++ head/sysutils/busybox-unstable/Makefile Sat Oct 11 22:03:52 2014 (r370673) @@ -26,9 +26,8 @@ IGNORE= is older than stable version. U PORTSCOUT= skipv:1.22.1 MAKE_ARGS+= SKIP_STRIP=y CC="${CC}" HOSTCC="${CC}" CXX="${CXX}" HOSTCXX="${CXX}" -USE_BZIP2= yes # findutils/find.c l. 752+, uses a GCC extension/invalid C code: -USES= compiler:nestedfct gmake +USES= compiler:nestedfct gmake tar:bzip2 PLIST_FILES= bin/busybox From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 22:11:02 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE697EA8; Sat, 11 Oct 2014 22:11:02 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0847E7B; Sat, 11 Oct 2014 22:11:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BMB22O021398; Sat, 11 Oct 2014 22:11:02 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BMB2RH021394; Sat, 11 Oct 2014 22:11:02 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112211.s9BMB2RH021394@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 22:11:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370674 - head/sysutils/xfce4-netload-plugin X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 22:11:02 -0000 Author: jhale Date: Sat Oct 11 22:11:01 2014 New Revision: 370674 URL: https://svnweb.freebsd.org/changeset/ports/370674 QAT: https://qat.redports.org/buildarchive/r370674/ Log: - Convert USE_BZIP2 to USES - Use OPTIONS_SUB - Cleanup plist Approved by: portmgr blanket Modified: head/sysutils/xfce4-netload-plugin/Makefile head/sysutils/xfce4-netload-plugin/pkg-plist Modified: head/sysutils/xfce4-netload-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-netload-plugin/Makefile Sat Oct 11 22:03:52 2014 (r370673) +++ head/sysutils/xfce4-netload-plugin/Makefile Sat Oct 11 22:11:01 2014 (r370674) @@ -15,23 +15,21 @@ COMMENT= Network Load plugin for Xfce4 LICENSE= GPLv2 GNU_CONFIGURE= yes -USE_BZIP2= yes USE_GNOME= intltool intlhack USE_XFCE= configenv libmenu panel -USES= pkgconfig gmake +USES= gmake pkgconfig tar:bzip2 INSTALLS_ICONS= yes OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes .include .if ${PORT_OPTIONS:MNLS} USES+= gettext CONFIGURE_ARGS+=--enable-nls -PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " .endif do-patch: Modified: head/sysutils/xfce4-netload-plugin/pkg-plist ============================================================================== --- head/sysutils/xfce4-netload-plugin/pkg-plist Sat Oct 11 22:03:52 2014 (r370673) +++ head/sysutils/xfce4-netload-plugin/pkg-plist Sat Oct 11 22:11:01 2014 (r370674) @@ -44,17 +44,3 @@ share/icons/hicolor/scalable/apps/xfce4- %%NLS%%share/locale/zh_CN/LC_MESSAGES/xfce4-netload-plugin.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/xfce4-netload-plugin.mo share/xfce4/panel-plugins/netload.desktop -@dirrmtry share/xfce4/panel-plugins -@dirrmtry share/xfce4 -%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ur_PK -%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ur -%%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ug -%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/kk -%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ast -@dirrmtry libexec/xfce4/panel-plugins -@dirrmtry libexec/xfce4 From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 22:15:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8AB752E1; Sat, 11 Oct 2014 22:15:54 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76EF4EC3; Sat, 11 Oct 2014 22:15:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BMFsdh022255; Sat, 11 Oct 2014 22:15:54 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BMFs93022253; Sat, 11 Oct 2014 22:15:54 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112215.s9BMFs93022253@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 22:15:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370675 - head/misc/lifelines X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 22:15:54 -0000 Author: jhale Date: Sat Oct 11 22:15:53 2014 New Revision: 370675 URL: https://svnweb.freebsd.org/changeset/ports/370675 QAT: https://qat.redports.org/buildarchive/r370675/ Log: - Convert USE_BZIP2 to USES - Use OPTIONS_SUB - Cleanup plist Approved by: portmgr blanket Modified: head/misc/lifelines/Makefile head/misc/lifelines/pkg-plist Modified: head/misc/lifelines/Makefile ============================================================================== --- head/misc/lifelines/Makefile Sat Oct 11 22:11:01 2014 (r370674) +++ head/misc/lifelines/Makefile Sat Oct 11 22:15:53 2014 (r370675) @@ -10,18 +10,17 @@ MAINTAINER= matt@gsicomp.on.ca COMMENT= Advanced genealogical system GNU_CONFIGURE= yes -USE_BZIP2= yes -USES= bison iconv +USES= bison iconv tar:bzip2 OPTIONS_DEFINE= DOCS NLS +OPTIONS_SUB= yes .include + .if ${PORT_OPTIONS:MNLS} USES+= gettext -PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " .endif post-patch: Modified: head/misc/lifelines/pkg-plist ============================================================================== --- head/misc/lifelines/pkg-plist Sat Oct 11 22:11:01 2014 (r370674) +++ head/misc/lifelines/pkg-plist Sat Oct 11 22:15:53 2014 (r370675) @@ -274,11 +274,3 @@ man/man1/llines.1.gz %%NLS%%share/locale/pl/LC_MESSAGES/lifelines.mo %%NLS%%share/locale/rw/LC_MESSAGES/lifelines.mo %%NLS%%share/locale/sv/LC_MESSAGES/lifelines.mo -%%NLS%%@dirrmtry share/locale/el/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/el -%%NLS%%@dirrmtry share/locale/pl/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/pl -%%NLS%%@dirrmtry share/locale/rw/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/rw -@dirrm %%DATADIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 22:19:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3C523F2; Sat, 11 Oct 2014 22:19:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 96748EE7; Sat, 11 Oct 2014 22:19:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BMJ7i6022774; Sat, 11 Oct 2014 22:19:07 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BMJ7Yw022772; Sat, 11 Oct 2014 22:19:07 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112219.s9BMJ7Yw022772@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 22:19:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370676 - head/misc/xfce4-appfinder X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 22:19:07 -0000 Author: jhale Date: Sat Oct 11 22:19:06 2014 New Revision: 370676 URL: https://svnweb.freebsd.org/changeset/ports/370676 QAT: https://qat.redports.org/buildarchive/r370676/ Log: - Convert USE_BZIP2 to USES - Use OPTIONS_SUB - Cleanup plist Modified: head/misc/xfce4-appfinder/Makefile head/misc/xfce4-appfinder/pkg-plist Modified: head/misc/xfce4-appfinder/Makefile ============================================================================== --- head/misc/xfce4-appfinder/Makefile Sat Oct 11 22:15:53 2014 (r370675) +++ head/misc/xfce4-appfinder/Makefile Sat Oct 11 22:19:06 2014 (r370676) @@ -14,22 +14,20 @@ COMMENT= Application launcher and finder LIB_DEPENDS= libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib GNU_CONFIGURE= yes -USE_BZIP2= yes -USES= pathfix pkgconfig gmake +USES= gmake pathfix pkgconfig tar:bzip2 USE_GNOME= gtk20 glib20 intltool intlhack USE_XFCE= configenv garcon libmenu libutil xfconf OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes .include .if ${PORT_OPTIONS:MNLS} USES+= gettext CONFIGURE_ARGS+=--enable-nls -PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " .endif .include Modified: head/misc/xfce4-appfinder/pkg-plist ============================================================================== --- head/misc/xfce4-appfinder/pkg-plist Sat Oct 11 22:15:53 2014 (r370675) +++ head/misc/xfce4-appfinder/pkg-plist Sat Oct 11 22:19:06 2014 (r370676) @@ -65,27 +65,3 @@ share/applications/xfce4-run.desktop %%NLS%%share/locale/vi/LC_MESSAGES/xfce4-appfinder.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/xfce4-appfinder.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/xfce4-appfinder.mo -%%NLS%%@dirrmtry share/locale/ur_PK/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ur_PK -%%NLS%%@dirrmtry share/locale/ur/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ur -%%NLS%%@dirrmtry share/locale/ug/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ug -%%NLS%%@dirrmtry share/locale/te/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/te -%%NLS%%@dirrmtry share/locale/si/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/si -%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/mr -%%NLS%%@dirrmtry share/locale/ku/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ku -%%NLS%%@dirrmtry share/locale/kk/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/kk -%%NLS%%@dirrmtry share/locale/hy/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/hy -%%NLS%%@dirrmtry share/locale/dz/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/dz -%%NLS%%@dirrmtry share/locale/bn_IN/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/bn_IN -%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ast From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 22:50:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EF90883E; Sat, 11 Oct 2014 22:50:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C19891C5; Sat, 11 Oct 2014 22:50:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BMoEEp037043; Sat, 11 Oct 2014 22:50:14 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BMoE6X037042; Sat, 11 Oct 2014 22:50:14 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112250.s9BMoE6X037042@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 22:50:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370677 - head/games/assaultcube X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 22:50:15 -0000 Author: jhale Date: Sat Oct 11 22:50:14 2014 New Revision: 370677 URL: https://svnweb.freebsd.org/changeset/ports/370677 QAT: https://qat.redports.org/buildarchive/r370677/ Log: - Convert USE_BZIP2 to USES - Fix LIB_DEPENDS assignment (doesn't affect final run-depends-list, so no PORTREVISION bump) - Sort LICENSE variables to satisfy portlint(1) Approved by: portmgr blanket Modified: head/games/assaultcube/Makefile Modified: head/games/assaultcube/Makefile ============================================================================== --- head/games/assaultcube/Makefile Sat Oct 11 22:19:06 2014 (r370676) +++ head/games/assaultcube/Makefile Sat Oct 11 22:50:14 2014 (r370677) @@ -11,20 +11,19 @@ DISTNAME= AssaultCube_v${PORTVERSION} MAINTAINER= lightside@gmx.com COMMENT= Total conversion of the FPS game called Cube -LICENSE_COMB= multi LICENSE= ACUBE CUBE MIT OTHER +LICENSE_COMB= multi LICENSE_NAME_ACUBE= AssaultCube ZLIB-like license with additions -LICENSE_FILE_ACUBE= ${WRKSRC}/source/README.txt -LICENSE_PERMS_ACUBE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_NAME_CUBE= Cube game engine ZLIB-like license with additions -LICENSE_FILE_CUBE= ${WRKSRC}/source/README_CUBEENGINE.txt -LICENSE_PERMS_CUBE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_NAME_OTHER= various package licences +LICENSE_FILE_ACUBE= ${WRKSRC}/source/README.txt +LICENSE_FILE_CUBE= ${WRKSRC}/source/README_CUBEENGINE.txt LICENSE_FILE_OTHER= ${WRKSRC}/docs/package_copyrights.txt +LICENSE_PERMS_ACUBE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS_CUBE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_PERMS_OTHER= dist-mirror pkg-mirror auto-accept -USE_BZIP2= yes -USES= gmake openal:al +USES= gmake openal:al tar:bzip2 GNU_CONFIGURE= yes ALL_TARGET= libenet WRKSRC= ${WRKDIR}/AssaultCube_v${PORTVERSION} @@ -46,7 +45,7 @@ MASTER_DESC= Build master server .include .if ${PORT_OPTIONS:MCLIENT} -LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +LIB_DEPENDS+= libcurl.so:${PORTSDIR}/ftp/curl USES+= gettext USE_GL= yes USE_SDL= image mixer sdl From owner-svn-ports-head@FreeBSD.ORG Sat Oct 11 23:33:54 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF1471B8; Sat, 11 Oct 2014 23:33:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB28A809; Sat, 11 Oct 2014 23:33:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s9BNXrYB059813; Sat, 11 Oct 2014 23:33:53 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s9BNXrbs059811; Sat, 11 Oct 2014 23:33:53 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201410112333.s9BNXrbs059811@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Sat, 11 Oct 2014 23:33:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r370678 - head/games/pvpgn X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Oct 2014 23:33:54 -0000 Author: jhale Date: Sat Oct 11 23:33:52 2014 New Revision: 370678 URL: https://svnweb.freebsd.org/changeset/ports/370678 QAT: https://qat.redports.org/buildarchive/r370678/ Log: - Convert to options helpers - Simplify MASTER_SITES (although, they seem dead) - Cleanup plist Modified: head/games/pvpgn/Makefile head/games/pvpgn/pkg-plist Modified: head/games/pvpgn/Makefile ============================================================================== --- head/games/pvpgn/Makefile Sat Oct 11 22:50:14 2014 (r370677) +++ head/games/pvpgn/Makefile Sat Oct 11 23:33:52 2014 (r370678) @@ -5,8 +5,7 @@ PORTNAME= pvpgn PORTVERSION= 1.8.5 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= ${MASTER_SITE_BERLIOS} -MASTER_SITE_SUBDIR= pvpgn +MASTER_SITES= BERLIOS DISTFILES= ${EXTRACT_ONLY} pvpgn-support-1.2.tar.gz DIST_SUBDIR= pvpgn EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} @@ -38,34 +37,21 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/e USE_RC_SUBR= bnetd -OPTIONS_DEFINE= MYSQL PGSQL SQLITE3 D2 -D2_DESC= Diablo II server (D2CS/D2DBS) - +OPTIONS_DEFINE= D2 MYSQL PGSQL SQLITE3 OPTIONS_DEFAULT= D2 +OPTIONS_SUB= yes + +D2_DESC= Diablo II server (D2CS/D2DBS) +D2_CONFIGURE_ENABLE= d2cs d2dbs + +MYSQL_USE= MYSQL=yes +MYSQL_CONFIGURE_WITH= mysql -.include +PGSQL_USES= pgsql +PGSQL_CONFIGURE_WITH= pgsql -.if ${PORT_OPTIONS:MMYSQL} -USE_MYSQL= yes -CONFIGURE_ARGS+=--with-mysql -.endif - -.if ${PORT_OPTIONS:MPGSQL} -USE_PGSQL= yes -CONFIGURE_ARGS+=--with-pgsql -.endif - -.if ${PORT_OPTIONS:MSQLITE3} -USE_SQLITE= 3 -CONFIGURE_ARGS+=--with-sqlite3 -.endif - -.if ${PORT_OPTIONS:MD2} -PLIST_SUB+= WITH_D2="" -.else -CONFIGURE_ARGS+= --disable-d2cs --disable-d2dbs -PLIST_SUB+= WITH_D2="@comment " -.endif +SQLITE3_USE= SQLITE=3 +SQLITE3_CONFIGURE_WITH= sqlite3 ## support files @@ -91,11 +77,9 @@ post-install: ## Additional documentation -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in INSTALL.unix PORTS README.fdwatch README.storage bnmotd.txt ${INSTALL_DATA} ${WRKSRC}/../docs/${i} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include Modified: head/games/pvpgn/pkg-plist ============================================================================== --- head/games/pvpgn/pkg-plist Sat Oct 11 22:50:14 2014 (r370677) +++ head/games/pvpgn/pkg-plist Sat Oct 11 23:33:52 2014 (r370678) @@ -1,4 +1,3 @@ -@unexec %D/etc/rc.d/bnetd.sh stop > /dev/null 2>&1 || true bin/bnbot bin/bncdb bin/bnchat @@ -32,9 +31,9 @@ etc/pvpgn/bnxpcalc.conf-sample etc/pvpgn/bnxplevel.conf-sample etc/pvpgn/channel.conf-sample etc/pvpgn/command_groups.conf-sample -%%WITH_D2%%etc/pvpgn/d2cs.conf-sample -%%WITH_D2%%etc/pvpgn/d2dbs.conf-sample -%%WITH_D2%%etc/pvpgn/d2server.ini-sample +%%D2%%etc/pvpgn/d2cs.conf-sample +%%D2%%etc/pvpgn/d2dbs.conf-sample +%%D2%%etc/pvpgn/d2server.ini-sample etc/pvpgn/news.txt-sample etc/pvpgn/realm.conf-sample etc/pvpgn/sql_DB_layout.conf-sample @@ -59,8 +58,8 @@ man/man5/bnetd.conf.5.gz man/man5/bntext.5.gz sbin/bnetd sbin/bntrackd -%%WITH_D2%%sbin/d2cs -%%WITH_D2%%sbin/d2dbs +%%D2%%sbin/d2cs +%%D2%%sbin/d2dbs %%DATADIR%%/files/IX86ver1.mpq %%DATADIR%%/files/PMACver1.mpq %%DATADIR%%/files/XMACver1.mpq @@ -116,21 +115,3 @@ sbin/bntrackd %%DATADIR%%/files/tos_RUS.txt %%DATADIR%%/files/tos_SIN.txt %%DATADIR%%/files/tos_USA.txt -@dirrm %%DATADIR%%/bak/charinfo -@dirrm %%DATADIR%%/bak/charsave -@dirrm %%DATADIR%%/bak -@dirrm %%DATADIR%%/bnmail -@dirrm %%DATADIR%%/chanlogs -@dirrm %%DATADIR%%/charinfo -@dirrm %%DATADIR%%/charsave -@dirrm %%DATADIR%%/clans -@dirrm %%DATADIR%%/files -@dirrm %%DATADIR%%/ladders -@dirrm %%DATADIR%%/reports -@dirrm %%DATADIR%%/status -@dirrm %%DATADIR%%/teams -@dirrm %%DATADIR%%/users -@dirrm %%DATADIR%%/userscdb -@dirrmtry %%DATADIR%% -@dirrm etc/pvpgn -%%PORTDOCS%%@dirrm %%DOCSDIR%%