From owner-svn-ports-branches@freebsd.org Sun Jul 10 07:15:06 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CBFAB844ED; Sun, 10 Jul 2016 07:15:06 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5631617FC; Sun, 10 Jul 2016 07:15:06 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6A7F59H026969; Sun, 10 Jul 2016 07:15:05 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6A7F5uH026968; Sun, 10 Jul 2016 07:15:05 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201607100715.u6A7F5uH026968@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sun, 10 Jul 2016 07:15:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418300 - branches/2016Q3/databases/postgresql92-server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 07:15:06 -0000 Author: cmt Date: Sun Jul 10 07:15:05 2016 New Revision: 418300 URL: https://svnweb.freebsd.org/changeset/ports/418300 Log: MFH: r418277 do not strip binaries when building with DTRACE stripping would destroy some probes and might result in instable behaviour when trying to access those probes. PR: 204314 Approved by: rene (mentor), maintainer-timeout Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/databases/postgresql92-server/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/databases/postgresql92-server/Makefile ============================================================================== --- branches/2016Q3/databases/postgresql92-server/Makefile Sun Jul 10 07:07:56 2016 (r418299) +++ branches/2016Q3/databases/postgresql92-server/Makefile Sun Jul 10 07:15:05 2016 (r418300) @@ -165,6 +165,7 @@ PATCH_DIST_STRIP=-p1 . if ${PORT_OPTIONS:MDTRACE} CONFIGURE_ARGS+=--enable-dtrace LDFLAGS+=-lelf +INSTALL_TARGET=install . endif .if ${PORT_OPTIONS:MGSSAPI} From owner-svn-ports-branches@freebsd.org Sun Jul 10 07:21:57 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52891B8470B; Sun, 10 Jul 2016 07:21:57 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0D0951B9F; Sun, 10 Jul 2016 07:21:56 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6A7Lu4O029451; Sun, 10 Jul 2016 07:21:56 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6A7LuXu029449; Sun, 10 Jul 2016 07:21:56 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607100721.u6A7LuXu029449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 10 Jul 2016 07:21:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418302 - in branches/2016Q3/devel/gradle: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 07:21:57 -0000 Author: pi Date: Sun Jul 10 07:21:55 2016 New Revision: 418302 URL: https://svnweb.freebsd.org/changeset/ports/418302 Log: devel/gradle: Add missing dependency Gradle uses native-platform which has compiled its native component with g++, and requires that libstdc++.so.6 is available. See https://github.com/adammurdoch/native-platform/issues/8. PR: 208471 MFH: r418287 Submitted by: Tobias Kortkamp Approved by: portmgr Modified: branches/2016Q3/devel/gradle/Makefile branches/2016Q3/devel/gradle/files/gradle.in Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/gradle/Makefile ============================================================================== --- branches/2016Q3/devel/gradle/Makefile Sun Jul 10 07:21:17 2016 (r418301) +++ branches/2016Q3/devel/gradle/Makefile Sun Jul 10 07:21:55 2016 (r418302) @@ -3,6 +3,7 @@ PORTNAME= gradle PORTVERSION= 2.12 +PORTREVISION= 1 CATEGORIES= devel java MASTER_SITES= https://services.gradle.org/distributions/ DISTNAME= ${PORTNAME}-${PORTVERSION}-bin @@ -12,6 +13,11 @@ COMMENT= Project automation tool LICENSE= APACHE20 +# Gradle depends on native-platform which has a native component that +# requires libstdc++.so.6, because it was compiled with g++. +# See https://github.com/adammurdoch/native-platform/issues/8 +LIB_DEPENDS= libstdc++.so.6:misc/compat9x + USES= zip USE_JAVA= yes NO_BUILD= yes Modified: branches/2016Q3/devel/gradle/files/gradle.in ============================================================================== --- branches/2016Q3/devel/gradle/files/gradle.in Sun Jul 10 07:21:17 2016 (r418301) +++ branches/2016Q3/devel/gradle/files/gradle.in Sun Jul 10 07:21:55 2016 (r418302) @@ -1,2 +1,2 @@ -#!/usr/bin/env bash +#!/bin/sh exec "%%JAVA%%" -Dorg.gradle.native=false $JAVA_OPTS -classpath "%%DATADIR%%/lib/gradle-launcher-%%PORTVERSION%%.jar" org.gradle.launcher.GradleMain "$@" From owner-svn-ports-branches@freebsd.org Sun Jul 10 16:34:21 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9791BB843CB; Sun, 10 Jul 2016 16:34:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 643D61A0B; Sun, 10 Jul 2016 16:34:21 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AGYKn3035855; Sun, 10 Jul 2016 16:34:20 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6AGYKTq035854; Sun, 10 Jul 2016 16:34:20 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607101634.u6AGYKTq035854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 10 Jul 2016 16:34:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418329 - in branches/2016Q3/www/py-flexget: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 16:34:21 -0000 Author: jbeich Date: Sun Jul 10 16:34:20 2016 New Revision: 418329 URL: https://svnweb.freebsd.org/changeset/ports/418329 Log: MFH: r418328 www/py-flexget: unbreak runtime after r401600 and r401602 PR: 204729 Submitted by: koobs Approved by: portmgr's bustage blanket Approved by: ports-secteam' bustage blanket Added: branches/2016Q3/www/py-flexget/files/ - copied from r418328, head/www/py-flexget/files/ Modified: branches/2016Q3/www/py-flexget/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/py-flexget/Makefile ============================================================================== --- branches/2016Q3/www/py-flexget/Makefile Sun Jul 10 16:32:22 2016 (r418328) +++ branches/2016Q3/www/py-flexget/Makefile Sun Jul 10 16:34:20 2016 (r418329) @@ -3,6 +3,7 @@ PORTNAME= flexget PORTVERSION= 1.2.348 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP From owner-svn-ports-branches@freebsd.org Sun Jul 10 17:47:50 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A552B85DF7; Sun, 10 Jul 2016 17:47:50 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E0E641E66; Sun, 10 Jul 2016 17:47:49 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AHlnt6062247; Sun, 10 Jul 2016 17:47:49 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6AHlngx062246; Sun, 10 Jul 2016 17:47:49 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607101747.u6AHlngx062246@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 10 Jul 2016 17:47:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418334 - branches/2016Q3/Mk X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 17:47:50 -0000 Author: rakuco Date: Sun Jul 10 17:47:48 2016 New Revision: 418334 URL: https://svnweb.freebsd.org/changeset/ports/418334 Log: MFH: r418312 bsd.emacs.mk: Fix EMACS_VER for emacs-devel after r416838. The value did not match the one in editors/emacs-devel, so ports such as textproc/markdown-mode.el would fail `make build/run-depends` since the wrong binary name would be looked for. Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/Mk/bsd.emacs.mk Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/Mk/bsd.emacs.mk ============================================================================== --- branches/2016Q3/Mk/bsd.emacs.mk Sun Jul 10 17:26:54 2016 (r418333) +++ branches/2016Q3/Mk/bsd.emacs.mk Sun Jul 10 17:47:48 2016 (r418334) @@ -83,7 +83,7 @@ PLIST?= ${PKGDIR}/pkg-plist.${EMACS_PO # Emacs-24.x (development version) .elif (${EMACS_PORT_NAME} == "emacs-devel") EMACS_NAME= emacs -EMACS_VER= 25.0.93 +EMACS_VER= 25.0.95 EMACS_MAJOR_VER= 25 EMACS_LIBDIR?= share/${EMACS_NAME} EMACS_LIBDIR_WITH_VER?= share/${EMACS_NAME}/${EMACS_VER} From owner-svn-ports-branches@freebsd.org Sun Jul 10 17:48:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 17E1BB85EDB; Sun, 10 Jul 2016 17:48:58 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE83911D9; Sun, 10 Jul 2016 17:48:57 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AHmvC7062435; Sun, 10 Jul 2016 17:48:57 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6AHmvDU062434; Sun, 10 Jul 2016 17:48:57 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607101748.u6AHmvDU062434@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 10 Jul 2016 17:48:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418335 - branches/2016Q3/devel/qbs X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 17:48:58 -0000 Author: rakuco Date: Sun Jul 10 17:48:56 2016 New Revision: 418335 URL: https://svnweb.freebsd.org/changeset/ports/418335 Log: MFH: r418330 Declare missing dependencies to pass `make stage-qa'. Error: /usr/local/bin/qbs is linked to /usr/local/lib/libQt5Core.so.5 from devel/qt5-core but it is not declared as a dependency Warning: you need USE_QT5+=core Error: /usr/local/bin/qbs-config-ui is linked to /usr/local/lib/.mesa/libGL.so from graphics/libGL but it is not declared as a dependency Warning: you need USE_GL+=gl Error: /usr/local/lib/libqbscore.so.1.5.2 is linked to /usr/local/lib/libQt5Network.so.5 from net/qt5-network but it is not declared as a dependency Warning: you need USE_QT5+=network Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/devel/qbs/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/qbs/Makefile ============================================================================== --- branches/2016Q3/devel/qbs/Makefile Sun Jul 10 17:47:48 2016 (r418334) +++ branches/2016Q3/devel/qbs/Makefile Sun Jul 10 17:48:56 2016 (r418335) @@ -3,6 +3,7 @@ PORTNAME= qbs PORTVERSION= 1.5.1 DISTVERSIONPREFIX= src- +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= QT/official_releases/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/Qt/qbs @@ -14,8 +15,10 @@ LICENSE= GPLv3 LGPL21 LICENSE_COMB= dual USES= compiler:c++11-lib qmake:outsource +USE_GL= yes USE_LDCONFIG= yes -USE_QT5= buildtools_build concurrent gui script testlib widgets xml +USE_QT5= buildtools_build core concurrent gui network script testlib \ + widgets xml QMAKE_SOURCE_PATH= ${WRKSRC}/qbs.pro From owner-svn-ports-branches@freebsd.org Sun Jul 10 18:53:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8819EB8412D; Sun, 10 Jul 2016 18:53:20 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 408711471; Sun, 10 Jul 2016 18:53:20 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AIrJVZ088162; Sun, 10 Jul 2016 18:53:19 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6AIrJfi088161; Sun, 10 Jul 2016 18:53:19 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607101853.u6AIrJfi088161@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 10 Jul 2016 18:53:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418338 - branches/2016Q3/devel/qtcreator X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 18:53:20 -0000 Author: rakuco Date: Sun Jul 10 18:53:19 2016 New Revision: 418338 URL: https://svnweb.freebsd.org/changeset/ports/418338 Log: MFH: r418337 Add missing dependencies to pass `make stage-qa'. Error: /usr/local/bin/qtcreator is linked to /usr/local/lib/.mesa/libGL.so from graphics/libGL but it is not declared as a dependency Warning: you need USE_GL+=gl Error: /usr/local/lib/qtcreator/plugins/libCore.so is linked to /usr/local/lib/libQt5Help.so.5 from devel/qt5-help but it is not declared as a dependency Warning: you need USE_QT5+=help Error: /usr/local/lib/qtcreator/plugins/libCore.so is linked to /usr/local/lib/libQt5PrintSupport.so.5 from print/qt5-printsupport but it is not declared as a dependency Warning: you need USE_QT5+=printsupport Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/devel/qtcreator/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/qtcreator/Makefile ============================================================================== --- branches/2016Q3/devel/qtcreator/Makefile Sun Jul 10 18:16:17 2016 (r418337) +++ branches/2016Q3/devel/qtcreator/Makefile Sun Jul 10 18:53:19 2016 (r418338) @@ -3,7 +3,7 @@ PORTNAME= qtcreator DISTVERSION= 4.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION} DISTNAME= qt-creator-opensource-src-${DISTVERSION} @@ -18,9 +18,10 @@ RUN_DEPENDS= qbs:devel/qbs USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME} USES= qmake compiler:c++11-lib -USE_QT5= buildtools concurrent core declarative designer gui linguist \ - network qdoc qml quick quickcontrols script script sql svg \ - webkit widgets xml xmlpatterns +USE_GL= gl +USE_QT5= buildtools concurrent core declarative designer gui help \ + linguist network printsupport qdoc qml quick quickcontrols \ + script script sql svg webkit widgets xml xmlpatterns # be paranoid and do not extract qbs (devel/qbs) copy from source tree EXTRACT_AFTER_ARGS+= --exclude '${DISTNAME}/src/shared/qbs' From owner-svn-ports-branches@freebsd.org Sun Jul 10 20:22:46 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CE898B8300B; Sun, 10 Jul 2016 20:22:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7EDF11ECD; Sun, 10 Jul 2016 20:22:46 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AKMjOo021446; Sun, 10 Jul 2016 20:22:45 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6AKMj5M021444; Sun, 10 Jul 2016 20:22:45 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201607102022.u6AKMj5M021444@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 10 Jul 2016 20:22:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418342 - in branches/2016Q3/java/openjfx8-devel: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 20:22:46 -0000 Author: pi Date: Sun Jul 10 20:22:45 2016 New Revision: 418342 URL: https://svnweb.freebsd.org/changeset/ports/418342 Log: java/openjfx8-devel: Unbreak build after Gradle update - fix the build after recent update to Gradle 2.12. PR: 208470 MFH: r418313 Submitted by: Tobias Kortkamp (maintainer) Approved by: portmgr (junovitch) Modified: branches/2016Q3/java/openjfx8-devel/Makefile branches/2016Q3/java/openjfx8-devel/files/patch-build.gradle Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/java/openjfx8-devel/Makefile ============================================================================== --- branches/2016Q3/java/openjfx8-devel/Makefile Sun Jul 10 20:11:38 2016 (r418341) +++ branches/2016Q3/java/openjfx8-devel/Makefile Sun Jul 10 20:22:45 2016 (r418342) @@ -3,6 +3,7 @@ PORTNAME= openjfx8 PORTVERSION= 20160228 +PORTREVISION= 1 CATEGORIES= java x11-toolkits devel MASTER_SITES= https://bitbucket.org/tobik/openjfx-rt/get/ \ http://bitbucket.org/tobik/openjfx-rt/get/ @@ -16,8 +17,6 @@ COMMENT= JavaFX (OpenJFX) SDK overlay fo LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN= does not build - BUILD_DEPENDS= apache-ant>0:devel/apache-ant \ antlr3>0:devel/antlr3 \ gradle:devel/gradle \ Modified: branches/2016Q3/java/openjfx8-devel/files/patch-build.gradle ============================================================================== --- branches/2016Q3/java/openjfx8-devel/files/patch-build.gradle Sun Jul 10 20:11:38 2016 (r418341) +++ branches/2016Q3/java/openjfx8-devel/files/patch-build.gradle Sun Jul 10 20:22:45 2016 (r418342) @@ -1,5 +1,14 @@ --- build.gradle.orig 2016-02-28 12:54:50 UTC +++ build.gradle +@@ -125,7 +125,7 @@ void loadProperties(String sourceFileNam + def propFile = new File(sourceFileName) + if (propFile.canRead()) { + config.load(new FileInputStream(propFile)) +- for (Map.Entry property in config) { ++ for (property in config) { + def keySplit = property.key.split("\\."); + def key = keySplit[0]; + for (int i = 1; i < keySplit.length; i++) { @@ -1167,7 +1167,7 @@ allprojects { // By default all of our projects require junit for testing so we can just // setup this dependency here. From owner-svn-ports-branches@freebsd.org Sun Jul 10 21:37:03 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2B82B841A6; Sun, 10 Jul 2016 21:37:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7238614A7; Sun, 10 Jul 2016 21:37:03 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6ALb293047968; Sun, 10 Jul 2016 21:37:02 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6ALb2Lj047967; Sun, 10 Jul 2016 21:37:02 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607102137.u6ALb2Lj047967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 10 Jul 2016 21:37:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418347 - branches/2016Q3/devel/cmake-gui X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 21:37:03 -0000 Author: rakuco Date: Sun Jul 10 21:37:02 2016 New Revision: 418347 URL: https://svnweb.freebsd.org/changeset/ports/418347 Log: MFH: r418346 Add missing dependencies to pass `make stage-qa'. Error: /usr/local/bin/cmake-gui is linked to /usr/local/lib/libexecinfo.so.1 from devel/libexecinfo but it is not declared as a dependency Warning: you need USES+=execinfo Error: /usr/local/bin/cmake-gui is linked to /usr/local/lib/libjsoncpp.so.1 from devel/jsoncpp but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libjsoncpp.so:devel/jsoncpp Approved by: ports-secteam (junovitch, implicit) Modified: branches/2016Q3/devel/cmake-gui/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/cmake-gui/Makefile ============================================================================== --- branches/2016Q3/devel/cmake-gui/Makefile Sun Jul 10 21:36:07 2016 (r418346) +++ branches/2016Q3/devel/cmake-gui/Makefile Sun Jul 10 21:37:02 2016 (r418347) @@ -2,6 +2,7 @@ PORTNAME= cmake PORTVERSION= 3.5.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ PKGNAMESUFFIX= -gui @@ -14,10 +15,12 @@ LICENSE_FILE= ${WRKSRC}/Copyright.txt BUILD_DEPENDS= sphinx-build:textproc/py-sphinx LIB_DEPENDS= libcurl.so:ftp/curl \ - libexpat.so:textproc/expat2 + libexpat.so:textproc/expat2 \ + libjsoncpp.so:devel/jsoncpp USE_QT5= core gui widgets buildtools_build qmake_build -USES= cmake:run desktop-file-utils libarchive shared-mime-info +USES= cmake:run desktop-file-utils execinfo libarchive \ + shared-mime-info CMAKE_ARGS= -DBUILD_QtDialog:bool=on \ -DBUILD_CursesDialog:BOOL=OFF \ -DSPHINX_MAN:BOOL=ON \ From owner-svn-ports-branches@freebsd.org Tue Jul 12 08:28:34 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11F33B9311A; Tue, 12 Jul 2016 08:28:34 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D2A2B1517; Tue, 12 Jul 2016 08:28:33 +0000 (UTC) (envelope-from blackend@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6C8SXDk025803; Tue, 12 Jul 2016 08:28:33 GMT (envelope-from blackend@FreeBSD.org) Received: (from blackend@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6C8SW1G025796; Tue, 12 Jul 2016 08:28:32 GMT (envelope-from blackend@FreeBSD.org) Message-Id: <201607120828.u6C8SW1G025796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: blackend set sender to blackend@FreeBSD.org using -f From: Marc Fonvieille Date: Tue, 12 Jul 2016 08:28:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418415 - in branches/2016Q3/misc: freebsd-doc-all freebsd-doc-de freebsd-doc-en freebsd-doc-zh_tw X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2016 08:28:34 -0000 Author: blackend (doc committer) Date: Tue Jul 12 08:28:32 2016 New Revision: 418415 URL: https://svnweb.freebsd.org/changeset/ports/418415 Log: MFH: r418311 Update to r49071 from the FreeBSD docset (a.k.a. 11.0-R version). Approved by: portmgr (blanket), doceng (implicit) Modified: branches/2016Q3/misc/freebsd-doc-all/Makefile branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-common branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-split branches/2016Q3/misc/freebsd-doc-en/Makefile branches/2016Q3/misc/freebsd-doc-en/distinfo branches/2016Q3/misc/freebsd-doc-en/pkg-plist.html-split branches/2016Q3/misc/freebsd-doc-zh_tw/pkg-plist.html-split Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/misc/freebsd-doc-all/Makefile ============================================================================== --- branches/2016Q3/misc/freebsd-doc-all/Makefile Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-all/Makefile Tue Jul 12 08:28:32 2016 (r418415) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= freebsd-doc-all -PORTVERSION= 48963 +PORTVERSION= 49071 PORTEPOCH= 1 CATEGORIES= misc docs Modified: branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-common ============================================================================== --- branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-common Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-common Tue Jul 12 08:28:32 2016 (r418415) @@ -48,6 +48,7 @@ %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-adduser2.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-adduser3.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-boot-loader-menu.png +%%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-boot-options-menu.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-choose-mode.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-config-components.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-config-crashdump.png @@ -76,6 +77,7 @@ %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-mainexit.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-netinstall-files.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-netinstall-mirrorselect.png +%%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-newboot-loader-menu.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-part-entire-part.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-part-guided-disk.png %%DOCSDIR%%/%%DOCLANG%%/books/handbook/bsdinstall/bsdinstall-part-guided-manual.png Modified: branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-split ============================================================================== --- branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-split Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-de/pkg-plist.html-split Tue Jul 12 08:28:32 2016 (r418415) @@ -256,7 +256,6 @@ %%DOCSDIR%%/%%DOCLANG%%/books/handbook/consoles.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/creating-cds.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/creating-dvds.html -%%DOCSDIR%%/%%DOCLANG%%/books/handbook/ctm.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/current-stable.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/desktop-browsers.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/desktop-finance.html @@ -365,7 +364,6 @@ %%DOCSDIR%%/%%DOCLANG%%/books/handbook/mail-trouble.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/mail-using.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/mail.html -%%DOCSDIR%%/%%DOCLANG%%/books/handbook/make-delete-old.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/makeworld.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/mirrors-ftp.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/mirrors-rsync.html @@ -426,6 +424,7 @@ %%DOCSDIR%%/%%DOCLANG%%/books/handbook/security-intro.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/security-pkg.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/security-resourcelimits.html +%%DOCSDIR%%/%%DOCLANG%%/books/handbook/security-sudo.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/security.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/sendmail.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/serial.html Modified: branches/2016Q3/misc/freebsd-doc-en/Makefile ============================================================================== --- branches/2016Q3/misc/freebsd-doc-en/Makefile Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-en/Makefile Tue Jul 12 08:28:32 2016 (r418415) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= freebsd-doc -PORTVERSION= 48963 +PORTVERSION= 49071 PORTEPOCH= 1 CATEGORIES= misc docs MASTER_SITES= LOCAL/blackend Modified: branches/2016Q3/misc/freebsd-doc-en/distinfo ============================================================================== --- branches/2016Q3/misc/freebsd-doc-en/distinfo Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-en/distinfo Tue Jul 12 08:28:32 2016 (r418415) @@ -1,2 +1,2 @@ -SHA256 (freebsd-doc-48963.tar.gz) = 85a4b5b5a13853926a66516f0b6873c6b2c4da606526615ef0063791d6a8ec68 -SIZE (freebsd-doc-48963.tar.gz) = 49712463 +SHA256 (freebsd-doc-49071.tar.gz) = a5ea42f8f5f8f05ea9e71a3992f17a53f75308d8719066b9998bc8ed14e2be10 +SIZE (freebsd-doc-49071.tar.gz) = 49784305 Modified: branches/2016Q3/misc/freebsd-doc-en/pkg-plist.html-split ============================================================================== --- branches/2016Q3/misc/freebsd-doc-en/pkg-plist.html-split Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-en/pkg-plist.html-split Tue Jul 12 08:28:32 2016 (r418415) @@ -1030,6 +1030,7 @@ %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-pear.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-perl5.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-pgsql.html +%%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-php.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-pkgconfig.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-pure.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-pyqt.html @@ -1041,6 +1042,7 @@ %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-shared-mime-info.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-shebangfix.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-sqlite.html +%%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-ssl.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-tar.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-tcl.html %%DOCSDIR%%/%%DOCLANG%%/books/porters-handbook/uses-terminfo.html Modified: branches/2016Q3/misc/freebsd-doc-zh_tw/pkg-plist.html-split ============================================================================== --- branches/2016Q3/misc/freebsd-doc-zh_tw/pkg-plist.html-split Tue Jul 12 07:00:29 2016 (r418414) +++ branches/2016Q3/misc/freebsd-doc-zh_tw/pkg-plist.html-split Tue Jul 12 08:28:32 2016 (r418415) @@ -121,52 +121,76 @@ %%DOCSDIR%%/%%DOCLANG%%/books/developers-handbook/x86-unix-filters.html %%DOCSDIR%%/%%DOCLANG%%/books/developers-handbook/x86.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/doc-build-makefiles.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/doc-build-toolset.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/doc-build.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-block-elements.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-document-structure.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-fpi.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-freebsd-extensions.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-images.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-inline-elements.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup-links.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/docbook-markup.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/editor-config-emacs.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/editor-config-nano.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/editor-config.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/examples-docbook-article.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/examples-formatted.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/examples.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/index.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/ix01.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/legalnotice.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/make-includes.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/overview-before.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/overview-quick-start.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/overview.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations-building.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations-creating.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations-quick-start.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations-submitting.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations-tips.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations-translating.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/po-translations.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/preface-acknowledgements.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/preface-conventions.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/preface-notes.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/preface.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/psgml-mode.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/see-also-docbook.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/see-also-html.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/see-also-linuxdoc.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/see-also-sgml.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/see-also-xml.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/see-also.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-markup-docbook.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-markup.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-comments.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-conclusion.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-doctype-declaration.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-elements.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-entities.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-include.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-marked-sections.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer-sgml-escape.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/sgml-primer.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/structure-document.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/structure-locale.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/structure.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/stylesheets-css.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/stylesheets.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/the-website-build.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/the-website-env.html -%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/the-website-install.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/the-website.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/tools-optional.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/tools.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/translations.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy-checking-out.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy-choosing-directory.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy-making-diff.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy-revert.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy-subversion-references.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy-updating.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/working-copy.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/writing-style-guide.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/writing-style-guidelines.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/writing-style-word-list.html %%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/writing-style.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xhtml-markup-block-elements.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xhtml-markup-fpi.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xhtml-markup-inline-elements.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xhtml-markup-sectional-elements.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xhtml-markup.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-comments.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-conclusion.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-doctype-declaration.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-elements.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-entities.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-include.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-marked-sections.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer-xml-escape.html +%%DOCSDIR%%/%%DOCLANG%%/books/fdp-primer/xml-primer.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/ACPI-debug.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/MAC-examplehttpd.html %%DOCSDIR%%/%%DOCLANG%%/books/handbook/SMTP-Auth.html From owner-svn-ports-branches@freebsd.org Tue Jul 12 22:08:39 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92C7FB939B1; Tue, 12 Jul 2016 22:08:39 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 597AF12B6; Tue, 12 Jul 2016 22:08:39 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6CM8c9X033375; Tue, 12 Jul 2016 22:08:38 GMT (envelope-from truckman@FreeBSD.org) Received: (from truckman@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6CM8cQA033373; Tue, 12 Jul 2016 22:08:38 GMT (envelope-from truckman@FreeBSD.org) Message-Id: <201607122208.u6CM8cQA033373@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: truckman set sender to truckman@FreeBSD.org using -f From: Don Lewis Date: Tue, 12 Jul 2016 22:08:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418450 - in branches/2016Q3/editors: openoffice-4 openoffice-devel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2016 22:08:39 -0000 Author: truckman Date: Tue Jul 12 22:08:38 2016 New Revision: 418450 URL: https://svnweb.freebsd.org/changeset/ports/418450 Log: MFH: r418412 Add missing dependencies reported by stage-qa: USE_XORG+= sm xinerama devel/dbus (when GNOME option is enabled) multimedia/gstreamer (when MMEDIA option is enabled) graphics/poppler (-devel only, when PDFIMPORT option is enabled) Add USES=ssl since this OpenOffice does use OpenSSL. The base and ports versions of OpenSSL are both known to work. It is unknown if LibreSSL works because the dependency ftp/curl does not currently build with LibreSSL. Replace one remaining path to a .jar file with ${JAVALIBDIR} in CONFIGURE_ARGS. Replace an absolute symlink with a relative one. Re-align \ line continuation characters in *_DEPENDS after removal of ${PORTSDIR} from dependencies, and make a few other whitespace cleanups. Approved by: ports-secteam (feld) Modified: branches/2016Q3/editors/openoffice-4/Makefile branches/2016Q3/editors/openoffice-devel/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/editors/openoffice-4/Makefile ============================================================================== --- branches/2016Q3/editors/openoffice-4/Makefile Tue Jul 12 22:03:52 2016 (r418449) +++ branches/2016Q3/editors/openoffice-4/Makefile Tue Jul 12 22:08:38 2016 (r418450) @@ -3,7 +3,7 @@ PORTNAME= apache-openoffice PORTVERSION= ${AOOVERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= editors java MASTER_SITES= APACHE/openoffice/${PORTVERSION}/source \ http://tools.openoffice.org/unowinreg_prebuild/680/:unoreg \ @@ -47,50 +47,50 @@ LICENSE_PERMS_TWAIN= dist-mirror dist-se LICENSE_PERMS_W3C= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= \ - p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ - p5-libwww>=0:www/p5-libwww \ - p5-XML-Parser>=0:textproc/p5-XML-Parser \ - ${LOCALBASE}/bin/unzip:archivers/unzip \ - zip:archivers/zip \ - ant:devel/apache-ant \ + p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ + p5-libwww>=0:www/p5-libwww \ + p5-XML-Parser>=0:textproc/p5-XML-Parser \ + ${LOCALBASE}/bin/unzip:archivers/unzip \ + zip:archivers/zip \ + ant:devel/apache-ant \ ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs \ - dmake:devel/dmake \ - epm:devel/epm \ - ${LOCALBASE}/bin/gperf:devel/gperf \ - imake:devel/imake \ - gpatch:devel/patch \ - ${LOCALBASE}/include/sane/sane.h:graphics/sane-backends \ - ${LOCALBASE}/bin/vigra-config:graphics/vigra \ + dmake:devel/dmake \ + epm:devel/epm \ + ${LOCALBASE}/bin/gperf:devel/gperf \ + imake:devel/imake \ + gpatch:devel/patch \ + ${LOCALBASE}/include/sane/sane.h:graphics/sane-backends \ + ${LOCALBASE}/bin/vigra-config:graphics/vigra \ ${JAVALIBDIR}/commons-httpclient.jar:java/jakarta-commons-httpclient \ ${JAVALIBDIR}/commons-lang.jar:java/jakarta-commons-lang \ - ${JAVALIBDIR}/junit.jar:java/junit \ - ${JAVALIBDIR}/bsh.jar:lang/bsh \ - bash:shells/bash \ - ${JAVALIBDIR}/lucene-core-3.6.2.jar:textproc/lucene \ + ${JAVALIBDIR}/junit.jar:java/junit \ + ${JAVALIBDIR}/bsh.jar:lang/bsh \ + bash:shells/bash \ + ${JAVALIBDIR}/lucene-core-3.6.2.jar:textproc/lucene \ p5-libwww>=0:www/p5-libwww LIB_DEPENDS= \ - libapr-1.so:devel/apr1 \ - libnspr4.so:devel/nspr \ - libcurl.so:ftp/curl \ - libcairo.so:graphics/cairo \ - libpng.so:graphics/png \ - libpoppler-glib.so:graphics/poppler-glib \ - libgraphite.so:graphics/silgraphite \ - libCoinMP.so:math/coinmp \ - libfreetype.so:print/freetype2 \ - libnss3.so:security/nss \ - libexpat.so:textproc/expat2 \ - libhunspell-1.3.so:textproc/hunspell \ - libhyphen.so:textproc/hyphen \ - libtextcat.so:textproc/libtextcat \ - libmythes-1.2.so:textproc/mythes \ - librdf.so:textproc/redland \ - libserf-1.so:www/serf \ + libapr-1.so:devel/apr1 \ + libnspr4.so:devel/nspr \ + libcurl.so:ftp/curl \ + libcairo.so:graphics/cairo \ + libpng.so:graphics/png \ + libpoppler-glib.so:graphics/poppler-glib \ + libgraphite.so:graphics/silgraphite \ + libCoinMP.so:math/coinmp \ + libfreetype.so:print/freetype2 \ + libnss3.so:security/nss \ + libexpat.so:textproc/expat2 \ + libhunspell-1.3.so:textproc/hunspell \ + libhyphen.so:textproc/hyphen \ + libtextcat.so:textproc/libtextcat \ + libmythes-1.2.so:textproc/mythes \ + librdf.so:textproc/redland \ + libserf-1.so:www/serf \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= \ ${LOCALBASE}/share/icons/hicolor/index.theme:misc/hicolor-icon-theme \ ${JAVALIBDIR}/commons-httpclient.jar:java/jakarta-commons-httpclient \ - ${JAVALIBDIR}/bsh.jar:lang/bsh \ + ${JAVALIBDIR}/bsh.jar:lang/bsh \ ${LOCALBASE}/share/fonts/Caladea/Caladea-Bold.ttf:x11-fonts/crosextrafonts-caladea-ttf \ ${LOCALBASE}/share/fonts/Carlito/Carlito-Bold.ttf:x11-fonts/crosextrafonts-carlito-ttf \ ${LOCALBASE}/share/fonts/ChromeOS/Arimo-Bold.ttf:x11-fonts/croscorefonts-fonts-ttf @@ -113,6 +113,7 @@ INSTALLATION_BASEDIR?= openoffice-${AOOS PRINSTALLATION_BASEDIR= ${PREFIX}/${INSTALLATION_BASEDIR} OOPATH= ${PRINSTALLATION_BASEDIR}/openoffice${AOOVERSION1} XDGDIR= ${OOPATH}/share/xdg +XDGREL= ../../${INSTALLATION_BASEDIR}/openoffice${AOOVERSION1}/share/xdg EXECBASE?= openoffice-${AOOSUFFIX} ONLY_FOR_ARCHS= i386 amd64 @@ -125,12 +126,12 @@ JAVA_RUN= jdk JAVA_VENDOR= openjdk JAVA_VERSION= 1.6+ USE_PERL5= build -USE_XORG= ice x11 xau xaw xcomposite xcursor xdamage xext xfixes xi \ - xrandr xrender xt +USE_XORG= ice sm x11 xau xaw xcomposite xcursor xdamage xext xfixes xi \ + xinerama xrandr xrender xt USES= autoreconf:autoconf bison compiler:c++11-lib cpe \ desktop-file-utils \ gettext-runtime gmake iconv jpeg perl5 pkgconfig python \ - shared-mime-info tar:bzip2 + shared-mime-info ssl tar:bzip2 INSTALLS_ICONS= yes WITHOUT_CPU_CFLAGS= true CPE_PRODUCT= ${PORTNAME:S|apache-||} @@ -149,7 +150,8 @@ CUPS_CONFIGURE_ENABLE= cups CUPS_LIB_DEPENDS= libcups.so:print/cups GNOME_CONFIGURE_ENABLE= dbus gconf lockdown -GNOME_LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib +GNOME_LIB_DEPENDS= libdbus-1.so:devel/dbus \ + libdbus-glib-1.so:devel/dbus-glib GNOME_USE= GNOME=gconf2 GNOMEVFS_CONFIGURE_ENABLE= gnome-vfs @@ -158,6 +160,7 @@ GNOMEVFS_CONFIGURE_ON= --disable-gio GNOMEVFS_USE= GNOME=gnomevfs2 MMEDIA_CONFIGURE_ENABLE= gstreamer +MMEDIA_LIB_DEPENDS= libgstreamer-0.10.so:multimedia/gstreamer MMEDIA_USE= GSTREAMER=yes SDK_CONFIGURE_ENABLE= odk @@ -238,7 +241,7 @@ CONFIGURE_ARGS+= \ --with-system-hyphen \ --with-external-hyph-dir=${LOCALBASE}/share/hyphen \ --with-system-jpeg \ - --with-junit=${LOCALBASE}/share/java/classes/junit.jar \ + --with-junit=${JAVALIBDIR}/junit.jar \ --with-system-libtextcat \ --disable-kde \ --disable-kde4 \ @@ -394,7 +397,7 @@ do-build: fi ; \ fi ; \ cd ${WRKSRC}/instsetoo_native ; \ - . ../${FREEBSD_ENV_SET} ; \ + . ../${FREEBSD_ENV_SET} ; \ LANG=C LC_ALL=C build.pl --all -P$${numproc} -- -P$${dmproc} do-install: @@ -423,7 +426,7 @@ do-install: ${LN} -f ${EXECBASE} ${EXECBASE}-$${i} ; \ done @${ECHO_CMD} "adding desktop support" - @${LN} -sf ${XDGDIR} ${STAGEDIR}${DESKTOPDIR}/${EXECBASE} + @${LN} -sf ${XDGREL} ${STAGEDIR}${DESKTOPDIR}/${EXECBASE} @cd ${WRKSRC}/sysui/unxfbsd?.pro/misc/openoffice ; \ DESTDIR=${STAGEDIR} \ GNOMEDIR=${PREFIX} \ Modified: branches/2016Q3/editors/openoffice-devel/Makefile ============================================================================== --- branches/2016Q3/editors/openoffice-devel/Makefile Tue Jul 12 22:03:52 2016 (r418449) +++ branches/2016Q3/editors/openoffice-devel/Makefile Tue Jul 12 22:08:38 2016 (r418450) @@ -3,7 +3,7 @@ PORTNAME= apache-openoffice PORTVERSION= ${AOOVERSION1}.${AOOVERSION2}.${SVNREVISION} -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 4 CATEGORIES= editors java MASTER_SITES= https://dist.apache.org/repos/dist/dev/openoffice/${AOOVERSION}-${AOORC}-r${SVNREVISION}/source/ \ @@ -49,50 +49,50 @@ LICENSE_PERMS_TWAIN= dist-mirror dist-se LICENSE_PERMS_W3C= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BUILD_DEPENDS= \ - p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ - p5-libwww>=0:www/p5-libwww \ - p5-XML-Parser>=0:textproc/p5-XML-Parser \ - ${LOCALBASE}/bin/unzip:archivers/unzip \ - zip:archivers/zip \ - ant:devel/apache-ant \ + p5-Archive-Zip>=0:archivers/p5-Archive-Zip \ + p5-libwww>=0:www/p5-libwww \ + p5-XML-Parser>=0:textproc/p5-XML-Parser \ + ${LOCALBASE}/bin/unzip:archivers/unzip \ + zip:archivers/zip \ + ant:devel/apache-ant \ ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs \ - dmake:devel/dmake \ - epm:devel/epm \ - ${LOCALBASE}/bin/gperf:devel/gperf \ - imake:devel/imake \ - gpatch:devel/patch \ - ${LOCALBASE}/include/sane/sane.h:graphics/sane-backends \ - ${LOCALBASE}/bin/vigra-config:graphics/vigra \ + dmake:devel/dmake \ + epm:devel/epm \ + ${LOCALBASE}/bin/gperf:devel/gperf \ + imake:devel/imake \ + gpatch:devel/patch \ + ${LOCALBASE}/include/sane/sane.h:graphics/sane-backends \ + ${LOCALBASE}/bin/vigra-config:graphics/vigra \ ${JAVALIBDIR}/commons-httpclient.jar:java/jakarta-commons-httpclient \ ${JAVALIBDIR}/commons-lang.jar:java/jakarta-commons-lang \ - ${JAVALIBDIR}/junit.jar:java/junit \ - ${JAVALIBDIR}/bsh.jar:lang/bsh \ - bash:shells/bash \ - ${JAVALIBDIR}/lucene-core-3.6.2.jar:textproc/lucene \ + ${JAVALIBDIR}/junit.jar:java/junit \ + ${JAVALIBDIR}/bsh.jar:lang/bsh \ + bash:shells/bash \ + ${JAVALIBDIR}/lucene-core-3.6.2.jar:textproc/lucene \ p5-libwww>=0:www/p5-libwww LIB_DEPENDS= \ - libapr-1.so:devel/apr1 \ - libnspr4.so:devel/nspr \ - libcurl.so:ftp/curl \ - libcairo.so:graphics/cairo \ - libpng.so:graphics/png \ - libpoppler-glib.so:graphics/poppler-glib \ - libgraphite.so:graphics/silgraphite \ - libCoinMP.so:math/coinmp \ - libfreetype.so:print/freetype2 \ - libnss3.so:security/nss \ - libexpat.so:textproc/expat2 \ - libhunspell-1.3.so:textproc/hunspell \ - libhyphen.so:textproc/hyphen \ - libtextcat.so:textproc/libtextcat \ - libmythes-1.2.so:textproc/mythes \ - librdf.so:textproc/redland \ - libserf-1.so:www/serf \ + libapr-1.so:devel/apr1 \ + libnspr4.so:devel/nspr \ + libcurl.so:ftp/curl \ + libcairo.so:graphics/cairo \ + libpng.so:graphics/png \ + libpoppler-glib.so:graphics/poppler-glib \ + libgraphite.so:graphics/silgraphite \ + libCoinMP.so:math/coinmp \ + libfreetype.so:print/freetype2 \ + libnss3.so:security/nss \ + libexpat.so:textproc/expat2 \ + libhunspell-1.3.so:textproc/hunspell \ + libhyphen.so:textproc/hyphen \ + libtextcat.so:textproc/libtextcat \ + libmythes-1.2.so:textproc/mythes \ + librdf.so:textproc/redland \ + libserf-1.so:www/serf \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= \ ${LOCALBASE}/share/icons/hicolor/index.theme:misc/hicolor-icon-theme \ ${JAVALIBDIR}/commons-httpclient.jar:java/jakarta-commons-httpclient \ - ${JAVALIBDIR}/bsh.jar:lang/bsh \ + ${JAVALIBDIR}/bsh.jar:lang/bsh \ ${LOCALBASE}/share/fonts/Caladea/Caladea-Bold.ttf:x11-fonts/crosextrafonts-caladea-ttf \ ${LOCALBASE}/share/fonts/Carlito/Carlito-Bold.ttf:x11-fonts/crosextrafonts-carlito-ttf \ ${LOCALBASE}/share/fonts/ChromeOS/Arimo-Bold.ttf:x11-fonts/croscorefonts-fonts-ttf @@ -125,6 +125,7 @@ INSTALLATION_BASEDIR?= openoffice-${AOOS PRINSTALLATION_BASEDIR= ${PREFIX}/${INSTALLATION_BASEDIR} OOPATH= ${PRINSTALLATION_BASEDIR}/openoffice${AOOVERSION1} XDGDIR= ${OOPATH}/share/xdg +XDGREL= ../../${INSTALLATION_BASEDIR}/openoffice${AOOVERSION1}/share/xdg EXECBASE?= openoffice-${AOOSUFFIX} ONLY_FOR_ARCHS= i386 amd64 @@ -137,12 +138,12 @@ JAVA_RUN= jdk JAVA_VENDOR= openjdk JAVA_VERSION= 1.6+ USE_PERL5= build -USE_XORG= ice x11 xau xaw xcomposite xcursor xdamage xext xfixes xi \ - xrandr xrender xt +USE_XORG= ice sm x11 xau xaw xcomposite xcursor xdamage xext xfixes xi \ + xinerama xrandr xrender xt USES= autoreconf:autoconf bison compiler:c++11-lib cpe \ desktop-file-utils \ gettext-runtime gmake iconv jpeg perl5 pkgconfig python \ - shared-mime-info tar:${TARTYPE} + shared-mime-info ssl tar:${TARTYPE} INSTALLS_ICONS= yes WITHOUT_CPU_CFLAGS= true CPE_PRODUCT= ${PORTNAME:S|apache-||} @@ -162,7 +163,8 @@ CUPS_CONFIGURE_ENABLE= cups CUPS_LIB_DEPENDS= libcups.so:print/cups GNOME_CONFIGURE_ENABLE= dbus gconf lockdown -GNOME_LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib +GNOME_LIB_DEPENDS= libdbus-1.so:devel/dbus \ + libdbus-glib-1.so:devel/dbus-glib GNOME_USE= GNOME=gconf2 GNOMEVFS_CONFIGURE_ENABLE= gnome-vfs @@ -171,11 +173,13 @@ GNOMEVFS_CONFIGURE_ON= --disable-gio GNOMEVFS_USE= GNOME=gnomevfs2 MMEDIA_CONFIGURE_ENABLE= gstreamer +MMEDIA_LIB_DEPENDS= libgstreamer-0.10.so:multimedia/gstreamer MMEDIA_USE= GSTREAMER=yes SDK_CONFIGURE_ENABLE= odk PDFIMPORT_CONFIGURE_ENABLE= pdfimport +PDFIMPORT_LIB_DEPENDS= libpoppler.so:graphics/poppler WIKI_PUBLISHER_CONFIGURE_ENABLE= wiki-publisher @@ -252,7 +256,7 @@ CONFIGURE_ARGS+= \ --with-system-hyphen \ --with-external-hyph-dir=${LOCALBASE}/share/hyphen \ --with-system-jpeg \ - --with-junit=${LOCALBASE}/share/java/classes/junit.jar \ + --with-junit=${JAVALIBDIR}/junit.jar \ --with-system-libtextcat \ --disable-kde \ --disable-kde4 \ @@ -404,7 +408,7 @@ do-build: fi ; \ fi ; \ cd ${WRKSRC}/instsetoo_native ; \ - . ../${FREEBSD_ENV_SET} ; \ + . ../${FREEBSD_ENV_SET} ; \ LANG=C LC_ALL=C build.pl --all -P$${numproc} -- -P$${dmproc} do-install: @@ -433,7 +437,7 @@ do-install: ${LN} -f ${EXECBASE} ${EXECBASE}-$${i} ; \ done @${ECHO_CMD} "adding desktop support" - @${LN} -sf ${XDGDIR} ${STAGEDIR}${DESKTOPDIR}/${EXECBASE} + @${LN} -sf ${XDGREL} ${STAGEDIR}${DESKTOPDIR}/${EXECBASE} @cd ${WRKSRC}/sysui/unxfbsd?.pro/misc/openoffice ; \ DESTDIR=${STAGEDIR} \ GNOMEDIR=${PREFIX} \ From owner-svn-ports-branches@freebsd.org Wed Jul 13 01:54:30 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F08BB93A18; Wed, 13 Jul 2016 01:54:30 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CB51128C; Wed, 13 Jul 2016 01:54:30 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6D1sTDN017957; Wed, 13 Jul 2016 01:54:29 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6D1sTiJ017954; Wed, 13 Jul 2016 01:54:29 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607130154.u6D1sTiJ017954@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Wed, 13 Jul 2016 01:54:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418456 - in branches/2016Q3/sysutils/py-salt: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2016 01:54:30 -0000 Author: junovitch Date: Wed Jul 13 01:54:29 2016 New Revision: 418456 URL: https://svnweb.freebsd.org/changeset/ports/418456 Log: MFH: r418455 sysutils/py-salt: add patches to handle runtime regressions in 2016.3.x Fixes cron.file from upstream issue #34094/#34095 [1]. This will be in 2016.3.2. - https://github.com/saltstack/salt/issues/34094 - https://github.com/saltstack/salt/pull/34095 Restore patch for upstream issue #33608. This was patched in 2016.3.0 but removed in the maintainer update to 2016.3.1 in r417508. However the patch has yet to be merged upstream. [2] - https://github.com/saltstack/salt/issues/33608 PR: 210627 [1], 210395 [2] Reported by: Andres Montalban Approved by: Christer Edwards (maintainer) Approved by: ports-secteam (with hat) Added: branches/2016Q3/sysutils/py-salt/files/patch-salt_grains_core.py - copied unchanged from r418455, head/sysutils/py-salt/files/patch-salt_grains_core.py branches/2016Q3/sysutils/py-salt/files/patch-salt_states_cron.py - copied unchanged from r418455, head/sysutils/py-salt/files/patch-salt_states_cron.py Modified: branches/2016Q3/sysutils/py-salt/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/sysutils/py-salt/Makefile ============================================================================== --- branches/2016Q3/sysutils/py-salt/Makefile Wed Jul 13 01:53:45 2016 (r418455) +++ branches/2016Q3/sysutils/py-salt/Makefile Wed Jul 13 01:54:29 2016 (r418456) @@ -3,6 +3,7 @@ PORTNAME= salt PORTVERSION= 2016.3.1 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Copied: branches/2016Q3/sysutils/py-salt/files/patch-salt_grains_core.py (from r418455, head/sysutils/py-salt/files/patch-salt_grains_core.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/sysutils/py-salt/files/patch-salt_grains_core.py Wed Jul 13 01:54:29 2016 (r418456, copy of r418455, head/sysutils/py-salt/files/patch-salt_grains_core.py) @@ -0,0 +1,12 @@ +# Issue #33608 +# https://github.com/saltstack/salt/issues/33608 +--- salt/grains/core.py.orig 2016-05-25 22:30:31 UTC ++++ salt/grains/core.py +@@ -1422,6 +1422,7 @@ def os_data(): + else: + grains['os'] = grains['kernel'] + if grains['kernel'] == 'FreeBSD': ++ grains.update(_bsd_cpudata(grains)) + try: + grains['osrelease'] = __salt__['cmd.run']('freebsd-version -u').split('-')[0] + except salt.exceptions.CommandExecutionError: Copied: branches/2016Q3/sysutils/py-salt/files/patch-salt_states_cron.py (from r418455, head/sysutils/py-salt/files/patch-salt_states_cron.py) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/sysutils/py-salt/files/patch-salt_states_cron.py Wed Jul 13 01:54:29 2016 (r418456, copy of r418455, head/sysutils/py-salt/files/patch-salt_states_cron.py) @@ -0,0 +1,28 @@ +# Fixes cron.file from upstream issue #34094/#34095 [1]. This will be in +# 2016.3.2. +# https://github.com/saltstack/salt/issues/34094 +# https://github.com/saltstack/salt/pull/34095 +--- salt/states/cron.py.orig 2016-06-13 22:17:50 UTC ++++ salt/states/cron.py +@@ -540,6 +540,7 @@ def file(name, + __env__, + context, + defaults, ++ False, # skip_verify + **kwargs + ) + except Exception as exc: +@@ -573,12 +574,12 @@ def file(name, + ret['comment'] = 'Unable to manage file: {0}'.format(exc) + return ret + ++ cron_ret = None + if ret['changes']: + cron_ret = __salt__['cron.write_cron_file_verbose'](user, cron_path) + ret['changes'] = {'diff': ret['changes']['diff']} + ret['comment'] = 'Crontab for user {0} was updated'.format(user) + elif ret['result']: +- cron_ret = None + ret['comment'] = 'Crontab for user {0} is in the correct ' \ + 'state'.format(user) + From owner-svn-ports-branches@freebsd.org Wed Jul 13 11:22:57 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B280B97547; Wed, 13 Jul 2016 11:22:57 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 499A51DBA; Wed, 13 Jul 2016 11:22:57 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6DBMuC8034700; Wed, 13 Jul 2016 11:22:56 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6DBMuvj034698; Wed, 13 Jul 2016 11:22:56 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201607131122.u6DBMuvj034698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 13 Jul 2016 11:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418467 - branches/2016Q3/print/harfbuzz X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2016 11:22:57 -0000 Author: jbeich Date: Wed Jul 13 11:22:56 2016 New Revision: 418467 URL: https://svnweb.freebsd.org/changeset/ports/418467 Log: MFH: r418357 print/harfbuzz: update to 1.2.7 Changes: https://github.com/behdad/harfbuzz/compare/1.2.3...1.2.7 ABI: http://abi-laboratory.pro/tracker/timeline/harfbuzz/ PR: 208792 Approved by: maintainer timeout (3 months) Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/print/harfbuzz/Makefile branches/2016Q3/print/harfbuzz/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/print/harfbuzz/Makefile ============================================================================== --- branches/2016Q3/print/harfbuzz/Makefile Wed Jul 13 10:04:28 2016 (r418466) +++ branches/2016Q3/print/harfbuzz/Makefile Wed Jul 13 11:22:56 2016 (r418467) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 1.2.3 +PORTVERSION= 1.2.7 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -19,13 +19,11 @@ USE_GNOME= cairo glib20 introspection:bu GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-graphite2 --with-gobject=yes INSTALL_TARGET= install-strip +TEST_TARGET= check -PLIST_SUB+= LIBVER=0.10200.3 +PLIST_SUB+= LIBVER=0.10200.7 -.include +EXTRA_PATCHES+= ${EXTRA_PATCHES_${OPSYS}_${OSREL:R}} +EXTRA_PATCHES_FreeBSD_9= ${PATCHDIR}/extra-src_hb-open-type-private.hh -.if ${OSVERSION} < 1000024 -EXTRA_PATCHES= ${PATCHDIR}/extra-src_hb-open-type-private.hh -.endif - -.include +.include Modified: branches/2016Q3/print/harfbuzz/distinfo ============================================================================== --- branches/2016Q3/print/harfbuzz/distinfo Wed Jul 13 10:04:28 2016 (r418466) +++ branches/2016Q3/print/harfbuzz/distinfo Wed Jul 13 11:22:56 2016 (r418467) @@ -1,2 +1,2 @@ -SHA256 (harfbuzz-1.2.3.tar.bz2) = 8216d2404aaab7fde87be0365a90d64aa6c55928e104557cfcb37b54a096cb8c -SIZE (harfbuzz-1.2.3.tar.bz2) = 1337003 +SHA256 (harfbuzz-1.2.7.tar.bz2) = bba0600ae08b84384e6d2d7175bea10b5fc246c4583dc841498d01894d479026 +SIZE (harfbuzz-1.2.7.tar.bz2) = 1345389 From owner-svn-ports-branches@freebsd.org Wed Jul 13 13:32:58 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B88BBB977CD; Wed, 13 Jul 2016 13:32:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 960B71CF2; Wed, 13 Jul 2016 13:32:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6DDWv59083652; Wed, 13 Jul 2016 13:32:57 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6DDWven083644; Wed, 13 Jul 2016 13:32:57 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607131332.u6DDWven083644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 13 Jul 2016 13:32:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418477 - in branches/2016Q3/net: samba42 samba43 samba43/files samba44 samba44/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2016 13:32:58 -0000 Author: feld Date: Wed Jul 13 13:32:56 2016 New Revision: 418477 URL: https://svnweb.freebsd.org/changeset/ports/418477 Log: MFH: r418448 Update Samba 4.2, 4.3 and 4.4 to the lates version to address CVE-2016-2119 (Client side SMB2/3 required signing can be downgraded). Security: CVE-2016-2119 Approved by: ports-secteam (with hat) Deleted: branches/2016Q3/net/samba43/files/extra-patch-progress branches/2016Q3/net/samba43/files/patch-source3_client_smbspool_krb5_wrapper.c branches/2016Q3/net/samba44/files/patch-source3_client_smbspool_krb5_wrapper.c Modified: branches/2016Q3/net/samba42/Makefile branches/2016Q3/net/samba42/distinfo branches/2016Q3/net/samba43/Makefile branches/2016Q3/net/samba43/distinfo branches/2016Q3/net/samba43/pkg-plist branches/2016Q3/net/samba44/Makefile branches/2016Q3/net/samba44/distinfo branches/2016Q3/net/samba44/pkg-plist Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/samba42/Makefile ============================================================================== --- branches/2016Q3/net/samba42/Makefile Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba42/Makefile Wed Jul 13 13:32:56 2016 (r418477) @@ -19,7 +19,7 @@ EXTRA_PATCHES= ${PATCHDIR}/extra-patch- SAMBA4_BASENAME= samba SAMBA4_PORTNAME= ${SAMBA4_BASENAME}4 -SAMBA4_VERSION= 4.2.12 +SAMBA4_VERSION= 4.2.14 SAMBA4_DISTNAME= ${SAMBA4_BASENAME}-${SAMBA4_VERSION:S|.p|pre|:S|.r|rc|:S|.t|tp|:S|.a|alpha|} WRKSRC?= ${WRKDIR}/${DISTNAME} Modified: branches/2016Q3/net/samba42/distinfo ============================================================================== --- branches/2016Q3/net/samba42/distinfo Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba42/distinfo Wed Jul 13 13:32:56 2016 (r418477) @@ -1,2 +1,3 @@ -SHA256 (samba-4.2.12.tar.gz) = b334a86a92a1c2759c0b3dce20965e7fe820f0abafee38e6fd82eb9c5cd80514 -SIZE (samba-4.2.12.tar.gz) = 20878216 +TIMESTAMP = 1468280138 +SHA256 (samba-4.2.14.tar.gz) = db820a9947e44f04b0eb25e4aa0c3db32c4042fca541775ee8e2905093e888e6 +SIZE (samba-4.2.14.tar.gz) = 20883281 Modified: branches/2016Q3/net/samba43/Makefile ============================================================================== --- branches/2016Q3/net/samba43/Makefile Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba43/Makefile Wed Jul 13 13:32:56 2016 (r418477) @@ -15,11 +15,11 @@ LICENSE= GPLv3 CONFLICTS?= *samba3[2-6]-3.* samba4-4.0.* samba41-4.1.* samba42-4.2.* samba44-4.4.* -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-progress:-p1 +#EXTRA_PATCHES= ${PATCHDIR}/extra-patch-progress:-p1 SAMBA4_BASENAME= samba SAMBA4_PORTNAME= ${SAMBA4_BASENAME}4 -SAMBA4_VERSION= 4.3.9 +SAMBA4_VERSION= 4.3.11 SAMBA4_DISTNAME= ${SAMBA4_BASENAME}-${SAMBA4_VERSION:S|.p|pre|:S|.r|rc|:S|.t|tp|:S|.a|alpha|} WRKSRC?= ${WRKDIR}/${DISTNAME} @@ -89,6 +89,10 @@ BUILD_DEPENDS+= p5-Parse-Pidl>=4.3.1:de BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:dns/py-dnspython RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " +# +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 +PLIST_SUB+= PY_ISO8601="@comment " # talloc BUILD_DEPENDS+= talloc>=2.1.5:devel/talloc RUN_DEPENDS+= talloc>=2.1.5:devel/talloc Modified: branches/2016Q3/net/samba43/distinfo ============================================================================== --- branches/2016Q3/net/samba43/distinfo Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba43/distinfo Wed Jul 13 13:32:56 2016 (r418477) @@ -1,2 +1,3 @@ -SHA256 (samba-4.3.9.tar.gz) = 1f22c61a7f24c5357a9ef4d10833a2cd161f40f3db03bcbe586d7cd3a56139f3 -SIZE (samba-4.3.9.tar.gz) = 20570849 +TIMESTAMP = 1468280731 +SHA256 (samba-4.3.11.tar.gz) = 90a967310e34a31d5c9fc5f86855f334fc19815e7e59f5c2d72a9bba23cf4fec +SIZE (samba-4.3.11.tar.gz) = 20573432 Modified: branches/2016Q3/net/samba43/pkg-plist ============================================================================== --- branches/2016Q3/net/samba43/pkg-plist Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba43/pkg-plist Wed Jul 13 13:32:56 2016 (r418477) @@ -657,6 +657,7 @@ lib/shared-modules/vfs/zfsacl.so %%PYTHON_SITELIBDIR%%/samba/tests/samba3sam.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/__init__.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/base.py +%%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/fsmo.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/gpo.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/group.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/ntacl.py @@ -673,10 +674,10 @@ lib/shared-modules/vfs/zfsacl.so %%PYTHON_SITELIBDIR%%/samba/tests/upgradeprovision.py %%PYTHON_SITELIBDIR%%/samba/tests/upgradeprovisionneeddc.py %%PYTHON_SITELIBDIR%%/samba/tests/xattr.py -%%PYTHON_SITELIBDIR%%/samba/third_party/__init__.py -%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/__init__.py -%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/iso8601.py -%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/test_iso8601.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/__init__.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/__init__.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/iso8601.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/test_iso8601.py %%PYTHON_SITELIBDIR%%/samba/upgrade.py %%PYTHON_SITELIBDIR%%/samba/upgradehelpers.py %%PYTHON_SITELIBDIR%%/samba/web_server/__init__.py Modified: branches/2016Q3/net/samba44/Makefile ============================================================================== --- branches/2016Q3/net/samba44/Makefile Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba44/Makefile Wed Jul 13 13:32:56 2016 (r418477) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}44 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 1 +PORTREVISION?= 0 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -19,7 +19,7 @@ CONFLICTS?= *samba3[2-6]-3.* samba4-4.0 SAMBA4_BASENAME= samba SAMBA4_PORTNAME= ${SAMBA4_BASENAME}4 -SAMBA4_VERSION= 4.4.3 +SAMBA4_VERSION= 4.4.5 SAMBA4_DISTNAME= ${SAMBA4_BASENAME}-${SAMBA4_VERSION:S|.p|pre|:S|.r|rc|:S|.t|tp|:S|.a|alpha|} WRKSRC?= ${WRKDIR}/${DISTNAME} @@ -90,6 +90,10 @@ BUILD_DEPENDS+= p5-Parse-Pidl>=4.3.1:de BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:dns/py-dnspython RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " +# +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 +PLIST_SUB+= PY_ISO8601="@comment " # talloc BUILD_DEPENDS+= talloc>=2.1.6:devel/talloc RUN_DEPENDS+= talloc>=2.1.6:devel/talloc Modified: branches/2016Q3/net/samba44/distinfo ============================================================================== --- branches/2016Q3/net/samba44/distinfo Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba44/distinfo Wed Jul 13 13:32:56 2016 (r418477) @@ -1,2 +1,3 @@ -SHA256 (samba-4.4.3.tar.gz) = 031e6ada6d15deae6850845eed41497af32207fb679d6c6c74f19acc99d437ba -SIZE (samba-4.4.3.tar.gz) = 20705861 +TIMESTAMP = 1468271289 +SHA256 (samba-4.4.5.tar.gz) = b876ef2e63f66265490e80a122e66ef2d7616112b839df68f56ac2e1ce17a7bd +SIZE (samba-4.4.5.tar.gz) = 20715838 Modified: branches/2016Q3/net/samba44/pkg-plist ============================================================================== --- branches/2016Q3/net/samba44/pkg-plist Wed Jul 13 13:29:18 2016 (r418476) +++ branches/2016Q3/net/samba44/pkg-plist Wed Jul 13 13:32:56 2016 (r418477) @@ -608,6 +608,7 @@ lib/shared-modules/vfs/zfsacl.so %%PYTHON_SITELIBDIR%%/samba/tests/samba3sam.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/__init__.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/base.py +%%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/fsmo.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/gpo.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/group.py %%PYTHON_SITELIBDIR%%/samba/tests/samba_tool/ntacl.py @@ -625,10 +626,10 @@ lib/shared-modules/vfs/zfsacl.so %%PYTHON_SITELIBDIR%%/samba/tests/upgradeprovision.py %%PYTHON_SITELIBDIR%%/samba/tests/upgradeprovisionneeddc.py %%PYTHON_SITELIBDIR%%/samba/tests/xattr.py -%%PYTHON_SITELIBDIR%%/samba/third_party/__init__.py -%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/__init__.py -%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/iso8601.py -%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/test_iso8601.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/__init__.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/__init__.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/iso8601.py +%%PY_ISO8601%%%%PYTHON_SITELIBDIR%%/samba/third_party/iso8601/test_iso8601.py %%PYTHON_SITELIBDIR%%/samba/upgrade.py %%PYTHON_SITELIBDIR%%/samba/upgradehelpers.py %%PYTHON_SITELIBDIR%%/samba/web_server/__init__.py From owner-svn-ports-branches@freebsd.org Wed Jul 13 13:52:05 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0C2BB97F37; Wed, 13 Jul 2016 13:52:05 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 930521B0B; Wed, 13 Jul 2016 13:52:05 +0000 (UTC) (envelope-from robak@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6DDq4Ie091194; Wed, 13 Jul 2016 13:52:04 GMT (envelope-from robak@FreeBSD.org) Received: (from robak@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6DDq44L091192; Wed, 13 Jul 2016 13:52:04 GMT (envelope-from robak@FreeBSD.org) Message-Id: <201607131352.u6DDq44L091192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: robak set sender to robak@FreeBSD.org using -f From: Bartek Rutkowski Date: Wed, 13 Jul 2016 13:52:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418480 - branches/2016Q3/sysutils/iocage X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2016 13:52:05 -0000 Author: robak Date: Wed Jul 13 13:52:04 2016 New Revision: 418480 URL: https://svnweb.freebsd.org/changeset/ports/418480 Log: MFH: r418466 sysutils/iocage: update 1.7.4 -> 1.7.5 - Fix jails import bugs Approved by: ports-secteam Modified: branches/2016Q3/sysutils/iocage/Makefile branches/2016Q3/sysutils/iocage/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/sysutils/iocage/Makefile ============================================================================== --- branches/2016Q3/sysutils/iocage/Makefile Wed Jul 13 13:34:19 2016 (r418479) +++ branches/2016Q3/sysutils/iocage/Makefile Wed Jul 13 13:52:04 2016 (r418480) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iocage -PORTVERSION= 1.7.4 +PORTVERSION= 1.7.5 DISTVERSIONPREFIX=v CATEGORIES= sysutils Modified: branches/2016Q3/sysutils/iocage/distinfo ============================================================================== --- branches/2016Q3/sysutils/iocage/distinfo Wed Jul 13 13:34:19 2016 (r418479) +++ branches/2016Q3/sysutils/iocage/distinfo Wed Jul 13 13:52:04 2016 (r418480) @@ -1,2 +1,3 @@ -SHA256 (iocage-iocage-v1.7.4_GH0.tar.gz) = e3c4463a6b7bb0a595cfd82a5ff829ceda658886b7596d59f0c8f5c182ca80f2 -SIZE (iocage-iocage-v1.7.4_GH0.tar.gz) = 297040 +TIMESTAMP = 1468403765 +SHA256 (iocage-iocage-v1.7.5_GH0.tar.gz) = 99c404c078c8f2239c2c03bd7aacc4acee7a47fbe95d4325ee65fe186b743160 +SIZE (iocage-iocage-v1.7.5_GH0.tar.gz) = 297453 From owner-svn-ports-branches@freebsd.org Thu Jul 14 03:20:26 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC84BB98C92; Thu, 14 Jul 2016 03:20:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA01E160B; Thu, 14 Jul 2016 03:20:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6E3KPXf090060; Thu, 14 Jul 2016 03:20:25 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6E3KPXu090054; Thu, 14 Jul 2016 03:20:25 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201607140320.u6E3KPXu090054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 14 Jul 2016 03:20:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418511 - in branches/2016Q3/www: moodle29 moodle30 moodle31 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 03:20:27 -0000 Author: wen Date: Thu Jul 14 03:20:25 2016 New Revision: 418511 URL: https://svnweb.freebsd.org/changeset/ports/418511 Log: MFH: r418424 - Update moodle to 2.9.7, 3.0.5 and 3.1.1(include security fix) - Adjust CONFLICTS Approved by: ports-secteam@(feld@) Modified: branches/2016Q3/www/moodle29/Makefile branches/2016Q3/www/moodle29/distinfo branches/2016Q3/www/moodle30/Makefile branches/2016Q3/www/moodle30/distinfo branches/2016Q3/www/moodle31/Makefile branches/2016Q3/www/moodle31/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/moodle29/Makefile ============================================================================== --- branches/2016Q3/www/moodle29/Makefile Thu Jul 14 01:42:09 2016 (r418510) +++ branches/2016Q3/www/moodle29/Makefile Thu Jul 14 03:20:25 2016 (r418511) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 2.9.6 +PORTVERSION= 2.9.7 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable29/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} @@ -12,7 +12,7 @@ COMMENT= Course management system based LICENSE= GPLv3 -CONFLICTS= moodle31-3.1 moodle30-3.0.[0-9]* moodle28-2.8.[0-9]* +CONFLICTS= moodle31-3.1.[0-9]* moodle30-3.0.[0-9]* moodle28-2.8.[0-9]* USES= cpe tar:tgz USE_PHP= session gd pcre mbstring iconv tokenizer curl xml xmlrpc ctype \ Modified: branches/2016Q3/www/moodle29/distinfo ============================================================================== --- branches/2016Q3/www/moodle29/distinfo Thu Jul 14 01:42:09 2016 (r418510) +++ branches/2016Q3/www/moodle29/distinfo Thu Jul 14 03:20:25 2016 (r418511) @@ -1,2 +1,3 @@ -SHA256 (moodle-2.9.6.tgz) = b5b17e869cc7f122d7f624a6ec3cf9fcfaa7166b3020e3c819c2135ae7327a15 -SIZE (moodle-2.9.6.tgz) = 36582260 +TIMESTAMP = 1468351649 +SHA256 (moodle-2.9.7.tgz) = 87261ce872ef7bab3c04a4ae28cc41168af2d5fdd1c35bab6aca02132e3725db +SIZE (moodle-2.9.7.tgz) = 36586018 Modified: branches/2016Q3/www/moodle30/Makefile ============================================================================== --- branches/2016Q3/www/moodle30/Makefile Thu Jul 14 01:42:09 2016 (r418510) +++ branches/2016Q3/www/moodle30/Makefile Thu Jul 14 03:20:25 2016 (r418511) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.0.4 +PORTVERSION= 3.0.5 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable30/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} @@ -12,7 +12,7 @@ COMMENT= Course management system based LICENSE= GPLv3 -CONFLICTS= moodle28-2.8.[0-9]* moodle29-2.9.[0-9]* moodle31-3.1 +CONFLICTS= moodle28-2.8.[0-9]* moodle29-2.9.[0-9]* moodle31-3.1.[0-9]* USES= cpe tar:tgz USE_PHP= ctype curl dom gd hash iconv intl json mbstring opcache \ Modified: branches/2016Q3/www/moodle30/distinfo ============================================================================== --- branches/2016Q3/www/moodle30/distinfo Thu Jul 14 01:42:09 2016 (r418510) +++ branches/2016Q3/www/moodle30/distinfo Thu Jul 14 03:20:25 2016 (r418511) @@ -1,2 +1,3 @@ -SHA256 (moodle-3.0.4.tgz) = 27e3f58d2bc1e63163f5c7d27aaf5548c216a433e87be7bf429030aada43b469 -SIZE (moodle-3.0.4.tgz) = 38110816 +TIMESTAMP = 1468349825 +SHA256 (moodle-3.0.5.tgz) = e8a6a3661e036b3cf0b6d89ed2a6af5da58561e1a94118512e92cab39071ca97 +SIZE (moodle-3.0.5.tgz) = 38156153 Modified: branches/2016Q3/www/moodle31/Makefile ============================================================================== --- branches/2016Q3/www/moodle31/Makefile Thu Jul 14 01:42:09 2016 (r418510) +++ branches/2016Q3/www/moodle31/Makefile Thu Jul 14 03:20:25 2016 (r418511) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moodle -PORTVERSION= 3.1 +PORTVERSION= 3.1.1 CATEGORIES= www MASTER_SITES= SF/moodle/Moodle/stable31/ PKGNAMESUFFIX= ${PKGORIGIN:T:S/moodle//} Modified: branches/2016Q3/www/moodle31/distinfo ============================================================================== --- branches/2016Q3/www/moodle31/distinfo Thu Jul 14 01:42:09 2016 (r418510) +++ branches/2016Q3/www/moodle31/distinfo Thu Jul 14 03:20:25 2016 (r418511) @@ -1,3 +1,3 @@ -TIMESTAMP = 1464077765 -SHA256 (moodle-3.1.tgz) = 5debb77fe2a82f28b25505f1244cc9e641b1c0b20dfefe831917c605da74151c -SIZE (moodle-3.1.tgz) = 37440572 +TIMESTAMP = 1468347071 +SHA256 (moodle-3.1.1.tgz) = 7460caa0ba242de1ba3ed83bce3aebe138ecc7472d1fa96f6d28946a8e38bac1 +SIZE (moodle-3.1.1.tgz) = 37479843 From owner-svn-ports-branches@freebsd.org Thu Jul 14 06:24:39 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 73A99B9879E; Thu, 14 Jul 2016 06:24:39 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 403DF13DD; Thu, 14 Jul 2016 06:24:39 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6E6Ocpa060418; Thu, 14 Jul 2016 06:24:38 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6E6OcLE060417; Thu, 14 Jul 2016 06:24:38 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201607140624.u6E6OcLE060417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Thu, 14 Jul 2016 06:24:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418515 - branches/2016Q3/emulators/i386-wine-devel X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 06:24:39 -0000 Author: dbn Date: Thu Jul 14 06:24:38 2016 New Revision: 418515 URL: https://svnweb.freebsd.org/changeset/ports/418515 Log: MFH: r418486 emulators/i386-wine-devel: fix gecko dependency bump. PR: 210740, 219095 Reported by: Piotr Kubaj , Ivan Klymenko Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8F50B98D11; Thu, 14 Jul 2016 12:04:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A58F11750; Thu, 14 Jul 2016 12:04:42 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6EC4fGf087899; Thu, 14 Jul 2016 12:04:41 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6EC4fTF087898; Thu, 14 Jul 2016 12:04:41 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201607141204.u6EC4fTF087898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Thu, 14 Jul 2016 12:04:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418530 - branches/2016Q3/mail/postsrsd X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 12:04:43 -0000 Author: koobs Date: Thu Jul 14 12:04:41 2016 New Revision: 418530 URL: https://svnweb.freebsd.org/changeset/ports/418530 Log: MFH: r418529 mail/postsrsd: Remove USE_LDCONFIG postsrsd does not install shared libraries but the port uses USE_LDCONFIG causing the following warning: ldconfig: warning: /usr/local/lib/postsrsd: No such file or directory Remove USE_LDCONFIG to compensate PR: 211097 Reported by: Miroslav Lachman <000.fbsd quip cz> Approved by: Krzysztof (maintainer) Approved by: portmgr (blanket) Approved by: portmgr (blanket) Modified: branches/2016Q3/mail/postsrsd/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/mail/postsrsd/Makefile ============================================================================== --- branches/2016Q3/mail/postsrsd/Makefile Thu Jul 14 11:59:19 2016 (r418529) +++ branches/2016Q3/mail/postsrsd/Makefile Thu Jul 14 12:04:41 2016 (r418530) @@ -3,7 +3,7 @@ PORTNAME= postsrsd PORTVERSION= 1.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MAINTAINER= ports@bsdserwis.com @@ -23,7 +23,6 @@ USES= cmake pkgconfig CMAKE_ARGS= --no-warn-unused-cli \ -DCMAKE_INCLUDE_PATH="${LOCALBASE}/include" \ -DCMAKE_LIBRARY_PATH="${LOCALBASE}/lib" -USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} USE_RC_SUBR= ${PORTNAME} PORTDOCS= README.md main.cf.ex README_UPGRADE.md From owner-svn-ports-branches@freebsd.org Thu Jul 14 15:43:09 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79800B98108; Thu, 14 Jul 2016 15:43:09 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A09C1B47; Thu, 14 Jul 2016 15:43:09 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6EFh8ET069606; Thu, 14 Jul 2016 15:43:08 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6EFh88s069605; Thu, 14 Jul 2016 15:43:08 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607141543.u6EFh88s069605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 14 Jul 2016 15:43:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418536 - branches/2016Q3/textproc/markdown-mode.el X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 15:43:09 -0000 Author: rakuco Date: Thu Jul 14 15:43:08 2016 New Revision: 418536 URL: https://svnweb.freebsd.org/changeset/ports/418536 Log: MFH: r418408 Set NO_ARCH=yes. The port only installs an Emacs Lisp file. PR: 210962 Approved by: olgeni (maintainer) Approved by: ports-secteam (junovitch) Modified: branches/2016Q3/textproc/markdown-mode.el/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/textproc/markdown-mode.el/Makefile ============================================================================== --- branches/2016Q3/textproc/markdown-mode.el/Makefile Thu Jul 14 13:22:47 2016 (r418535) +++ branches/2016Q3/textproc/markdown-mode.el/Makefile Thu Jul 14 15:43:08 2016 (r418536) @@ -2,6 +2,7 @@ PORTNAME= markdown-mode.el PORTVERSION= 2.1 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://jblevins.org/projects/markdown-mode/ DISTNAME= markdown-mode.el @@ -12,6 +13,7 @@ EXTRACT_ONLY= # empty MAINTAINER= olgeni@FreeBSD.org COMMENT= Emacs/XEmacs major mode for editing Markdown-formatted text +NO_ARCH= yes NO_BUILD= yes NO_WRKSUBDIR= yes From owner-svn-ports-branches@freebsd.org Thu Jul 14 19:33:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7692B99A36; Thu, 14 Jul 2016 19:33:20 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E5DF1499; Thu, 14 Jul 2016 19:33:20 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6EJXJNs056920; Thu, 14 Jul 2016 19:33:19 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6EJXJYu056918; Thu, 14 Jul 2016 19:33:19 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607141933.u6EJXJYu056918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 14 Jul 2016 19:33:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418555 - in branches/2016Q3/net: samba43 samba44 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 19:33:20 -0000 Author: feld Date: Thu Jul 14 19:33:19 2016 New Revision: 418555 URL: https://svnweb.freebsd.org/changeset/ports/418555 Log: MFH: r418473 Fixed missed Python module requirement :( Approved by: ports-secteam (with hat) Modified: branches/2016Q3/net/samba43/Makefile branches/2016Q3/net/samba44/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net/samba43/Makefile ============================================================================== --- branches/2016Q3/net/samba43/Makefile Thu Jul 14 18:53:10 2016 (r418554) +++ branches/2016Q3/net/samba43/Makefile Thu Jul 14 19:33:19 2016 (r418555) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}43 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -90,8 +90,8 @@ BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " # -BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601 PLIST_SUB+= PY_ISO8601="@comment " # talloc BUILD_DEPENDS+= talloc>=2.1.5:devel/talloc Modified: branches/2016Q3/net/samba44/Makefile ============================================================================== --- branches/2016Q3/net/samba44/Makefile Thu Jul 14 18:53:10 2016 (r418554) +++ branches/2016Q3/net/samba44/Makefile Thu Jul 14 19:33:19 2016 (r418555) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}44 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -91,8 +91,8 @@ BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX} RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.9.4:dns/py-dnspython PLIST_SUB+= PY_DNSPYTHON="@comment " # -BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dnspython>=0.1.11:devel/py-iso8601 +BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601 PLIST_SUB+= PY_ISO8601="@comment " # talloc BUILD_DEPENDS+= talloc>=2.1.6:devel/talloc From owner-svn-ports-branches@freebsd.org Thu Jul 14 20:13:57 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15A37B99768; Thu, 14 Jul 2016 20:13:57 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D30621EF2; Thu, 14 Jul 2016 20:13:56 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6EKDuS8071935; Thu, 14 Jul 2016 20:13:56 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6EKDtSx071933; Thu, 14 Jul 2016 20:13:55 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607142013.u6EKDtSx071933@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 14 Jul 2016 20:13:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418558 - branches/2016Q3/www/varnish4 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 20:13:57 -0000 Author: feld Date: Thu Jul 14 20:13:55 2016 New Revision: 418558 URL: https://svnweb.freebsd.org/changeset/ports/418558 Log: MFH: r418556 www/varnish4: Update to 4.1.3 Changelog: https://github.com/varnishcache/varnish-cache/blob/4.1/doc/changes.rst Will MFH as upstream recommends the latest release of this branch due to important bugfixes. Approved by: ports-secteam (with hat) Modified: branches/2016Q3/www/varnish4/Makefile branches/2016Q3/www/varnish4/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/varnish4/Makefile ============================================================================== --- branches/2016Q3/www/varnish4/Makefile Thu Jul 14 20:12:08 2016 (r418557) +++ branches/2016Q3/www/varnish4/Makefile Thu Jul 14 20:13:55 2016 (r418558) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= varnish -PORTVERSION= 4.1.2 +PORTVERSION= 4.1.3 PORTREVISION= 0 CATEGORIES= www MASTER_SITES= http://repo.varnish-cache.org/source/ Modified: branches/2016Q3/www/varnish4/distinfo ============================================================================== --- branches/2016Q3/www/varnish4/distinfo Thu Jul 14 20:12:08 2016 (r418557) +++ branches/2016Q3/www/varnish4/distinfo Thu Jul 14 20:13:55 2016 (r418558) @@ -1,2 +1,3 @@ -SHA256 (varnish-4.1.2.tar.gz) = 9728da944d28eb5be90e7ab6799c2c4c831ef4df5e5154537eb7f2e5d5e348c4 -SIZE (varnish-4.1.2.tar.gz) = 2030846 +TIMESTAMP = 1468526411 +SHA256 (varnish-4.1.3.tar.gz) = 9f9469b9fda2a578da2a9d282c71c34eeb5c42eda7f8d8728284d92282108429 +SIZE (varnish-4.1.3.tar.gz) = 2134205 From owner-svn-ports-branches@freebsd.org Thu Jul 14 20:29:04 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 394EFB99AAF; Thu, 14 Jul 2016 20:29:04 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 08F871A5A; Thu, 14 Jul 2016 20:29:03 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6EKT3XZ076025; Thu, 14 Jul 2016 20:29:03 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6EKT3hu076024; Thu, 14 Jul 2016 20:29:03 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607142029.u6EKT3hu076024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Thu, 14 Jul 2016 20:29:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418560 - branches/2016Q3/www/varnish4 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 20:29:04 -0000 Author: feld Date: Thu Jul 14 20:29:02 2016 New Revision: 418560 URL: https://svnweb.freebsd.org/changeset/ports/418560 Log: MFH: r418559 www/varnish4: Update pkg-descr with modern links and email address Approved by: ports-secteam (with hat) Modified: branches/2016Q3/www/varnish4/pkg-descr Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/varnish4/pkg-descr ============================================================================== --- branches/2016Q3/www/varnish4/pkg-descr Thu Jul 14 20:28:12 2016 (r418559) +++ branches/2016Q3/www/varnish4/pkg-descr Thu Jul 14 20:29:02 2016 (r418560) @@ -1,12 +1,12 @@ This is the Varnish high-performance HTTP accelerator. Documentation and additional information about Varnish is available on -. +http://varnish-cache.org/docs/index.html Technical questions about Varnish and this release should be addressed -to . +to Questions about commercial support and services related to Varnish -should be addressed to . +can be directed here: https://www.varnish-software.com/contact-us WWW: http://www.varnish-cache.org/ From owner-svn-ports-branches@freebsd.org Fri Jul 15 13:45:52 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 450EDB992E1; Fri, 15 Jul 2016 13:45:52 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 226FA1A88; Fri, 15 Jul 2016 13:45:52 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6FDjpop060447; Fri, 15 Jul 2016 13:45:51 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6FDjp3M060444; Fri, 15 Jul 2016 13:45:51 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607151345.u6FDjp3M060444@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 15 Jul 2016 13:45:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418579 - in branches/2016Q3/archivers/p7zip: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2016 13:45:52 -0000 Author: feld Date: Fri Jul 15 13:45:50 2016 New Revision: 418579 URL: https://svnweb.freebsd.org/changeset/ports/418579 Log: MFH: r418576 Add patches for CVE-2016-2334 and CVE-2016-2335. While here, use PORTREVISION?= instead of PORTREVISION= to avoid needlessly bumping PORTREVISION in archivers/p7zip-codec-rar. PR: 211114 Submitted by: Piotr Kubaj Security: a9bcaf57-4a7b-11e6-97f7-5453ed2e2b49 Security: d706a3a3-4a7c-11e6-97f7-5453ed2e2b49 Approved by: ports-secteam (with hat) Added: branches/2016Q3/archivers/p7zip/files/patch-CPP_7zip_Archive_HfsHandler.cpp - copied unchanged from r418576, head/archivers/p7zip/files/patch-CPP_7zip_Archive_HfsHandler.cpp branches/2016Q3/archivers/p7zip/files/patch-CPP_7zip_Archive_Udf_UdfIn.cpp - copied unchanged from r418576, head/archivers/p7zip/files/patch-CPP_7zip_Archive_Udf_UdfIn.cpp Modified: branches/2016Q3/archivers/p7zip/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/archivers/p7zip/Makefile ============================================================================== --- branches/2016Q3/archivers/p7zip/Makefile Fri Jul 15 12:16:01 2016 (r418578) +++ branches/2016Q3/archivers/p7zip/Makefile Fri Jul 15 13:45:50 2016 (r418579) @@ -3,6 +3,7 @@ PORTNAME= p7zip PORTVERSION= 15.14 +PORTREVISION?= 1 CATEGORIES= archivers MASTER_SITES= SF DISTNAME= ${PORTNAME}_${DISTVERSION}_src_all Copied: branches/2016Q3/archivers/p7zip/files/patch-CPP_7zip_Archive_HfsHandler.cpp (from r418576, head/archivers/p7zip/files/patch-CPP_7zip_Archive_HfsHandler.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/archivers/p7zip/files/patch-CPP_7zip_Archive_HfsHandler.cpp Fri Jul 15 13:45:50 2016 (r418579, copy of r418576, head/archivers/p7zip/files/patch-CPP_7zip_Archive_HfsHandler.cpp) @@ -0,0 +1,25 @@ +Patch for CVE-2016-2334. + +Obtained from: https://sourceforge.net/p/p7zip/discussion/383043/thread/9d0fb86b/ +--- CPP/7zip/Archive/HfsHandler.cpp.orig Fri Jun 19 06:52:08 2015 ++++ CPP/7zip/Archive/HfsHandler.cpp Mon May 23 20:37:42 2016 +@@ -987,7 +987,9 @@ HRESULT CDatabase::LoadCatalog(const CFork &fork, cons + item.GroupID = Get32(r + 0x24); + item.AdminFlags = r[0x28]; + item.OwnerFlags = r[0x29]; ++ */ + item.FileMode = Get16(r + 0x2A); ++ /* + item.special.iNodeNum = Get16(r + 0x2C); // or .linkCount + item.FileType = Get32(r + 0x30); + item.FileCreator = Get32(r + 0x34); +@@ -1571,6 +1573,9 @@ HRESULT CHandler::ExtractZlibFile( + blockSize = (UInt32)rem; + + UInt32 size = GetUi32(tableBuf + i * 8 + 4); ++ ++ if (size > buf.Size() || size > kCompressionBlockSize + 1) ++ return S_FALSE; + + RINOK(ReadStream_FALSE(inStream, buf, size)); + Copied: branches/2016Q3/archivers/p7zip/files/patch-CPP_7zip_Archive_Udf_UdfIn.cpp (from r418576, head/archivers/p7zip/files/patch-CPP_7zip_Archive_Udf_UdfIn.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/archivers/p7zip/files/patch-CPP_7zip_Archive_Udf_UdfIn.cpp Fri Jul 15 13:45:50 2016 (r418579, copy of r418576, head/archivers/p7zip/files/patch-CPP_7zip_Archive_Udf_UdfIn.cpp) @@ -0,0 +1,18 @@ +Patch for CVE-2016-2335. + +Obtained from: https://sourceforge.net/p/p7zip/discussion/383043/thread/9d0fb86b/ +--- CPP/7zip/Archive/Udf/UdfIn.cpp.orig Fri Nov 20 15:40:08 2015 ++++ CPP/7zip/Archive/Udf/UdfIn.cpp Mon May 23 20:37:46 2016 +@@ -389,7 +389,11 @@ HRESULT CInArchive::ReadFileItem(int volIndex, int fsI + return S_FALSE; + CFile &file = Files.Back(); + const CLogVol &vol = LogVols[volIndex]; +- CPartition &partition = Partitions[vol.PartitionMaps[lad.Location.PartitionRef].PartitionIndex]; ++ unsigned partitionRef = lad.Location.PartitionRef; ++ ++ if (partitionRef >= vol.PartitionMaps.Size()) ++ return S_FALSE; ++ CPartition &partition = Partitions[vol.PartitionMaps[partitionRef].PartitionIndex]; + + UInt32 key = lad.Location.Pos; + UInt32 value; From owner-svn-ports-branches@freebsd.org Fri Jul 15 16:24:49 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3AC7B9AD87; Fri, 15 Jul 2016 16:24:48 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD0B013D3; Fri, 15 Jul 2016 16:24:48 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6FGOm3x020371; Fri, 15 Jul 2016 16:24:48 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6FGOln0020367; Fri, 15 Jul 2016 16:24:47 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201607151624.u6FGOln0020367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Fri, 15 Jul 2016 16:24:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418586 - in branches/2016Q3/graphics/tiff: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2016 16:24:49 -0000 Author: feld Date: Fri Jul 15 16:24:47 2016 New Revision: 418586 URL: https://svnweb.freebsd.org/changeset/ports/418586 Log: MFH: r418585 graphics/tiff: Patch vulnerabilities These two patches were obtained from OpenBSD. An additional CVE is not yet addressed, but upstream indicates they are removing the gif2tiff utility as the mitigation in the upcoming 4.0.7. PR: 211113 Security: CVE-2016-5875 Security: CVE-2016-3186 Approved by: ports-secteam (with hat) Added: branches/2016Q3/graphics/tiff/files/patch-libtiff_tif__pixarlog.c - copied unchanged from r418585, head/graphics/tiff/files/patch-libtiff_tif__pixarlog.c branches/2016Q3/graphics/tiff/files/patch-tools_gif2tiff.c - copied unchanged from r418585, head/graphics/tiff/files/patch-tools_gif2tiff.c Modified: branches/2016Q3/graphics/tiff/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/graphics/tiff/Makefile ============================================================================== --- branches/2016Q3/graphics/tiff/Makefile Fri Jul 15 16:22:53 2016 (r418585) +++ branches/2016Q3/graphics/tiff/Makefile Fri Jul 15 16:24:47 2016 (r418586) @@ -3,7 +3,7 @@ PORTNAME= tiff PORTVERSION= 4.0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= ftp://ftp.remotesensing.org/pub/libtiff/ \ http://download.osgeo.org/libtiff/ Copied: branches/2016Q3/graphics/tiff/files/patch-libtiff_tif__pixarlog.c (from r418585, head/graphics/tiff/files/patch-libtiff_tif__pixarlog.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/graphics/tiff/files/patch-libtiff_tif__pixarlog.c Fri Jul 15 16:24:47 2016 (r418586, copy of r418585, head/graphics/tiff/files/patch-libtiff_tif__pixarlog.c) @@ -0,0 +1,34 @@ +CVE-2016-5875(, dup?) +https://marc.info/?l=oss-security&m=146720235906569&w=2 + +--- libtiff/tif_pixarlog.c.orig Sat Aug 29 00:16:22 2015 ++++ libtiff/tif_pixarlog.c Fri Jul 1 13:04:52 2016 +@@ -457,6 +457,7 @@ horizontalAccumulate8abgr(uint16 *wp, int n, int strid + typedef struct { + TIFFPredictorState predict; + z_stream stream; ++ tmsize_t tbuf_size; /* only set/used on reading for now */ + uint16 *tbuf; + uint16 stride; + int state; +@@ -692,6 +693,7 @@ PixarLogSetupDecode(TIFF* tif) + sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size); + if (sp->tbuf == NULL) + return (0); ++ sp->tbuf_size = tbuf_size; + if (sp->user_datafmt == PIXARLOGDATAFMT_UNKNOWN) + sp->user_datafmt = PixarLogGuessDataFmt(td); + if (sp->user_datafmt == PIXARLOGDATAFMT_UNKNOWN) { +@@ -779,6 +781,12 @@ PixarLogDecode(TIFF* tif, uint8* op, tmsize_t occ, uin + if (sp->stream.avail_out != nsamples * sizeof(uint16)) + { + TIFFErrorExt(tif->tif_clientdata, module, "ZLib cannot deal with buffers this size"); ++ return (0); ++ } ++ /* Check that we will not fill more than what was allocated */ ++ if (sp->stream.avail_out > sp->tbuf_size) ++ { ++ TIFFErrorExt(tif->tif_clientdata, module, "sp->stream.avail_out > sp->tbuf_size"); + return (0); + } + do { Copied: branches/2016Q3/graphics/tiff/files/patch-tools_gif2tiff.c (from r418585, head/graphics/tiff/files/patch-tools_gif2tiff.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2016Q3/graphics/tiff/files/patch-tools_gif2tiff.c Fri Jul 15 16:24:47 2016 (r418586, copy of r418585, head/graphics/tiff/files/patch-tools_gif2tiff.c) @@ -0,0 +1,14 @@ +CVE-2016-3186, patch from: +https://bugzilla.redhat.com/show_bug.cgi?id=1319666 + +--- tools/gif2tiff.c.orig Fri Jul 1 13:11:43 2016 ++++ tools/gif2tiff.c Fri Jul 1 13:12:07 2016 +@@ -349,7 +349,7 @@ readextension(void) + int status = 1; + + (void) getc(infile); +- while ((count = getc(infile)) && count <= 255) ++ while ((count = getc(infile)) && count >= 0 && count <= 255) + if (fread(buf, 1, count, infile) != (size_t) count) { + fprintf(stderr, "short read from file %s (%s)\n", + filename, strerror(errno)); From owner-svn-ports-branches@freebsd.org Sat Jul 16 01:00:28 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5537DB993F1; Sat, 16 Jul 2016 01:00:28 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 155ED142F; Sat, 16 Jul 2016 01:00:28 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6G10RYG011940; Sat, 16 Jul 2016 01:00:27 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6G10RZj011937; Sat, 16 Jul 2016 01:00:27 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607160100.u6G10RZj011937@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 16 Jul 2016 01:00:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418614 - branches/2016Q3/www/linux-c6-flashplugin11 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2016 01:00:28 -0000 Author: junovitch Date: Sat Jul 16 01:00:26 2016 New Revision: 418614 URL: https://svnweb.freebsd.org/changeset/ports/418614 Log: MFH: r418613 www/linux-*-flashplugin: update 11.2r202.626 -> 11.2r202.632 Security: CVE-2016-4172 Security: CVE-2016-4173 Security: CVE-2016-4174 Security: CVE-2016-4175 Security: CVE-2016-4176 Security: CVE-2016-4177 Security: CVE-2016-4178 Security: CVE-2016-4179 Security: CVE-2016-4180 Security: CVE-2016-4181 Security: CVE-2016-4182 Security: CVE-2016-4183 Security: CVE-2016-4184 Security: CVE-2016-4185 Security: CVE-2016-4186 Security: CVE-2016-4187 Security: CVE-2016-4188 Security: CVE-2016-4189 Security: CVE-2016-4190 Security: CVE-2016-4217 Security: CVE-2016-4218 Security: CVE-2016-4219 Security: CVE-2016-4220 Security: CVE-2016-4221 Security: CVE-2016-4222 Security: CVE-2016-4223 Security: CVE-2016-4224 Security: CVE-2016-4225 Security: CVE-2016-4226 Security: CVE-2016-4227 Security: CVE-2016-4228 Security: CVE-2016-4229 Security: CVE-2016-4230 Security: CVE-2016-4231 Security: CVE-2016-4232 Security: CVE-2016-4233 Security: CVE-2016-4234 Security: CVE-2016-4235 Security: CVE-2016-4236 Security: CVE-2016-4237 Security: CVE-2016-4238 Security: CVE-2016-4239 Security: CVE-2016-4240 Security: CVE-2016-4241 Security: CVE-2016-4242 Security: CVE-2016-4243 Security: CVE-2016-4244 Security: CVE-2016-4245 Security: CVE-2016-4246 Security: CVE-2016-4247 Security: CVE-2016-4248 Security: CVE-2016-4249 Security: https://vuxml.FreeBSD.org/freebsd/a522d6ac-4aed-11e6-97ea-002590263bf5.html Approved by: ports-secteam (with hat) Modified: branches/2016Q3/www/linux-c6-flashplugin11/Makefile branches/2016Q3/www/linux-c6-flashplugin11/distinfo.i686 branches/2016Q3/www/linux-c6-flashplugin11/distinfo.x86_64 Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/linux-c6-flashplugin11/Makefile ============================================================================== --- branches/2016Q3/www/linux-c6-flashplugin11/Makefile Sat Jul 16 00:59:57 2016 (r418613) +++ branches/2016Q3/www/linux-c6-flashplugin11/Makefile Sat Jul 16 01:00:26 2016 (r418614) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flashplugin -PORTVERSION= 11.2r202.626 +PORTVERSION= 11.2r202.632 CATEGORIES= www multimedia linux MASTER_SITES= http://fpdownload.macromedia.com/get/flashplayer/pdc/${PORTVERSION:S/r/./}/:plugin \ LOCAL/nox:suplib Modified: branches/2016Q3/www/linux-c6-flashplugin11/distinfo.i686 ============================================================================== --- branches/2016Q3/www/linux-c6-flashplugin11/distinfo.i686 Sat Jul 16 00:59:57 2016 (r418613) +++ branches/2016Q3/www/linux-c6-flashplugin11/distinfo.i686 Sat Jul 16 01:00:26 2016 (r418614) @@ -1,5 +1,5 @@ -TIMESTAMP = 1466301006 -SHA256 (flashplugin/11.2r202.626/install_flash_player_11_linux.i386.tar.gz) = 1ec079f9d8578255435e15f704f05e4af69e749a480427af2be64fe447e2ca8c -SIZE (flashplugin/11.2r202.626/install_flash_player_11_linux.i386.tar.gz) = 6981743 -SHA256 (flashplugin/11.2r202.626/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.626/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +TIMESTAMP = 1468629151 +SHA256 (flashplugin/11.2r202.632/install_flash_player_11_linux.i386.tar.gz) = c455ba9b72318d87434c7199a94ca15dc0f1c7fca590ee3703e013cbdecce942 +SIZE (flashplugin/11.2r202.632/install_flash_player_11_linux.i386.tar.gz) = 6986419 +SHA256 (flashplugin/11.2r202.632/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.632/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 Modified: branches/2016Q3/www/linux-c6-flashplugin11/distinfo.x86_64 ============================================================================== --- branches/2016Q3/www/linux-c6-flashplugin11/distinfo.x86_64 Sat Jul 16 00:59:57 2016 (r418613) +++ branches/2016Q3/www/linux-c6-flashplugin11/distinfo.x86_64 Sat Jul 16 01:00:26 2016 (r418614) @@ -1,5 +1,5 @@ -TIMESTAMP = 1466301006 -SHA256 (flashplugin/11.2r202.626/install_flash_player_11_linux.i386.tar.gz) = 1ec079f9d8578255435e15f704f05e4af69e749a480427af2be64fe447e2ca8c -SIZE (flashplugin/11.2r202.626/install_flash_player_11_linux.i386.tar.gz) = 6981743 -SHA256 (flashplugin/11.2r202.626/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf -SIZE (flashplugin/11.2r202.626/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 +TIMESTAMP = 1468629151 +SHA256 (flashplugin/11.2r202.632/install_flash_player_11_linux.i386.tar.gz) = c455ba9b72318d87434c7199a94ca15dc0f1c7fca590ee3703e013cbdecce942 +SIZE (flashplugin/11.2r202.632/install_flash_player_11_linux.i386.tar.gz) = 6986419 +SHA256 (flashplugin/11.2r202.632/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 4a309b1a326bd2212cc72480628659e5a7fd61d9e0572cb7350c206f030955bf +SIZE (flashplugin/11.2r202.632/linux-f10-flashsupport-9.0.1.i386.tar.gz) = 3455 From owner-svn-ports-branches@freebsd.org Sat Jul 16 02:28:20 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A145B9AB29; Sat, 16 Jul 2016 02:28:20 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 088A11CE6; Sat, 16 Jul 2016 02:28:19 +0000 (UTC) (envelope-from junovitch@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6G2SJav044953; Sat, 16 Jul 2016 02:28:19 GMT (envelope-from junovitch@FreeBSD.org) Received: (from junovitch@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6G2SJmM044951; Sat, 16 Jul 2016 02:28:19 GMT (envelope-from junovitch@FreeBSD.org) Message-Id: <201607160228.u6G2SJmM044951@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: junovitch set sender to junovitch@FreeBSD.org using -f From: Jason Unovitch Date: Sat, 16 Jul 2016 02:28:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418618 - branches/2016Q3/www/atutor X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2016 02:28:20 -0000 Author: junovitch Date: Sat Jul 16 02:28:18 2016 New Revision: 418618 URL: https://svnweb.freebsd.org/changeset/ports/418618 Log: MFH: r418305 - Update to 2.2.2 Security: https://vuxml.FreeBSD.org/freebsd/00cb1469-4afc-11e6-97ea-002590263bf5.html Approved by: ports-secteam (with hat) Modified: branches/2016Q3/www/atutor/Makefile branches/2016Q3/www/atutor/distinfo Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/www/atutor/Makefile ============================================================================== --- branches/2016Q3/www/atutor/Makefile Sat Jul 16 02:26:54 2016 (r418617) +++ branches/2016Q3/www/atutor/Makefile Sat Jul 16 02:28:18 2016 (r418618) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= atutor -PORTVERSION= 2.2.1 +PORTVERSION= 2.2.2 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/ATutor%202/ DISTNAME= ATutor-${PORTVERSION} Modified: branches/2016Q3/www/atutor/distinfo ============================================================================== --- branches/2016Q3/www/atutor/distinfo Sat Jul 16 02:26:54 2016 (r418617) +++ branches/2016Q3/www/atutor/distinfo Sat Jul 16 02:28:18 2016 (r418618) @@ -1,2 +1,3 @@ -SHA256 (ATutor-2.2.1.tar.gz) = 949f8cd004d5dae72f9362cf2332c7efa353c5d57688d5e07606b6a3581c3828 -SIZE (ATutor-2.2.1.tar.gz) = 9034938 +TIMESTAMP = 1468165313 +SHA256 (ATutor-2.2.2.tar.gz) = 04dce5707a4e3f2ba44cc56df784f213376dbf28e73a599bbc3eaa6645cde3aa +SIZE (ATutor-2.2.2.tar.gz) = 9127998 From owner-svn-ports-branches@freebsd.org Sat Jul 16 15:13:11 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2315CB9B5D7; Sat, 16 Jul 2016 15:13:11 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C9E6D1F7A; Sat, 16 Jul 2016 15:13:10 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6GFDAbm029151; Sat, 16 Jul 2016 15:13:10 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6GFDAOu029150; Sat, 16 Jul 2016 15:13:10 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607161513.u6GFDAOu029150@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sat, 16 Jul 2016 15:13:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r418637 - branches/2016Q3/net-im/telepathy-qt4 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jul 2016 15:13:11 -0000 Author: rakuco Date: Sat Jul 16 15:13:09 2016 New Revision: 418637 URL: https://svnweb.freebsd.org/changeset/ports/418637 Log: MFH: r418636 Adjust dependencies to fix `make stage-qa'. Error: /usr/local/lib/libtelepathy-qt4-farstream.so.2.0.9.6.1 is linked to /usr/local/lib/libgobject-2.0.so.0 from devel/glib20 but it is not declared as a dependency Warning: you need USE_GNOME+=glib20 Error: /usr/local/lib/libtelepathy-qt4-farstream.so.2.0.9.6.1 is linked to /usr/local/lib/libglib-2.0.so.0 from devel/glib20 but it is not declared as a dependency Warning: you need USE_GNOME+=glib20 Error: /usr/local/lib/libtelepathy-qt4-farstream.so.2.0.9.6.1 is linked to /usr/local/lib/libintl.so.8 from devel/gettext-runtime but it is not declared as a dependency Warning: you need USES+=gettext Approved by: ports-secteam (junovitch, implicit) Modified: branches/2016Q3/net-im/telepathy-qt4/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/net-im/telepathy-qt4/Makefile ============================================================================== --- branches/2016Q3/net-im/telepathy-qt4/Makefile Sat Jul 16 15:12:10 2016 (r418636) +++ branches/2016Q3/net-im/telepathy-qt4/Makefile Sat Jul 16 15:13:09 2016 (r418637) @@ -3,6 +3,7 @@ PORTNAME= telepathy-qt4 PORTVERSION= 0.9.6.1 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= https://telepathy.freedesktop.org/releases/${PORTNAME:C/4//}/ DISTNAME= ${PORTNAME:C/4//}-${PORTVERSION} @@ -19,11 +20,11 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_ OPTIONS_DEFINE= DOCS -USE_GNOME= libxslt:build +USE_GNOME= glib20 libxslt:build USE_GSTREAMER= yes USE_QT4= corelib dbus gui network qtestlib_build xml \ moc_build qmake_build rcc_build uic_build -USES= cmake:outsource pathfix pkgconfig python:build +USES= cmake:outsource gettext pathfix pkgconfig python:build CMAKE_ARGS= -DENABLE_EXAMPLES:BOOL=False \ -DENABLE_FARSIGHT:BOOL=False \ -DENABLE_FARSTREAM:BOOL=True \